* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-weight: 400;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clear {
    clear: both;
    line-height: 0;
    font-size: 0;
}

img {
    max-width: 100%;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0;
    padding: 0;
}

h2 {
    font-size: 20px;
    color: #454545;
    font-weight: 700;
    padding-bottom: 10px;
}

h2 span {
    color: #F57D12;
}

h2 span img {
    margin-right: 5px;
}

@media (min-width: 768px) {

    h2,
    .h2 {
        font-size: 19px;
    }
}

@media (min-width: 1200px) {

    h2,
    .h2 {
        font-size: 25px;
    }
}

p {
    color: #000;
    font-size: 15px;
    margin: 0;
    font-weight: 400;
}

a {
    color: #0AB0D8;
    font-weight: 500;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

ul,
ol {
    margin-left: 14px;
    list-style-type: none;
    margin-bottom: 22px;
}

ul li,
ol li {
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #000000;
    font-weight: 400;
}

@media (min-width: 1025px) {
    ul li:after {
        top: 10px;
    }

    ul li,
    ol li {
        padding: 0;
        font-size: 18px;
    }

    ul,
    ol {
        margin-left: 20px;
    }
}

.text-justify {
    text-align: justify !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}

.full-container {
    width: 100%;
    margin: 0 auto;
    padding-right: 15px;
    position: relative;
    padding-left: 15px;
    max-width: 1920px;
}

@media(min-width: 1500px) {
    .full-container {
        padding-right: 35px;
        padding-left: 35px;  
    }
}
/*button style*/


.btn {
    cursor: pointer;
    padding: 0 24px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    border: none;
    border-radius: 50px;
    color: #fff;
    background: #0071dc;
    line-height: 34px;
    text-align: center;
    position: relative;
    transition: all .4s ease-in-out;
}

.btn:hover {
    background: #d79a21;
    color: #fff;
    text-decoration: none;
}

.btn-primary:hover {
    background: #d79a21;
    color: #fff;
    text-decoration: none;
}

.btn-secondary {
    border: 1px solid #262626;
    background: transparent;
    color: #262626;
    padding: 0 20px;
    font-size: 14px;
    line-height: 30px;
}

.btn-secondary:hover {
    text-decoration: none;
    background: #262626;
    color: #fff;
}

@media (min-width: 1200px) {
    .btn {
        font-size: 15px;
        line-height: 38px;
    }

    .btn-secondary {
        font-size: 15px;
        line-height: 38px;
        padding: 0 24px;
    }
}


/**
* Forms
*/

label {
    margin: 0 0 0;
    color: #8181A5;
    font-weight: 400;
    font-size: 14px;
    padding: 0 0 5px;
    line-height: 1.50em;
}

[type="text"],
[type="date"],
[type="time"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
{
    width: 100%;
    padding: 0 20px;
    font-size: 14px;
    color: #8F8F8F;
    font-weight: 400;
    border: none;
    outline: none;
    background: #fff;
    line-height: 44px;
    transition: all .4s ease-in-out;
}

[type="text"]:focus,
textarea:focus {
    outline: none !important;
}

select {
    width: 100%;
    padding: 0 20px;
    font-size: 14px;
    color: #8F8F8F;
    font-weight: 400;
    outline: none;
    background: #fff;
    height: 40px;
    transition: all .4s ease-in-out;
    border: 1px solid #d7d7d7;
    font-size: 12px;
    border-radius: 6px;
}

textarea {
    width: 100%;
    padding: 15px 55px 15px 25px;
    font-size: 14px;
    color: #8F8F8F;
    font-weight: 400;
    border: 1px solid #d7d7d7;
    outline: none;
    background: #FCFCFC;
    height: 112px;
    resize: none;
    border-radius: 5px;
    transition: all .4s ease-in-out;
}

[type="text"]::placeholder,
[type="date"]::placeholder,
[type="time"]::placeholder,
[type="datetime"]::placeholder,
[type="datetime-local"]::placeholder,
[type="email"]::placeholder,
[type="month"]::placeholder,
[type="number"]::placeholder,
[type="password"]::placeholder,
[type="search"]::placeholder,
[type="tel"]::placeholder,
[type="url"]::placeholder,
[type="week"]::placeholder,
select::placeholder,
textarea::placeholder {
    color: #8F8F8F;
    transition: color .4s ease-in-out;
}

[type="text"]:focus,
[type="date"]:focus,
[type="time"]:focus,
[type="datetime"]:focus,
[type="datetime-local"]:focus,
[type="email"]:focus,
[type="month"]:focus,
[type="number"]:focus,
[type="password"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="url"]:focus,
[type="week"]:focus,
select:focus,
textarea:focus {
    border-color: #ffedb3;
}


input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    color: transparent;
    background: no-repeat;
    background-position: cover;
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    top: 0;
    left: 0;
}

.select-box,
.time-box,
.date-box {
    position: relative;
    overflow: hidden;
}

.select-box:after,
.time-box:after,
.date-box:after {
    content: "";
    background: url(../img/dropdown-arrow.svg) 0 0 no-repeat;
    width: 8px;
    height: 8px;
    position: absolute;
    right: 0;
    font-size: 30px;
    top: 0;
    text-align: center;
    top: 50%;
    pointer-events: none;
    box-sizing: border-box;
    transform: translate(0, -50%);
}

input:not([type="radio"]):not([type="checkbox"]),
button,
textarea {
    -webkit-appearance: none;
}

[type="submit"],
[type="button"] {
    cursor: pointer;
    outline: none;
}

[type="submit"]:focus,
[type="button"]:focus {
    outline: none;
}

button::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border: none;
    padding: 0;
}


/*radion button*/


/*page header*/
header {
    width: 100%;
    z-index: 9999999;
    position: sticky;
    background-color: #0071dc;
    top: 0;
    left: 0;
    padding: 10px 0 0;
    transition: all ease 0.3s;
    display: inline-block;
}

.page-header-flexbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    width: 160px;
}

.logo a {
    display: inline-block;

}

.logo img {
    width: 38px;
    transition: all ease 0.3s;
}



.header-right {
    width: auto;
    text-align: right;
    display: flex;
    transition: all ease 0.3s;
    align-items: center;
    position: relative;
    padding: 0;
    justify-content: flex-end;
    position: absolute;
}

header .select-box {
    /* width: 35px; */
    float: right;
    padding-left: 10px;
    margin-left: 10px;
    padding-right: 10px;
    max-width: 40px;
}

header .select-box:before {
    content: "";
    width: 1px;
    background-color: #90A4FF;
    height: 100%;
    position: absolute;
    left: 0;
}

.logo {
    display: flex;
    position: relative;
    align-items: center;
    margin-left: 35px;
}


.nav-toggle {
    width: 25px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    height: 20px;
}

.nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.nav-toggle.close-menu span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -3px;
    left: 8px;
    position: absolute;
}

.nav-toggle span:nth-child(2) {
    top: 9px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.nav-toggle span:nth-child(3) {
    top: 18px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.nav-toggle.close-menu span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 9px;
    left: 5px;
    position: absolute;
}

.nav-toggle.close-menu span:nth-child(2) {
    width: 0%;
    opacity: 0;
    position: absolute;
}

.nav-toggle.close-menu span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 18px;
    left: 8px;
    position: absolute;
}

.nav-primary {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    background: rgb(12 24 42 / 4%);
    padding: 0;
    margin: 0;
    display: none;
    z-index: 9;
    text-align: left;
    height: 100vh;
    backdrop-filter: blur(3.5px);
}

.nav-toggle.close-menu span {
    background-color: #fff;
}

.nav-primary ul {
    padding: 0;
    margin: 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    background: #fff;
    padding: 0;
    margin: 0;
    /* display: none; */
    text-align: left;
    z-index: 9999999999;
    height: 100vh;
    overflow: auto;
    box-shadow: 10px 0 25px rgb(94 94 112 / 25%);
    padding-top: 10px;
}

.nav-primary li::after,
.nav-primary li::before {
    display: none;
}

.nav-primary li {
    padding: 0;
    margin: 0 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.33em;
    color: #2D86C1;
    position: relative;
}

.nav-primary li:last-child {
    border-bottom: none;
}

.nav-primary a {
    color: #2e2e2e;
    padding: 12px 20px;
    display: block;
    position: relative;
    text-transform: capitalize;
    font-weight: 400;
    transition: all .4s ease-in-out;
    font-size: 15px;
}

.nav-primary .active a {
    color: #1582e9;
}

.nav-primary a:hover {
    text-decoration: none;
    color: #fff;
}

.sub-menu-toggle {
    line-height: 24px;
    width: 24px;
    background: url(../img/nav_drop_down_icon_white.svg) center center no-repeat #909ca7;
    height: 20px;
    color: #ffffff;
    text-align: center;
    font-size: 24px;
    border-radius: 4px;
    position: absolute;
    top: 10px;
    right: 16px;
}

.sub-menu-toggle.js-clicked {
    transform: rotatex(180deg);
}

.nav-primary ul.sub-menu {
    display: none;
    transition: all ease 0.3s;
}

.nav-primary .js-clicked-toggle ul.sub-menu {
    display: block;
    position: fixed;
    top: 0;
    left: unset;
    width: 250px;
    height: 100vh;
    padding: 65px 0 0 0;
    background-color: #fff;
    box-shadow: none;
    z-index: 1;
}


.js-clicked-toggle .sub-menu-toggle {
    position: fixed;
    left: 10px;
    z-index: 999999999;
    top: 10px;
    right: unset;
    transform: rotate(90deg);
    background: url(../img/nav_drop_down_icon_white.svg) center center no-repeat #0473dd;
}

.js-clicked-toggle .sub-menu-toggle:after {
    content: "Back To Home";
    position: absolute;
    width: 200px;
    top: -65px;
    transform: rotate(-90deg);
    font-size: 14px;
    left: -88px;
    color: #2e2e2e;
}

.js-clicked-toggle .sub-menu-toggle:before {
    content: "";
    position: absolute;
    left: -67px;
    top: -82px;
    width: 214px;
    background: #d7d7d7;
    z-index: -1;
    height: 1px;
    transform: rotate(90deg);
}

.nav-primary ul.sub-menu a {
    color: #2e2e2e;
    padding: 12px 16px 12px 45px;
    font-weight: 400;
    font-size: 13px;
}

header .container {
    padding: 0 15px;
}

.header_btn {
    display: flex;
    transition: all ease 0.3s;
    position: relative;
    z-index: 1;
}

.header_btn a {
    line-height: 31px;
    height: 31px;
    position: relative;
    padding: 0 30px 0 5px;
    color: #000000;
    font-size: 12px;
    background: #E8E8E8;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    background: url(../img/lock-header-btn-icon.png) center right no-repeat #E8E8E8;
    transition: all ease-in-out 0.3s;
    overflow: hidden;
    border: 1px solid transparent;
}

.header_btn a:before {
    position: relative;
    content: "";
    display: inline-block;
    margin-right: 6px;
    width: 24px;
    height: 24px;
    transition: all ease-in-out 0.3s;
    background: url(../img/header_btn-user-icon.png) center top -26px no-repeat;
}

.header_btn a:hover {
    color: #fff;
    border: 1px solid #fff;
    background: url(../img/lock-header-btn-icon-h.png) center right no-repeat #263C95;
    text-decoration: none;
}

.header_btn a:hover:before {
    background: url(../img/header_btn-user-icon-h.png) 0 0 no-repeat;
}

.nav-toggle.close-menu {
    z-index: 99999999999;
    left: 242px;
}

.header-close-btn.active {
    position: fixed;
    width: calc(100% - 250px);
    left: 0;
    z-index: 9999;
    top: 0;
    height: 100vh;
}

.category-menu {
    display: none;
}


.category-menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.category-menu ul li {
    display: inline-block;
    text-align: center;
    padding: 0 12px;
    border-right: 1px solid #f5f5f5;
}

.category-menu ul li:last-child {
    border-right: none;
}

.category-menu ul li a {
    font-size: 12px;
    line-height: 14px;
    display: inline-block;
    position: relative;
    height: 50px;
    color: #707070;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.open-menu {
    overflow: hidden;
}

.desktop-logo {
    display: none;
}

.search-bar-nav {
    position: absolute;
    left: 50%;
    width: calc(100vw - 190px);
    transform: translate(-50%, 0);
    transition: all ease 0.3s;
    margin-left: 5px;
}

.search-bar-nav.search-enlarged {
    position: fixed;
    width: 90vw;
    margin-left: 0;
    z-index: 999;
    box-shadow: 0 4px 44px rgb(0 0 0 / 10%);
    border-radius: 50px;
    overflow: hidden;
}

.search-bar-nav input[type=text] {
    width: 100%;
    display: inline-block;
    padding: 10px 50px 10px 12px;
    border: 1px solid #f3b53b;
    font-size: 12px;
    line-height: unset;
    border-radius: 50px;
}

.search-bar-nav button {
    border: none;
    padding: 0;
    background-color: #f3b53b;
    width: 40px;
    height: 100%;
    font-size: 14px;
    position: absolute;
    color: #fff;
    top: 0;
    right: 0;
    border-radius: 0 50px 50px 0;
}

.icon-btn {
    display: none;
}

.my-cart-btn {
    padding: 2px 15px;
    position: relative;
    text-align: center;
    display: inline-block;
    border-radius: 6px;
    transition: all ease 0.3s;
}

.my-cart-btn:hover {
    background-color: #1265b3;
    text-decoration: none;
}

.my-cart-btn img {
    max-width: 20px;
}

.cart-number {
    position: absolute;
    right: 14px;
    top: 4px;
    display: flex;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    width: 16px;
    height: 16px;
    background: #f3b53b;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.search-overlay {
    position: fixed;
    left: 0;
    top: -100px;
    width: 100vw;
    height: 0;
    background: #fff;
    transition: all ease 0.3s;
    z-index: 9;
}

.search-overlay.search-enlarged {
    top: 0;
    height: 100vh;
}

.my-cart-btn-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    display: block;
}

.bottom-header {
    display: block;
}

.js-clicked-toggle .sub-menu-toggle span {
    transform: rotate(-90deg);
    position: absolute;
    display: inline-block;
    font-size: 14px;
    width: 200px;
    top: -65px;
    left: -85px;
}

.desktop-toggle-btn-block {
    display: none;
}

.add-address-area-btn, .add-address-area-btn p {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    color: #fff;
    font-size: 14px;
    border: none;
    margin: 0 auto;
    margin: 11px 0;
    border-top: blue;
    width: 100%;
}
.add-address-area-btn:focus {
    outline: none !important;
    border: none;
}

.add-address-area-btn img {
    max-width: 16px;
    margin-right: 5px;
    max-height: 17px;
}

.add-address-area-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-address-area-text {
    display: none;
}

.address-delivery-info ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.address-delivery-info ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    width: 33.333%;
    flex-direction: column;
}

.address-delivery-info ul li img {
    max-width: 60px;
}

.address-delivery-info ul li span {
    margin-top: 5px;
}

.address-delivery-card-item {
    background: #fff;
    padding: 15px 35px 15px 15px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    position: relative;
    justify-content: flex-start;
}

.address-delivery-card-item.change-address-btn:after {
    content: "";
    background: url(../img/right-black-arrow.svg) 0 0 no-repeat;
    position: absolute;
    width: 10px;
    height: 20px;
    top: 50%;
    transform: translate(0, -50%);
    right: 15px;
    background-size: 10px;
}

.address-area-btn-down-arrow:after {
    content: "";
    background: url(../img/right-black-arrow.svg) 0 0 no-repeat;
    position: relative;
    width: 10px;
    height: 20px;
    margin-left: 6px;
    top: 6px;
    transform: rotate(90deg);
    right: 0;
    display: inline-block;
    background-size: 7px;
    filter: brightness(0) invert(1);
}

.open-menu .address-area-btn-down-arrow:after {
    transform: rotate(270deg);
    top: 3px;
    left: 8px;
}

.add-address-area-btn .address-area-btn-down-arrow img {
    max-width: 23px;
    margin-right: 5px;
    max-height: 20px;
}

.add-address-overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #0006;
    display: none;
}

.add-address-overlay.open-menu {
    display: block;
}

.add-address-form-overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #0006;
    display: none;
}

.add-address-form-overlay.open-menu {
    display: block;
}

.address-delivery-card-content p {
    font-size: 13px;
}

.address-delivery-card-content p span {
    display: block;
    font-weight: 600;
}

.address-delivery-card-item + .address-delivery-card-item {
    margin-top: 20px;
}

.address-delivery-card-content .btn {
    margin-top: 8px;
    width: 100%;
}

.add-address-area-info {
    padding: 20px;
    position: absolute;
    top: -100vh;
    width: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    background: #0071dc;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 40px 44px rgb(0 0 0 / 10%);
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.add-address-area-info.open-menu {
    top: 36px;
    opacity: 1;
    height: auto;
}

.address-delivery-info {
    max-width: 340px;
    margin: 0 auto;
    display: table;
    width: 100%;
}

.address-delivery-card {
    max-width: 340px;
    margin: 0 auto;
    display: table;
    width: 100%;
}

.address-delivery-card-icon img {
    max-width: 19px;
    max-height: 20px;
    margin-right: 10px;
}

.address-delivery-card-content {
    width: calc(100% + 30px);
}

.add-address-form-block {
    display: none;
    width: 100%;
    max-width: 400px;
    position: fixed;
    top: 0;
    right: 0;
    min-height: 100vh;
    background: #fff;
    z-index: 99;
}

.add-address-form-block.open-menu {
    display: block;
}

.add-address-form-block-heading {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px 20px 20px;
    background: #0071dc;
}

.add-address-form-block-heading h2 {
    color: #fff;
    padding: 0;
    font-size: 18px;
}

.add-address-form-block-heading .add-address-btn-close {
    position: absolute;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
}



label {
    position: absolute;
    top: 10px;
    left: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: unset;
    font-size: 14px;
    color: #333;
    padding: 0;
    pointer-events: none;
    -webkit-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
}

.form-col input {
    width: 100%;
    display: inline-block;
    padding: 10px 12px;
    border: 1px solid #d7d7d7;
    font-size: 12px;
    line-height: unset;
    border-radius: 6px;
}

.form-col input:focus + label,
.form-col input.has-value + label,
.form-col textarea:focus + label,
.form-col textarea.has-value + label,
.form-select select + label {
    top: -8px;
    font-size: 12px;
    color: #666;
    padding: 0 3px;
    left: 10px;
    background: #fff;
}

.form-col textarea:focus + label,
.form-col textarea.has-value + label {
    top: -8px;
}
.form-col input:focus::-webkit-input-placeholder 
{
    color: transparent;
}

.form-col {
    position: relative;
    margin-bottom: 15px;
}

.add-address-form-body {
    padding: 20px;
    max-height: calc(100vh - 113px);
    overflow: auto;
}

.add-address-form-btn {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
}

.add-address-form-btn .btn {
    width: calc(100% - 40px);
}

.add-address-form-body p {
    font-size: 11px;
    color: #8f8f8f;
    margin: 3px 0 5px 0;
}




@media (max-width: 991px) {
    header.header-fixed {
        top: -200px;
    }
}



@media (min-width: 992px) {
    .desktop-toggle-btn-block {
        display: flex;
        position: absolute;
        left: 160px;
    }

    .desktop-toggle-btn a {
        display: flex;
        align-items: center;
        color: #fff;
        border-radius: 6px;
        font-size: 15px;
        padding: 10px;
        justify-content: flex-start;
    }

    .desktop-toggle-btn a:hover {
        background-color: #1265b3;
        text-decoration: none;
    }

    .desktop-toggle-btn a img {
        margin-right: 5px;
        max-width: 15px;
    }

    .desktop-logo {
        display: inline-block;
    }

    .mobile-logo {
        display: none;
    }

    .logo img {
        width: 137px;
    }

    .logo {
        width: 210px;
        margin: 0;
    }

    .header-right {
        width: calc(100% - 259px);
        padding-left: 50px;
    }

    .nav-toggle {
        width: 30px;
        height: 27px;
        margin-left: 30px;
        top: -2px;
    }

    .nav-toggle span {
        height: 3px;
    }

    .nav-toggle span:nth-child(3) {
        top: 24px;
    }

    .nav-toggle span:nth-child(2) {
        top: 12px;
    }

    .nav-toggle.close-menu span:nth-child(3) {
        top: 19px;
    }

    .category-menu.header-fixed {
        bottom: unset;
    }

    .category-menu {
        position: relative;
        bottom: unset;
        height: auto;
        background: transparent;
        border: none;
    }

    .category-menu ul li a {
        font-size: 14px;
        line-height: 16px;
        color: #fff;
        font-weight: 600;
        height: unset;
        transition: all ease-in-out 0.3s;
    }

    .category-menu ul li a:hover {
        text-decoration: none;
        color: #b1c0ff;
    }

    .category-menu ul li {
        padding: 0;
        border: none;
    }

    .category-menu ul {
        justify-content: space-between;

    }

    .category-menu {
        width: 60%;
        display: block;
        max-width: 771px;
    }

    .header-fixed .nav-toggle span {
        background: #edf1ff;
    }

    .nav-toggle {
        display: none;
    }

    .bottom-header {
        display: block;
        width: 100%;
        border-top: 1px solid #fff;
    }

    .bottom-header .full-container {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
    }

    .search-bar-nav {
        right: 342px;
        left: unset;
        width: calc(100% - 718px);
        transform: unset;
        margin-left: 0;
    }

    .search-bar-nav.search-enlarged {
        position: absolute;
        width: calc(100% - 718px);
        z-index: 999;
        box-shadow: none;
        border-radius: 50px;
        overflow: hidden;
        right: 342px;
        left: unset;
    }

    .search-overlay {
        display: none;
    }

    .icon-btn {
        padding: 7px 10px;
        position: relative;
        text-align: center;
        border-radius: 6px;
        display: flex;
        transition: all ease 0.3s;
        align-items: center;
        justify-content: flex-start;
    }

    .my-cart-btn {
        padding: 7px 10px;
    }

    .cart-number {
        right: 9px;
    }

    .icon-btn i {
        color: #fff;
        margin-right: 5px;
    }

    .icon-btn-text {
        font-size: 15px;
        color: #fff;
        font-weight: 600;
        line-height: 18px;
        text-align: left;
    }

    .icon-btn-text span {
        display: block;
        font-size: 14px;
        font-weight: 400;
    }

    .top-header-btn {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .icon-btn:hover {
        background-color: #1265b3;
        text-decoration: none;
    }

    .desktop-toggle-btn-info {
        display: none;
    }

    .active .desktop-toggle-btn-info {
        display: block;
        position: absolute;
        left: 18px;
        top: 52px;
        background: #fff;
        z-index: 1;
        border-radius: 0 0 10px 10px;
    }

    .desktop-toggle-btn-info ul {
        width: 180px;
        padding: 0 15px 0 0;
        margin: 0 0 15px 0;
    }

    .desktop-toggle-btn-info a {
        color: #4e4e4e;
        font-size: 14px;
        padding: 6px 20px;
        border-radius: 0;
    }

    .desktop-toggle-btn-info a:hover {
        color: #4e4e4e;
        text-align: left;
        background: #fff;
    }

    .desktop-toggle-btn-inner-list {
        height: 0;
        overflow: hidden;
        opacity: 0;
    }

    .toggle-btn-menu-open .desktop-toggle-btn-inner-list {
        height: auto;
        overflow: auto;
        opacity: 1;
        position: absolute;
        left: 165px;
        top: 0;
        background: #e6f1fc;
        z-index: 8;
        display: flex;
        width: 635px;
        padding: 20px;
        height: 80vh;
        align-items: flex-start;
    }

    .desktop-toggle-btn-info ul li {
        position: inherit;
        font-size: 16px;
        font-weight: 600;
    }

    .desktop-toggle-btn-info-list .toggle-btn-menu-open a {
        background: #e6f1fc;
        border-left: 4px solid #0071dc !important;
    }

    .desktop-toggle-btn-info-list a {
        border-left: 4px solid transparent !important;
    }

    .toggle-btn-menu-open .desktop-toggle-btn-inner-listing ul li a {
        border: none !important; 
    }

    .toggle-btn-menu-open .desktop-toggle-btn-inner-listing ul li a:hover {
        color: #0071dc !important;
    }

    .desktop-toggle-btn-inner-listing {
        display: flex;
        width: 360px;
        flex-wrap: wrap;
    }

    .toggle-btn-overlay {
        position: fixed;
        top: 0;
        left: 0;
        background-color: #0006;
        width: 100vw;
        height: 100vh;
        display: none;
    }

    .toggle-btn-overlay.open {
        display: block;
    }

    .add-address-area {
        width: 30%;
    }

    .add-address-area-btn {
        justify-content: flex-start;
        margin: 6px 0;
    }

    .add-address-area-info.open-menu {
        left: 0;
        transform: unset;
        top: 37px;
        width: 370px;
    }

    .address-delivery-card-content p {
        font-size: 14px;
    }

    .address-delivery-info ul li {
        font-size: 15px;
    }

    .add-address-form-block-heading h2 {
        font-size: 20px;
    }

    .desktop-toggle-munu-add {
        padding: 20px;
        background: #fff;
        width: calc(100% - 360px);
    }

    .desktop-toggle-munu-add img {
        margin-bottom: 10px;
    }

    .desktop-toggle-munu-add h3 {
        font-size: 17px;
        color: #000;
        font-weight: 600;
        margin: 0 0 10px;
    }

    .desktop-toggle-munu-add p {
        font-size: 14px;
        color: #000;
        margin: 0 0 10px;
    }

    .desktop-toggle-munu-add a.btn {
        width: 100%;
        justify-content: center;
        border-radius: 50px;
        color: #fff !important;
        background: #0071dc;
        padding: 0;
        border: 1px solid #0071dc !important;
    }

    .desktop-toggle-munu-add a.btn:hover {
        color: #0071dc !important;
        background-color: #fff !important;
    }



    .desktop-toggle-btn-info-list {
        min-height: 80vh;
        margin: 0 !important;
        overflow: auto;
        max-height: 80vh;
    }
}


@media (min-width: 1200px) {
    header {
        padding: 2px 0 0;
    }

    .add-address-area-text {
        display: flex;
    }

    .add-address-area {
        width: 644px;
    }

    .category-menu {
        width: calc(100% - 720px);
    }

    .add-address-area-btn p {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }

    .add-address-area-info.open-menu {
        top: 64px;
    }

    .add-address-form-block-heading h2 {
        font-size: 20px;
    }

    .add-address-area-info.open-menu {
        top: 55px;
    }

    .toggle-btn-menu-open .desktop-toggle-btn-inner-list {
        width: 60vw;
    }

    .desktop-toggle-munu-add {
        width: calc(100% - 560px);
    }

    .desktop-toggle-btn-inner-listing {
        width: 560px;
    }
}



@media (min-width: 1500px) {
    .desktop-toggle-btn-inner-listing {
        width: 80%;
    }

    .desktop-toggle-munu-add {
        width: 20%;
    }
}
/*header*/

.change-address-form-col label {
    position: relative;
}

.change-address-form-col {
    position: relative;
    cursor: pointer;
    display: inline-block;
}
.change-address-form-col [type="radio"]:checked,
.change-address-form-col [type="radio"]:not(:checked) {
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
    height: 100%;
    transform: unset;
    cursor: pointer;
    opacity: 0;
}
.change-address-form-col [type="radio"]:checked + label, .change-address-form-col [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
    left: unset !important;
    transform: unset !important;
    top: unset !important;
}

.change-address-form-col [type="radio"]:checked + label {
    background: #f0f0ff;
    padding: 20px 20px 75px 62px !important;
}

.change-address-form-col [type="radio"]:checked + label:before,
.change-address-form-col [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px; 
    height: 20px;
    border: 1px solid #403c3d;
    border-radius: 100%;
    background: #fff;
}
.change-address-form-col [type="radio"]:checked + label:after,
.change-address-form-col [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #403c3d;
    position: absolute;
    top: 9px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.change-address-form-col [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.change-address-form-col [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.change-address-form-block {
    display: none;
    width: 100%;
    max-width: 400px;
    position: fixed;
    top: 0;
    right: 0;
    min-height: 100vh;
    background: #fff;
    z-index: 99;
}

.change-address-form-block.open-menu {
    display: block;
}

.checkout-address-col {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.10);
}



.change-address-overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #0006;
    display: none;
}

.change-address-overlay.open-menu {
    display: block;
}

.change-address-form-col p {
    font-size: 15px;
    color: #000;
    line-height: 23px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ebebeb;
}

.change-address-form-col p span.address-title {
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}

.change-address-form-col p span.address-timing {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #747474;
}

.change-address-form-col p span.check-address {
    display: inline-block;
    font-size: 13px;
    position: relative;
    color: #747474;
    padding-left: 17px;
}

.change-address-form-col p span.check-address:after {
    content: "\f00c";
    position: absolute;
    font-family: "Font Awesome 6 Free";
    left: 0;
    top: 0;
    color: green;
    font-weight: bold;
    font-size: 14px;
}

.change-address-form-search {
    position: sticky;
    top: 0px;
    width: 100%;
    background-color: #fff;
    z-index: 1111;
    padding: 20px 0;
}

.change-address-form-search button {
    position: absolute;
    top: 30px;
    left: 15px;
    width: 22px;
    height: 30px;
    background: url(../img/add-address-img-black.svg) 0 0 no-repeat;
    padding: 0;
    border: none;
    background-size: 20px;
}

.change-address-form-search input[type=text] {
    width: 100%;
    display: inline-block;
    padding: 12px 12px 12px 42px;
    border: 1px solid #787878;
    font-size: 14px;
    line-height: unset;
    border-radius: 50px;
}

.change-address-form-block .add-address-form-body {
    padding-top: 0;
}

.change-address-btn {
    cursor: pointer;
}


@media(min-width: 1500px) {
    .desktop-toggle-btn-block {
        left: 190px;
    }

    .desktop-toggle-btn a {
        padding: 10px 20px;
    }

    .icon-btn {
        padding: 7px 20px;
    }

    .search-bar-nav {
        right: 416px;
        width: calc(100% - 876px);
    }

    .search-bar-nav.search-enlarged {
        right: 416px;
        width: calc(100% - 876px);
    }
}

.product-slider-heading-left h2 {
    font-size: 16px;
    color: #000;
    font-weight: 700;
    padding-bottom: 6px;
}

.product-slider-heading-left p {
    font-size: 13px;
    color: #000;
}

.product-slider-heading-right a {
    font-size: 14px;
    color: #000;
    text-decoration: underline;
    font-weight: 600;
}

.product-slider-heading-right a:hover {
    color: #0071dc;
}

.page-body {
    padding: 20px 0;
}

.product-slider-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-slider-heading-left {
    width: calc(100% - 85px);
}

.product-slider-heading-right {
    width: 55px;
    text-align: right;
}

.product-slider-item-image {
    display: inline-block;
    aspect-ratio: 2 / 2;
    width: 100%;
    margin-bottom: 10px;
}

.product-slider-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;  
}

.js-product-slider .slick-slide {
    width: 216px;
    margin: 0 10px;
}

.product-slider-item-content p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 5px 0 20px;
}


.product-slider-item-content h3 {
    font-size: 22px;
    color: #000;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.product-slider-item-image {
    position: relative;
}

.product-slider-item-image:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 82px);
}

.auto-video video {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    object-fit: cover;
}

.half-and-half {
    margin: 20px 0;
}

.js-product-slider .slick-slider {
    margin-bottom: 0;
}

.page-footer {
    background-color: #0071dc;
    padding: 30px 0;
}

.page-footer ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.page-footer ul li {
    padding: 0;
    margin: 0 10px 5px;
}

.page-footer ul li a {
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.page-footer p {
    color: #fff;
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
}


.page-footer ul li a:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.6;
}

@media(min-width: 768px) {
    .product-slider-heading {
        align-items: flex-end;
    }
}

@media(min-width: 1025px) {
    .auto-video {
        height: 100%;
        padding-left: 20px;
    }

    .half-and-half {
        margin: 40px 0;
    }
}

@media(min-width: 1500px) {
    .product-slider-heading-left h2 {
        font-size: 20px;
    }

    .product-slider-heading-left p {
        font-size: 16px;
        padding-bottom: 0;
    }

    .product-slider-heading-right a {
        font-size: 16px;
    }

    .product-slider-heading-right {
        width: 67px;
    }

    .product-slider-heading-left {
        width: calc(100% - 100px);
    }

    .product-slider-item-content p {
        font-size: 16px;
    }

    .half-and-half {
        margin: 80px 0;
    }
}


.product-showcase-left-slider-item {
    position: relative;
    aspect-ratio:  2 / 1.1;
    border-radius: 6px;
    overflow: hidden;
    display: block;
}

.product-showcase-left-slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-showcase-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.product-showcase-item-overlay h4 {
    font-size: 15px;
    font-weight: 400;
    color: #000;
    padding: 0 0;
}

.product-showcase-item-overlay h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    padding: 0 0 10px 0;
}

.product-showcase-item-overlay button {
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    padding: 0;
    text-decoration: underline;
}

.product-showcase-right .product-showcase-item-overlay h4 {
    font-size: 11px;
}

.product-showcase-right .product-showcase-item-overlay h3 {
    font-size: 14px;
    padding: 0;
}

.product-showcase-right {
    display: flex;
    width: calc(100% + 10px);
    margin: 0 -5px;
}

.product-showcase-right .product-showcase-left-slider-item {
    width: calc(100% - 10px);
    margin: 5px;
}

.product-showcase-right .product-showcase-item-overlay button {
    font-size: 11px;
}

.product-showcase-right .product-showcase-item-overlay {
    padding: 10px;
}

.product-showcase-left-slider .slick-dots {
    z-index: 1;
    text-align: left;
    bottom: 10px;
    padding-left: 15px;
}

.product-showcase-left-slider {
    margin: 0;
}

.product-showcase-left .slick-slider {
    margin-bottom: 5px;
}

.product-category-slide {
    text-align: center;
    width: 80px;
    color: #000;
    font-size: 13px;
    font-weight: 600;
}
.product-category-slide span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.product-category-slide img {
    margin: 0 auto 10px;
}

.product-category-slider {
    margin: 20px 0 30px;
}

.feedback-block {
    text-align: center;
    padding: 40px 0;
    background: #ecf6ff;
}

.feedback-block p {
    padding-bottom: 15px;
}


@media(min-width: 768px) {
.product-showcase {
    display: flex;
    width: calc(100% + 20px);
    margin: 0 -10px;
    align-items: flex-start;
}

.product-showcase-left {
    width: calc(70% - 20px);
    margin: 0 10px;
}

.product-showcase-right {
    width: calc(30% - 20px);
    margin: 0 10px;
    display: block;
}

.product-showcase-right .product-showcase-left-slider-item {
    width: 100%;
    margin: 0px 0;
    aspect-ratio: 2 / 1.276;
}

.product-showcase-right .product-showcase-left-slider-item + .product-showcase-left-slider-item {
    margin-top: 15px;
}

.product-grid-view .product-showcase-right {
    width: calc(33.333% - 20px);
}

.product-grid-view {
    margin-top: 20px;
    display: inline-block;
    width: 100%;
}

.product-category-slide {
    width: 110px;
}
}




@media(min-width: 1200px) {
    .product-showcase-item-overlay h4 {
        font-size: 20px;
        padding-bottom: 5px;
    }

    .product-showcase-item-overlay h3 {
        font-size: 40px;
    }

    .product-showcase-item-overlay button {
        font-size: 17px;
    }

    .product-showcase-right .product-showcase-item-overlay h3 {
        font-size: 20px;
        padding-bottom: 10px;
    }

    .product-showcase-right .product-showcase-item-overlay button {
        font-size: 15px;
    }

    .product-showcase-right .product-showcase-item-overlay h4 {
        font-size: 17px;
        padding-bottom: 10px;
    }

    .product-showcase-item-overlay {
        padding: 30px;
    }

    .product-showcase-right .product-showcase-item-overlay {
        padding: 20px;
    }

    .product-showcase-left-slider-item:hover button {
        text-decoration: none;
    }

    .product-category-slide {
        width: 150px;
        font-size: 15px;
    }

    .feedback-block p {
        font-size: 18px;
    }

    .product-category-slider {
        margin: 10px 0 40px;
    }

    .product-category {
        margin-top: 25px;
    }

}



.category-banner-flex {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    border-radius: 10px;
    border: 1px solid #ccc;
    overflow: hidden;
}

.category-banner-image-left {
    width: 70%;
}

.category-banner-image-right {
    width: 30%;
}

.category-banner-slide-image {
    aspect-ratio:  2 / 1;
}


.category-banner-slide-slider {
    margin: 0 !important; 
}


.category-banner-slide-image img,
.category-banner-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-banner-slide-content {
    padding: 20px;
}

.category-banner-slide-content h1 {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
    color: #252728;
}

.category-banner-slide-content p {
    font-size: 16px;
    padding-bottom: 20px;
}

.product-category.cat-detail-page {
    margin-top: 20px;
}

.product-category.cat-detail-page .product-slider-heading {
    margin-bottom: 5px;
}

.category-inner-category-slider .slick-arrow {
    margin-top: -18px;
}

.category-inner-category-slider .slick-prev {
    left: 0;
}

.category-inner-category-slider .slick-next {
    right: 15px;
}

.category-list-nav {
    background: #e4f2ff;
    padding: 10px 0;
}

.category-list-nav-wrapper {
    width: calc(100% + 15px);
    overflow: auto;
    margin: 0 -15px 0 0;
}

.category-list-nav-wrapper ul {
    display: flex;
    min-width: max-content;
    align-items: center;
    margin: 0;
    justify-content: center;
}

.category-list-nav-wrapper ul li {
    margin-right: 15px;
}

.category-list-nav-wrapper ul li a {
    font-weight: 600;
    color: #000;
    font-size: 13px;
}

.category-list-nav-wrapper ul li a:hover {
    color: #0071dc;
}

.category-banner-slide-content:hover .btn {
    background-color: #065197;
}

/* width */
.category-list-nav-wrapper::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Track */
.category-list-nav-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
 
/* Handle */
.category-list-nav-wrapper::-webkit-scrollbar-thumb {
  background: transparent;
}

/* Handle on hover */
.category-list-nav-wrapper::-webkit-scrollbar-thumb:hover {
  background: transparent; 
}

@media(min-width: 1200px) {
    .category-banner-slide-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .checkout-block-right  .cart-credit-total-btn {
        margin-top: 20px;
    }

    .category-banner-slide-content h1 {
        font-size: 25px;
        max-width: 320px;
    }

    .category-banner-slide-content p {
        font-size: 18px;
        max-width: 320px;
    }

    .product-category.cat-detail-page {
        margin-top: 40px;
    }

    .product-category.cat-detail-page .product-slider-heading {
        margin-bottom: 15px;
    }

    .category-list-nav-wrapper ul li {
        margin: 0 15px;
    }

}

.category-filter-body {
    display: none;
}
.accordion .accordion-toggle-btn {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 10px 30px 10px 0;
    color: #000000;
    background: #fff;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
}
.accordion .accordion-toggle-btn:hover,
.accordion .accordion-toggle-btn:hover::after {
  cursor: pointer;
  color: #0071dc ;
  text-decoration: none;
}

.accordion .accordion-toggle-btn.active {
  color: #0071dc;
}
.accordion .accordion-toggle-btn::after {
   content: "\2b";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    float: left;
    right: 0;
    font-size: 1rem;
    color: #000;
    padding: 5px;
    /* width: 30px; */
    /* height: 30px; */
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    position: absolute;
}

.accordion a.active::after {
    content: "\f068";
    font-family: "Font Awesome 6 Free";
    color: #0071dc;
}

.accordion .content {
    opacity: 0;
    padding: 0 1rem;
    max-height: 0;
    border-bottom: 1px solid #ccc;
    overflow: hidden;
    clear: both;
    transition: all 0.2s ease 0.15s;
}

.accordion .content p {
  font-size: 1rem;
  font-weight: 300;
}

.accordion .content.active {
    opacity: 1;
    height: auto;
    padding: 1rem 0;
    max-height: max-content;
    transition: all 0.35s ease 0.15s;
}

.filter-checkbox {
    position: relative;
}

.filter-checkbox input {
    padding: 0;
    margin-bottom: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 11;
}

.filter-checkbox label {
    cursor: pointer;
    position: relative;
    top: 0;
    left: 0;
    padding-left: 20px;
    transform: unset;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    pointer-events: inherit;
}

.filter-checkbox label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #939393;
    padding: 6px;
    display: inline-block;
    border-radius: 3px;
    position: absolute;
    vertical-align: middle;
    cursor: pointer;
    top: 4px;
    left: 0;
}

.filter-checkbox input:checked + label:before {
    background-color: #0071dc;
    border: 1px solid #0071dc;
}

.filter-checkbox input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 6px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.accordion-item .content ul {
    padding: 0;
    margin: 0;
}

.accordion .content ul li {
    padding: 0;
    margin: 0 0 5px;
}

.accordion .content ul li a {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: underline;
}

.accordion .content ul li a:hover {
    color: #0071dc;
}

.category-body-flex-left {
    display: none;
}

.category-body-listing {
    display: flex;
    width: calc(100% + 10px);
    flex-wrap: wrap;
    margin: 0 -5px;
}

.load-more-area {
    width: 100%;
}

.category-body-listing .product-slider-item {
    width: calc(50% - 10px);
    margin: 5px;
}

.category-body-listing .product-slider-item-content p {
    margin: 5px 0 10px;
}

.category-body {
    margin: 30px 0;
}

.category-body-flex-left .product-slider-heading {
    margin-bottom: 10px;
}

.category-body-listing .product-slider-item{
    display: none;
}

.load-more.btn {
    margin: 25px auto 0;
    display: table;
}

.category-body-listing .product-slider-item:hover {
    text-decoration: none;
}

.category-body-listing .product-slider-item .product-slider-item-content a {
    font-size: 22px;
    color: #000;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.category-body-listing .product-slider-item:hover .product-slider-item-content a {
    color: #0071dc;
}

.category-product-slider .product-slider-item:hover {
    text-decoration: none;
}

.category-product-slider .product-slider-item .product-slider-item-content a {
    font-size: 22px;
    color: #000;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.category-product-slider .product-slider-item:hover .product-slider-item-content a {
    color: #0071dc;
}

.add-fav {
    display: inline-block;
    cursor: pointer;
    position: absolute;
    border: 1px solid #ccc;
    background: #fff;
    position: absolute;
    transition: all 0.5s ease;
    border-radius: 50px;
    box-shadow: inset 0 -1px 1px #eee;
    z-index: 999;
    top: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    line-height: normal;
    left: unset;
    right: 10px;
    align-items: center;
    transform: unset;
    pointer-events: inherit;
    justify-content: center;
}
.add-fav:hover {
  background: -webkit-linear-gradient(top, #fff, #ccc) #ddd;
}

.category-product-slider {
    margin: 30px 0;
}

.category-body-listing .product-slider-item-image:after {
    display: none;
}

.category-product-slider .product-slider-item-image:after {
    display: none;
}
.add-fav .fa-regular {
  font-size: 18px;
  color: #666;
  position: relative;
  transition: all 0.5s ease-in-out;
}
.add-fav .fa-solid {
  font-size: 18px;
  color: #ff4545;
  position: relative;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  display: none;
}
.add-fav input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.add-fav input[type=checkbox]:checked + .add-fav-icon .fa-regular {
  opacity: 0;
  display: none;
}
.add-fav input[type=checkbox]:checked + .add-fav-icon .fa-solid {
  opacity: 1;
  display: block;
}

.post-likes-area {
    position: relative;
    margin: 0;
    display: inline-block;
}

.post-likes-area ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 10px;
    padding: 0;
    margin: 0;
}



.post-likes-area ul li a {
    text-align: center;
    font-size: 12px;
    color: #393434 !important;
    text-decoration: none !important;
    font-weight: 600;
    display: flex;
    padding: 5px 6px;
    align-items: center;
}

.post-likes-area ul li a i {
    margin: 0 !important;
    position: relative;
    top: 1px;
    margin-right: 4px !important;
    font-size: 13px !important;
}

.product-slider-item.category-banner-full-width {
    width: 100% !important;
    margin: 30px 0 !important;
}

.product-slider-item.category-banner-full-width .category-banner-image-left {
    width: 100%;
}

.product-category-slider-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product-category-slider-list .product-category-slide {
    margin: 5px;
    width: calc(25% - 10px);
}


.category-product-slider.designer-choice-listing .product-slider-item .product-slider-item-content a {
    font-size: 16px;
}

.designer-choice-listing .product-slider-item {
    border: 1px solid #ccc;
    border-radius: 15px;
    overflow: hidden;
}

.designer-choice-listing .product-slider-item-content {
    padding: 0 20px 20px;
}

.category-product-slider.designer-choice-listing .product-slider-item .product-slider-item-content a.btn {
    width: max-content;
    color: #000;
}

.category-product-slider.designer-choice-listing .product-slider-item:hover .product-slider-item-content a.btn {
    color: #000;
}

.category-product-slider.designer-choice-listing .product-slider-item:hover .product-slider-item-content a.btn:hover {
    color: #fff;
}

.product-slider-heading.product-slider-heading-select {
    flex-wrap: wrap;
}

.product-slider-heading-select .product-slider-heading-right {
    width: 100%;
}


.custom-select {
    position: relative;
    padding: 0;
    text-align: left;
    z-index: 9999;
    border: none;
    height: auto;
    border-radius: 0;
    border-bottom: 1px solid #919191;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}


/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div {
    color: #ffffff;
    padding: 6px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    font-weight: 400;
    font-size: 13px;
}
.select-selected {
    color: #101010;
    padding: 8px 40px 8px 0;
    border: none;
    cursor: pointer;
    user-select: none;
}

/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #2f6ca5;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.product-slider-select p {
    text-align: left;
    width: 100%;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.full-container + .product-slider-view {
    margin-top: 30px;
}

@media(min-width: 768px) {
    .category-body-listing .product-slider-item {
        width: calc(33.3333% - 20px);
        margin: 10px;
    }

    .category-body-listing {
        width: calc(100% + 20px);
        margin: 0 -10px;
    }

    .product-slider-heading-select .product-slider-heading-right {
        width: 350px;
    }

    .product-slider-heading-select .product-slider-heading-left {
        width: calc(100% - 350px);
    }

    .product-slider-select {
        display: flex;
        align-items: center;
    }

    .product-slider-select p {
        width: 70px;
    }

    .product-slider-select .custom-select {
        width: calc(100% - 70px);
    }

    .product-slider-heading.product-slider-heading-select {
        align-items: center;
    }


}

@media(min-width: 1200px) {
    .category-filter-body {
        display: block;
    }

    .category-body-flex-left {
        display: block;
        width: 260px;
        background: #fff;
        border-radius: 10px;
        padding: 20px 15px;
        box-shadow: 0 0 16px rgb(0 0 0 / 25%);
    }

    .category-body-flex {
        align-items: flex-start;
        display: flex;
        justify-content: space-between;
    }

    .category-body-flex-right {
        width: calc(100% - 300px);
    }

    
    .category-body {
        margin: 50px 0;
    }

    .post-likes-area ul li a {
        font-size: 14px;
        padding: 9px 8px 7px;
    }

    .post-likes-area ul li a i {
        top: 2px;
        font-size: 15px !important;
    }

    .product-slider-item.category-banner-full-width .category-banner-slide-content {
        width: 30%;
        position: relative;
    }

    .product-slider-item.category-banner-full-width .category-banner-image-left {
        width: 70%;
    }

    .product-slider-item.category-banner-full-width .category-banner-flex {
        flex-direction: row-reverse;
    }

    .product-slider-item.category-banner-full-width .category-banner-flex:hover {
        text-decoration: none;
    }

    .product-slider-item.category-banner-full-width .category-banner-slide-content h1 {
        font-size: 23px;
    }

    .product-slider-item.category-banner-full-width .category-banner-slide-content p {
        font-size: 16px;
    }

    .category-product-slider {
        margin: 50px 0;
    }

    .product-category-slider-list .product-category-slide {
        margin: 10px;
        width: calc(16.6666% - 20px);
    }

    .full-container + .product-slider-view {
        margin-top: 50px;
    }
}

.product-head-flex-between {
    position: relative;
    margin-bottom: 20px;
}

.product-head-flex-between span {
    padding: 5px;
    border: 1px solid #0071dc;
    color: #0071dc;
    font-size: 10px;
}

.product-head-flex-between .add-fav {
    top: 0;
    right: 0;
}

.product-detail-right-box {
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #ccc;
}

.product-detail-right-box-col h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2e2f32;
    padding: 10px 0 0;
}

.product-detail-right-box-col p {
    font-size: 14px;
    font-weight: 400;
    color: #2e2f32;
    padding: 10px 0;
}

.product-detail-right-box-col p i {
    font-weight: 700;
}

.product-detail-right-box-col p img {
    margin-right: 5px;
}

.product-detail-right-box-col h4 {
    font-size: 25px;
    font-weight: 700;
    color: #2e2f32;
}

.title-anchor-product {
    font-weight: 400;
    color: #2e2f32;
    font-size: 13px;
    text-decoration: underline;
}

.product-detail-right-box-col {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

.product-detail-right-box-col:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.product-hover-box p {
    padding-top: 0;
}

.product-hover-box p span {
    font-weight: 700;
}

.product-hover-box ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.product-hover-box ul li {
    padding: 5px;
    background: #fff;
    border: 1px solid #ccc;
    font-size: 13px;
    display: flex;
    justify-content: center;
    color: #2e2f32;
    margin-right: 10px;
    align-items: center;
    flex-direction: column;
}

.product-hover-box ul li span {
    margin-top: 5px;
}

.product-hover-box ul li img {
    border-radius: 50px;
    overflow: hidden;
    width: 45px;
    height: 45px;
    border: 2px solid transparent;
}

.product-hover-box ul li.active {
    border: 2px solid #2e2f32;
    font-weight: 700;
} 

.product-hover-box ul li.active img {
    border: 2px solid #2e2f32;
} 

.product-icon-para {
    padding-left: 32px !important;
    position: relative;
}

.product-icon-para img {
    position: absolute;
    left: 0px;
    top: 12px;
    max-width: 20px;
}

.product-icon-para span {
    font-weight: 700;
}

.inline-anchor {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.inline-anchor p {
    margin-right: 20px;
}

.filter-result-big-image {
    aspect-ratio: 2 / 1;
    border-bottom: 4px solid transparent;
    overflow: hidden;
}

.filter-result-small-image {
    aspect-ratio: 2 / 1.2;
    overflow: hidden;
}

.slider-nav .slick-slide {
    margin: 0 5px;
}

.product-detail-left .slider-nav {
    margin-top: 5px;
    padding-bottom: 60px;
}

.product-detail-left .main {
    margin-bottom: 25px;
}
.filter-result-zoom {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 30px;
    font-size: 17px;
    height: 30px;
    padding: 0;
    color: #CE373D;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50px;
    border: none;
}

.main .slick-arrow {
    display: block !important;
    bottom: 20px;
    top: unset;
    transform: unset;
}

.main .slick-prev {
    left: 50%;
    margin-left: -50px;
}

.main  .slick-next {
    left: 50%;
    margin-left: 10px;
}

.product-detail-left {
    margin-bottom: 20px;
}

.product-detail-block {
    padding: 50px 0 0;
}
.object-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fx-slide.slick-current .filter-result-small-image {
    border-bottom: 4px solid #0071dc;
}

.produst-detail-info .accordion-item p{
    font-size: 12px;
    color: #000;
    padding: 0 0 15px;
} 

.produst-detail-info .accordion-item p span {
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
} 

.produst-detail-info .accordion-item ul {
    margin-bottom: 20px;
}

.produst-detail-info .accordion-item ul li {
    padding-left: 20px;
    position: relative;
    font-size: 12px;
    color: #000;
}

.produst-detail-info .accordion-item ul li:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: #000;
    left: 0;
    top: 6px;
    border-radius: 50px;
}

.produst-detail-info .accordion-item p i {
    font-weight: 700;
    position: absolute;
    left: 0px;
    top: 12px;
    max-width: 20px;
}

.produst-detail-info .accordion-item p:last-child {
    padding-bottom: 0;
}

.produst-detail-accordian .product-icon-para {
    padding: 10px 0;
}

.produst-detail-accordian .accordion {
    margin-bottom: 25px;
}

.produst-detail-accordian {
    margin-bottom: 25px;
}

.no-button .product-slider-heading-left {
    width: 100%;
}
.customer-product-review-left h3 {
    font-size: 50px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}
.customer-product-review-left h3 span {
    font-size: 20px;
    margin: 0 5px;
}

.customer-product-review-left-btn {
    margin: 10px 0 30px;
}

.customer-product-review-left-btn .btn {
    margin: 15px 20px 0 0;
}

.customer-product-review {
    padding-bottom: 25px;
    border-bottom: 1px solid #ccc;
}

.product-review-comment-item {
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
}

.product-review-comment-star span {
    font-weight: 400;
    color: #74767c;
    font-size: 12px;
}

.product-review-comment-star span b {
    color: #2a8703;
}

.product-review-comment-star img {
    margin-right: 5px;
}

.product-review-comment-star {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.product-review-comment-item h4 {
    font-weight: 700;
    padding-bottom: 15px;
    font-size: 14px;
}

.product-review-comment-item p {
    font-size: 14px;
    padding-bottom: 15px;
}

.product-review-comment-item h5 {
    font-weight: 400;
    color: #74767c;
    font-size: 14px;
}

.product-review-comment-item h5 i {
    font-weight: 700;
    margin-left: 5px;
}

.product-review-comment-item h5 span {
    background: #f1f1f2;
    color: #515357;
    font-size: 12px;
    padding: 3px 6px;
    margin-left: 5px;
}

.product-review-comment-item .post-likes-area {
    margin-top: 20px;
} 

.product-review-comment {
    margin-top: 25px;
}

.related-links h2 {
    font-size: 16px;
    color: #000;
    font-weight: 700;
    padding-bottom: 16px;
}

.related-links ul {
    margin: 0;
}

.related-links ul li {
    margin-bottom: 5px;
    display: block;
}

.related-links ul li a {
    font-size: 14px;
    color: #000;
    text-decoration: underline;
}

.related-links ul li a:hover {
    color: #0071dc;
}

.related-links {
    padding: 30px 0 40px;
}

.product-detail-left .produst-detail-info {
    display: none;
}

.breedcum {
    display: none;
}

.breedcum ul {
    padding: 15px 0;
    margin: 0;
}

.breedcum ul li {
    display: inline-block;
    position: relative;
    padding-right: 10px;
    margin-right: 10px;
}

.breedcum ul li a {
    color: #74767c;
    text-decoration: underline;
    font-size: 14px;
}

.breedcum ul li:after {
    content: "/";
    position: absolute;
    right: -4px;
    top: 2px;
    color: #74767c;
}

@media(min-width: 768px) {
    .customer-product-review-left-btn {
        margin: 5px 0 0;
    }

    .product-detail-left .main {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: row-reverse;
    }

    .product-detail-left .slider-for {
        width: calc(100% - 130px);
    }

    .related-links ul {
        column-count: 3;
    }

    .product-detail-left .slider-nav {
        width: 100px;
        margin-top: 0;
        padding-bottom: 0;
        overflow: hidden;
    }

    .produst-detail-info .accordion-item p{
        font-size: 14px;
    }

    .produst-detail-info .accordion-item ul li {
        font-size: 13px;
    }

    .customer-product-review-flex {
        display: flex;
    }

    .customer-product-review-left {
        width: 50%;
    }

    .customer-product-review-right {
        width: 50%;
    }

    .breedcum {
        display: block;
    }

}

@media(min-width: 1200px) {
    .customer-product-review-left h3 {
        font-size: 64px;
    }

    .related-links h2 {
        font-size: 24px;
        padding-bottom: 26px;
    }

    .product-detail-flex {
        display: flex;
        justify-content: space-between;
    }

    .customer-product-review .product-slider-heading-left h2 {
        font-size: 24px;
    }

    .product-detail-left {
        width: calc(100% - 450px);
    }

    .product-detail-right {
        width: 394px;
        /*position: fixed;
        width: 100vw;
        left: 0;
        top: 166px;*/
    }

    .product-detail-right-wrapper {
        width: 100%;
        max-width: 1260px;
        margin: 0 auto;
        /*padding-right: 15px;
        padding-left: 15px;*/
        display: flex;
        justify-content: flex-end;
    }

    .product-detail-right-box {
        width: 394px;
    }

    .filter-result-small-image {
        aspect-ratio: inherit;
        height: 100px;
    }

    .slider-nav .slick-slide {
        margin: 5px;
    }

    .filter-result-big-image {
        aspect-ratio: inherit;
        height: 650px;
    }

    .main .slick-next {
        right: unset;
        left: 50%;
        bottom: 20px;
        top: unset;
        transform: translate(-50%, 0) rotate(90deg);
        z-index: 99;
    }

    .main .slick-prev {
        right: unset;
        left: 50%;
        bottom: unset;
        margin-left: 8px;
        top: 15px;
        transform: translate(-50%, 0) rotate(90deg);
    }

    .main .slider-nav:after {
        content: "";
        position: absolute;
        height: 383px;
        width: 100%;
        bottom: -36px;
        left: 0;
        background: rgb(255,255,255);
        background: linear-gradient(0deg, rgba(255,255,255,1) 14%, rgba(255,255,255,0) 81%);
    }
    .produst-detail-info {
        display: none;
    }
    .product-detail-left .produst-detail-info {
        display: block;
    }
}



.inputs-block {
    display: flex;
    align-items: center;
    border-radius: 50px;
    padding: 3px;
    width: max-content;
    border: 1px solid #3c3b3b;
}

.inputs-block .plus {
    margin-left: 5px;
}
.inputs-block .minus, .inputs-block .plus {
    border-radius: 50px;
    width: 26px;
    height: 26px;
    color: transparent;
    position: relative;
}

.inputs-block .minus:hover, .inputs-block .plus:hover {
    background: #3c3b3b;
}

.inputs-block .minus:hover:before,
.inputs-block .plus:hover:before,
.inputs-block .plus:hover:after {
    background: #fff;
}

.inputs-block .minus {
    margin-right: 5px;
}

.inputs-block input {
    width: 34px;
    height: 24px;
    background-color: #fff;
    text-align: center;
    font-weight: bold;
    color: #3c3b3b;
    font-size: 14px;
    display: inline-block;
    border: none !important;
    outline: none !important;
}

.inputs-block .minus:before {
    position: absolute;
    content: '-';
    width: 12px;
    height: 2px;
    top: 12px;
    left: 7px;
    background: #3c3b3b;
    border-radius: 4px;
}

.inputs-block .plus:before {
    position: absolute;
    content: '+';
    width: 12px;
    height: 2px;
    top: 12px;
    left: 7px;
    background: #3c3b3b;
    border-radius: 4px;
}

.inputs-block .plus:after {
    position: absolute;
    content: '';
    width: 2px;
    height: 12px;
    left: 12px;
    top: 7px;
    background: #3c3b3b;
    border-radius: 4px;
}

.cart-block {
    padding: 50px 0;
    position: relative;
}

.cart-block-left h2 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    padding-bottom: 15px;
}

.cart-block-left h2 span {
    color: #000;
    font-weight: 400;
    display: inline-block;
    margin-left: 7px;
} 

.cart-del-col-content a {
    font-size: 14px;
    color: #000;
    font-weight: 400;
    text-decoration: underline;
    display: block;
    margin-top: 5px;
}
.cart-del-col-content h3 {
    font-size: 17px;
    color: #000;
    font-weight: 600;
    display: block;
}


.cart-del-shipping-col {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f2f8fd;
    padding: 20px;
}

.cart-block-box {
    border: 1px solid #f1f1f2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 2px 1px #00000026;
}

.cart-del-col-image {
    width: 50px;
}

.cart-del-col-content {
    width: calc(100% - 50px);
    padding-left: 15px;
}

.cart-table-wrapper {
    padding: 20px;
}

.cart-table-col-content p{
    font-size: 12px;
    display: block;
    padding-bottom: 4px;
    color: #000;
}

.cart-table-col-content a {
    font-size: 12px;
    display: block;
    padding: 0 80px 4px 0;
    color: #000;
    position: relative;
}

.cart-table-col-content a span {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
    font-weight: 700;
}

.cart-table-col-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-table-col-btns a {
    color: #000;
    text-decoration: underline;
    font-size: 13px;
}

.cart-table-col-image {
    width: 50px;
}

.cart-table-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cart-table-col-content {
    width: calc(100% - 50px);
    padding-left: 15px;
}

.cart-table-col-btns {
    width: 100%;
}

.cart-block-right {
    margin-top: 25px;
}

.cart-credit-total-box {
    padding: 15px 20px;
    background: #fff;
    border: 1px solid #f1f1f2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 2px 1px #00000026;
}

.cart-table-wrapper p {
    font-size: 14px;
    display: block;
    padding: 0;
    color: #000;
    position: relative;
}

.cart-table-row {
    margin-top: 25px;
}

.cart-credit-total-list p {
    font-size: 13px;
    display: block;
    padding-bottom: 6px;
    color: #46474a;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cart-credit-total-list p:last-child {
    padding-bottom: 0;
}

.cart-credit-total-list p span:last-child {
    color: #000;
    font-weight: 700;
}

.cart-credit-total-list p span {
    color: #000;
}

.cart-credit-total-btn {
    position: fixed;
    width: 100%;
    left: 0;
    padding: 15px 20px;
    background: #fff;
    bottom: 0;
    text-align: center;
    z-index: 99;
}

.cart-credit-total-btn button {
    display: table;
    width: 80%;
    padding: 9px 20px;
    background: #0071dc;
    border: none;
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    margin: 0 auto;
    transition: all ease 0.3s;
}

.cart-credit-total-btn button:hover {
    background: #f3b53b;
}


.cart-credit-card-ad {
    padding: 15px 20px;
    border: 1px solid #f1f1f2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 2px 1px #00000026;
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-top: 30px;
    background: #fff;
}

.cart-credit-card-ad-image {
    max-width: 50px;
}

.category-banner{
    margin-top: 20px;
}

.cart-credit-card-ad-content {
    width: calc(100% - 50px);
    padding: 0 27px 0 15px;
    position: relative;
}

.cart-credit-card-ad-content p {
    font-size: 13px;
    display: block;
    padding-bottom: 0;
    color: #46474a;
}

.cart-credit-card-ad-content p a {
    color: #46474a;
    text-decoration: underline;
}

 .cart-credit-card-ad-content p span {
    font-weight: 700;
} 

.cart-credit-card-ad-content i {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 15px;
    color: #46474a;
}

.cart-block-left .add-address-area-btn .address-area-btn-down-arrow img {
    max-width: 34px;
    max-height: 34px;
}

.cart-block-left .add-address-area-btn {
    color: #3e3e3e;
    font-weight: 700;
    font-size: 16px;
}

.cart-block-left .address-area-btn-down-arrow:after {
    filter: unset;
}

.cart-block-left .add-address-area-btn {
    justify-content: flex-start;
    margin-bottom: 20px;
}

.cart-block-left .add-address-area-info.open-menu {
    top: 36px;
    opacity: 1;
    height: auto;
    z-index: 99;
    position: relative;
    left: 0;
    padding: 0;
    margin-bottom: 25px;
    transform: unset;
    top: 0;
    background: #fff;
    box-shadow: none;
}

.cart-block-left .address-delivery-info ul {
    margin: 0;
        justify-content: flex-start;
}

.cart-block-left .address-delivery-info ul li {
    padding: 10px;
    border: 1px solid #000;
    border-radius: 6px;
    margin: 0 4px;
}

.cart-block-left .address-delivery-info ul li span {
    color: #000;
}

.cart-block-left .address-delivery-info {
    max-width: unset;
}

@media(min-width: 1200px) {
    .cart-block-wrapper {
        display: flex;
    }

    .cart-block-left {
        width: 67%;
        padding-right: 32px;
    }

    .cart-block-right {
        width: 33%;
        margin: 0;
    }

    .cart-credit-total-btn {
        position: relative;
        padding: 0;
    }

    .cart-credit-total-box {
        display: flex;
        flex-direction: column-reverse;
    }

    .cart-credit-total-list {
        margin-top: 25px;
    }

    .cart-del-col-content h3 {
        font-size: 24px;
    }

    .cart-del-col-content a {
        font-size: 16px;
    }

    .cart-table-col-btns {
        width: 270px;
        margin: 0 0 0 auto;
    }

    .cart-table-col-content a {
        font-size: 15px;
    }

    .cart-table-col-content p {
        font-size: 14px;
    }

    .cart-table-col-content a span {
        font-size: 18px;
    }

    .cart-table-col-image {
        width: 70px;
    }

    .cart-table-col-content {
        width: calc(100% - 70px);
    }

    .cart-block-left h2 {
        font-size: 32px;
        padding-bottom: 20px;
    }

    .cart-block-left .add-address-area-btn {
        font-size: 20px;
    }
}



.checkout-block {
    padding: 20px 0 10px;
    background: #f1f3f6;
}

.checkout-block-left h2 {
    padding: 15px 25px;
    font-size: 16px;
    color: #878787;
    text-transform: uppercase;
    background: #fff;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-start;
}

.checkout-block-left h2 span {
    font-size: 12px;
    color: #2874f0;
    background-color: #f0f0f0;
    border-radius: 2px;
    padding: 3px 7px;
    vertical-align: baseline;
    margin-right: 17px;
}

.checkout-login-col-content {
    padding: 0px 25px 15px 62px;
    background: #fff;
    position: relative;
}

.checkout-block-left p {
    font-size: 14px;
    padding-bottom: 0;
}

.checkout-block-left p span {
    display: block;
}

.checkout-login-col-content a {
    position: absolute;
    right: 20px;
    top: 0;
}

.address-location-tag {
    padding: 1px 5px;
    background: #e9e9e9;
    display: inline-block !important;
    color: #878787;
    font-size: 12px;
    margin: 0 6px;
}

.checkout-address-row .change-address-form-col label {
    background: #fff;
    padding: 20px 20px 20px 62px !important;
}

.checkout-address-row .change-address-form-col [type="radio"]:checked + label:before,
.checkout-address-row .change-address-form-col [type="radio"]:not(:checked) + label:before {
    left: 26px;
    top: 23px;
}

.checkout-address-row .change-address-form-col [type="radio"]:checked + label:after,
.checkout-address-row .change-address-form-col [type="radio"]:not(:checked) + label:after {
    top: 27px;
    left: 30px;
}

.checkout-address-row .change-address-form-col p {
    border: none;
    position: relative;
    padding-right: 40px;
    padding-bottom: 0;
    margin: 0;
}

.checkout-address-row .change-address-form-col .btn {
    position: absolute;
    left: 62px;
    z-index: 99;
    bottom: 25px;
    display: none;
}

.checkout-address-row .change-address-form-col [type="radio"]:checked + label + a.btn {
    display: inline-block;
}

.checkout-block-left h2.active {
    background: #0071dc;
    color: #fff;
}

.checkout-login-col {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.10);
    margin-bottom: 25px;
}

.add-address-div-col button {
        padding: 15px 25px;
    font-size: 16px;
    color: #878787;
    text-transform: uppercase;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: none;
    width: 100%;
    font-weight: 700;
}

.add-address-div-col button i {
    font-size: 16px;
    color: #2874f0;
    margin-right: 17px;
}

.add-address-div-col {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.10);
    margin: 25px 0;
    background: #fff;
}

.checkout-address-row .change-address-form-col [type="radio"]:checked + label + a + a.change-address-edit-btn {
    display: inline-block;
}

.change-address-edit-btn {
    position: absolute;
    top: 23px;
    right: 18px;
    color: #000;
    font-size: 13px;
    display: none;
    text-decoration: underline;
    z-index: 999;
}



.checkout-block-right .cart-credit-total-box.open-menu .cart-credit-total-list {
    height: 0;
    overflow: hidden;
    margin-top: 0;
    transition: all ease 0.3s;
}

.cart-credit-total--box-btn button {
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    border: none;
    outline: none !important;
    background: transparent;
}

.checkout-block-right .cart-credit-total-box {
    display: flex;
    border-radius: 0;
    flex-direction: column-reverse;
    padding: 11px 20px;
}

.cart-credit-total--box-btn button i {
    font-size: 14px;
    margin-left: 4px;
}

.open-menu .cart-credit-total--box-btn button i {
    transform: unset;
}

.cart-credit-total--box-btn button i {
    transform: rotate(-180deg);
}

.vertical-product-slider  {
    /*max-width: 240px;*/
    margin: 0 auto 20px;
    padding: 0 50px;
}

.checkout-quick-ad {
    margin-top: 25px;
    padding: 20px;
    background: #fff;
    border: 1px solid #f1f1f2;
    box-shadow: 0 1px 2px 1px #00000026;
}

.vertical-product-slider .slick-prev {
    left: 10px;
}

.checkout-quick-ad h5 {
    font-size: 16px;
    color: #000;
    font-weight: 700;
    padding-bottom: 15px;
}


.checkout-address-col h2 a {
    color: #000;
    top: 18px;
    font-size: 11px;
    display: block;
}

.checkout-address-col h2.active a {
    color: #fff;
}

.open-area .checkout-address-listing {
    display: none;
}

.chechout-add-address-block {
    display: none;
}

.open-area .chechout-add-address-block {
    display: block;
}

.chechout-add-address-block {
    background-color: #fff;
    padding: 25px;
}

.form-col-btn {
    text-align: right;
}

.choose-payment-option [type="radio"]:checked + label {
    padding: 20px 20px 20px 62px !important;
}

.choose-payment-option .change-address-form-col label {
    width: 100%;
}

.choose-payment-option .change-address-form-col {
    width: 100%;
}

.product-slider-item-content p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0 0 4px;
}

@media(min-width: 1200px) {
    .checkout-address-col h2 a {
        font-size: 13px;
    }

    .checkout-block-wrapper {
        display: flex;
        position: relative;
    }

    .checkout-block-left {
        width: calc(100% - 405px);
        padding-right: 32px;
    }

    .checkout-block-right {
        width: 405px;
        position: relative;
    }

    .checkout-block-right.sticky {
        margin: 0;
        position: fixed;
        left: 50%;
        top: 82px;
        margin-left: 209px;
    }

    .change-address-edit-btn {
        font-size: 14px;
    }

    .vertical-product-slider  {
        margin: 0;
        padding: 50px 0;
    }

    .vertical-product-slider .btn-secondary {
        font-size: 14px;
        line-height: 30px;
        padding: 0 14px;
    }

    .vertical-product-slider .slick-next {
        left: 50%;
        bottom: 22px;
        top: unset;
        transform: translate(-50%, 0) rotate(90deg);
        margin-left: 0px;
    }

    .vertical-product-slider .slick-prev {
        left: 50%;
        top: 0;
        bottom: unset;
        right: unset;
        transform: translate(-50%, 0) rotate(90deg);
        margin-left: -1px;
    }

    .vertical-product-slider .product-slider-item {
        position: relative;
        display: flex;
        flex-wrap: wrap;
    }

    .vertical-product-slider .product-slider-item-image {
        width: 150px;
        margin: 0;
    }

    .vertical-product-slider .product-slider-item-content {
        width: calc(100% - 150px);
        padding-left: 15px;
    }
}

.profile-body {
    padding: 20px 0 10px;
    background: #f1f3f6;
}


.profile-sidebar-avatar-col {
    padding: 15px 15px 15px 45px;
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-start;
    border-radius: 2px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.08);
}

.profile-body-right {
    padding: 20px 15px;
    background: #fff;
    position: relative;
    border-radius: 2px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.08);
}

.profile-sidebar-avatar-col button {
    position: absolute;
    padding: 0;
    border: none;
    background: transparent;
    left: 15px;
    font-size: 20px;
    top: 28px;
    cursor: pointer;
    outline: none;
    z-index: 999;
    color: #3a3a3a;
}


.profile-sidebar-avatar-col button:hover {
    color: #0071dc;
}

.profile-sidebar-avatar-image {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    overflow: hidden;
}


.profile-sidebar-avatar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-sidebar-avatar-content {
    width: calc(100% - 50px);
    padding-left: 12px;
}

.profile-sidebar-avatar-content p {
    font-size: 14px;
}

.profile-sidebar-avatar-content p span {
    display: block;
    font-weight: 700;
}

.profile-sidebar-nav {
    display: none;
    background: #fff;
}

.profile-sidebar-nav ul {
    padding: 0;
    margin: 0;
}

.profile-sidebar-nav ul li {
    padding: 12px 20px 12px 45px;
    font-size: 15px;
    font-weight: 700;
    color: #878787;
    position: relative;
    border-bottom: 1px solid #e7e7e7;
}

.profile-sidebar-nav ul li a {
    font-size: 16px;
    color: #878787;
    font-weight: 700;
    text-transform: uppercase;
}

.profile-sidebar-nav ul li ul li a {
    font-size: 14px;
    font-weight: 400;
    color: #121212;
    text-transform: none;
}

.profile-sidebar-nav ul li ul li {
    padding: 12px 20px 12px 0;
    border-bottom: none;
}

.profile-sidebar-nav ul li img, .profile-sidebar-nav ul li svg {
    position: absolute;
    left: 13px;
    top: 12px;
}

.profile-sidebar-heading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 20px;
    z-index: 9999;
    background: #2874f0;
}

.open-area .profile-sidebar-nav {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: auto;
    top: 0;
    left: 0;
    z-index: 99999999;
    background: #fff;
    padding: 60px 20px 0 20px;
}

.profile-sidebar-heading button {
    border: none;
    background-color: transparent;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    outline: none !important;
}

.profile-sidebar-heading button i {
    margin-right: 10px;
}

.profile-body-right {
    margin-top: 25px;
}