@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --primary-font: 'Poppins', sans-serif;
    --primary-yellow: #F5CA20;
    --primary-light-yellow: #FFF1BC;
    --primary-black: #000000;
    --primary-white: #fff;
    --primary-gray: #939199;
    --footer-line: #242326;
}

body {
    margin: 0px;
    padding: 0px;
    position: relative;
    z-index: 1;
    font-family: var(--primary-font);
    font-size: 14px;
}

/* new header  */
.header_con_top {
    /* height: 60px; */
    width: 100%;
    background: #000;
}

.header_con_top_con {
    height: 100%;
    width: 85%;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_con_top_con_left {
    flex: 0 0 48%;
    max-width: 48%;
    padding: 0px !important;
    margin: 0px !important;
    color: var(--primary-white);
}

.header_con_top_con_right {
    flex: 0 0 100px;
    max-width: 100px;
}

.header_con_top_con_right {
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
}

.header_con_top_con_right a i {
    color: var(--primary-white);
}

.header_con_bottom_menu {
    width: 100%;
    margin: 0px auto;
    display: flex;
    justify-content: end;
    align-items: end;
    height: 40px;
    /* display: none; */
}

.header_con_bottom_menu li {
    padding: 0px 20px;
}

.header_con_bottom_menu li a {
    font-size: 20px;
    font-weight: 700;
    color: #1C0200;
    font-family: var(--primary-content-font);
}

.header_con_bottom_logo {
    margin: 0px auto;
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.header_con_bottom {
    display: flex;
    align-items: center;
    width: 82%;
    margin: auto;
}





/* end new header  */

/* .swiper-slide img {
    display: block;
    width: 70%;
    height: 100%;
    object-fit: cover;
} */

.product_slide_subcon {
    overflow: hidden;
    margin-left: 20px;
}

.product_slide_subcon {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.productslider {
    display: inline-block;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.product_img_con a {
    display: flex;
    object-fit: cover;
    overflow: hidden;
}

.product_img_con {
    overflow: hidden;
    position: relative;
    border: 1px solid #ded4ca;
}

.product_price {
    padding: 10px 0px;
}

.product_pri {
    position: relative;
    font-weight: 600;
}

.product_pri::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 30px;
    background: var(--primary-black);
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
}

.product_image {
    transition: transform 0.3s ease-in-out;
}

.productslider:hover .product_image {
    transform: scale(1.04);
    transition: transform 0.3s ease-in-out;
}

.product_img_con {
    position: relative;
}

.pro_add_to_cart {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.pro_add_to_cart button {
    height: 40px;
    width: 120px;
    border-radius: 20px;
    cursor: pointer;
    background-color: var(--primary-black);
    border: none;
    outline: 0px;
    color: #fff;

}

.product_varient button {
    border: 2px solid var(--primary-brown);
    color: var(--primary-brown);
    font-weight: 600;
    padding: 3px 5px;
    margin: 10px 0px;
    background: transparent;
    border-radius: 2px;
    cursor: pointer;
}

.btnwishlist {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.productslider_stock {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 4;
    background: var(--primary-brown);
    color: var(--primary-white);
    padding: 3px 10px;
    font-weight: 600;
    font-size: 13px;
    border-radius: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product_rating {
    position: absolute;
    bottom: 50px;
    right: 10px;
    color: var(--primary-black);
    font-weight: 700;
}

.btnwishlist {
    background-color: transparent;
    border: none;
    outline: 0px;
    cursor: pointer;
    font-size: 20px;
    color: var(--primary-black);
    opacity: 0;
    transform: translateY(10px);
    -webkit-transition: transform 549ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
    -moz-transition: transform 549ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
    transition: transform 549ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
}

.productslider:hover .btnwishlist {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transition: transform 549ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
    -moz-transition: transform 549ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
    transition: transform 549ms cubic-bezier(0.4, 0.4, 0.000, 1.0);
}

.product_cart_button {
    opacity: 0;
    transform: translateY(10px);
    -webkit-transition: transform 0.8s cubic-bezier(0.4, 0.4, 0.000, 1.0);
    -moz-transition: transform 0.8s cubic-bezier(0.4, 0.4, 0.000, 1.0);
    transition: transform 0.8s cubic-bezier(0.4, 0.4, 0.000, 1.0);
}

.productslider:hover .product_cart_button {
    opacity: 1;
    transform: translateY(0px);
    -webkit-transition: transform 0.8s cubic-bezier(0.4, 0.4, 0.000, 1.0);
    -moz-transition: transform 0.8s cubic-bezier(0.4, 0.4, 0.000, 1.0);
    transition: transform 0.8s cubic-bezier(0.4, 0.4, 0.000, 1.0);
}





/* web button  */
.webbutton {
    height: 40px;
    width: 130 px;
    background-color: var(--primary-black);
    cursor: pointer;
    color: #fff;
    border: none;
    outline: 0px;
    margin-top: 20px;
}

/* cookies container */
.cookies {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--primary-black);
    width: 400px;
    z-index: 10;
    padding: 20px;
    transform: translateY(400px);
}

.cookies_top {
    color: var(--primary-white);
    font-size: 14px;
    line-height: 20px;
}

.cookies_bottom {
    margin-top: 20px;
    text-align: right;
}

.cookies_bottom a {
    font-size: 14px;
    color: #fff;
    margin-right: 10px;
}

.pageswebtitle {
    margin-bottom: -6px;
}

.cookies_bottom button {
    background: transparent;
    cursor: pointer;
    border: none;
    outline: 0;
    color: #fff;
    position: relative;
    padding-bottom: 5px;

}

.cookies_bottom button i {
    font-weight: 800;
}

.cookies_bottom button::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background: var(--primary-white);
    bottom: 0px;
    left: 0px;
}

/* .cookies_bottom button */

/* footer design */

.footer {
    margin-top: 60px;
    padding: 60px 0px 0px 0px;
    position: relative;
    background: #000;
    z-index: 9;
}

.footer_con {
    width: 90%;
    margin: 0px auto;
}

.footer_content li a {
    color: var(--primary-white);
    font-size: 14px;
    font-weight: 400;

}

.footer_content li a:hover {
    color: var(--primary-yellow);
    transition: 0.3s all ease-in-out;
}

.footer h3 {
    letter-spacing: 1px;
    color: var(--primary-white);
}

.footer_content li {
    padding: 5px 0px;
}

.footer_con {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer_link_address_subcon {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer_address_left {
    flex: 0 0 30px;
    max-width: 30px;
    margin-top: 3px;
}

.font_icon_a {
    display: none;
    /* margin-right: 50px; */
}

.fa-bars {
    font-size: 30px;
}

.footer_address_left i {
    color: var(--primary-white);
}

.footer_address_right {
    flex: 0 0 calc(100% - 30px);
    max-width: calc(100% - 30px);
    color: var(--primary-white);
    line-height: 28px;
    font-size: 14px;
    position: relative;
    z-index: 4;
}

.footer_link_address_subcon {
    margin-top: 10px;
}

.footer_img {
    flex: 0 0 20%;
    max-width: 20%;
    margin-top: 0px;
}

.footer_bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    position: relative;
    z-index: 3;
    margin-top: 70px;

}

.footer_bottom_left {
    font-size: 14px;
    color: var(--primary-white);
}

.footer_bottom_con {
    width: 90%;
    border-top: 1px solid var(--footer-line);
    padding: 10px 0px;
    margin: 0px auto;
}

.footer_social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: color 0.3s ease-in-out;
}

.footer_social a {
    display: block;
    margin-right: 10px;
    font-weight: 400;
}

.footer_social a:hover {
    color: var(--primary-yellow);
    transition: color 0.3s ease-in-out;
}

.footer_social a i {
    color: var(--primary-white);
}

.footer_img_con {
    font-size: 13px;
    color: var(--primary-gray);
    line-height: 23px;
    padding: 20px 0px;
    position: relative;
    font-family: var(--primary-font);
    z-index: 4;
}

.footer_bottom_con {
    display: flex;
    justify-content: space-between;
    align-items: center;
}




.resturants {
    padding: 60px 0px;
}

.resturants_con_bottom_left,
.resturants_con_bottom_right {
    display: flex;
    object-fit: cover;
}

.resturants_con_bottom_right {
    flex: 0 0 300px;
    max-width: 300px;
}


/* input_area */
.input_con input {
    height: 35px;
    padding: 0px 10px;
    width: calc(100% - 0px);
    background: transparent;
    border: 1px solid #dbcdbf;
    outline: 0;
}

.tracking_page_content {
    width: 90%;
}

.input_con textarea {
    width: calc(100% - 0px);
    padding: 10px;
    font-family: var(--primary-font);
    background: transparent;
    border: 1px solid #dbcdbf;
    resize: none;
    outline: 0px;
    height: 100px;
}

.input_area_con label {
    display: block;
    margin-bottom: 10px;
}

.input_area_con {
    margin-top: 20px;
}

.input_button {
    margin-top: 30px;
}

.btnweb {
    text-align: left;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: none;
    outline: 0px;
    background: transparent;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btnwebspan {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 1px solid var(--primary-black);
    transition: all 0.3s ease;
    margin-left: 20px;
    font-size: 20px;
}

.btnweb:hover .btnwebspan {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* pages webtitle */
/* .pageswebtitle {
    width: 100%;
    background: url('../image/banners/faq.webp');

    background-position: bottom center;
    background-size: cover;
} */

.pageswebtitle_con {
    width: 90%;
    height: 100%;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 12;
}

/* .pageswebtitle {
    height: 500px;
    width: 100%;
} */

.pageswebtitle_con_title1 {
    font-size: 14px;
    color: var(--primary-white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 10px;
}

.pageswebtitle_con_title2 {
    font-size: 50px;
    color: var(--primary-white);
    font-weight: 800;
    letter-spacing: 6px;
    margin-bottom: 60px;
}

.breadcome {
    margin-top: 20px;
}

.breadcome_con {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.breadcome_con {
    width: 90%;
    margin: 0px auto;
}

.breadcome_con {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.breadcome_con span {
    display: block;
    height: 20px;
    width: 2px;
    margin: 0px 10px;
    background: var(--primary-black);
}

.breadcome_con a {
    color: var(--primary-black);
    font-weight: 600;
}



/* web button design  */

.web_button a {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.web_button span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 1px solid var(--primary-black);
    transition: all 0.3s ease;
    margin-left: 20px;
}

.web_button a span i {
    font-size: 20px;
}

.web_button a:hover .webbuttonspan {
    background: var(--primary-black);
    transform: scale(1.1);
    color: var(--primary-white);
    transition: all 0.3s ease;
}


/* index checkbox */
.container {
    cursor: pointer;
    display: block;
    margin-right: 10px;
    margin-top: 3px;
}

.container input {
    display: none;
}

.container svg {
    overflow: visible;
}

.path {
    fill: none;
    stroke: var(--primary-black);
    stroke-width: 3;
    transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease;
    stroke-dasharray: 241 9999999;
    stroke-dashoffset: 0;
}

.container input:checked~svg .path {
    stroke-dasharray: 70.5096664428711 9999999;
    stroke-dashoffset: -262.2723388671875;
}

.web_faqs_con {
    width: 100%;
}

.webfaq_matter_title button {
    display: flex;
    justify-content: space-between;
}





/* faq Design  */


.product_faq {
    padding: 60px 0px;
}

.product_faq_con {
    width: 85%;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product_faq_con_left {
    flex: 0 0 35%;
    max-width: 35%;
    position: sticky;
    top: 40px;
}

.product_faq_con_right {
    flex: 0 0 58%;
    max-width: 58%;
}

.product_faq_con_left_top {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-black);
}

.product_faq_con_left_middile {
    font-size: 14px !important;
    line-height: 20px;
    margin-top: 10px !important;

}


/* faqs_container */
.faq_slider {
    border-bottom: 1px solid #ded4ca;
    padding-bottom: 10px;
    margin-top: 20px !important;
}

.faq_slider:last-child {
    border-bottom: 0px !important;
}

.acc-container {
    width: 100%;
}

.acc-btn {
    width: 100%;
    padding: 0px;
    font-size: 18px;
    color: var(--primary-black);
    cursor: pointer;
    background: inherit;
    border: none;
    outline: none;
    text-align: left;
    transition: all 0.5s linear;
}

.acc-btn:after {
    content: "\27A4";
    color: var(--primary-black);
    float: right;
    transition: all 0.3s linear;

}

.acc-btn.is-open:after {
    transform: rotate(90deg);
}

.acc-content {
    max-height: 0;
    color: var(--primary-black);
    font-size: 15px;
    line-height: 23px;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.tabnone {
    display: none !important;
}

.fullbackground {
    display: block;
    height: 40px;
    background: rgba(0, 0, 0, 0.9);
    line-height: 40px;
    padding: 0px 20px;
    color: var(--primary-white);
}

.probutton {
    height: 40px;
    line-height: 40px;
    background: var(--primary-black);
    color: var(--primary-white);
    border: none !important;
    padding: 0px 20px;
    cursor: pointer;
    outline: 0px;
}

/* .................web title ................. */
.webtitle_con {
    width: 100% !important;
    margin: 0px auto;
    margin-bottom: 50px !important;
}

.webtitle_con_top_a {
    width: 85% !important;
    margin: 0px auto;
    margin-bottom: 50px !important;
}

.webtitle_con_aa {
    width: 85% !important;
    margin: 0px auto;
    margin-bottom: 50px !important;
}

.webtitle_con_top {
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-yellow);
    font-family: var(--primary-font);
}

.webtitle_con_bottom {
    font-size: 15px;
    font-weight: 500;
    font-family: var(--primary-font);
}

.product_slide_con {
    padding-top: 70px;
}

.index_our_product {
    width: 85%;
    margin: 0px auto;
}

.product_varient {
    padding: 10px 0px;
}

.product_title {
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
    line-height: 23px;
}

.product_slide_img a {
    display: flex;
    object-fit: cover;
}



.alert_message_con {
    max-width: 400px;
    width: 100%;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 0px;
    overflow: hidden;
    z-index: 9999;

}



.alert {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    overflow: hidden !important;
}

.alert-danger {
    color: #993746;
    background-color: #ffdee3;
    border-color: #ffd1d8;
}

.alert-success {
    color: #287f5f;
    background-color: #d9f6ec;
    border-color: #caf3e4;
}

.btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: .75;
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0px;
    padding-top: 6px;
    padding-right: 10px;
    color: #000;
    border: 0;
    border-radius: 0.25rem;
    opacity: .5;
    font-size: 25px;
    background: transparent;
}

.fade {
    transition: opacity .15s linear;
}

.alert-danger:before {
    position: absolute;
    height: 2px;
    width: 100%;
    content: "";
    background: #993746;
    left: 0px;
    bottom: 0px;
    animation: 5s slide-right;
}

.alert-danger:before {
    position: absolute;
    height: 2px;
    width: 100%;
    content: "";
    background: #993746;
    left: 0px;
    bottom: 0px;
    animation: 6s slide-right;
}


.alert-success:before {
    position: absolute;
    height: 2px;
    width: 100%;
    content: "";
    background: #287f5f;
    left: 0px;
    bottom: 0px;
    animation: 6s slide-right;
}

@keyframes slide-right {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}


.shop_product_con .productslider {
    flex: 0 0 calc((100% - 120px) / 3);
    max-width: calc((100% - 120px) / 3);
    margin-left: 40px;
    margin-top: 40px;
}

.productslider a {
    display: flex !important;
    object-fit: cover !important;
    padding: 0px !important;
    position: relative !important;
}

.shopoff {
    position: absolute;
    top: 10px;
    left: 10px;
}

.shopbuttoncart {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    color: #fff;
    background: #000;
    cursor: pointer;
    border: none;
    outline: 0px;
    bottom: 0px;
    opacity: 0;
    transition: all 0.3s ease;
}

.shopwishlist {
    position: absolute;
    right: 0px;
    top: 20px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    padding: 10px;
    color: #fff;
    background: #000;
    cursor: pointer;
    border: none;
    outline: 0px;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.shopratting {
    position: absolute;
    top: 10px;
    opacity: 0;
    right: 0px;
    transition: all 0.3s ease;
}

.productslider:hover .shopbuttoncart {
    opacity: 1;
    bottom: 20px;
    transition: all 0.3s ease;
}

.productslider:hover .shopratting {
    opacity: 1;
    right: 15px;
    transition: all 0.3s ease;
}


.productslider:hover .shopwishlist {
    opacity: 1;
    right: 15px;
    transition: all 0.3s ease;
}

.shoppricebottom {
    margin-top: 5px !important;
}

.shoppricebottom span:first-child {
    text-decoration: line-through;
    margin-right: 10px;
    color: #4a5568 !important;
}

.shoppricebottom a {
    font-weight: 500 !important;
    font-size: 15px !important;
    text-align: center;
    line-height: 24px;
}

.shoppricebottom span {
    font-size: 16px;
    font-weight: 600;

}

.shoppricebottom span:last-child {
    color: #000 !important;
}

.link_product {
    font-size: 15px;
}

.price_product {
    font-weight: 600;
    color: #000;
}

.saleprice {
    margin-left: 10px;
    color: #939199;
}

.empty_cart {
    width: 100%;
    border: 1px dashed #f5f5f5;
    padding: 50px 0px !important;
}

.empty_cart_con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.empty_cart_title {
    margin-top: 20px;
    font-size: 25px;
}

.empty_cart_title_p {
    font-size: 14px;
    color: #4a5568;
}

.empty_cart_title_p_top a {
    display: block;
    height: 40px;
    width: 170px;
    background: #000;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-weight: 600;
    margin-top: 30px;
}

#minicartheader .empty_cart {
    width: 80%;
    margin: 0px auto;
}

#minicartheader .empty_cart_title {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

#minicartheader .empty_cart_title_p {
    text-align: center;
}

.cartbanner {
    position: relative;
    z-index: -1;
}

.img_pos {
    position: relative;
    z-index: -1;
}

.productsliderimgcon {
    position: relative;
}

.cart_con_slid_right_top a {
    font-size: 14px;
    font-weight: 500;
}

.productsliderimgcon {
    position: relative;
    z-index: -1;
}

section {
    position: relative;
    /* z-index: 1; */
}

.shop_check_box a {
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.shop_check_box a span:last-child {
    color: #4a5568;
}

.pro_title {
    font-size: 18px;
}

.pro_stock,
.price_right i,
.price_right {
    color: #1880D3;
}

.buynowbutton {
    background: #FCEEB0;
    color: #000;
    transition: all 0.5s;
}

.para_a {
    color: #4a5568;
}

.text-bold_a,
.text-bold {
    position: relative;
    border-bottom: 1px solid #f5f5f5;
    box-shadow: none;
}

.estddatecon {
    margin-top: 10px;
    font-weight: 600;
    color: #1880D3;
}

.login_con_left::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.login_con_left_ab2_title2 {
    font-weight: 600 !important;
    font-size: 20px !important;
}

.login_con_left_ab2_title1 {
    letter-spacing: 0px !important;
    text-transform: capitalize !important;
    font-weight: 600 !important;
}

.link_product a {
    font-size: 15px !important;
}

.ap-otp-input {
    border: 1px solid #f5f5f5 !important;
}

.inner_cntainer_admins {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.admin_img {
    width: 100px;
}

.admin_tital {
    font-size: 25px;
    font-weight: 600;
    padding: 20px 0px;
}

.admin_para {
    text-align: center;
    font-size: 13px !important;
    color: #4a5568;
}

.admin_buttom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.admin_buttom a {
    display: block;
    width: 90px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
}

button {
    cursor: pointer !important;
}

.productsliderimgcon a {
    display: block;
}

.footer_link_address_con {
    flex: 0 0 300px;
    max-width: 300px;
}

.footer_bottom_left a {
    color: #F3D05B;
}

.totalcart {
    display: block !important;
}

/* top header  */

.headercart_wishlist {
    max-width: 50px;
    flex: 0 0 50px;
    display: flex;
    justify-content: space-between;
    align-content: center;
    margin-top: 10px;
    margin-left: 20px;
}

.header_con_bottom_logo {
    flex: 0 0 100px !important;
    max-width: 100px !important;
}

.amainheader_con {
    flex: 0 0 calc(100% - 120px);
    max-width: calc(100% - 120px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.menubuttonclcon {
    display: none !important;
}

.header {
    z-index: unset !important;
}

.header_con_top {
    /* height: 40px !important; */
}

.header_con_top_con {
    /* line-height: 40px !important; */
    font-size: 14px;
}

@media screen and (max-width:992px) {
    .header_con_bottom {
        justify-content: space-between !important;
        align-items: center !important;
        position: relative;
    }

    .amainheader_con {
        flex: unset;
        max-width: unset;
    }

    .menubuttonclcon {
        display: block !important;
        position: absolute;
        z-index: 999;
        top: 30px;
        left: -15px;
    }
}

#btncart i {
    color: #000 !important;
}

.menubuttoncl {
    background: transparent;
    border: none;
    padding: 0px;
    margin: 0px;
}

.line {
    fill: none;
    stroke: var(--primary-black);
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.line2 {
    stroke-dasharray: 60 60;
    stroke-width: 6;
}

.line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
}

.opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 6;
}

.opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
}

.mrep_menu_con_top {
    margin-top: 70px !important;
}

.color_cart {
    background: #000 !important;
    border-radius: 50% !important;
    height: 12px;
    width: 12px;
    line-height: 10px !important;
    text-align: center;
    font-size: 8px !important;
    font-weight: 900 !important;
}

.open_button .color_cart {
    top: -10px !important;
    background-color: transparent !important;
    font-size: 12px !important;
    font-weight: 700;
    right: 0px !important;
    background: #000 !important;
    border-radius: 50% !important;
    height: 12px !important;
    width: 12px !important;
    line-height: 10px !important;
    text-align: center;
    font-size: 8px !important;
    font-weight: 900 !important;
}

.respopositions {
    position: fixed !important;
    top: 70px;
    left: 20px;
}

.header_con_top_con_right {
    /* display: none !important; */
}

/* .header_con_top_con_left{
    flex: 0 0 100%;
    max-width: 100%;
} */

@media screen and (max-width:768px) {
    .shop_product_con {
        width: calc(100% + 40px) !important;
        margin-left: -40px !important;
    }

    .shop_product_con .productslider {
        flex: 0 0 calc((100% - 80px) / 2);
        max-width: calc((100% - 80px) / 2);
        margin-left: 40px;
        margin-top: 40px;
    }
}

@media screen and (max-width:475px) {
    .shop_product_con {
        width: calc(100% + 0px) !important;
        margin-left: 0px !important;
    }

    .shop_product_con .productslider {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-left: 0px;
        margin-top: 40px;
    }
}

@media screen and (max-width:1024px) {
    .shopbuttoncart {
        opacity: 1 !important;
        bottom: 20px;
    }

    .addtowishlist {
        opacity: 1 !important;
        top: 20px !important;
        right: 20px !important;
    }
}

.addtowishlist i {
    font-size: 14px;
}


.error {
    color: #f00;
    font-size: 13px;
}

::selection {
    color: #fff !important;
    background: #17A2B8 !important;
}

.wrapper {
    width: 400px;
    background: #fff;
    border-radius: 10px;
    padding: 20px 25px 40px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

header h2 {
    font-size: 24px;
    font-weight: 600;
}

header p {
    margin-top: 5px;
    font-size: 16px;
}

.price-input {
    width: 100%;
    display: flex;
    margin: 30px 0 35px;
}

.price-input .field {
    display: flex;
    width: 100%;
    height: 45px;
    align-items: center;
}

.field input {
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 19px;
    margin-left: 12px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #999;
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.price-input .separator {
    width: 130px;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;
}

.slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
    display: none;
}

.slider .progress {
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: #17A2B8;
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: 5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}