@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Jost", sans-serif;
}

a {
    text-decoration: none !important;
}

:root {
    --main-color: #E7272D;
    --sub-color: #FFE119;
    --third-color: white;
    --smoke-color: #faf7f2;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background-color: var(--main-color);
}

/*top header style*/
header {
    background: var(--main-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 999;
}

.top-haeder {
    padding: 10px 0px;
    border-bottom: 1px solid #ffffff50;
}

.top-header-left .currency a,
.top-header-left .language a {
    outline: none;
    background: transparent;
    color: var(--third-color);
    border: none;
    font-size: 13px;
}

.top-header-left .currency .option-menu,
.language .option-menu {
    background-color: var(--third-color);
    width: 100%;
    clip-path: polygon(100% 100%, 0 100%, 0 10%, 44% 10%, 50% 0, 56% 10%, 100% 10%);
    padding-top: 11px;
    transform: translate(0px, 25px);
    opacity: 0;
    display: none;
}

.top-header-left .currency .option-menu li a,
.language .option-menu li a {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    transition: .6s;
}

.top-header-left .currency .option-menu li,
.language .option-menu li {
    background-color: var(--third-color);
    text-align: center;
    padding: 5px 10px;
    transition: .6s;
    cursor: pointer;
}

.top-header-left .currency .option-menu li:hover,
.language .option-menu li:hover {
    transition: .6s;
}

.top-header-left .currency .option-menu li:hover a,
.language .option-menu li:hover a {
    transition: .6s;
    color: var(--main-color);
}


.top-header-left .currency>a,
.language>a {
    font-size: 13px;
    display: flex;
    color: var(--third-color);
    width: 100px;
    justify-content: space-between;
}

.language>a {
    width: 80px;
}

.top-header-left .currency>a span:nth-child(2),
.language>a span:nth-child(2) {
    display: block;
    margin-top: 2px;
}

.top-header-left .currency,
.top-header-left .language {
    position: relative;
}

.top-header-left .currency:hover .option-menu,
.language:hover .option-menu {
    animation: fade-up .5s ease-in-out forwards alternate;
    display: block;
}

@keyframes fade-up {
    0% {
        transform: translate(0px, 25px);
        opacity: 0;

    }

    100% {
        transform: translate(0px, 0px);
        opacity: 1;
    }
}

.top-header-left .currency .option,
.language .option {
    width: 150px;
    position: absolute;
    z-index: 9;
}

.top-header-right ul.user_option li a {
    color: var(--third-color);
    font-size: 14px;
    transition: .6s;
}

.top-header-right ul.user_option li a:hover {
    color: var(--sub-color);
    transition: .6s;
}

/*header style*/
.logo a h3 {
    font-size: 45px;
    color: var(--sub-color);
    margin-bottom: 0;
}

.logo a h3 span {
    color: var(--third-color);
}

.main-header {
    padding: 10px 0px;
    border-bottom: 1px solid #ffffff50;
}

.header_left .search-bar form.search-bar-form {
    position: relative;
    width: 300px;
    height: 45px;
}

.offcanvas2 .offcanvas-header>button:hover {
    background-color: var;
}

.offcanvas2 .offcanvas-header {
    background: var(--main-color);
}

.offcanvas2 {
    width: 300px !important;
}

.offcanvas2 button.btn-close {
    background: var(--sub-color) !important;
    color: var(--main-color) !important;
    transition: .6s;
}

.offcanvas2 button.btn-close:hover {
    background: var(--third-color) !important;
    transition: .6s;
}

.page_button {
    padding: 10px 25px;
    font-weight: 600;
    outline: none;
    border: none;
    background-color: var(--third-color);
    color: var(--main-color);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: .6s;
    font-size: 16px;
}

.page_button span {
    position: relative;
    z-index: 9;
}

.page_button::after {
    content: " ";
    position: absolute;
    width: 0%;
    height: 100%;
    background-color: var(--sub-color);
    display: block;
    left: 0;
    top: 0;
    transition: .6s;

}

.page_button:hover span {
    color: var(--main-color);
}

.page_button:hover::after {
    width: 100%;
}

.header_left .search-bar form.search-bar-form input {
    outline: none;
    border: 1px solid var(--sub-color);
    padding: 0px 15px;
    background: var(--third-color);
    font-size: 14px;
    width: 100%;
    height: 100%;
    color: #333;
    border-radius: 3px;
}

.header_left .search-bar form.search-bar-form input::placeholder {
    color: #333;
}

.header_left .search-bar form.search-bar-form button {
    position: absolute;
    outline: none;
    height: 100%;
    width: 45px;
    border: none;
    right: 0;
    background: var(--sub-color);
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    cursor: pointer;
    transition: .6s;
    color: var(--main-color);
}

.header_left .search-bar form.search-bar-form button:hover {
    color: var(--main-color);
    background: var(--sub-color);
    transition: .6s;
}

.header_left .shopping_option ul li a {
    width: 40px;
    height: 100%;
    display: block;
}

.bottom_header {
    border-bottom: 1px solid #ffffff50;
}

.bottom_header_wrapper {
    padding: 5px 0px;
}

.header_left .shopping_option ul {
    height: 40px;
}

.header_left .shopping_option ul {
    height: 45px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
}

.header_left .shopping_option ul li a {
    width: 45px;
    display: block;
    display: grid;
    place-items: center;
    height: 45px;
    background: var(--third-color);
    color: var(--main-color);
    border-radius: 3px;
    transition: .6s;
    font-size: 14px;
}

.header_left .shopping_option ul li a:hover {
    transition: .6s;
    background: var(--sub-color);
}

.header_left .shopping_option ul li:last-child .shop_div2 a {
    background: transparent;
    color: var(--third-color);
    border: none;
    width: 80px;
}

.header_left .shopping_option ul li:last-child a:hover .shopping_option ul li:nth-child(2) .shop_div a {
    background: var(--sub-color);
    color: var(--main-color);
    transition: .6s;
}

.header_left .shopping_option ul li:nth-child(2) .shop_div a:before {
    content: "0";
    position: absolute;
    width: 25px;
    display: grid;
    height: 25px;
    background: var(--sub-color);
    border-radius: 3px;
    color: var(--main-color);
    place-items: center;
    font-size: 14px;
    left: -13px;
    transition: .6s;
}

.header_left .shopping_option ul li:nth-child(2) a {
    position: relative;
}

.header_left .shopping_option ul li:nth-child(2) .shop_div:hover a:before {
    background: var(--third-color);
    color: var(--main-color);
}

.header_left .shopping_option ul li:nth-child(2) .shooping_overview .shopping_wrapper {
    width: 500px;
    height: 200px;
    background: var(--third-color);
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    clip-path: polygon(0 97%, 0 7%, 89% 7%, 92% 0, 95% 7%, 100% 7%, 100% 100%);
}

.header_left .shopping_option ul li:nth-child(2) .shooping_overview {
    position: absolute;
    right: 0;
    display: none;
    transform: translate(0px, 20px);
    padding: 10px;
    padding-right: 0;
    padding-top: 5px;
    z-index: 99;
}

.header_left .shopping_option ul li:nth-child(2) {
    position: relative;
}

.header_left .shopping_option ul li:nth-child(2):hover .shooping_overview {
    display: block;
    animation: fade_shop .8s ease-in-out forwards alternate;
}

@keyframes fade_shop {
    0% {
        transform: translate(0px, 20px);
        opacity: 0;

    }

    100% {
        transform: translate(0px, 0px);
        opacity: 1;
    }
}

ul#desktop_menu .nav-item {
    margin-right: 10px;
}

ul#desktop_menu {
    padding: 10px 0px;
    flex-direction: row;
    gap: 20px;
    color: white;
    font-size: 14px;
    align-items: center;
}

.tab_container .nav-link {
    color: #333 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    background: #f4f5f7;
}

.cart_info .cart_button .decrease {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.cart_info .cart_button .increase {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.cart_product .single_product.d-flex .cart_img {
    width: 110px;
    height: 110px;
    margin-right: 10px;
    border-radius: 100%;
    border: 2px solid var(--main-color);
    overflow: hidden;
    background: white;
}

.cart_product .single_product.d-flex .cart_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

div#offcanvasRight {
    background-color: var(--third-color);
    color: var(--main-color);
    min-height: 100vh;
}

.offcanvas-header {
    border-bottom: 1px solid var(--main-color);
}

.cart_info .cart_star span {
    color: var(--main-color);
    font-weight: 500;
}

.cart_info h3 a {
    color: black;
    font-size: 22px;
    margin-bottom: 5px;
    transition: .6s;
}

.cart_info h3 a:hover {
    color: var(--main-color);
    transition: .6s;
}

.cart_info .cart_product_price {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart_info .cart_button span {
    font-size: 12px;
    width: 25px;
    height: 100%;
    /* border-radius: 100%; */
    background: var(--sub-color);
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

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

.cart_info .cart_button input {
    width: 50px;
    background: var(--main-color);
    outline: none;
    border: none;
    text-align: center;
    color: var(--sub-color);
    height: 35px;
    font-size: 16px;
    padding: 0px 10px;
}

.cart_info .cart_star {
    font-size: 11px;
    align-items: center;
    margin-bottom: 5px;
}

.cart_info .cart_star .review_count {
    margin-left: 5px;
}

.cart_info .cart_star {
    font-size: 11px;
    align-items: center;
    margin-bottom: 5px;
    color: #EFC80B;
}

.cart_info .cart_star .review_count {
    margin-left: 5px;
}

.offcanvas-header>button {
    background: var(--main-color) !important;
    opacity: 1;
    color: var(--sub-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    transition: .6s;
}

.offcanvas-header>button:hover {
    transition: .6s;
    background-color: var(--sub-color) !important;
    color: var(--main-color) !important;
    opacity: 1;
}

.cart_view {
    padding: 15px 0px;
    border-top: 1px solid var(--main-color);
}

.cart_product {
    padding: 20px 0px;
}

.cart_view .cart_count h3 {
    margin-bottom: 0;
    font-size: 22px;
}

.cart_view .cart_count .cart_total {
    font-size: 16px;
    font-weight: 500;
}

.cart_view .cart_view_button {
    margin-top: 15px;
    gap: 15px;
}

.cart_view .cart_view_button a {
    padding: 15px 35px;
    background: var(--sub-color);
    color: var(--main-color);
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    transition: .6s;
    width: 100%;
    text-align: center;
}

.cart_view .cart_view_button a:hover {
    background: var(--main-color);
    color: var(--sub-color);
    transition: .6s;
}

.cart_view .cart_view_button a:last-child:hover {
    background: var(--sub-color);
    color: var(--main-color);
    transition: .6s;
}

.cart_view .cart_view_button a:last-child {
    background: var(--main-color);
    color: var(--sub-color);
    transition: .6s;
}

.button_side {
    display: flex;
}

.button_side a:hover span {
    color: var(--main-color);
    z-index: 9;
    position: relative;
    transition: .6s;
}

.button_side a::after {
    content: " ";
    background: var(--third-color);
    position: absolute;
    width: 0%;
    height: 100%;
    transition: .6s;
}

.button_side a:hover::after {
    width: 100%;
    transition: .6s;
}

.button_side a {
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 50px;
    padding: 0 25px;
    color: var(--main-color);
    background-color: var(--sub-color);
    font-size: 16px;
    font-weight: 600;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
    right: 0;
    transition: .6s;
}

.bottom_header_wrapper .button_side button {
    height: 45px;
    border: none;
    outline: none;
    width: 45px;
    font-size: 20px;
    background: var(--third-color);
    color: var(--main-color);
    border-radius: 3px;
    transition: .6s;
}

.bottom_header_wrapper .button_side button:hover {
    background: var(--sub-color);
    color: var(--main-color);
    transition: .6s;
}

/* header sticky animation */
header.sticky_animation {
    position: sticky;
    top: 0;
    transform: translate(0px, 20px);
    animation: sticky_anim 1s alternate forwards ease-in-out;
}

@keyframes sticky_anim {
    0% {
        transform: translate(0px, -110px);
        opacity: 0;
    }

    100% {
        transform: translate(0px, 0px);
        opacity: 1;
    }
}

/*small screen searchBar Style*/
.search_bar {
    background: var(--third-color);
    color: white;
    height: 100vh;
    width: 100%;
    overflow: auto;
    position: fixed;
    z-index: 999;
    transform: translate(0px, -100%);
}

.search_bar .search_bar_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0px;
}

.search_bar .search_bar_wrapper .search_bar_header h2 {
    text-align: center;
    font-size: 35px;
    color: var(--main-color);
}

.search_bar .search_bar_wrapper .search_bar_header p {
    text-align: center;
    color: #666;
}

.search_bar .search_bar_wrapper .search_bar_body {
    width: 80%;
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input {
    position: relative;
    height: 40px;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid var(--main-color);
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input input {
    position: absolute;
    width: 100%;
    outline: none;
    border: 1px solid transparent;
    padding: 0px 50px;
    padding-right: 150px;
    font-size: 14px;
    height: 100%;
    border-radius: 5px;
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input>span {
    display: block;
    width: 40px;
    height: 100%;
    background: transparent;
    z-index: 9;
    display: grid;
    place-items: center;
    color: #999;
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input .search_btn {
    height: 100%;
    z-index: 9;
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input .search_btn select.filter {
    outline: none;
    border: 1px solid transparent;
    height: 40px;
    width: 90px;
    cursor: pointer;
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input .search_btn button {
    width: 40px;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--third-color);
    background: var(--main-color);
    margin-left: 5px;
    border: none;
    outline: none;
}

.search_bar .search_bar_wrapper .search_bar_body .search_bar_input .search_btn .search_option>span {
    color: var(--main-color);
    display: grid;
    place-items: center;
    margin-right: 5px;
}

.search_suggestion {
    margin-top: 30px;
    background: var(--main-color);
    padding: 20px 0px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transform: translate(0px, 70px);
    visibility: hidden;

}

@keyframes fade_top {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translate(0px, 70px);
    }

    100% {
        visibility: visible;
        opacity: 1;
        transform: translate(0px, 0px);
    }
}

.search_suggestion .single_item {
    width: 100%;
    border-bottom: 1px solid var(--sub-color);
    padding: 4px 0px;
    background: var(--main-color);
    gap: 10px;
}

.search_suggestion .single_item .item_img {
    width: 15%;
    height: 40px;
    overflow: hidden;
}

.search_suggestion .single_item h3 {
    font-size: 16px;
    margin-bottom: 0px;
}

.search_suggestion .single_item {
    color: var(--third-color);
}

.search_suggestion .single_item .item_img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.search_suggestion li:first-child .single_item {
    border-top: 1px solid var(--sub-color);
}

.search_bar_wrapper .search_close {
    position: absolute;
    width: 30px;
    height: 30px;
    font-size: 15px;
    border-radius: 100%;
    display: grid;
    place-items: center;
    background-color: var(--main-color);
    color: var(--sub-color);
    top: 30px;
    right: 30px;
    cursor: pointer;
}

.search_icon {
    color: var(--main-color);
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    background: var(--third-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: .6s;
}

.search_icon:hover {
    background: var(--sub-color);
    transition: .6s;
}

@keyframes show_searchbar {
    0% {
        display: none;
        transform: translate(0px, -100%);
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
        transform: translate(0px, 0px);
    }
}

@keyframes fade_down {
    0% {
        opacity: 1;
        transform: translate(0px, 0px);
    }

    100% {
        transform: translate(0px, -100%);
        opacity: 0;
    }

}

/*prelaoder style*/
.preloader {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: var(--sub-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.spinner {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 9px solid;
    border-color: var(--main-color) #0000;
    animation: spinner-0tkp9a 1s infinite;
}

@keyframes spinner-0tkp9a {
    to {
        transform: rotate(.5turn);
    }
}

.preloader h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 85px;
    letter-spacing: 10px;
    color: #0000002e;
    animation: text_anim 1s ease-in infinite alternate;
}

@keyframes text_anim {
    0% {
        transform: translate(-50%, -47%);
    }

    100% {
        transform: translate(-50%, -53%);
    }
}

.preloader svg {
    width: 150px;
}

.cookies_alert {
    position: fixed;
    bottom: 30px;
    left: -400%;
    background-color: var(--third-color);
    padding: 25px;
    z-index: 99999;
    width: 400px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@keyframes cookies_close {
    0% {
        left: 20px;
        opacity: 1;
    }

    100% {
        left: -400%;
        opacity: 0;
    }
}

@keyframes cookies_open {
    0% {
        left: -400%;
        opacity: 0;
    }

    100% {
        left: 20px;
        opacity: 1;
    }
}

.cookies_icon {
    display: block;
    font-size: 100px;
    color: #c79846;
    position: absolute;
    top: -68px;
    right: -50px;
}

.cookies_alert .cookies_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.cookies_alert .cookies_wrapper p {
    color: #333;
    font-size: 14px;
    line-height: 1.6rem;
}

.cookies_alert .cookies_wrapper button {
    outline: none;
    border: none;
    padding: 10px 25px;
    border-radius: 3px;
    background-color: var(--main-color);
    color: var(--third-color);
    font-size: 15px;
    cursor: pointer;
}

.cookies_alert .cookies_wrapper .close_btn {
    background-color: #333;
}

/* accordian style */
.accordion-container .accordion-title {
    position: relative;
    margin: 0;
    display: block;
    font-weight: normal;
    color: black;
    cursor: pointer;
}

.accordion-content {
    border: 1px solid var(--main-color);
    padding: 10px;
}

.accordion-container .accordion-title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 12px;
    height: 2px;
    transform: rotate(90deg);
    background: black;
    transition: all .3s ease-in-out;
}

.accordion-container .accordion-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 12px;
    height: 2px;
    background: black;
    transition: all .2s ease-in-out;
}

.accordion-container .accordion-title.open::before {
    transform: rotate(180deg);
    background: var(--third-color);
}

.accordion-container .accordion-title.open::after {
    opacity: 0;
    background: var(--third-color);
}

.accordion-content a {
    display: block;
    padding: 5px 0px;
    color: var(--main-color);
    transition: .6s;
}

.accordion-content a:hover {
    color: #333;
    transition: .6s;
}


.accordion-container .menu_item {
    color: var(--main-color);
    font-size: 16px;
    padding: 10px;
    width: 100%;
    display: block;
    transition: .6s;
}

.accordion-container .menu_item:hover {
    color: var(--third-color);
    transition: .6s;
    background: var(--main-color);
}

.accordion-container .accordion-title.open {
    background-color: var(--main-color);
    color: var(--third-color);
}

.accordion-container .accordion-title:hover::before {
    background: var(--third-color);
}

.accordion-container .accordion-title:hover::after {
    background: var(--third-color);
}

section#hero_section .side_option {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
    z-index: 99;
    margin-right: 5px;
}

.side_option .single_option {
    width: 40px;
    height: 40px;
    background-color: var(--sub-color);
    color: var(--main-color);
    display: grid;
    place-items: center;
    border-bottom: 1px solid var(--main-color);
    border-radius: 5px;
    transition: .6s;
}

.side_option .single_option:hover {
    background-color: var(--third-color);
    transition: .6s;
}

.cart_product .single_product {
    position: relative;
}

.single_product .product_delete {
    background: var(--main-color);
    width: 20px;
    height: 20px;
    position: absolute;
    top: -10px;
    border-radius: 100%;
    display: grid;
    place-items: center;
    font-size: 10px;
    cursor: pointer;
    transition: .6s;
    color: var(--sub-color);
}

.single_product .product_delete:hover {
    outline: 1px solid var(--sub-color);
    transition: .6s;
}

/* @media only screen and (max-width: 668px) {
    .top-header-wrapper {
        flex-direction: column;
        gap: 10px;
    }
} */
/* full header style end */


.about_product {
    padding: 50px 10px;
}

.about_product .img_area {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.about_product .swiper-button-next2,.swiper-button-next5,
.swiper-button-next,
.swiper-button-prev,
.about_product .swiper-button-prev2,.swiper-button-prev5{
    width: 40px !important;
    height: 40px !important;
    background: var(--main-color) !important;
    border-radius: 50%;
}

.about_product .swiper-button-next2::after,
.swiper-button-next5::after,
.swiper-button-next::after,
.swiper-button-prev::after,
.swiper-button-prev5::after,
.about_product .swiper-button-prev2::after {
    font-size: 18px !important;
    color: var(--third-color) !important;
    font-weight: 600;
}

.swiper.mySwiper2 {
    margin-bottom: 25px;
}

.mySwiper3 img {
    cursor: pointer;
}

.mySwiper3 .swiper-pagination-bullet,.mySwiper4 .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: var(--main-color);
}

.mySwiper3 .swiper-pagination {
    bottom: 1px;
}

.mySwiper3 .swiper-wrapper {
    padding-bottom: 50px;
}

.next_privious_poduct a.p_btn {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: var(--main-color);
    color: var(--third-color);
    font-size: 14px;
    font-weight: 500;
    transition: .6s;
}

.details_head>a {
    font-size: 16px;
    color: #777;
}

.details_head a:hover {
    text-decoration: underline !important;
}

.details_head {
    margin-bottom: 10px;
}

.product_page_details>h3 {
    font-size: 30px;
    color: #333;
}

.product_page_details .review_short_info svg {
    font-size: 14px;
    color: #EFC80B;
}

.product_page_details .review_short_info>span {
    font-size: 15px;
    color: #333;
    margin-left: 5px;
}

.review_price>strong {
    font-size: 16px;
    color: #333;
}

.review_price>strong svg {
    color: green;
}

.review_price {
    margin-bottom: 25px;
}

.product_page_details .price {
    font-size: 23px;
    font-weight: 600;
    color: #333;
}

.product_page_details .price del {
    color: #777;
}

.product_page_details>p {
    font-size: 15px;
    line-height: 1.6rem;
    color: #666;
    margin-bottom: 30px;
}

.product_page_details .view_bottom {
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
}

.product_page_details .view_bottom .cart_input {
    display: grid;
    grid-template-columns: auto auto;
    height: 45px;
}

.product_page_details .view_bottom .cart_input .cart_count span {
    width: 40px;
    height: 100%;
    display: grid;
    place-items: center;
    color: #333;
    background: #ededed;
    cursor: pointer;
}

.product_page_details .view_bottom .cart_input .cart_count input {
    height: 100%;
    width: 50px;
    border: 1px solid #ededed;
    text-align: center;
    padding: 5px;
    font-size: 14px;
    color: #333;
    outline: none;
}

.product_page_details .cart_button button {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
    color: #333;
    font-weight: 500;
    outline: none;
    border: 1px solid transparent;
    background: var(--main-color);
    color: var(--third-color);
    border-radius: 5px;
    transition: .6s;
}

.product_page_details .view_bottom .popup__option a {
    display: grid;
    place-items: center;
    width: 100%;
    height: 45px;
    background: var(--third-color);
    border: 1px solid var(--main-color);
    border-radius: 5px;
    color: var(--main-color);
    font-weight: 500;
    transition: .6s;
}

.product_page_details .view_bottom .popup__option a:hover {
    background: var(--main-color);
    color: var(--third-color);
    transition: .6s;
}

.product_page_details .cart_button button:hover {
    background: var(--third-color);
    border: 1px solid var(--main-color);
    color: var(--main-color);
    transition: .6s;
}

.woo_share .wishlist_compare a {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.woo_share .wishlist_compare a svg {
    color: var(--main-color);
    margin-right: 5px;
}

.woo_share .wishlist_compare a:hover {
    transition: .6s;
    color: var(--main-color);
}

.woo_share .social_links a {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    background: var(--main-color);
    color: var(--third-color);
    border: 1px solid transparent;
    border-radius: 50%;
    transition: .6s;
}

.woo_share .social_links a:hover {
    transition: .6s;
    background: var(--third-color);
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.woo_share .social_links {
    gap: 10px;
}

.next_privious_poduct a.p_btn:hover {
    background: var(--third-color);
    color: var(--main-color);
    transition: .6s;
    border: 1px solid var(--main-color);
}

.others_product {
    position: relative;
}

.others_product .product_link {
    width: 90px;
    height: 100px;
    position: absolute;
    bottom: 0;
    left: -27px;
    transform: translate(0px, 100%);
    padding: 10px;
    display: none;
    transition: .6s;
    opacity: 0;
    border: 2px solid var(--main-color);
    background: var(--third-color);
}

.others_product .product_link a {
    width: 100%;
    height: 100%;
}

.others_product .product_link img {
    object-fit: contain;
}

.others_product:last-child .product_link {
    transform: translate(-30px, 100%);
}

.others_product:hover .product_link {
    display: block;
    transition: .6s;
    opacity: 1;
}


/* quick view style */
.quick_view_popup {
    width: 100%;
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    height: 100vh;
    z-index: 9999;
}

.quick_view_popup .popup_bg {
    background: #000000b3;
    width: 100%;
    position: absolute;
    height: 100%;
}
.quick_view_wrapper .close_quick_view:hover {
    background-color: var(--main-color);
    color: var(--third-color);
    transition: .6s;
}
.quick_view_wrapper .close_quick_view{
    position: absolute;
    right: 5px;
    top: 5px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: var(--main-color);
    background-color: var(--smoke-color);
    cursor: pointer;
    border-radius: 50%;
    transition: .6s;
}
.quick_view_popup .quick_view_wrapper {
    width: 720px;
    background: var(--third-color);
    z-index: 9;
    padding: 20px;
    height: 560px;
    border-radius: 10px;
    position: relative;
}
.quick_view_popup .quick_view_wrapper .right_side > a:hover {
    text-decoration: underline !important;
}
.quick_view_popup .quick_view_wrapper .right_side > a{
    font-size: 16px;
    color: #666;
}
.quick_view_popup .quick_view_wrapper .right_side .p_title {
    font-size: 25px;
    color: #333;
    font-weight: 600;
    margin-top: 5px;
}
.about_product .swiper-button-next2,
.swiper-button-next,
.swiper-button-prev,
.about_product .swiper-button-prev2 {
    width: 40px !important;
    height: 40px !important;
    background: var(--main-color) !important;
    border-radius: 50%;
}

.about_product .swiper-button-next2::after,
.swiper-button-next::after,
.swiper-button-prev::after,
.about_product .swiper-button-prev2::after {
    font-size: 18px !important;
    color: var(--third-color) !important;
    font-weight: 600;
}

.mySwiper4 .swiper-wrapper {
    padding: 30px 0px;
    padding-bottom: 50px;
}

.mySwiper3  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--main-color);
}

.mySwiper2 .img_area {
    padding: 20px;
}
.quick_view_popup .quick_view_wrapper .right_side .quick_price {
    font-size: 22px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 10px;
}

.quick_view_popup .quick_view_wrapper .right_side .rating_info {
    padding: 10px 0px;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}
.quick_view_popup .quick_view_wrapper table.rating {
    width: 100%;
}

.quick_view_popup .quick_view_wrapper table.rating tr td {
    font-size: 16px;
}

.quick_view_popup .quick_view_wrapper table.rating tr td .rating_star {
    color: #EFCA00;
    font-size: 14px;
}

.quick_view_popup .quick_view_wrapper table.rating tr td {
    padding: 5px 0px;
}

.quick_view_popup .quick_view_wrapper p.product_des {
    font-size: 16px;
    color: #666;
    line-height: 1.6rem;
    padding: 10px 0px;
}

.quick_view_popup .quick_view_wrapper .quantity h4 {
    font-size: 20px;
    color: #333;
}
.quick_view_popup .quick_view_wrapper .quantity .quantity_wrapper span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background-color: #ededed;
    color: #333;
    cursor: pointer;
}
.quantity .quantity_wrapper input::-webkit-inner-spin-button,
.quantity .quantity_wrapper input::-webkit-outer-spin-button{
    appearance: none;
}
.quick_view_popup .quick_view_wrapper .quantity .quantity_wrapper input {
    width: 50px;
    height: 40px;
    outline: none;
    border: 1px solid #ededed;
    font-size: 14px;
    color: #333;
    text-align: center;
    padding: 5px
}
.quick_view_popup .quick_view_wrapper .add_btn a:hover {
    background: var(--third-color);
    color: var(--main-color);
    border: 1px solid var(--main-color);
    transition: .6s;
}
.quick_view_popup .quick_view_wrapper .add_btn a {
    display: grid;
    height: 45px;
    background: var(--main-color);
    border: 1px solid transparent;
    color: var(--third-color);
    place-items: center;
    margin-top: 15px;
    transition: .6s;
    border-radius: 10px;
}

.quick_view_popup .quick_view_wrapper .product_option_area ul li {
    font-size: 15px;
    padding: 5px 0px;
}




/* cart popup style */
.cart_button input::-webkit-inner-spin-button,
.cart_button input::-webkit-outer-spin-button {
    appearance: none;
}

.cart_popup {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.cart_popup .cart_popup_bg {
    position: absolute;
    width: 100%;
    background: #000000a6;
    bottom: 0;
    height: 100%;
}

.cart_popup .cart_wrapper {
    width: 720px;
    height: 550px;
    background: white;
    overflow: auto;
    border-radius: 5px;
    z-index: 9;
    padding: 25px 20px;
    position: relative;
    background: var(--smoke-color);
}

.cart_popup .cart_wrapper .cart_popup_close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    background: var(--main-color);
    color: var(--third-color);
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    transition: .6s;
    border: 1px solid transparent;
}

.cart_popup .cart_wrapper .message h3 {
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

.cart_popup .cart_wrapper .message p {
    font-size: 15px;
    color: #334;
}

.cart_popup .cart_wrapper .message p svg {
    color: green;
    margin-right: 5px;
}

.cart_popup .cart_wrapper .cart_body {
    padding: 15px 0px;
    margin-bottom: 10px;
}

.cart_popup .cart_wrapper .cart_body .single_cart_product .cart_left {
    gap: 10px;
}

.cart_popup .cart_wrapper .cart_body .single_cart_product .cart_left .cart_img {
    width: 80px;
    padding: 6px;
    height: 80px;
    background: var(--third-color);
    border-radius: 100%;
    border: 2px solid var(--main-color);
    overflow: hidden;
}

.single_cart_product h4 {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

.cart_popup .cart_wrapper .cart_body .single_cart_product .cart_right {
    gap: 30px;
    width: 100%;
}

.cart_popup .cart_wrapper .cart_body .single_cart_product .cart_right .cart_product_price {
    font-size: 15px;
    font-weight: 500;
}

.cart_popup .cart_wrapper .cart_body .single_cart_product .cart_right .cart_button span {
    width: 25px;
    display: block;
    height: 25px;
    background: var(--main-color);
    color: var(--third-color);
    display: grid;
    place-items: center;
    font-size: 14px;
    height: 100%;
    cursor: pointer;
}

.cart_popup .cart_wrapper .cart_body .single_cart_product .cart_right .cart_button {
    display: flex;
    align-items: center;
    height: 30px;
}

.cart_popup .cart_wrapper .cart_body .single_cart_product .cart_right .cart_button input {
    outline: none;
    border: 1px solid var(--main-color);
    width: 35px;
    height: 100%;
    text-align: center;
    padding: 3px;
}

.cart_popup .cart_wrapper .cart_body .single_cart_product .cart_right .cart_product_remove {
    border: 1px solid transparent;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: #333;
    background: #ededed;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    transition: .6s;
}

.cart_details .cupon_area>h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.cart_details .cupon_area form.cupon_form {
    height: 40px;
    position: relative;
}

.cart_details .cupon_area form.cupon_form input {
    width: 100%;
    height: 100%;
    outline: none;
    border: 1px solid #666;
    border-radius: 5px;
    transition: .6s;
    padding: 0px 10px;
    font-size: 14px;
    color: #333;
}

.cart_details .cupon_area {
    width: 50%;
}

.cart_details {
    gap: 30px;
}

.cart_details .cupon_area form.cupon_form button {
    position: absolute;
    right: 0;
    height: 100%;
    padding: 0px 10px;
    outline: none;
    border: 1px solid var(--main-color);
    background: var(--main-color);
    color: var(--third-color);
    font-size: 14px;
    font-weight: 500;
    border-radius: 0px 5px 5px 0px;
}

.cart_details .cart_calculation>h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.cart_details .cart_calculation table.calculation_info tr td {
    font-size: 16px;
    padding: 3px 0px;
}

.cart_calculation {
    width: calc(100% - 50%);
}

.cart_calculation table.calculation_info {
    width: 100%;
    margin-bottom: 20px;
}

.cart_details .cart_calculation table.calculation_info tr td:last-child {
    text-align: right;
}

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

.calculation_btn a {
    font-size: 14px;
    font-weight: 500;
    background: var(--main-color);
    color: var(--third-color);
    padding: 10px 25px;
    border-radius: 10px;
    transition: .6s;
    border: 1px solid transparent;
}

.calculation_btn a:hover {
    background: var(--third-color);
    color: var(--main-color);
    border: 1px solid var(--main-color);
    transition: .6s;
}

.cart_bottom h3 {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.cart_bottom {
    margin-top: 20px;
}

.cart_bottom .related_product {
    display: grid;
    grid-template-columns: auto auto;
}

.cart_bottom .related_product .single_r_product {
    gap: 20px;
}

.cart_bottom .related_product .single_r_product .related_p_img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid var(--main-color);
    overflow: hidden;
    background: var(--third-color);
    padding: 10px;
}

.cart_bottom .related_product .single_r_product .related_p_img img {
    width: 100%;
    object-fit: contain;
    height: 100%;
}

.cart_bottom .related_product .single_r_product .related_product_info h4 {
    font-size: 19px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.cart_bottom .related_product .single_r_product .related_product_info p {
    font-weight: 500;
    font-size: 15px;
}

.cart_bottom .related_product .single_r_product .related_product_info>a {
    padding: 10px 20px;
    background: var(--main-color);
    color: var(--third-color);
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    display: inline-block;
    margin-top: 15px;
    transition: .6s;
    border: 1px solid transparent;
}

.cart_bottom .related_product .single_r_product .related_product_info>a:hover {
    background: var(--third-color);
    color: var(--main-color);
    border: 1px solid;
    transition: .6s;
}

.cart_popup .cart_wrapper .cart_body .single_cart_product .cart_right .cart_product_remove:hover {
    background: var(--main-color);
    color: var(--third-color);
    transition: .6s;
}

.cart_popup .cart_wrapper .cart_popup_close:hover {
    background: var(--third-color);
    color: var(--main-color);
    border: 1px solid var(--main-color);
    transition: .6s;
}

.cart_details .cupon_area form.cupon_form input:focus {
    border: 1px solid var(--main-color);
    transition: .6s;
}

.product_container_header {
    flex-wrap: wrap;
}

.p-header-right {
    flex-wrap: wrap;
}

h3.section_title {
    font-size: 30px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.single_product .product_img img {
    transition: .6s;
}

.single_product .product_img {
    background: var(--smoke-color);
    transition: .6s;
    padding: 30px;
    position: relative;
    overflow: hidden;
    height: 300px;
    display: flex;
    align-items: center;
}

.product_slider .single_product {
    border-radius: 10px;
    position: relative;
    background: var(--third-color);
    transition: .6s;
    overflow: hidden;
}

.single_product .product_info {
    padding: 15px 10px;
    position: relative;
}

.single_product .product_img .cart_add_btn {
    position: absolute;
    width: 100%;
    right: 0;
    bottom: -30px;
    opacity: 0;
    visibility: hidden;
    transition: .6s;
}



.single_product .product_img .cart_add_btn a {
    height: 45px;
    width: 100%;
    display: flex;
    justify-content: center;
    background: var(--main-color);
    align-items: center;
    color: var(--third-color);
    font-weight: 500;
    font-size: 15px;
    transition: .6s;
    border: 1px solid transparent;
}

@keyframes text_anim_leave {
    0% {
        bottom: 0;
        opacity: 1;
        visibility: visible;
        transition: .6s;
    }

    100% {

        bottom: -10px;
        opacity: 0;
        visibility: hidden;
        transition: .6s;
    }
}

@keyframes text_anim {
    0% {
        bottom: -30px;
        opacity: 0;
        visibility: hidden;
        transition: .6s;
    }

    100% {
        bottom: 0;
        opacity: 1;
        visibility: visible;
        transition: .6s;
    }
}

.single_product .product_img .cart_add_btn a:hover {

    background: var(--third-color);
    color: var(--main-color);
    transition: .6s;
    border: 1px solid var(--main-color);
}

.product_info .main_info>a {
    font-size: 15px;
    color: #666;
    font-weight: 500;
    transition: .6s;
}

.product_info .main_info>a:hover {
    text-decoration: underline !important;
    transition: .6s;
}

.product_info .main_info h3 a:hover {
    color: var(--main-color);
    transition: .6s;
}

.product_info .main_info h3 a {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    margin-top: 5px;
    transition: .6s;
}

.product_info .main_info>p {
    font-weight: 600;
    color: #333;
    font-size: 18px;
}

.product_slider .single_product .other_option {
    position: absolute;
    right: 15px;
    top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9;
    transform: translate(100%, 0%);
    opacity: 0;
    transition: .6s;
}

.product_slider .single_product:hover .other_option {
    transform: translate(0%, 0%);
    opacity: 1;
    transition: .6s;
}

.product_slider .single_product .other_option span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--main-color);
    background: var(--third-color);
    font-size: 14px;
    font-weight: 600;
    transition: .6s;
    cursor: pointer;
}

.single_product:hover .product_img img {
    transform: scale(1.12);
    transition: .6s;
}

.product_slider .single_product .other_option span:hover {
    background: var(--main-color);
    color: var(--third-color);
    transition: .6s;
}

.single_highlight>h2 {
    font-size: 22px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}

.h_product_container .single_h_product .h_product_img {
    width: 80px;
    height: 80px;
}

.h_product_container .single_h_product .h_product_img img {
    width: 100%;
}

.h_product_container .single_h_product .h_product_info .h_title a:hover {
    color: var(--main-color);
    transition: .6s;
}

.h_product_container .single_h_product .h_product_info .h_title a {
    font-size: 18px;
    color: #333;
    transition: .6s;
}

.h_product_container .single_h_product .h_product_info .h_price {
    font-size: 18px;
    font-weight: 500;
    color: var(--main-color);
    margin-bottom: 0;
}

section.related_product {
    margin-bottom: 50px;
}

.product_des_imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.img_container {
    margin: auto;
}

.description_tab {
    padding: 30px 15px;
}

.description_tab>p {
    font-size: 15px;
    line-height: 1.6rem;
    color: #333;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--main-color) !important;
    color: var(--main-color) !important;
}

.tab_container>ul li button {
    font-size: 16px;
    font-weight: 400;
    color: var(--third-color);
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    color: var(--main-color) !important;
    border-bottom: 2px solid var(--main-color) !important;
}

.nav-tabs .nav-link {
    border: none;
}

.tab_container .nav-tabs {
    border-bottom: none;
    justify-content: center;
}

/* file input css */
.wrap-custom-file {
    position: relative;
    text-align: center;
}

.wrap-custom-file input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    overflow: hidden;
    opacity: 0;
}

.wrap-custom-file label {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    background-color: #f4f5f7;
    border-radius: 5px;
    transition: transform 0.4s, -webkit-transform 0.4s;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
}

.wrap-custom-file label span {
    display: block;
    font-size: 1.4rem;
    color: #666;
    transition: color 0.4s;
}

.wrap-custom-file label:hover span {
    color: #333;
}

.wrap-custom-file label.file-ok {
    background-size: cover;
    background-position: center;
}

.wrap-custom-file label.file-ok span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.3rem;
    font-size: 1.1rem;
    color: #000;
    background-color: rgba(255, 255, 255, 0.7);
}

div#Review {
    padding: 30px 15px;
}

div#Review>h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

div#Review>.review_rating {
    font-size: 20px;
    margin-bottom: 20px;
}

div#Review .review_div>p {
    font-size: 14px;
    margin-bottom: 5px;
}

div#Review .review_div>button {
    outline: none;
    border: 1px solid transparent;
    width: 310px;
    font-size: 15px;
    font-weight: 500;
    height: 45px;
    background: var(--main-color);
    color: var(--third-color);
    transition: .6s;
    border-radius: 5px;
    margin-bottom: 20px;
}

div#Review .review_div>button:hover {
    background: #f4f5f7;
    color: #333;
}

div#Review .review_div>.review_form {
    width: 320px;
    display: none;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

div#Review .review_div>.review_form .my-rating {
    margin-bottom: 15px;
}

div#Review .review_div>.review_form .rating_input {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rating_input textarea {
    height: 100px;
}

div#Review .review_div>.review_form .rating_input input:focus,
.rating_input textarea:focus {
    border: 1px solid var(--main-color);
    transition: .6s;
}

div#Review .review_div>.review_form .rating_input input,
.rating_input textarea {
    outline: none;
    padding: 10px;
    border: 1px solid #999;
    background: #f4f5f7;
    font-size: 14px;
    border-radius: 5px;
}

div#Review .review_div>.review_form .rating_input label {
    font-size: 16px;
    font-weight: 500;
}


div#Review .review_div>.review_form .rating_input>button {
    width: 100%;
    border: 1px solid transparent;
    background: var(--main-color);
    color: var(--third-color);
    border-radius: 5px;
    height: 45px;
    font-size: 15px;
    font-weight: 500;
    transition: .6s;
}

.rating_file_input {
    height: 70px;
}

.rating_file_input>span {
    font-weight: 500;
    margin-bottom: 5px;
    display: inline-block;
}

.form_area_show {
    display: flex !important;
}

div#Review .review_div>.review_form .rating_input>button:hover {
    background: #f4f5f7;
    color: var(--color-four);
    transition: .6s;
}

ul.accordion-list {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    list-style: none;
    padding: 30px 15px;
}

ul.accordion-list li {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    background-color: #FFF;
    padding: 20px;
    margin: 0 auto 15px auto;
    border: 1px solid #eee;
    border-radius: 5px;
    cursor: pointer;
    background: #f4f5f7;
}

ul.accordion-list li.active h3:after {
    content: "\f068";
    font-family: 'FontAwesome';
}

ul.accordion-list li h3 {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0 0 0 0;
    margin: 0;
    font-size: 15px;
    letter-spacing: 0.01em;
    cursor: pointer;
    font-weight: 600;
    transition: .6s;
    color: #333;
}

ul.accordion-list li h3:after {
    content: "\2b";
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--main-color);
    transition: all 0.3s ease-in-out;
    font-size: 18px;
}

div.answer {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

div.answer p {
    position: relative;
    display: block;
    font-weight: 400;
    padding: 10px 0 0 0;
    cursor: pointer;
    line-height: 1.5rem;
    margin: 0 0 15px 0;
    font-size: 15px;
    color: #666;
}
ul.accordion-list li:hover h3 {
    transition: .6s;
    color: var(--main-color);
}

section.product_tab_section {
    margin: 40px 0px;
}




/* footer style start */

/* footer style */
.social_link a {
    width: 40px;
    height: 40px;
    background-color: var(--third-color);
    color: var(--main-color);
    display: grid;
    place-items: center;
    font-size: 17px;
    border-radius: 50%;
    transition: .6s;
}

footer {
    background-color: #1A1A1A;
    padding: 80px 0px;
    position: relative;
    padding-top: 120px;
    margin-top: 210px;
}

.fire1 {
    width: calc(100vw - 1000px);
}

.fire1 img {
    width: 100%;
    object-fit: cover;
    height: 60px;
    object-position: center bottom;
    animation: fire_anim_down 1.5s linear infinite alternate;
    transform-origin: bottom;
    transition: .6s;
}

@keyframes fire_anim_down {
    0% {
        transform: rotateX(0deg);
    }

    100% {
        transform: rotateX(60deg);
    }
}

.footer_content .footer_content1 p {
    font-size: 15px;
    color: #c3c3c3;
    line-height: 1.6rem;
    margin: 20px 0px;
    margin-bottom: 30px;
}

.social_link a:hover {
    background: var(--main-color);
    color: var(--third-color);
    transition: .6s;
}

.footer_content1 h3 {
    color: var(--main-color) !important;
}

.footer_content ul li a {
    font-size: 16px;
    color: #c3c3c3;
    transition: .6s;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.footer_content ul li a:hover {
    color: var(--main-color);
    transition: .6s;
}

.footer_content h3 {
    font-size: 25px;
    font-weight: 700;
    color: var(--third-color);
    margin-bottom: 30px;
}

.footer_content table {
    width: 100%;
}

.footer_content table tr td {
    width: 50%;
    color: var(--main-color);
    padding: 10px 0px;
    border-bottom: 1px solid var(--main-color);
    font-weight: 600;
}

.footer_content table tr td:last-child {
    text-align: right;
}

.newsletter {
    width: 1000px;
    background-color: var(--main-color);
    padding: 50px 50px;
    border-radius: 20px;
    margin: auto;
    position: absolute;
    left: 50%;
    top: -145px;
    transform: translate(-50%, 0px);
    z-index: 92;
}

.newsletter .newsletter_text {
    color: white;
}

.newsletter .newsletter_form {
    position: relative;
    width: 100%;
    height: 45px;
}

.newsletter .newsletter_form button {
    position: absolute;
    right: 0px;
    padding: 0px 20px;
    color: var(--main-color);
    height: 100%;
    outline: none;
    border: 1px solid transparent;
    background: var(--sub-color);
    font-size: 16px;
    font-weight: 600;
}

.newsletter .newsletter_form input {
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    outline: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
}

.newsletter .newsletter_text h2 {
    font-size: 31px;
    font-weight: 700;
}

.newsletter .newsletter_text p {
    color: #ffffffc9;
    margin-bottom: 0;
    margin-top: 20px;
}

.fire_effect {
    position: absolute;
    z-index: 9;
    top: 0;
    width: 100%;
    transform: translate(0px, -100%);
    display: flex;
    justify-content: space-between;
}

.fire_effect .fire1:first-child {
    left: 0;
}

.fire_effect .fire1:last-child {
    right: 0;
}

.blog_section .blog_btn a:hover {
    outline-offset: 2px;
    transition: .6s;
}

.footer_content table tr td:first-child {
    width: 40%;
}

.list_wrapper {
    display: flex;
    gap: 100px;
}

.copyright_section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0px;
    width: 100%;
    background-color: var(--main-color);
}

.copyright_section .copyright_text p {
    color: var(--third-color);
    margin-bottom: 0;
    font-size: 14px;
}

/* footer style end */


/* responsive style */

@media only screen and (max-width: 1200px) {

    .newsletter {
        width: 780px;
    }

    .fire1 {
        width: calc(100vw - 616px);
    }
}

@media only screen and (max-width: 991px) {

    footer {
        padding-top: 170px;
    }

    .newsletter {
        width: 640px;
        margin-top: 20px;
    }

    .newsletter .newsletter_form {
        margin-top: 20px;
    }

}

@media only screen and (max-width: 767px) {
    .mySwiper3 img {
        padding: 25px
    }
        .quick_view_popup .quick_view_wrapper{
            width: calc(100vw - 80px);
        }
}



@media only screen and (max-width: 668px) {
    .top-header-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter {
        width: calc(100vw - 150px);
        padding: 40px 30px;
    }

    .newsletter .newsletter_text h2 {
        font-size: 22px;
    }

    .newsletter .newsletter_text h2,
    .newsletter .newsletter_text p {
        text-align: center;
    }
}

@media only screen and (max-width: 576px) {
    .product_slider .single_product {
        margin: 0px 70px;
    }

    .fire1 {
        width: calc(100vw - 135px);
    }

    .newsletter .newsletter_text h2 {
        font-size: 18px;
    }

    .newsletter .newsletter_text p {
        font-size: 14px;
    }
}