/* Fonts */
@font-face{
    font-family: "Jost";
    src: url("../fonts/Jost-VariableFont_wght.ttf") format("truetype-variations");
    font-weight: 1 999;
}
/* Variables */
:root {
    /* Color */
    --body_bg: #ffffff;
    --body_color: #212121;
    --primary_color: #c82d42;
    --secondary_color: #212121;
    --red_color: #c82d42;
    --green_color: #265d36;
    --light_grey: #f7f7f7;
    --light_red: #eddede;
    --light_green: #deede6;
    --hover_color: #212121;
    --footer_text_color: #f5f6fa;
    /* Font Family */
    --title_font: 'Jost', sans-serif;
    --body_font: 'Open Sans', sans-serif;
    --copyright_font: 'Open Sans', sans-serif;
    /* Font Size Type Variables */
    --fontsize_body: 16px;
    --heading_H1: 50px;
    --heading_H2: 48px;
    --heading_H3: 36px;
    --heading_H4: 28px;
    --heading_H5: 22px;
    --heading_H6: 18px;
    /* Transition */
    --site_transition: all 0.15s linear 0s;
}
/*==== Common CSS =====*/
body {
    font-size: 16px;
    font-family: var(--body_font);
    color: var(--body_color);
}
body a,
body a:visited {
    color: var(--secondary_color);
    text-decoration: none;
}
body a:hover {
    color: var(--primary_color);
    text-decoration: none;
}
input {
    box-shadow: none;
}
.btn.btn-primary {
    padding: 13px 40px 14px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    text-align: center;
    border-radius: 15px;
    display: inline-block;
    margin-top: 25px;
    background-color: var(--primary_color);
    transition: var(--site_transition);
    color: #fff;
}
.action.primary,
.action-primary{
    font-family: var(--title_font);
    font-size: 18px !important;
    font-weight: 600;
    background-color: var(--primary_color);
    transition: var(--site_transition);
    border: none;
    border-radius: 15px;
}
.btn.btn-primary:hover,
.action.primary:hover,
.action-primary:hover {
    background-color: var(--hover_color);
    border: none;
}
.action.primary:focus,
.action-primary:focus,
.action.primary:active,
.action-primary:active {
	background: var(--primary_color);
	border: 1px solid var(--primary_color);
}
.btn.btn-secondary {
    padding: 13px 40px 14px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    text-align: center;
    border-radius: 15px;
    display: inline-block;
    margin-top: 25px;
    background-color: var(--secondary_color);
    transition: var(--site_transition);
    color: #fff;
}
.btn.btn-secondary:hover {
    background-color: var(--primary_color);
}
button:focus,
button:active {
    background-color: var(--hover_color);
    border: 0;
}
button,
button:focus,
button:hover,
button:focus-visible
{
    border:0;
    outline:0;
}
.logo {
    z-index: 3;
}

/* EDC temporary message */
.edc-message {
    margin: 50px 0 0 0;
    position: absolute;
    float: none;
    left: 50%;
    transform: translatex(-50%);
    font-size: .6em;
    z-index: 3;
}
.edc-message-mobile {
    display: none;
}
/* Youtube play button */
.play {
    background: red;
    border-radius: 50% / 10%;
    color: #FFFFFF;
    font-size: 1.5em; /* change this to change size */
    height: 3em;
    margin: 20px auto;
    padding: 0;
    position: absolute;
    text-align: center;
    text-indent: 0.1em;
    transition: all 150ms ease-out;
    width: 4em;
    cursor: pointer;
}
.play::before {
    background: inherit;
    border-radius: 5% / 50%;
    bottom: 9%;
    content: "";
    left: -5%;
    position: absolute;
    right: -5%;
    top: 9%;
}
.play::after {
    border-style: solid;
    border-width: 1em 0 1em 1.732em;
    border-color: transparent transparent transparent rgba(255, 255, 255, 1);
    content: ' ';
    font-size: 0.75em;
    height: 0;
    margin: -1em 0 0 -0.75em;
    top: 50%;
    position: absolute;
    width: 0;
}
@media only screen and (max-width: 768px) {
    .play {
        font-size: 1em;
    }
}
@media only screen and (max-width: 768px) {
    .edc-message {
        margin: 40px 0 0 0;
        font-size: .64em;
    }
    .edc-message-mobile {
        display: block;
    }
    .edc-message-desktop {
        display: none;;
    }
}
.popupactionedit.btn-success:active:focus,
.popupactionedit.btn-success,
.popupaction.btn-success:active:focus,
.popupaction.btn-success,
.btn-info:focus,
.btn-info:active:focus{
    background-color:var(--hover_color);
    border-color:var(--hover_color);
    color:white;
    box-shadow: none;
}
._keyfocus :focus,
input:not([disabled]):focus,
textarea:not([disabled]):focus,
select:not([disabled]):focus {
	box-shadow: none;
}
input[type="checkbox"] {
	margin: 0px 5px 0 0;
	top: 0px;
}
.modals-overlay{
    background-color: rgba(0, 0, 0, 0.5) !important;
}
::-webkit-input-placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder,
::placeholder {
    font-family: var(--body_font);
}
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="email"],
select {
	border-radius: 8px;
	font-family: var(--body_font);
	font-size: 16px;
	height: 50px;
}
/* Fix CLS issues added 11/18/22 */
.catalog-product-view .product.media {
    z-index: 0;
    /* Added 11/18 */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px 0px;
}
.thumb-gallery-image img {
    padding-bottom: 4px;
}
.gallery-placeholder {
    height: 100vh;
    grid-area: 1 / 1 / 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light_grey);
    z-index: 0;
    position: relative;
    text-align: center;
}
.main-product-image-container {
    width: auto;
    padding-left: 10px;
}
.main-product-image-container img {
    width: 100%;
    height: auto;
    max-height: 650px;
    max-width: 650px;
}
.thumb-gallery-image {
    position: relative;
    cursor: pointer;
}
.thumb-gallery-image[media-type="external-video"]:before {
    width: 10px !important;
    height: 10px !important;
}
.thumb-gallery-image[media-type="external-video"]:before {
    content: '';
    position: absolute;
    color: #fff;
    text-shadow: 0px 1px 10px #000;
    top: 50% !important;
    left: 50% !important;
    display: inline-block;
    transform: translateY(-50%) translateX(-50%) !important;
    -webkit-transform: translateY(-50%) translateX(-50%) !important;
    z-index: 100;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-color: rgba(0,0,0,0.3) !important;
    background-size: 50%;
    background-position: center center;
}
.thumb-gallery-image[media-type="external-video"]:after {
    content: '';
    width: 12px;
    height: 16px !important;
    border-top: 8px solid transparent;
    border-left: 12px solid rgba(255,255,255,0.7);
    border-bottom: 8px solid transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    margin-left: 1px;
    box-sizing: border-box !important;
    z-index: 101;
}
@media only screen and (max-width: 767px) {
    .main-product-image-container {
        padding: 0px;
        height: 100%;
        width: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 70px;
        padding-left: 10px;
    }
    .gallery-thumbnail-container {
        width: 100%;
        height: 100%;
        max-width: 50px;
        min-height: 0px;
        display: flex;
        flex-direction: column;
        flex-basis: 34px;
        flex-shrink: 0;
        justify-content: flex-start;
        padding-top: 70px;
    }
    .gallery-thumbnail-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        height: calc(100vw - 100px);
        align-content: center;
        justify-content: center;
        width: fit-content;
    }
    .gallery-placeholder {
        height: calc(76vw + 95px);
    }
    .gallery-placeholder.display-product-compat {
        height: calc(76vw + 330px);
    }
    .gallery-placeholder.display-product-match {
        height: calc(76vw + 160px);
    }
    .main-product-image-wrapper {
        max-width: 76vw;
    }
}
@media only screen and (max-width: 479px) {
    .main-product-image-container img {
        max-height: 325px;
        max-width: 325px;
        min-width: calc(100vw - 100px);
    }
}
@media only screen and (max-width: 411px) {
    .gallery-thumbnail-container {
        flex-basis: 27px;
    }
}
/* End CLS fix */
@media only screen and (max-width: 767px){

    .modal-slide .mega-menu-header .action-close{
        top : 28px !important;
    }

    .modal-slide.mega-menu-slider .menu .back-arrow{
        top: 26px !important;
    }

    .modal-slide .mega-menu-header .logo{
        top: 8px !important;
    }

    .modal-slide .mega-menu-header .action.nav-toggle{
        display: none;
    }
}
@media only screen and (max-width: 375px){
    .modal-slide .mega-menu-header .logo{
        top: 7px !important;
        width: 50%;
    }
    .modal-slide .mega-menu-header .action-close{
        right: 20px;
    }
}
.modal-slide .mega-menu-header{
    width: 100%;
    display: flex;
    height: auto;
    position: fixed;
}
@media only screen and (min-width: 767px) and (max-width: 959px){
    .modal-slide .mega-menu-header .action-close {
        top : 26px !important;
    }
}
.modal-slide.mega-menu-slider .learn-link {
    border-bottom : none;
}
.modal-slide.mega-menu-slider._show .modal-inner-wrap{
    -webkit-transform : translate(-100%, 0);
    transform: translate(-100%, 0);
}
.modal-slide.mega-menu-slider .modal-inner-wrap{
    -webkit-transform : translate(-100%, 0);
    transform: translate(-100%, 0);
}
.modal-slide .mega-menu-header .action-close {
    top : 29px;
}
.modal-slide .mega-menu-header .logo {
    margin: 0 auto;
    position: absolute;
    float: none;
    left: 50%;
    top: 15px;
    transform: translatex(-50%);
}
.modal-slide.mega-menu-slider .modal-header{
    display: none;
}
.modal-slide._show, .modal-popup._show {
    -webkit-transition: opacity .15s ease !important;
    transition: opacity .15s ease !important;
}
.modal-slide, .modal-popup {
    -webkit-transition: visibility 0s .15s, opacity .15s ease !important;
    transition: visibility 0s .15s, opacity .15s ease !important;
}
.modal-slide .modal-inner-wrap {
    -webkit-transition: -webkit-transform 0.15s ease-in-out !important;
    transition: transform 0.15s ease-in-out !important;
}
/* ===== Scrollbar CSS ===== */
/* Firefox */
.modal-slide * {
    scrollbar-width: none;
    scrollbar-color: var(--body_color);
}
/* Chrome, Edge, and Safari */
.modal-slide *::-webkit-scrollbar {
    width: 0;
}
.modal-slide *::-webkit-scrollbar-track {
    background: transparent;
}
.modal-slide *::-webkit-scrollbar-thumb {
    background-color: var(--body_color);
    border: none;
}
/*==== Common End =====*/
/*==== Header ====*/
.topbartext {
    text-align: center;
    background-color: var(--secondary_color);
    color: #ffffff;
    padding: 10px 0px;
    font-size: 14px;
    font-family: var(--body_font);
}
.topbartext .highlight-text {
    color: var(--primary_color);
}
.page-header .widget.block {
    margin: 0;
}
.page-header .compare.wrapper .item.compare{
    margin: 0;
}
.page-header .compare.wrapper .action.compare.no-display{
    display: none;
}
.page-header .compare.wrapper .action.compare {
	font-size: 0;
    display: flex;
    align-items: center;
    line-height: 29px;
    margin-left: 15px;
}
.page-header .compare.wrapper .action.compare:hover{
    text-decoration: none;
}
.page-header .compare.wrapper .action.compare::after{
    content: "\f074";
    font-size: 16px;
    font-weight: 600;
    font-family: 'Font Awesome 5 Free';
    color: var(--secondary_color);
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}
.minicart-wrapper .action.showcart{
    position: relative;
}
.page-header .minicart-wrapper .action.showcart .counter.qty {
	background: var(--primary_color);
	color: #ffffff;
	height: 15px;
	line-height: 15px;
	border-radius: 50%;
	margin: 0;
	min-width: 15px;
	padding: 0;
	font-size: 9px;
	font-weight: 600;
	position: absolute;
	left: 10px;
	top: 11px;
	text-align: center;
}
.minicart-wrapper .action.showcart .counter-number {
	text-shadow: none;
}
.customer-welcome ul.dropdown-menu-login li{
    display:block;
}
.customer-welcome ul {
	position: absolute;
    width: max-content;
    right: -10px;
}
/*==== Header End ====*/
/*==== Home Banner Section ====*/
.cms-home .top-container .block-static-block.widget,
.block-cms-link.widget {
    margin-bottom: 0px;
}
.cms-home .top-container {
    max-width: 100%;
    width: 100%;
    padding: 0px;
    margin-top: -75px;
}
#checkout-banner {
    background-image: url(../images/home_banner4.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0% 0%;
    padding: 18% 0 18%;
    height: 100vh;
}
#home-banner .banner-txt h1 {
    margin-top: 0;
    font-size: var(--heading_H2);
    font-weight: bold;
    font-family: var(--title_font);
    color: var(--secondary_color);
    line-height: 1.2em;
    margin-bottom: 16px;
}
/*==== Home Banner End ====*/
/*==== Footer ====*/
.footer-social ul {
    display: flex;
    justify-content: start;
}
.footer1 .footer-social ul{
    margin-bottom: 18px;
}
.footer.content .footer1 .footer-social ul > li + li {
	margin-left: 15px;
}
.footer.content .footer1 .footer-social ul li a{
    height: 30px;
    width: 30px;
}
.footer.content .footer-social ul li a {
    border: 1px solid var(--body_bg);
    padding: 5px;
    border-radius: 50%;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
}
.footer.content .footer-social ul li {
    margin-top: 0;
}
.footer.content .footer-social ul > li + li {
    margin-left: 20px;
}
.footer.content ul > li + li {
    margin-top: 10px;
}
.footer.content p {
    line-height: 24px;
    color: var(--footer_text_color);
    font-size: 14px;
}
.footer.content .f4 p {
    padding-left: 27px;
    position: relative;
}
.footer.content .f4 p .fas {
    position: absolute;
    left: 0;
    top: 0;
}
.footer.content a {
    color: var(--footer_text_color);
    line-height: 24px;
    font-size: 14px;
    text-decoration: none;
}
.footer.content h3 {
    font-size: 20px;
    color: var(--body_bg);
    display: flex;
    margin: 10px 0 25px;
    font-family: var(--title_font);
    font-weight: 700;
}
.footer4 .f4 .address {
    line-height: 24px;
    display: flex;
}
.footer.content a:hover {
    color: var(--primary_color);
}
.footer4 .f4 .address span,
.f4 p span {
    display: inline;
    margin-top: 5px;
    margin-right: 11px;
    color: var(--primary_color);
}
.footer1 h2 {
    color: #fff;
    font-weight: 400;
    font-size: 36px;
    margin: 0 10px 18px 0;
    font-family: Impact, fantasy;
    text-transform: uppercase;
}
.footer.content .footer1 .footer-social{
    display: flex;
    margin-top: 0;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.f4 .cards img+img,
.f5 .cards img+img {
    padding-left: 15px;
}
.footer.content .footer-social,
.footer.content .cards {
    margin-top: 37px;
}
.footer.content .fa-angle-down,
.footer.content .footer-social-col4 {
    display: none;
}
.copyright {
    background-color: var(--green_color);
    color: var(--footer_text_color);
    font-size: 14px;
    line-height: 24px;
    padding: 25px 0px;
    font-family: 'Mulish', sans-serif;
}
/*==== Footer End ====*/
/*==== Search ====*/
.header.content .block-search {
	padding-left: 0;
	width: auto;
	z-index: 7;
}
.form.minisearch > .actions {
	display: none;
}
.form.minisearch .field.search {
    line-height: 31px;
}
.form.minisearch .field.search > .control{
    display: none;
}
.form.minisearch.-opened .field.search > .control{
    display: block;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    padding: 21px 20px;
    background-color: #fff;
    z-index: 6;
}
.form.minisearch.-opened .field.search > .control::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;
	top: 0;
	left: 0;
	z-index: 6;
}
.form.minisearch.-opened .field.search > .control::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0,0,0,0.5);
	height: 100vh;
	z-index: 6;
}
.form.minisearch .field.search .label{
    height: auto;
    width: auto;
    position: relative;
    cursor: pointer;
}
.form.minisearch .field.search .label::before {
	font-size: 16px;
	line-height: 29px;
	margin: 0;
    color: var(--secondary_color);
    font-weight: 600;
}
.amsearch-form-container.-opened .amsearch-wrapper-input {
	position: relative;
	max-width: 830px;
	margin: 0 auto;
	z-index: 14;
}
.amsearch-form-container.-opened .amsearch-wrapper-input .input-text:focus {
	border: 1px solid #cecece;
	box-shadow: none;
}
.search-autocomplete {
	max-width: 100vw;
	width: 100%;
	left: 50%;
	transform: translate(-50%, 0%);
	z-index: 6;
}
.amsearch-form-container .search-autocomplete.amsearch-clone-position {
	top: calc(100% + 0px);
	border-top: none;
	box-shadow: none;
	scrollbar-width: none;
}
.amsearch-form-container.-result .search-autocomplete{
    min-height: 502px;
    margin: 0px auto;
}
.amsearch-form-container .amsearch-results {
	flex-direction: column;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 80px;
	overflow: hidden;
	background-color: #fff;
	border-radius: 0 0 12px 12px;
}
.mst-searchautocomplete__autocomplete {
    background: none;
    border-radius: 0 0 12px 12px;
}
.amsearch-form-container .amsearch-results .amsearch-leftside,
.amsearch-form-container .amsearch-results .amsearch-products {
	width: 100% !important;
}
.amsearch-form-container .amsearch-results > .title-box{
    order: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-family: var(--title_font);
    padding: 10px 0 10px;
    align-items: center;
    width: 100%;
}
.amsearch-form-container .amsearch-results .amsearch-products{
    order: 0;
    padding: 0;
}
.amsearch-form-container .amsearch-results .amsearch-leftside{
    order: 2;
}
.amsearch-form-container.-opened:not(.-small) .search-autocomplete .amsearch-products {
	border-left: none;
}
.amsearch-results .amsearch-leftside .title-box.blog,
.amsearch-results .amsearch-leftside .title-box.category {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-family: var(--title_font);
    padding: 10px 0 10px;
    align-items: center;
    width: 100%;
}
.title-box .result-title {
    font-size: var(--heading_H5);
    font-weight: 400;
    color: var(--body_color);
    display: none;
}
.all-products-link {
    font-size: 16px;
    font-weight: 700;
    display: none;
}
.amsearch-results .amasty-xsearch-block-header {
	display: none;
}
.amsearch-results .amsearch-item-container.blog {
	display: flex;
	flex-wrap: wrap;
}
.amsearch-results .amsearch-item-container .amsearch-item{
    flex-basis: calc((100% - 120px) / 5);
    margin-bottom: 30px;
    margin-right: 30px;
    max-width: 100%;
}
.amsearch-results .amsearch-item-container .amsearch-item .blog-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 15px;
}
.amsearch-results .amsearch-item-container .amsearch-item .item-name {
    font-family: var(--title_font);
    font-size: 20px;
    line-height: 24px;
    margin-top: 17px;
    font-weight: 700;
}
.search-autocomplete .amsearch-results .amsearch-item-container .amsearch-item .item-name{
    text-decoration: none;
    color: var(--secondary_color);
    font-size: 20px;
    font-family: var(--title_font);
    display: block;
    margin-top: 10px;
    text-align: center;
}
.amsearch-item-container:not(.recent_searches) .amsearch-highlight {
	display: none;
}
.amsearch-products .amsearch-highlight{
    background-color: transparent;
    color: var(--secondary_color);
}
.amsearch-wrapper-content .product-item-link:hover .amsearch-highlight{
    color: var(--primary_color);
}
.amsearch-form-container .amsearch-results .amsearch-more-results{
    display: none;
}
.amsearch-wrapper-content .product-item.amsearch-item {
	padding: 0;
}
.amsearch-form-container .amsearch-results .carousel-wrap {
    padding: 0;
    width: 100%;
    margin: 0 auto;
}
.amsearch-form-container.-large .amsearch-results .amsearch-wrapper-content {
	margin-bottom: 0;
}
.amsearch-form-container.-large .amsearch-wrapper-content .tocart {
    font-size: 16px !important;
}
.amsearch-wrapper-content .product-item-details {
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: wrap;
    min-height: auto;
}
.amsearch-wrapper-content .product-item-link {
	order: 0;
    font-size: 20px;
    font-family: var(--title_font);
    font-weight: 700;
    color: var(--secondary_color);
    width: 100%;
    /* Limit search product title to 2 lines */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
            line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 0 !important;
}
.amsearch-wrapper-content .product-item-link:hover,
.search-autocomplete .amsearch-results .amsearch-item-container .amsearch-item .item-name:hover {
    color: var(--primary_color);
}
.amsearch-wrapper-content .amsearch-wrapper-inner {
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 0 20px 0 0;
	width: fit-content;
    order: 1;
}
.amsearch-form-container.-large .amsearch-wrapper-content .product-item-details .price-box {
	margin: 0;
}
.amsearch-results .amsearch-item:hover {
	background-color: transparent;
}
.owl-carousel .owl-nav > div {
    font-size: 0;
    top: 110px;
}
.search-autocomplete .amsearch-results .owl-carousel .owl-nav > div{
    cursor: pointer;
    padding: 0;
    margin: -26px 0 0 0;
}
.category .carousel-wrap .owl-carousel .owl-nav > div {
    top: 30px;
}
.owl-nav .owl-prev {
    left: -65px;
}
.owl-nav .owl-next {
    right: -65px;
}
.owl-carousel .owl-nav .disabled {
    pointer-events: none;
    opacity: 0.5;
}
.owl-carousel .owl-nav .owl-next::after {
    content: '\203A';
    font-size: 50px;
    color: var(--body_color);
    font-weight: 300;
}
.owl-carousel .owl-nav .owl-prev::after {
    content: '\2039';
    font-size: 50px;
    color: var(--body_color);
    font-weight: 300;
}
.owl-carousel .owl-nav .owl-next:hover::after,
.owl-carousel .owl-nav .owl-prev:hover::after {
    color: var(--primary_color);
}
.amsearch-form-container.-opened .amsearch-leftside .amsearch-item-container .amsearch-item {
    padding: 0;
    text-align: center;
}
.amsearch-form-container.-opened .input-text {
	padding-left: 35px;
	background-color: #f3f3f3;
	z-index: 6;
}
.amsearch-form-container.-opened .input-text::placeholder {
	color: var(--body_color);
	font-style: normal;
}
.search .amsearch-loupe {
	pointer-events: none;
	width: 16px;
	height: 16px;
	-webkit-filter: brightness(0%);
	filter: brightness(0%);
}
/*==== Search End ====*/
/*==== Mega Menu ====*/
.menu > ul > li a {
    font-size: 20px;
    font-family: var(--title_font);
    font-weight: 700;
    padding: 10px 18px;
    cursor: pointer;
}
.menu > ul > li:hover {
    background: transparent;
}
.menu > ul:not(.menu-html) > li:first-child a {
    padding-left: 0;
}
.menu-dropdown-icon > a {
    position: relative;
}
.menu-dropdown-icon > a::before {
    content: "\276F";
    display: block;
    cursor: pointer;
    float: none;
    padding: 0;
    background: transparent;
    color: var(--secondary_color);
    font-family: 'luma-icons';
    position: absolute;
    top: 50%;
    right: 3px;
    transform: translatey(-30%) rotate(90deg);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}
.menu-dropdown-icon.open > a::before {
    content: "\276E";
}
.menu-dropdown-icon > a:hover::before {
    color: var(--primary_color);
}
.menu > ul > li.open ul {
    padding: 10px 20px 0;
}
.menu > ul > li > ul.normal-sub {
	width: 100%;
	left: 0;
}
.menu > ul > li.open > ul {
    background-color: #fff;
    text-align: center;
    margin-top: 13px;
    height: 100%;
	position: fixed;
	overflow-y: auto;
	box-shadow:inset 0px -7px 20px 24px rgb(0 0 0 / 6%);
    transition: all 0.5s ease;
    width: 100%;
    left: 0;
    top: 61px;
}
.menu .shop-all-parent{
    width: 100%;
}
.menu .shop-all-parent,
.menu .column_mega_menu1,
.menu ul.level1.submenu li.level2,
.menu ul.level1.submenu li.level2 li.level3 {
    max-width: 250px;
    max-height: 165px;
    margin: 10px;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
    float: none;
}
.menu .menu-bg-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.menu .menu-bg-label {
    background: #265d36;
    aspect-ratio: auto 250 / 165;
}
.menu .menu-bg-image a {
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 165px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 0;
    background-color: #00000030;
    color: var(--body_bg);
    transition: all 0.5s ease;
}
.menu .menu-bg-image a > span{
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 0 30px;
}
.menu .menu-bg-image a:hover {
    background-color: transparent;
}
.menu .menu-bg-image a span.line-two,
.menu .menu-bg-image .parent-line-two {
	font-size: 30px;
	line-height: 36px;
}
.navigation {
    width: fit-content;
    margin-left: 0;
    position: static;
}
.navigation > .menu > ul {
    position: static;
}
.menu li.level1.parent > ul.level1.submenu {
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow-y: auto;
    overflow-x: hidden;
}
.menu li.level2.parent > ul.level2.submenu {
    width: 100% !important;
    height: 100% !important;
    padding: 20px 20px 100px 20px !important;
    z-index: 1;
}
.menu li.parent > ul.submenu{
    position: fixed;
    top: 70px;
    left: 0;
    margin-top: 0;
    background-color: #fff;
    box-shadow: inset 0px -7px 20px 24px rgb(0 0 0 / 6%);
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 100px;
}
.menu li.level1.parent ul.submenu{
    padding-bottom: 100px;
}
.menu .back-arrow {
	width: fit-content !important;
	font-size: 16px;
	padding: 0 20px;
	line-height: 12px;
    position: fixed;
    left: 0;
    top: 105px;
    cursor: pointer;
}
.menu .back-arrow::before {
    content: "\21FD";
    margin-right: 5px;
    font-size: 20px;
    line-height: 10px;
}
.page-header.show {
    background-color: #fff;
    z-index: 4;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
}
.menu > ul > li + li {
    margin-left: 15px;
}
.page-header.show .navigation{
    z-index: 6;
}
/* Iphone menu fix */
.mobile1 {
    width: 36px !important;
}
.mobile2 {
    margin-left: 45px !important;
}
.mobile3 {
    margin-left: 35px !important;
}
.mobile4 {
    margin-left: 0 !important;
}
/* End of Iphone menu fix */
@media only screen and (min-width: 768px) {
    .page-header .panel.wrapper {
        border-bottom: 0;
    }
    .page-header .header.panel {
        max-width: 100%;
        padding: 0;
    }
    .navigation,
    .nav-sections {
        background-color: transparent;
    }
    .nav-sections {
        margin: 0;
    }
    .navigation li.level1 {
        position: static;
    }
    .navigation {
        max-width: 100%;
        padding: 0;
    }
}
/*==== Mega Menu End ====*/
/*==== Home Main ====*/
.cms-home .page-main {
    height: auto;
}
.cms-home .page-main .columns .column.main {
    min-height: 0px;
    padding-bottom: 0px;
}
/*==== Home Main End ====*/
/* Login Modal */
.property-loader {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-block;
    border-top: 3px solid var(--green_color);
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation 1.5s linear infinite;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.spinner-wrapper {
    display: grid;
    align-items: center;
    justify-items: center;
    margin: 1em 0;
}
.property-snippet {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
.property-snippet h3,
.property-results-wrapper h3 {
    font-family: var(--title_font);
    font-weight: bold;
    font-size: 24px;
    text-align: center;
}
.steps-content .step-active {
    color: var(--green_color);
    font-weight: bold;
}
.steps-content .step-inactive {
    color: gray;
    font-weight: bold;
}
.steps-content .step-active:before {
    content: "\f058";
    font-family: 'Font Awesome 5 Free';
    padding-right: 5px;
}
.steps-content .step-inactive::before {
    content: "\f111";
    font-family: 'Font Awesome 5 Free';
    padding-right: 5px;
    font-weight: 400;
}
.steps-content,
.property-results-content {
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
}
.property-results-content {
    row-gap: 0.5em;
    text-align: center;
}
#property-address {
    color: var(--red_color);
    font-weight: bold;
}
.property-stats span,
.climate-stats span,
.pest-stats span {
    color: var(--green_color);
    font-weight: bold;
}
.property-spinner-wrapper,
.property-results-wrapper {
    display: none;
    margin-bottom: 1.5em;
}
.property-manual-input {
    display: none;
}
/* Categories */
/* Category Header */
.catalog-category-view .breadcrumbs, .catalog-category-view .page-title-wrapper{
    display: none;
}
.category-view {
    display: flex;
    background-color: var(--light_grey);
    align-items: center;
    margin-top: -74px;
}
.category-column-left-side {
    padding: 10px 40px;
    max-width: 40%;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-width: 500px;
    margin-top: 74px;
}
.category-column-left-side .category-title,
.category-column-left-side .category-description{
    margin-bottom: 0;
}
.category-column-left-side .category-title,
.category-column-left-side .category-description,
.category-quick-info-header,
.category-quick-info,
.category-toc,
.category-hotbar {
    width: 100%;
    max-width: 500px;
    align-self: center;
    z-index: 0;
}
.category-title h2 {
    font-size: var(--heading_H2) !important;
    color: var(--secondary_color) !important;
    font-weight: 700 !important;
    margin-bottom: 0;
    font-family: var(--title_font);
}
.category-column-left-side .category-description p {
    font-size: 18px !important;
    line-height: 26px !important;
    margin-bottom: 0 !important;
}
.category-quick-info-header {
    background-color: #ffffff;
    padding: 5px 10px;
    border: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
    text-align: center;
    font-size: 22px;
    font-family: var(--title_font);
    font-weight: bold;
    margin-top: 1.5em;
}
.category-quick-info {
    background-color: #ffffff;
    padding: 10px;
    border: 1px solid #ebebeb;
    border-top: 0px;
    border-radius: 0 0 5px 5px;
    display: flex;
}
.category-toc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}
.category-toc-header {
    font-weight: bold;
}
.category-hotbar {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}
.category-hotbar i {
    font-size: 14px;
    padding: 7px;
    color: #265d36;
    background-color: #ffffff;
    border-radius: 24px;
    border: 1px solid #ebebeb;
    margin-right: 5px;
    width: 30px;
    text-align: center;
}
.category-hotbar a {
    color: var(--body_color);
}
.category-difficulty, .category-time {
    float: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}
.category-difficulty:after {
    float: left;
}
.difficulty {
    background-color: white;
    border-radius: 24px;
    border: 1px solid #ebebeb;
    float: left;
    margin-right: 5px;
    height: 30px;
    width: 30px;
}
.level-1 {
    background: url(/pub/media/hotbar/DifficultyVar.png) !important;
    background-position: 7px 0px !important;
    display: inline-block !important;
    height: 26px;
    width: 28px;
    background-repeat: no-repeat !important;
}
.level-2 {
    background: url(/pub/media/hotbar/DifficultyVar.png) !important;
    background-position: 7px -21px !important;
    display: inline-block !important;
    height: 26px;
    width: 28px;
    background-repeat: no-repeat !important;
}
.level-3 {
    background: url(/pub/media/hotbar/DifficultyVar.png) !important;
    background-position: 7px -42px !important;
    display: inline-block !important;
    height: 26px;
    width: 28px;
    background-repeat: no-repeat !important;
}
.category-video {
    height: 574px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light_green);
    padding-top: 50px;
}
/* Category Content */
.category-columns {
    display: grid;
    grid-template-columns: 1fr 400px;
    grid-template-rows: 1fr;
    gap: 0px 20px;
    grid-auto-flow: row;
    grid-template-areas:
        "category-extra-info category-right-column";
}
.category-single-column {
    grid-template-columns: 1fr;
    grid-template-areas: "category-extra-info";
}
.category-extra-info {
    grid-area: category-extra-info;
}
.category-right-column {
    grid-area: category-right-column;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 65px;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
    height: calc(100vh + 284px);
}
.category-extra-info h1, .category-right-column h2 {
    font-family: var(--title_font);
    font-weight: bold;
    color: #265d36;
    margin: 10px 0;
    font-size: 28px;
}
.category-extra-info h2 {
    font-family: var(--title_font);
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    color: #ffffff;
    padding: 5px 0 5px 15px;
    background: #265d36;
    background: -moz-linear-gradient(left, #265d36 0%, #265d36 50%, #ffffff 100%);
    background: -webkit-linear-gradient(left, #265d36 0%, #265d36 50%, #ffffff 100%);
    background: linear-gradient(to right, #265d36 0%, #265d36 50%, #ffffff 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#265d36', endColorstr='#ffffff', GradientType=1);
}
.category-extra-info h3 {
    font-family: var(--title_font);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px;
    line-height: 1.35;
}
.category-extra-info h2::before {
    font-family: "Font Awesome 5 Free";
    content: "\f14a";
    display: inline-block;
    padding-right: 10px;
    color: #ffffff;
}
.category-extra-info p, .category-extra-info ul li {
    line-height: 24px;
}
.category-extra-info ul {
    list-style: disc outside;
    padding-left: 1.5em;
}
.category-extra-info li {
    list-style-type: disc;
}
.category-extra-info img {
    width: 100%;
}
.custom-product-list {
	display: flex;
	flex-direction: column;
	row-gap: 1em;
}
.custom-product {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-template-rows: 19px 20px 23px 30px;
    gap: 2px 15px;
    grid-auto-flow: row;
    grid-template-areas:
        "custom-product-image custom-product-type"
        "custom-product-image custom-product-title"
        "custom-product-image custom-product-size"
        "custom-product-image custom-product-price";
    grid-area: custom-product;
    align-items: center;
}
.custom-product-image {
    justify-self: inherit;
    align-self: start;
    grid-area: custom-product-image;
    width: 100px;
    height: 100px;
    background-color: var(--light_grey);
    border-radius: 12px;
}
.custom-product-image .product-image-photo {
    height: 100px;
}
.custom-product-type {
    grid-area: custom-product-type;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.custom-product-checkbox {
    display: flex;
    align-items: center;
}
.custom-product-checkbox input {
    height: 18px;
    width: 18px;
}
.custom-product-title {
    grid-area: custom-product-title;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 23px);
}
.custom-product-size {
    grid-area: custom-product-size;
}
.custom-product-size > .field {
    display: flex;
}
.custom-product-size > .field > .control {
    width: 100%;
}
.custom-product-price {
    grid-area: custom-product-price;
    color: var(--green_color);
    font-weight: bold;
    display: flex;
    height: 33px;
    align-items: flex-end;
}
.custom-product-price .price-label {
    display: none;
}
.custom-product-price .price-container .price {
    font-size: initial;
}
.custom-product-button {
    width: 100%;
}
.custom-product-atc {
    background-color: var(--primary_color);
    border-radius: 12px;
    width: 100%;
    font-size: 18px;
    color: #fff;
    margin: 0;
    font-family: var(--title_font);
    font-weight: 700;
    transition: var(--site_transition);
    padding: 13px 20px;
}
.custom-product-reviews .fas {
    color: var(--primary_color);
    margin-right: -2px;
}
.custom-product-size select {
    height: unset;
    border: none;
    border-radius: unset;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
}
@media (max-width: 1024px) {
    .category-columns {
        display: flex;
        flex-direction: column;
    }
    .category-right-column {
        margin-bottom: 1em;
        position: unset;
        height: unset;
    }
    .custom-product-list {
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 1em;}
    .custom-product {
        flex: 1 0 calc(50% - 1em);
        max-width: calc(50% - 1em);
    }
}
@media (max-width: 767px) {
    .custom-product-list {
        flex-direction: column;
    }
    .custom-product {
        max-width: unset;
    }
}
@media only screen and (max-width: 639px) {
    .custom-product-price .price-box.price-final_price {
        margin: 0px !important;
    }
}
.category-view .category-image {
    margin-bottom: 0;
}
.toolbar.toolbar-products{
    display: flex;
    justify-content: space-between;
}
.products.wrapper ~ .toolbar.toolbar-products{
    justify-content: center;
    border-top: none;
}
.toolbar.toolbar-products::before, .toolbar.toolbar-products::after{
    display: none;
}
/* webkul team */
.toolbar select.sort-options{
	background-color: #fff;
	box-shadow: none;
	border-radius: 12px;
	line-height: 40px;
	height: 50px;
	margin: 0;
	width: fit-content;
	color: var(--secondary_color);
	font-weight: 700;
	font-size: 20px;
	font-family: var(--title_font);
}
.akeans-top-cat-links {
    text-align: center;
    margin: 30px auto 0;
    padding-bottom: 30px;
}
.catalog-category-view .akeans-top-cat-links ~ .page-main {
	border-top: 1px solid #ccc;
}
.akeans-filter-popup-trigger{
    min-height: 50px;
}
.akeans-filter-popup-trigger strong {
    color: var(--secondary_color);
    font-weight: 700;
    font-size: 20px;
    line-height: 50px;
    font-family: var(--title_font);
    cursor: pointer;
}
.akeans-filter-popup-trigger strong:hover{
    color: var(--primary_color);
}
.akeans-filter-popup-trigger strong > i.fas{
    margin-right: 8px;
}
.akeans-custom-popup-wrapper {
	position: fixed;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
	z-index: 101;
}
.akeans-custom-popup-wrapper .filter.block {
	display: flex;
    flex-direction: column;
    position: fixed;
    background-color: #fff;
    z-index: 2;
    top: 0;
    left: 0;
    padding: 0 0 50px;
    width: 100%;
    max-width: 625px;
    height: 100%;
    overflow-y: auto;
}
.filter .block-subtitle{
    display: none;
}
.filter-options-content li.item a.active::after, .akeans-filter-popup-trigger-wrapper .active-filters > a::after {
	content: '\00D7';
	font-family: 'Font Awesome 5 Free';
	font-size: 22px;
	font-weight: 500;
	vertical-align: top;
	margin-left: 5px;
    line-height: 20px;
}
.catalog-category-view .akeans-custom-popup-wrapper .filter-content {
	margin-top: 0;
    padding: 20px 50px 50px;
    margin-bottom: 35px;
}
.filter-content .filter-options {
	display: flex;
	flex-direction: column;
}
.block-filter-close {
	position: sticky;
	top: 0;
	right: auto;
	display: inline-block;
	width: 100%;
	left: 0;
	cursor: pointer;
	background-color: #fff;
	height: 50px;
	line-height: 50px;
	padding: 0 20px;
	text-align: right;
	z-index: 9;
}
.block-filter-close .fas::before{
    font-weight: 600;
    font-family: 'luma-icons';
    color: var(--secondary_color);
    font-size: 14px;
    line-height: 14px;
    content: '\e616';
}
.block-custom-actions {
    position: relative;
    height: 100%;
    z-index: 1;
}
.block-custom-actions .actions {
    display: flex;
    padding: 20px 50px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    justify-content: space-around;
}
.block-custom-actions .actions .action{
    background-color: #E8EAEC;
    border: 0.4px solid rgba(0,0,0,0.3);
    color: var(--secondary_color);
    font-family: var(--title_font);
    font-weight: 700;
    padding: 15px;
    font-size: 16px;
    min-width: 218px;
    width: 100%;
    border-radius: 16px;
}
.block-custom-actions .actions .action.apply-filter:hover{
    background-color: var(--primary_color);
    color: #fff;
}
.block-custom-actions .actions .action.clear-filter:hover {
	background-color: var(--secondary_color);
	color: #fff;
}
.block-custom-actions .actions .action.close-filter:hover {
	background-color: var(--secondary_color);
	color: #fff;
}
.catalog-category-view .filter-options-content .items{
    display: flex;
    flex-wrap: wrap;
}
.catalog-category-view .filter-options-content .item {
	border: 1px solid #ccc;
	border-radius: 12px;
	margin: 20px 10px auto;
	padding: 0;
	overflow: hidden;
}
.catalog-category-view .filter-options-content .item:hover {
    background-color: var(--primary_color);
    border-color: var(--primary_color);
}
.catalog-category-view .filter-options-content .item.active-parent{
    border: none;
}
.filter-options-item {
    margin-bottom: 10px;
}
.catalog-category-view .filter-options-item.active{
    padding-bottom: 20px;
}
.filter-options-content a{
	color: var(--body_color);
	margin: 0;
	padding: 10px 15px;
	width: fit-content;
	display: inline-block;
}
.filter-options-content li.item a.active {
    background-color: var(--primary_color);
    color: #fff;
}
.akeans-filter-popup-trigger-wrapper .active-filters {
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 15px;
    width: 100%;
    text-align: left;
}
.page-products .toolbar.toolbar-products {
    position: relative;
}
.page-products .toolbar.toolbar-products .sorter{
    position: absolute;
}
.akeans-filter-popup-trigger-wrapper .active-filters > a{
	border: 1px solid #ccc;
	border-radius: 12px;
	margin: 0 5px 5px;
	background-color: #E8EAEC;
	color: var(--secondary_color);
    padding: 5px;
	width: fit-content;
	display: inline-block;
}
.filter-options-content a:hover,
.akeans-filter-popup-trigger-wrapper .active-filters > a:hover,
.filter-options-content .item:hover a {
    background-color: var(--primary_color);
    color: #fff;
    border-color: var(--primary_color);
}
.akeans-filter-popup-trigger-wrapper .active-filters > a span.count{
    display: none;
}
.akeans-filter-popup-trigger-wrapper .active-filters > a::after {
	content: '\00D7';
	font-family: 'Font Awesome 5 Free';
	font-size: 22px;
	font-weight: 500;
	vertical-align: top;
	margin-left: 5px;
	line-height: 20px;
}
.filter-options-content .count {
    display: none;
}
.akeans-filter-popup-trigger-wrapper {
	display: flex;
	align-items: first baseline;
    flex-wrap: wrap;
    flex: 1;
}
.akeans-filter-popup-trigger-wrapper .clear-btn {
	min-width: fit-content;
    margin-left: 20px;
    display: none !important;
}
.akeans-top-cat-links ul,
.akeans-top-cat-links ul li {
    display: inline-block;
    padding: 0;
    margin: 0;
}
.akeans-top-cat-links strong {
    font-size: 18px;
    font-family: var(--body_font);
    color: var(--secondary_color);
}
.akeans-top-cat-links ul li {
    padding-left: 30px;
}
.akeans-top-cat-links ul li a {
    font-size: 16px;
    font-family: var(--body_font);
    color: var(--body_color);
}
@media only screen and (max-width: 479px){
    .akeans-top-cat-links ul li a {
        font-size: 14px;
    }
}
.akeans-top-cat-links ul li a:hover{
    color: var(--secondary_color);
}
.page-products.catalog-category-view .products-grid .product-item{
	margin-bottom: 45px;
}
.products-grid .list .product-item-name {
	margin-top: 0;
    margin-bottom: 0px;
    width: 100%;
}
.products-grid .list .product-item-name > a {
	font-weight: 700;
	font-size: 20px;
	display: inline-block;
	line-height: 20px;
	font-family: var(--title_font);
	text-decoration: none;
}
.page-products .products-grid .list .product-item-name > a{
    line-height: 26px;
}
.products-grid .list .product-item-name > a:hover{
    color: var(--primary_color);
}
.product-image-container span.product-image-wrapper {
    padding-bottom: 0 !important;
    height: auto;
    z-index: 0;
}
.page-products .products-grid .list .product-item-info .product-image-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.product-item .price-box {
    margin: 0;
}
.products-grid .product-item-info:hover,
.products-grid .product-item-info.active,
.products-grid .product-item-info,
.products-grid .product-item-info:hover .product-item-inner,
.products-grid .product-item-info.active .product-item-inner,
.products-grid .product-item-info .product-item-inner {
    box-shadow: none;
    border: none;
    margin: 0;
    padding: 0;
}
.product-image-photo {
    position: relative;
    border: 0 !important;
}
.product-item .price-box span.price-container .price {
    font-size: 14px;
	color: var(--body_color);
	font-weight: 400;
}
.products-grid a.text-m {
    display: none;
}
.products-grid .product-item-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.page-products .products-grid .list .product-item-info {
	width: 100%;
}
.page-products .products-grid .list .product-item-photo {
	min-height: 335px;
	background-color: var(--light_grey);
}
.products-grid .product-item-inner .actions-primary {
    width: 100%;
}
.products-grid .list .product-item-inner {
	right: 0;
	bottom: 0;
}
.page-products .products-grid .list .product-item-inner::before {
	content: none;
}
.products-grid .list .product-item-inner .product-item-actions {
	margin: 0;
}
.products-grid button.action.tocart.primary {
    background: var(--secondary_color);
    border: 1px solid var(--secondary_color);
    width: 100%;
    padding: 11px 15px;
    font-size: 16px;
    font-family: var(--title_font);
    font-weight: 600;
    transition-delay: 0.05s;
    border-radius: 0;
}
.products-grid button.action.tocart.primary:hover{
    background-color: var(--primary_color);
    border-color: var(--primary_color);
}
.products-grid button.action.tocart[title="Choose a size"]{
    pointer-events: none;
}
.products-grid button.action.tocart.active[title="Choose a size"]{
    pointer-events: initial;
}
.products-grid .list .product-item-actions .actions-primary > .stock.unavailable {
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-family: var(--title_font);
    padding-right: 0;
    background-color: var(--primary_color);
}
.products-grid .list .product-item-photo .actions-secondary {
	position: absolute;
	top: 0;
	z-index: 2;
	width: 100%;
	left: 0;
	padding: 20px;
    display: none;
    transition-delay: 0.05s;
}
.products-grid .list .product-item-photo .actions-secondary a.action > span{
    display: none;
}
.products-grid .list .product-item-info:hover .product-item-photo .actions-secondary{
    display: flex;
	justify-content: space-between;
}
.product-item .actions-secondary .action {
	width: 34px;
	height: 34px;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.product-item .actions-secondary .action::before{
    font-size: 14px;
    margin: 0;
    font-family: 'Font Awesome 5 Free';
    color: #3D3737;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}
.product-item .action.towishlist::before{
    content: "\f067";
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
.product-item .action.inwishlist::before{
    content: "\f00c";
}
.product-item .action.tocompare::before {
	content: "\f074";
    font-weight: 600;
}
.tocompare {
    visibility: hidden;
}
.products-grid .product-item-inner:hover .product-item-actions .actions-primary + .actions-secondary {
    display: block;
    position: absolute;
    top: 17px;
    z-index: 999;
}
.products-grid .product-item-actions .actions-secondary a {
    background-color: #fff;
    border-radius: 25px;
}
/* Category Cart Price Rule */
.cart-rule-label {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
}
@media only screen and (max-width: 820px) {
    .cart-rule-label {
        top: 10px;
        right: 10px;
    }
}
@media only screen and (max-width: 479px){
    .cart-rule-label {
        top: 5px;
        right: 5px;
    }
}
.pages .pages-items {
	display: flex;
	justify-content: center;
	align-items: center;
}
.pages strong.page, .pages a.page:hover {
	background-color: var(--primary_color);
	font-size: 16px;
	color: #fff;
	padding: 7px 17px;
	font-family: var(--title_font);
	border-radius: 6px;
    border: 1px solid var(--primary_color);
}
.pages a.page{
    font-size: 16px;
	color: var(--body_color);
	padding: 7px 17px;
	font-family: var(--title_font);
	border-radius: 6px;
    border: 1px solid #E7E7E7;
    font-weight: 700;
}
.pages a.page:visited {
    color: var(--body_color);
}
.pages .item {
	margin: 0 10px 0 0;
}
.pages .item .action {
	margin: 0;
    border-radius: 6px;
    padding: 7px 13.5px;
    background-color: transparent;
    border: 1px solid #e7e7e7;
    color: var(--body_color);
    font-weight: 700;
    box-shadow: none;
}
.pages .item .action::before {
	color: var(--body_color);
	font-weight: 700;
}
.pages .item .action:hover{
    background-color: var(--primary_color);
    border: 1px solid var(--primary_color);
}
.pages .item .action:hover::before{
    color: #fff;
}
.product-item .old-price {
	display: none;
}
.sale.offer-tag {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 2;
	padding: 2px 11px;
	background-color: var(--primary_color);
	font-size: 14px;
	color: #fff;
	font-family: var(--body_font);
	border-radius: 5px;
}
.products-grid .list .product-item-info:hover .sale.offer-tag{
    display: none;
}
.product-item .price-box .price-label {
	display: none !important;
}
.akeans-swatch-wrapper {
	position: absolute;
	z-index: 1;
	left: 0;
	bottom: 40px;
	background-color: var(--light_grey);
	width: 100%;
	padding: 5px 15px 0;
	color: var(--secondary_color);
	font-size: 16px;
	display: none;
}
.products-grid .product-item-info:hover .akeans-swatch-wrapper{
    display: block;
}
.akeans-swatch-tooltip-close {
	position: absolute;
	top: 9px;
	right: 13px;
    cursor: pointer;
}
.akeans-swatch-tooltip-container {
	text-align: center;
}
.akeans-swatch-tooltip-container .label{
    margin-right: 5px;
}
.akeans-swatch-tooltip-container .swatch-attribute-options {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.akeans-swatch-tooltip-container .swatch-attribute.size .swatch-option{
    background: transparent;
    color: var(--secondary_color);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    height: auto;
    outline: none;
    padding: 6px 6px;
    border: none;
}
.akeans-swatch-tooltip-container .swatch-attribute.size .swatch-option span > strong,
.akeans-swatch-tooltip-container .swatch-attribute-options .swatch-option span.price,
.akeans-swatch-tooltip-container .swatch-attribute-options .swatch-option .flex-both-prices {
    display: none;
}
.akeans-swatch-tooltip-container .swatch-attribute.size .swatch-option:not(.disabled):hover,
.akeans-swatch-tooltip-container .swatch-attribute.size .swatch-option.selected{
    border: 2px solid rgb(25 26 56);
    padding: 4px 4px;
}
.swatch-option:focus {
	box-shadow: none;
}
.akeans-swatch-tooltip-open {
	text-align: center;
	cursor: pointer;
}
.products.wrapper ~ .toolbar .akeans-filter-popup-trigger-wrapper,
.message.info.empty ~ .toolbar.toolbar-products{
    display: none;
    visibility: hidden;
    opacity: 0;
}
.catalog-category-view .filter-options-title {
    padding: 0 20px 0 10px;
    text-transform: capitalize;
    color: var(--secondary_color);
}
.catalog-category-view .filter-options-item::after,
.catalog-category-view .filter-options-item.active::after,
.catalog-category-view .filter-options-item::before,
.catalog-category-view .filter-options-item.active::before {
    border: 5px solid transparent;
    left: 0;
    z-index: 3;
}
/*==== End Listing ====*/
/*==== Product Details ====*/
.catalog-product-view .page-main {
	width: 100%;
	max-width: 100%;
	padding: 0;
}
.catalog-product-view .page-main .columns{
    display: flex;
}
.product.media .gallery-placeholder .video-thumb-icon::after {
	background: none;
	content: '\f04b';
	height: 20px;
	top: 0;
	width: 20px;
	font-family: "Font Awesome 5 Free" !important;
	font-weight: 900;
	font-size: 20px;
	line-height: 20px;
    color:#D7D7D1;
}
.catalog-product-view .product-info-main {
    text-align: left;
}
.catalog-product-view .product-info-main .page-title-wrapper h1 {
    display: none;
}
.catalog-product-view .product-info-main .akeans-page-title-wrapper.product h1 {
    font-weight: 700;
    color: var(--secondary_color);
    font-family: 'Open Sans';
    margin-bottom: 0px;
    font-size: 28px;
}
.catalog-product-view .product-info-main .akeans-page-title-wrapper.product .brand-attr{
    color: #67737F;
    font-size: 14px;
}
.catalog-product-view .box-tocart .action.primary {
    background-color: var(--primary_color);
	vertical-align: unset;
	border: 1px solid var(--primary_color);
	border-radius: 12px;
	padding: 13px 20px;
	width: 100%;
	font-size: 16px;
	color: #fff;
	margin: 0;
	min-width: 350px;
    font-family: var(--title_font);
    font-weight: 700;
}
.catalog-product-view .box-tocart .action.primary:hover{
    background-color: var(--secondary_color);
    border-color: var(--secondary_color);
}
.catalog-product-view .product-add-form .box-tocart .field.qty {
    display: inline-grid;
    margin: auto;
    margin-right: 12px;
    text-align: center;
}
.catalog-product-view .product-info-main .box-tocart .fieldset{
    display: flex;
    justify-content: space-between;
    margin-bottom: 0 !important;
}
.catalog-product-view .product-add-form .box-tocart .actions {
    display: inline-block;
    margin-left: 17px;
    flex: 1 1 auto;
}
.catalog-product-view.page-product-grouped .product-add-form .box-tocart .actions {
    margin-left: 0;
}
.catalog-product-view .product-add-form .box-tocart .field.qty .label {
    display: none;
}
.catalog-product-view .product-info-main .product.attribute.overview {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    margin: 5px 0 1rem 0;
    color: #67737F;
}
.catalog-product-view .product-info-main .product.attribute.overview p {
    margin-bottom: 0;
}
.catalog-product-view .product-info-main .product-add-form {
    padding-top: 0;
}
.catalog-product-view.page-product-grouped .product-info-main .product-add-form {
    padding-top: 20px;
}
.catalog-product-view .product-info-main .product.attribute.overview strong{
    color: var(--secondary_color);
}
.catalog-product-view .product-info-main .product-info-price {
    display: none;
}
.catalog-product-view .product-info-main .product-info-stock-sku {
    display: none;
}
.catalog-product-view .product-info-main .product-social-links {
    display: none;
}
.catalog-product-view .breadcrumbs {
    display: none;
}
.catalog-product-view .table.grouped .col.item {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
    border-top: 0;
}
.catalog-product-view .table.grouped .product-item-name {
	margin: 0;
}
.catalog-product-view .table.grouped .product-image{
    display: flex;
}
.catalog-product-view .table.grouped .product-image .product-image-container{
    max-width: 75px !important;
}
.catalog-product-view .table.grouped .row-tier-price .prices-tier {
	margin-bottom: 0;
}
.catalog-product-view .table.grouped .row-tier-price .prices-tier .item {
	margin-bottom: 5px;
}
.catalog-product-view .table.grouped .col.qty {
	width: 20%;
	position: relative;
    vertical-align: middle;
    text-align: center;
}
.catalog-product-view .grouped .control.qty{
    width: max-content;
    display: inline-block;
}
.catalog-product-view .grouped .qty_control > button {
	appearance: none;
	background-color: transparent;
	padding: 0 5px;
    color: var(--secondary_color);
}
.catalog-product-view .box-tocart .control{
    position: relative;
    width: 100px;
}
.control.akeans-responsive-control {
	display: none;
}
.catalog-product-view .box-tocart input#qty,
.catalog-product-view .grouped .control input.qty {
    height: 50px;
	border-radius: 8px;
    font-size: 16px;
    position: relative;
    z-index: 1;
}
.catalog-product-view .box-tocart .control .control-qty,
.catalog-product-view .grouped .qty_control {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translatey(-50%);
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    flex-direction: row-reverse;
}
.catalog-product-view .box-tocart .control-qty .quantity-controls {
	font-size: 24px;
	color: var(--secondary_color);
}
.catalog-product-view .product.info.detailed {
    padding: 25px 30px 0;
    clear: none;
    float: left;
}
.catalog-product-view .info.detailed .product.data.items {
	display: flex;
	flex-direction: column;
}
.catalog-product-view .info.detailed .product.data.items .data.title {
	border-bottom: 1px solid #4D191A38;
    margin-bottom: 7px;
}
.catalog-product-view .info.detailed .product.data.items .data.switch{
    color: var(--body_color);
	font-size: 20px;
	font-family: var(--title_font);
	font-weight: 700;
	border: none;
	padding: 0px 0px 3px 0px;
    background-color: transparent;
}
.catalog-product-view .info.detailed .product.data.items .item.title a::after {
	display: block;
    right: 1px;
}
.catalog-product-view .info.detailed .product.data.items > .item.content {
	background: #fff;
	margin: 0 ;
	padding: 20px 20px !important;
	border: 0;
    transition: all 0.002s easy;
}
@media only screen and (max-width: 479px){
    .catalog-product-view .info.detailed .product.data.items > .item.content {
        padding: 20px 0px !important;
    }
}
.catalog-product-view .product.info.detailed .tab-inner-content table,
.catalog-product-view .product.info.detailed .tab-inner-content table td {
    border: 1px solid #4D191A38;
}
.catalog-product-view .product.info.detailed .tab-inner-content table td{
    border-bottom: 0;
    vertical-align: middle;
    padding: 10px 10px;
}
.catalog-product-view .product.info.detailed .label-notes {
    font-size: 75%;
    line-height: 1.3;
    margin-top: 2px;
}
.catalog-product-view .product.info.detailed .label-notes > span {
    display: block;
    white-space: nowrap;
}
.catalog-product-view .product-options-wrapper .swatch-attribute-options {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.catalog-product-view .product-options-wrapper .swatch-attribute-options .swatch-option{
    background-color: #fff;
    color: var(--secondary_color);
    font-size: 16px;
    font-weight: 400;
    padding: 5px 20px;
    height: 80px;
    border: 0.4px solid rgba(0,0,0,.3);
    border-radius: 8px;
    margin: 0 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 auto;
}
.catalog-product-view .product-options-wrapper .swatch-attribute-options .swatch-option:not(.disabled):hover, .catalog-product-view .product-options-wrapper .swatch-attribute-options .swatch-option.selected {
    background-color: #E8EAEC;
    outline: none;
}
.catalog-product-view .product-options-wrapper .swatch-attribute-options .swatch-option:nth-child(2n+1) {
	margin-left: 0;
}
.catalog-product-view .product-options-wrapper .swatch-attribute-options .swatch-option .label{
    display: flex;
    flex-direction: column;
    align-content: center;
    text-align: left;
    margin-right: auto;
    line-height: 28px;
}
.catalog-product-view .product-options-wrapper .swatch-attribute-options .swatch-option .label > strong{
    font-weight: 600;
    font-family: var(--body_font);
}
.catalog-product-view .product-options-wrapper .swatch-attribute-options .swatch-option .price {
	font-size: 20px;
	font-family: var(--title_font);
	margin-left: 20px;
}
.catalog-product-view .product-options-wrapper .swatch-attribute-options .swatch-option .complete-profile-price {
    font-size: 20px;
    font-family: var(--title_font);
    margin-left: 20px;
}
.catalog-product-configurable .product-options-wrapper .swatch-attribute-options .swatch-option .flex-both-prices .price {
    font-size: 20px;
}
.catalog-product-view .product-options-wrapper .swatch-attribute.size > .swatch-attribute-label,
.catalog-product-view .product-options-wrapper .swatch-attribute.size > .swatch-attribute-selected-option {
    display: none;
}
.catalog-product-view .additional-attributes-wrapper {
    font-size: 14px;
}
.catalog-product-view .additional-attributes-wrapper th {
    color: #67737F;
}
.catalog-product-view .product-info-price .price-box .price-container .price {
    font-size: 19px;
    line-height: 0;
    vertical-align: middle;
    color: var(--body_color);
}
.catalog-product-view .product-info-main .product-info-price .price-box {
    border: 1px solid #bbbfc4;
    border-radius: 6px;
    padding: 7px 17px;
    background-color: #e9ebed;
}
.catalog-product-view .column.main {
    margin-top: -74px;
}
.catalog-product-view .block.related {
	width: 100%;
	margin-bottom: 0;
}
.catalog-product-view .block.related .block-title{
    display: none;
    margin: 0 !important;
}
.catalog-product-view .block.related .block-content {
	background-color: var(--light_grey);
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.block.related .author-wrapper{
    vertical-align: top;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-content: center;
    align-items: center;
    padding: 1em 1em 0 1em;
    column-gap: 1em;
}
.block.related .author-wrapper .author-image {
	float: left;
	margin-right: 15px;
	max-width: 170px;
	max-height: 180px;
	overflow: hidden;
	text-align: center;
}
.block.related .author-wrapper .author-details-wrapper {
	color: var(--secondary_color);
	font-family: var(--title_font);
	width: 100%;
}
.block.related .author-wrapper .author-details-wrapper h5{
    font-weight: 700;
}
.block.related .author-wrapper .author-details-wrapper h4 {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
}
.catalog-product-view .block.related .block-actions{
    display: flex;
    font-family: var(--title_font);
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.catalog-product-view .block.related .block-actions .action-alt.select {
	border-radius: 12px;
	background-color: var(--secondary_color);
	padding: 5px 30px;
	color: #fff;
	font-weight: 700;
	border: 0;
}
.catalog-product-view .block.related .block-actions .action-alt.select:hover{
    background-color: var(--primary_color);
    text-decoration: none;
}
.catalog-product-view .block.related .block-actions .total {
	color: var(--secondary_color);
	font-weight: 600;
	font-size: 20px;
}
.catalog-product-view .block.related .block-actions .total > strong{
    font-weight: 600;
}
.catalog-product-view .akeans-related-products-toggle {
	margin-top: 15px;
	font-size: 14px;
	font-family: var(--body_font);
	color: var(--secondary_color);
	cursor: pointer;
}
.catalog-product-view .akeans-related-products-toggle::after{
    position: relative;
    margin-left: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: '\e622';
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    text-align: center;
}
.catalog-product-view .akeans-related-products-toggle.active::after{
    content: '\e621';
}
.catalog-product-view .block.related .products-related.related-active{
    clear: both;
    display: inline-block;
    margin: 0;
    padding: 0 15px;
}
.catalog-product-view .block.related .products-related.related-active .product-items{
    margin: 0;
    text-align: left;
}
.page-layout-1column .block.related .products-related .product-item{
    margin-left: 4.1666666625%;
    margin-bottom: 0;
    font-size: unset;
}
.page-layout-1column .block.related .products-related .product-item:nth-child(5n+1){
    margin-left: 0;
}
.catalog-product-view .block.related .products-related .product-item-actions {
    display: none;
}
.fbt-product-size select {
    font-size: 11px;
    height: 24px;
    padding: 3px 20px 4px 5px;
    background: #FFFFFF url(../images/select-bg.svg) no-repeat 107% 47%;
}
.block.related .products-related .product-item-details {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	margin-bottom: 15px;
	/* display: grid; */
	grid-template-columns: 1fr;
	grid-template-rows: 24px 47px;
	/* gap: 5px; */
	grid-auto-flow: row;
	grid-template-areas:
		"fbt-product-size"
		"product-item-name";
	grid-area: product-item-details;
	justify-items: stretch;
	align-items: start;
}
.block.related .products-related .product-item-name {
	margin: 10px 0 0;
	order: 2;
}
.block.related .products-related .product-item-name > a{
    font-size: 12px;
    color: var(--secondary_color);
    text-align: center;
    line-height: 14px;
    max-width: 100%;
}
.block.related .products-related .product-item-name > a:hover{
    color: var(--primary_color);
}
.block.related .products-related .price-box.price-final_price{
    order: 1;
    padding-right: 0;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
}
.block.related .products-related .field.choice {
	position: relative;
	top: 0;
	order: 0;
	height: 19px;
	left: 5px;
}
.block.related .products-related .field.choice input[type="checkbox"] {
	top: 14px;
}
.block.related .products-related .field.choice input:checked {
	background-color: var(--primary_color);
	appearance: none;
	width: 14px;
	height: 14px;
	position: relative;
	border-radius: 3px;
	margin-top: 0px;
	top: 14px;
}
.block.related .products-related .field.choice input:checked::after {
	content: "\f00c";
	color: #fff;
	font-weight: 700;
	font-size: 10px;
	font-family: "Font Awesome 5 Free" !important;
	position: absolute;
	top: 1.5px;
	left: 2.5px;
}
.block.related .products-related .field.choice input[type="checkbox"]:disabled::after{
    left: 2px;
}
.block.related .products-related .product-item-info{
    position: relative;
    padding-top: 0px;
}
.block.related .products-related .routine-attr {
	display: flex;
	position: absolute;
	width: 100%;
	text-align: center;
	top: 0;
	line-height: 14px;
	min-height: 14px;
	justify-content: center;
	align-items: flex-end;
    font-size: 12px;
}
.block.related .products-related .product-item-info:hover{
    background: transparent;
}
.catalog-product-view .product.info.detailed h2,
.catalog-product-view .product.info.detailed strong {
    font-family: var(--title_font);
    color: var(--secondary_color);
    font-size: 18px;
}
.catalog-product-view .product.info.detailed h2{
    font-size: 20px;
}
.catalog-product-view .product.info.detailed ul > li{
    list-style-type: disc;
}
.catalog-product-view .product-add-form .product-options-wrapper .mage-error{
    font-size: 0;
}
.modal-popup.add-to-cart-popup .modal-inner-wrap,
.modal-popup.add-to-cart-popup-secondary .modal-inner-wrap {
    max-width: 400px;
    width: 100%;
    text-align: center;
}
.modal-popup.add-to-cart-popup .modal-header,
.modal-popup.add-to-cart-popup-secondary .modal-header {
	justify-content: center;
    padding-bottom: 10px;
    padding-top: 5px;
}
.modal-popup.add-to-cart-popup .modal-title,
.modal-popup.add-to-cart-popup-secondary .modal-title {
	font-weight: 700;
    color: #e02b27;
    font-family: var(--title_font);
}
.modal-popup.add-to-cart-popup .modal-content,
.modal-popup.add-to-cart-popup-secondary .modal-content {
    border: 0;
}
.modal-popup.add-to-cart-popup .modal-footer,
.modal-popup.add-to-cart-popup-secondary .modal-footer {
	justify-content: center;
    padding-bottom: 15px;
    padding-top: 7px;
}
.modal-popup.add-to-cart-popup .modal-footer button,
.modal-popup.add-to-cart-popup-secondary .modal-footer button {
    background-color: var(--secondary_color);
    border: 0;
    border-radius: 8px;
    color: #fff;
    font-family: var(--title_font);
}
.modal-popup.add-to-cart-popup .modal-footer button:hover,
.modal-popup.add-to-cart-popup-secondary .modal-footer button:hover {
    background-color: var(--primary_color);
    border: 0;
}
.iframe-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	overflow: hidden;
}
.iframe-container iframe {
	position: absolute;
	width: 100%;
	height: 100%;
}
#attr_tab_ingredients\.tab .akeans-incred-title-wrapper{
    display: flex;
    justify-content: space-between;
    color: var(--secondary_color);
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
}
#attr_tab_ingredients\.tab .akeans-incred-data-wrapper .incred-row {
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
#attr_tab_ingredients\.tab .akeans-incred-data-wrapper .incred-row::after {
	position: absolute;
	width: 100%;
	border: 1px dotted #000;
	display: inline-block;
	content: "";
	z-index: 0;
	bottom: 6px;
}
#attr_tab_ingredients\.tab .akeans-incred-data-wrapper {
	padding: 3px 13px;
}
#attr_tab_ingredients\.tab .akeans-incred-data-wrapper .incred-row > h6 {
    font-size: 16px;
    background-color: #fff;
    z-index: 1;
    color: var(--body_color);
    font-weight: 400;
}
#attr_tab_ingredients\.tab .akeans-incred-data-wrapper .incred-row > span{
    background-color: #fff;
    z-index: 1;
}
#attr_tab_ingredients\.tab .akeans-incred-title-wrapper h3,
#attr_tab_ingredients\.tab .akeans-inactive-data-wrapper h3,
#attr_tab_ingredients\.tab .akeans-potential-data-wrapper h3,
#attr_tab_ingredients\.tab .akeans-conflicts-data-wrapper h3,
#attr_tab_ingredients\.tab .akeans-pregnancy-data-wrapper h3 {
    color: var(--secondary_color);
    font-style: italic;
    font-size: 16px;
    min-width: max-content;
    width: fit-content;
    display: inline-block;
}
@media only screen and (min-width: 768px) {
    #attr_tab_ingredients\.tab .akeans-incred-title-wrapper h3,
    #attr_tab_ingredients\.tab .akeans-inactive-data-wrapper h3,
    #attr_tab_ingredients\.tab .akeans-potential-data-wrapper h3,
    #attr_tab_ingredients\.tab .akeans-conflicts-data-wrapper h3,
    #attr_tab_ingredients\.tab .akeans-pregnancy-data-wrapper h3 {
        font-size: 16px;
    }
}
@media only screen and (max-width: 479px) {
    #attr_tab_ingredients\.tab .akeans-incred-title-wrapper .incred-purpose,
    #attr_tab_ingredients\.tab .akeans-incred-title-wrapper > h3,
    #attr_tab_ingredients\.tab .akeans-incred-title-wrapper h3,
    #attr_tab_ingredients\.tab .akeans-inactive-data-wrapper h3,
    #attr_tab_ingredients\.tab .akeans-potential-data-wrapper h3,
    #attr_tab_ingredients\.tab .akeans-conflicts-data-wrapper h3,
    #attr_tab_ingredients\.tab .akeans-pregnancy-data-wrapper h3 {
        font-size: 14px;
    }
}
#attr_tab_ingredients\.tab .akeans-inactive-data-wrapper h3::after,
#attr_tab_ingredients\.tab .akeans-potential-data-wrapper h3::after,
#attr_tab_ingredients\.tab .akeans-conflicts-data-wrapper h3::after,
#attr_tab_ingredients\.tab .akeans-pregnancy-data-wrapper h3::after {
    content: ":";
    display: inline-block;
    margin: 0 .5em 0 1px;
}
#attr_tab_ingredients\.tab .akeans-potential-data-wrapper h3,
#attr_tab_ingredients\.tab .akeans-conflicts-data-wrapper h3,
#attr_tab_ingredients\.tab .akeans-pregnancy-data-wrapper h3 {
    margin-top: 10px;
}
.akeans-potential-data-wrapper.logged-out span,
.akeans-conflicts-data-wrapper.logged-out span,
.akeans-pregnancy-data-wrapper.logged-out span {
    filter: blur(4px);
    -webkit-filter: blur(4px);
}
.akeans-potential-data-wrapper.logged-out a,
.akeans-conflicts-data-wrapper.logged-out a,
.akeans-pregnancy-data-wrapper.logged-out a {
    padding-left: 10px;
    color:var(--primary_color);
    font-size: 14px;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}
.catalog-product-view .page.messages {
	position: fixed;
	top: 60px;
	right: 0;
	z-index: 99;
}
.catalog-category-view .page.messages {
    position: fixed;
	top: 50%;
	right: 0;
	z-index: 99;
	transform: translateY(-50%);
}
#tab-label-additional,
#additional{
    display: none;
}
.page-product-bundle .bundle-options-container .bundle-options-wrapper,
.page-product-bundle .bundle-options-container .product-options-wrapper {
	float: none;
	width: 100%;
}
.bundle-options-container .block-bundle-summary {
	float: none;
	margin-top: 0;
	padding: 0;
	width: 100%;
}
.page-product-bundle .bundle-options-container .legend.title {
	font-size: 24px;
	font-weight: 600;
	color: var(--secondary_color);
	margin-bottom: 10px;
}
.bundle-options-container .product-options-wrapper {
	margin-bottom: 15px;
}
.product-info-main .bundle-actions {
	margin: 0 0 15px;
}
.product-info-main .bundle-actions .action.customize {
	width: 100%;
}
.bundle-options-container .action.back {
	margin-bottom: 10px;
}
.bundle-options-container .bundle-options-wrapper .option.field {
    margin: 0 0 10px;
    padding-top: 8px;
}
.bundle-options-container .bundle-options-wrapper .option.field .label{
    margin: 0;
}
.bundle-options-container .fieldset-bundle-options {
    margin: 0 0 10px;
}
.bundle-options-container .product-options-bottom {
	margin: 0 0 15px;
	padding-top: 15px;
}
.bundle-options-container .block-bundle-summary > .title,
.bundle-options-container .block-bundle-summary .bundle-summary .subtitle {
	margin-bottom: 15px;
	padding-bottom: 10px;
	color: var(--secondary_color);
	font-family: var(--title_font);
}
.bundle-options-container .block-bundle-summary > .title > strong,
.bundle-options-container .block-bundle-summary .bundle-summary > .subtitle {
	font-weight: 600;
	font-size: 20px;
	margin-top: 15px;
	margin-bottom: 15px;
}
.product-info-main .bundle-options-container .block-bundle-summary .box-tocart .action.tocart {
	margin-right: 0;
	width: 100%;
}
.bundle-options-container .block-bundle-summary .price-box {
	margin-bottom: 15px;
}
.bundle-options-container .block-bundle-summary .price-box .price-wrapper > .price{
    color: var(--secondary_color);
}
.bundle-actions {
	display: none;
}
.bundle-options-container .product-add-form {
    display: block;
}
.fieldset-bundle-options {
    display: none;
}
/*==== End Details ====*/
/*==== Modal Register ====*/
.modal-slide.login-sidebar .modal-header .modal-title {
    text-align: left;
}
.modal-slide.login-sidebar,
.modal-slide.forgotpassword-sidebar,
.modal-slide.profile-sidebar,
.modal-slide.edit-profile-sidebar {
	left: auto;
	right: 0;
	width: 100%;
}
.modal-slide.login-sidebar,
.modal-slide.forgotpassword-sidebar {
    max-width: 437px;
}
.modal-slide.mega-menu-slider{
    max-width: 100%;
    left : 0;
    float: left !important;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
    .modal-slide.mega-menu-slider {
        max-width: 80%;
    }
    .menu .shop-all-parent,
    .menu .column_mega_menu1,
    .menu ul.level1.submenu li.level2,
    .menu ul.level1.submenu li.level2 li.level3 {
        max-width: 100%;
        padding: 0;
        width: calc((100% - 60px)/3);
    }
}
@media only screen and (min-width: 1200px) {
    .modal-slide.mega-menu-slider {
        max-width: 60%;
    }
    .menu .shop-all-parent,
    .menu .column_mega_menu1,
    .menu ul.level1.submenu li.level2,
    .menu ul.level1.submenu li.level2 li.level3 {
        width: calc((100% - 80px)/3);
    }
}
.modal-slide.login-sidebar .loading-mask .loader img{
    width:32px;
}
.modal-slide.profile-sidebar{
    max-width: 730px;
}
.modal-slide.edit-profile-sidebar{
    max-width: 910px;
}
.modal-slide .modal-header {
    padding: 20px 40px;
    border-bottom: none;
    justify-content: center;
    color:var(--hover_color);
}
.modal-slide.login-sidebar .modal-header, .modal-slide.forgotpassword-sidebar .modal-header {
    justify-content: flex-start;
    align-items: center;
}
.modal-slide .modal-header .modal-title {
    font-weight: bold;
    font-size: 24px;
    overflow: hidden;
    text-align: center;
    font-family: var(--title_font);
    color: var(--body_color);
    width: 100%;
}
.modal-slide .action-close {
    right: 40px;
    top: 32px;
    line-height: 14px;
    margin: 0;
}
.modal-slide._inner-scroll .modal-content{
    height:100%;
    padding: 0 40px 40px;
    border-radius: 0;
    border:0;
}
.modal-slide.mega-menu-slider._inner-scroll .modal-content{
    padding: 0 10px 40px;
}
.modal-slide._inner-scroll.edit-profile-sidebar .modal-content {
    height: calc(100vh);
}
.modal-slide._inner-scroll.register-sidebar :has(.threeclearphoto) .modal-content{
    height: calc(100vh - 450px);
}
.modal-slide.aminicart .modal-content {
    height: 100vh;
}
.modal-slide._inner-scroll .modal-content .container {
	padding: 0;
}
#register_form fieldset p {
    line-height: 24px;
    text-align: left;
    margin-top: 10px;
}
#register_form fieldset .skip-form,
#register_form fieldset .previous-form{
    cursor: pointer;
    color: var(--secondary_color);
    font-weight: bold;
    position: relative;
    bottom: -7px;
    width: fit-content;
    margin: 0;
}
#register_form fieldset .skip-form {
    float: right;
}
#register_form fieldset .previous-form{
    float: left;
}
#register_form fieldset .skip-form:hover, #register_form fieldset .previous-form:hover, .modal-slide.aminicart .checkoutterms a:hover,
.account-terms a:hover{
    cursor: pointer;
    color:var(--primary_color)
}
.modal-slide.register-sidebar button.next-form,
.modal-slide.register-sidebar input.submit,
.modal-slide.edit-profile-sidebar input.popupactionedit {
    color: #ffffff;
    border: 0;
    border-radius: 8px;
    height: 57px;
    width: 100%;
    background: var(--secondary_color);
    font-size: 18px;
    font-family: var(--title_font);
    font-weight: 600;
}
.modal-slide.edit-profile-sidebar input.popupactionedit {
    bottom: 30px;
}
.amsl-social-login,
.amsl-social-login .amsl-title {
    background-color: transparent;
    font-size: var(--fontsize_body);
}
.amsl-social-login{
    padding: 0px 0px 10px 0px;
}
.amsl-social-login .amsl-title {
	background: none;
	max-width: 100%;
	border-radius: 0;
	padding: 0;
	position: relative;
	transform: none;
	display: flex;
	align-items: center;
}
.amsl-social-login .amsl-title::after,
.amsl-social-login .amsl-title::before,
.modal-slide.edit-profile-sidebar #profile_edit_form .photo .control .or::after,
.modal-slide.edit-profile-sidebar #profile_edit_form .photo .control .or::before {
	background-color: var(--secondary_color);
	content: "";
	display: inline-block;
	height: 1px;
	position: relative;
	opacity: 0.3;
	width: calc((100% - 30px)/2);
}
.amsl-social-login .amsl-title::before,
.modal-slide.edit-profile-sidebar #profile_edit_form .photo .control .or::before {
	margin-right: 10px;
}
.amsl-social-login .amsl-title::after,
.modal-slide.edit-profile-sidebar #profile_edit_form .photo .control .or::after {
	margin-left: 10px;
}
.amsl-social-login .amsl-buttons{
    padding: 0px 0px;
}
.amsl-button-wrapper.with-label.-rectangular .amsl-button.-google,
.amsl-button-wrapper.with-label.-rectangular .amsl-button.-google:hover {
    background: #F3F3F3;
    justify-content: center;
    margin: 0 0 15px 0;
    border-radius: 8px;
    height: 57px;
    border: none;
}
.amsl-button-wrapper.with-label.-rectangular .amsl-button.-google .amsl-text {
    color: #000000;
}
.amsl-button-wrapper.with-label.-rectangular .amsl-button.-facebook,
.amsl-button-wrapper.with-label.-rectangular .amsl-button.-facebook:hover {
    justify-content: center;
    border-radius:8px;
    height:57px;
    border: none;
}
.amsl-button-wrapper.with-label.-rectangular .amsl-button.-facebook .amsl-text {
    color: #ffffff;
}
.amsl-button-wrapper.with-label.-rectangular .amsl-button:focus,
.amsl-button-wrapper.with-label.-rectangular .amsl-button:hover:focus{
    outline:0px!important;
}
#register_form fieldset .form-group input:not([type=checkbox]):not([type=radio]):not([type=file]),
#register_form fieldset .form-group select,
.modal-slide.edit-profile-sidebar .step1 input:not([type=checkbox]):not([type=radio]):not([type=file]),
.modal-slide.edit-profile-sidebar .step1 select,
.modal-slide.edit-profile-sidebar .step1 textarea#additionalinfo{
    height: 40px;
    border-radius: 8px;
    border: 1px solid #c2c2c2;
    line-height: 18px;
}
.modal-slide.register-sidebar #register_form div[class^="col-"]{
    position: relative;
}
.modal-slide.register-sidebar #register_form div[class^="col-"] input[type="checkbox"] {
	margin: 0;
	top: 5px;
	position: absolute;
}
.modal-slide.register-sidebar #register_form div[class^="col-"] input[type="checkbox"] ~ label.multiselectlabel{
    padding-left: 20px;
}
.modal-slide.register-sidebar #register_form fieldset .form-group .multiselectlabel{
    font-weight:400;
}
#register_form fieldset .form-group input{
    font-size:16px;
}
.modal-slide.edit-profile-sidebar .step1 label,
.modal-slide.register-sidebar .col-6 label.multiselectlabel{
    line-height: 18px;
    color:var(--secondary_color)
}
.modal-slide.edit-profile-sidebar .step1 label:not(.multiselectlabel),
.modal-slide.profile-sidebar label {
    font-weight:600;
}
.modal-slide.edit-profile-sidebar .step1 > div{
    margin-bottom:20px;
}
#register_form fieldset .form-group select{
    font-size:14px;
}
#register_form .fas.fa-angle-left{
    margin:0 5px 0 0;
}
#register_form .fas.fa-angle-right{
    margin:0 0 0 5px;
}
.modal-slide.register-sidebar .threeimageupload {
    position: absolute;
    width: calc(100% - 64px);
    left: 50%;
    transform: translateX(-50%);
}
.modal-slide.register-sidebar .threeimageupload{
    bottom: 50px;
}
.modal-slide.register-sidebar fieldset .form-group.threeclearphoto,
.modal-slide.register-sidebar fieldset .form-group.threeclearphoto2,
.modal-slide.register-sidebar fieldset .form-group.threeclearphoto3,
.modal-slide.register-sidebar fieldset .form-group.threeclearphoto4 {
    width: 25%;
}
.modal-slide.register-sidebar fieldset .form-group.threeclearphoto .labelphoto,
.modal-slide.register-sidebar fieldset .form-group.threeclearphoto2 .labelphoto,
.modal-slide.register-sidebar fieldset .form-group.threeclearphoto3 .labelphoto,
.modal-slide.register-sidebar fieldset .form-group.threeclearphoto4 .labelphoto {
   padding: 13px 0;
}
.modal-slide.register-sidebar fieldset .form-group.threeclearphoto .input-text,
.modal-slide.register-sidebar fieldset .form-group.threeclearphoto2 .input-text,
.modal-slide.register-sidebar fieldset .form-group.threeclearphoto3 .input-text,
.modal-slide.register-sidebar fieldset .form-group.threeclearphoto4 .input-text {
    max-width: 100%;
}
.block-authentication .logintext {
    text-align: center;
}
.block-authentication .logintext h3, #popup-modal-forgot-password .logintext h3 {
    font-family: var(--title_font);
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    margin-bottom: 1em;
}
.block-authentication .logintext p {
    font-family: var(--body_font);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    padding: 20px 0px;
}
.step-header-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    column-gap: 5px;
}
.step-header {
    width: 50%;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
}
#register_form fieldset div.step1 p.steptitle,
.logintext h2 {
    font-family: var(--title_font);
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    color: var(--body_color);
    margin-bottom: 6px;
}
.block-customer-login .fieldset>.field.required>.label:after {
    display: none;
}
.block-customer-login .fieldset>.field.required>.label {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--title_font);
    color: var(--secondary_color);
}
.block-customer-login .control input.input-text,
.modal-slide.forgotpassword-sidebar input[id='email_address'] {
	height: 57px;
	border-radius: 8px;
}
.block-authentication .actions-toolbar > .secondary {
	display: block;
	text-align: center;
	position: relative;
	float: none;
	font-size: var(--fontsize_body);
	padding: 0;
	margin: 0;
	margin-top: 1em;
}
.block-authentication .actions-toolbar > .secondary .action {
    color: var(--primary_color);
    margin: 0;
    line-height: 19px;
}
.block-authentication .actions-toolbar > .secondary .action:hover {
    color: var(--secondary_color);
}
.block-authentication .actions-toolbar > .primary {
    margin-top: 1em;
}
.block-authentication .actions-toolbar > .primary,
.block-authentication .actions-toolbar > .primary button {
    width: 100%;
    height:57px;
}
.block-authentication .actions-toolbar > .primary button,
.modal-slide.forgotpassword-sidebar button[type=submit],
.backtologin,
button:active,
button:focus,
.modal-popup.modal-slide .modal-footer button
{
    background-color: var(--secondary_color);
    border-radius: 8px;
    border:0;
    color:white;
}
.block-authentication .actions-toolbar>.primary button:hover,
.modal-slide.forgotpassword-sidebar button[type=submit]:hover,
.backtologin:hover,
.modal-popup.modal-slide .modal-footer button:hover{
    background-color: var(--primary_color);
    color:white;
}
.block-authentication .actions-toolbar>.primary button span {
    color: #ffffff;
    font-family: var(--title_font)
}
.step6 ul li{
    color:black;
}
.modal-slide.register-sidebar .threeimageupload .phototips{
    font-size:20px;
    color:#2BBBDA;
    font-weight:600;
    margin-top:20px;
}
.block-authentication .actions-toolbar>.secondary .pwdtext {
    color: #67737F;
}
.modal-slide .action-close:before {
    color: var(--secondary_color);
    font-weight: bold;
}
.amsl-button-wrapper.with-label.-rectangular .amsl-button.-google {
    transition: all 0.5s ease;
}
.amsl-button-wrapper.with-label.-rectangular .amsl-button.-google.disabled {
    filter: grayscale(1);
}
.amsl-button-wrapper.with-label.-rectangular .amsl-button.-google .amsl-social-icon {
    border-radius: 50%;
    background-color: transparent;
}
.amsl-button-wrapper.with-label.-rectangular .amsl-button.-facebook .amsl-social-icon {
    border-radius: 50%;
}
.profile-popup-account .name,
.profile-popup-account .address-wrap,
.profile-popup-account .phone-value,
.profile-popup-account .dermalogistemail .dermalogistemail-value,
.profile-popup-account .dermatologistcompany,
.profile-popup-account .dermatologistname,
.profile-popup-account .dermatologistphone {
    color:var(--hover_color);
}
.profile-popup-account .row .col-7 div,
.profile-popup-account .row .col-8 div,
.profile-popup-account .row div:not(.profile-popup-account .dermatologisttitle,
.profile-popup-account .dermatologistcontent,
.profile-popup-account .dermatologistcontent .dermalogistemail) {
    padding-bottom:initial;
}
.modal-slide.profile-sidebar .profile-popup-account .row label .item {
	position: relative;
	padding-bottom: 0;
}
.profile-popup-account label .item > .hover-icon-customer {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    opacity: 0;
}
.profile-popup-account label .item:hover > .hover-icon-customer {
	opacity: 1;
	cursor: pointer;
}
.profile-popup-account .carousel-wrap {
	margin: 0 auto;
	width: 100%;
}
.profile-popup-account .owl-nav > div {
	margin-top: 0;
	top: 50%;
	transform: translatey(-50%);
}
.profile-popup-account .row.myprofiledermatologist{
    padding:20px 0px 10px 0px;
}
.modal-slide.edit-profile-sidebar .form-group.field.photo{
    padding-bottom:20px;
}
.modal-slide.edit-profile-sidebar .form-group.field.photo label{
    position:relative;
}
.profile-popup-account .row div span:nth-child(2):not(.profile-popup-account .name span){
    color:var(--hover_color);
    font-weight:400;
}
.profile-popup-account .name span, .profile-popup-account .dermatologisttitle .dermatologist{
    font-weight:600;
}
.profile-popup-account hr:nth-child(1){
    margin-bottom:0px;
}
.modal-slide.register-sidebar .field.photo{
    margin-bottom:5px;
    display: flex;
    flex-wrap: wrap;
}
.modal-slide.register-sidebar .currentroutinewithimg {
    width:fit-content;
}
.modal-slide.register-sidebar .currentroutinewithimg input[type='checkbox']{
    margin-top:10px;
}
.modal-slide.forgotpassword-sidebar .form.password .actions-toolbar{
    margin-bottom: 20px;
}
.modal-slide.forgotpassword-sidebar .form.password .actions-toolbar > .primary,
.modal-slide.forgotpassword-sidebar .form.password .actions-toolbar > .primary button {
    width: 100%;
    height: 57px;
}
.modal-slide.forgotpassword-sidebar .form.password.forget .fieldset:after {
    display: none;
}
.modal-slide.forgotpassword-sidebar .form.password .action.submit{
    margin: 0;
}
.modal-slide.forgotpassword-sidebar button.backtologin {
    background-color: white;
    border: 1px solid var(--secondary_color);
    color: var(--secondary_color);
    transition: var(--site_transition);
}
.modal-slide.forgotpassword-sidebar button.backtologin:hover {
    background-color: var(--secondary_color);
    color: white;
}
.modal-slide.edit-profile-sidebar .form-group.field.photo label > .hover-icon-default,
.modal-slide.edit-profile-sidebar .form-group.field.photo label > .hover-icon-customer {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary_color);
    cursor: pointer;
}
.modal-slide.edit-profile-sidebar .form-group.field.photo label:hover > .hover-icon-default,
.modal-slide.edit-profile-sidebar .form-group.field.photo label:hover > .hover-icon-customer {
    display: block;
}
.modal-slide.edit-profile-sidebar .form-group.field.photo label > .hover-icon-default:hover,
.modal-slide.edit-profile-sidebar .form-group.field.photo label > .hover-icon-customer:hover {
    color: var(--primary_color);
}
.modal-slide.edit-profile-sidebar .form-group input[type="checkbox"]{
    top: 2px;
}
.modal-slide.edit-profile-sidebar .form-group input[type="text"]:read-only{
    background-color : #e1e1e1;
}
.modal-slide.edit-profile-sidebar .change-address-link{
    color: var(--body_color);
    font-size: 12px;
    text-decoration: underline;
}
.modal-slide.register-sidebar .mytooltip .mytext,
.modal-slide.edit-profile-sidebar .mytooltip .mytext {
	display: none;
	height: auto;
	width: 200px;
	box-shadow: 0 0 5px 2px rgb(0 0 0 / 7%);
	z-index: 1;
	bottom: 102%;
	box-sizing: border-box;
	left: 0;
	text-align: left;
	padding: 10px;
	color: black;
	position: absolute;
}
.modal-slide.register-sidebar .mytooltip object ~ .mytext{
	bottom: 100%;
    left: auto;
	right: 0;
}
 .modal-slide.register-sidebar .currentroutinewithimg .customimage-0{
    width:100px;
 }
 .modal-slide.register-sidebar .currentroutinewithimg .customimage-1{
    width:100px;
 }
 .modal-slide.register-sidebar .currentroutinewithimg .customimage-2{
    width:100px;
 }
 .modal-slide.register-sidebar .currentroutinewithimg .customimage-3{
    width:100px;
 }
 .modal-slide.register-sidebar .currentroutinewithimg .customimage-4{
    width:100px;
 }
.modal-slide.register-sidebar .mytooltip,
.modal-slide.edit-profile-sidebar .mytooltip  {
    position: relative;
    display: inline-block;
 }
 .modal-slide.register-sidebar .mytooltip .mytext::after,
 .modal-slide.edit-profile-sidebar .mytooltip .mytext::after {
	content: "";
	position: absolute;
	top: 100%;
	right: 80%;
	margin-top: -5px;
	border-width: 6px;
	border-style: solid;
	border-color: transparent white transparent transparent;
}
.modal-slide.register-sidebar .mytooltip object ~ .mytext::after {
	right: 30%;
}
 .modal-slide.register-sidebar .mytooltip .mytext .sndline div,
 .modal-slide.edit-profile-sidebar .mytooltip .mytext .sndline div {
     margin-top: 0px;
     line-height: 15px;
 }
 .modal-slide.register-sidebar .mytooltip:hover .mytext,
 .modal-slide.edit-profile-sidebar .mytooltip:hover .mytext {
    display: block;
    background-color: white;
    line-height: 20px;
 }
 .modal-slide.register-sidebar .mytext .fstline,
 .modal-slide.edit-profile-sidebar .mytext .fstline {
    font-size: 14px;
    color: var(--secondary_color);
 }
 .modal-slide.register-sidebar .mytext .sndline .secondline,
 .modal-slide.edit-profile-sidebar .mytext .sndline .secondline{
    font-size: 10px;
    font-family: var(--body_font);
    color: var(--secondary_color);
 }
 .modal-slide.register-sidebar .mytext .sndline .thirdline,
 .modal-slide.edit-profile-sidebar .mytext .sndline .thirdline{
    font-size: 10px;
    color: var(--body_color);
 }
 .modal-slide.register-sidebar .field.photo .control {
	margin-left: 10px;
}
 .modal-slide.register-sidebar .threeclearphoto label {
    padding: 13px 0px;
    width: 100%;
}
.modal-slide.edit-profile-sidebar .threeclearphoto label{
    text-align: center;
    background-color: #2BBBDA;
    padding: 16px 0px;
    width: 100%;
    border-radius: 8px;
    cursor:pointer;
    color:white;
}
.modal-slide.edit-profile-sidebar .input-radion:checked + label,
.modal-slide.register-sidebar .input-radion:checked + label {
    border: 3px solid #00a3ff;
}
.modal-slide.edit-profile-sidebar .step1 .photo .control{
    float:right;
}
.modal-slide.profile-sidebar .extrabuttonsmyprofile a{
    color: var(--secondary_color);
    background: white;
    padding: 13px !important;
    font-size: 16px;
    height: inherit;
    font-weight: 400;
    margin-top: 20px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--hover_color);
}
.modal-slide.profile-sidebar .extrabuttonsmyprofile a img{
    margin-right:10px;
    height:30px;
}
.modal-slide.profile-sidebar .edit-profile{
    position: relative;
}
.modal-slide.profile-sidebar .more-info div[data-role="trigger"]{
    width: fit-content;
    margin-top: 20px;
    padding-right: 20px;
    position: relative;
    cursor: pointer;
}
.modal-slide.profile-sidebar .more-info .allow > div::after,
.modal-slide.profile-sidebar .more-info div[data-role="trigger"]::after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    line-height: inherit;
    color: inherit;
    content: '\e622';
    font-family: 'luma-icons';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;

}
.modal-slide.profile-sidebar .more-info .allow.false > div::after{
    content: '\e621';
}
.modal-slide.profile-sidebar .more-info .more-content-box[aria-hidden="false"]{
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px 6%;
}
.modal-slide.profile-sidebar .more-info .more-content-box > div{
    width: 47%;
}
.modal-slide.profile-sidebar .more-info .more-content-box > div > span{
    width: 100%;
    display: block;
}
.modal-slide.register-sidebar .threeclearphoto label span:before,
.modal-slide.edit-profile-sidebar .threeclearphoto label span:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content:'\f00c';
}
.modal-slide.profile-sidebar img.photo_image,
.modal-slide.edit-profile-sidebar .form-group.field.photo img.profilephoto,
.modal-slide.edit-profile-sidebar .carousel-wrap .item img {
    border-radius:10px;
    text-align: center;
    overflow: hidden;
    object-fit: cover;
}
.modal-slide.edit-profile-sidebar .form-group.field.photo img.profilephoto:hover{
    cursor:pointer;
}
.modal-slide.profile-sidebar .extrabuttonsmyprofile a:hover{
    background:var(--hover_color);
    color:white;
}
button.next-form:hover, input.submit:hover, .modal-slide.edit-profile-sidebar input.popupactionedit:hover{
    background: var(--primary_color);
    color:#ffffff;
}
.modal-slide.profile-sidebar textarea.aesrecommendation-frontend{
    border-radius:10px;
    border:2px solid var(--secondary_color);
    margin-top:30px;
}
.modal-slide.profile-sidebar textarea.aesrecommendation-frontend {
    margin-left: 7.5px;
    margin-right: 7.5px;
    width: calc(100% - 15px);
}
.modal-slide.register-sidebar .progress-bar-striped{
    background-color: var(--primary_color);
    font-size:10px;
}
.modal-slide.register-sidebar .progress{
    height:15px;
}
.modal-slide.register-sidebar .skincolor .skininput input[type=radio],
.modal-slide.edit-profile-sidebar .skincolor .skininput input[type=radio]{
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.modal-slide.register-sidebar .skincolor input[type=radio]:checked + .skininput,
.modal-slide.edit-profile-sidebar .skincolor input[type=radio]:checked + .skininput{
    outline: 2px solid #f00;
}
.modal-slide.register-sidebar button.action-close {
    visibility: hidden;
}
#register_form fieldset .form-group{
    margin-top:5px;
}
#register_form fieldset .otherconcerns label{
    cursor:pointer;
}
#register_form fieldset .form-group.col-6.routinemeetingexpectation{
    width:100%;
}
.customer-name.profile-popup-trigger::before{
    content: "\f007";
    font-family: "Font Awesome 5 Free";
    color: var(--secondary_color);
    font-weight: 900;
    font-size: 16px;
}
#register_form fieldset .form-group label {
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    color: var(--body_color);
    margin-bottom: 5px;
}
.modal-slide.edit-profile-sidebar .input-radion,
.modal-slide.register-sidebar .input-radion {
    display:none;
}
.modal-slide.edit-profile-sidebar .step1 .photo label.label{
    display:none;
}
#register_form fieldset .form-group input._has-datepicker{
    width:calc(100% - 35px)
}
.modal-slide.register-sidebar,
.modal-slide.profile-sideba {
    left:55%;
}
/*==== End Modal Register ====*/

/*=====Minicart=====*/
.modal-slide.aminicart{
    width:100%;
    max-width: 515px;
}
.modal-slide.aminicart .button-action.minus:before,
.modal-slide.aminicart .button-action.plus:before{
    font-family: 'Font Awesome 5 Free';
    font-size:10px;
    color:var(--hover_color);
    font-weight: 600;
}
.modal-slide.aminicart .button-action:hover{
    background-color:var(--hover_color);
}
.modal-slide.aminicart .button-action.minus:before{
    content: '\f068';
}
.modal-slide.aminicart .button-action.plus:before{
    content:'\f067';
}
.modal-slide.aminicart .button-action:hover::before{
    color:white;
}
.modal-slide.aminicart .minicart-items .item-qty {
	border: 0;
	width: 30px;
	height: 27px;
	padding: 0px;
	font-size: 16px;
	font-weight: 400;
	color: var(--secondary_color);
}
.modal-slide.aminicart .button-action{
    border: 1px solid transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #E3E7EB;
    margin: 0;
    width: 24px;
    height: 18px;
    cursor:pointer;
}
.modal-slide.aminicart .product.actions .product.name .product-name{
    line-height: 16px;
    margin-top: 10px;
}
.modal-slide.aminicart .product-hover {
    overflow: hidden;
}
.modal-slide.aminicart .products-grid .product-item .product-item-photo .btn,
.modal-slide.aminicart .product.actions .product.name{
    padding: 0px;
    width: 100%;
    border: 0;
    text-align: center;
}
.modal-slide.aminicart .products-grid .product-item .product-item-photo button.tocart{
    margin-right: 0px;
    border-radius: 0px 0px 10px 10px;
    height: 35px;
    font-size: 14px;
    padding: 0;
}
.modal-slide.aminicart .minicart-items .update-cart-item{
    background-color: var(--hover_color);
    color:white;
    border-radius:5px;
    vertical-align: middle;
}
.modal-slide.aminicart .minicart-items .update-cart-item:hover{
    background-color:var(--primary_color);
}
.modal-slide.aminicart .block-minicart .block-content > .actions > .primary .action.primary{
    width:100%;
    border-radius:10px;
}
.modal-slide.aminicart #top-cart-btn-checkout:before{
    content: '\f023';
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    font-size: 15px;
    margin: 0 10px 0 0;
    top: -2px;
}
.modal-slide.aminicart .minicart-items .product-item-pricing .label,.modal-slide.aminicart .price-container .weee:after{
    display:none;
}
.modal-slide.aminicart .minicart-items .product-item-details .price-container{
    float:right;
    color:var(--secondary_color);
}
.modal-slide.aminicart .minicart-items .product-item-details .price-container .price{
    font-weight:500;
}
.modal-slide.aminicart .minicart-wrapper .product .actions:not(.modal-slide.aminicart .product .hover-box .product.actions){
    position:absolute;
    right:0;
    top: 12px;
    margin:0;
}
.modal-slide.aminicart .minicart-wrapper .product .actions{
    margin:0;
    float: none;
}
.modal-slide.aminicart .container{
    padding:0px;
}
.modal-slide.aminicart hr.checkoutupsell{
    margin: 15px 0;
}
.modal-slide.aminicart .upsell-content .product-items, .modal-slide.aminicart .minicart-items .product-item-details .details-qty, .modal-slide.aminicart .block-minicart dl.product.options.list{
    margin:0;
}
.modal-slide.aminicart .modal-header{
    justify-content: left;
    color:var(--secondary_color);
    background-color: transparent;
    min-height:60px;
}
.modal-slide.aminicart .minicart-items .product-item-name a{
    color:var(--secondary_color);
    font-family:var(--title_font);
    font-size:16px;
    font-weight:700;
}
.modal-slide.aminicart .minicart-items .product-item-name a:hover{
    text-decoration: none;
}
.modal-slide.aminicart .product-item .price-box span.price-container .price, .modal-slide.aminicart .product-item-info a.product-item-link{
    font-size:14px;
}
.modal-slide.aminicart .product-item .price-box span.price-container .price .price-box{
    margin-top:5px;
}
.modal-slide.aminicart .block-minicart .block-title.custom{
    position: fixed;
    top: 22px;
    color: var(--body_color);
}
.modal-slide.aminicart .block-minicart .block-title.custom div{
    font-size:24px;
    font-weight: 700;
    font-family: var(--title_font);
}
.modal-slide.aminicart .minicart-mycart-count {
    margin-left: -5px;
    margin-right: -5px;
}
.modal-slide.aminicart .modal-header .modal-title{
    visibility:hidden;
}
.modal-slide.aminicart .cart-totals tbody .amount{
    padding: 6px 0 6px 14px;
}
.modal-slide.aminicart .modal-header button[type="button"].action-close:before{
    color:var(--secondary_color);
}
.modal-slide.aminicart .block-footer{
    height: fit-content;
    margin-bottom: 5px;
}
.modal-slide.aminicart .cart-totals,
.modal-slide.aminicart .block-items{
    border-top:none;
    border-bottom:none;
    padding:0;
}
.modal-slide.aminicart .cart-totals .table-totals{
    margin-bottom: 6px;
}
.modal-slide.aminicart .minicart-items-wrapper {
    padding:0px;
}
.modal-slide.aminicart .minicart-items-wrapper .minicart-items li > .product {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.modal-slide.aminicart .minicart-items-wrapper .minicart-items li.product-item{
    cursor:auto;
    padding: 5px 0;
}
.modal-slide.aminicart .products-grid .product-item .product-item-wrapper > .product-item-photo{
    width: 100%;
    background-color: transparent;
    min-height: auto;
}
.page-products .modal-slide.aminicart .upsell-products .product-image-wrapper .product-image-container {
	position: relative;
	top: auto;
	left: auto;
	transform: none;
}
.modal-slide.aminicart a.product-item-photo > .product-image-wrapper{
    height: auto;
    border-radius:8px 8px 0px 0px;
}

.modal-slide.aminicart a.product-item-photo > .product-image-wrapper {
    background-color: var(--light_grey);
}

.modal-slide.aminicart .product-image-wrapper img{
    max-height: 100%;
    width: auto;
}
.modal-slide.aminicart .minicart-items .product-image-container{
    min-width:100px;
}
.modal-slide.aminicart .minicart-items .product-image-container .product-image-wrapper{
    height:100px;
    width:100px;
}
.modal-slide.aminicart .minicart-items .product-item-details{
    position: relative;
    padding-left: 20px;
    flex-grow: 1;
}
.modal-slide.aminicart .product-item-info a.product-item-link, .modal-slide.aminicart .products-grid .price-box.price-final_price{
    font-weight: 600;
    text-align: center;
}
.modal-slide.aminicart .products-grid .product-item .product-item-photo .product.actions btn{
    padding-left:0;
}
.modal-slide.aminicart .block-footer .cart-totals table tbody{
    border-top:0px;
}
.modal-slide.aminicart .minicart-wrapper .block-minicart .block-title, .modal-slide.aminicart .productUpsell{
    margin:0;
}
.account-terms {
    display: block;
    position: fixed;
    bottom: 20px;
    padding: 0 40px 0 0;
}
.modal-slide.aminicart .checkoutterms,
.account-terms {
    font-size:12px;
    color:#67737F;
    text-align: center;
}
.modal-slide.aminicart .checkoutterms a,
.account-terms a{
    text-decoration:underline;
    color:var(--hover_color);
}
.modal-slide.aminicart .productUpsell .item.product.product-item{
    width:33.33%;
}
.modal-slide.aminicart .productUpsell .owl-item > .item.product.product-item{
    width:100%;
}
.modal-slide.aminicart .upsell-product .upsell-content .title .block-upsell{
    font-size:24px;
    color:var(--hover_color);
    font-weight:600;
}
.modal-slide.aminicart .cart-totals tbody .amount .price span.price{
    color:var(--hover_color);
    font-size:18px;
    font-family: var(--title_font);
    font-weight:700;
}
.modal-slide.aminicart .action-close{
    margin: 0px 2px 0px 0px;
}
.modal-slide.aminicart .modal-content{
    margin-top: 10px;
    margin-bottom: 0;
    overflow-y: auto;
}
.modal-popup .modal-inner-wrap{
    max-width:50rem;
    width: 95%;
}
.modal-popup.confirm .modal-content, .modal-popup .modal-header, .modal-popup .modal-footer{
    border:0;
}
.modal-popup .modal-footer{
    justify-content:flex-start;
}
.modal-popup .action-primary, .modal-popup .action-secondary{
    border-radius:8px;
    background-color: var(--hover_color);
    color:white;
    border: 0;
}
.modal-popup .action-primary:hover, .modal-popup .action-secondary:hover{
    background-color:var(--primary_color);
}
.aminicart .block-minicart .block-footer > .actions {
	position: relative;
	display: inline-block;
	margin-top: 0;
}
.modal-slide.aminicart .productUpsell .carousel-wrap{
    margin: 0;
    width: 100%;
    padding: 0;
}
.modal-slide.aminicart .productUpsell .carousel-wrap .owl-stage-outer{
    margin: 0 auto;
}
.modal-slide.aminicart .productUpsell .carousel-wrap .owl-nav .owl-prev{
    left:-15px;
}
.modal-slide.aminicart .productUpsell .carousel-wrap .owl-nav .owl-next{
    right:-15px;
}
/* Added by DBoss for product page FBT + Upsell fix */
.catalog-product-view .modal-slide.aminicart .productUpsell .carousel-wrap .owl-nav .owl-prev {
    background: none;
    left: -25px;
}
.catalog-product-view .modal-slide.aminicart .productUpsell .carousel-wrap .owl-nav .owl-next {
    background: none;
    right: -25px;
}
@media only screen and (max-width:768px) {
    .catalog-product-view .modal-slide.aminicart .productUpsell .carousel-wrap .owl-nav .owl-prev {
        left: -15px;
    }
    .catalog-product-view .modal-slide.aminicart .productUpsell .carousel-wrap .owl-nav .owl-next {
        right: -15px;
    }
}

.modal-slide.aminicart .minicart-items .product-item-name {
	margin: 0 15% 0 0;
}
/*=====End Minicart=====*/

/*==== Modal Checkout ====*/
.modal-slide.checkout-login-sidebar{
    max-width: 730px;
}
.checkout-login-sidebar.modal-slide._inner-scroll .modal-content:not(.modal-slide.profile-sidebar .modal-content) {
	height: 100vh;
	overflow-y: auto;
    justify-content: center;
}
.checkout-login-sidebar .logintext,
.checkout-login-sidebar .block-authentication .logintext h2 {
    text-align: left;
    margin-bottom: 15px;
}
.checkout-login-sidebar .popup-guest-action .action.checkout{
    width: 100%;
    text-align: center;
    border-radius: 8px;
    line-height: 36px;
    margin: 0 0 20px;
    font-size: 18px;
}
.checkout-login-sidebar .modal-header{
    display: none;
}
.checkout-login-sidebar .popup-header-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    font-size: 18px;
    font-family: var(--title_font);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: #fff;
}
.checkout-login-sidebar .popup-header-top .akeans-backto-cart{
    font-weight: 600;
}
.checkout-login-sidebar .block-customer-login .control input[id="ajaxlogin-email"],
.checkout-login-sidebar .block-customer-login .control input[id="ajaxlogin-pass"] {
	height: 50px;
	border-radius: 8px;
}

/* Float checkout login to center */
.checkout-login-sidebar .block-authentication {
    height: 100%;
}
.checkout-login-sidebar .block.block-customer-login {
    height: 100%;
}
.checkout-login-sidebar .popup-login-wrapper {
    display: flex;
    margin-top: 20px;
    flex-direction: column;
}
/* End checkout login float */

.checkout-login-sidebar .block-authentication .actions-toolbar {
	margin-bottom: 10px;
}
.checkout-login-sidebar .block-authentication .actions-toolbar > .secondary {
	top: 0px;
	margin: 0 0 20px;
	padding-top: 0;
}
.checkout-login-sidebar .block-authentication .actions-toolbar > .secondary .action {
	margin-top: 0;
}
.checkout-login-sidebar .block-authentication .actions-toolbar > .primary,
.checkout-login-sidebar .block-authentication .actions-toolbar > .primary button {
	height: 50px;
	margin-right: 0;
}
.checkout-login-sidebar .amsl-social-login,
.checkout-login-sidebar .amsl-social-login .amsl-title {
	padding: 0;
    transform: none;
    position: relative;
}
.checkout-login-sidebar .amsl-social-login .amsl-buttons {
	padding: 15px 0 0;
}
.checkout-login-sidebar .amsl-button-wrapper.with-label.-rectangular .amsl-button.-google,
.checkout-login-sidebar .amsl-button-wrapper.with-label.-rectangular .amsl-button.-google:hover,
.checkout-login-sidebar .amsl-button-wrapper.with-label.-rectangular .amsl-button.-facebook,
.checkout-login-sidebar .amsl-button-wrapper.with-label.-rectangular .amsl-button.-facebook:hover {
	border-radius: 8px;
	height: 50px;
}
.modal-slide.checkout-popup-sidebar {
	max-width: 730px;
	left: auto;
	width: 100%;
}
.modal-slide.checkout-popup-sidebar .action.primary.button,
.modal-slide.checkout-popup-sidebar .action.action-show-popup,
.modal-slide.checkout-popup-sidebar .step-content .action.action-back {
    font-size: 16px !important;
    font-family: var(--title_font);
}
.modal-slide.checkout-popup-sidebar .modal-header{
   display: none;
}
.modal-slide.checkout-popup-sidebar .opc-progress-bar{
    margin-bottom: 0;
    flex: 1 1 auto;
    padding: 0 20px;
}
.modal-slide.checkout-popup-sidebar .opc-progress-bar-item{
    width: 25%;
    pointer-events: none;
}
.modal-slide.checkout-popup-sidebar .opc-progress-bar-item._complete {
	pointer-events: auto;
}
.modal-slide.checkout-popup-sidebar .opc-progress-bar-item > span::after {
	height: 36px;
	margin-left: -18px;
	top: 1px;
	width: 36px;
	color: var(--secondary_color);
    line-height: 33px;
    /* DBoss Modal Checkout Edit */
    color: #cccccc;
}
.modal-slide.checkout-popup-sidebar .opc-progress-bar-item._active > span::after {
	border-color:var(--secondary_color);
	font-family: var(--body_font);
	content: counter(i);
    /* DBoss Modal Checkout Edit */
    color: #333333;
}
.modal-slide.checkout-popup-sidebar .opc-progress-bar-item::before{
    height: 2px;
}
.modal-slide.checkout-popup-sidebar .opc-progress-bar-item._active > span::before,
.modal-slide.checkout-popup-sidebar .opc-progress-bar-item._active::before,
.modal-slide.checkout-popup-sidebar .opc-progress-bar-item._complete > span::before,
.modal-slide.checkout-popup-sidebar .opc-progress-bar-item._complete::before,
.modal-slide.checkout-popup-sidebar .opc-progress-bar-item._complete > span::after {
	background: var(--secondary_color);
	border-color: var(--secondary_color);
}
.modal-slide.checkout-popup-sidebar .opc-progress-bar-item._complete > span::after {
    color: #fff;
}
.modal-slide.checkout-popup-sidebar .opc-progress-bar-item._complete > span {
	color: var(--body_color);
}

.modal-slide.checkout-popup-sidebar .opc-wrapper {
	width: 100%;
	padding-right: 0;
}
.modal-slide.checkout-popup-sidebar .items-in-cart {
	margin: 5px 0 15px;
}
.modal-slide.checkout-popup-sidebar .items-in-cart .title > strong{
    cursor: pointer;
    font-size: 16px;
}
.modal-slide.checkout-popup-sidebar .items-in-cart.active .title > strong::after{
    content: '\e621';
}
.modal-slide.checkout-popup-sidebar .opc-wrapper .step-content {
	margin: 0;
}
.modal-slide.checkout-popup-sidebar .form-login{
    padding-bottom: 0;
}
.modal-slide.checkout-popup-sidebar .form-login > .fieldset {
    margin: 0;
}
.modal-slide.checkout-popup-sidebar .form-login > .fieldset > div.field {
	position: absolute;
    left: -9999px;
}
.modal-slide.checkout-popup-sidebar .form-login .action.login.primary {
	height: 50px;
	width: 100%;
	margin: 0 0 10px 0;
    font-size: 20px;
}
.modal-slide.checkout-popup-sidebar .form-shipping-address,
.modal-slide.checkout-popup-sidebar .form-login {
    max-width: 100%;
    width: 100%;
    margin: 0;
}
/* 2.4.5-p1 Shipping Address Fix */
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .step-title{
    display: none;
}
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address > .field{
    float: left;
    width: 100%;
}
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.firstname"],
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.lastname"],
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.street.0"],
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.street.1"],
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.telephone"],
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.custom_email"] {
    width: calc((100% - 30px) / 2);
}
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.region_id"],
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.city"],
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.postcode"] {
    width: calc((100% - 60px) / 3);
}
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .field[name="shippingAddress.lastname"],
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .field[name="shippingAddress.street.1"],
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.city"],
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.postcode"],
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.telephone"] {
    margin-left: 30px;
}
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.street.0"],
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.street.1"] {
    float: left;
}
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.street.1"] {
    margin-top: 0px;
}
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address.login-available .field[name="shippingAddress.custom_email"],
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address.login-available .field[name="shippingAddress.telephone"] {
    margin-bottom: 0px;
}
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field.street .field[name="shippingAddress.street.2"],
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.country_id"],
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address.login-available .field[name="shippingAddress.firstname"],
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address.login-available .field[name="shippingAddress.lastname"],
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address.login-available .field[name="shippingAddress.region_id"],
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address.login-available .field[name="shippingAddress.city"],
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address.login-available .field[name="shippingAddress.postcode"],
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address.login-available .field.street,
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address.login-available .field.field-pro-uploader {
    display: none;
}
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .field .control._with-tooltip input {
	margin-right: 0;
	width: 100%;
}
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .field .control._with-tooltip .field-tooltip {
    display: none;
}
.modal-slide.checkout-popup-sidebar .checkout-shipping-method .actions-toolbar > .primary,
.modal-slide.checkout-popup-sidebar .action.primary.button {
	width: 100%;
    height: 50px;
}
.product-item-details .item-options .billing-cycle-delivery,
.product-item-details .item-options .free-trials,
.product-item-details .item-options .free-shipping-on-this-product,
.product-item-details .item-options .subscription-start-date,
.product-item-details .item-options .subscription-end-date {
    display: none;
}
.modal-slide.checkout-popup-sidebar .opc-wrapper .minicart-items-wrapper {
	margin: 0;
	padding: 0;
}
.modal-slide.checkout-popup-sidebar .opc-wrapper .minicart-items-wrapper .product-item{
    margin: 10px 0;
    padding: 0;
}
.modal-slide.checkout-popup-sidebar .opc-wrapper .minicart-items-wrapper .product-item .product{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.modal-slide.checkout-popup-sidebar .opc-wrapper .minicart-items .product-item-details {
	padding-left: 10px;
}
.modal-slide.checkout-popup-sidebar .opc-wrapper .minicart-items .product-item-details .subtotal {
    margin-top: 7px;
    display: block;
}
.modal-slide.checkout-popup-sidebar .opc-wrapper .minicart-items .product-item-name {
	font-weight: 500;
}
.modal-slide.checkout-popup-sidebar .actions-toolbar > .primary{
    width: 100%;
}
.modal-slide.checkout-popup-sidebar .opc-sidebar.opc-summary-wrapper {
	margin: 0;
	width: 100%;
}
.modal-slide.checkout-popup-sidebar .opc-sidebar.opc-summary-wrapper .modal-header{
    display: none;
}
.modal-slide.checkout-popup-sidebar .opc-sidebar.opc-summary-wrapper .modal-content{
    padding: 0;
    overflow: hidden;
}
.modal-slide.checkout-popup-sidebar .opc-sidebar.opc-summary-wrapper .opc-block-summary {
	background: transparent;
	margin: 0;
	padding: 0;
}
.modal-slide.checkout-popup-sidebar .opc-sidebar.opc-summary-wrapper .modal-inner-wrap{
    box-shadow: none;
}
.modal-slide.checkout-popup-sidebar .form-discount .actions-toolbar > .primary .action{
    margin: 20px 0 0 0;
    height: 50px;
    width: 100%;
}
.modal-slide.checkout-popup-sidebar .discount-code {
    width: 50%;
    float: left;
    margin-top: 34px;
    padding-right: 7.5px;
}
.modal-slide.checkout-popup-sidebar .discount-code .payment-option-title {
	margin-bottom: 10px;
}
.modal-slide.checkout-popup-sidebar .discount-code .payment-option-title > span.action{
    position: relative;
    padding-left: 20px;
    cursor: pointer;
}
.modal-slide.checkout-popup-sidebar .discount-code .payment-option-title > span.action::before {
	content: "+";
	position: absolute;
	font-size: 25px;
	line-height: 19px;
	cursor: pointer;
	display: inline-block;
	left: 0;
	top: 0px;
}
.modal-slide.checkout-popup-sidebar .discount-code .payment-option-title > span.action > span{
    text-decoration: underline;
}
.modal-slide.checkout-popup-sidebar .table-checkout-shipping-method {
	min-width: 100%;
}
.modal-slide.checkout-popup-sidebar .table-checkout-shipping-method tbody td:first-child {
	max-width: 20px;
}
.modal-slide.checkout-popup-sidebar .table-checkout-shipping-method tbody tr.row{
    margin: 0;
}
.modal-slide.checkout-popup-sidebar #delivery .row > .col-6:first-child {
    padding-right: 10px;
}
.modal-slide.checkout-popup-sidebar #delivery .row > .col-6:last-child{
    padding-left: 10px;
}
.modal-slide.checkout-popup-sidebar .table-checkout-shipping-method tbody td {
	padding-bottom: 5px;
	padding-top: 5px;
	border: none;
}
.modal-slide.checkout-popup-sidebar .step-content .action.action-back {
	background: transparent;
	width: fit-content;
    margin: 10px auto 0;
    display: block;
}
.modal-slide.checkout-popup-sidebar .step-content .action.action-back::before{
    content: "\276E";
}
.modal-slide.checkout-popup-sidebar .step-content .action.action-back > span{
    text-decoration: underline;
}
#pro_licenses_uploader .form-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
#pro_licenses_uploader .action.action-forward {
	background: transparent;
    padding: 0;
    color: #333;
    font-size: 14px;
}
#pro_licenses_uploader .action.action-forward::after{
    content: "\276F";
}
#pro_licenses_uploader .action.action-forward > span{
    text-decoration: underline;
}
#pro_licenses_uploader .action.primary {
    width: 164px;
    height: 50px;
    font-size: 16px !important;
    border-radius: 12px;
}
#pro_licenses_uploader .uploader-container button.cancel-file {
    background: transparent;
}
@media (max-width: 767px) {
    #pro_licenses_uploader .form-toolbar {
        padding: 0 10px;
        gap: 10px;
    }
    #pro_licenses_uploader .action.primary {
        width: 48%;
    }
}
.gift-options .actions-toolbar .secondary .action-update,
.gift-options .actions-toolbar .secondary .action-cancel {
	height: 50px;
	background-color: var(--secondary_color);
	color: #fff;
	border-radius: 8px;
	font-family: var(--title_font);
	padding: 7px 15px;
	margin: 0;
    font-weight: 700;
    float: none;
}
.gift-options .actions-toolbar .secondary .action-update:hover,
.gift-options .actions-toolbar .secondary .action-cancel:hover {
    background-color: var(--primary_color);
}
.gift-options .actions-toolbar > .secondary {
	display: flex;
	justify-content: space-between;
	width: 100%;
    flex-direction: row-reverse;
}
.modal-slide.checkout-popup-sidebar .gift-options {
	margin: 0;
}
.cart-gift-item .gift-item-block .title {
	color: var(--body_color);
}
.modal-slide.checkout-popup-sidebar .discount-code .payment-option-title > span.action:hover,
.cart-gift-item .gift-item-block .title:hover,
.modal-slide.checkout-popup-sidebar .opc-block-shipping-information .shipping-information-title .action-edit:hover {
    color: var(--primary_color);
}
.modal-slide.checkout-popup-sidebar .opc-block-summary > .title {
	display: block;
	border: 0;
	color: var(--secondary_color);
	font-family: var(--body_font);
    font-size: 16px;
	font-weight: 700;
}
.modal-slide.checkout-popup-sidebar .opc-block-summary .table-totals,
.modal-slide.checkout-popup-sidebar .opc-block-summary .table > :not(:first-child),
.modal-slide.checkout-popup-sidebar .opc-block-summary .table-totals .grand .amount,
.modal-slide.checkout-popup-sidebar .opc-block-summary .table-totals .grand .mark {
	border: 0;
}
.modal-slide.checkout-popup-sidebar .opc-block-summary .table-totals .grand .amount,
.modal-slide.checkout-popup-sidebar .opc-block-summary .table-totals .grand .mark {
    font-size: 16px;
}
.akeans-confirmation-wrapper h1 {
    font-size: 32px;
    font-family: var(--title_font);
    color: var(--secondary_color);
    font-weight: 700;
}
.akeans-confirmation-wrapper .actions-toolbar > .primary .action {
	margin-bottom: 25px;
}
.akeans-confirmation-wrapper  a.action.primary{
    border-radius: 8px;
    display: block;
    width: fit-content;
    margin: 25px 0;
}
.modal-slide.checkout-popup-sidebar .opc-block-shipping-information .step-title{
    display: none;
}
.modal-slide.checkout-popup-sidebar .shipping-information-title .action-edit::before{
    display: none;
}
.modal-slide.checkout-popup-sidebar  .shipping-information-title .action-edit > span {
    height: auto;
    margin: auto;
    overflow: visible;
    padding: 0;
    position: relative;
    width: fit-content;
    display: inline-block;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--body_color);
    text-decoration: underline;
}
.modal-slide.checkout-popup-sidebar .opc-wrapper #delivery .step-title{
    display: none;
}
.modal-slide.checkout-popup-sidebar .opc-wrapper #delivery .checkout-shipping-method .step-title,
.modal-slide.checkout-popup-sidebar .shipping-information-title {
	border-bottom: 0;
    display: block;
    color: var(--secondary_color);
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 0;
}
.modal-slide.checkout-popup-sidebar .opc-block-shipping-information .shipping-information-title .action-edit {
	top: 0px;
}
.modal-slide.checkout-popup-sidebar .akeans-delivery-wrapper .label,
.modal-slide.checkout-popup-sidebar .shipping-subscriptions-option-title {
    padding-bottom: 10px;
    color: var(--secondary_color);
    font-weight: 500;
    font-size: 20px;
}
.modal-slide.checkout-popup-sidebar #delivery #checkout-step-title > .row > div {
	margin-bottom: 20px;
}
.modal-slide.checkout-popup-sidebar .autoship-subscription label {
	width: 100%;
	margin-bottom: 10px;
}
.modal-slide.checkout-popup-sidebar .opc-wrapper .shipping-address-item {
	width: 100%;
}
.checkout-index-index .modal-popup .modal-inner-wrap {
	margin: 0;
	max-width: 500px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	padding: 40px;
}
.checkout-index-index .modal-popup .modal-inner-wrap .modal-content {
	padding: 0px 40px;
	text-align: left;
}
.checkout-index-index .modal-popup .modal-inner-wrap .modal-footer {
	padding: 5px 40px 20px;
	margin: 0px;
	justify-content: space-between;
	border-top-width: 0;
	flex-direction: row-reverse;
}
.modal-slide.checkout-popup-sidebar .action.action-show-popup {
	border-radius: 8px;
	background-color: var(--secondary_color);
	color: #fff;
}
.modal-slide.checkout-popup-sidebar .action.action-show-popup:hover{
    background-color: var(--primary_color);
}
.modal-slide.checkout-popup-sidebar .payment.ccard .number > .control{
    display: flex;
    align-items: center;
    border: 1px solid #c2c2c2;
    border-radius: 10px;
    padding: 12px;
}
.modal-slide.checkout-popup-sidebar .payment.ccard .number > .control > .stripe-control{
    flex: 1 1 auto;
}
.modal-slide.checkout-popup-sidebar .payment-method-billing-address {
	display: none;
}
.modal-slide.checkout-popup-sidebar .actions-toolbar .action.checkout {
	width: 100%;
}
.modal-slide.checkout-popup-sidebar .checkout-payment-method .payment-method-content {
	padding: 0;
}
.modal-slide.checkout-popup-sidebar .checkout-payment-method .step-content .action.action-back {
	padding-left: 0;
}
.checkout-container.checkoutpopup {
	margin-bottom: 0;
    position: relative;
}
.loading-mask .loader > img {
	width: 30px;
	height: 30px;
}
.modal-slide.checkout-popup-sidebar .form.payments >.fieldset {
	margin-bottom: 0;
}
.modal-slide.checkout-popup-sidebar .custom-checkout-top-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
    position: sticky;
    top: 0;
    padding: 15px 0;
    background-color: #fff;
    border-bottom: 1px solid #cecece;
    z-index: 2;
    margin-bottom: 20px;
}
.modal-slide.checkout-popup-sidebar .message.error {
    margin: 0;
}
.secure-col {
	flex: 1 1 auto;
	max-width: fit-content;
    padding: 7px 0;
    color: var(--secondary_color);
    font-weight: 500;
}
.secure-col::before{
    content: "\f023";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
.exit-col {
	flex: 1 auto;
	max-width: fit-content;
}
.opc-progress-bar-item > span::before, .opc-progress-bar-item > span {
	color: var(--body_color);
	font-weight: 400;
	font-size: 14px;
}
/*==== End Modal Checkout ====*/

/*==== Compare ====*/
.table.table-comparison{
    font-size: 16px;
    color: var(--secondary_color);
    border: 2px solid var(--secondary_color);
}
.table-comparison .cell.label.product span {
	height: auto;
	width: fit-content;
	clip: auto;
}
.table-comparison .cell.attribute {
	font-size: 16px;
}
.catalog-product_compare-index .page-main > .page-title-wrapper .page-title {
	color: var(--secondary_color);
	font-weight: 700;
}
/*==== End Compare ====*/
/*==== wish List ====*/
.actions-toolbar > .primary .action{
    background-color: var(--hover_color);
    color:white;
    font-family: var(--title_font);
    border-radius:10px;
    border:0;
}
.actions-toolbar > .primary .action:hover{
    background-color: var(--primary_color);
}
.form-wishlist-items .products-grid.wishlist .product-item-info:hover .product-item-inner {
	position: relative;
}
.form-wishlist-items .products-grid.wishlist .product-item-comment {
	margin: 0 0 10px;
}
/* .form-wishlist-items .actions-toolbar{
    margin-top:13%;
} */
.products-grid.wishlist .product-item .box-tocart .tocart, .modal-slide.register-sidebar textarea, .modal-slide.edit-profile-sidebar textarea{
    border-radius: 8px;
}
.products-grid.wishlist .product-item-actions .action.edit::before,
.products-grid.wishlist .product-item-actions .action.delete::before {
	color: var(--secondary_color);
}
.products-grid.wishlist .product-item-actions .action.edit:hover::before,
.products-grid.wishlist .product-item-actions .action.delete:hover::before,
.modal-slide.aminicart .minicart-items .product-item-name a:hover {
	color: var(--primary_color)
}
.account .page-title-wrapper .page-title {
	color: var(--secondary_color);
	font-weight: 700;
	font-family: var(--title_font);
}
/*==== wish List End  ====*/
/* ==== Media Query Start ====*/
@media only screen and (min-width: 1200px){
    .amsearch-results .amsearch-item-container .amsearch-item:nth-of-type(5n+1) {
        margin-right: 0;
    }
}
@media only screen and (max-width: 1199px){
    .amsearch-results .amsearch-item-container .amsearch-item{
        flex-basis: calc((100% - 90px) / 4);
    }
}
@media only screen and (min-width: 960px){
    .menu > ul > li.open > ul .blog.learn,
    .menu > ul > li > ul .blog.learn{
        display: none;
    }
}
@media only screen and (min-width: 960px) and (max-width: 1199px){
    .amsearch-results .amsearch-item-container .amsearch-item:nth-of-type(4n+1) {
        margin-right: 0;
    }

}
@media only screen and (min-width: 1024px) {
    .page-products.catalog-category-view .products-grid .product-item {
        margin-left: 20px;
        padding: 5px;
        width: calc((100% - 60px)/4);
    }
    .page-products .products-grid .product-item:nth-child(4n+1) {
        margin-left: 0;
    }
    .page-products .products-grid .list .product-item:nth-child(4n+1),
    .catalog-category-view .products-grid .list .product-item:nth-child(4n+1),
    .page-products.catalog-category-view .products-grid .list .product-item:nth-child(4n+1) {
        margin-left: 0;
    }
}
@media only screen and (min-width:992px) {
    .footer.content .f2 {
        display: block;
        width: fit-content;
        margin: 0 auto;
    }
    .footer.content .f3 {
        display: block;
        width: fit-content;
        margin: 0 auto 0 0;
    }
    .footer.content .f1 {
        padding-right: 2%;
    }
    .copyright {
        display: none;
    }
    .footer.content .disp {
        pointer-events: none;
    }
}
@media only screen and (min-width: 768px) {
    .page-footer {
        background-color: var(--green_color);
        padding: 0px 0 20px;
    }
    .breadcrumbs,
    .footer.content,
    .page-wrapper>.widget,
    .page-wrapper>.page-bottom,
    .block.category.event,
    .top-container,
    .page-main,
    body .container {
        max-width: 1320px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .header.content {
        max-width: 100%;
        padding: 0 3% 0;
        display: grid;
        grid-template-columns: calc(50% - 85px) 170px calc(50% - 190px) 35px 35px 35px;
        grid-template-rows: 1fr;
        gap: 0px 0px;
        grid-template-areas:
            "navigation logo storelist search profile minicart";
        height: 74px;
    }
    .page-header .header.links, .customer-welcome {
        margin: 0;
        display: inline-block;
        z-index: 2;
    }
    .page-header .header.links > li.customer-welcome:nth-child(2){
        display: none;
    }
    .page-header .header.links > .customer-welcome{
        line-height: 29px;
    }
    .page-header .header.links > .header.links{
        display: none;
    }
    .page-header .header.links > .header.links .authorization-logged-in{
        margin: 0;
        padding: 0;
        line-height: 29px;
    }
    .authorization-logged-out{
        margin: 0;
        line-height: 29px;
    }
    li{
        list-style-type: none;
    }
    .modal-slide.edit-profile-sidebar .hover-icon-customer,
    .modal-slide.edit-profile-sidebar .hover-icon-default{
        display:none;
    }
    .modal-slide.edit-profile-sidebar .carousel-wrap  {
        margin: 0px auto;
        width: 100%;
        margin-left: -30px;
    }
    .modal-slide.edit-profile-sidebar .owl-carousel .owl-nav > div{
        top:50px;
    }
    .modal-slide.register-sidebar .threeimageupload .fa-check{
        font-size:15px;
        padding-right:5px;
    }
    .modal-slide.register-sidebar .threeimageupload ul li{
        list-style-type:disc;
        color:black;
    }
    .header.content .header.links .authorization-link a.trigger-ajax-login i, .header.content .header.links .customer-welcome .dropdown-afterlogin i,
    .header.content .header.links .authorization-link a.trigger-ajax-login i:hover, .header.content .header.links .customer-welcome .dropdown-afterlogin i:hover
    {
        font-size: 16px;
        color:var(--hover_color);
        cursor:pointer;
    }
    .header.content .minicart-wrapper {
        order:99;
        z-index:2;
    }
    .block-search .action.search {
        position: relative;
    }
    ul.header.links li.link.todisable,
    .greet.welcome,
    .nav.item,
    .header.content .header.links .header.links ul li:nth-child(-n+2),
    .header.content .header.links .header.links ul li:nth-child(4) {
        display: none;
    }
    .menu>ul>li,
    .menu>ul>li:hover,
    .navigation {
        background: transparent;
    }
    .customer-welcome .action.switch {
        display: none;
    }
    .minicart-wrapper .action.showcart:before,
    .minicart-wrapper .action.showcart.active:before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f07a";
        color: var(--secondary_color);
        font-size: 16px;
        line-height: 29px;
    }
    .catalog-category-view .toolbar-products {
        position: static;
    }
    .catalog-category-view .filter-options-item {
        margin-right: 0;
        border-bottom: 1px solid #ccc;
    }
    .catalog-category-view .filter-options-item:last-child {
        border: 0;
    }
    .catalog-category-view .filter-options-content {
        box-shadow: none;
        border: 0;
        padding: 0;
        position: relative;
        width: 100%;
    }
    .products.wrapper ~ .toolbar .pages {
        float: none;
    }
    .page-products .columns {
        z-index: 3;
    }
    /* Deatils page Accordition */
    .product.info.detailed {
        width: 57%;
    }
    .catalog-product-view .product-info-main {
        max-width: 525px;
        margin-left: calc((43% - 525px)/2);
        margin-right: calc((43% - 525px)/2);
        position: -webkit-sticky;
        position: sticky;
        top: 0px;
        min-height: 100vh;
        display: flex;
        align-content: center;
        flex-wrap: wrap;
    }
    .catalog-product-view .product-info-main .product-add-form .box-tocart{
        margin-bottom: 0;
    }
    .catalog-product-view.page-product-configurable .product-info-main .product-add-form .box-tocart,
    .catalog-product-view.page-product-grouped .product-info-main .product-add-form .box-tocart {
        margin-bottom: 1em;
        margin-top: 1em;
    }
    .catalog-product-view .product-info-main > div{
        width: 100%;
        clear: both;
    }
    .catalog-product-view .product-options-wrapper .swatch-attribute-options .swatch-option:nth-child(2n) {
        max-width: calc(50% - 5px);
    }
    /* Deatils page Accordition End */

    /* Login */
    .modal-slide.modal-popup .modal-content {
        padding: 0px;
        border: 0px;
        text-align: center;
    }
    .modal-popup.modal-slide .modal-footer{
        padding:5px;
        margin:0px;
        justify-content: center;
        border-top-width: 0;
    }
    .form.password.reset,
    .form.send.confirmation,
    .form.create.account {
        left:55%;
    }
    .form.password.forget{
        min-width:unset;
        width:unset;
    }
    .page-wrapper{
        min-height:auto;
    }
    .page-header .link.authorization-link{
        display:none;
    }
    .page-header .header.content .header.links .link.authorization-link{
        display:block;
        margin: 0;
        line-height: 29px;
    }
    .modal-slide.register-sidebar .alert{
        margin-top: 9px;
        padding: 0px;
        border: 0px;
        margin-bottom: 0px
    }
    .progressbar1{
        height:1.5rem;
    }
    .modal-slide.edit-profile-sidebar #profile_edit_form .photo .control .or:after,
    .modal-slide.edit-profile-sidebar #profile_edit_form .photo .control .or:before{
        width: 13%;
    }
    .modal-slide.edit-profile-sidebar #profile_edit_form .photo .control .takeaphoto,
    .modal-slide.edit-profile-sidebar #profile_edit_form .photo .control #photo{
        color:var(--hover_color);
        font-weight:600;
        font-size:var(--body_font)
    }
    .modal-slide.edit-profile-sidebar #profile_edit_form .photo .control .takeaphoto{
        padding-left:50px;
    }
    .modal-slide.edit-profile-sidebar #profile_edit_form .photo .control .or:before  {
        right: 0.5em;
        margin-left: 0%;
    }
    .modal-slide.edit-profile-sidebar #profile_edit_form .photo .control .or:after{
        left: 0.5em;
    }
     .secondotherconcern[aria-expanded="true"] i.fa-angle-down:before {
        content: "\f106";
    }
    .wishlist-index-index .product-item-inner .comment-box {
        margin-top: 0;
    }
    .footer.content ul {
        padding-right: 0;
    }
}
/* login page css ends*/
@media only screen and (min-width: 640px){
    .page-products .products-grid .product-item:nth-child(3n+1),
    .catalog-category-view .products-grid .product-item:nth-child(3n+1),
    .page-products.catalog-category-view .products-grid .product-item:nth-child(3n+1) {
        margin-left: 20px;
    }
    .products-grid.wishlist .product-item-info:not(:hover):not(.active) .product-item-inner{
        width: 100%;
        height: auto;
        overflow: hidden;
        position: relative;
        margin: 0;
    }
}
@media only screen and (max-width:1450px) {
    .amsearch-form-container .amsearch-results {
        max-width: 1320px;
        margin: 0 auto;
    }
    .amsearch-form-container.-result.-opened .amsearch-results{
        padding: 0 20px 30px;
        height: 500px;
    }
    .owl-nav .owl-next {
        right: -20px;
    }
    .owl-nav .owl-prev {
        left: -20px;
    }
    .akeans-minisearch .control input {
        height: 40px;
    }
    .akeans-minisearch {
        padding: 27px 0;
    }
    .title-box .result-title {
        font-size: 20px;
        line-height: 24px;
    }
    .search-result-field .product.item .info .name {
        line-height: 22px;
        margin: 10px 0 5px;
    }
    .search-result-field .carousel-wrap {
        margin: 0 auto 10px;
    }
    .catalog-product-view .product-info-main {
        top: 74px;
        padding: 0 20px;
        width: 43%;
        position: relative;
    }
    .catalog-product-view .product-add-form .box-tocart .actions {
        margin-left: 0;
    }
    .catalog-product-view .box-tocart .action.primary {
        min-width: auto;
    }
}
@media (max-width: 1325px) {
    .search-autocomplete {
        left: 0;
        transform: unset;
        width: 100%;
    }
}
@media only screen and (max-width: 1200px){
    .menu > ul > li a {
        font-size: 20px;
    }
    .menu .menu-bg-image a > span .line-two,
    .menu .menu-bg-image .parent-line-two {
        font-size: 22px;
        line-height: 28px;
    }
    .category-image .image {
        min-height: 450px;
        width: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    .category-column-left-side .category-title, .category-column-left-side .category-description {
        align-self: flex-start;
    }
    .category-column-left-side {
        padding: 10px 20px 10px 40px;
        min-width: 420px;
    }
    .catalog-product-view .product-info-main {
        margin-left: 0;
        margin-right: 0;
    }
    .catalog-product-view .product-options-wrapper .swatch-attribute-options .swatch-option {
        margin: 0 0 0 0;
        min-width: 100%;
    }
    .modal-slide.register-sidebar,
    .modal-slide.profile-sideba {
        left:20%;
    }
}
@media only screen and (max-width: 1023px){
    .page-products .products-grid .list .product-item-photo {
        min-height: auto;
        background-color: var(--light_grey);
        padding-bottom: 100%;
    }
    .catalog-product-view .column.main {
        display: flex;
        flex-wrap: wrap;
    }
    .catalog-product-view .product-info-main {
        padding-right: 20px;
        padding-left: 20px;
        width: 100%;
        max-width: 100%;
        position: static;
        min-height: auto;
        order: 1;
    }
    .catalog-product-view .product.media {
        width: 100%;
        order: 0;
    }
    .catalog-product-view .product.info.detailed {
        width: 100%;
        order: 2;
        padding: 25px 20px 0;
    }
    .catalog-product-view .info.detailed .product.data.items{
        margin: 0;
    }
    .page-layout-1column .block.related .products-related .product-item {
        width: calc((100% - 6%) / 4);
        margin-left: 2%;
    }
    .block.related .products-related .product-item-details {
        justify-content: center;
    }
}
@media only screen and (min-width: 640px) and (max-width: 1023px){
    .page-products.catalog-category-view .products-grid .product-item {
        width: calc((100% - 40px)/3);
        margin-left: 20px;
    }
    .page-products .products-grid .list .product-item:nth-child(3n+1),
    .catalog-category-view .products-grid .list .product-item:nth-child(3n+1),
    .page-products.catalog-category-view .products-grid .list .product-item:nth-child(3n+1) {
        margin-left: 0;
    }
}
@media only screen and (max-width: 991px){
    .footer.content .fa-angle-down {
        display: block;
        color: #f0f0f0;
        float: right;
    }
    .footer.content .footer-social-col4 {
        display: block;
    }
    .footer.content .footer-social-col4 ul {
        display: flex;
        justify-content: center;
        margin-bottom: 0;
    }
    .footer.content .footer-social-col4 ul li {
        padding: 0px;
        border: 1px solid var(--body_bg);
        border-radius: 50%;
        width: 34px;
        margin: 0px 10px;
        height: 34px;
        margin-top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .footer.content .footer1 .footer-social{
        justify-content: center;
    }
    .footer.content .cards.desktop {
        display: none;
    }
    .footer.content .cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer.content .footer1 {
        text-align: center;
    }
    .footer.content .disp[aria-expanded="true"] i.fa-angle-down:before {
        content: "\f106";
    }
    .footer.content .footer1 p {
        max-width: 560px;
        margin: 0 auto 20px;
    }
    .footer.content h3,
    .footer.content .disp {
        display: inline-block;
        width: 100%;
    }
    .footer.content ul {
        margin-bottom: 20px;
    }
    .products-grid .list .product-item-photo .actions-secondary{
        display: flex;
        justify-content: space-between;
    }
    .page-products .products-grid .product-item-info:not(:hover):not(.active) .product-item-inner {
        clip: auto;
        height: auto;
        margin: 0 auto;
        width: 100%;
    }
    .amsearch-form-container.-opened .amsearch-wrapper-input {
        width: 100% !important;
    }
}
@media only screen and (min-width: 959px){
    li.blog.learn{
        display: none;
    }
}
.menu-html{
    top :75px;
    text-align: center;
}
@media (max-width: 767px){
    #om {
        display: block;
    }
}
.menu > ul.menu-html {
    display: none;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed;
    left: 0px;
    padding: 20px;
    background-color: #fff;
    box-shadow: inset 0px -7px 20px 24px rgb(0 0 0 / 6%);
}
@media only screen and (max-width: 959px){
    .header.content {
        max-width: 100%;
        padding: 0 3% 0;
        display: grid;
        grid-template-columns: 50px calc(50% - 135px) calc(50% - 21px) 35px 35px 35px;
        grid-template-rows: 1fr;
        gap: 0px 0px;
        grid-template-areas:
            "navigation storelist logo search profile minicart";
        height: 74px;
    }
    .category-print {
        display: none;
    }
    .modal-slide .mega-menu-header .logo{
        top: 15px;
    }

    .navigation > .menu > .menu-mobile {
        display: none;
    }

    li.blog.learn{
        text-align: center;
        margin-left: 0px;
    }

    .navigation > .menu > ul {
        display: flex;
    }
    .navigation > .menu > ul > li.shopcatmain {
        display: block;
        background: none;
    }
    .navigation > .menu > ul > li.shopcatmain.menu-dropdown-icon::before {
        display: none;
    }
    .navigation > .menu > ul > li.shopcatmain > a > span{
        display: none;
    }
    .navigation > .menu > ul .menu-dropdown-icon > a::before {
        content: "\f0c9";
        font-family: 'Font Awesome 5 Free';
        position: relative;
        top: 0;
        right: 0;
        transform: translatey(0%) rotate(0deg);
        font-size: 16px;
        font-weight: 900;
        line-height: 29px;
        color: var(--secondary_color);
    }
    .navigation > .menu > ul .menu-dropdown-icon.open > a::before {
        visibility: hidden;
    }
    .menu > ul > li > a.learn-link {
        border: none;
        width: fit-content;
        margin: 0 auto;
        padding: 5px 10px;
        font-size: 20px;
    }
    .menu > ul > li > a{
        line-height: 29px;
        padding: 0;
    }
    .menu li.parent > ul.submenu {
        top: 70px;
    }
    .akeans-minisearch {
        padding: 25px 20px;
    }
    .amsearch-results .amsearch-item-container .amsearch-item {
        margin-bottom: 15px;
        flex-basis: calc((100% - 30px)/3);
        margin-right: 15px;
    }
    .amsearch-results .amsearch-item-container .amsearch-item:nth-of-type(3n+1) {
        margin-right: 0;
    }
    .all-products-link {
        font-size: 12px;
        font-weight: 700;
    }
    .title-box .result-title {
        font-size: 14px;
        line-height: 18px;
    }
    .amsearch-wrapper-content .product-item-link,
    .search-autocomplete .amsearch-results .amsearch-item-container .amsearch-item .item-name {
        font-size: 12px;
        line-height: 16px;
    }
    .search-autocomplete .product-item .price-box span.price-container .price {
        font-size: 10px;
    }
    .category-title h2 {
        font-size: 24px !important;
    }
    .category-column-left-side .category-description p,
    .category-toc {
        font-size: 14px !important;
        line-height: 20px !important;
    }
    .category-hotbar {
        font-size: 14px;
    }
    .category-column-left-side {
        padding: 10px 20px 10px 35px;
        min-width: 345px;
        margin-top: 74px;
    }
    .close-megamenu-wrap {
        float: right;
    }
    .close-megamenu-wrap .close-megamenu{
        padding: 0;
        display: inline-block;
        width: fit-content;
        font-size: 0;
        display: none;
    }
    .shopcatmain.open .close-megamenu-wrap .close-megamenu {
        display: inline-block;
    }
    .shopcatmain.open .close-megamenu-wrap .close-megamenu::before {
        content: '\e616';
        font-family: 'luma-icons';
        color: var(--secondary_color);
        line-height: 24px;
        font-size: 14px;
        font-weight: 900;
    }
    .menu .back-arrow {
        top: 20px;
        z-index: 1;
    }
    .cms-home .menu .back-arrow{
        top: 22px;
    }
    .menu li.parent > ul.submenu {
        padding-left: 20px;
    }
    .menu > ul > li.shop.learn {
        display: none;
    }
    .menu > ul > li.open > ul .blog.learn{
        position: relative;
        bottom: 0;
    }
    .menu > ul > li.open > ul .blog.learn > a{
        border: none;
        width: fit-content;
        margin: 0 auto;
        padding: 5px 10px;
        font-size: 20px;
    }
    .menu > ul > li.open > ul {
        margin-top: 0;
        top: 66px;
        padding-bottom: 100px;
    }
    .menu li.level2.parent > ul.level2.submenu {
        padding: 20px !important;
    }
}
@media only screen and (max-width: 767px) {
    .cms-home .page-main {
        flex-grow: 0;
        -webkit-flex-grow: 0;
    }
    .cms-home .akeans-autosearch .search-wrapper {
        top: 0;
    }
    .footer.content,
    .page-main,
    .page-wrapper > .widget,
    .page-wrapper > .page-bottom,
    .block.category.event,
    .top-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .page-footer {
        background-color: var(--green_color);
        padding-bottom: 25px;
        margin-top: 0px;
    }
    .footer.content h3 {
        font-size: 16px;
        margin: 5px 0 12px;
    }
    .footer.content .f5 {
        padding: 20px 0 0;
    }
    .footer.content {
        border-top: 0;
        padding-top: 35px;
    }
    .footer1 h2 {
        font-size: 24px;
        margin: 0 0 10px 0;
    }
    .copyright {
        padding: 10px 0px;
    }
    .footer.content .footer1 p {
        max-width: 280px;
    }
    .header.content {
        max-width: 100%;
        padding: 0 20px;
        display: flex;
        align-items: center;
        display: grid;
        grid-template-columns: 35px 35px 1fr 35px 35px;
        grid-template-rows: 31px 50px;
        gap: 0px 0px;
        grid-template-areas:
            "storelist storelist storelist storelist storelist"
            "navigation profile logo search minicart";
        height: 81px;
        z-index: 1;
        background: linear-gradient(180deg, rgb(38 93 51) 0%, rgb(38 93 51) 31px, rgba(109, 29, 34, 0) 31px, rgba(0, 212, 255, 0) 100%);
    }
    ul.header.links li.link.todisable,
    .header.content ul.header.links .greet.welcome,
    .header.content ul.header.links .nav.item{
        display: none;
    }
    .akeans-autosearch {
        order: 3;
        margin: 0;
        width: 16px;
    }
    .header.content .akeans-autosearch .action.search{
        display: inline-block;
        background: none;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
        border: 0;
        box-shadow: none;
        line-height: inherit;
        margin: 0;
        padding: 0;
        text-decoration: none;
        text-shadow: none;
        font-weight: 400;
        right: 10px;
    }
    .header.content .akeans-autosearch .action.search::before {
        color: var(--secondary_color);
        content: '\e615';
        font-family: 'luma-icons';
        margin: 0;
        vertical-align: top;
        display: inline-block;
        overflow: hidden;
        text-align: center;
    }
    .akeans-minisearch {
        padding: 10px 20px;
    }
    .header.content .akeans-autosearch .action.search > span{
        display: none;
    }
    .cms-home .akeans-autosearch .search-wrapper {
        top: 0;
    }
    .akeans-autosearch .search-wrapper .label{
        display: none;
    }
    .akeans-autosearch .search-wrapper .control {
        border-top: 0;
        margin: 0;
        padding: 0;
    }
    .akeans-minisearch .control input {
        margin: 0;
    }
    .header.content .minicart-wrapper {
        order: 5;
        z-index: 2;
        float: none;
    }
    .minicart-wrapper .action.showcart::before,
    .minicart-wrapper .action.showcart.active::before {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f07a";
        color: var(--secondary_color);
        font-size: 16px;
        line-height: 29px;
    }
    .page-header .header.links {
        padding-left: 0;
        order: 1;
    }
    .page-header .header.links, .customer-welcome {
        margin: 0;
        display: inline-block;
        z-index: 1;
    }
    .page-header .header.content .header.links .link.authorization-link {
        display: block;
        margin: 0;
        line-height: 29px;
        list-style-type: none;
    }
    .header.content .header.links .authorization-link a.trigger-ajax-login i, .header.content .header.links .customer-welcome .dropdown-afterlogin i, .header.content .header.links .authorization-link a.trigger-ajax-login i:hover, .header.content .header.links .customer-welcome .dropdown-afterlogin i:hover {
        font-size: 16px;
        color: var(--hover_color);
        cursor: pointer;
    }
    .header.content .nav-toggle{
        display: none;
    }
    .header.content #om {
        display: block;
    }
    .header.content .navigation{
        background: none;
        order: 0;
        z-index: 2;
    }
    .page-header.show .navigation {
        z-index: 6;
        margin-left: 34px;
    }
    .header.content .logo{
        order: 2;
        margin: 0 auto;
        max-width: fit-content;
        float: none;
        padding: 5.5px 5px;
    }
    .header.content .logo img {
        max-width: 140px;
    }
    .page-header > .link.authorization-link,
    .page-header .header.links > .header.links {
        display: none;
    }
    .header.content .block-search {
        order: 3;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    .page-header .compare.wrapper {
        display: block;
        order: 4;
        list-style-type: none;
        padding: 0;
        margin: 0;
        z-index: 1;
    }
    .page-header .compare.wrapper .action.compare {
        margin-left: 20px;
    }
    .navigation > .menu > ul > li.shopcatmain a{
        padding: 6.5px 0px;
    }
    .navigation > .menu > ul .close-megamenu-wrap .close-megamenu {
        padding: 0;
    }
    .menu > ul > li {
        background: transparent;
    }
    .menu > ul > li > a {
        line-height: 42px;
    }
    .page-header .panel.wrapper {
       display: none;
    }
    .menu .menu-bg-image {
        border-radius: 8px;
    }
    .menu .menu-bg-image a > span {
        padding: 0 10px;
    }
    .menu .menu-bg-image a > span .line-two,
    .menu .menu-bg-image .parent-line-two {
        font-size: 18px;
        line-height: 18px;
    }
    .menu .shop-all-parent,
    .menu .column_mega_menu1{
        margin: 5px;
        width: calc((100% - 30px)/3);
    }
    .navigation .menu .submenu .shop-all-parent,
    .menu ul.level1.submenu li.level2,
    .menu ul.level1.submenu li.level2 li.level3 {
        margin: 5px;
        width: calc((100% - 30px)/3);
    }
    .menu .back-arrow {
        font-size: 14px;
        color: var(--secondary_color);
    }
    .menu .back-arrow::before {
        content: "\21FD";
        margin-right: 2px;
        font-size: 15px;
    }
    .cms-home .menu li.level1.parent > ul.level1.submenu {
        top: 60px !important;
    }
    .menu>ul.menu-html{
        top: 60px !important;
    }
    .menu li.parent > ul.submenu{
        top: 60px !important;
        left: 0px !important;
    }
    .menu li.level1.parent > ul.level1.submenu {
        top: 66px !important;
        left: 0 !important;
    }
    .menu li.level1.parent ul.submenu {
        padding: 20px;
    }
    .cms-home .navigation > .menu > ul > li.shopcatmain.open {
        top: 0;
    }
    .navigation .menu .submenu .menu-bg-image a {
        display: flex;
        color: var(--body_bg);
    }
    .modal-slide._inner-scroll .modal-content {
        padding: 0 20px 20px;
    }

    .modal-slide.mega-menu-slider._inner-scroll .modal-content {
        padding: 0 0 0 0;
    }
    .category-view {
        flex-direction: column-reverse;
        min-height: 29px;
    }
    .category-column-left-side {
        padding: 35px 20px;
        min-width: auto;
        max-width: 400px;
        margin-top: 0;
    }
    .category-title h2{
        margin-bottom: 10px !important;
    }
    .category-title h2, .category-column-left-side .category-description p {
        text-align: center;
    }
    .category-video {
        height: unset;
        padding: 74px 0 0;
        min-height: calc((100vw / 16) * 9 + 74px);
    }
    .category-image .image {
        min-height: 260px;
    }
    .category-view .category-image {
        padding-top: 74px;
    }
    .page-products .toolbar.toolbar-products .sorter{
        right: 0;
        top: 0;
    }
    /* webkul team */
    .toolbar select.sort-options {
        border-radius: 8px;
        line-height: 25px;
        height: 35px;
        font-weight: 500;
        font-size: 16px;
    }
    .akeans-filter-popup-trigger strong {
        font-weight: 500;
        font-size: 16px;
        line-height: 35px;
    }
    .akeans-filter-popup-trigger-wrapper {
        flex-wrap: wrap;
    }
    .akeans-filter-popup-trigger{
        min-height: 35px;
    }
    .akeans-filter-popup-trigger-wrapper .clear-btn {
        margin: 0 0;
        order: 1;
        font-size: 14px;
    }
    .akeans-filter-popup-trigger-wrapper .active-filters > a {
        border-radius: 8px;
    }
    .page-products .header.content {
        position: relative;
        z-index: 1;
    }
    .page-products .products-grid{
        position: relative;
        z-index: 0;
        margin-bottom: 0;
    }
    .page-products .products-grid .product-items{
        margin-bottom: 0;
    }
    .page-products.catalog-category-view .products-grid .product-item {
        margin-bottom: 20px;
    }
    .catalog-category-view.page-layout-1column .column.main {
        padding-bottom: 10px;
    }
    .column.main .product-items {
        margin-left: 0;
        margin-bottom: 0;
    }
    .toolbar.toolbar-products{
        position: relative;
        z-index: 0;
    }
    .page-products .columns {
        z-index: auto;
    }
    .page-products .akeans-custom-popup-wrapper .block-title.filter-title {
        display: none;
    }
    .akeans-custom-popup-wrapper .filter-options-title {
        font-size: 14px;
    }
    .filter-options-content a {
        padding: 5px 10px;
        font-size: 12px;
    }
    .catalog-category-view .filter-options-title::after {
        right: 2px;
        top: 3px;
        z-index: 3;
    }
    .catalog-category-view .akeans-custom-popup-wrapper .filter-content {
        padding: 10px 20px 25px;
        margin-bottom: 0px;
    }
    .catalog-category-view .filter-options-content .item {
        border-radius: 8px;
    }
    .catalog-category-view .filter-options-content {
        padding: 0;
    }
    .catalog-product-view .product-info-main {
        margin-top: 1em;
        text-align: left;
    }
    .catalog-product-view .product-info-main .product.attribute.overview {
        margin-bottom: 10px;
    }
    .catalog-product-view .block.related {
        text-align: left;
    }
    .page-products .columns {
        padding-top: 15px;
    }
    #attr_tab_ingredients\.tab .akeans-incred-title-wrapper .incred-purpose,
    #attr_tab_ingredients\.tab .akeans-incred-title-wrapper > h3{
        flex-grow: 1;
        max-width: 50%;
    }
    #attr_tab_ingredients\.tab .akeans-incred-data-wrapper .incred-row {
        font-size: 14px;
        border-bottom: 1px solid #dedede;
        padding-bottom: 5px;
        margin-bottom: 5px;
    }
    #attr_tab_ingredients\.tab .akeans-incred-data-wrapper .incred-row > h6{
        flex-grow: 1;
        max-width: 50%;
        font-size: 14px;
    }
    #attr_tab_ingredients\.tab .akeans-incred-data-wrapper .incred-row > span {
        flex-grow: 1;
        max-width: 50%;
    }
    #attr_tab_ingredients\.tab .akeans-incred-data-wrapper .incred-row > h6::after{
        content: ":";
    }
    #attr_tab_ingredients\.tab .akeans-incred-data-wrapper .incred-row::after {
       display: none;
    }
    .catalog-product-view .info.detailed .product.data.items {
        border-bottom: 0;
    }
    .catalog-product-view:not(.page-product-grouped) .product-info-main .product-add-form {
        position: fixed;
        bottom: 0;
        width: 100%;
        left: 0;
        background-color: #fff;
        padding: 10px;
        z-index: 3;
        margin: 0;
        box-shadow: 0px -4px 5px 0px rgba(0,0,0,.2);
    }
    .catalog-product-view .box-tocart .control{
        display: none;
    }
    .catalog-product-view .box-tocart .control.akeans-responsive-control {
        display: block;
        width: 70px;
    }
    .catalog-product-view .product-options-wrapper .swatch-attribute-options {
        margin: 0;
    }
    .catalog-product-view .product-options-wrapper .swatch-attribute-options .swatch-option {
        z-index: 2;
        margin: 0;
        height: 65px;
        font-size: 13px;
        padding: 5px 10px;
    }
    .catalog-product-view .product-options-wrapper .swatch-attribute-options .swatch-option {
        padding-right: 15px;
        position: relative;
    }
    .catalog-product-view .product-options-wrapper .swatch-attribute-options .swatch-option::after {
        width: 15px;
        height: 15px;
        position: absolute;
        z-index: 2;
        visibility: hidden;
        top: 46%;
        transform: translatey(-50%);
        right: 0;
        font-size: 11px;
        color: var(--secondary_color);
        content: '\e622';
        font-family: 'luma-icons';
    }
    .catalog-product-view .product-options-wrapper.active-swatch .swatch-attribute-options .swatch-option::after{
        content: none;
    }
    .catalog-product-view .product-options-wrapper .swatch-attribute-options .swatch-option .label {
        width: fit-content;
        float: left;
        padding: 3px;
        padding-left: 12px;
        line-height: 20px;
    }
    .catalog-product-view .product-options-wrapper .swatch-attribute-options .swatch-option .price {
        font-size: 12px;
        margin-left: 10px;
        font-weight: 600;
        float: right;
        line-height: 36px;
    }
    .catalog-product-view .product-options-wrapper .swatch-attribute-options .swatch-option:not(:first-child){
        display: none;
    }
    .catalog-product-view:not(.page-product-grouped):not(.page-product-bundle) .product-info-main .product-add-form > form {
        display: flex;
        justify-content: space-between;
    }
    .catalog-product-view .product-info-main .product-add-form .product-options-wrapper {
        margin-right: 5px;
        width: calc(100% - 205px);
    }
    .catalog-product-view .product-info-main .product-add-form .product-options-wrapper.active-swatch{
        position: relative;
    }
    .active-swatch .swatch-attribute-options {
        position: absolute;
        bottom: 0px;
    }
    .catalog-product-view .product-info-main .product-add-form .product-options-wrapper > .fieldset,
    .catalog-product-view .product-info-main .product-add-form .product-options-wrapper .swatch-opt {
        margin: 0;
    }
    .catalog-product-view .product-info-main .product-add-form .product-options-bottom {
        width: 200px;
        min-width: auto;
    }
    .catalog-product-view .product-info-main .box-tocart .fieldset {
        margin-bottom: 0;
    }
    .product-info-main .product-options-bottom .box-tocart,
    .product-info-main .product-add-form .box-tocart {
        margin-bottom: 10px;
    }
    .catalog-product-view:not(.page-product-grouped) .product-info-main .product-add-form .box-tocart,
    .catalog-product-view:not(.page-product-grouped) .product-info-main .product-options-bottom .box-tocart {
        margin: 0;
        width: 100%;
    }
    .catalog-product-view .box-tocart .control.akeans-responsive-control > select{
        height: 50px;
        line-height: 43px;
        border-radius: 8px;
        padding: 4px 15px 5px 3px;
        background-position-x: 110%;
        text-align: center;
    }
    .catalog-product-view .product-add-form .box-tocart .field.qty {
        margin-right: 6px;
    }
    .catalog-product-view:not(.page-product-grouped) {
        padding-bottom: 71px;
    }
    .catalog-product-view .column.main {
        margin-top: -66px;
    }
    .page-header {
        border-bottom: 0;
        margin-bottom: 0;
    }
    .catalog-product-view.page-product-grouped .product-info-main .product-add-form .table-wrapper.grouped {
        margin: 0 ;
    }
    .catalog-product-view.page-product-grouped .product-info-main .product-add-form .table-wrapper.grouped > table {
        margin-bottom: 0;

    }
    .catalog-product-view .grouped .qty_control {
        width: 80%;
        top: 50%;
        left: 50%;
        transform: translate(-47%, -50%);
    }
    .akeans-top-cat-links ul li {
        padding: 0 15px;
    }
    .account-terms {
        padding: 0 20px 0 0;
    }
    .modal-slide.aminicart .productUpsell .owl-carousel .owl-item{
        display: flex;
        justify-content: center;
    }
    .amsearch-wrapper-content .product-item-link,
    .search-autocomplete .amsearch-results .amsearch-item-container .amsearch-item .item-name {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-top: 15px;
    }
    .page-header #minicart-content-wrapper {
        display: none;
    }
    .modal-slide.checkout-popup-sidebar .opc-progress-bar{
        counter-reset: i;
        display: block;
        font-size: 0;
    }
    .modal-slide.checkout-popup-sidebar .opc-progress-bar-item:first-child::before {
        border-radius: 6px 0 0 6px;
    }
    .modal-slide.checkout-popup-sidebar .opc-progress-bar-item::before {
        background: #e4e4e4;
        border: 1px solid #ccc;
        top: 19px;
        transition: background .3s;
        content: '';
        left: 0;
        position: absolute;
        width: 100%;
    }
    .modal-slide.checkout-popup-sidebar .opc-progress-bar-item > span {
        display: inline-block;
        padding-top: 0px;
        width: 100%;
        word-wrap: break-word;
        color: #666;
        font-weight: 300;
        font-size: 1.8rem;
    }
    .opc-progress-bar-item > span::before, .opc-progress-bar-item > span::after {
        background: #ffffff !important;
        height: 38px;
        margin-left: -19px;
        transition: background .3s;
        width: 38px;
        content: '';
        left: 50%;
        position: absolute;
        top: 0;
    }
    .modal-slide.checkout-popup-sidebar .opc-progress-bar-item > span::after {
        background: #fff;
        content: counter(i);
        counter-increment: i;
        font-weight: 600;
        font-size: 1.8rem;
    }
    .modal-slide.checkout-popup-sidebar .opc-progress-bar-item._complete > span::after {
        font-family: 'luma-icons';
        content: '\e610';
    }
    .modal-slide.checkout-popup-sidebar .opc-sidebar.opc-summary-wrapper{
        float: left;
        bottom: auto;
        left: 0;
        min-width: 100%;
        position: relative;
        right: auto;
        top: 0;
        visibility: visible;
        opacity: 1;
        left: auto;
    }
    .modal-slide.checkout-popup-sidebar .methods-shipping .actions-toolbar .action.primary {
        margin: 0;
    }
    .modal-slide.checkout-popup-sidebar .opc-progress-bar-item {
        display: inline-block;
        position: relative;
        text-align: center;
        vertical-align: top;
    }
    .modal-slide.checkout-popup-sidebar .opc-estimated-wrapper{
        display: none;
    }
    .cms-home .menu .back-arrow {
        top: 25px;
    }
    .page-header .customer-welcome ~ .customer-welcome {
        position: relative;
        margin-left: 10px;
    }
    .customer-welcome ul {
        padding: 0;
        list-style: none none;
        background: #ffffff;
        border: 1px solid #bbbbbb;
        margin-top: 4px;
        min-width: 100%;
        z-index: 101;
        box-sizing: border-box;
        display: none;
        top: 100%;
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
        right: auto;
        left: -10px;
    }
    .customer-welcome ul::before,
    .customer-welcome ul::after {
        border-bottom-style: solid;
        content: '';
        display: block;
        height: 0;
        position: absolute;
        width: 0;
    }
    .customer-welcome ul::after {
        border: 7px solid;
        border-color: transparent transparent #bbbbbb transparent;
        z-index: 98;
        right: auto;
        top: -14px;
        left: 9px;
    }
    .customer-welcome ul::before {
        border: 6px solid;
        border-color: transparent transparent #ffffff transparent;
        z-index: 99;
        right: auto;
        top: -12px;
        left: 10px;
    }
    .customer-welcome ul li {
        margin: 0;
        padding: 0;
    }
    .customer-welcome li a {
        display: block;
        line-height: 1.4;
        padding: 8px;
    }
    .amsearch-form-container.-opened .amsearch-wrapper-input {
        max-width: 100%;
        width: 100% !important;
    }
    .amsearch-form-container.-opened .input-text {
        padding: 0 35px;
        position: static;
        margin: 0;
    }
    .form.minisearch.-opened .field.search > .control {
        margin: 0;
        padding: 10px 20px;
    }
    .amsearch-form-container .search-autocomplete.amsearch-clone-position {
        margin: 0;
    }
    .amsearch-results .amsearch-leftside .title-box.product {
        order: 0;
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding: 10px 0;
        align-items: center;
    }
    .amsearch-results .amsearch-leftside .title-box.blog{
        order: 3;
    }
    .amsearch-results .amsearch-item-container.blog {
        order: 3;
        padding: 0;
    }
    .amsearch-results .amsearch-item-container.category {
        order: 5;
        padding: 0;
    }
	.amsearch-results .amsearch-leftside .title-box.blog, .amsearch-results .amsearch-leftside .title-box.category {
		padding: 5px 0;
	}
    .amsearch-form-container .search-autocomplete.amsearch-clone-position{
        max-height: 100vh;
        min-height: 100vh;
    }
    .amsearch-close,
    .search .amsearch-loupe {
        -webkit-filter: brightness(0%);
        filter: brightness(0%);
    }
    .amsearch-autocomplete-image {
        width: 100%;
    }
    .amsearch-autocomplete-information {
        padding-left: 0;
        width: 100%;
    }
    .amsearch-form-container .search-autocomplete .owl-carousel .owl-item{
        margin-right: 10px !important;
    }
    .amsearch-form-container.-opened:not(.-small) .search-autocomplete .amsearch-products {
        margin-bottom: 10px;
    }
    .amsearch-form-container.-result.-opened .amsearch-results {
        padding: 0px 5px 5px;
        height: 100vh;
    }
    #home-banner .btn.btn-primary {
        padding: 9px 25px 10px;
        font-size: 14px;
    }
    #home-banner .banner-txt h1 {
        font-size: 24px;
    }
    .page-wrapper {
        min-height: auto;
    }
    .modal-slide.register-sidebar,
    .modal-slide.profile-sideba {
        left: auto;
        width: 100%;
    }
    .modal-slide.register-sidebar button.next-form,
    .modal-slide.register-sidebar input.submit,
    .modal-slide.edit-profile-sidebar input.popupactionedit {
        /* width: calc(100% - 40px); */
        width: 100%;
        margin-top: 20px;
    }
    body .container {
        max-width: 100%;
    }
    .modal-slide.aminicart .minicart-items .update-cart-item {
        float: none;
    }
}

@media only screen and (max-width: 639px){
    .products-grid .list .product-item-inner{
        position: absolute;
        z-index: 2;
        left: 0;
    }
    .page-products.catalog-category-view .products-grid .product-item{
        margin-left: 5%;
        width: calc((100% - 5%)/2);
    }
    .page-products.catalog-category-view .products-grid .product-item:nth-child(2n+1) {
        margin-left: 0;
    }
    .akeans-swatch-wrapper {
        bottom: 34px;
        padding: 0px 2px 0;
        font-size: 12px;
    }
    .products-grid button.action.tocart.primary {
        padding: 9px 15px;
        font-size: 14px !important;
        font-weight: 600;
    }
    .products-grid .list .product-item-actions .actions-primary > .stock.unavailable{
        font-size: 14px;
    }
    .akeans-swatch-tooltip-container .swatch-attribute-options {
        /* flex-direction: column; */
        margin-bottom: 5px;
    }
    .akeans-swatch-tooltip-container .swatch-attribute.size .swatch-option {
        font-size: 12px;
        margin-right: 0;
        padding: 6px 6px;
    }
    .akeans-swatch-tooltip-container .label {
        margin-right: 0;
    }
    .products-grid .list .product-item-photo .actions-secondary {
        padding: 5px;
    }
    .product-item .actions-secondary .action {
        width: 20px;
        height: 20px;
    }
    .product-item .action.towishlist::before {
        font-size: 12px;
    }
    .product-item .actions-secondary .action::before{
        font-size: 11px;
    }
    .products-grid .list .product-item-name {
        margin-top: 0;
    }
    .page-products .products-grid .list .product-item-name > a {
        line-height: 18px;
        font-size: 14px;
    }
    .product-item .price-box span.price-container .price {
        font-size: 14px;
    }
    .catalog-product-view .table-wrapper .table.grouped thead > tr > th.col{
        display: table-cell;
    }
    .catalog-product-view .product-add-form .table-wrapper .table.grouped > tbody > tr {
        display: flex;
        position: relative;
    }
    .catalog-product-view .product-add-form .table-wrapper .table.grouped > tbody > tr > td.col.item {
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        border-top: 0;
        flex-wrap: wrap;
        padding: 5px 0;
        border-bottom: 1px solid #cccccc;
    }
    .catalog-product-view .product-add-form .table-wrapper .table.grouped > tbody > tr > td.col.qty {
        width:100px;
        position: absolute;
        align-items: center;
        justify-content: center;
        padding: 5px 0;
        display: flex;
        top: 0;
        right: 0;
        line-height: 105px;
    }
    .table.grouped .stock.unavailable {
        font-size: 14px;
    }
    .catalog-product-view .table.grouped .product-group-thumb{
        order: 0;
    }
    .catalog-product-view .table.grouped .product-item-name {
        /* margin: 4px 0 0; */
        text-align: left;
        /* order: 2; */
        width: 100%;
    }
    .price-box.price-final_price {
        order: 1;
        margin: 0 10px;
    }
    .modal-slide.aminicart .productUpsell .product.actions .price-box.price-final_price {
        margin: 0;
    }
    .catalog-product-view .grouped .qty_control {
        width: 100%;
        transform: translate(-49%, -50%);
    }
    .product-add-form .table-wrapper.grouped .table.data.grouped tbody tr.row-tier-price td {
        padding-left: 0;
        padding-left: 0;
        border-bottom: 1px solid #cccccc;
        text-align: left;
        width: 100%;
    }
    .modal-slide.checkout-popup-sidebar .opc-wrapper .form-shipping-address,
    .modal-slide.checkout-popup-sidebar .opc-wrapper .form-login,
    .modal-slide.checkout-popup-sidebar .opc-wrapper .methods-shipping {
        background: transparent;
        padding: 0;
    }
    .modal-slide.checkout-popup-sidebar .opc-wrapper .form.methods-shipping {
        border-bottom: 0;
        padding-top: 0;
        margin: 0;
    }
    .catalog-product-view.page-product-grouped .table.grouped > tbody {
        border-bottom: 0;
    }
}
@media only screen and (max-width: 575px){
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding-right: 20px;
        padding-left: 20px;
    }
    .step-header-wrapper {
        flex-direction: column;
    }
    .step-header {
        width: 100%;
        align-items: center;
    }
    .apt_st_number,
    .property_size,
    .yard_size,
    .firstname,
    .lastname,
    .phone {
        width: 50%;
    }
}
@media only screen and (max-width: 479px){
    p {
        font-size: 14px;
        line-height: 22px;
    }
    ul li {
        font-size: 14px;
        line-height: 22px;
    }
    .footer1 h2 {
        font-size: 24px;
        margin: 0 0 10px;
    }
    .footer.content a,
    .footer.content p {
        line-height: 22px;
        font-size: 14px;
    }
    .footer.content ul > li + li {
        margin-top: 5px;
    }
    .copyright {
        font-size: 12px;
        line-height: 22px;
        padding: 20px 0px;
    }
    .menu .shop-all-parent,
    .navigation .menu .submenu .shop-all-parent,
    .menu .column_mega_menu1,
    .menu ul.level1.submenu li.level2,
    .menu ul.level1.submenu li.level2 li.level3 {
        margin: 5px;
        width: calc((100% - 20px)/2);
    }
    .akeans-autosearch .ui-autocomplete-loading {
        background-position: 85% center;
    }
    .search-result-field .owl-carousel .owl-nav > div {
        top: 22%;
    }
    .search-result-field .product.item .info .name {
        line-height: 16px;
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .block.related .author-wrapper .author-image {
        display: none;
    }
    .search-result-field .product.item .info > .price {
        margin-right: 0;
    }
    .search-result-field .product.item .info .price{
        font-size: 12px;
    }
    .block.related .author-wrapper .author-details-wrapper,
    .catalog-product-view .block.related .block-actions,
    .catalog-product-view .block.related .products-related.related-active {
        padding: 0px 15px;
    }
    .catalog-product-view .akeans-related-products-toggle {
        margin: 15px 0;
        padding: 0 15px;
    }
    .catalog-product-view .block.related .products-related .product-item .product-item-photo{
        display: none;
    }
    .catalog-product-view .block.related .products-related .product-item {
        width: 100%;
        margin-left: 10px;
        margin-bottom: 10px;
    }
    .catalog-product-view .block.related .products-related .product-item:nth-child(2n+1) {
        margin-left: 0;
    }
    .block.related .products-related .routine-attr {
        justify-content: center;
    }
    .block.related .products-related .product-item-name {
        margin: 0;
    }
    .block.related .products-related .product-item-details {
        justify-content: center;
        padding: 0 6px;
    }
    .catalog-product-view .product.info.detailed,
    .catalog-product-view .info.detailed .product.data.items {
        margin-bottom: 0;
        border-bottom: 0;
    }
    .block-authentication .logintext {
        display: none;
    }
    .toolbar.toolbar-products {
        flex-direction: column;
    }
    /* webkul team */
    .toolbar select.sort-options{
        padding: 4px 20px 5px 5px;
    }
    .akeans-filter-popup-trigger-wrapper {
        order: 1;
    }
    .modal-popup.confirm._show{
        margin-left: 0 !important;
    }
    .amsearch-results .amsearch-item-container .amsearch-item .item-name {
        font-size: 12px;
        line-height: 16px;
        margin-top: 10px;
    }
    .edit-profile-popup .field.photo .carousel-wrap{
        margin: 0 auto;
        width: 100%;
    }
    .catalog-product-view .info.detailed .product.data.items > .item.content {
        font-size: 14px;
        padding: 20px 5px;
    }
    #attr_tab_ingredients\.tab .akeans-incred-data-wrapper .incred-row > h6{
        font-size: 14px;
    }
    .catalog-product-view .product-info-main .product-add-form .product-options-bottom,
    .catalog-product-view .product-info-main .product-add-form > form > .product-options-wrapper ~ .box-tocart {
        width: calc(100% - 150px);
    }
    .catalog-product-view .product-info-main .product-add-form > form > .box-tocart {
        width: 100%;
    }
    .catalog-product-view .product-info-main .product-add-form .product-options-wrapper {
        width: 140px;
        margin-right: 10px;
        margin-bottom: 0px;
    }
    .catalog-product-view .product-options-wrapper .swatch-attribute-options .swatch-option {
        padding: 5px 15px 5px 5px;
    }
    .catalog-product-view .product-options-wrapper .swatch-attribute-options .swatch-option .price {
        font-size: 16px;
        margin-left: 5px;
        font-weight: 500;
        line-height: 20px;
    }
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.street.0"],
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.street.1"],
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.region_id"],
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.city"],
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.postcode"] {
        width: 100%;
    }
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .field[name="shippingAddress.lastname"],
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.street.1"],
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.city"],
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.postcode"] {
        margin-left: 0;
    }
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.street.1"] {
        margin-top: 20px;
    }
    /* Fake field position for mobile */
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.firstname"],
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.lastname"],
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.street.1"],
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.region_id"],
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.city"],
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.postcode"],
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.telephone"],
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.custom_email"] {
        width: calc((100% - 20px) / 2);
    }
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.lastname"],
	.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.telephone"] {
        margin-left: 20px;
    }
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.city"] {
        margin-left: 20px;
        position: relative;
        top: -70px;
    }
    .modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address .field[name="shippingAddress.postcode"] {
        margin-left: 20px;
        position: relative;
        top: -70px;
        right: -47.25%;
    }
    /* End Fake field position for mobile */
    .modal-slide.checkout-popup-sidebar .opc-progress-bar-item > span {
        font-weight: 500;
        font-size: 10px;
    }
    .modal-slide.checkout-popup-sidebar #delivery #checkout-step-title .row > div.col-6 {
        width: 100%;
    }
    .checkout-login-sidebar .popup-header-top {
        font-size: 12px;
        font-weight: 600;
    }
    .catalog-product-view .table.grouped .product-item-name {
        font-size: 14px;
    }
    .title-box .result-title,
    .title-box  .all-products-link {
        font-size: 10px;
        font-weight: 600;
    }
    .catalog-product-view .box-tocart .action.primary {
        padding: 13px 5px;
        font-size: 16px !important;
    }
    .catalog-product-view .box-tocart .control.akeans-responsive-control {
        width: 60px;
    }
    .active-swatch .swatch-attribute-options, .product-options-wrapper .swatch-attribute-options {
        width: 100%;
    }
    /* Fix mobile category brand image style */
    .category-image .image {
        min-height: 200px;
    }
}
@media only screen and (max-width: 360px){
    .aminicart .block-minicart .block-footer > .actions {
        margin-bottom: 0;
    }
    .search-result-field .owl-carousel .owl-nav > div {
        top:15%;
    }
    .modal-slide.checkout-popup-sidebar .checkout-shipping-method .actions-toolbar > .primary,
    .modal-slide.checkout-popup-sidebar .action.primary.button {
        height: auto;
        min-height: 50px;
    }
}
@media only screen and (max-width: 320px){
    .page-products .toolbar.toolbar-products .sorter {
        position: static;
        order: 0;
    }
}
@media (max-height: 700px) {
    .modal-slide.register-sidebar .threeimageupload {
        position: relative;
        width: 100%;
        left: auto;
        transform: none;
    }
    .modal-slide.register-sidebar .threeimageupload{
        bottom:auto;
    }
}
/* DBoss Custom CSS */
/* Homepage Banner Style */
@media (max-width: 767px) {
  /* Center Product Title and Reviews */
  .akeans-page-title-wrapper,
  .product.attribute.overview {
      text-align: center;
  }
}
/* Megamenu Mobile Always Style */
.menu-dropdown-icon.open > a::before {
    content: "";
}
.menu .back-arrow {
    top: 30px;
    z-index: 1;
}
.logo {
    z-index: 6;
}
@media (max-width: 959px) {
    .menu .back-arrow {
        top: 27px;
        z-index: 1;
    }
}
/* Persistent X to Close Megamenu  */
.close-megamenu-wrap {
    float: right;
}
.close-megamenu-wrap .close-megamenu{
    display: inline-block;
    width: fit-content;
    font-size: 0;
}
.shopcatmain.open .close-megamenu-wrap .close-megamenu::before {
    content: '\e616';
    font-family: 'luma-icons';
    color: var(--secondary_color);
    line-height: 24px;
    font-size: 14px;
    font-weight: 900;
}
/* Modal Checkout Style */

@media (max-width: 767px) {
    .secure-col span {
        display: none;
    }
    .modal-slide.checkout-popup-sidebar .opc-progress-bar-item._complete > span::after {
        color: var(--body_color);
    }
    .modal-slide.checkout-popup-sidebar .opc-progress-bar-item > span {
        font-size: 0px !important;
    }
    .modal-slide.checkout-popup-sidebar .checkout-payment-method .payment-method-content {
        padding: 0 15px;
    }
}
.opc-block-summary .items-in-cart.active > .title:after,
.opc-block-summary .items-in-cart > .title:after
 {
    display: none;
}
.opc-block-shipping-information .ship-to, .opc-block-shipping-information .ship-via {
    margin: 0;
}

/* Stripe Zip Code Style */

.control .akeans-postcode-data {
    border: 0;
    color: #32325d;
    background-color: transparent;
    line-height: 18px;
    font-size: 16px;
    font-family: sans-serif;
    width: 90px;
    height: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.control .akeans-postcode-data::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #88929D;
    opacity: 1; /* Firefox */
}
.control .akeans-postcode-data:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #88929D;
}
.control .akeans-postcode-data::-ms-input-placeholder { /* Microsoft Edge */
    color: #88929D;
}
@media (max-width: 440px) {
    .control .akeans-postcode-data {
        padding: 0 5px;
        width: 55px;
    }
}
/* Flex Break */
.flex-break {
    flex-basis: 100%;
    height: 0;
}

/* CMS Page Title Style */
.cms-page-view .page-title-wrapper {
    background-color: var(--primary_color);
    padding: 120px 25px;
    text-align: center;
    border-radius: 20px;
    margin: 25px 0;
}
.cms-page-view .page-title {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
}
@media (max-width: 959px) {
    .cms-page-view .page-title-wrapper {
        padding: 25px 25px;
        width: 90%;
    }
}

/* Category Filter Pop-out Button Styles */
@media (max-width: 624px) {
    .block-custom-actions .actions {
        /* flex-direction: column; */
        flex-wrap: wrap;
        /* row-gap: 20px; */
        padding: 0px 30px;
        position: relative;
    }
    .block-custom-actions .actions .action {
        min-width: 46%;
    }
}

/* Customer Account Creation / Edit Styles */
.create-an-accountnew .alert {
    display: none;
}
.step1 {
    margin-bottom: 20px;
}
.email-value, .derm-email-value {
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
@media (max-width: 767px) {
    .modal-slide.profile-sidebar .more-info .more-content-box > div {
        width: 100%;
    }
}

/* Remove Checkout Label Style */
form#co-shipping-form label, form#co-shipping-form legend, .form.form-login .label {
    display: none;
}
div[name="shippingAddress.company"] {
    display: none;
}
.payment-method-amasty_stripe .payment-method-title .label,
.fieldset>.legend+br,
.checkout-payment-method .payments .legend {
    display: none;
}

/* Google Pay Button */
.GooglePayButton, .GooglePayButton-logo {
    background-color: #212121;
    border-radius: 10px !important;
    border: 0;
}

/* Checkout Save New Address */
div[name="shippingAddress.street.2"],
div[name="shippingAddress.country_id"] {
    display: none;
}
label[for="shipping-save-in-address-book"] {
    display: inline-block !important;
}
@media only screen and (max-width: 767px) {
    .modal-popup.modal-slide .modal-inner-wrap[class] {
        background-color: #ffffff;
    }
    .checkout-index-index .modal-popup .modal-inner-wrap {
        padding: 15px;
    }
    .checkout-index-index .modal-popup .modal-inner-wrap .modal-content {
        padding: 0 15px;
    }
    .modal-popup.modal-slide {
        left: 0;
    }
}
/* Checkout Mobile Address Select */
.field.addresses {
    width: 100%;
}
.opc-wrapper .shipping-address-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.opc-wrapper .action-select-shipping-item {
    display: inline-block;
    float: right;
    margin: 8px 0 0 0;
}
.opc-wrapper .edit-address-button {
    display: inline-block;
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 95px;
}
.shipping-address-item .address-text {
    display: inline-block;
}
.shipping-address-item.not-selected-item .address-text {
    max-width: 66%;
}
.opc-wrapper .shipping-address-item {
    padding: 2px 10px 10px 10px !important;
    border-bottom-width: 2px !important;
    margin-bottom: 2%;
}
.modal-slide.checkout-popup-sidebar .opc-wrapper .shipping-address-item {
    width: 48%;
    font-size: 13px;
}
.modal-slide.checkout-popup-sidebar .opc-wrapper .shipping-address-item:nth-child(odd) {
    margin-right: 2%;
    margin-bottom: 2%;
}
.opc-wrapper .shipping-address-item.not-selected-item {
    border-color: #cccccc;
}
@media only screen and (max-width: 639px) {
    .shipping-address-item.not-selected-item .address-text {
        max-width: 100%;
    }
    .opc-wrapper .edit-address-button {
        display: inline-block;
        position: revert;
        bottom: revert;
        right: revert;
        width: 100%;
        margin: 8px 0 0 0;
    }
}

/* Logout Styles */
.header_account_link {
    position: fixed;
    top: 29px;
    font-weight: bold;
    font-size: 14px;
}

/* Cart Upsell Styles */
.upsell-product-brand {
    margin-top: 5px;
    position: relative;
    top: 6px;
    text-align: center;
}
.upsell-product-size {
    text-align: center;
}

/* FBT Mobile Style */
@media (max-width: 535px) {
    .catalog-product-view .block.related .block-content {
        text-align: center;
    }
    .catalog-product-view .block.related .block-actions {
        justify-content: center;
    }
    .catalog-product-view .akeans-related-products-toggle {
        margin-top: 0px;
    }
}
@media (max-width: 479px) {
     .catalog-product-view .akeans-related-products-toggle {
        margin-top: 15px;
    }
}

/* Category Configurable Size Selection Styles */
.akeans-swatch-tooltip-container > .label,
.akeans-swatch-tooltip-container > .current-value{
    display: none;
}

/* Category Product Details Style */
.product.details.product-item-details {
    text-align: center;
}

/* Yotpo Customizations */
.write-question-review-buttons-container {
    float: none !important;
    text-align: center;
}
#attr_reviews\.tab .write-question-button,
#attr_questionanswer\.tab .write-review-button {
    display: none;
}
.mobile-filters-modal .mobile-filters-footer-btn {
    width: 90% !important;
}
@media only screen and (max-width: 541px) {
    .main-widget .write-question-review-buttons-container .write-question-review-button {
        width: 100% !important;
    }
    .main-widget .bottom-line-items {
        height: 60px;
        margin: 0px auto !important;
    }
}
/* Hide Home Banner when mobile keyboard is up */
@media (max-height: 485px) {
    #home-banner {
        background-size: 0;
    }
}
/* Mobile menu spacing */
@media only screen and (max-width: 767px) {
    .header.links .fa.fa-user {
        padding: 13px 10px;
    }
    .form.minisearch .field.search .label {
        padding: 5.3px 8px;
    }
    .header.content .minicart-wrapper {
        padding: 6.5px 9px;
    }
    .shopcatmain.open .close-megamenu-wrap .close-megamenu::before {
        line-height: 41px;
    }
}
@media only screen and (max-width: 959px) {
    a.level-top {
        padding: 6.5px 10px !important;
    }
}

/* Mobile search */
@media only screen and (max-width: 767px) {
    .blog .carousel-wrap .owl-carousel .owl-nav > div {
        top: 62px;
    }
    .amsearch-results .amsearch-leftside .title-box.category {
        order: 4;
    }
}

/* Skincolor Tooltip + fix for iPad Mini */

.skincolor-tooltip {
    width: 84px;
    height: 84px;
    cursor:pointer;
    border-radius:5px;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .skincolor-tooltip {
        width: 79px;
        height: 79px;
    }
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: fieldtext !important;
}

/* Skincare Routine */
.recommendation-area {
    border: 1px solid var(--secondary_color);
    border-radius: 16px;
    margin-top: 2em;
}
.recommendation-title {
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    border-radius: 16px 16px 0 0;
    padding: 9px 0;
    background-color: #212121;
    color: var(--body_bg);
}
.recommendation-text {
    padding: .5em 1em;
    margin-bottom: 1em;
}

/* Skincare Routine - Request Update */
.row.customer-explanation {
    margin-top: 1em;
}
#update-explanation {
    border: 1px solid var(--secondary_color);
    border-radius: 12px 12px 0;
    padding: 0.5em 1em;
}
.customer-explanation label {
    margin-bottom: 0.25em;
}
@media only screen and (max-width: 767px) {
    #update-explanation {
        border-radius: 12px;
    }
}

/* Profile Update Success Modal */
@media only screen and (max-width: 767px) {
    .profile-edit-success-modal .modal-inner-wrap {
        height: auto !important;
        min-width: 350px !important;
        position: absolute !important;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%) !important;
        text-align: center;
    }
    .profile-edit-success-modal .modal-footer {
         justify-content: center;
     }
     /* Profile address edit mobile popup */
     .profile-address-edit {
        margin-left: unset !important;
    }
    .profile-address-edit .modal-content {
        padding-bottom: 0;
    }
    .profile-address-edit .modal-footer {
        padding: 0 1em 1em;
    }
}
.profile-edit-success-modal {
    padding-bottom: 0;
}
.modal-content {
    border: 0;
}
.profile-address-edit {
    margin: 0 !important;
}

/* Center Brand in AMSearch and Categories Style */
.amsearch-wrapper-content .product-brand {
    margin: 1em auto 0;

}
.products-grid .product-brand {
    margin-top: 1em;
    margin-bottom: 0px;
}
@media only screen and (max-width: 959px) {
    .amsearch-wrapper-content .product-brand {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 12px;
    }
}

/* Simple Products Size Selector Mobile */
@media only screen and (max-width: 767px) {
    .catalog-product-view .product-options-wrapper .swatch-attribute-options .swatch-option .label > strong {
        font-size: 14px;
    }
    .catalog-product-view .box-tocart .control.akeans-responsive-control > select {
        font-size: 12px;
    }
}
@media only screen and (max-width: 479px){
    .catalog-product-view .box-tocart .control.akeans-responsive-control > select {
        font-size: 16px;
    }
}

/* Capitalize First Letters of ATC Button */
.action.primary.tocart {
    text-transform: capitalize;
}

/* Fix forgot password alert color */
#popup-modal-forgot-password .message.success {
    margin: 0;
    padding: 12px !important;
    display: block;
    font-size: 1.3rem;
    background: #d1e7dd;
    color: #006400;
    position: relative;
}

/* Hide random reward title on forgot password page */
.customer-account-forgotpassword .page-title-wrapper {
    display: none;
}

/* FN MegaMenu Customizations */
.modal-slide .mega-menu-header {
    height: 60px !important;
}
.menu>ul.menu-html {
    top: 70px;
}
@media only screen and (max-width: 767px){
    .modal-slide .mega-menu-header .action-close {
        top: 24px !important;
    }
    .mega-menu-header .logo img {
        max-width: 167px;
        margin: 4px auto !important;
    }
}

/* Checkout Reward Points */
.awrewards-checkout-wrapper {
    width: 50%;
    position: relative;
    float: right;
    padding-left: 7.5px;
}
.awrewards-checkout-wrapper::after {
    content: '';
    display: block;
    clear: both;
}
.awrewards-checkout-wrapper .payment-option-title {
    border: none;
    padding-bottom: 10px;
}
.awrewards-checkout-wrapper .payment-option-content {
    padding: 0;
}
.payment-option.discount-code .payment-option-content .primary .action.action-apply,
.payment-option.discount-code .payment-option-content .primary .action.action-cancel,
.awrewards-checkout-wrapper .payment-option-content .primary .action.action-apply,
.awrewards-checkout-wrapper .payment-option-content .primary .action.action-cancel {
    background: transparent;
    border: 1px solid var(--hover_color);
    color: var(--hover_color);
    transition: var(--site_transition);
    height: 50px;
    width: 100%;
    padding: 0;
}
.payment-option.discount-code .payment-option-content .primary .action.action-apply:hover,
.payment-option.discount-code .payment-option-content .primary .action.action-cancel:hover,
.awrewards-checkout-wrapper .payment-option-content .primary .action.action-apply:hover,
.awrewards-checkout-wrapper .payment-option-content .primary .action.action-cancel:hover {
    background-color: var(--hover_color);
    border: none;
    color: #fff;
}
@media only screen and (max-width: 640px) {
    .modal-slide.checkout-popup-sidebar .payment-option.discount-code .actions-toolbar > .primary,
    .modal-slide.checkout-popup-sidebar .awrewards-checkout-wrapper .actions-toolbar > .primary {
        padding-top: 0;
    }
}
.alle-rewards-icon {
    margin-left: 3px;
}

/* Checkout Background */
.checkout-index-index .page-main {
    padding: 0;
    height: 100vh;
    max-width: 100%;
    margin-top: -74px;
}
.checkout-index-index .columns .column.main {
    padding: 0;
}
/* Checkout Lastpass */
.checkout-index-index div[data-lastpass-root] {
    display: none;
}
/* Special Price */
/* Categories */
.price-box.price-final_price {
    display: inline-block;
}
.complete-profile-price {
    text-decoration: line-through;
}
.catalog-category-view .complete-profile-price {
    margin-right: 5px;
}
.catalog-category-view .flex-both-prices {
    display: none;
}
/* Simple Products */
.product-info-main .members-discount-label {
    display: none;
}
.product-message-wrapper .members-discount-label {
    display: flex;
}
.product-message-wrapper .price-rule-label {
    margin-left: 0.5rem;
    color: var(--secondary_color);
}
.flex-both-prices {
    display: flex;
    flex-direction: column;
    line-height: 28px;
}
@media only screen and (max-width: 479px) {
    .product-info-main .members-discount-label {
        display: flex;
        justify-content: center;
        margin-bottom: 17px;
    }
    .product-add-form .members-discount-label {
        display: none;
    }
    .flex-both-prices {
        display: flex;
        flex-direction: column;
    }
}

/* Grouped Products */
.page-product-grouped .old-price .price-label {
    display: none;
}
.page-product-grouped .old-price .price {
    text-decoration: line-through;
}

/* Configurable Products */
.page-product-configurable .flex-both-prices {
    display: flex;
    flex-direction: column;
    line-height: 1.5em;
}
.page-product-configurable .product-item .old-price .price {
    visibility: hidden;
}
@media only screen and (max-width: 479px) {
    .page-product-configurable .product-item .old-price .price {
        visibility: visible;
    }
}
/* Configurable Color Products */
.page-product-configurable .swatch-attribute-label,
.page-product-configurable .swatch-attribute-selected-option {
    display: none;
}
@media only screen and (max-width: 479px) {
    #select2-select_color_2-container .wk-option-price-div .complete-profile-price {
        margin-top: 0;
    }
    #select2-select_color_2-container .wk_config_attr_value {
        white-space: break-spaces;
    }
    .select2-results__option .complete-profile-price {
        margin-top: 0;
        font-size: 16px;
    }
}
/* Autocomplete Search */
.amsearch-form-container .amsearch-wrapper-content .price {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 14px !important;
}
.amsearch-form-container .amsearch-wrapper-content .complete-profile-price {
    margin-right: 5px;
}
/* Search */
.catalogsearch-result-index .complete-profile-price {
    margin-right: 5px;
}
/* Minicart */
.minicart-items .product-item-details .price-including-tax,
.minicart-items .product-item-details .price-excluding-tax {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
}
.minicart-member-price {
    font-size: 1.4rem;
    font-weight: 500;
    text-decoration: line-through;
}
.aminicart .price-box.price-final_price {
    display: block;
}
/* FBT */
.block.related .product-item .old-price {
    margin: 0;
    text-decoration: line-through;
}
@media only screen and (max-width: 479px) {
    .block.related .products-related .price-box.price-final_price {
        width: auto;
    }
    .block.related .products-related .field.choice {
        left: 0;
    }
}
/* Product Message */
.product-message-wrapper .price-match-link {
    display: flex;
}
.product-message-wrapper .price-match-link a {
    color: var(--body_color);
}
.product-message-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: -20px;
    opacity: .7;
    font-size: 12px;
}
@media only screen and (max-width: 479px) {
    .product-message-wrapper {
        display: none;
    }
    .product-message-wrapper-mobile {
        display: flex;
        margin-bottom: -37px;
        font-size: 11px;
    }
}
/* Grouped Products Product Message */
@media only screen and (max-width: 479px) {
    .page-product-grouped .product-message-wrapper {
        display: flex;
    }
    .page-product-grouped .product-message-wrapper-mobile {
        display: none;
    }
}
/* Bundle Products Product Message */
.page-product-bundle .product-message-wrapper {
    margin-bottom: -17px;
}
/* Tooltip container */

.derm-tooltip {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.derm-tooltip .tooltiptext {
    visibility: hidden;
    width: 160px;
    background-color: var(--secondary_color);
    color: var(--body_bg);
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
}
.derm-tooltip:hover .tooltiptext {
    visibility: visible;
}
.tooltip-bottom {
    top: 135%;
    left: 50%;
    margin-left: -80px;
}
.derm-tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    bottom: 100%;  /* At the top of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent var(--secondary_color) transparent;
}
@media only screen and (max-width: 479px) {
    .tooltip-bottom /* Actually top */ {
        top: unset;
        bottom: 125%;
        left: 50%;
        margin-left: -80px;
    }
    .derm-tooltip .tooltiptext::after {
        content: " ";
        position: absolute;
        top: 100%; /* At the bottom of the tooltip */
        left: 50%;
        margin-left: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: var(--secondary_color) transparent transparent transparent;
      }
}

/* Bundle Desktop and Mobile Floating ATC Style */
.page-product-bundle .price-box.price-configured_price,
.page-product-bundle .bundle-options-wrapper .product-options-bottom {
    display: none;
}
@media only screen and (max-width: 767px) {
    .page-product-bundle .bundle-options-wrapper .product-options-wrapper {
        width: 99% !important;
        margin-bottom: 0;
    }
    .page-product-bundle .product-info-main .product-add-form > form {
        display: flex;
        justify-content: space-between;
    }
}
@media only screen and (max-width: 479px){
    .page-product-bundle .bundle-options-wrapper {
        width: 140px !important;
        margin-right: 5px;
    }
    .page-product-bundle .bundle-options-container {
        margin-bottom: -40px;
    }
}

/* Grouped Product Style */
.product-grouped-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-size: 14px;
    margin: 10px;
}
.product-grouped-wrapper .product-item-name {
    font-weight: bold !important;
}
.table.grouped .price-box .price{
    margin-right: 10px;
}
.table.grouped .price-box .price, .table.grouped .price-box .old-price .price {
    font-weight: 500;
}
.page-product-grouped .table-wrapper.grouped tbody {
    overflow: hidden;
}
@media only screen and (max-width: 639px) {
    .product-grouped-wrapper {
        width: max-content;
    }
    .page-product-grouped  .price-box.price-final_price {
        order: 1;
        margin: 0 ;
    }
}

/* Search bar close mobile fix */
.amsearch-close {
    padding: 25px;
}

/* Fix Request Update Button Margin */
a.request-update.btn.btn-secondary {
    margin-top: 12px;
}

/* Fix Product Add To Links */
.product-addto-links {
    display: flex;
    flex-direction: row;
}
.towishlist span {
    font-weight: 600;
    font-style: normal !important;
    font-family: var(--body_font) !important;
}
.towishlist .program-added {
    display: none;
}
.towishlist.inwishlist .program-added {
    display: inline;
}
.product-addto-links .action.tocompare {
    display: none;
}
.product-addto-links .action.towishlist::before {
    content: "\f055";
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    font-family: 'Font Awesome 5 Free';
    color: var(--red_color);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    padding-right: 6px;
}
.product-addto-links .action.towishlist {
    margin-right: 0px;
}
.product-addto-links:hover {
    color: var(--red_color);
}
@media only screen and (max-width: 767px) {
    .product-addto-links .action.towishlist::before {
        font-size: 16px;
    }
    .product-addto-links {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
}
@media only screen and (max-width: 479px) {
    .product-addto-links {
        font-size: 14px;
    }
}

/* Product Page Cart Rules */

.product-cart-rule-wrapper {
    z-index: 1;
    justify-self: center;
    align-self: center;
    grid-area: 1 / 2 / 2 / 4;
}
.product-cart-rule {
    width: 170px;
    float: right;
    cursor: pointer;
}
@media only screen and (max-width: 767px) {
    .product-cart-rule {
        width: 100px;
    }
}
#product-cart-rule-modal {
    padding: 0.5em 2em 2em 2em;
}
@media only screen and (max-width: 1450px) {
    .product-cart-rule-wrapper {
        width: unset;
        height: unset;
        grid-area: 1 / 2 / 2 / 4;
    }
}
@media only screen and (max-width: 1023px) {
    .product-cart-rule-wrapper {
        width: unset;
        height: unset;
        position: absolute;
        top: 27vw;
        right: 6vw;
        margin-left: 0;
    }
    .amsearch-form-container.-large .amsearch-wrapper-content .tocart {
        font-size: 12px !important;
    }
}
@media only screen and (max-width: 767px) {
    .product-cart-rule-wrapper {
        width: unset;
        height: unset;
        position: absolute;
        margin-left: 0;
        top: 85px;
        right: 0;
        margin-right: 7vw;
    }
}

/*Logged In As Customer Fix */
.lac-notification-sticky .top-container {
    height: initial;
    margin-top: initial;
    max-width: initial;
    padding: 0 20px;
    width: inherit;
}
/* CMS Page Styling */
.cms-page-view .page-main {
    width: 100%;
    max-width: 100%;
    padding: 0;
}
.cms-faq .page-title-wrapper,
.cms-terms-and-conditions .page-title-wrapper,
.cms-privacy-policy .page-title-wrapper {
    max-width: 1320px;
    text-align: center;
    margin: 0px auto;
}
.cms-page-view .breadcrumbs {
    display: none;
}
.cms-page-view .container {
    max-width: 940px;
}
.cms-mission .page-main .container,
.cms-team .page-main .container {
    max-width: 1320px;
}
.cms-page-view .page-main h1 {
    font-size: var(--heading_H2);
    color: var(--secondary_color);
    font-weight: 700;
    margin-bottom: 25px;
}
.cms-page-view .page-main h2 {
    font-size: 3rem;
    color: var(--secondary_color);
    font-weight: bold;
    margin-bottom: 3rem;
}
.cms-page-view .page-main h3 {
    font-size: 2.25rem;
    color: var(--secondary_color);
    font-weight: bold;
    margin-bottom: 2.25rem;
}
.cms-page-view .page-main p {
    margin-bottom: 1.25em;
}
.cms-page-view .page-main li {
    list-style: inside;
}
.cms-page-view .page-main dl,
.cms-page-view .page-main ol,
.cms-page-view .page-main ul {
    margin-bottom: 1.25em;
}
@media only screen and (max-width: 959px) {
    .cms-page-view .page-main h1 {
        font-size: 3rem;
        text-align: center;
        margin-bottom: 0px;
    }
    .cms-page-view .page-main .category-title h1 {
        font-size: 24px;
        text-align: center;
        margin-bottom: 10px;
    }
}
::selection {
    background: var(--primary_color);
    color: #fff;
}

/* Custom Reviews / Questions */

.custom-review-data {
    display: flex;
    flex-direction: row;
    font-weight: 600;
    font-size: 16px;
    color: var(--secondary_color) !important;
    font-style: normal !important;
    font-family: var(--body_font) !important;
    flex-wrap: wrap;
    column-gap: 1em;
}
.custom-review-data .fas,
.custom-review-data .far {
    color: var(--primary_color);
    margin-right: -2px;
}
.custom-reviews-link {
    margin-left: 0.35em;
}
.catalog-category-view .custom-review-data,
.catalogsearch-result-index .custom-review-data {
    justify-content: center;
}
.catalog-category-view .custom-reviews,
.catalogsearch-result-index .custom-reviews {
    margin-right: 3px;
}
.catalog-category-view .catalog-price-rule {
    margin-top: 2px;
    color: var(--secondary_color);
}
@media only screen and (max-width: 767px) {
    .custom-review-data {
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media only screen and (max-width: 479px){
    .custom-review-data {
        font-size: 14px;
    }
}

/* Hide Mirasvit Search Result Tabs */
.mst-search__result-tabs {
    display: none;
}

/* Remove dots from blog section on SRP */
.catalogsearch-result-index .catalog-search-column-right-side .owl-dots {
    visibility: hidden;
}

/* Form Required / Error */
.form-group.required label:after {
    content: " *";
    color: #e02b27;
}
.street-address.address-error label,
.form-group.address-error label,
.form-group.phone-error label,
.form-group.error label {
    color: #e02b27 !important;
}
.form-group label.multiselectlabel {
    color: var(--secondary_color) !important;
}
.field.address-error input,
.form-group.address-error input,
.form-group.phone-error input,
.form-group.error input,
.form-group.error select {
    border-color: #e02b27 !important;
}
.form-group.error .control:after {
    content: "This is a required field.";
    font-size: 1.2rem;
    color: #e02b27;
}
.phone-error .control,
.phone-required .control {
    line-height: 1;
}
.phone-error .control > input,
.phone-required .control > input {
    margin-bottom: 7px;
}
.phone-error .control:after,
.phone-required .control:after {
    font-size: 1.2rem;
    color: #e02b27;
    line-height: 1.8rem;
}
.phone-error .control:after {
    content: "This phone number is already associated with an existing account";
}
.phone-required .control:after {
    content: "This is a required field.";
}
.form-group.address-error .control:after {
    content: "Not a valid address. Please use Google Autocomplete instead";
    font-size: 1.2rem;
    color: #e02b27;
}
.field .address-error .control:after {
    content: "Not a valid address. Please use Google Autocomplete instead";
    font-size: 1.2rem;
    color: #e02b27;
}
.form-group.error .nested-control:after,
.form-group.required label.mytooltip:after,
.form-group.required label.multiselectlabel:after,
.form-group.skincolor.error .control:after {
    content: "";
}
.form-group.required.error label[for="skincolor"]:after,
.form-group.required.error label[for="healthproblemaware"]:after,
.form-group.required.error label[for="allergies"]:after,
.form-group.required.error label[for="skincolor-reg"]:after,
.form-group.required.error label[for="healthproblemaware-reg"]:after,
.form-group.required.error label[for="allergies-reg"]:after {
    content: "This is a required field.";
    font-size: 1.2rem;
    font-weight: var(--bs-body-font-weight);
    color: #e02b27;
}
.form-group.required.error label[for="skincolor"] span:after,
.form-group.required.error label[for="healthproblemaware"] span:after,
.form-group.required.error label[for="allergies"] span:after,
.form-group.required.error label[for="skincolor-reg"] span:after,
.form-group.required.error label[for="healthproblemaware-reg"] span:after,
.form-group.required.error label[for="allergies-reg"] span:after {
    content: "*";
    color: #e02b27;
}
.wk-ap-submit-btn-container.error:after {
    content: "You must complete all required fields.";
    font-size: 1.2rem;
    font-weight: var(--bs-body-font-weight);
    color: #e02b27;
}
.edit-profile-sidebar .error .popupactionedit {
    background: #e02b27 !important;
}
/* Wishlist item show full when added */
.product-addto-links .action.inwishlist::before {
    content: "\f058";
}
/* Hide Login button on guest checkout page */
.checkout-container .authentication-wrapper {
    display: none;
}
.checkout-container .exit-col .action.primary {
    background-color: white;
    border: 1px solid var(--primary_color);
    color: var(--primary_color);
}
.checkout-container .exit-col .action.primary:hover {
    background-color: var(--primary_color);
    color: white;
}

/* Checkout Payment step */
.opc-wrapper .opc-payment .step-title {
    display: none;
}
@media only screen and (max-width: 767px) {
    .checkout-payment-method .payment-method-title {
        padding: 0;
    }
}
.co-stripe-form .fieldset > .field > .label {
    display: none;
}

/* Bss Popup */
.mfp-content .popup_wrapper {
    border-radius: 20px;
}
@media (max-width: 767px) {
    .mfp-container {
        padding: 0;
    }
    .mfp-content {
        vertical-align: bottom;
    }
    .mfp-content .popup_wrapper {
        border-radius: 20px 20px 0 0;
    }
}
@media (min-width: 768px) {
    #template-general {
        max-width: 600px;
    }
}
.bss-popup-block {
    max-width: 600px;
    padding: 30px 20px;
    text-align: center;
}
.bss-popup-block p {
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .bss-popup-block p {
        margin-bottom: 10px;
    }
}
.bss-popup-block.block-free-sample {
    max-width: 1100px;
    padding: 30px 0 10px;
}
.bss-popup-block .action:focus, .bss-popup-block .action:active {
    border: 0;
}
@media (min-width: 768px) {
    .bss-popup-block.block-free-sample .block-products {
        padding-left: 20px;
    }
}
.bss-popup-block.block-free-sample .product-title {
    margin-top: 10px;
    font-weight: 700;
}
@media (max-width: 767px) {
    .bss-popup-block.block-free-sample .product-title {
        font-size: 12px;
    }
}
.bss-popup-block.block-free-sample .product-type {
    margin-bottom: 6px;
}
.bss-popup-block.block-free-sample .action.primary.tocart {
    line-height: 1;
}
.bss-popup-block.block-free-sample .product-image {
    background-color: var(--light_grey);
}
.bss-popup-block.block-video-popup {
    max-width: 1000px;
    align-items: center;
}
.bss-popup-block.block-video-popup .action.primary {
    background-color: var(--secondary_color);
    width: 100%;
    max-width: 350px;
    margin-bottom: 15px;
    border-radius: 12px;
}
.bss-popup-block.block-refer-neighbor-popup .action.primary {
    background-color: var(--secondary_color);
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
}
.mfp-content .popup_wrapper {
    width: fit-content;
}
.bss-popup-block .title-popup {
    font-size: 30px;
    color: #000;
    margin-bottom: 20px;
}
.bss-popup-block .actions {
    margin-top: 20px;
}
.bss-popup-block .actions > .action-item:not(:last-child) {
    margin-bottom: 10px;
}
.bss-popup-block .actions .link-underline {
    text-decoration: underline;
}
.bss-popup-block .actions .action.primary {
    border: 0;
}
@media (max-width: 767px) {
    .bss-popup-block .actions .action.primary {
        width: 100%;
    }
    .bss-popup-block .title-popup {
        line-height: 1.2;
    }
}
.bss-popup-block.block-create-account {
    max-width: 500px;
}
.bss-popup-block.block-create-account .title-popup {
    font-size: 28px;
}
.create-account-popup-form {
    max-width: 350px;
    margin: 0 auto;
}
#create_account_popup_email {
    margin-bottom: 15px;
}
.create-account-popup-form .action.primary {
    background-color: var(--secondary_color);
    width: 100%;
    height: 50px;
    border-radius: 8px;
}
.mfp-move-from-bottom .mfp-with-anim {
    opacity: 0;
    transition: transform 0.2s;
    transform: translateY(100px);
}
.mfp-move-from-bottom.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: translateY(0);
}

/* Checkout Step 3 (Payment) */
#payment-request-button {
    margin-top: 10px;
}
#apple-pay-separator {
    margin: 10px 0;
}
/* always show scrollbar when modal is opened */
body._has-modal {
    overflow: unset;
}
button.mfp-close {
    text-indent: -9999px;
    opacity: 1;
    background-color: transparent;
}
button.mfp-close:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    line-height: 14px;
    color: var(--secondary_color);
    content: '\e616';
    font-family: 'luma-icons';
    font-weight: bold;
    display: inline-block;
    overflow: hidden;
    speak: none;
    text-indent: 0;
    float: left;
    margin-top: 15px;
}
button.mfp-close:not(.primary):active {
    box-shadow: none;
}
#layered-filter-block {
    display: none;
    opacity: 0;
}
#layered-filter-block[style*='display: block']{
    display: flex !important;
    opacity: 1;
}

/* Better Match on prod page */
#prod_better_match_trigger {
    position: absolute;
    left: 50%;
    bottom: 20%;
    transform: translateX(-50%);
}
.prod-better-match-trigger {
    padding-top: 30px;
    width: 100%;
}
.prod-better-match-trigger .btn {
    margin: 0;
    width: 100%;
}

/* Better Match on category layered page */
@media (min-width: 768px) {
    .page-layout-1column.page-with-filter .column.main {
        padding-top: 15px;
    }
}

/* Ajax Login modification */
.block-authentication .amsl-social-login .amsl-title {
    padding: 20px 0px;
}
.block-authentication .fieldset:last-child {
    margin-bottom: 0;
}
.block-authentication.new-reg {
    position: relative;
    padding-bottom: 134px;
}
.block-authentication.new-reg .password-container {
    width: 100%;
    bottom: 0;
}
.block-authentication.new-reg .password-container-checkout {
    position: absolute;
    width: 100%;
    bottom: 0;
}
.block-authentication .amsl-button-wrapper.with-label.-rectangular .amsl-button.-google {
    margin: 0;
}
.disabled-password .password {
    pointer-events: none;
}
.disabled-password #ajaxlogin-pass {
    background-color: var(--light_grey);
}
.disabled-password #ajaxlogin-send {
    pointer-events: none;
    background-color: var(--light_grey);
}
.disabled-password .actions-toolbar>.primary button span {
    color: #000;
    opacity: .5;
}
.amsl-social-wrapper {
    display: none;
}
@media only screen and (max-width: 767px) {
    .modal-slide .modal-header {
        padding: 20px;
    }
    .block-authentication .logintext p {
        padding-top: 0;
    }
}

/* Checkout Ajax Login */
.checkout-login-sidebar .amsl-social-login {
    height: auto;
}
.checkout-login-sidebar .amsl-social-login .amsl-title {
    padding: 10px 0 20px;
}
.checkout-login-sidebar .fieldset > .field, .checkout-login-sidebar .block-authentication .amsl-social-login .amsl-buttons {
    margin-bottom: 10px;
}
.checkout-login-sidebar .block-authentication.new-reg .popup-login-wrapper {
    position: relative;
    padding-bottom: 120px;
}
@media only screen and (max-width: 767px) {
    .checkout-login-sidebar .popup-login-wrapper {
        margin-top: 0;
    }
}

/* Video Wrapper */

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    margin-bottom: 24px;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Checkout Summary */
.opc-block-summary .product-item .product-item-inner {
    display: flex;
    position: relative;
    margin: 0;
}
.opc-block-summary .product-item .product-item-name-block {
    flex: 1;
    padding-right: 132px;
}
.opc-block-summary .items-in-cart .product {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.opc-block-summary .minicart-items-wrapper {
    padding: 0;
    margin: 0;
    max-height: max-content;
}
.opc-block-summary .minicart-items .product-item {
    margin: 0;
    padding: 15px 0 0;
}
.opc-block-summary .minicart-items .product-item-details {
    flex: 1;
    padding-left: 20px;
}
.opc-block-summary .minicart-items .product-item-details .details-qty {
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
    font-size: 16px;
}
.opc-block-summary .minicart-items .product-item-name {
    color: #212529;
    font-size: 16px;
    font-weight: 600;
    margin: 2px 0;
}
.opc-block-summary .product-item .message {
    width: 100%;
}
.checkout-rewards-modal.modal-popup .modal-inner-wrap {
	max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
}
.checkout-index-index .checkout-rewards-modal.modal-popup .modal-inner-wrap .modal-content {
    padding: 0;
}
.checkout-rewards-modal.modal-popup .modal-header {
	padding: 0 0 20px 0;
    justify-content: left;
}
@media only screen and (max-width: 767px) {
	.checkout-rewards-modal.modal-popup.modal-slide._inner-scroll .modal-inner-wrap {
		min-height: auto;
        position: fixed;
		top: auto;
        left: 0;
        bottom: 0;
        transform: translateY(100%);
        border-radius: 20px 20px 0 0;
	}
    .checkout-rewards-modal.modal-popup.modal-slide._show .modal-inner-wrap {
        transform: translateY(0);
    }
    .checkout-rewards-modal.modal-popup .action-close {
        top: 24px;
        right: 15px;
    }
}
.checkout-container.checkoutpopup.not-available #payment-request-button,
.checkout-container.checkoutpopup.not-available #apple-pay-separator {
    display: none !important;
}
#checkout-step-payment .product-item h3.label {
    font-size: 16px;
    text-align: center;
}
#checkout-step-payment .backorder-msg, #checkout-step-payment .discontinued-msg, #checkout-step-payment .crosssell-msg {
    margin-bottom: 20px;
}
#checkout-step-payment .custom-review-data {
    justify-content: center;
}
#checkout-step-payment .custom-reviews {
    margin: 0;
}
#checkout-step-payment .products.wrapper.grid.products-grid {
    border: 1px solid #c2c2c2;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}
.checkout-validation-modal {
    margin: 20px !important;
}
.checkout-validation-modal.modal-popup header.modal-header {
    padding: 0 0 20px 0;
    justify-content: left;
}
.checkout-validation-modal.modal-popup .modal-inner-wrap .modal-content {
    padding: 0;
}
.checkout-validation-modal.modal-popup .modal-inner-wrap .modal-footer {
    padding: 20px 0 0 0;
    justify-content: space-between;
}
.checkout-validation-modal.modal-popup .modal-inner-wrap .modal-footer .action-secondary.action-dismiss {
    font-size: 18px !important;
    color: var(--body_color);
    background: var(--body_bg);
    border: 2px solid var(--body_color);
    padding: 5px 13px;
    transition: var(--site_transition);
}
.checkout-validation-modal.modal-popup .modal-inner-wrap .modal-footer .action-secondary.action-dismiss:hover {
    color: var(--body_bg);
    background: var(--primary_color);
}
@media (max-width: 767px) {
    .checkout-validation-modal.modal-popup.modal-slide._inner-scroll .modal-inner-wrap {
        min-height: initial;
    }
}
.checkout-index-index .checkout-validation-alert .modal-inner-wrap {
    padding: 0;
}
.checkout-index-index .checkout-validation-alert .modal-inner-wrap .modal-footer {
    justify-content: center;
}
.custom-pro-tips {
    margin-top: 60px;
    line-height: 1.5;
    font-size: 14px;
    font-style: italic;
    margin-left: auto;
    margin-right: auto;
}
.custom-pro-tips > img {
    width: 100%;
    padding-bottom: 5px;
}
.cms-page-view .container.wider {
    max-width: 1280px;
}
.cat-icon svg {
    fill: var(--green_color);
}
.cat-icon *[class^="icon-"] {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cat-icon *[class^="icon-"]::before {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    background-size: cover;
    margin-bottom: 10px;
    filter: invert(30%) sepia(33%) saturate(665%) hue-rotate(85deg) brightness(92%) contrast(97%);
}
.icon-rapid-growth::before {
    background-image: url(../images/icon-rapid-growth.svg);
}
.icon-expert-training::before {
    background-image: url(../images/icon-expert-training.svg);
}
.icon-exclusive-products::before {
    background-image: url(../images/icon-exclusive-products.svg);
}
.icon-ongoing-support::before {
    background-image: url(../images/icon-ongoing-support.svg);
}
.icon-expert-staff::before {
    background-image: url(../images/icon-expert-staff.svg);
}
.icon-fast-shipping::before {
    background-image: url(../images/icon-fast-shipping.svg);
}
.icon-bulk-discounts::before {
    background-image: url(../images/icon-bulk-discounts.svg);
}
.icon-easy-ordering::before {
    background-image: url(../images/icon-easy-ordering.svg);
}
.cms-page-view .cat-quickinfo h2 {
    background: none;
    margin: 10px 0;
    padding: 0;
    font-size: 28px;
    line-height: 38px;
}
.cms-page-view .cat-quickinfo a.link-large {
    background: none;
    color: #c82d42;
    margin: 10px 0;
    padding: 0;
    font-size: 24px;
    font-weight: bold;
}
.cms-page-view .cat-quickinfo a.link-large:hover {
    text-decoration: underline;
}
.cms-page-view .cat-contact h1 {
    font-size: 24px;
    color: var(--green_color);
    margin-bottom: 20px;
}
.cat-contact p {
    font-size: 16px;
}
.contact-icon {
    font-size: 70px;
    color: var(--green_color);
}
.white-box {
    background-color: #fff;
    padding: 28px;
    box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.2);
    height: 100%;
}
.cat-faq {
    background-color: #f4f4f4;
}
.cms-page-view .cat-faq h1 {
    font-size: 40px;
    color: var(--green_color);
}
.cat-faq a.btn {
    font-size: 26px;
    font-weight: bold;
    color: var(--body_color);
    text-decoration: none;
}
.cat-faq .card {
    border: none;
    box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}
.cat-faq .card-body {
    font-size: 20px;
    font-weight: bold;
    padding-left: 70px;
}
.cat-faq .card-header {
    background-color: #fff;
    border: none;
    padding: 14px 24px;
}
.cat-faq .btn-link:hover {
    color: var(--green_color);
}
.cat-bordertop {
    border-top: 3px solid #c43040;
}
.cat-greybg {
    background-color: #f5f5f5;
}
.cat-form form .form-group {
    margin-bottom: 14px;
}
.cat-form label {
    padding-bottom: 8px;
}
.cat-form .btn.btn-primary {
    margin-top: 15px;
}
.cat-form .toolbar {
    margin-bottom: 0;
}
.cat-form .form-control {
    font-size: 16px;
}
.cat-form .float-right {
    float: right;
}
.youtubevideowrap {
    margin-bottom: 15px;
}
.youtubevideowrap .video-container {
    position: relative;
    padding-bottom: 51%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.youtubevideowrap .video-container iframe, .youtubevideowrap .video-container object, .youtubevideowrap .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.icon-bullet::before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url(../images/icon-bullet.svg);
    background-size: cover;
    vertical-align: middle;
    margin-right: 5px;
}
.productmatch-grid {
    margin-top: 1rem;
}
.productmatch-grid .grid-container > .grid-item:last-child {
    border-right: 2px solid rgba(0, 0, 0, 0.8);
}
.productmatch-grid .grid-container:first-child > .grid-item {
    border-top: 2px solid rgba(0, 0, 0, 0.8);
}
.productmatch-grid .grid-container:first-child > .grid-item:first-child {
    border-top-left-radius: 12px;
}
.productmatch-grid .grid-container:first-child > .grid-item:last-child {
    border-top-right-radius: 12px;
}
.productmatch-grid .grid-container:last-child > .grid-item {
    border-bottom: 2px solid rgba(0, 0, 0, 0.8);
}
.productmatch-grid .grid-container:last-child > .grid-item:first-child {
    border-bottom-left-radius: 12px;
}
.productmatch-grid .grid-container:last-child > .grid-item:last-child {
    border-bottom-right-radius: 12px;
}
.productmatch-grid span.label {
    color: black;
    font-weight: 700;
}
.certificates h3 {
    font-weight: 600;
    margin-bottom: 10px;
}
.certificates-form {
    display: flex;
    background: #f1f1f1;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #a1a1a1;
    justify-content: space-between;
    flex-wrap: wrap;
    transition: var(--site_transition);
}
.certificates-form.tax-exempt-form {
    background: transparent;
    border: 0;
    padding-left: 0;
    padding-right: 0;
}
.certificates-form > div {
    width: 30%;
}
.certificates-form.error:after {
    display: block;
    content: "* Professionals must upload an applicator's license and ID to continue.";
    width: 100%;
    margin-top: 8px;
    color: #e02b27;
}
.uploader-form.required > label:after {
    content: " *";
    color: #e02b27;
}
.drag-drop-area {
    background-color : #f1f5f8;
    border : #ccc 1px dashed;
    height : 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
}
.drag-drop-area .icon-cloud-upload {
    font-size: 30px;
}
.uploader-container i[class*='fa-'] {
    color: #9cafbd;
}
.uploader-container i[class*='fa-file-'] {
    font-size: 24px;
    margin-top: 5px;
    margin-right: 10px;
}
.uploader-container .info-bar {
    display: flex;
    margin-top: 8px;
    align-items: center;
    width: 100%;
}
.uploader-container .progress-info {
    font-size: 12px;
    flex: 1;
    width: 50%;
}
.uploader-container .meta-info {
    position: relative;
    width: 95%;
}
.uploader-container .meta-info label[role=filename] {
    display: block !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.uploader-container .meta-info label[role=percentage] {
    position: absolute;
    right: 0;
    top: 0;
    background: #f1f1f1;
    padding: 0 4px;
}
.uploader-container .progress-bar-wrapper {
    background-color: #ffdce0e3;
    height: 5px;
    display: flex;
}
.uploader-container .progressbar {
    background-color: #2d69ab;
    transition: width .6s ease;
}
.uploader-container button.cancel-file {
    padding: 0;
    margin-left: 8px;
}
.uploader-container button.cancel-file:hover, .uploader-container button.cancel-file:focus {
    background: transparent;
}
.uploader-container button.cancel-file:hover i {
    color: #777;
}
.uploader-container .error-bar {
    font-size: 13px;
}
.uploader-container .preview > a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
}
.uploader-container .preview img {
    width: auto;
    height: fit-content;
    max-height: 150px;
}
.create-an-accountnew .error-bar .alert {
    display: block;
    padding: 0 5px;
}
@media (max-width: 767px) {
    .certificates-form {
        padding: 10px 0;
    }
    .certificates-form > div {
        width: 50%;
        display: flex;
        flex-direction: column;
        padding: 0 10px;
    }
    .certificates-form > div:not(:last-child) {
        margin-bottom: 10px;
    }
    .certificates-form .drag-drop-area {
        display: none !important;
    }
    .certificates-form .mobile-file {
        width: 250px;
    }
    .certificates-form .mobile-uploader {
        display: flex;
        align-items: center;
    }
    .certificates-form .icon-file-indicator-mobile {
        font-size: 24px;
        margin-right: 10px;
    }
    .uploader-container .info-bar {
        margin-top: 0;
    }
    .uploader-container .meta-info label[role=filename] {
        font-size: 14px;
    }
}
@media (min-width: 768px) {
    .certificates-form .mobile-uploader {
        display: none !important;
    }
}
.amrec-subscription-name {
    overflow: hidden;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 300px;
}
.content {
	padding: 0;
}
[data-lastpass-root], [data-lastpass-icon-root] {
    display: none !important;
}
.modal-slide.register-sidebar button.btn-next-pro {
    background-color: transparent;
    color: var(--secondary_color);
    border: 1px solid;
    margin-top: 16px;
}
form#co-shipping-form .field-pro-option {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
    height: 50px;
}
form#co-shipping-form .field-pro-option label {
    display: flex;
    align-items: baseline;
}
.certificates-form .uploader-label {
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    gap: 3px;
}
.certificates-form .uploader-label > i {
    cursor: pointer;
    font-size: 90%;
}
.certificates-form .uploader-label label {
    display: block !important;
    font-size: 14px;
}
.certificates-form .drag-drop-uploader span {
    display: none;
}
.certificates-form button.btn-license-upload {
    width: 100%;
    border: 1px solid #767676;
    padding: 4px 0;
    border-radius: 3px;
}
.certificates-form button.btn-license-upload:focus {
    background: #eee;
    color: #333;
}
.certificates-form input.license-file {
    display: none;
}
form#co-shipping-form .drag-drop-area {
    height: 80px;
}
.drag-drop-area.mage-error {
    border-color: var(--red_color) !important;
}
.modal-popup.confirm .modal-header .modal-title {
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    font-family: var(--title_font);
    width: 100%;
}
.modal-popup.confirm .action-close {
    right: 40px;
    top: 36px;
    padding: 0;
}
.modal-popup.confirm .action-close:before {
    font-weight: bold;
    color: var(--secondary_color);
}
.modal-popup.confirm .modal-content {
    text-align: center;
}
.modal-popup.confirm .modal-footer {
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: center;
}
@media only screen and (max-width: 767px) {
    .modal-popup.confirm .modal-inner-wrap {
        margin-top: 40%;
    }
    .modal-popup.confirm .action-close {
        right: 30px;
        top: 26px;
    }
}
.modal-slide.checkout-popup-sidebar .checkout-shipping-address select {
    background: #ffffff url('../images/select-bg.svg') no-repeat 100% 45%;
}
.modal-slide.checkout-popup-sidebar .checkout-shipping-address .fieldset.address {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.new-shipping-address-modal [name="shippingAddress.custom_email"] {
    display: none;
}
.shipping-protection.modal-popup .modal-inner-wrap {
    padding: 40px;
}
.shipping-protection.modal-popup header.modal-header {
    display: block;
    text-align: center;
    padding: 0 0 20px 0;
}
.shipping-protection.modal-popup .modal-title {
    font-weight: bold;
    font-size: 26px;
}
.checkout-index-index .shipping-protection.modal-popup .modal-inner-wrap {
    padding-bottom: 50px;
}
.shipping-protection.modal-popup .modal-content {
    padding: 0;
}
.shipping-protection.modal-popup .modal-footer .action.primary {
    background-color: var(--primary_color);
    width: 100%;
}
.shipping-protection.modal-popup .modal-footer .action.primary:hover {
    background-color: var(--hover_color);
}
.shipping-protection.modal-popup .modal-footer .action.close {
    background: transparent;
    color: var(--body_color);
    margin: 0 auto;
    font-size: 90%;
    text-decoration: underline;
}
.category-column-left-side .category-title {
    margin-bottom: 25px;
}
.category-author {
    margin-left: 3px;
}
.category-author .author-link {
    text-decoration: underline;
    font-weight: 600;
}
.authors-grid-wrapper {
    margin-top: 20px;
}
.modal-slide.checkout-popup-sidebar .opc-wrapper .form-login {
    position: relative;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #cccccc;
    border-bottom: 0;
}
.modal-slide.checkout-popup-sidebar .opc-wrapper .form-login .fieldset .note {
    margin: 0 0 10px 0;
    font-size: 16px;
}
.modal-slide.checkout-popup-sidebar .opc-wrapper .form-login .actions-toolbar > .secondary {
    position: absolute;
    right: 0;
    top: 30px;
}
.modal-slide.checkout-popup-sidebar .opc-wrapper .form-login .actions-toolbar > .secondary a.action {
    margin-top: 0;
}
.modal-slide.checkout-popup-sidebar .checkout-payment-method .payment-method-content .actions-toolbar {
    margin-top: 20px;
}
@media only screen and (max-width: 479px) {
    .modal-slide.checkout-popup-sidebar .opc-wrapper .form-login .fieldset .note {
        font-size: 14px;
    }
    .modal-slide.checkout-popup-sidebar .opc-wrapper .form-login .actions-toolbar > .secondary {
        font-size: 14px;
        top: 32px;
    }
}
@media only screen and (max-width: 639px) {
    form#co-shipping-form .field-pro-option, form#co-shipping-form .field-pro-uploader {
        top: -70px;
        position: relative;
    }
    .modal-slide.checkout-popup-sidebar .opc-wrapper .form-login {
        margin-top: -50px;
    }
}
/* Items detail shipping and price label */
.minicart-items .product-item-details .price-excluding-tax span.cart-price {
    font-size: 14px;
    margin-bottom: 4px;
}
.minicart-items .product-item-details .price-excluding-tax span.shipping-price {
    font-size: 14px;
}
.opc-block-summary .product-item span.cart-price span.price {
    font-size: 14px;
}
.opc-block-summary .minicart-items .product-item-details .price-excluding-tax {
    flex-flow: column;
    justify-content: flex-end;
    text-align: right;
    position: absolute;
    right: 2px;
    top: 20px;
}
.order-details-items .freight {
    font-size: 14px;
}
.checkout-index-index .modal-popup.pro-certification .modal-inner-wrap {
    max-width: 630px;
}
.pro-certification .certificates-form {
    padding: 20px 0;
    background: transparent;
    border: none;
}
.uploader-form.required label:after {
    content: " *";
    color: #e02b27;
}
