@font-face {
    font-family: 'Libre Caslon Text';
    src: url('/../assets/frontend/fonts/LibreCaslonText-Bold.woff2') format('woff2'),
        url('/../assets/frontend/fonts/LibreCaslonText-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Libre Caslon Text';
    src: url('/../assets/frontend/fonts/LibreCaslonText-Regular.woff2') format('woff2'),
        url('/../assets/frontend/fonts/LibreCaslonText-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



* {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

::-moz-focus-inner {
    border: 0;
}

ul {
    margin: 0px;
    padding: 0px;
}

ul li {
    list-style: none;
}

strong {
    font-weight: 700;
}

a {
    transition: all 400ms ease;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none;
}

::-webkit-input-placeholder {
    opacity: 1;
}

::-moz-placeholder {
    opacity: 1;
}

:-ms-input-placeholder {
    opacity: 1;
}

:-moz-placeholder {
    opacity: 1;
}

textarea {
    resize: none;
}

:root {
    --mint: #81C8C6;
    --white: #fff;
    --black: #0C2932;
    --light-blue: #5B7078;
    --dark-blue: #303F53;
    --light-green: #CAD4A6;
    --yellow: #EDC400;
    --light-yellow: #E5DEC2;
    --dark-yellow: #C6A36A;
}

/* common css */
.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

body {
    margin: 0px;
    font-family: 'Libre Caslon Text';
    font-size: 16px;
    color: var(--light-blue);
    font-weight: 400;
}

h1 {
    font-family: 'Libre Caslon Text';
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    text-align: left;
    margin: 0;
}

h2 {
    font-family: 'Libre Caslon Text';
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
    text-align: left;
    color: var(--black);
    margin: 0 0 10px;
}

h3 {
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    margin: 0;
}

p {
    margin: 0;
}

.button {
    background-color: var(--mint);
    box-shadow: 3px 4px 25px 10px #AEAEAE1A;
    font-family: Libre Caslon Text;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    padding: 10px 30px;
    border-radius: 50px;
    color: var(--black);
    display: inline-block;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;

}

.button:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--mint);
    border-radius: 10rem;
    z-index: -2;
    box-shadow: 3px 4px 25px 10px #AEAEAE1A;
}

.button:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--light-green);
    transition: all 0.5s;
    border-radius: 10rem;
    z-index: -1;
    opacity: 0;
}

.button:hover::before {
    opacity: 1;
}

.button-icon {
    padding-left: 15px;
    display: inline-block;
    transition: 0.6s ease-in;
}

.button:hover .button-icon {
    transform: translateX(20%);
}

.button:hover:before {
    width: 100%;
}

.button-normal {
    background-color: rgba(129, 200, 198, 50%);
    font-family: 'Libre Caslon Text';
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--dark-blue);
    padding: 10px 30px;
    display: inline-block;
    border-radius: 22px;
}

.button-normal:hover {
    color: var(--dark-blue);
}

.button-transparent {
    border: 2px solid #FFFFFF;
    padding: 10px 20px;
    border-radius: 35px;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
    line-height: 24.6px;
    color: var(--black);
}

.button-transparent:hover {
    color: var(--black);
}

.button-icon {
    height: 18px;
}

.button-icon img {
    height: 18px;
}


.flex-row-reverse {
    flex-direction: row-reverse;
}

.pd-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pd-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.pd-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.pd-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* common css end*/

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    /* padding-left: 15px;
    padding-right: 15px; */
    float: none;
    box-sizing: border-box;
}


/* header css */
.search-menu-icon .search {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background-color: #fff;
    z-index: 1;
    pointer-events: none;
    transition: opacity ease-in .6s, visibility ease-out .6s;
    opacity: 0;
    visibility: hidden;
    border-top: 1px solid #767676;
}

.slide-search-icon .search {
    opacity: 1;
    visibility: visible;
    transition: opacity ease-out .6s, visibility ease-out .6s;
    pointer-events: all;
}

.search-menu-icon .nav__item--search__bg {
    content: "";
    width: 100%;
    background-color: #2e261ccc;
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    opacity: 0;
    pointer-events: none;
    transition: opacity ease-in .6s;
    cursor: text;
    z-index: -4;
}

.search-menu-icon .slide-search-icon .nav__item--search__bg {
    opacity: 1;
    pointer-events: all;
    transition: opacity ease-out .6s;
}

.search-menu-icon .search__form {
    display: flex;
    max-width: 68rem;
    margin-left: auto;
    margin-right: auto;
    border-bottom: .0625rem solid #2E261C;
}

.search-menu-icon .search-box {
    width: 100%;
    font-size: 1rem;
    line-height: 1.5rem;
    padding-top: .25rem;
    padding-bottom: .25rem;
    position: relative;
    height: 2.5rem;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    box-shadow: unset;
    border: 0;
    color: var(--dark-blue);
}

.search-menu-icon .de-active {
    display: none !important;
}

.search-menu-icon .search__btn {
    font-size: .75rem;
    letter-spacing: 1px;
    line-height: .875rem;
    font-weight: 500;
    padding: 0 0 0 .7rem;
    box-shadow: unset;
    border: 0;
    background-color: transparent;
    color: var(--dark-blue);
}

.header-transparent.slide-search-icon {
    background-color: var(--white);
}

.header-transparent.slide-search-icon .menu-icon a svg path {
    stroke: var(--dark-blue);
}

.header-transparent.slide-search-icon .navbar-menu ul li a {
    color: var(--dark-blue);
}

.header-transparent.slide-search-icon .search-and-cart>div a {
    border: 2px solid;
    border-color: var(--light-green);
}

.header-transparent.slide-search-icon .slide-search-icon svg path {
    stroke: var(--yellow);
}

.header-transparent.slide-search-icon .slide-search-icon svg path:last-child {
    stroke: var(--dark-blue);
}

.header-transparent.slide-search-icon .whislis-icon a svg path:first-child {
    stroke: unset;
    fill: #0C2932;
}

.header-transparent.slide-search-icon .whislis-icon svg path:last-child {
    stroke: var(--yellow);
}

.header-transparent.slide-search-icon .cart-icon-inner svg path {
    fill: var(--dark-blue);
    stroke: unset;
}

.header-transparent.slide-search-icon .cart-icon-inner svg path:last-child {
    stroke: var(--yellow);

}

header {
    background-color: rgba(129, 200, 198, 25%);
}

header.header-transparent {
    height: 100px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    transition: 0.5s all;
    width: 100%;
    z-index: 3;
}

.publishing-desing-inner h1 {
    color: var(--black);
}

.bg-remove {
    background-color: transparent;
}

.header-fixed {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    background-color: #fff;
    box-shadow: 3px 4px 35px 7px rgba(174, 174, 174, 0.20);
    transition: background .35s;
}

header.header-transparent:hover {
    transition: 0.5s all;
    background-color: #fff;
}

.navbar {
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.navbar-menu {
    display: flex;
    padding-left: 15px;
}

.language {
    border: 0;
    background: transparent;
    border-bottom: 2px solid #303F53;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.01em;
    color: var(--dark-blue);
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    background: url(/../assets/frontend/images/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: 100% 50%;
    padding-right: 15px;
    cursor: pointer;
}

.navbar-menu ul li a {
    padding: 0 26px;
    font-family: 'Libre Caslon Text';
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.01em;
    text-align: center;
    color: var(--dark-blue);
}

.search-form {
    visibility: visible !important;
    opacity: 1 !important;
    border-radius: 50px !important;
    position: absolute;
}

.search-field {
    width: 0;
    box-shadow: unset !important;
    font-size: 0;
    border: 0;
    background: transparent;
}

.search-submit.ast-search-submit {
    display: none;
    background: none;
    border: none;
    font-size: 1.3em;
    color: #757575;
}

.search-submit {
    display: none;
    background: none;
    border: none;
    font-size: 1.3em;
    color: #757575;
}

.header-search-icon {
    z-index: 4;
    /* position: relative; */
    line-height: normal;
}

.menu-icon {
    padding-right: 24px;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.site-logo {
    /* padding-left: 197px;
    padding-right: 300px; */
}

.site-logo a {
    display: block;
    line-height: normal;
}

.search-and-cart {
    gap: 30px;
}

.search-and-cart>div a {
    border: 2px solid var(--mint);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whislis-icon a,
.cart-icon a {
    position: relative;
}

.wishlist_badge {
    position: absolute;
    right: -10px;
    top: -9px;
    font-size: 11px;
    display: inline-block;
    height: 22px;
    width: 22px;
    color: #fff;
    border-radius: 50%;
    background-color: var(--mint);
    line-height: 22px;
    text-align: center;
    font-weight: 600;
}

.cart-badge {
    position: absolute;
    right: -10px;
    top: -9px;
    font-size: 11px;
    display: inline-block;
    height: 22px;
    width: 22px;
    color: #fff;
    border-radius: 50%;
    background-color: var(--mint);
    line-height: 22px;
    text-align: center;
    font-weight: 600;
}

.user-login a {
    background-color: #fff;
}

.user-login-inner {
    line-height: normal;
}

.header-transparent .navbar-menu ul li a {
    color: var(--white);
}

.header-transparent .search-and-cart>div a {
    border: 2px solid var(--white);
}

.header-transparent .menu-icon a svg path {
    stroke: var(--white);
}

.header-transparent .slide-search-icon svg path:last-child {
    stroke: var(--white);
}

.header-transparent .slide-search-icon svg path {
    stroke: var(--yellow);
}

.header-transparent .whislis-icon svg path {
    fill: var(--white);
}

.header-transparent .whislis-icon svg path:last-child {
    fill: var(--yellow);
}

.header-transparent .cart-icon svg path {
    fill: var(--white);
}

.header-transparent .cart-icon svg path:last-child {
    fill: var(--yellow);
}

.header-transparent .user-login a.user-login-inner {
    background-color: var(--white);
    border-color: var(--white);
}

.header-transparent .user-login a svg path {
    stroke: var(--dark-blue);
}

.header-transparent .user-login a svg path:last-child {
    stroke: var(--yellow);
}

.menu-icon a svg path {
    stroke: var(--dark-blue);
}

.slide-search-icon svg path {
    stroke: var(--mint);
}

.slide-search-icon svg path:last-child {
    stroke: var(--dark-blue);
}

.ast-icon.icon-search {
    display: flex;
    justify-content: center;
    align-content: center;
}

.whislis-icon svg path {
    fill: var(--dark-blue);
}

.whislis-icon svg path:last-child {
    fill: var(--mint);
}

.cart-icon svg path {
    fill: var(--dark-blue);
}

.cart-icon svg path:last-child {
    fill: var(--mint);
}

.user-login a {
    background-color: var(--mint);
    border-color: var(--mint);
}

.user-login a svg path {
    stroke: var(--dark-blue);
}

.user-login a svg path:last-child {
    stroke: var(--white);
}

.header-transparent:hover .whislis-icon a svg path:first-child,
.header-transparent.header-fixed .whislis-icon a svg path:first-child {
    fill: #0C2932;
}

.header-transparent:hover .menu-icon a svg path,
.header-transparent.header-fixed .menu-icon a svg path {
    stroke: var(--dark-blue);
}

.header-transparent:hover .navbar-menu ul li a,
.header-transparent.header-fixed .navbar-menu ul li a {
    color: var(--dark-blue);
}

header:hover .search-and-cart>div,
.header-fixed .navbar-menu ul li a {
    border-color: var(--light-green);
}

.header-transparent:hover .slide-search-icon svg path,
.header-transparent.header-fixed .slide-search-icon svg path {
    stroke: var(--yellow);
}

.header-transparent:hover .slide-search-icon svg path:last-child,
.header-transparent.header-fixed .slide-search-icon svg path:last-child {
    stroke: var(--dark-blue);
}

.header-transparent:hover .cart-icon-inner svg path,
.header-transparent.header-fixed .cart-icon-inner svg path {
    fill: var(--dark-blue);
}

.header-transparent:hover .cart-icon-inner svg path:last-child,
.header-transparent.header-fixed .cart-icon-inner svg path:last-child {
    stroke: var(--yellow);
}

.header-transparent:hover .search-and-cart>div a,
.header-transparent.header-fixed .search-and-cart>div a {
    border-color: var(--light-green);
}

.header-transparent:hover .search-and-cart>div.user-login a,
.header-transparent.header-fixed .search-and-cart>div.user-login a {
    background-color: var(--mint);
    border-color: var(--mint);
}

.header-transparent:hover .user-login a svg path,
.header-transparent.header-fixed .user-login a svg path {
    stroke: var(--dark-blue);
}

.header-transparent:hover .user-login a svg path:last-child,
.header-transparent.header-fixed .user-login a svg path:last-child {
    stroke: var(--yellow);
}


.navbar-sub {
    position: fixed;
    left: 0;
    top: 0;
    padding-top: 40px;
    height: 100%;
    transition: all 0.3s;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    width: 450px;
    overflow-x: hidden;
    background-color: #81C8C6;
    z-index: 5;
}
.custom-user-popup{
    display: none;
}
/* .menu-icon:hover+.navbar-sub {
    transform: translateX(0px);
    visibility: visible;
    opacity: 1;
} */

.navbar-sub.active-sidebar {
    transform: translateX(0px);
    visibility: visible;
    opacity: 1;
}

.close-slide {
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
}

.user-login.mobile-user-profile {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    align-items: center;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 27px;
}

.user-login.mobile-user-profile .user-login-inner {
    background-color: #E5DEC2;
    border-color: #E5DEC2;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.active-sidebar .mainmenu {
    max-height: 600px;
    overflow-x: auto;
}

.mainmenu > li {
    border-bottom: 1px solid #FFFFFF;
    padding: 15px 30px;
}
.animated-plus-icon {
    top: -15px;
    z-index: 2;
}

.mainmenu > li a {
    font-family: 'Libre Caslon Text';
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    position: relative;
    color: var(--dark-blue);
    display: block;
    /* padding-bottom: 15px; */
}

/* plus and minus  */
.animated-plus {
    position: absolute;
    width: 10px;
    height: 20px;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.animated-plus:before {
    width: 20px;
    height: 3px;
    opacity: 1;
}

.animated-plus:before,
.animated-plus:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    background-color: #E5DEC2;
    transition: transform .4s ease-in-out, opacity .4s ease-in-out;
}

.animated-plus::after {
    width: 3px;
    height: 21px;
}

.animated-plus:before,
.animated-plus:after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    background-color: #E5DEC2;
    transition: transform .4s ease-in-out, opacity .4s ease-in-out;
}

.animated-plus.expanded:before {
    opacity: 0;
}

.animated-plus.expanded:before,
.animated-plus.expanded:after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* plus and minus end*/

.submenu-child {
    display: none;
    padding-top: 20px;
}

.submenu-child li a {
    color: var(--light-blue);
    padding-left: 30px;
}

/* header css end*/

/* banner css */
.banner-section-video video {
    display: block;
    width: 100%;
    height: 940px;
    z-index: -100;
    object-fit: cover;
}

.banner-section-video-inner {
    height: 940px;
    position: relative;
}

.banner-section-video {
    position: relative;
}

.publishing-desing-inner {
    display: inline-block;
    box-shadow: 0px -15px 25px 0px #AEAEAE40;
    background-color: var(--white);
    padding: 50px 10px 0 25px;
    border-radius: 30px;
    max-width: 786px;
    position: absolute;
    bottom: -60px;
    z-index: 0;
}

.publishing-desing-inner h1 {
    padding-top: 20px;
    padding-bottom: 40px;
}

.small-title {
    font-family: 'Libre Caslon Text';
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-align: left;
    text-transform: uppercase;
    color: var(--light-blue);
}

.small-title-head {
    position: absolute;
    padding-left: 80px;
    color: var(--white);
}

.right-list-product-inner-hover .hot-product-details {
    padding: 5px 20px;
}


/* top products categories */

.top-categories-products {
    padding-top: 110px;
    padding-bottom: 60px;
}

.top-categories-products-wrap {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
}

.cat-products-title p {
    color: var(--light-blue);
    font-family: 'Libre Caslon Text';
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
}

.categories-products-left {
    width: 40%;
}

.categories-products-left-item {
    position: relative;
    height: 620px;
    margin-right: 20px;
}

.categories-products-left-item:before,
.categories-products-right-item:before {
    content: '';
    background: rgba(0, 0, 0, 60%);
    width: auto;
    height: auto;
    display: block;
    transition: background .35s;
    position: absolute;
    z-index: 1;
    border-radius: 20px;
    opacity: 0;
    transition: 1s all;
}

.categories-products-left-item:hover::before,
.categories-products-right-item:hover::before {
    width: 100%;
    opacity: 1;
    height: 100%;
    transition: 1s all;
}

.categories-products-title-inner {
    position: absolute;
    bottom: 0;
    display: flex;
    z-index: 2;
    padding: 30px;
    width: 100%;
    align-items: flex-end;
    justify-content: space-between;
}

.categories-products-title {
    width: 90%;
    transition: 1s all;
}

.categories-products-left-item:hover .categories-products-title {
    width: 60%;
    transition: 1s all;
}

.categories-products-left-item h3,
.categories-products-right-item h3 {
    opacity: 0;
    visibility: hidden;
    color: var(--light-yellow);
    padding-bottom: 10px;
    transition: 1s all;
}

.categories-products-left-item:hover h3,
.categories-products-right-item:hover h3 {
    opacity: 1;
    visibility: visible;
    transition: 1s all;
}

.categories-products-image {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.button-circle {
    width: 25px;
    height: 25px;
    border-radius: 100px;
    background-color: var(--light-yellow);
    transition: 1s all;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-circle img {
    width: 18px;
    height: 22px;
}

.categories-products-right-item .button-circle {
    width: 20px;
    height: 20px;
}

.categories-products-right-item .button-circle img {
    width: 12px;
    height: 14px;
}

.categories-products-left-item:hover .button-circle,
.categories-products-right-item:hover .button-circle {
    width: 59px;
    height: 59px;
    visibility: visible;
    opacity: 1;
    transition: 1s all;
}

.categories-products-right-item:hover .button-circle {
    width: 40px;
    height: 40px;
}

.categories-products-title p {
    opacity: 0;
    visibility: hidden;
    font-size: 14px;
    color: var(--dark-yellow);
    line-height: 30px;
    transition: 1s all;
}

.categories-products-left-item:hover .categories-products-title p,
.categories-products-right-item:hover .categories-products-title p {
    opacity: 1;
    font-size: 16px;
    visibility: visible;
    transition: 1s all;
}

.top-categories-products-list {
    display: flex;
}

.categories-products-right {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.categories-products-right-item .categories-products-image {
    width: 358px;
    height: 300px;
}

.categories-products-right-item {
    position: relative;
}

.categories-products-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.button-div {
    position: absolute;
    right: 0;
    bottom: 0;
    transition: 1s all;
}

.categories-products-right-item:hover .button-div,
.categories-products-left-item:hover .button-div {
    right: 30px;
    bottom: 30px;
    transition: 1s all;
}

.categories-products-right-item:hover .categories-products-title,
.categories-products-left-item:hover .categories-products-title {
    left: 30px;
    top: 0;
}

/* star yellow */
.yellow-star .slider::before {
    content: '';
    width: 10px;
    height: 50%;
    background-color: #fff;
    display: block;
    top: 0;
    position: absolute;
}

.yellow-star .star {
    font-size: smaller;
    display: inline-block;
    color: rgba(255, 210, 28, 60%);

}

.yellow-star .star:before {
    content: '\2605';
}

.yellow-star .star.on {
    color: #FFD21C;
}

.yellow-star .star.half:after {
    content: '\2605';
    color: #FFD21C;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    overflow: hidden;
}

.yellow-star span.star.half {
    position: relative;
}

/* hot-right-now */


.transformer-tabs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 2px solid var(--mint);
    display: flex;
    justify-content: space-between;
}

.transformer-tabs li {
    display: inline-block;
    padding: 0;
    vertical-align: bottom;
}

.transformer-tabs li .active {
    color: var(--dark-blue);
    /*font-weight: 600;*/
}

.transformer-tabs a {
    display: inline-block;
    color: var(--light-blue);
    text-decoration: none;
    font-family: 'Libre Caslon Text';
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    padding: 0 24px;
    transition: 1s all;
}

.transformer-tabs a.active {
    position: relative;
}

.transformer-tabs a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    background-color: var(--dark-blue);
    height: 2px;
    width: 100%;
    left: 0;
}

.tabs>div {
    display: none;
}

.tabs>.active {
    display: block;
}

.hot-right-now {
    background-color: rgba(129, 200, 198, 10%);
    padding: 50px 0;
}

.hot-right-now-title h2 {
    text-align: center;
    padding-bottom: 30px;
}

nav.transformer-tabs {
    text-align: center;
    max-width: 736px;
    margin: 0 auto 50px;
}


.right-list-products {
    display: flex;
    margin-left: -27px;
    margin-right: -27px;
    flex-wrap: wrap;
}

.right-list-product-col {
    width: 33.33%;
    padding: 0 27px;
    min-height: 505px;
    margin-bottom: 20px;
}

.right-list-product-image {
    overflow: hidden;
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}


.right-list-product-image img {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    object-fit: cover;
}


.hot-product-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hot-product-title h5 {
    margin: 0;
}

.hot-product-details {
    box-shadow: 3px 4px 25px 10px #AEAEAE1A;
    background-color: #fff;
    padding: 10px 30px;
    border-radius: 36px;
    position: absolute;
    bottom: 20px;
    /* width: calc(100% - 20px); */
    left: 16px;
    right: 16px;
}

.right-list-product-inner {
    position: relative;
    height: 100%;
}

.right-list-product-inner:hover .right-list-product-inner-hover {
    opacity: 1;
    visibility: visible;
    transition: 1s all;
    transition: opacity 1s, visibility 1s;
    /* transform: translateY(0%); */
}

.right-list-product-inner-hover {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition: 1s all;
    top: 0;
    transition: opacity 1s, visibility 1s;
    /* transform: translateY(-100%); */
    height: 100%;
}

.right-list-product-inner-hover .right-list-product-image {
    background: linear-gradient(89.71deg, #D5E2EA 9.97%, #CCDBE2 37.65%, #C0D1D8 99.51%);
    border-radius: 40px;
    box-shadow: 3px 4px 40px 0px #00000040;
    opacity: 0;
    visibility: hidden;
       width: 100%;
    height: 100%;
    transition: 1s all;
}

.right-list-product-inner:hover .right-list-product-inner-hover .right-list-product-image {
    opacity: 1;
    visibility: visible;
    transition: 1s all;
}

.rating-of-products {
    display: flex;
    padding-bottom: 3px;
}

.hot-product-title h5 {
    font-family: 'Libre Caslon Text';
    font-size: 18px;
    font-weight: normal;
    /* line-height: 38px; */
    color: var(--black);
    padding-bottom: 2px;
}

.hot-product-price {
    font-family: 'Libre Caslon Text';
    font-size: 18px;
    font-weight: bold;
    line-height: 38px;
    text-align: left;
    color: var(--black);
}

.hot-product-title p {
    font-family: 'Libre Caslon Text';
    font-size: 14px;
    font-weight: 400;
    color: var(--light-blue);
}

.right-list-product-inner-hover .hot-product-title p {
    font-size: 18px;
    font-weight: 600;
    line-height: 38px;
    text-align: left;
}

/* shop-by-concern */

.shop-by-concern .shop-by-concern-title,
.shop-by-concern h2 {
    text-align: center;
}

.shop-by-concern .shop-by-concern-title {
    padding-bottom: 50px;
}

.shop-by-concern-image {
    position: relative;
    width: 100%;
    height: 100%;

}

.shop-by-concern-image::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(12, 41, 50, 40%);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.shop-by-concern-image h5 {
    position: absolute;
    bottom: 40px;
    font-family: 'Libre Caslon Text';
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    text-align: center;
    text-shadow: #AEAEAE40 3px 4px 25px;
    color: var(--white);
    left: 0;
    padding: 0 20px;
    margin: 0;
}

.shop-by-concern-list {
    /* display: flex; */
    /* margin-left: -26px;
    margin-right: -26px; */
}

.shop-by-concern-wrap .slick-list {
    margin: 0 -26px;
}

.shop-by-concern-col {
    padding: 0 26px;
}

.shop-by-concern-image img {
    width: 100%;
    /*height: 100%;*/
    /*max-height: 530px;*/
    height: 530px;
}

.shop-by-concern .slick-arrow {
    position: absolute;
    bottom: -70px;
    font-size: 0;
    line-height: 0;
    box-shadow: unset;
    border: 0;
    cursor: pointer;
}

.shop-by-concern .slick-next {
    right: 0;
    background: url('/../assets/frontend/images/butto-arrow.svg'), var(--mint);
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    background-position: center;
    border-radius: 50px;
}

.shop-by-concern .slick-prev {
    right: 100px;
    background: url('/../assets/frontend/images/butto-arrow.svg'), var(--mint);
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    background-position: center;
    border-radius: 50px;
    transform: rotate(180deg);
}

.inner {
    border: 1px solid #0C2932;
    width: 250px;
    height: 113px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-right: 0;
}

.inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* our Official partner */
.our-official-partners {
    padding-top: 50px;
    padding-bottom: 50px;
}

.our-official-partners .our-official-partners-title h2 {
    text-align: center;
    padding-bottom: 25px;
}

.skincare-simplified-title,
.skincare-simplified-title h2 {
    text-align: center;
}

.skincare-simplified-inner-row {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.skincare-simplified-inner {
    padding-top: 50px;
}

.skincare-simplified-inner-left {
    width: 50%;
    display: flex;
    justify-content: center;
}

.skincare-simplified-inner-right {
    width: 50%;
}

.skincare-simplified-inner-image {
    box-shadow: 3px 4px 50px 0px #AEAEAE4D;
    width: 500px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.skincare-simplified-inner-image img {
    width: 100%;
    height: 100%;
}

.skincare-title-right-title {
    font-family: 'Libre Caslon Text';
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    color: var(--black);
    padding-bottom: 12px;
}

.short-desc {
    font-family: 'Libre Caslon Text';
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--light-blue);
    padding-bottom: 20px;
}

.skincare-simplified-wrap {
    max-width: 1080px;
    margin: 0 auto;
}

.skincare-simplified-content {
    padding-left: 50px;
}

/* sign up form */
.sign-up {
    position: relative;
}

.sign-up:after {
    content: '';
    background-color: var(--black);
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.sign-up .content {
    width: 640px;
    height: 70px;
    box-shadow: 3px 4px 25px 0px #AEAEAE40;
    border-radius: 60px;
    margin: 30px auto 0;
    overflow: hidden;
}

.sign-up .subscription {
    position: relative;
    width: 100%;
    height: 100%;
}

.sign-up .subscription .add-email {
    /* position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 15px 30px;
    font-family: 'Libre Caslon Text';
    font-size: 16px;
    font-weight: 400;
    line-height: 19.68px;
    color: var(--light-blue);
}

.sign-up .subscription .submit-email {
    position: absolute;
    top: 7px;
    right: 8px;
    height: 54px;
    width: 198px;
    border: none;
    border-radius: 60px;
    outline: none;
    margin: 1px;
    cursor: pointer;
    background: var(--black);
    color: #FFFFFF;
    transition: width .35s ease-in-out,
        background .35s ease-in-out;
    padding: 15px 50px !important;
}

.sign-up .subscription.done .submit-email {
    width: calc(100% - 2px);
    background: #C0E02E;
}

.sign-up .subscription.done .submit-email .before-submit,
.sign-up .subscription:not(.done) .submit-email .after-submit {
    visibility: hidden;
    opacity: 0;
}

.sign-up .subscription .submit-email .after-submit {
    transition-delay: .35s;
}

.sign-up .subscription .submit-email .before-submit {
    font-family: 'Libre Caslon Text';
    font-size: 18px;
    font-weight: 600;
    line-height: 24.6px;
    color: var(--white);
}

.sign-up .sign-up-wrap {
    background: linear-gradient(180deg, #81C8C6 0%, #CAD4A6 100%);
    position: relative;
    padding: 5px;
    border-radius: 40px;
    overflow: hidden;
}

.sign-up .sign-up-wrap:after {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;
    z-index: 1;
    border-radius: 40px;
    background: linear-gradient(180deg, #c7dddd 0%, #e3e9dc 100%);
}

.sign-up .sign-up-wrap-border {
    /* background: linear-gradient(180deg, rgba(129, 200, 198, 0.3) 0%, rgba(202, 212, 166, 0.3) 100%); */
    padding: 50px 136px;
    position: relative;
    z-index: 2;
}

.sign-up .sign-up-content,
.sign-up .sign-up-content h3 {
    text-align: center;
}

.sign-up h3 {
    font-family: 'Libre Caslon Text';
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
    color: var(--black);
    padding-bottom: 10px;
}

.sign-up .sign-up-content p {
    font-family: 'Libre Caslon Text';
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--light-blue);
}

/* footer section */

.footer-section {
    background-color: var(--black);
}

.footer-wrap {
    padding-top: 40px;
}

.footer-logo-inner {
    padding: 0 88px;
    display: flex;
    align-items: center;
}

.footer-desc {
    font-family: 'Libre Caslon Text';
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--light-green);
    padding-left: 80px;
}

.footer-logo img {
    width: 252px;
    height: 123px;
}

.quick-link {
    font-family: 'Libre Caslon Text';
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    color: var(--mint);
    padding-bottom: 13px;
}

.footer-quick ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-quick ul li {
    width: 50%;
}

.footer-links {
    display: flex;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(202, 212, 166, 80%);
}

.footer-quick {
    width: 50%;
}

.footer-quick ul li a {
    font-family: 'Libre Caslon Text';
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: var(--light-green);
    transition: 1s all;
    position: relative;
    padding-left: 20px;
    display: block;
    margin-left: 13px;
    display: inline-block;
}

.footer-quick ul li a:hover {
    color: var(--mint);
}

.footer-quick ul li a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 100px;
    display: block;
    background-color: var(--light-green);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.footer-copyright {
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright,
.copyright a {
    font-family: 'Libre Caslon Text';
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--mint);
    transition: 1s all;
}

.copyright a:hover {
    color: var(--light-green);
}

.social-media-links ul {
    display: flex;
    gap: 15px;
}

.social-media-links ul li a {
    width: 40px;
    height: 40px;
    background-color: rgba(129, 200, 198, 80%);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s all;
}

.social-media-links ul li a:hover {
    background-color: var(--light-green);
}

.line-border {
    display: block;
    width: 100%;
    background: radial-gradient(54.27% 83451993.95% at 53.43% 0%, #81C8C6 0%, #0C2932 100%);
    height: 1px;
    margin: 15px 0;
}

.the-transformation .wrapper {
    width: 252px;
    height: 282px;
    /* position: absolute; */
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

/* before and after slider */
.reivew-slider-image .ba-Slider {
    position: relative;
    display: block;

    background: #212121;
    /* margin:20px auto; */
    overflow: hidden;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 252px;
    height: 282px;
    border-radius: 20px;
}

.reivew-slider-image .slider {
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 15px);
    background: transparent url(/../assets/frontend/images/round-left-right-arrow.png);
    background-repeat: no-repeat;
    width: 45px;
    height: 44px;
    cursor: pointer;
    background-size: contain;
    transform: translateX(-20%);
    box-shadow: 6px 0px 5px 0px #00000073;
    border-radius: 30px;
}

#after {
    box-shadow: 6px 0px 5px 0px #00000073;
}

.reivew-slider-image #before {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    overflow: hidden;
    border-right: 5px solid #fff;
}

.reivew-slider-image .ease {
    transition: width ease .5s, left ease .5s;
    -moz-transition: width ease .5s, left ease .5s;
    -webkit-transition: width ease .5s, left ease .5s;
}

.reivew-slider-image img {
    object-fit: cover;
    width: 252px;
    height: 282px;
}

/* before and after slider end*/

.the-transformation .main {
    display: flex;
    margin-top: 30px;
}

.the-transformation .slider-for {
    width: 90%;
}

.the-transformation .slider-nav {
    width: 10%;
}

.the-transformation .slider-image {
    margin-bottom: 24px;
}

.the-transformation .slider-image img {
    cursor: pointer;
}

.the-transformation .review-slider-main {
    background: rgba(129, 200, 198, 30%);
    margin-right: 40px;
    border-radius: 20px;
    padding: 46px 30px 75px;
    display: flex;
}

.the-transformation .review-slider-content {
    padding-left: 40px;
}

/* star css */
.review-transformation .slider::before {
    content: '';
    width: 10px;
    height: 50%;
    background-color: #fff;
    display: block;
    top: 0;
    position: absolute;
}

.review-transformation .star {
    font-size: x-large;
    display: inline-block;
    color: #95B9C3;
    width: 22px;
}

.review-transformation .star:before {
    content: '\2605';
}

.review-transformation .star.on {
    color: var(--black);
    font-size: 27px;
}

.review-transformation .star.half:after {
    content: '\2605';
    color: var(--black);
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    overflow: hidden;
}

.review-transformation span.star.half {
    position: relative;
}

/* star css end*/
.review-slider-content-inner {
    font-family: 'Libre Caslon Text';
    font-size: 18px;
    font-weight: bold;
    line-height: 28px;
    color: var(--black);
    padding-top: 25px;
    padding-bottom: 20px;
}

.review-person-name {
    font-family: 'Libre Caslon Text';
    font-size: 20px;
    font-weight: 400;
    line-height: 36px;
    color: var(--light-blue);
    padding-bottom: 19px;
}

.button-dark {
    box-shadow: 2.24px 2.99px 18.7px 7.48px #AEAEAE1A;
    padding: 12px 65px 12px 30px;
    background-color: var(--black);
    border-radius: 26px;
    color: var(--white);
    text-transform: capitalize;
    display: inline-block;
    position: relative;
}

.button-dark:hover {
    color: var(--white);
}

.arrow-sign {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.the-transformation {
    background-color: rgba(129, 200, 198, 10%);
    margin-top: 50px;
}

.the-transformation .slick-arrow {
    font-size: 0;
    box-shadow: unset;
    border: 0;
}

.the-transformation .slick-next {
    background: url(/../assets/frontend/images/round-downarrow.svg), #CAD4A6;
    background-repeat: no-repeat;
    width: 70px;
    height: 37px;
    background-position: center;
    border-radius: 8px;
    cursor: pointer;
    position: absolute;
    bottom: 5;
    left: 2px;
    visibility: visible;
    opacity: 1;
    transition: 1s all;
}

.the-transformation .slick-prev {
    background: url(/../assets/frontend/images/round-downarrow.svg), #CAD4A6;
    background-repeat: no-repeat;
    width: 70px;
    height: 37px;
    background-position: center;
    border-radius: 8px;
    cursor: pointer;
    position: absolute;
    top: -60px;
    left: 0;
    transform: rotate(180deg);
    visibility: visible;
    opacity: 1;
    transition: 1s all;
}

.the-transformation .slick-prev.slick-disabled,
.the-transformation .slick-next.slick-disabled {
    visibility: hidden;
    opacity: 0;
}

.use-products {
    display: inline-flex;
    padding: 0 27px;
    margin-top: -35px;
}

.use-products-inner {
    display: flex;
    gap: 27px;
    align-items: center;
}

.use-products-inner-cat-list ul {
    display: flex;
    gap: 23px;
}

.use-products-inner-cat-list ul li a img {
    border-radius: 8px;
    height: 70px;
    width: 66px;
    background-color: var(--white);
    padding: 3px;
}

.use-products-inner-title {
    background-color: var(--mint);
    padding: 17px 20px;
    font-family: 'Libre Caslon Text';
    font-size: 18px;
    font-weight: normal;
    line-height: 28px;
    color: var(--black);
    border-radius: 8px;
    display: inline-block;

}

.use-products-inner-title:hover {
    color: var(--black);
}

.use-products-inner-bg {
    padding: 3px;
    border-radius: 8px;
    background-image: linear-gradient(#fff, rgba(129, 200, 198, 10%));
}

/************************************************* Shop Page **************************************************/
.banner-image {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    min-height: 337px;
    position: relative;
    border-radius: 0 0 20px 20px;
    margin: 0 50px;
    z-index: 0;
}

.banner-image::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 70%);
    border-radius: 0 0 20px 20px;
}

.banner-title {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
}

.banner-title h1 {
    color: var(--white);
    text-transform: unset;
    text-transform: uppercase;
}

.breadcrumb-nav {
    display: flex;
    justify-content: flex-start;
    padding-top: 50px;
}

.breadcrumb-nav a {
    font-family: 'Libre Caslon Text';
    font-size: 14px;
    font-weight: 600;
    line-height: 24.6px;
    text-align: center;
    color: var(--mint);
}

.breadcrumb-nav li {
    font-family: 'Libre Caslon Text';
    font-size: 14px;
    font-weight: 600;
    line-height: 24.6px;
    text-align: center;
    color: var(--white);
}

.breadcrumb-nav li.active {
    /* color: var(--white); */
    text-transform: capitalize;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '';
    background: url('/../assets/frontend/images/right-arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 10px;
    height: 10px;
    margin-top: 7px;
  margin-right: 10px;
    /* color: var(--white); */
}

.shop-listing-wrap {
    padding-top: 10px;
    padding-bottom: 60px;
}

.widget-title {
    font-family: 'Libre Caslon Text';
    font-size: 18px;
    font-weight: 600;
    line-height: 24.6px;
    color: var(--dark-blue);
    text-transform: capitalize;
}

.widget-search .form-btn-1 {
    box-shadow: unset;
    border: 0;
    background: transparent;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
    position: absolute;
    right: 0;
    bottom: 10px;
}

.widget-search .form-inline {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.widget-search .form-group input {
    border: 1px solid #81C8C6;
    border-radius: 8px;
    min-height: 52px;
    background-color: #81C8C61A;
    font-family: Libre Caslon Text;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.14px;
    text-transform: capitalize;
}

.widget-search .form-btn-1 svg path {
    stroke: var(--mint);
}

.widget-search .form-btn-1 svg path:last-child {
    stroke: var(--black);
}


.widget.widget-category {
    border: 1px solid #81C8C6;
    border-radius: 8px;
    padding: 20px 20px 8px;
    margin-top: 10px;
    background-color: #81C8C60A;
}

.widget.widget-category .widget-title {
    padding-bottom: 12px;
    border-bottom: 0.8px solid rgba(129, 200, 198, 40%);
    margin-bottom: 15px;
}

.single-checkbox-wrap span {
    font-family: 'Libre Caslon Text';
    font-size: 16px;
    font-weight: 400;
    line-height: 19.68px;
    text-align: left;
    color: var(--dark-blue);
    display: inline-block;
    padding-left: 5px;
}

.single-checkbox-wrap label {
    cursor: pointer;
    margin: 0 0 10px;
    display: flex;
}

.card-header {
    background-color: transparent;
    border-bottom: 0;
    border-radius: unset !important;
    box-shadow: unset;
}

.radio {
    border: 1.5px solid #303F53;
    position: relative;
    cursor: pointer;
}

.radio::after {
    position: absolute;
    top: 0;
    left: 0px;
    font-weight: 600;
    font-size: 9px;
    width: 15px;
    height: 15px;
    border-radius: 2px;
    padding-top: 1px;
    opacity: 0;
    text-align: center;
    width: 15px;
    height: 15px;
}

.single-checkbox-wrap {
    display: flex;
    justify-content: space-between;
}

.sub-category-btn {
    background: none;
    border: none;
    color: #303F53;
    font-size: 25px;
}

.card {
    background-color: transparent;
}

.widget-color .single-checkbox-wrap input {
    width: auto;
    height: auto;
    margin-right: 15px;
    position: absolute;
    visibility: hidden;
    display: inline-block;
}

.widget-color .single-checkbox-wrap .size-code {
    position: relative;
    color: var(--light-blue);
    text-align: center;
    z-index: 4;
    text-transform: capitalize;
    padding: 6px 18px;
    border-radius: 18px;
    border: 1px solid #81C8C6;
    background: #81C8C61A;
    min-height: 30px;
    font-size: 15px;
    font-weight: 400;
    line-height: 18.45px;
    /* margin-bottom: 10px; */
}

.widget-color .single-checkbox-wrap .size-code.size-code-fill {
    background-color: #81C8C6;
    color: #fff;
}

.widget-color .single-checkbox-wrap {
    display: inline-block;
}

.toolbox-right {
    display: flex;
    justify-content: flex-end;
}

.toolbox-item label {
    font-family: 'Libre Caslon Text';
    font-size: 18px;
    font-weight: 400;
    line-height: 22.14px;
    text-transform: capitalize;
    color: var(--light-blue);
    margin-right: 5px;
}

#set_item_to_show {
    border: 1px solid #81C8C6;
    padding: 10px 70px 9px 15px;
    background-color: #81C8C60A;
    border-radius: 6px;
    color: var(--dark-blue);
    font-family: 'Libre Caslon Text';
    font-size: 18px;
    font-weight: 400;
    line-height: 22.14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    background: url('/../assets/frontend/images/select-dropdwon.svg');
    background-repeat: no-repeat;
    background-position: 85% 50%;
    background-size: 18px;
}

.toolbox-item.toolbox-sort {
    padding-left: 50px;
    padding-right: 20px;
    line-height: normal;
}

.set_item_sort_by {
    border: 1px solid #81C8C6;
    padding: 10px 30px 9px 25px;
    background-color: #81C8C60A;
    border-radius: 6px;
    font-family: 'Libre Caslon Text';
    font-size: 18px;
    font-weight: 400;
    line-height: 22.14px;
    color: var(--dark-blue);
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    background: url('/../assets/frontend/images/select-dropdwon.svg');
    background-repeat: no-repeat;
    background-position: 95% 50%;
    background-size: 18px;
}

.single-collection-item {
    position: relative;
}

.product-image-box-content {
    position: absolute;
    width: 250px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 15px;
}

.product-image-box-content-inner {
    background-color: var(--white);
    border-radius: 20px;
    padding: 10px 15px;
    transition: all 0.8s ease-in-out;
    position: absolute;
    bottom: 0;
    width: 100%;
}


.single-collection-item:hover .product-image-box-content-inner {
    visibility: hidden;
    opacity: 0;

}

.add-to-products {
    visibility: hidden;
    opacity: 0;
    transition: all 0.8s ease-in-out;
    display: flex;
    justify-content: center;
    gap: 10px;
    /* margin-bottom: 20px; */
    transform: scale(0);
    position: absolute;
    bottom: 0;
    left: 27%;
    z-index: -1;
}

.single-collection-item:hover .add-to-products {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    bottom: 70px;
}

.add-to-cart-shop {
    position: relative;
}

.add-to-cart-shop .wishlist_badge {
    display: none;
}

.add-to-cart-shop.fill-wishlist .wishlist_badge {
    display: block;
    right: -5px;
    background-color: var(--black);
}

.single-collection-item .wishlist-shop.fill-wishlist img:first-child,
.single-collection-item .wishlist-shop img:last-child {
    /* display: none; */
}

.single-collection-item .wishlist-shop.fill-wishlist img:last-child {
    display: block;
}

.add-to-cart-shop,
.wishlist-shop {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 35px;
    display: flex;
    justify-content: center;
    align-content: center;
}

.add-to-cart-shop img,
.wishlist-shop img {
    width: 24px;
}

.product-image-box-content-inner-hover {
    /* position: absolute; */
    bottom: 15px;
    visibility: hidden;
    opacity: 0;
    transition: all 400ms ease;
    background-color: var(--white);
    border-radius: 20px;
    padding: 10px 15px;
}

.single-collection-item:hover .product-image-box-content-inner-hover {
    visibility: visible;
    opacity: 1;
}

.product-img-box a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-img-box a img {
    width: 100%;
    /*height: 100%;*/
    height: 342px;
    object-fit: cover;
    border-radius: 10px;
}

.toolbox-wrapper {
    margin-bottom: 30px;
}

.shop-listing-wrap .col-lg-9 {
    padding-left: 50px;
}

.checkbox-custom,
.radio-custom {
    opacity: 0;
    position: absolute;
}

.checkbox-custom,
.checkbox-custom-label,
.radio-custom,
.radio-custom-label {
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    cursor: pointer;
}

.checkbox-custom-label,
.radio-custom-label {
    position: relative;
}

.checkbox-custom+.checkbox-custom-label::before,
.radio-custom+.radio-custom-label::before {
    content: '';
    background: #fff;
    border: 1px solid #303F53;
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    height: 14px;
    padding: 7px;
    margin-right: 10px;
    text-align: center;
}

.checkbox-custom:checked+.checkbox-custom-label:before {
    background: rebeccapurple;
    box-shadow: inset 0px 0px 0px 4px #fff;
}

.radio-custom+.radio-custom-label:before {
    border-radius: 50%;
}

.radio-custom:checked+.radio-custom-label:before {
    background: #303F53;
    box-shadow: inset 0px 0px 0px 4px #fff;
}

.radio-custom-label {
    font-family: 'Libre Caslon Text';
    font-size: 14px;
    font-weight: 400;
    line-height: 19.68px;
    color: var(--black);
}

.pagination-default {
    background-color: #DFF1F0;
    border-radius: 30px;
    padding: 16px 24px;
    margin-top: 20px;
    max-width: 531px;
}

.pagination .page-link {
    background-color: transparent !important;
    border: 0;
    padding: 0;
    font-size: 14.62px;
    font-weight: 700;
    line-height: 18.38px;
    color: #656565;
}

.pagination {
    justify-content: center;
    align-items: center;
}

.page-item.active .page-link {
    background-color: #81C8C6 !important;
    width: 34px;
    height: 34px;
    display: block;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination li {
    margin-right: 30px;
}

.pg-circle .col-lg-7 {
    padding: 0;
}

.pg-circle .previous {
    position: absolute;
    left: 0;
}

.pagination {
    position: relative;
}

.page-item.next {
    position: absolute;
    right: 0;
    transform: rotate(180deg);
    margin-right: 0;
}

.product-image-box-content p {
    font-family: 'Libre Caslon Text';
    font-size: 16px;
    font-weight: 500;
    line-height: 19.68px;
    text-align: left;
}

.sub-cat-content {
    padding-left: 25px;
}

.sub-cat-content label {
    font-size: 16px;
    font-weight: 400;
    line-height: 19.68px;
    color: var(--light-blue);
}

.widget-range #slider-range {
    width: 98% !important;
    height: 3px;
    margin-top: 20px !important;
    border: 2px solid rgba(91, 115, 141, 20%);
}

.widget-range .ui-slider-handle.ui-corner-all.ui-state-default {
    border: 2px solid #303F53;
    border-radius: 25px;
    background: #fff;
    top: -7px;
    cursor: pointer;
}

.widget-range .ui-slider-range.ui-corner-all.ui-widget-header {
    background-color: #303F53;
    height: 3px;
}

.widget-range #amount {
    margin-top: 20px;
    border: 0;
    display: flex;
    justify-content: center;
    font-family: 'Libre Caslon Text';
    font-size: 14px;
    font-weight: 500;
    line-height: 17.22px;
    color: #5B738D;
    width: 100%;
}

.widget-range #slider-range span:last-child {
    background: #303F53;
}

/************************************************* Shop Page End **************************************************/

/************************************************* Shop Detail Page  **************************************************/

.shop-detail-page .skincare-simplified-wrap {
    max-width: 1200px;
}

.shop-detail-page .skincare-simplified-inner-left {
    flex-wrap: wrap;
    justify-content: flex-start;

}

.shop-detail-page .skincare-simplified-inner-image {
    height: 270px;
    width: 550px;
}

.shop-detail-page .skincare-simplified-content {
    padding: 30px 20px;
}

.shop-detail-page .skincare-simplified-inner-row {

    justify-content: center;
    gap: 100px;
}

.faq-section {
    background-color: rgba(129, 200, 198, 10%);
}

.faq-section .faq-section-title,
.faq-section .faq-section-title h2 {
    text-align: center;
}

.faq-section .faq-section-title {
    margin-bottom: 30px;
}

.faq-section .accordion-button {
    box-shadow: 3px 4px 25px 0px #AEAEAE40 !important;
    background-color: rgba(255, 255, 255, 40%);
    border-radius: 10px !important;
    font-size: 22px;
    font-weight: 600;
    line-height: 29.52px;
    color: var(--black) !important;
    padding: 20px 30px;
}

.faq-section .accordion-item {
    border: 0;
    background-color: transparent;
    margin-bottom: 30px;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #fff !important;
}

.accordion-button::after {
    background: url('/../assets/frontend/images/select-dropdwon.svg');
    background-repeat: repeat;
    background-repeat: no-repeat;
    background-position: center;
    width: 30px;
    height: 16px;
    background-size: 24px !important;
}

.accordion-button:not(.collapsed)::after {
    background: url('/../assets/frontend/images/select-dropdwon.svg');
    background-repeat: repeat;
    background-repeat: no-repeat;
    background-position: center;
}

.accordion-item.active-item-expanded {
    border: 2px solid #81C8C6;
    background: #ffff;
    border-radius: 10px;
}

.faq-section .active-item-expanded .accordion-button {
    box-shadow: unset !important;
}

.accordion-body {
    padding: 0 90px 30px 30px;
}

.related-product-list {
    display: flex;
    padding-left: calc((100% - 1280px)/2);
}

.related-product-list-col {
    position: relative;
    padding: 0 15px;
}

.related-product-list-img img {
    width: 100%;
    height: 100%;
    transition: all 400ms ease;
}

.related-product-list-img {
    width: 400px;
    height: 280px;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 400ms ease;
}

.related-product-list-content {
    position: absolute;
    width: calc(100% - 20px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    bottom: 15px;
    align-items: center;
    z-index: 1;
}

.related-product-list-title {
    font-size: 22px;
    font-weight: 400;
    line-height: 38px;
    color: var(--white);
    transition: all 400ms ease;
}

.related-product-list-price {
    border: 2px solid #CAD4A6;
    border-radius: 25px;
    background: #81C8C64D;
    padding: 14px 19px;
    font-size: 16px;
    font-weight: 700;
    line-height: 22.63px;
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    height: 50px;
    transition: all 400ms ease;
}


.related-product-list .cart-icon-inner {
    position: absolute;
    top: -5px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--mint);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    transition: all 400ms ease;
    z-index: 1;
}

.related-product-list-inner:hover .cart-icon-inner {
    transform: scale(1);
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
}

.related-product-list-inner:hover .related-product-list-img img {
    transform: scale(1.1);
}

.related-product-list-inner:hover .related-product-list-title {
    color: var(--mint);
}

.related-product-list-inner:hover .related-product-list-price {
    background-color: var(--mint);
    border-color: var(--mint);
}

.related-product-list-inner {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.related-product-list-inner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: radial-gradient(61.43% 61.43% at 50% 38.57%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.375658) 61.06%, #000000 100%);
    z-index: 1;
}

.related-product-list .cart-icon-inner svg path {
    fill: var(--dark-blue);
}

.related-product-list .cart-icon-inner svg path:last-child {
    fill: var(--white);
}

.related-product-list .slick-prev.slick-arrow {
    right: 430px;
    background: url('/../assets/frontend/images/butto-arrow.svg'), var(--mint);
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    background-position: center;
    border-radius: 50px;
    transform: rotate(180deg);
    position: absolute;
    bottom: -55px;
    font-size: 0;
    line-height: 0;
    box-shadow: unset;
    border: 0;
    cursor: pointer;
}

.related-product-list .slick-next.slick-arrow {
    right: 350px;
    background: url('/../assets/frontend/images/butto-arrow.svg'), var(--mint);
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    background-position: center;
    border-radius: 50px;
    position: absolute;
    bottom: -55px;
    font-size: 0;
    line-height: 0;
    box-shadow: unset;
    border: 0;
    cursor: pointer;
}

.related-product-title {
    padding-bottom: 40px;
}

.shop-detail-transformation {
    margin-top: 0;
}

.key-ingredients-left {
    padding-right: 25px;
}

.key-ingredients-right {
    padding-left: 25px;
}

.key-ingredients-left-img {
    box-shadow: 3px 4px 25px 0px #AEAEAE40;
    border-radius: 20px;
    overflow: hidden;
}

.key-ingredients-left img {
    width: 100%;
}

.key-ingredients-detail p {
    font-family: 'Libre Caslon Text';
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    padding: 20px 0 35px;
}

.key-ingredients-right .accordion .accordion-item {
    margin-bottom: 20px;
    border: 1px solid #81C8C6;
    border-radius: 15px;
    padding: 25px;
}

.key-ingredients .accordion-body {
    padding: 0;
    font-size: 16px;
    line-height: 32px;
}

.key-ingredients .accordion-button {
    background-color: transparent;
    border: 0;
    box-shadow: unset;
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    color: var(--black);
    padding: 0;
}

.key-ingredients .accordion-item .accordion-button:not(.collapsed) {
    padding-bottom: 15px;
}

.key-ingredients .accordion-button::after {
    background: url('/../assets/frontend/images/key-plus.svg');
    background-repeat: no-repeat;
    background-position: center;
    width: 25px;
    height: 30px;
    background-size: 20px !important;
}

.key-ingredients .accordion-button:not(.collapsed)::after {
    background: url('/../assets/frontend/images/key-minus.svg');
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    background-size: 20px !important;
}

.complete-your-routine-bg {
    background: #A1D4CD;
    border-radius: 25px;
    box-shadow: 3px 4px 30px 0px #AEAEAE33;
    padding: 80px 20px 30px 20px;
    margin-bottom: 20px;
}

.complete-your-routine-inner {
    position: relative;
    background-color: var(--white);
    border-radius: 20px;
    padding: 20px;
}

.complete-your-routine-inner::before {
    content: '';
    background-color: var(--white);
    width: 100%;
    height: 100%;
    /*! position: absolute; */
    /*! border-radius: 20px; */
    /*! z-index: 0; */
    /*! padding: 20px; */
}

.complete-your-routine-content {
    position: absolute;
    display: flex;
    top: -50px;
    left: 30px;
    gap: 59px;
}

.complete-your-routine-detail {
    padding-top: 60px;
}

.steps {
    font-size: 26px;
    font-weight: 600;
    line-height: 36.9px;
    color: var(--white);
    text-transform: capitalize;
    padding-top: 20px;
}

.complete-your-routine-detail h3 {
    font-family: 'Libre Caslon Text';
    font-size: 26px;
    font-weight: 600;
    line-height: 34.44px;
    color: var(--black);
    padding-bottom: 20px;
}

.complete-your-routine-content img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
}

.complete-your-routine-detail {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.complete-your-routine-detail strong {
    color: var(--black);
}

.complete-your-routine-button {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.add-to-wishlist {
    border: 2px solid #FFFFFF;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s all;
}

.add-to-wishlist.fill svg path {
    fill: var(--white);
}

.add-to-wishlist:hover svg path {
    fill: var(--white);
    transition: 1s all;
}

.complete-your-routine {
    background-color: rgba(129, 200, 198, 10%);
}

.complete-your-routine h2 {
    text-align: center;
    padding-bottom: 50px;
}

.complete-your-routine-bg.step2 {
    background: #E5C4C2;
}

.complete-your-routine-bg.step3 {
    background: #B6BADC;
}

.how-to-use-btn {
    background-color: var(--mint);
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    color: var(--black);
    padding: 12px 70px 12px 30px;
    box-shadow: 3px 4px 25px 10px #AEAEAE1A;
    border-radius: 35px;
    position: absolute;
    left: 139px;
    bottom: -36px;
    text-transform: capitalize;
}

.how-to-use-btn:hover {
    color: var(--black);
}

.how-to-use-image {
    position: relative;
    box-shadow: 3px 4px 25px 0px #AEAEAE40;
    border-radius: 20px;
    max-width: 830px;

}

.how-to-use-image img {
    border-radius: 20px;
    width: 830px;
    height: 350px;
    object-fit: cover;
}

.when-to-use {
    display: flex;
    justify-content: flex-end;
}

.when-to-use-bg {
    background-color: var(--white);
    padding: 20px 0 20px 20px;
    position: relative;
    margin-top: -200px;
    border-radius: 20px;
    height: 550px;
}

.when-to-use-btn {
    position: absolute;
    left: -100px;
    border: 1px solid #81C8C6;
    background-color: #fff;
    padding: 12px 70px 12px 30px;
    border-radius: 35px;
    box-shadow: 3px 4px 25px 10px #AEAEAE1A;
    font-size: 22px;
    font-weight: 500;
    line-height: 34px;
    color: var(--mint);
    top: auto;
    bottom: 150px;
    /* writing-mode: sideways-lr; */
    transform: rotate(-90deg);
    text-transform: capitalize;
}

.when-to-use-btn:hover {
    color: var(--mint);
}

.when-to-use-bg img {
    box-shadow: 3px 4px 25px 0px #AEAEAE40;
    border-radius: 20px;
    /*width: 100%;*/
    height: 100%;
    width: 461px;
    object-fit: cover;
}

.how-to-use-wrap {
    position: relative;
}

.how-to-use-desc,
.when-to-use-desc {
    max-width: 670px;
    position: absolute;
    /*bottom: 50px;*/
    bottom: 0;
}

.mobile-desc {
    display: none;
}

.how-to-use-desc p,
.when-to-use-desc p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    margin-bottom: 25px;
}


.how-to-use-btn::after {
    content: '';
    position: absolute;
    background: url(/../assets/frontend/images/downarrow-line.svg);
    background-repeat: no-repeat;
    background-size: 18px;
    right: 30px;
    bottom: 20px;
    width: 17px;
    height: 20px;
}

.when-to-use-btn::after {
    content: '';
    position: absolute;
    background: url(/../assets/frontend/images/lefttarrow-line.svg), no-repeat;
    background-repeat: no-repeat;
    background-size: 18px;
    right: 26px;
    top: 20px;
    width: 17px;
    height: 20px;
    transform: rotate(90deg);
}

.product-slider-nav-img {
    width: 90px !important;
    height: 90px;
    cursor: pointer;
}

.product-slider-nav-img img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.product-slider-nav .slick-slide {
    width: 90px !important;
    height: 90px;
    margin: 0 5px;
}

.product-slider-for .slick-slide img {
    height: 580px;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    object-fit: cover;
}

.product-slider-nav .slick-prev.slick-disabled,
.product-slider-nav .slick-next.slick-disabled {
    visibility: hidden;
    opacity: 0;
}

.product-slider-nav .slick-next.slick-arrow {
    background: url(/../assets/frontend/images/round-downarrow.svg), #E5DEC2;
    background-repeat: no-repeat;
    width: 70px;
    height: 37px;
    background-position: center;
    border-radius: 8px;
    cursor: pointer;
    position: absolute;
    right: -15px;
    visibility: visible;
    opacity: 1;
    transition: 1s all;
    font-size: 0;
    box-shadow: unset;
    border: 0;
    top: 50%;
    transform: translateY(-50%) rotate(270deg);
}

.product-slider-nav .slick-prev.slick-arrow {
    background: url(/../assets/frontend/images/round-downarrow.svg), #E5DEC2;
    background-repeat: no-repeat;
    width: 70px;
    height: 37px;
    background-position: center;
    border-radius: 8px;
    cursor: pointer;
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    visibility: visible;
    opacity: 1;
    transition: 1s all;
    font-size: 0;
    box-shadow: unset;
    border: 0;
}

.product-slider-nav {
    padding-left: 50px;
    padding-right: 50px;
    margin-top: 10px;
    height: 90px;
}

.product-deatil-slider {
    background-color: rgba(129, 200, 198, 10%);
    padding: 50px 0;
}

.sell-min ul li {
    border: 1px solid #81C8C6;
    border-radius: 16px;
    padding: 2px 15px;
    font-size: 14px;
    font-weight: 500;
    line-height: 17.22px;
    color: #00BBB6;
    text-transform: capitalize;
}

.sell-min ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.product-info-wrap-detail {
    padding-top: 15px;
}

.star-rating-inner {
    display: flex;
    margin-bottom: 10px;
    margin-top: 10px;
}

.display-star {
    font-size: 20px;
    font-weight: 600;
    line-height: 24.6px;
    color: var(--black);
}

.product-info-wrap-detail h1 {
    color: var(--black);
    padding-bottom: 15px;
}

.product-info-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    padding-bottom: 15px;
}

legend {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 16px;
}

legend span {
    font-size: 16px;
    font-weight: 500;
    line-height: 24.6px;
    text-align: left;
    color: var(--black);
}

.select-size {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.select-size li a {
    border: 1px solid #5B7078;
    font-size: 16px;
    font-weight: 500;
    line-height: 22.14px;
    color: var(--black);
    padding: 4px 15px;
    border-radius: 22px;
    display: inline-block;
    opacity: 0.7;
}

.select-size li a.select-one {
    opacity: 1;
}

.price-dispaly {
    padding-top: 30px;
    display: flex;
}

.price-item {
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    text-align: left;
    color: var(--black);
}

.price-dispaly span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    color: var(--light-blue);
}



.add-to-cart-wrap .buy-now {
    padding: 12px 40px;
    background-color: var(--black);
    color: var(--white);
    border-radius: 35px;
    display: inline-block;
}

.add-to-cart-wrap {
    display: flex;
    align-content: center;
    padding-top: 30px;
    padding-bottom: 25px;
    gap: 25px;
}

.add-to-cart-wrap .add-to-cart {
    border: 1px solid #81C8C6;
    border-radius: 35px;
    padding: 12px 65px 12px 20px;
    background: #81C8C633;
    color: var(--black);
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
    position: relative;
    display: block;
}

.add-to-cart-wrap .add-to-cart::after {
    content: '';
    position: absolute;
    background: url('/../assets/frontend/images/cart.svg');
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    right: 25px;
    top:14px;
    background-size: contain;
}

.add-to-cart-wrap .add-to-wishlist.fill {
    border: 1px solid #81C8C6;
    background: #81C8C633;
}
.add-to-wishlist svg {
    width: 18px;
    height: 18px;
}

.add-to-cart-wrap .add-to-wishlist.fill svg path {
    fill: var(--black);
    stroke: var(--black);
}

.product-info-wrap-container {
    border-bottom: 2px solid #CAD4A6;
}

.product-acordion {
    padding-top: 20px;
}

.product-acordion .accordion-item {
    border: 0;
    background-color: transparent;
    border-bottom: 2px solid rgba(91, 112, 120, 25%) !important;
}

.product-acordion .accordion-button {
    background: transparent;
}

.product-acordion .accordion-button {

    padding-left: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 29.52px;
    text-align: left;
}

.tab-scroll {
    display: flex;
    flex-direction: column;
}

.tab-scroll>a {
    font-size: 20px;
    font-weight: 600;
    line-height: 29.52px;
    text-align: left;
    color: var(--black);
    padding: 1rem 1.25rem;
    padding-left: 0;
    border-bottom: 2px solid rgba(91, 112, 120, 25%) !important;
    position: relative;
}

.tab-scroll>a::after {
    content: '';
    background: url(/../assets/frontend/images/Icon-Set.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 27px;
    height: 27px;
    transition: 0.5s all;
    display: inline-block;
    background-size: 24px !important;
    margin-left: auto;
    right: 20px;
    position: absolute;
}

.product-acordion .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: unset;
    color: var(--black);

}

.product-acordion .accordion-body {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding-left: 0;
}

.product-acordion .bullet-points {
    padding: 10px;
}

.product-acordion .bullet-points li::before {
    content: '';
    background-color: var(--light-blue);
    width: 5px;
    height: 5px;
    display: inline-block;
    border-radius: 50px;
    left: 0;
    top: 35%;
    position: absolute;
}

.product-acordion .bullet-points li {
    position: relative;
    padding-left: 20px;
    padding-bottom: 6px;
}

.product-acordion button:focus:not(:focus-visible) {
    outline: 0;
    border-color: unset;
    box-shadow: unset;
}

.product-info-wrap {
    padding-left: 16px;
    /* height: calc(100% - 100px);
        overflow-y: scroll;
        scrollbar-width: none; */
}



.product-acordion .accordion-button::after {
    background: url('/../assets/frontend/images/Icon-Set.svg');
    background-repeat: repeat;
    background-repeat: no-repeat;
    background-position: center;
    width: 27px;
    height: 27px;
    transition: 0.5s all;
}

.product-acordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.price-dispaly .quantity {
    border: 1px solid #81C8C6;
    background: #81C8C61A;
    margin-left: 80px;
    height: 43px;
    border-radius: 32px;
    display: flex;
    align-content: center;
    padding: 0 10px;
}

.price-dispaly .quantity-input {
    height: 40px;
    width: 70px;
    text-align: center;
    outline: none;
    background-color: transparent;
    box-shadow: unset;
    border: 0;
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

.price-dispaly .quantity button {
    box-shadow: unset;
    border: 0;
    background-color: transparent;
    outline: 0;
    font-size: 0;
}

.price-dispaly .quantity button img {
    width: 12px;
    height: 12px;
}

.product-deatil-slider-inner {
    position: sticky;
    top: 0;
}

/************************************************* Shop Detail Page End **************************************************/

/************************************************* Landing Page  **************************************************/
.landingimage {
    width: 100%;
    transform: scale(1);
    transition: 400ms all ease;
    height: 99vh;
    cursor: pointer;
}

.landingimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-page>header,
.landing-page>section,
.landing-page>footer {
    display: none;
}

.Home-page-display .landingimage {
    transform: scale(0);
    height: 0;
}

.Home-page-display>header,
.Home-page-display>section,
.Home-page-display>footer {
    display: block;
}

.landingimage {
    background: url('/../assets/frontend/images/landing-bg.png');
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.landingimage img {
    display: none;
}

.landingimage .mobile-img-d {
    display: block;
    width: 100%;
    height: 100%;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}

/************************************************* Landing Page End **************************************************/

/************************************************* Register Page **************************************************/
.register {
    background-color: rgba(129, 200, 198, 10%);
    display: flex;
}

.register-left-image {
    width: 50%;
}

.register .form-holder {
    width: 50%;
    /* max-width: 60rem; 
    margin: 1.7rem auto 0;*/
    padding: 112px 70px;
}

.left-img-inner {
    height: 100%;
}

.left-img-inner img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    object-position: right;
}

.register .input-group,
.errors {
    margin-bottom: 2rem;
    display: flex;
    /*justify-content: center;*/
}

.register .label-hidden {
    display: none;
}

.register input[type=email],
.register input[type=password],
.register input[type=tel],
.register input[type=text] {
    display: block;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    border: 0;
    font-size: .875rem;
    line-height: 1.5rem;
    letter-spacing: .2px;
    padding: 0;
    width: 100%;
    font-weight: 300;
    background-color: transparent;
    height: 2.5rem;
    box-shadow: unset;
    border-bottom: 1px solid var(--black);
}

.register .form-header {
    margin-bottom: 2.5rem;
}

.register .form-header h1 {
    text-align: center;
    /* font-size: 48px;
    line-height: 60px; */
    color: var(--black);
}

.register .btn--md,
.btn--submit {
    padding: 13px 50px;
    text-transform: uppercase;
    background-color: var(--mint);
    color: var(--black);
    border: 1px solid var(--mint);
    border-radius: 100px;
    cursor: pointer;
    font-size: 1rem;
    transition: 1s all;
}

.register .btn--md:hover,
.btn--submit:hover {
    background-color: var(--light-green);
    transition: 1s all;
    border-color: var(--light-green);
}

.register .form-footer {
    font-size: 14px;
    line-height: 17px;
    text-align: center;
}

.register .link.link--default {
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: underline;
    color: var(--black);
}

.forgot-password a {
    font-size: 14px;
    color: var(--black);
    text-decoration: underline;
    margin-bottom: 30px;
    display: inline-flex;
}

.button-cancle {
    text-align: center;
}

.btn--cancel {
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: underline;
    border: 0;
    box-shadow: unset;
    background-color: transparent;
}

.forgot-pwd h3 {
    color: var(--black);
    text-align: center;
    padding-bottom: 20px;
}

.forgot-pwd {
    display: none;
}

.form-login.show-forgot-pwd {
    display: none;
}

.form-login.show-forgot-pwd+.forgot-pwd {
    display: block;
}

/************************************************* Register Page End **************************************************/

/************************************************* my account Page End **************************************************/
.my-account-wrap {
    display: flex;
    border: 1px solid #81C8C6;
    background: #E9FBFA99;
    border-radius: 15px;
    padding: 40px;
}

.my-account-wrap .nav-tabs {
    display: inline-flex;
    flex-direction: column;
    width: 25%;
    gap: 10px;
    padding: 20px;
    height: fit-content;
    border-radius: 15px;
    background: #00BBB6;
    box-shadow: 0px 0px 20px 0px #AEAEAE26;
}

.my-account-wrap .nav-tabs button {
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    background-color: transparent !important;
    color: var(--white) !important;
    border: 0 !important;
    box-shadow: unset;
    position: relative;
    width: 100%;
    display: flex;
    border-radius: 5px;
    text-align: left;
}

.my-account-wrap .nav-tabs button:hover {
    background-color: var(--white) !important;
    color: var(--black) !important;
}

.dashboard-tab {
    width: 75%;
    padding-left: 40px;
}

.editButton {
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    background: inherit;
    border: none;
    margin: 0;
    padding: 0 0 8px;
    border-bottom: 1px solid var(--black) !important;
    cursor: pointer;
    margin-top: 16px;
    color: var(--black) !important;
}

.profile-inner form {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}
.profile-inner .input-group {
    width: 50%;
    padding: 0 20px;
    margin-bottom: 10px;
}

.profile-inner .input-group input {
    display: block;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    border: 0;
    font-size: .875rem;
    line-height: 1.5rem;
    letter-spacing: .2px;
    padding: 0;
    width: 100%;
    font-weight: 300;
    background-color: transparent;
    height: 2.5rem;
    box-shadow: unset;
    border-bottom: 1px solid var(--black);
}

.profile-inner .input-group label {
    display: none;
}


/************************************************* my account Page End **************************************************/

/************************************************* wishlist Page **************************************************/

.wishlist-table table thead {
    background: #9FE6E4;
    border-radius: 10px 0 0 0;
}

.wishlist-table table thead th {
    padding: 17px 15px;
    border-bottom: 0;
}

.wishlist-table th.product-thumbnail {
    border-right: 2px solid #81C8C6;
}

.wishlist-table {
    padding: 10px 0 50px;
}

.wishlist-table .table {
    background: #E9FBFA;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
}

.wishlist-table tr,
.wishlist-table td {
    padding: 10px !important;
    vertical-align: middle;
}
.wishlist-table .product-name > * {
    width: 100%;
    display:block;
}

.wishlist-table th.product-price {
    border-right: 2px solid #81C8C6;
}

.wishlist-table th.product-stock-status {
    border-right: 2px solid #81C8C6;
}

.wishlist-table thead {
    border-radius: 10px;
    overflow: hidden;
}

.wishlist-table tbody tr {
    border-bottom: 3px solid var(--white);
}

.wishlist-table .product-name a {
    font-family: 'Libre Caslon Text';
    font-size: 16px;
    font-weight: 600;
    line-height: 24.6px;
    color: #000000;
}

.wishlist-table .product-name span {
    font-family: 'Libre Caslon Text';
    font-size: 15px;
    font-weight: 500;
    line-height: 18.45px;
    color: #6A6A6A;
}

.wishlist-table .product-name span:last-child {
    font-size: 14px;
    font-weight: 600;
    line-height: 18.45px;
    color: #000000;
}

.product-thumbnail {
    width: 10%;
}

.product-order-size {
    /* padding-top: 5px; */
}

.product-order-ordinary,
.product-order-ordinary span {
    color: #6A6A6A !important;
}

.wishlist-table .product-thumbnail img {
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.wishlist-table td.product-price {
    font-family: 'Libre Caslon Text';
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    vertical-align: middle;
}

.wishlist-table .product-add-to-cart .btn-fill-out {
    border: 1px solid #81C8C6;
    border-radius: 35px;
    padding: 6px 27px 6px 27px;
    font-size: 16px;
    font-weight: 400;
    line-height: 38px;
}

.wishlist-table .product-remove {
    text-align: center;
}

.continue-btn {
    margin-top: 40px;
}

.continue-shopping {
    border: 3px solid #81C8C6;
    box-shadow: 3px 4px 25px 10px #AEAEAE1A;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--dark-blue);
    padding: 10px 25px;
    border-radius: 35px;
    display: inline-block;
}

.continue-shopping:hover {
    color: var(--dark-blue);
}

/************************************************* wishlist Page End **************************************************/

/************************************************* cart Page **************************************************/
.cart-row {
    display: flex;
    border: 1.5px solid #5B7078;
    border-radius: 15px;
    padding: 15px;
    justify-content: space-between;
    margin-bottom: 25px;
}

.cart-row-inner {
    display: flex;
    width: 100%;
}

.cart-img {
    max-width: 120px;
}

.cart-row-inner>div {
    flex: 1;
}

.cart-plus-minus {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cart-content {
    padding-top: 10px;
    padding-left: 15px;
}

.cart-content h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 24.6px;
    color: #000;
    padding-bottom: 0px;
}

.cart-sub {
    font-size: 12px;
    font-weight: 500;
    line-height: 18.45px;
    color: #6A6A6A;
    padding-bottom: 6px;
    display: inline-block;
}

.cart-size {
    font-size: 14px;
    font-weight: 600;
    line-height: 18.45px;
    color: #000;
    padding-bottom: 20px;
}

.cart-price {
    font-size: 18px;
    font-weight: 500;
    line-height: 30.75px;
    color: #000;
    padding-top: 5px;
    text-align: right;
}

.cart-img img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.sub-total {
    border: 1px solid #81C8C6;
    background-color: #E9FBFA80;
    padding: 13px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
}

.sub-total-price-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: var(--dark-blue);
}

.sub-total-price {
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    color: var(--dark-blue);
}

.cart-total {
   /* border: 1px solid var(--mint);
    border-radius: 15px;
    background-color: #E9FBFA99;
    padding: 30px;*/
    padding: 50px 0 80px 80px;
    height: 100%;
    height: 100%;
}

.coupon-code label {
    font-size: 18px;
    font-weight: 500;
    line-height: 29.52px;
    color: var(--dark-blue);
    padding-bottom: 15px;
}

.coupon_code {
    border: 1px solid #00BBB6;
    min-height: 50px;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 10px;
    padding: 0 20px;
}

.coupon-code .button {
    color: var(--white);
    background: #00BBB6;
    box-shadow: 0px 0px 20px 0px #AEAEAE26;
    border: 0;
    font-size: 16px;
    line-height: normal;
    padding: 0;
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
    text-align: center;
}

.coupon-code .button:before,
.coupon-code .button:after {
    display: none;
}

.cart-plus-minus .quantity {
    border: 1px solid var(--dark-blue);
    border-radius: 26px;
    padding: 5px 15px;
    max-width: 160px;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-plus-minus .minus {
    background-color: transparent;
    width: 16px;
    height: 16px;
    border: 2px solid var(--light-blue);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--light-blue);
    font-size: 21px;
}

.cart-plus-minus .input-box {
    border: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 23.37px;
    color: #000;
    padding: 0;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.cart-plus-minus .plus {
    background-color: transparent;
    width: 16px;
    height: 16px;
    border: 2px solid var(--light-blue);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--light-blue);
    font-size: 18px;
}

.cart-plus-minus input::-webkit-outer-spin-button,
.cart-plus-minus input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-sec-wrap .cart-sec-wrap-row {
    margin: 0 -25px;
}

.cart-sec-wrap .cart-sec-wrap-col,
.cart-sec-wrap .cart-sec-wrap-col {
    padding: 0 25px;
}

.basket-qualifies {
    border: 1px solid #81C8C6;
    background-color: rgba(255, 255, 255, 60%);
    border-radius: 15px;
    padding: 25px 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.basket-qualifies-inner span {
    font-size: 14px;
    font-weight: 500;
    line-height: 22.14px;
    color: var(--black);
}

.basket-qualifies-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.basket-qualifies .progress-area {
    width: 57%;
    background-color: rgba(0, 0, 0, 10%);
    border-radius: 10px;
    height: 8px;
}

.basket-qualifies .progress-bar {
    background-color: var(--mint);
    height: 8px;
    border-radius: 10px;
    /* width: 80% !important; */
}

.total-price-wrap .col-inner {
    border-top: 1px solid #00BBB666;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: var(--light-blue);
}

.total-price-wrap .total-price-display {
    border-bottom: 1px solid #00BBB666;
    color: var(--black);
    font-weight: 600;
}

.terms-inner {
    display: flex;
    margin-top: 30px;
    margin-bottom: 20px;
}

.terms-inner label {
    font-size: 14px;
    font-weight: 400;
    color: #5B738D;
    padding-left: 10px;
    width: 80%;
}

.terms-inner label a {
    font-weight: 600;
    color: #5B738D;
}

.terms-inner input {
    /* width: 6%; */
    width: 23px;
    height: 18px;
    margin-top: 0;
    cursor: pointer;
}

.button-process .checkout-btn {
    color: var(--white);
    background: #00BBB6;
    box-shadow: 0px 0px 20px 0px #AEAEAE26;
    border: 0;
    font-size: 16px;
    line-height: normal;
    padding: 0;
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
    text-align: center;
    display: inline-block;
    border-radius: 30px;
    margin-bottom: 12px;
}

.button-process .continue-shopping {
    width: 100%;
    border: 1px solid #5B738D;
    font-size: 16px;
    font-weight: 500;
    line-height: 27.06px;
    color: var(--dark-blue);
    text-align: center;
    padding: 10px 45px;
}

/************************************************* cart Page End **************************************************/

/************************************************* Checkout Page ******************************************************/
.cart-sec-wrap {
    padding-top: 10px;
}

.cart-sec-wrap h2 {
    margin-bottom: 30px;
}

.address-list li {
    border-radius: 15px;
    border: 1px solid #5B7078;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 40%);
    margin-bottom: 20px;
}

.address-list [type="radio"]:checked,
.address-list [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.address-list [type="radio"]:checked+label,
.address-list [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: inline-block;
}

.address-list [type="radio"]:checked+label:before,
.address-list [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    border: 3px solid #303F53;
    border-radius: 100%;
    background: #fff;
}

.address-list [type="radio"]:checked+label:after,
.address-list [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #303F53;
    position: absolute;
    top: 10px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.address-list [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.address-list [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.address-list li label {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: var(--dark-blue);
}

.address-list .payment_box {
    padding-left: 55px;
    padding-top: 15px;
    font-size: 18px;
    font-weight: 500;
    line-height: 34px;
    color: #5B738D;
}

.shipping-address-address .accordion-body {
    padding: 30px 0 0;
}

.shipping-address-address .accordion-item {
    border: 0;
}

.shipping-address-address .accordion-button {
    background: #E9FBFA80;
    box-shadow: unset;
    border: 1px solid #81C8C6;
    border-radius: 10px !important;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #303F53;
}

.shipping-address-address .form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.shipping-address-address .accordion-body ul li {
    font-size: 18px;
    font-weight: 600;
    line-height: 22.14px;
    color: var(--black);
    position: relative;
    padding-left: 35px;
    margin-bottom: 16px;
}

.shipping-address-address .accordion-body ul li::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--black);
    border-radius: 10px;
    left: 18px;
    top: 7px;
}

.shipping-address-address form label {
    display: none;
}

.shipping-address-address form .form-control {
    box-shadow: 0px 0px 20px 0px #AEAEAE26;
    border: 1px solid #3E3E4726;
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 400;
    line-height: 22.14px;
    color: rgba(91, 115, 141, 70%);
    margin-bottom: 15px;
}

.shipping-address-address .form-row .form-group {
    padding: 0 10px;
}

.checkout .btn-primary {
    box-shadow: 0px 0px 20px 0px #AEAEAE26;
    background: #00BBB6;
    border: 0;
    padding: 13px 35px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    line-height: 27.06px;
    margin-top: 20px;
}

.checkout .btn-primary:hover {
    background: #00BBB6;
}

.checkout .cart-total {
    height: auto;
}

.checkout .total-price-wrap {
    margin-top: 30px;
}

.shipping-address-address .accordion-button::after {
    background: url('/../assets/frontend/images/key-plus.svg');
    background-repeat: no-repeat;
    background-position: center;
    width: 25px;
    height: 30px;
    background-size: 20px !important;
}

.shipping-address-address .accordion-button:not(.collapsed)::after {
    background: url('/../assets/frontend/images/key-minus.svg');
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    background-size: 20px !important;
}

.shipping-address-address form .second-address label {
    display: block;
}

.second-address {
    display: flex;
    gap: 10px;
    margin: 25px 0;
}

/************************************************* Checkout Page End **************************************************/

/************************************************* Contact Us Page **************************************************/
.contact-us {
    margin: 20px 0;
    background-position: top left;
    background: linear-gradient(90deg, rgba(129, 200, 198, 10%) 50%, #FFF 50%);
    background-size: 100% 70%;
    background-repeat: no-repeat;
}

.contact-info {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--mint);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    background-color: #FFFFFF;
    padding: 40px;
    width: 90%;
}

.contact-us h3 {
    color: var(--black);
    padding-bottom: 5px;
}

.contact-us .icon-style svg {
    width: 25px;
    height: 25px;
}

.contact-us .contact-info-wrap>div {
    display: flex;
    gap: 10px;
    align-items: baseline;
    padding-top: 10px;
    padding-bottom: 5px;
}

.contact-us .address-desc-inner,
.contact-us .phone-number-desc-inner,
.contact-us .email-address-inner {
    display: flex;
    flex-wrap: wrap;
    max-width: 300px;
}
.contact-info-wrap h4 {
    font-size: 18px;
    line-height: 28px;
}

.contact-us .contact-info-wrap a {
    color: var(--light-blue);
}

.contact-us .contact-info-wrap a:hover {
    text-decoration: underline;
}

.contact-us .icon-style svg path {
    stroke: var(--mint);
}

.contact-us .get-in-touch {
    padding-left: 50px;
}

.contact-us .contact-us-form input,
.contact-us .contact-us-form textarea {
    box-shadow: 0px 0px 20px 0px #AEAEAE26;
    border: 1px solid #3E3E4726;
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.14px;
    color: rgba(91, 115, 141, 70%);
    margin-bottom: 15px;
    width: 100%;
}

.contact-us .contact-us-form button {
    box-shadow: 0px 0px 20px 0px #AEAEAE26;
    background: #00BBB6;
    border: 0;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    line-height: 27.06px;
    margin-top: 10px;
}

.contact-us .contact-us-form button:hover {
    background: #00BBB6;
}

.contact-us h2 {
    margin-bottom: 30px;
}

.contact-us .get-in-touch-desc {
    padding-bottom: 25px;
}
.contact-us h2 {
    margin-bottom: 20px;
}

.contact-us .contact-us-form label {
    display: none;
}

.contact-us .phone-number-desc {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding-top: 5px;
}

.contact-us .email-address {
    display: flex;
    flex-wrap: wrap;
    padding-top: 5px;
    gap: 5px;
}

.contact-us .address-desc {
    padding-top: 5px;
    font-size: 14px;
}

/************************************************* Contact Us Page End **************************************************/

/************************************************* My Orders Page **************************************************/
.my-orders .product-status-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.my-orders .button-status {
    border: 1px solid var(--mint);
    background-color: var(--mint);
    font-size: 14px;
    font-weight: 600;
    line-height: 38px;
    color: var(--white);
    border-radius: 35px;
    display: block;
    padding: 2px 35px;
    margin-bottom: 10px;
}

.my-orders .product-status-col span {
    font-size: 12px;
    font-weight: 400;
    line-height: 38px;
}

.my-orders .button-status:hover {
    color: var(--white);
}

.my-orders .product-add-to-cart {
    text-align: center;
}

/************************************************* My Orders Page End **************************************************/

/************************************************* Compeletd Orders Page  **************************************************/
.compelted-order-inner {
    display: flex;
    /* align-items: center; */
    padding-bottom: 30px;
    border-bottom: 1px solid #5B738D;
    margin-bottom: 20px;
}

.compelted-order-left {
    width: 68%;
}

.compelted-order-left-wrap .compelted-order-img {
    flex: 0 0 100px;
}

.compelted-order-img img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 15px;
    overflow: hidden;
}

.compelted-order-left-wrap {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #5B738D;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.compelted-order-left-wrap:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.compelted-order-left-wrap>div {
    flex: 1;
}

.compelted-order-name {
    padding-left: 20px;
}
  
.compelted-order {
    padding-top: 20px;
}
.compelted-order-product {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: var(--dark-blue);
    padding-bottom: 0;
}

.table-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 24.6px;
    color: var(--light-blue);
}

.compelted-order-deatil tr td {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}

.compelted-order-deatil tr {
    margin: 5px 0;
    display: block;
}

.compelted-order-deatil .tab-list td:last-child {
    color: var(--dark-blue);
    font-weight: 500;
}

.compelted-order-price {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: var(--dark-blue);
    text-align: right;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
}
.compelted-order-price span {
    font-size: 14px;
    font-weight: 500;
    line-height: 22.14px;
    color: var(--light-blue);
    text-transform: capitalize;
}

.compelted-order-right {
    width: 32%;
    padding-left: 20px;
    margin-left: 20px;
    padding-top: 15px;
    border-left: 1px solid #5B738D;
    padding-bottom: 58px;
}

.compelted-order-address h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 29.52px;
    color: var(--dark-blue);
    padding-bottom: 10px;
}

.compelted-order-address div {
    font-size: 16px;
    font-weight: 500;
    line-height: 34px;
    color: #5B738D;
}

.order-summary h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 29.52px;
    color: #303F53;
    padding-bottom: 20px;
}

.order-summary-inner {
    display: flex;
    justify-content: space-between;
}

.order-summary-inner tr td {
    font-size: 16px;
    font-weight: 500;
    line-height: 22.14px;
    color: #5B738D;
}

.order-summary-inner tr td:last-child {
    padding-left: 47px;
    color: #303F53;
    font-weight: 600;
}

.order-summary-inner tr td {
    padding-bottom: 10px;
}

.order-price {
    font-family: 'Libre Caslon Text';
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #303F53;
}

.mint-style {
    color: #22A9A5 !important;
}

/************************************************* Compeletd Orders Page End **************************************************/

.white-popup-block {
    background: #FFF;
    padding: 20px 30px;
    text-align: left;
    max-width: 500px;
    margin: 40px auto;
    border-radius: 25px;
    position: relative;
}

.popup-form-custom h1 {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    padding: 15px;
}

.popup-form-custom input {
    display: block;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    border: 0;
    border-bottom-width: 0px;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    font-size: .875rem;
    line-height: 1.5rem;
    letter-spacing: .2px;
    padding: 0;
    width: 100%;
    font-weight: 300;
    background-color: transparent;
    height: 2.5rem;
    box-shadow: unset;
    border-bottom: 1px solid var(--black);
}

.popup-form-custom .label-hidden {
    display: none;
}

.popup-form-custom .btn {
    padding: 13px 50px;
    text-transform: uppercase;
    background-color: var(--mint);
    color: var(--black);
    border: 1px solid var(--mint);
    border-radius: 100px;
    cursor: pointer;
    font-size: 1rem;
    transition: 1s all;
    height: auto;
}

.popup-form-custom .btn:hover {
    background-color: var(--light-green);
    transition: 1s all;
    border-color: var(--light-green);
}

.popup-form-custom .input-group {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.popup-form-custom .form-footer.text--center {
    font-size: 14px;
    line-height: 17px;
    text-align: center;
}

.popup-form-custom .form-footer a {
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: underline;
    color: var(--black);
}
.return-button-status {
    border: 1px solid var(--mint);
    background-color: var(--mint);
    font-size: 14px;
    font-weight: 600;
    line-height: 38px;
    color: var(--white);
    border-radius: 35px;
    display: inline-block;
    padding: 2px 35px;
    margin-top: 20px;
}
.my-account {
    padding-top: 10px;
}
.shop-detail-page .skincare-simplified-inner-row {
    margin-bottom: 0;
}

.checkout-wrap {
    padding: 0 0 40px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .checkout-wrap #checkout-bar {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    float: left;
    clear: both;
  }
  
  .checkout-wrap #checkout-bar li {
    position: relative;
    width: 25%;
    float: left;
    text-align: center;
    color: #999;
    text-transform: uppercase;
  }
  
  .checkout-wrap #checkout-bar li:after {
    position: relative;
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    top: 2.5px;
    left: 0%;
    border: 2px solid #ddd;
    background-color: #fff;
    border-radius: 100%;
    z-index: 4;
  }
  
  .checkout-wrap #checkout-bar.step1 .step1:after,
  .checkout-wrap #checkout-bar.step2 .step2:after,
  .checkout-wrap #checkout-bar.step3 .step3:after,
  .checkout-wrap #checkout-bar.step4 .step4:after {
    background-color: var(--mint);
    -webkit-transition: width 2s;
    /* Safari */
    transition: all 3s;
  }
  
  .checkout-wrap #checkout-bar li span {
    position: relative;
    display: block;
    left: 0%;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--dark-blue);
}
  
  .checkout-wrap #checkout-bar:before,
  .checkout-wrap #checkout-bar:after {
    position: absolute;
    content: "";
    top: 50%;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    margin: auto 0;
    background-color: #c3c3c3;
    z-index: 1;
  }
  
  .checkout-wrap #checkout-bar.step1:after,
  .checkout-wrap #checkout-bar.step2:after,
  .checkout-wrap #checkout-bar.step3:after,
  .checkout-wrap #checkout-bar.step4:after {
    width: 12%;
    background-color: var(--mint);
    z-index: 2;
    -webkit-transition: width 2s;
    /* Safari */
    transition: width 2s;
  }
  
  .checkout-wrap #checkout-bar.step2:after {
    width: 38%;
  }
  
  .checkout-wrap #checkout-bar.step3:after {
    width: 75%;
  }
  
  .checkout-wrap #checkout-bar.step4:after {
    width: 100%;
  }
  
  .checkout-wrap button {
    border: none;
    background: none;
  }
  
  .checkout-wrap .btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
  }
  
  .compelted-order .btn-success {
    display: block;
    margin: 0 auto 30px;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--mint) !important;
    border-color: var(--mint) !important;
    box-shadow: unset;
  }
  
  .compelted-order .btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439;
  }
  
  .checkout-wrap .btn.focus,
  .checkout-wrap .btn:focus,
  .checkout-wrap .btn:hover {
    color: #fff;
    text-decoration: none;
  }
  
  .checkout-wrap .space {
    width: 100%;
    float: left;
    clear: both;
    height: 50px;
  }

  .shop-by-concern {
    padding-top: 50px;
  }


/*11-06-24*/
.the-transformation .slider-image img { width: 70px; height: 70px; border-radius: 10px; object-fit: cover; }
.filter-button { box-shadow: 2.24px 2.99px 18.7px 7.48px #AEAEAE1A; padding: 8px 30px; background-color: var(--black); color: var(--white); border: 1px solid var(--black); text-transform: capitalize; }
.filter-button:hover { background-color: transparent; border: 1px solid var(--black); }
.range-details { padding-top: 15px; }
.verify-account-form .submit-btn { background-color: rgba(129, 200, 198, 50%); font-family: 'Libre Caslon Text'; font-size: 18px; font-weight: 400; line-height: 28px; color: var(--dark-blue); padding: 10px 30px; display: inline-block; border-radius: 35px; border: 1px solid rgba(129, 200, 198, 50%); margin-top: 15px; }
.verify-account-form .form-control { box-shadow: 0px 0px 20px 0px #AEAEAE26; border: 1px solid #3E3E4726; padding: 20px 30px; border-radius: 8px; font-size: 16px; font-weight: 400; line-height: 22.14px; color: rgba(91, 115, 141, 70%); margin-bottom: 15px; width: 100%; }
.verify-account-form .alert-warning { background-color: #ff0000b0; color: #ffff; padding: 10px; font-size: 14px; line-height: 24px; display: flex; justify-content: space-between; align-items: center; }
.verify-account-form { border-style: solid; border-width: 1px 1px 1px 1px; border-color: var(--mint); transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s; background-color: #FFFFFF; padding: 40px; }
.verify-account-form .btn-wrapper { text-align: center; }
.verify-account-form .submit-btn:hover { background-color: transparent; }
.send-verify-code a { color: var(--light-blue); }
.support-ticket-wrapper .form-control { box-shadow: 0px 0px 20px 0px #AEAEAE26; border: 1px solid #3E3E4726; padding: 20px 30px; border-radius: 8px; font-size: 16px; font-weight: 400; line-height: 22.14px; color: rgba(91, 115, 141, 70%); margin-bottom: 15px; width: 100%; }
.support-ticket-wrapper label { display: none; }
.support-ticket-wrapper .title { font-family: 'Libre Caslon Text'; font-size: 26px; font-weight: 600; line-height: 36px; text-align: left; color: var(--black); margin: 0 0 10px; }
.support-ticket-wrapper { padding: 50px 0; }
.support-ticket-wrapper .default-theme-btn { box-shadow: 0px 0px 20px 0px #AEAEAE26; background: #00BBB6; border: 0; padding: 12px 40px; border-radius: 30px; font-size: 18px; font-weight: 500; line-height: 27.06px; margin-top: 10px; color: #ffff; }
.product-slider-for .slick-slide { height: auto; }
.product-acordion .accordion-item a:hover { color: #212529; }
.cart-sec-wrap-row .alert-danger .btn-close { position: absolute; right: 10px; }
.cart-sec-wrap-row .alert-danger.alert-danger { margin-bottom: 50px; }
.active-sidebar .submenu-child { padding-left: 15px; padding-right: 15px; }
.active-sidebar .submenu-child .submenu-child { padding: 10px; }
.support_ticket_btn { box-shadow: 2.24px 2.99px 18.7px 7.48px #AEAEAE1A; padding: 10px 25px; background-color: var(--black); border-radius: 26px; color: var(--white); text-transform: capitalize; display: inline-block; border: 1px solid var(--black); margin-bottom: 25px; }
.support_ticket_btn:hover{border: 1px solid var(--black); background-color: var(--black); color: var(--white);}
.btn-wrapper.button-wrapper { width: 100%; margin: 20px; }
.btn-wrapper.button-wrapper button { box-shadow: 2.24px 2.99px 18.7px 7.48px #AEAEAE1A; padding: 10px 25px; background-color: var(--black); border-radius: 26px; color: var(--white) !important; text-transform: capitalize; display: inline-block; border: 1px solid var(--black); margin-bottom: 25px; }

/*12-06-24*/
.cart-list-wrap {
    padding-right: 50px;
}
.add-cart-icon {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}
.cart-price-icon svg path {
    fill: unset;
}
.add-cart-icon .cart-icon-inner {
    border: 2px solid var(--mint);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-right-bg {
    position: relative !important;
}
.custom-right-bg::after {
    content: '';
    position: absolute;
    background: #E9FBFA99;
    display: block;
    width: 300%;
    z-index: -1;
    left: 0;
    top: 0;
    bottom: 0;
}
.cart-sec-wrap {
    padding-top: 0px;
    padding-bottom: 0;
    overflow: hidden;
}
.complete-routine {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.complete-routine h5 {
    background-color: #fff;
    padding: 10px 15px;
    font-size: 16px;
}
.complete-routine::after {
    content: '';
    background-color: rgba(0, 0, 0, 0.31);
    height: 1px;
    width: 100%;
    position: absolute;
    top: 40%;
    z-index: -1;
    display: block;
}

/*13-06-24*/
.iti.iti--allow-dropdown {
    width: 100%;
}
.flatpickr-current-month{
    font-size: 100%;
}

/* responsive */

@media(min-width:782px) {
    .user-login.mobile-user-profile .user-login-inner {
        display: none;
    }

    .user-login.mobile-user-profile {
        justify-content: flex-end;
    }

    .language.mobile {
        display: none;
    }

}

@media(min-width:1300px) {
    .widget-search .form-group {
        width: 310px;
    }

    .product-img-box {
        /* width: 280px;
        height: 330px; */
        border-radius: 10px;
        overflow: hidden;
    }

    .related-product-list .slick-list {
        padding-left: 600px !important;
    }
}

@media(max-width:1440px) {
    .container {
        max-width: 1240px;
    }

    .site-logo {
        width: 33.33%;
    }

    .navbar-header {
        width: 33.33%;
    }

    .banner-image {
        margin: 0 20px;
    }

    .breadcrumb-nav a,
    .breadcrumb-nav li {
        font-size: 16px;
        line-height: 24px;
    }

    .terms-inner label {
        width: 80%;
    }
}

@media(max-width:1300px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .banner-section-video-inner,
    .banner-section-video video {
        height: 640px;
    }

    .categories-products-left {
        width: 35%;
    }

    .categories-products-right {
        width: 65%;
        justify-content: flex-end;
    }

    .top-categories-products {
        padding-top: 100px;
    }

    .categories-products-left-item {
        margin-right: 5px;
    }

    .right-list-product-col {
        padding: 0 15px;
    }

    .right-list-products {
        margin-left: -15px;
        margin-right: -15px;
    }

    .shop-listing-wrap .col-lg-9 {
        padding-left: 20px;
    }

    .shop-detail-page .skincare-simplified-inner-image {
        height: 100%;
        width: 100%;
    }

    .shop-detail-page .skincare-simplified-inner-row {
        gap: 50px;
    }

    .how-to-use-desc p,
    .when-to-use-desc p {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 15px;
        padding-right: 25px;
    }

    legend span {
        font-size: 16px;
    }

    .select-size li a {
        font-size: 16px;
    }

    .price-dispaly .quantity-input {
        font-size: 20px;
        line-height: 30px;
    }

    .add-to-cart-wrap .buy-now {
        font-size: 18px;
        padding: 10px 30px;
        line-height: normal;
        display: flex;
        align-items: center;
    }

    .add-to-cart-wrap .add-to-cart {
        padding: 10px 60px 10px 20px;
        font-size: 18px;
        line-height: 28px;
    }

    .product-acordion .accordion-button {
        font-size: 20px;
    }

    .product-acordion .accordion-body {
        font-size: 16px;
        line-height: 26px;
    }

    .tab-scroll>a {
        font-size: 20px;
    }

}

@media(max-width:1199px) {
    .small-title-head {
        width: 65%;
        justify-content: flex-end;
    }

    .publishing-desing-inner {
        max-width: 500px;
    }

    .small-title-head {
        padding-left: 30px;
    }


    .categories-products-left {
        width: 30%;
    }

    .categories-products-left-item {
        height: 520px;
    }

    .right-list-product-col {
        height: 280px;
        padding: 0 15px;
    }

    .right-list-products {
        margin-left: -15px;
        margin-right: -15px;
    }

    .top-categories-products-list {
        flex-wrap: wrap;
        gap: 20px;
    }

    .categories-products-left {
        width: 100%;
    }

    .categories-products-left-item {
        height: 300px;
    }

    .categories-products-right {
        width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 15px;
    }

    .categories-products-right-item {
        width: 49%;
    }

    .categories-products-right-item .categories-products-image {
        width: 100%;
    }

    .shop-by-concern .slick-prev {
        right: 150px;
    }

    .shop-by-concern .slick-next {
        right: 50px;
    }

    .search-and-cart {
        gap: 10px;
    }

    .mobile-desc {
        display: block;
        padding: 30px;
        order: 3;
    }

    .mobile-desc,
    .mobile-desc h2 {
        text-align: center;
    }

    .when-to-use {
        flex-direction: column;
        box-shadow: 3px 4px 25px 0px #AEAEAE40;
        border-radius: 20px;
    }

    .how-to-use-desc,
    .when-to-use-desc {
        display: none;
        position: static;
    }

    .when-to-use-bg {
        display: flex;
        flex-direction: column;
        padding: 0;
        margin-top: 0;
        height: auto;
    }

    .when-to-use-btn {
        max-width: 275px;
        writing-mode: unset;
        padding: 12px 40px 12px 20px;
        margin: 0 auto;
        order: 2;
        position: relative;
        margin-top: 15px;
        pointer-events: none;
        font-size: 20px;
        line-height: 30px;
        left: 0;
        transform: rotate(0deg);
        bottom: 50px;
    }

    .when-to-use-bg img {
        object-fit: cover;
        order: 1;
        max-height: 350px;
        width: 100%;
    }
    .related-product-list .slick-prev.slick-arrow{
            right: 100px;
    }
    .related-product-list .slick-next.slick-arrow{
        right: 20px;
    }

    .how-to-use-image {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .how-to-use-image img {
        width: 100%;
        z-index: -1;
        position: relative;
    }

    .how-to-use-btn {
        position: relative;
        max-width: 220px;
        display: block;
        margin: 0 auto;
        margin-top: -60px;
        pointer-events: none;
        left: 0;
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 30px;
        padding: 16px 20px 16px 30px;
    }

    .how-to-use-image .mobile-desc h2 {
        text-align: center;
    }

    .how-to-use-btn::after {

        right: 30px;

    }

    .when-to-use-btn::after {
        right: 10px;
        top: 16px;
        transform: rotate(270deg);
    }

    .when-to-use-bg .mobile-desc {
        padding-top: 0;
        margin-top: -20px;
    }

    .product-slider-nav .slick-track {
        display: flex;
    }

    .wishlist-table .product-name a {
        font-size: 18px;
    }

    .wishlist-table td.product-price {
        font-size: 18px;
    }

    .continue-shopping {
        padding: 10px 30px;

    }

    .wishlist-table .product-add-to-cart .btn-fill-out {
        font-size: 14px;
        line-height: 24px;
        padding: 5px 15px;
    }

    .cart-sec-wrap .cart-sec-wrap-col,
    .cart-sec-wrap .cart-sec-wrap-col {
        padding: 0 15px;
    }

    .cart-sec-wrap .cart-sec-wrap-row {
        margin: 0;
    }

    .basket-qualifies-inner span {
        font-size: 16px;
    }

    .basket-qualifies-inner {
        gap: 8px;
    }

    .product-image-box-content-inner {
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
    }

    .product-image-box-content-inner-hover {
        width: 80%;
        margin: 0 auto;
    }

    .button-process .continue-shopping {
        font-size: 16px;
    }

    .button-process .checkout-btn {
        font-size: 16px;
    }

    .coupon-code .button {
        font-size: 16px;
    }

    .basket-qualifies {
        padding: 20px 15px;
        text-align: center;
    }

    .cart-total {
        padding: 25px 20px;
    }

    .register .form-holder {
        padding: 100px 50px;
    }

}

@media(max-width:991px) {

    .publishing-desing-inner {
        max-width: 400px;
    }

    .button {
        padding: 10px 25px;
        font-size: 20px;
        line-height: 30px;
    }
    .right-list-product-inner-hover .hot-product-title p {
        font-size: 16px;
        line-height: 26px;
    }
    .categories-products-title p {
        font-size: 16px;
    }
    
    .shop-by-concern-image h5 {
        font-size: 22px;
        line-height: 32px;
    }
    .review-slider-content-inner {
        font-size: 18px;
      }
    .hot-right-now {
        padding: 50px 0;
    }

    .top-categories-products {
        padding-bottom: 60px;
    }

    .right-list-product-col {
        height: 100%;
    }

    .right-list-product-inner-hover .right-list-product-image {
        display: block;
    }

    .right-list-product-col {
        min-height: 100%;
    }

    .pd-80 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .our-official-partners {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .sign-up h3 {
        padding-bottom: 10px;
    }

    .sign-up .sign-up-wrap-border {
        padding: 30px 80px;
    }

    .footer-desc {
        font-size: 16px;
        line-height: 26px;
    }

    .quick-link {
        font-size: 22px;
        line-height: 32px;
    }

    .footer-quick ul li a {
        font-size: 16px;
        line-height: 28px;
    }

    .social-media-links ul li a svg {
        width: 18px;
        height: 18px;
    }

    .shop-by-concern-wrap .slick-list {
        margin: 0;
    }

    .toolbox-wrapper {
        margin-top: 30px;
    }

    .toolbox-right {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
    }

    .set_item_sort_by {
        padding: 10px 30px 10px 10px;
        width: 100%;
    }

    .shop-listing-wrap .col-lg-9 {
        padding-left: 15px;
    }

    #set_item_to_show {
        width: 100%;
        padding: 10px;
        background-position: 95% 50%;
    }

    .toolbox-item.toolbox-show {
        width: 100%;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .pg-circle .previous {
        position: static;
        margin-right: 20px;
    }

    .page-item.next {
        position: static;
    }

    .pagination li {
        margin-bottom: 10px;
    }

    .pagination-default {
        padding: 15px 10px 10px;
        max-width: 90%;
        margin: 0 auto;
    }

    .toolbox-item.toolbox-sort {
        padding-left: 0;
        width: 100%;
    }

    .single-collection-item .product-image-box-content-inner {
        display: none;
    }

    .product-image-box-content-inner-hover {
        visibility: visible;
        opacity: 1;
    }

    .single-collection-item .add-to-products {
        visibility: visible;
        opacity: 1;
        transform: scale(1);
        bottom: 50px !important;
    }

    .widget-search .form-btn-1 {
        right: 15px;
        bottom: 13px;
    }

    .widget-search .form-group input {
        font-size: 16px;
    }

    .widget-title {
        font-size: 18px;
    }

    .key-ingredients-right {
        padding-left: 0;
    }

    .key-ingredients-left {
        padding-right: 0;
    }

    .key-ingredients-detail p {
        font-size: 18px;
        line-height: 28px;
    }

    .key-ingredients .accordion-button {
        font-size: 24px;
        line-height: 34px;
    }

    .key-ingredients .accordion-body {
        font-size: 16px;
        line-height: 26px;
    }

    .continue-btn {
        margin-top: 20px;
    }

    .continue-shopping {
        font-size: 18px;
        line-height: 28px;
        padding: 7px 20px;
    }

    .wishlist-table tr,
    .wishlist-table td {
        padding: 7px !important;
    }

    .wishlist-table .product-name a {
        font-size: 16px;
    }

    .wishlist-table .product-name span {
        font-size: 14px;
        line-height: 24px;
    }

    .wishlist-table .product-name span:last-child {
        font-size: 14px;
        line-height: 24px;
    }

    .wishlist-table td.product-price {
        font-size: 16px;
        line-height: 26px;
    }

    .wishlist-table .product-thumbnail img {
        height: 150px;
    }

    .wishlist-table table thead th {
        padding: 10px 15px;
    }

    .cart-list-wrap {
        margin-bottom: 50px;
    }

    .terms-inner input {
        width: 1em;
    }

    .address-list li label {
        font-size: 18px;
        line-height: normal;
    }

    .address-list [type="radio"]:checked+label:before,
    .address-list [type="radio"]:not(:checked)+label:before {
        top: 0;
    }

    .address-list [type="radio"]:checked+label:after,
    .address-list [type="radio"]:not(:checked)+label:after {
        width: 10px;
        height: 10px;
        top: 5px;
    }

    .address-list [type="radio"]:checked+label,
    .address-list [type="radio"]:not(:checked)+label {
        padding-left: 35px;
    }

    .address-list li {
        padding: 15px 20px;
    }

    .address-list .payment_box {
        padding-left: 30px;
        padding-top: 5px;
    }

    .shipping-address-address .accordion-button {
        font-size: 18px;
    }

    .shipping-address-address {
        margin-bottom: 30px;
    }

    .shipping-address-address .accordion-body {
        padding: 20px 0 0;
    }

    .shipping-address-address .accordion-body ul li {
        font-size: 16px;
        line-height: normal;
    }

    .shipping-address-address form .form-control {
        padding: 15px;
        font-size: 16px;
        line-height: normal;
    }

    .checkout .btn-primary {
        margin-top: 5px;
        font-size: 20px;
        line-height: normal;
        padding: 10px 30px;
    }

    .contact-us {
        background: linear-gradient(180deg, rgba(129, 200, 198, 10%) 50%, #FFF 50%);
        background-size: 100% 73%;
        background-repeat: no-repeat;
    }

    .contact-us .get-in-touch {
        padding-left: 0;
        padding-top: 50px;
    }

    .contact-info {
        width: 100%;
        padding: 20px;
    }

    .compelted-order-inner {
        flex-wrap: wrap;
    }

    .compelted-order-left {
        width: 100%;
    }

    .compelted-order-right {
        width: 100%;
        border-top: 1px solid #5B738D;
        border-left: 0;
        padding-left: 0;
        margin-top: 50px;
        padding-bottom: 0;
        padding-top: 30px;
    }

    .wishlist-table .table {
        table-layout: fixed;
        width: 100%;
    }
    .cart-total {
        border: 1px solid var(--mint);
        border-radius: 15px;
        background-color: #E9FBFA99;
    }
    .cart-list-wrap{padding-right: 0;}
    .custom-right-bg::after{display: none;}
}

@media(max-width:781px) {

    .button{
        font-size: 18px;
    line-height: normal;
    }
    .categories-products-left-item .categories-products-title p, .categories-products-right-item .categories-products-title p{
        font-size: 14px !important;
    }
    
    .small-title {
        font-size: 18px;
        line-height: normal;
    }

    .language.mobile {
        display: block;
    }

    .categories-products-right-item {
        width: 100%;
    }

    .right-list-product-col {
        width: 100%;
        margin-bottom: 15px;
    }

    .right-list-products {
        flex-wrap: wrap;
        margin: 0;
    }

    .right-list-product-inner .right-list-product-image {
        width: 100%;
        height: 400px;
    }

    .right-list-product-image img {
        object-fit: cover;
    }

    .right-list-product-col {
        padding: 0;
    }

    .right-list-product-inner-hover {
        width: 100%;
    }

    .skincare-simplified-inner-image {
        width: 400px;
        height: 250px;
    }

    .skincare-simplified-content {
        padding-left: 20px;
    }

    .the-transformation .main {
        flex-wrap: wrap;
    }

    .the-transformation .slider-for {
        width: 100%;
    }

    .the-transformation .slider-nav {
        width: 100%;
        margin-top: 30px;
    }

    .the-transformation .slick-next {
        transform: rotate(270deg);
        left: 50%;
        bottom: -30px;
        top: auto;
    }

    .the-transformation .slick-prev {
        top: auto;
        bottom: -35px;
        transform: rotate(90deg);
    }

    .use-products-inner {
        flex-wrap: wrap;
    }

    .the-transformation .review-slider-main {
        margin-right: 0;
        flex-wrap: wrap;
    }

    .the-transformation .review-slider-content {
        padding-left: 0;
        padding-top: 20px;
    }

    .small-title-head {
        position: static;
        color: inherit;
        padding-left: 0;
    }

    .top-categories-products-wrap {
        flex-wrap: wrap;
        gap: 25px;
    }

    .shop-by-concern-image h5 {
        font-size: 22px;
        line-height: 32px;
    }

    .shop-by-concern-col {
        padding: 0 15px;
    }

    .skincare-simplified-inner-row {
        flex-wrap: wrap;
        gap: 30px;
    }

    .skincare-simplified-inner-left {
        width: 100%;
    }

    .skincare-simplified-inner-right {
        width: 100%;
    }

    .sign-up .sign-up-wrap-border {
        padding: 20px;
    }

    .content.form-subscribe {
        width: 100%;
    }

    .sign-up .subscription .add-email {
        padding: 20px;
    }

    .sign-up .subscription .submit-email {
        width: 150px;
        padding: 15px !important;
    }

    .sign-up .subscription .submit-email .before-submit {
        font-size: 16px;
        line-height: 22px;
    }

    .footer-logo-inner {
        flex-wrap: wrap;
        padding: 0;
    }

    .footer-desc {
        padding: 10px 0 10px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-quick {
        width: 100%;
    }

    .footer-copyright {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .review-slider-content-inner {
        padding-top: 15px;
    }

    .right-list-product-inner-hover .hot-product-title p {
        font-size: 16px;
        line-height: 26px;
    }

    .hot-product-inner {
        flex-wrap: wrap;
    }

    .the-transformation .review-slider-main {
        padding-left: 19px;
        padding-right: 15px;
    }

    .use-products-inner-title {
        font-size: 16px;
        line-height: 26px;
        padding: 10px;
    }

    .use-products-inner {
        gap: 15px;
    }

    .use-products {
        padding: 0;
    }

    .use-products-inner-cat-list ul {
        gap: 8px;
    }

    .publishing-desing-inner {
        max-width: 100%;
        margin: 0 15px;
        left: 0;
    }

    .the-transformation .slider-image {
        justify-content: center;
        display: flex !important;
    }

    .sign-up h3 {
        font-size: 24px;
        line-height: 34px;
    }

    .sign-up .sign-up-content p {
        font-size: 18px;
        line-height: 28px;
    }

    .transformer-tabs a {
        font-size: 14px;
        line-height: 24px;
        padding: 0 5px;
    }

    .transformer-tabs ul {
        /* overflow-y: auto;
        width: 500px; */
    }

    .skincare-simplified-content {
        padding-left: 0;
    }

    .skincare-title-right-title {
        text-align: center;
    }

    .skincare-simplified-inner-right , .skincare-simplified-inner-left{
        text-align: center;
    }

    /* .search-and-cart-inner {
        display: none;
    }

    .whislis-icon {
        display: none;
    } */
    .user-login {
        display: none;
    }

    .navbar-menu {
        display: none;
    }

    .site-logo {
        width: auto;
    }

    .navbar-header.d-flex {
        width: auto;
    }

    .shop-by-concern .slick-arrow {
        width: 35px;
        height: 35px;
        background-size: 50%;
    }

    .navbar-sub {
        width: 70%;
        padding-top: 10px;
    }

    .animated-plus::before {
        width: 15px;
        height: 2px;
    }

    .animated-plus::after {
        width: 2px;
        height: 16px;
    }

    .animated-plus::before,
    .animated-plus::after {

        transform: translate(-50%, -55%) rotate(-90deg);

    }

    .mainmenu>li a {
        font-size: 16px;
        line-height: 26px;
    }
    .mainmenu > li .submenu-child li a {
        font-size: 14px;
        line-height: 24px;
    }
    .active-sidebar .submenu-child {
        padding-left: 0;
        padding-top: 10px;
    }

    .categories-products-title-inner {
        position: static;
        background: var(--black);
        border-radius: 0 0 20px 20px;
    }

    .button-div {
        position: static;
        margin-top: 20px;
    }

    .button-circle {
        opacity: 1;
        visibility: visible;
    }

    .categories-products-left-item::before,
    .categories-products-right-item::before {
        display: none;
    }

    .categories-products-title {
        width: 100%;
    }

    .categories-products-left-item h3,
    .categories-products-right-item h3 {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .categories-products-left-item .button-circle,
    .categories-products-right-item .button-circle {
        width: 40px !important;
        height: 40px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .categories-products-left-item .categories-products-title {
        width: auto !important;
    }

    .button-circle img {
        width: 12px;
        height: 14px;
    }

    .categories-products-left-item .categories-products-title p,
    .categories-products-right-item .categories-products-title p {
        font-size: 16px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .categories-products-image {
        border-radius: 20px 20px 0 0;
    }

    .categories-products-right-item .button-circle {
        opacity: 1 !important;
        visibility: visible !important;
        width: 40px !important;
        height: 40px !important;
    }

    .categories-products-left-item {
        /* height: auto; */
        display: flex;
        flex-direction: column;
    }
    
    .the-transformation .slick-arrow {
        width: 50px;
        height: 30px;
        background-size: 16px;
    }

    .the-transformation .slick-next {
        left: auto;
        right: 0;
    }

    .the-transformation .main {
        flex-direction: column-reverse;
    }

    .the-transformation .slider-nav {
        margin-bottom: 80px;
    }

    .reivew-slider-image {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .related-product-list-inner .cart-icon-inner {
        transform: scale(1) !important;
        width: 40px !important;
        height: 40px !important;
        top: 15px !important;
        right: 15px !important;
    }

    .related-product-list-inner .cart-icon-inner svg {
        width: 18px;
        height: 18px;
    }

    .related-product-list-price {
        background-color: var(--mint) !important;
        border-color: var(--mint) !important;
        padding: 10px;
        font-size: 16px;
        height: auto;
        border-radius: 50px;
    }

    .shop-detail-page .skincare-simplified-inner-image {
        height: 100%;
        width: 100%;
    }

    .cart-price {
        font-size: 18px;
        line-height: 28px;
    }

    .cart-content h3 {
        font-size: 18px;
    }

    .cart-sub {
        font-size: 14px;
    }

    .cart-content {
        padding-left: 10px;
    }

    .cart-row {
        padding: 15px;
    }

    .cart-plus-minus .quantity {
        width: 130px;
    }

    .shipping-address-address .form-row .form-group {
        width: 50%;
    }

    .email-address {
        flex-wrap: nowrap;
    }

    .contact-us .contact-info-wrap>div {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .contact-us .address-desc {
        font-size: 16px;
        line-height: 33px;
    }

    .contact-us .contact-info-wrap a {
        font-size: 16px;
        line-height: 36px;
    }

    .my-account-wrap .nav-tabs {
        width: 100%;
    }

    .my-account-wrap {
        flex-wrap: wrap;
        padding: 30px 20px;
    }

    .dashboard-tab {
        width: 100%;
        padding: 20px;
    }

    .order-summary-inner {
        flex-wrap: wrap;
    }

    .order-summary-inner>div {
        width: 50%;
    }

    .order-price {
        padding-top: 10px;
        font-size: 22px;
    }

    .order-summary-inner tr td {
        font-size: 16px;
    }

    .compelted-order-address div {
        font-size: 16px;
    }

    .landingimage .mobile-img-d {
        height: auto;
    }

    .product-image-box-content-inner-hover {
        width: 100%;
        margin: 0 auto;
    }

    .breadcrumb-nav {
        padding-top: 25px;
    }

    .register {
        flex-wrap: wrap;
    }

    .register-left-image {
        width: 100%;
    }

    .register .form-holder {
        width: 100%;
        padding: 20px;
    }
    .cart-sec-wrap-row .alert-danger .btn-close {
        position: absolute;
        right: 2px;
        top: 5px;
    }
    .cart-sec-wrap-row .alert-danger ul {
        padding-right: 10px;
    }

}

@media(max-width:480px) {
    .site-logo {
        padding-left: 10px;
        width: 50%;
    }

    .site-logo a img {
        width: 90%;
    }

    .search-and-cart>div a {
        width: 30px;
        height: 30px;
    }

    .cart-icon-inner svg {
        width: 15px;
        height: 15px;
    }

    .whislis-icon a svg {
        width: 12px;
        height: 12px;
    }

    .header-search-icon .slide-search-icon svg {
        width: 13px;
        height: 13px;
    }

    .user-login a svg {
        width: 15px;
        height: 15px;
    }

    header {
        height: auto;
    }

    .menu-icon a svg {
        width: 30px;
        height: 30px;
    }

    .menu-icon {
        padding-right: 0;
    }

    .related-product-list-img {
        width: 300px;
        height: 180px;
    }

    .related-product-list-title {
        font-size: 20px;
        line-height: 30px;
        color: var(--mint) !important;
    }

    .related-product-list .slick-next.slick-arrow {
        width: 40px;
        height: 40px;
        right: 0;
        transform: translateX(-50%);
        background-size: 18px;
    }

    .related-product-list .slick-prev.slick-arrow {
        right: 80px;
        width: 40px;
        height: 40px;
        background-size: 18px;
    }

    .button-transparent {
        padding: 5px 20px;
        font-size: 16px;
        line-height: 28px;
    }

    .add-to-wishlist {
        width: 40px;
        height: 40px;
    }

    .add-to-wishlist svg {
        width: 18px;
    }

    .complete-your-routine-button {
        align-items: center;
    }

    .complete-your-routine-content img {
        width: 80px;
        height: 80px;
    }

    .complete-your-routine-content {
        top: -30px;
        gap: 30px;
    }

    .steps {
        font-size: 20px;
        line-height: 30px;
        padding-top: 5px;
    }

    .complete-your-routine-detail h3 {
        font-size: 24px;
        line-height: 34px;
        padding-bottom: 10px;
    }

    .complete-your-routine-detail {
        padding-top: 45px;
    }

    .complete-your-routine-bg.step2 {
        padding: 60px 20px 30px 20px;
    }

    .key-ingredients-detail {
        padding-top: 20px;
    }

    .product-info-wrap {
        padding-left: 0;
    }

    .add-to-cart-wrap {
        flex-wrap: wrap;
    }

    .price-dispaly {
        flex-wrap: wrap;
    }

    .price-dispaly .quantity {
        margin-left: 0;
        margin-top: 20px;
    }

    .product-slider-for .slick-slide img {
        height: 350px;
    }

    .product-acordion .accordion-body {
        padding-right: 0;
    }

    .key-ingredients .accordion-button {
        font-size: 20px;
        line-height: 30px;
    }

    .review-slider-content-inner {
        font-size: 20px;
        line-height: 30px;
    }

    .review-person-name {
        font-size: 18px;
    }

    .cart-row {
        flex-wrap: wrap;
    }

    .cart-row-inner {
        flex-wrap: wrap;
        width: 100%;
        flex-direction: column;
    }

    .cart-row-inner .cart-img {
        width: 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .cart-row-inner .cart-img img {
        width: 100%;
        border-radius: 25px;
        height: auto;
    }

    .cart-content {
        /* width: 100%; */
        display: flex;
        flex-direction: column;
    }

    .cart-plus-minus {
        /* width: 50%; */
    }

    .cart-plus-minus .quantity {
        width: auto;
    }
    .cart-plus-minus .minus{
        width: 18px;
        height: 18px
    }
    .cart-plus-minus .plus{
        width: 18px;
        height: 18px;
    }
    .cart-plus-minus .input-box {
        width: 100%;
    }

    .cart-content h3 {
        /* width: 50%; */
        padding-bottom: 15px;
    }

    .cart-sub {
        width: 50%;
    }

    .cart-total {
        padding: 20px;
    }

    .cart-price {
        padding-top: 20px;
        padding-left: 10px;
        text-align: left;
    }

    .cart-size {
        padding-bottom: 0;
    }

    .coupon-code label {
        font-size: 18px;
        line-height: normal;
    }

    .coupon-code .button {
        padding: 15px;
        font-size: 16px;
    }

    .basket-qualifies {
        padding: 15px;
    }


    .button-process .checkout-btn {
        font-size: 16px;
        padding: 15px;
    }

    .button-process .continue-shopping {
        font-size: 18px;
        padding: 15px;
        line-height: normal;
    }

    .cart-list-wrap {
        margin-bottom: 25px;
    }

    .sub-total {
        padding: 15px;
    }

    .shipping-address-address .form-row .form-group {
        width: 100%;
    }

    .contact-info {
        padding: 10px;
    }

    .contact-us .email-address {
        gap: 0;
    }


    .contact-us .get-in-touch {
        padding-top: 50px;
    }

    .contact-us h2 {
        margin-bottom: 10px;
    }

    .contact-us .get-in-touch-desc {
        font-size: 16px;
        line-height: 26px;
        padding-bottom: 30px;
    }

    .contact-us .contact-us-form button {
        padding: 10px 40px;
        font-size: 18px;
    }

    .contact-us {
        margin: 10px 0;
    }

    .compelted-order-left {
        flex-wrap: wrap;
    }

    .compelted-order-name {
        padding-left: 0;
        padding-top: 20px;
        width: 100%;
    }
    .compelted-order-left-wrap .compelted-order-img{
        flex: 0 0 100%;
    }
    .compelted-order-left-wrap {
        flex-wrap: wrap;
    }

    .compelted-order-left-wrap>div {
        flex: auto;
    }

    .compelted-order-price {
        text-align: left;
        padding-top: 10px;
    }

    .compelted-order-img img {
        width: 100%;
    }

    .compelted-order-img {
        width: 100%;
    }

    .compelted-order-right {
        margin-top: 20px;
        margin-left: 0;
        padding-top: 15px;
    }
    .compelted-order-deatil tr td {
        font-size: 14px;
    }

    .order-summary-inner>div {
        width: 100%;
    }
    .order-summary-inner table{
        width: 100%;
    }
    .order-summary-inner tr td:last-child{
        text-align: right;
    }

    .navbar {
        flex-wrap: nowrap;
    }

    .language.mobile {
        margin-left: 10px;
        font-size: 14px;
    }

    header.header-transparent {
        height: 80px;
    }

    .cart-row-inner>div {
        flex: auto;
    }

    .cart-plus-minus {
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
    }
    .widget-range .ui-slider-handle.ui-corner-all.ui-state-default{
        top: -10px;
    }
    .faq-section .accordion-button {
        font-size: 18px;
    }
    
    .accordion-body {
        font-size: 16px;
    }
    .price-dispaly #quantity {
        margin-top: 0;
    }
    .product-info-wrap-container {
        padding: 20px 0;
    }

}