html {
    font-size: 62.5%;
}


/* Font Family */

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--mr_color__primary);
    font-weight: var(--mr_fontweight__regular);
    /* background: linear-gradient(#fcfcfc 0%, #fdfdfd 80.16%, #fff 100%); */
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin: 0 auto;
    max-width: 2480px;
    width: 100%;
    overflow-x: hidden;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* Containers */

.mr_container-fluid {
    width: 100%;
}

.mr_container {
    width: var(--global-width);
    max-width: 100%;
}

.mr_container--small {
    width: var(--global-width);
    max-width: var(--global-width);
}
#main.mr_container--small {
    width: 925px;
    max-width: var(--global-width);
}

.container {
    width: var(--global-width) !important;
    padding-left: 0;
    padding-right: 0;
}


/* Colors */

.mr_color__pink {
    color: var(--mr_color__pink);
}

.mr_color__yellow {
    color: var(--mr_color__lightblue);
}

.mr_color__black {
    color: var(--mr_color__black);
}

.mr_color__white {
    color: var(--mr_color__white);
}

.mr_color__lightblue {
    color: var(--mr_color__lightblue);
}

.mr_color__primary {
    color: var(--mr_color__primary);
}

.mr_color__linkwater {
    color: var(--mr_color__linkwater);
}
.mr_color__violet {
    color: var(--mr_color__violet);
}
.mr_background__pink {
    background-color: var(--mr_color__pink);
}

.mr_background__yellow {
    background-color: var(--mr_color__yellow);
}

.mr_background__black {
    background-color: var(--mr_color__black);
}

.mr_background__white {
    background-color: var(--mr_color__white);
}

.mr_background__lightblue {
    background-color: var(--mr_color__lightblue);
}

.mr_background__primary {
    background-color: var(--mr_color__primary);
}

.mr_background__linkwater {
    background-color: var(--mr_color__linkwater);
}


/* Fonts Variables */


/* Font Size */

.mr_fontsize__xsmall {
    font-size: var(--mr_fontsize__xsmall);
    line-height: 1.25;
}

.mr_fontsize__small {
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
}

.mr_fontsize__normal {
    font-size: var(--mr_fontsize__normal);
}

.mr_fontsize__medium {
    font-size: var(--mr_fontsize__medium);
    line-height: 1.2;
}
.mr_fontsize_seoheader {
    font-size: var(--mr_fontsize__seoheader);
}
.mr_fontsize__title,
.mr_fontsize__title * {
    font-size: var(--mr_fontsize__title);
    line-height: 1.11;
}

.mr_fontsize__big {
    font-size: var(--mr_fontsize__big);
}

.mr_fontsize__bigger {
    font-size: var(--mr_fontsize__bigger);
}

.mr_fontsize__biggest {
    font-size: var(--mr_fontsize__biggest);
    line-height: 1.19;
}


/* Font Weight */

.mr_fontweight__light {
    font-weight: var(--mr_fontweight__light);
}

.mr_fontweight__regular {
    font-weight: var(--mr_fontweight__regular);
}

.mr_fontweight__medium {
    font-weight: var(--mr_fontweight__medium);
}

.mr_fontweight__semibold {
    font-weight: var(--mr_fontweight__semibold);
}

.mr_fontweight__bold {
    font-weight: var(--mr_fontweight__bold);
}

.mr_fontweight__black {
    font-weight: var(--mr_fontweight__black);
}


/* Aspect Ratio */

.mr_aspect_ratio {
    position: relative;
}

.mr_aspect_ratio::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.mr_aspect_ratio>* {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover;
    object-position: 50%;
}


/* Other */

.mr_box_shadow {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.mr_text__center {
    text-align: center;
}

.mr_text__left {
    text-align: left;
}

.mr_text__right {
    text-align: right;
}

.mr_text__justify {
    text-align: justify;
}

.mr_text__uppercase {
    text-transform: uppercase;
}

.mr_text__lowercase {
    text-transform: lowercase;
}

.mr_mx_auto {
    margin-left: auto;
    margin-right: auto;
}

.mr_my_auto {
    margin-top: auto;
    margin-bottom: auto;
}

.mr_spacing_inner {
    padding-left: 20px;
    padding-right: 20px;
}

.mr_relative {
    position: relative;
}


/* resets */

.link_reset,
#contact .link_reset:hover,
.link_reset__inside>* {
    color: inherit;
    text-decoration: inherit;
}

.list_reset,
.list_reset__inside>*,
.list_reset__inside>*>a {
    padding: unset;
    margin: unset;
    list-style: none;
    text-decoration: unset !important;
}

.mr_padding_reset {
    padding: 0;
}

.text-decoration-reset {
    text-decoration: inherit;
}

.btn-reset {
    background: none;
    border: none;
    padding: 0;
    display: block;
    outline: 0 !important;
}


/* Displays */

.grid {
    display: grid;
}

.flex {
    display: flex;
}


/* margin */

.m-0 {
    margin: 0;
}

.m-auto {
    margin: auto;
}

.mx-0 {
    margin-left: 0;
    margin-right: 0;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.ml-0 {
    margin-left: 0;
}

.ml-auto {
    margin-left: auto;
}

.mr-0 {
    margin-right: 0;
}

.mr-auto {
    margin-right: auto;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.mt-0 {
    margin-top: 0;
}

.mt-auto {
    margin-top: auto;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-auto {
    margin-bottom: auto;
}

.mt-5 {
    margin-top: 5rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mr_padding_reset-h {
    padding-left: 0;
    padding-right: 0;
}

.mr_padding_reset-v {
    padding-top: 0;
    padding-bottom: 0;
}

.mr_lineheight_reset {
    line-height: normal;
}

.pt-5 {
    padding-top: 5rem;
}

.pb-5 {
    padding-bottom: 5rem;
}


/* positions */

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}


/* cursors */

.pointer {
    cursor: pointer;
}


/* button */

.mr_btn,
.mr_btn--white {
    cursor: pointer;
    padding: 10px 30px;
    border-radius: 100px;
    font-weight: var(--mr_fontweight__semibold);
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
    text-transform: uppercase;
    background-color: transparent;
    transition: color .3s ease, background-color .3s ease, border-color .3s ease, opacity .3s ease;
}

.mr_btn {
    color: var(--mr_color__primary);
    border: 1px solid var(--mr_color__primary);
}

.mr_btn--white {
    color: var(--mr_color__white);
    border: 1px solid var(--mr_color__white);
}

.mr_btn:not(:disabled):hover,
.mr_btn--white:not(:disabled):hover,
.mr_btn:not(:disabled):focus,
.mr_btn--white:not(:disabled):focus {
    background-color: var(--mr_color__primary);
    color: var(--mr_color__white);
    border: 1px solid var(--mr_color__primary);
}

.mr_btn:disabled,
.mr_btn:disabled:hover,
.mr_btn--white:disabled,
.mr_btn--white:disabled:hover {
    cursor: no-drop;
    opacity: 0.5;
}

.mr_btn:not(:disabled):active,
.mr_btn--white:not(:disabled):active,
.mr_btn:not(:disabled):focus,
.mr_btn--white:not(:disabled):focus {
    background-color: var(--mr_color__primary);
    color: var(--mr_color__white);
    border: 1px solid var(--mr_color__primary);
}

.mr_btn-small {
    font-size: var(--mr_fontsize__xsmall);
}

.btn-danger {
    border-color: var(--mr_color__red) !important;
    background-color: var(--mr_color__red);
    font-size: var(--mr_fontsize__small);
    color: var(--mr_color__white);
    font-weight: var(--mr_fontweight__semibold);
    padding: 1rem 4rem;
    transition: 0.2s ease all;
    border-radius: 200px;
}

.btn-danger:active,
.btn-danger:focus,
.btn-danger:hover,
.btn-danger:active:hover,
.btn-danger:active:focus,
.btn-danger:active.focus,
.btn-danger.active:hover,
.btn-danger.active:focus,
.btn-danger.active.focus,
.open>.btn-danger.dropdown-toggle:hover,
.open>.btn-danger.dropdown-toggle:focus,
.open>.btn-danger.dropdown-toggle.focus {
    color: var(--mr_color__red);
    background-color: var(--mr_color__white);
    border-color: var(--mr_color__red);
    outline: 0;
}

input.file-upload-button,
.btn-primary {
    border-color: var(--mr_color__primary) !important;
    background-color: var(--mr_color__primary) !important;
    font-size: var(--mr_fontsize__small);
    color: var(--mr_color__white) !important;
    font-weight: var(--mr_fontweight__semibold);
    padding: 1rem 4rem;
    transition: 0.2s ease all;
    border-radius: 200px;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover,
.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary:active.focus,
.btn-primary.active:hover,
.btn-primary.active:focus,
.btn-primary.active.focus,
.open>.btn-primary.dropdown-toggle:hover,
.open>.btn-primary.dropdown-toggle:focus,
.open>.btn-primary.dropdown-toggle.focus {
    color: var(--mr_color__primary) !important;
    background-color: var(--mr_color__white) !important;
    border-color: var(--mr_color__primary) !important;
    outline: 0;
}

.btn-primarytn:not(:disabled):hover {
    background-color: var(--mr_color__primary) !important;
    color: var(--mr_color__white) !important;
    border: 1px solid var(--mr_color__primary) !important;
}

.btn-primary:disabled,
.btn-primary:disabled:hover {
    cursor: no-drop;
    opacity: 0.5;
}

.btn-primary:not(:disabled):active,
.btn-primary:not(:disabled):focus {
    background-color: var(--mr_color__primary);
    color: var(--mr_color__white);
    border: 1px solid var(--mr_color__primary);
}


/* ALERTS */

.alert {
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__light);
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 200px;
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d0e9c6;
    color: #3c763d;
}

.alert ul {
    margin-bottom: 0;
}


/* HIDE ELEMENTS */


/* Forum */

.block-search {
    display: none;
}

.tox-notifications-container {
    display: none;
}

#blogview .post_tags,
#blogview .hint,
#blogview #tags {
    display: none;
}


/* Custom styles */


/* Override global */

#header {
    color: var(--mr_color__primary);
}

.dropdown .expand-more,
#header .mr_topbar_wrapper a {
    color: var(--mr_color__primary);
    font-size: var(--mr_fontsize__xsmall);
}

#header a:hover,
.dropdown:hover .expand-more {
    color: var(--mr_color__primary);
    text-decoration: underline;
}

input::placeholder,
textarea::placeholder {
    color: var(--mr_color__primary);
    font-weight: var(--mr_fontweight__regular);
    opacity: 1;
}

#wrapper {
    background: transparent;
}

#main .page-content {
    background: transparent;
    padding: 0;
}

.mr_title {
    color: var(--mr_color__primary) !important;
    font-weight: var(--mr_fontweight__bold) !important;
    font-size: var(--mr_fontsize__title) !important;
    text-align: center;
    text-transform: unset;
}

.mr_title-description {
    color: var(--mr_color__primary);
    font-weight: var(--mr_fontweight__medium);
    font-size: var(--mr_fontsize__small);
    text-align: center;
    margin: 1.5rem auto 0 auto;
    max-width: 470px;
    line-height: 1.25;
}

.all-product-link {
    text-align: center;
    margin: 0 auto !important;
    color: var(--mr_color__primary) !important;
}

.all-product-link:hover,
.all-product-link:focus,
.all-product-link:active {
    text-align: center;
    margin: 0 auto !important;
    color: var(--mr_color__white) !important;
}

.mr_btn-container {
    display: inline-flex;
    justify-content: center;
    width: 100%;
}

.elementor-widget-text-editor,
.elementor-widget-text-editor p {
    font-family: 'Montserrat', sans-serif;
}


/* breadcrumb */

#wrapper .breadcrumb ol {
    font-size: var(--mr_fontsize__xsmall);
    font-weight: var(--mr_fontweight__medium);
    line-height: 1.25;
}

#wrapper .breadcrumb li a span,
#wrapper .breadcrumb li::after {
    color: var(--mr_color__primary);
}

#wrapper .breadcrumb li a:hover {
    text-decoration: underline;
}

#wrapper .breadcrumb li span {
    color: var(--mr_color__linkwater);
}


/* TOPBAR */

#header,
#header .header-top {
    background-color: transparent;
    box-shadow: none;
}

#header .header-nav #_desktop_contact_link {
    display: flex;
    align-items: center;
}

#header .header-nav {
    background: rgb(255, 255, 255);
    background: linear-gradient(-90deg, rgba(255, 255, 255, 1) 0%, rgba(245, 248, 253, 1) 45%, rgba(237, 242, 251, 1) 100%);
    border: none;
    padding: 0;
}

#header .header-nav #_desktop_contact_link>div {
    padding: 0 15px;
}

#header .header-nav #_desktop_contact_link>div:first-child {
    padding-left: 0;
}

#header .header-nav .material-icons.expand-more {
    justify-content: center;
    display: inline-flex;
    margin-right: 15px;
    margin-left: 0;
}

#header .header-nav #_desktop_currency_selector {
    display: flex;
    align-items: center;
}

#header .header-nav .currency-selector,
#header .header-nav .language-selector {
    margin: 0;
}

#header .header-nav .language-selector .material-icons.expand-more:last-child {
    margin-right: 0;
}

#header .header-nav .right-nav .dropdown-menu {
    min-width: unset;
}

.dropdown-menu {
    border: 1px solid var(--mr_color__linkwater);
    font-size: var(--mr_fontsize__small);
}

.mr_topbar_wrapper {
    display: flex;
}

.mr_topbar_wrapper .mr_padding_reset-h {
    margin: auto;
    width: 100%;
}

#header .mr_topbar_wrapper a {
    font-weight: var(--mr_fontweight__semibold);
}

.dropdown .expand-more {
    font-weight: var(--mr_fontweight__medium);
}

.mr_topbar-phone img {
    margin-right: 8px;
    margin-top: -3px;
}
#header .header-top-left .mr_topbar-phone {
    margin-left: 2rem;
}
.mr_topbar-email img {
    margin-right: 6px;
    margin-top: -3px;
}
#search_widget {
    overflow: visible;
    margin-right: 12px;
    min-width: 13.8rem;
}

#search_widget form input {
    padding: 1rem 0;
    background: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 2px solid #EEF0F3;
    font-size: var(--mr_fontsize__small);
    color: var(--mr_color__primary);
    font-weight: var(--mr_fontweight__medium);
    max-width: 120px;
    outline: none;
}

#search_widget form input::placeholder {
    color: #7478A3;
    font-weight: var(--mr_fontweight__medium);
    opacity: 1;
}


/* autocomplete search bar */

.ui-autocomplete.searchbar-autocomplete {
    font-family: 'Montserrat', sans-serif;
    background: #F5F9FF;
    color: var(--mr_color__primary);
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__regular);
}

.ui-autocomplete.searchbar-autocomplete li a {
    color: var(--mr_color__primary);
    display: flex;
    align-items: center;
}

.ui-autocomplete.searchbar-autocomplete li a:hover {
    background-color: #CACCDA;
}

.ui-autocomplete.searchbar-autocomplete li a span {
    line-height: 1.25;
}

#search_widget form i.clear {
    right: 25px;
    bottom: 0;
    color: #fff;
    font-size: 20px;
}

#_desktop_user_info,
#_desktop_cart {
    width: auto;
    float: right;
}

#_desktop_user_info,
#_desktop_user_wishlist {
    padding-right: 12px;
    padding-left: 12px;
    margin-right: 0;
    border-left: 2px solid #EEF0F3;
    margin-top: -10px;
}

#_desktop_cart, #_mobile_cart {
    padding-right: 12px;
    padding-left: 12px;
    border-left: 2px solid #EEF0F3;
    margin-top: -10px;
    position: relative;
}

#header .cart-products-count {
    background-color: var(--mr_color__pacificblue);
    padding: 2px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    color: var(--mr_color__white);
    margin: auto;
    text-align: center;
    position: absolute;
    top: -5px;
    right: 4px;
    font-size: 10px;
    z-index: 1;
}

@media (max-width: 767px) {
    #header .cart-products-count {
        display: flex;
        justify-content: center;
        align-items: center;
        right: 0;
        top: -6px;
    }

    #header .header-top .header-top-left {
        width: 100%;
    }
}

.header-top-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
}
@media (max-width: 575px) {
    .header-top-right {
        padding-right: 0;
    }
    #search_widget button {
        bottom: 0;
    }
    #search_widget button img {
        width: 15px;
        height: 15px;
    }
}
#header .header-top .header-top-left {
    padding: 0;
}

#header .header-top .menu {
    padding-left: 0;
}

#header .header-top a[data-depth="0"] {
    text-transform: uppercase;
    color: var(--mr_color__primary);
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__medium);
}

.top-menu li:first-child a[data-depth="0"] {
    padding-left: 0;
    text-transform: uppercase;
    color: var(--mr_color__primary);
}

#header .top-menu a[data-depth="0"]:hover {
    color: var(--mr_color__primary);
    text-decoration: underline;
}

#header .mr_header_menu_right {
    margin-right: 12px;
}

#header .mr_header_menu_right>ul>li {
    display: inline-block;
}

#header .mr_header_menu_right>ul {
    margin: 0;
}

#header .mr_header_menu_right a {
    text-transform: uppercase;
    color: var(--mr_color__primary);
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__regular);
    padding: .625rem;
}

#_desktop_top_menu .top-menu[data-depth="0"] li .sub-menu {
    color: var(--mr_color__primary);
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__medium);
    margin: 0;
}

#_desktop_top_menu .top-menu[data-depth="0"] li .sub-menu a {
    color: var(--mr_color__primary);
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__medium);
}

#_desktop_top_menu .top-menu[data-depth="2"] {
    list-style-type: disc;
    padding-left: 1.1rem;
}

#_desktop_top_menu .top-menu[data-depth="2"] li.category a {
    text-transform: uppercase;
    color: var(--mr_color__primary);
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__regular);
}

#_desktop_top_menu .top-menu .sub-menu {
    width: auto;
    min-width: auto;
}

.mr_icon-phone {
    content: '';
    background-image: url('/themes/classic_child/assets/img/phone.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    display: inline-block;
    margin-right: 8px;
}

.mr_user_signin {
    content: '';
    background-image: url('/themes/classic_child/assets/img/account-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    display: block;
    margin-bottom: 2px;
    position: relative;
    bottom: 3px;
    margin-bottom: 3px;
    margin-top: 8px;
}

.shopping-cart {
    content: '';
    background-image: url('/themes/classic_child/assets/img/cart-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    display: block;
    z-index: 1;
    position: relative;
    bottom: 3px;
    margin-bottom: 3px;
    margin-top: 8px;
}

.mr_icon-search {
    content: '';
    background-image: url('/themes/classic_child/assets/img/search-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    display: block;
    right: 0;
}

.mr_icon-wishlist {
    content: '';
    background-image: url('/themes/classic_child/assets/img/wishlist-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    display: block;
    position: relative;
    bottom: 2px;
    margin-bottom: 3px;
    margin-top: 8px;
}

.mr_icon-mail {
    display: none;
}


/* LOGO */

#header .logo {
    max-width: 115px;
    margin: 0 auto;
    display: block;
}

#_desktop_logo {
    text-align: center;
}

@media (max-width: 767px) {
    #header .logo {
        max-width: 85px;
        margin-right: -15px;
    }

    .mr_user_signin,
    .shopping-cart,
    .mr_icon-search,
    .mr_icon-wishlist {
        width: 15px;
        height: 15px;
    }

    #_desktop_cart,
    #_mobile_cart,
    #_desktop_user_info,
    #_desktop_user_wishlist {
        padding-right: 7px;
        padding-left: 7px;
    }
}

/* PRODUCTS LIST / GRID */

.products article .wishlist-button-add {
    box-shadow: none;
    left: 10px;
    right: auto;
    height: 30px;
    width: 30px;
    min-width: 30px;
    background-color: transparent;
}

body .wishlist-button-add i {
    color: var(--mr_color__pacificblue) !important;
}

.product-flags,
.product-miniature .product-flags li.product-flag {
    left: 0;
    right: 0;
    width: auto;
    justify-content: center;
    flex-direction: row;
    margin: 0 auto;
}

.product-flags li.product-flag.discount-percentage,
.product-flags li.product-flag.discount-amount,
.product-flags li.product-flag.discount {
    background-color: var(--mr_color__pacificblue);
    margin: 0;
    padding: 5px 10px;
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__medium);
    text-transform: uppercase;
    border-radius: 8px;
}

.product-flags li.product-flag.out_of_stock,
.product-flags li.product-flag.new {
    display: none;
}

.products .product {
    padding: 12px;
}

.product-miniature {
    background-color: var(--mr_color__white);
    box-shadow: 0px 3px 6px #ecf1fd;
    border-radius: 13px;
}

.product-miniature .thumbnail-container:hover .product-description::after,
.product-miniature .thumbnail-container:focus .product-description::after {
    border: none;
}

.product-miniature .thumbnail-container {
    margin-bottom: 0;
    border-radius: 13px;
}

#wrapper .wishlist-product-title,
.product-miniature .product-title a,
.product-miniature .product-description {
    font-size: var(--mr_fontsize__xsmall);
    font-weight: var(--mr_fontweight__regular);
    color: var(--mr_color__primary);
}

#wrapper .wishlist-product-title,
.product-miniature .product-title {
    padding-top: 1.2rem;
    margin-top: 0;
    border-top: 1px solid var(--mr_color__primary);
    height: 5rem;
}

#wrapper .wishlist-product-price,
#wrapper .wishlist-product-title {
    text-align: center;
}

#wrapper .wishlist-product>a:hover .wishlist-product-price {
    text-decoration: none !important
}

#wrapper .wishlist-product-price-promo,
#wrapper .wishlist-product-price,
.no-items,
.product-miniature .regular-price {
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__regular);
    color: var(--mr_color__pacificblue);
}

#wrapper .wishlist-product-price,
.product-miniature .product-price-and-shipping {
    font-size: var(--mr_fontsize__medium);
    font-weight: var(--mr_fontweight__semibold);
    color: var(--mr_color__pacificblue);
}

#wrapper .wishlist-product-price {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: row-reverse;
    gap: 5px;
}

.product-miniature .product-description {
    padding: 1.7rem 2rem;
}

.products .product .mr_btn {
    margin: 1.5rem auto 0 auto;
    display: block;
    width: max-content;
    max-width: 100%;
    text-align: center;
    background: var(--mr_color__white);
    border: 1px solid var(--mr_color__pacificblue);
    color: var(--mr_color__pacificblue);
    position: relative;
    transition: all .3s ease-in-out;
}

.products .product .mr_addbtn:before {
    content: '';
    background-image: url('/themes/classic_child/assets/img/cart-add.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 13px;
    height: 16px;
    display: block;
    z-index: 1;
    position: absolute;
    left: 20px;
    opacity: 0;
    transition: all .1s ease-in-out;
}

.products .product .mr_addbtn:hover:before {
    opacity: 1;
}

.products .product .mr_addbtn span {
    position: relative;
    transition: all .3s ease-in-out;
    right: 0;
}

.products .product .mr_addbtn:hover span {
    right: -10px;
}

.products .product .mr_btn:hover,
.products .product .mr_btn:active,
.products .product .mr_btn:focus {
    background: var(--mr_color__pacificblue);
    border: 1px solid var(--mr_color__pacificblue);
    color: var(--mr_color__white);
}

.product-miniature .thumbnail-container .product-thumbnail {
    position: relative;
    overflow: hidden;
    padding-top: 20px;
}

.product-miniature .thumbnail-container .product-thumbnail img {
    transition: all 0.2s ease-in;
    transform: scale(1);
    max-width: 210px;
    outline: 1px solid #fff;
    outline-offset: -1px;
}

.product-miniature .thumbnail-container .product-thumbnail img:hover {
    transform: scale(1.1);
}


/* Newsletter */

#mr_popup_newsletter {
    position: fixed;
    top: 50%;
    left: 50%;
    border-radius: 20px;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    width: var(--global-width);
    max-width: 90vw;
    z-index: 999999;
}

#mr_popup_newsletter .mr_popup_newsletter-darkground {
    position: absolute;
    top: calc((100vh - 100%) / -2);
    left: calc((100vw - 100%) / -2);
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.81);
}

.mr_newsletter-popup-bg {
    position: relative;
    border-radius: 20px;
    background-image: url('/themes/classic_child/assets/img/newsletter-popup-background-tiny.jpg');
    background-size: cover;
}

.mr_newsletter-popup-bg::before {
    content: '';
    background: linear-gradient(90deg, rgba(27, 163, 204, 1) 0%, rgba(38, 50, 111, 1) 100%);
    mix-blend-mode: multiply;
    border-radius: 20px;
    background-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mr_newsletter-popup {
    padding: 5.4rem 1.5rem 4.4rem;
}

.mr_popup-close-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.mr_popup-close-icon::before {
    content: url("data:image/svg+xml,%3Csvg id='Icon' xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Crect id='Area' width='20' height='20' fill='%23fbfbfb' opacity='0'/%3E%3Cg id='Icon-2' data-name='Icon' transform='translate(1.29 2.499)'%3E%3Ccircle id='Path' cx='8.333' cy='8.333' r='8.333' transform='translate(0.377 -0.832)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.667'/%3E%3Cline id='Line' x1='5' y2='5' transform='translate(6.21 5.001)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.667'/%3E%3Cline id='Line-2' data-name='Line' x2='5' y2='5' transform='translate(6.21 5.001)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.667'/%3E%3C/g%3E%3C/svg%3E");
}

#mr_popup_newsletter .mr_newsletter-content {
    width: 590px;
    max-width: 70vw;
    gap: 15px;
}

#mr_popup_newsletter .mr_newsletter__form {
    gap: 20px;
}

#mr_newsletter-btn-popup {
    justify-self: center;
}

.mr_newsletter-popup,
#mr_popup_newsletter .mr_newsletter-input {
    gap: 25px;
}

.mr_newsletter-inside-popup {
    width: 330px;
    max-width: 70vw;
}

.section--mr_newsletter {
    padding-top: 5.7rem;
    padding-bottom: 3.2rem;
    /*background: rgb(27, 163, 204);*/
    /*background: linear-gradient(90deg, rgba(27, 163, 204, 1) 0%, rgba(38, 50, 111, 1) 100%);*/
    background: #212C65;
}

.mr_newsletter-content {
    align-content: start;
    gap: 15px;
}

.mr_newsletter-title {
    text-transform: uppercase;
}
.mr_newsletter-description {
    line-height: normal;
}
.mr_newsletter-input {
    gap: 10px;
}

.mr_newsletter-input>.mr_newsletter-input-email {
    border: 0;
    border-radius: 200px;
    line-height: 1.25;
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__regular);
    color: var(--mr_color__white);
    background: transparent;
    padding: 10px 20px;
    width: 100%;
    border: 1px solid #FFFFFF33;
}
.mr_newsletter-input>.mr_newsletter-input-email::placeholder {
    color: var(--mr_color__white);
}
.mr_newsletter-btn {
    padding: 10px 20px;
    border: 1px solid var(--mr_color__pacificblue);
    color: var(--mr_color__pacificblue);
}
.mr_newsletter-inside form {
    align-items: start;
    gap: 2.4rem;
    justify-content: center;
}

.mr_newsletter-label {
    position: relative;
    margin: 0;
    padding-left: 24px;
    text-align: left;
    margin-top: 20px;
}
.mr_newsletter-label span {
    line-height: 1.4em;
}
.mr_newsletter-label>input {
    position: absolute;
    visibility: hidden;
}

.mr_newsletter-label>input+span {
    cursor: pointer;
}

.mr_newsletter-label>input+span::before,
.mr_newsletter-label>input+span::after {
    content: '';
    position: absolute;
    transition: background-color .3s ease, opacity .3s ease;
    border-radius: 6px;
    cursor: pointer;
}

.mr_newsletter-label>input+span::before {
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    border: 1px solid var(--mr_color__white);
    background-color: transparent;
}

.mr_newsletter-label>input+span::after {
    top: 4px;
    left: 3px;
    width: 10px;
    height: 7px;
    /*background-color: var(--mr_color__white);*/
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.05882L3.96296 6L9 1' stroke='white' stroke-linecap='square'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
    border: 0;
    opacity: 0;
}

.mr_newsletter-accept .alert {
    font-size: var(--mr_fontsize__small);
    padding-left: 24px;
    margin: 10px 0 0 0;
}

.mr_newsletter-label>input:checked+span::after {
    opacity: 1;
}


.mr_bestsellers {
    border-top: 1px solid var(--mr_color__linkwater);
    padding-bottom: 35px;
}

.mr_bestsellers:before {
    content: '';
    /* background-image: url('/themes/classic_child/assets/img/triangle-2.svg'); */
    background-size: contain;
    background-repeat: no-repeat;
    width: 563px;
    height: 719px;
    display: block;
    position: absolute;
    top: 48%;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.mr_newproducts {
    margin-top: 12rem;
    margin-bottom: 8rem;
}

.section--jakosc-badania {
    margin-top: 12rem;
}


/* universal elements */

.section--mendzynarodowa-wysylka {
    position: relative;
    margin-top: 8rem;
    margin-bottom: 8rem;
}

.section--mendzynarodowa-wysylka::before {
    content: '';
    background-color: #F5F9FF;
    width: 100vw;
    height: 94%;
    display: block;
    position: absolute;
    margin-left: -50vw;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    margin-top: auto;
    margin-bottom: auto;
}

.universal-element-contain {
    object-fit: contain !important;
}


/* Backgound Home Page */

.section--mr_newsletter {
    position: relative;
}

/* Background Global */

body:not(#index) footer {
    position: relative;
}

body:not(#index) footer .section--universal-elements::before,
body:not(#index) .section--footer::before {
    content: '';
    position: absolute;
    background-image: url('/themes/classic_child/assets/img/bio-background.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 323.1rem;
    display: block;
    top: auto;
    bottom: calc(100% - 2.5rem);
    left: 0;
    z-index: -1;
}

body:not(#index) footer .section--universal-elements::after,
body:not(#index) .section--footer::after {
    content: '';
    background: -webkit-linear-gradient(to bottom, rgba(255, 255, 255, 1), transparent);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), transparent);
    position: absolute;
    width: 100vw;
    height: 10rem;
    bottom: 313.1rem;
    left: 0;
    z-index: -1;
}

body:not(#index) .section--mr_newsletter+.section--footer::before,
body:not(#index) .section--mr_newsletter+.section--footer::after {
    display: none;
}

body:not(#index) footer .section--universal-elements {
    display: grid;
    position: relative;
    grid-template-columns: 100%;
}

body:not(#index) footer .section--universal-elements::before {
    bottom: 0 !important;
}

.global-bottom-background {
    position: relative;
}

#index .global-bottom-background {
    display: none;
}


/*
.global-bottom-background::after {
    content: '';
    position: absolute;
    clip-path: polygon(100% 100%, 100% 0%, 0% 0%);
    background: rgb(224, 233, 250);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(224, 233, 250, 1) 100%);
    width: 100vw;
    height: 170rem;
    display: block;
    top: auto;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.global-bottom-background::before {
    content: '';
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    background: rgb(224, 233, 250);
    background: linear-gradient(180deg, rgba(224, 233, 250, 1) 0%, rgba(255, 255, 255, 1) 100%);
    width: 100vw;
    height: 170rem;
    display: block;
    top: auto;
    bottom: 0;
    left: 0;
    z-index: -1;
} */

.universal-elements {
    width: 925px;
    max-width: var(--global-width);
    margin: 5rem auto;
    gap: 5rem;
    grid-template-columns: 100%;
}

.universal-element {
    gap: 4rem;
    align-items: center;
    grid-template-columns: 100%;
}

.universal-element--content h3 {
    margin-bottom: 0;
}

.universal-element--image {
    width: 30.5rem;
    max-width: 80%;
    /* update 12-04-2022 (bedfore update 100%)*/
}

.universal-element--image img {
    border-radius: 200px;
    filter: drop-shadow(-40px 20px 50px #e4eaf7);
}

.universal-element--content {
    display: grid;
    align-content: center;
    justify-items: end;
    text-align: right;
    gap: 20px;
}


/* Product category page */

/* #search_filters {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 270px;
    height: 100vh;
    padding: 0;
    border-right: 2px solid var(--mr_color__pacificblue);
    border-bottom: 2px solid var(--mr_color__pacificblue);
    overflow-y: auto;
    border-radius: 0 0 13px 0;
    transition: 0.3s ease;
}

#search_filters>.h6.mr_heading {
    padding: 10px 10px 10px 10px;
    margin: 0;
}

#search_filters #search_filters_close {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    position: absolute;
    right: 0;
    top: 0;
}

#search_filters #search_filters_closemobile {
    content: '';
    background-image: url('/themes/classic_child/assets/img/menu-open.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    display: block;
    cursor: pointer;
}

#search_filters.mr_show_item {
    transform: translateX(0);
}

#search_filters.mr_hide_item {
    transform: translateX(-100%);
}

#search_filters .facet {
    width: 100%;
}

#search_filters .facet .facet-label {
    display: flex;
    align-items: center;
}

#search_filters .facet .facet-label a {
    font-size: var(--mr_fontsize__xsmall);
    line-height: 1.25;
    font-weight: var(--mr_fontweight__medium);
    padding-left: 25px;
    color: var(--mr_color__primary);
}

#search_filters .facet ul>li {
    margin-bottom: 5px;
}

#search_filters .facet ul {
    padding: 10px;
    margin: 0;
}

#search_filters .facet .facet-label .color,
#search_filters .custom-checkbox input[type="checkbox"]+span {
    position: absolute;
    width: 20px;
    height: 20px;
    margin: 0;
}

.custom-checkbox input[type="checkbox"]+span.color::after {
    width: 12px;
    height: 12px;
    right: -3px;
    left: auto;
    bottom: -3px;
    top: auto;
    border-radius: 100%;
}

.custom-checkbox input[type="checkbox"]+span.color::before {
    border: none;
}

#search_filters .facet .facet-title {
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
    font-weight: var(--mr_fontweight__semibold);
    text-transform: uppercase;
    color: var(--mr_color__white);
    background: var(--mr_color__pacificblue);
    padding: 8px 10px;
    width: 100%;
}

#search_filters>.h6 {
    padding: 10px 10px 0 10px;
}

#_desktop_search_filters_clear_all {
    padding: 0 10px 0 10px;
}

.btn-tertiary {
    padding: 0.5rem 1rem 0.6rem 1rem;
    font-size: var(--mr_fontsize__xsmall);
    font-weight: var(--mr_fontweight__medium);
    color: var(--mr_color__primary);
    border: 1px solid var(--mr_color__primary);
    border-radius: 100px;
    background-color: var(--mr_color__white);
}

.btn-tertiary:hover,
.btn-tertiary:active,
.btn-tertiary:focus {
    color: var(--mr_color__white);
    background-color: var(--mr_color__primary);
}

.btn-tertiary .material-icons {
    margin-bottom: 0;
}

.btn-tertiary:hover .material-icons,
.btn-tertiary:active .material-icons,
.btn-tertiary:focus .material-icons {
    color: var(--mr_color__white);
}

.custom-checkbox input[type="checkbox"]:checked+span .checkbox-checked {
    display: none;
}

#search_filters .ui-slider-horizontal {
    margin-top: 10px;
}

#search_filters .ui-widget-header {
    background: var(--mr_color__pacificblue);
}

#search_filters .faceted-slider p {
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__semibold);
    color: var(--mr_color__primary);
}

.block-category {
    background-color: transparent;
}

.block-category .block-category-inner {
    justify-content: center;
} */

.block-category .block-category-inner #category-description p:first-child {
    color: var(--mr_color__primary);
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__medium);
    line-height: 1.25;
    text-align: left;
}

.products-selection .showing {
    color: var(--mr_color__primary);
    font-size: var(--mr_fontsize__xsmall);
    font-weight: var(--mr_fontweight__medium);
    line-height: 1.25;
    text-align: center;
}

.pagination {
    color: var(--mr_color__primary);
    font-size: var(--mr_fontsize__xsmall);
    font-weight: var(--mr_fontweight__medium);
    line-height: 1.25;
}

.pagination span,
.pagination a {
    font-weight: var(--mr_fontweight__medium);
    font-size: var(--mr_fontsize__small);
    color: var(--mr_color__primary);
    padding: 0;
    text-align: center;
    border-radius: 50px;
    background: var(--mr_color__white);
    filter: drop-shadow(0px 0px 3px #caccda);
    width: 26px;
    height: 26px;
    display: inline-block;
    line-height: 26px;
    margin: 0 5px;
    letter-spacing: 0;
}

.pagination span {
    pointer-events: none;
}

.pagination .current a {
    background: var(--mr_color__primary);
    color: var(--mr_color__white);
}

.pagination a:not(.previous):not(.next) {
    letter-spacing: 0;
}

.pagination .previous,
.pagination .next {
    background: none;
    filter: none;
}

.pagination .page-list {
    background: transparent;
    width: min-content;
    display: flex;
    margin: 0 auto;
}

/* .active_filters {
    background: var(--mr_color__white);
    box-shadow: 0px 3px 6px #ecf1fd;
    padding: 1.2rem;
    border-radius: 13px;
}

.active_filters .active-filter-title,
.active_filters .filter-block {
    font-weight: var(--mr_fontweight__medium);
    font-size: var(--mr_fontsize__xsmall);
    color: var(--mr_color__primary);
    line-height: 1.25;
}

.active_filters .filter-block .close {
    font-size: var(--mr_fontsize__xsmall);
    line-height: 1.25;
    color: var(--mr_color__white);
    margin: 0 0 0 6px;
}

.active_filters .active-filter-title {
    margin: 5px;
}

.active_filters .filter-block {
    padding: 5px 10px;
    border-radius: 13px;
    background: var(--mr_color__primary);
    color: var(--mr_color__white);
    margin: 5px;
} */

.products .product-list-reviews {
    display: none;
}

.mr_single_reviews_wrapper-center .product-list-reviews {
    display:flex;
    justify-content:center;
    margin-top:12px;
    margin-bottom:12px;
    height: 20px;
}
.mr_single_reviews_wrapper-center .product-list-reviews .comments-nb {
    font-size: 10px;
    margin-left: -10px;
    line-height: 1.8;
}
/* category sort order */

.products-selection .sort-by-row .select-title {
    font-size: var(--mr_fontsize__xsmall);
    font-weight: var(--mr_fontweight__medium);
}

.products-sort-order .select-title,
#search_filter_toggler {
    background: none;
    padding: 0;
    border: none;
    font-size: var(--mr_fontsize__xsmall);
    font-weight: var(--mr_fontweight__medium);
    color: var(--mr_color__primary);
    text-transform: uppercase;
    width: auto;
    position: relative;
    display: flex;
    align-items: center;
}

.products-sort-order .select-title>i,
#search_filter_toggler>i {
    content: '';
    background-image: url('/themes/classic_child/assets/img/arrow-down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 10px;
    height: 6px !important;
    color: transparent;
    display: inline-block;
    margin-left: 8px;
}

.mr_sort_filter-wrapper {
    margin: 0 auto;
    display: flex;
}

.products-sort-order .select-list,
.brands-sort .select-list,
.suppliers-sort .select-list {
    min-height: 30px;
    padding: 1rem;
    font-size: var(--mr_fontsize__xsmall);
    font-weight: var(--mr_fontweight__regular);
    color: var(--mr_color__primary);
    line-height: 1.25;
    text-transform: uppercase;
}

body:not(#view) .products-sort-order .dropdown-menu,
.brands-sort .dropdown-menu,
.suppliers-sort .dropdown-menu {
    padding: 0;
    right: 0;
    text-align: right;
    width: auto;
    min-width: 15rem;
    background: #F5F9FF;
}

.products-sort-order .select-list:hover,
.brands-sort .select-list:hover,
.suppliers-sort .select-list:hover {
    background: #CACCDA;
    color: var(--mr_color__primary);
}

.filter-button {
    margin-left: 10px;
}

#content-wrapper {
    display: block !important;
}

#search_filter_controls {
    position: fixed;
    left: 10px;
    bottom: 10px;
    z-index: 1500;
    display: flex;
}

#search_filter_controls button {
    color: var(--mr_color__primary);
    border: 1px solid var(--mr_color__primary);
    font-size: var(--mr_fontsize__xsmall);
    background-color: var(--mr_color__white);
    font-weight: var(--mr_fontweight__medium);
    display: block;
    width: max-content;
    text-align: center;
    padding: 5px 15px;
    border-radius: 100px;
}

#search_filter_controls button:hover,
#search_filter_controls button:active,
#search_filter_controls button:focus {
    color: var(--mr_color__white);
    background-color: var(--mr_color__primary);
}

#_mobile_search_filters_clear_all button {
    text-transform: uppercase;
    color: var(--mr_color__primary);
    border: 1px solid var(--mr_color__primary);
    font-weight: var(--mr_fontweight__medium);
    font-size: var(--mr_fontsize__xsmall);
    padding: 5px 15px;
    border-radius: 100px;
}


/* Search */

#search #main {
    text-align: center;
}

#search #main #js-product-list-header {
    width: max-content;
    text-align: center;
    color: var(--mr_color__primary);
    line-height: 1.25;
    font-size: var(--mr_fontsize__title);
    font-weight: var(--mr_fontweight__bold);
    line-height: 4.7rem;
    margin: 2.5rem auto 2.5rem;
    text-transform: capitalize;
}

#search #main .page-not-found>*,
#category #main .page-not-found>* {
    color: var(--mr_color__primary);
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__medium);
    line-height: 1.25;
    text-align: center;
}


/* O Nas */

.cms-id-9 #wrapper .container {
    width: 100% !important;
}

.section--o-nas-banner {
    position: relative;
    background-image: url('/themes/classic_child/assets/img/o-nas-banner-bg.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.section--o-nas-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(27, 163, 204, 1) 0%, rgba(38, 50, 111, 1) 100%);
    mix-blend-mode: multiply;
}

.o-nas-banner {
    position: relative;
    width: 925px;
    max-width: var(--global-width);
    margin-left: auto;
    margin-right: auto;
}

.o-nas-banner--inside {
    gap: 2.5rem;
    align-content: end;
    min-height: 54rem;
    padding: 6rem 0;
    max-width: 53rem;
}

.o-nas-banner-btn {
    gap: 2.5rem;
}


/* Contact Page */

body#contact #footer>*:not(.section--footer):not(#mr_popup_newsletter) {
    display: none;
}
body#contact #content-wrapper {
    width: 100%;
}
#contact #content {
    position: relative;
    margin-bottom: 0;
    padding-bottom: 8rem;
}

#contact #content::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    max-width: 100%;
    background-color: var(--mr_color__primary);
}

.contact-form {
    padding: 33px;
    border-radius: 20px;
    background-image: url('/themes/classic_child/assets/img/contact-form-bg.jpg');
    background-size: cover;
    grid-template-columns: 100%;
}

.contact-form,
.contact-form>* {
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(27, 163, 204, 1) 0%, rgba(38, 50, 111, 1) 100%);
    mix-blend-mode: multiply;
}

.contact-form-inside {
    display: grid;
    gap: 25px;
    width: 100%;
}

@media (min-width: 992px) {
    .contact-form-inside {
        grid-template-columns: 1fr 1px 1fr;
    }
}

.contact-form-line {
    width: 100%;
    height: 100%;
    min-width: 1px;
    min-height: 1px;
    background-color: var(--mr_color__white);
}

.contact-form>form {
    margin-left: 4rem;
}

#contact .link_reset:hover {
    color: inherit;
    text-decoration: underline;
}

.mr_contact-form-info {
    flex-direction: column;
}

.mr_contact-form-title {
    margin-bottom: 17px;
}

.mr_contact-form-description {
    margin-top: 25px;
    height: 100%;
    align-items: end;
    justify-items: end;
    text-align: right;
}

.mr_contact-form-info-items {
    gap: 22px;
}

.mr_contact-form-info-item {
    gap: 10px;
    justify-items: start;
}

.contact-mail-item::before {
    content: url("data:image/svg+xml,%3Csvg id='Group_217' data-name='Group 217' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='21' height='15' viewBox='0 0 21 15'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_179' data-name='Rectangle 179' width='21' height='15' fill='none' stroke='%23fff' stroke-width='1'/%3E%3C/clipPath%3E%3C/defs%3E%3Crect id='Rectangle_178' data-name='Rectangle 178' width='19' height='13' transform='translate(1 1)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3Cpath id='Path_36' data-name='Path 36' d='M3,3l9.57,8.75L22.14,3' transform='translate(-2.18 -2.18)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3Cline id='Line_7' data-name='Line 7' y1='7.383' x2='6.699' transform='translate(0.82 7.109)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3Cline id='Line_8' data-name='Line 8' x1='6.699' y1='7.383' transform='translate(13.262 7.109)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/svg%3E%0A");
}

.contact-tel-item::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='21' height='20.978' viewBox='0 0 21 20.978'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_180' data-name='Rectangle 180' width='21' height='20.978' fill='none' stroke='%23fff' stroke-width='1'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Group_218' data-name='Group 218' transform='translate(0 0)' clip-path='url(%23clip-path)'%3E%3Cpath id='Path_37' data-name='Path 37' d='M9.819,7.428,5.391,3,4,4.389A3.422,3.422,0,0,0,3,6.972a16.149,16.149,0,0,0,15.123,15.35l.236.015a3.423,3.423,0,0,0,2.633-1l1.368-1.368L17.691,15.3l-2.1,2.095a.931.931,0,0,1-.867.249,9.644,9.644,0,0,1-7.167-6.977L7.493,10.4a.931.931,0,0,1,.243-.892Z' transform='translate(-2.182 -2.182)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
}

.contact-form form .form-group:not(:last-child) {
    margin-bottom: 0;
}

.contact-form form .form-control-label {
    color: var(--mr_color__white);
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
    font-weight: var(--mr_fontweight__regular);
    padding: 0;
    margin: 13px 0 9px;
}

.mr_contact-form-field>* {
    padding: 1rem 1.5rem;
    border-radius: 20px;
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
    font-weight: var(--mr_fontweight__regular);
    color: var(--mr_color__primary);
    background-color: var(--mr_color__white);
}

.mr_contact-form-privacy {
    position: relative;
    margin: 0;
    padding-left: 24px;
    text-align: left;
    margin-bottom: 10px;
    float: left;
}

.mr_contact-form-privacy>input {
    position: absolute;
    visibility: hidden;
}

.mr_contact-form-privacy>input+span {
    cursor: pointer;
}

.mr_contact-form-privacy>input+span::before,
.mr_contact-form-privacy>input+span::after {
    content: '';
    position: absolute;
    transition: background-color .3s ease, opacity .3s ease;
    border-radius: 200px;
    cursor: pointer;
}

.mr_contact-form-privacy>input+span::before {
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid var(--mr_color__white);
    background-color: transparent;
}

.mr_contact-form-privacy>input+span::after {
    top: 4px;
    left: 4px;
    width: 7px;
    height: 7px;
    background-color: var(--mr_color__white);
    border: 0;
    opacity: 0;
}

.mr_contact-form-privacy>input:checked+span::after {
    opacity: 1;
}

.contact-form .mr_btn--white {
    float: right;
}


/* Single Product */

#product #main {
    grid-template-columns: 100%;
}

.modal-backdrop {
    background-color: var(--mr_color__primary);
}

.modal-backdrop.in {
    opacity: .7;
}

.product-actions {
    font-size: var(--mr_fontsize__small);
    color: var(--mr_color__primary);
    line-height: 1.75;
}

.product-actions .control-label {
    color: var(--mr_color__primary);
    line-height: 1.25;
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__medium);
}

.product-variants select.form-control:not([size]):not([multiple]) {
    font-size: var(--mr_fontsize__small);
    color: var(--mr_color__primary);
    min-width: 150px;
    border-radius: 200px;
    padding: 5px 10px;
    height: 35px;
}

.product-pack .pack-product-container {
    justify-content: space-between;
}

.product-pack .card {
    background: transparent;
}

.product-pack .h4,
.product-pack .pack-product-container .pack-product-quantity,
.product-pack .pack-product-container .pack-product-price,
.product-pack .pack-product-container .pack-product-name a,
.product-variants .product-pack {
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__semibold);
    color: var(--mr_color__primary);
    line-height: 1.25;
}

.product-pack .pack-product-container .pack-product-name a:hover {
    text-decoration: underline;
}

.thumb-mask>.mask {
    width: 8rem;
    height: 8rem;
    border: 0;
}

.thumb-mask>.mask a::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.thumb-mask>.mask a>* {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover;
    object-position: 50%;
}

.product-pack .pack-product-container .pack-product-quantity {
    border: 0;
}

#product #product-details .product-reference,
#product #product-details .product-quantities,
#product #product-details .product-out-of-stock {
    display: none;
}


/* gallery */

.images-container {
    display: grid;
    grid-template-columns: 100%;
}

.product-cover .layer {
    transition: opacity .3s ease;
    background-color: rgba(39, 51, 112, .7)
}

.images-container .product-images>li.thumb-container>.thumb {
    margin-right: 2.8125rem;
}

#product-modal .modal-content .modal-body>figure {
    position: relative;
    width: 100%;
}

#product-modal .modal-content .modal-body>figure::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

#product-modal .modal-content .modal-body>figure>*:not(.image-caption) {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover;
    object-position: 50%;
}

#product-modal .modal-content .modal-body .image-caption {
    visibility: hidden;
}

#product-modal .modal-content .modal-body .thumbnails::before {
    content: url("data:image/svg+xml,%3Csvg id='Icon' xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Crect id='Area' width='20' height='20' fill='%23fbfbfb' opacity='0'/%3E%3Cg id='Icon-2' data-name='Icon' transform='translate(1.29 2.499)'%3E%3Ccircle id='Path' cx='8.333' cy='8.333' r='8.333' transform='translate(0.377 -0.832)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.667'/%3E%3Cline id='Line' x1='5' y2='5' transform='translate(6.21 5.001)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.667'/%3E%3Cline id='Line-2' data-name='Line' x2='5' y2='5' transform='translate(6.21 5.001)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.667'/%3E%3C/g%3E%3C/svg%3E");
    position: absolute;
    left: calc(100% + 5px);
    bottom: calc(100% + 5px);
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.mr_single {
    grid-template-columns: 100%;
    gap: 3rem;
    max-width: 925px;
    margin-left: auto;
    margin-right: auto;
}

.mr_single_promoinfo:before {
    content: '';
    background-color: #FCFDFE;
    background-image: url('/themes/classic_child/assets/img/percent-product.svg');
    background-size: calc(100% - 12px);
    background-repeat: no-repeat;
    width: 52px;
    height: 52px;
    display: block;
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-position: center;
}

.mr_single_promoinfo {
    position: relative;
    border: 1px solid var(--mr_color__primary);
    border-radius: 13px;
    margin: 20px 0 10px 15px;
    width: fit-content;
    min-width: 268px;
    max-width: 100%;
    text-transform: uppercase;
    text-align: left;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 42px;
    padding-right: 20px;
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__medium);
}

.mr_single_promoinfo>p {
    padding: 3px 0;
    font-weight: var(--mr_fontweight__medium);
}

@media (min-width: 768px) {
    .mr_single {
        grid-template-columns: 38% 58%;
        gap: 4%;
    }
}

#product #content {
    min-width: 100%;
}

.mr_single-gallery .product-flags li.product-flag {
    display: none;
}

#product-modal .modal-content .modal-body {
    max-height: 93vh;
}

#product-modal .modal-content .modal-body .mask {
    max-height: 100%;
}

#product-modal .modal-content .modal-body .product-images img {
    height: 9.25rem;
}


/* Single Title */

.product-list-reviews {
    position: relative;
    visibility: visible;
    justify-content: left;
    top: 0;
    left: 0;
    background: transparent;
    padding: 0;
}

.product-list-reviews .small-stars {
    transform: scale(0.8);
    margin-left: -8px;
}

.mr_single-title {
    width: 100%;
    max-width: 463px;
    text-transform: none;
    margin-bottom: 0;
}


/* Single Price */

.product-prices {
    margin-top: 20px;
}

.mr_discount {
    background-color: var(--mr_color__pacificblue);
    width: max-content;
    max-width: 100%;
    margin-bottom: 20px;
    padding: 3px 18px;
}

.product-discount {
    margin-left: 20px;
}

.product-prices div {
    margin-bottom: 0;
}

.product-prices .current-price {
    align-items: center;
}

.product-prices .current-price .current-price-value {
    font-size: var(--mr_fontsize__title);
    font-weight: var(--mr_fontweight__semibold);
    color: var(--mr_color__pacificblue);
    line-height: 1.25;
}

.product-discount .regular-price {
    text-decoration: line-through;
    font-size: var(--mr_fontsize__medium);
    font-weight: var(--mr_fontweight__semibold);
    color: var(--mr_color__primary);
    line-height: 1.2;
}

.product-quantity #quantity_wanted {
    background-color: var(--mr_color__pacificblue);
    border: 1px solid var(--mr_color__primary);
    border-radius: 200px;
    line-height: 1.25;
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__semibold);
    color: var(--mr_color__white);
    text-align: center;
    width: 120px;
    padding: 16.5px 35px;
    height: 35px !important;
    margin: 0;
    height: unset;
    z-index: 1;
}

.product-quantity .qty,
.product-quantity .add {
    margin-bottom: 0;
}

.product-quantity .mr_btn.btn:not(:disabled):hover {
    background-color: var(--mr_color__pacificblue);
}

.tax-shipping-delivery-label {
    display: none;
}

.product-quantity .qty {
    margin-right: 13px;
}

.product-actions .add-to-cart {
    text-align: center;
    background: var(--mr_color__white);
    border: 1px solid var(--mr_color__pacificblue);
    color: var(--mr_color__pacificblue);
    position: relative;
    transition: all .3s ease-in-out;
}

.product-actions .add-to-cart:before {
    content: '';
    background-image: url('/themes/classic_child/assets/img/cart-add.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 13px;
    height: 16px;
    display: block;
    z-index: 1;
    position: absolute;
    left: 20px;
    opacity: 0;
    transition: all .1s ease-in-out;
}

.product-actions .add-to-cart:hover:before {
    opacity: 1;
}

.product-actions .add-to-cart span {
    position: relative;
    transition: all .3s ease-in-out;
    right: 0;
}

.product-actions .add-to-cart:hover span {
    right: -10px;
}

.product-actions .add-to-cart:hover,
.product-actions .add-to-cart:active,
.product-actions .add-to-cart:focus {
    background: var(--mr_color__pacificblue);
    border: 1px solid var(--mr_color__pacificblue);
    color: var(--mr_color__white);
}

.product-actions .add-to-cart {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: unset;
    line-height: 1.25;
    padding-top: 10px;
    font-size: var(--mr_fontsize__xsmall);
    min-width: 150px;
    height: 35px;
    padding: 7.5px 19.5px;
    transition: border .3s ease, color .3s ease, background-color .3s ease;
}

.product-actions .add-to-cart:hover {
    border-color: var(--mr_color__pacificblue) !important;
}

.product-actions .add-to-cart:not(:hover):not(:focus):not(:active) svg {
    display: none;
}

.mr_single-dostep {
    padding: 0;
    background: transparent;
}

.mr_single-dostep>fieldset {
    border: 1px solid var(--mr_color__primary);
    border-radius: 13px;
    padding: 8px 15px 15px 15px;
    width: fit-content;
    min-width: 268px;
    max-width: 100%;
}

.mr_single-dostep>fieldset>legend {
    font-size: var(--mr_fontsize__xsmall);
    width: auto;
    padding: 0 8px;
}

.mr_single-dostep .js-mailalert {
    width: max-content;
    max-width: 100%;
}

.mr_single-dostep .js-mailalert .form-control {
    background-color: var(--mr_color__white);
    font-size: var(--mr_fontsize__xsmall);
    line-height: 1.25;
    font-weight: var(--mr_fontweight__regular);
    color: var(--mr_color__black);
    border-radius: 18px;
    padding: 10px;
    width: auto;
    float: left;
}

.mr_single-dostep .js-mailalert .btn {
    margin: 0 0 0 6px !important;
    font-size: var(--mr_fontsize__xsmall);
    padding-left: 15px;
    padding-right: 15px;
}

.mr_single-dostep .js-mailalert .alert {
    margin: 0;
    padding: 3px 9px;
}

.js-mailalert-alerts * {
    margin-top: 5px;
    display: block;
    width: auto;
    font-weight: var(--mr_fontweight__medium);
    font-size: var(--mr_fontsize__xsmall);
}


/* Single Featers Products */
.mr_single-features {
    margin-top: 5rem;
}
.mr_single-features-title {
    margin-bottom: 1.5rem;
}

.mr_single-features-description {
    margin-bottom: 4rem;
}


/* Wishlist */

.wishlist-product-image {
    margin-bottom: 6.5px;
}

.wishlist-product-image {
    height: unset !important;
}

.wishlist-product {
    grid-template-columns: 100%;
    padding: 15px;
    background-color: var(--mr_color__white);
    box-shadow: 0px 3px 6px #ecf1fd;
    border-radius: 13px;
}

.wishlist-product-image::before {
    content: '';
    display: block;
    padding-bottom: 100%;
}

.wishlist-product-image img {
    width: 100%;
    height: 100%;
}

.wishlist-product-addtocart>i,
.wishlist-product-combinations {
    display: none !important;
}

.wishlist-button-add {
    background: unset !important;
    box-shadow: none !important;
    top: 15px !important;
    left: 15px !important;
}

.wishlist-product-image {
    max-width: 100%;
}

.wishlist-modal .modal-content {
    margin-left: 10px;
    margin-right: 10px;
}

.wishlist-chooselist .wishlist-list-item p {
    color: var(--mr_color__white);
    transition: color
}

.wishlist-chooselist .wishlist-list-item:hover p {
    color: var(--mr_color__primary);
}

.wishlist-product-addtocart {
    margin: 1.5rem auto 0 auto;
    display: block;
    width: max-content;
    text-align: center;
    background: var(--mr_color__white) !important;
    border: 1px solid var(--mr_color__pacificblue) !important;
    color: var(--mr_color__pacificblue) !important;
    position: relative;
    transition: all .3s ease-in-out;
    padding: 10px !important;
}

.wishlist-product-addtocart::before {
    content: '';
    background-image: url('/themes/classic_child/assets/img/cart-add.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 13px;
    height: 16px;
    display: block;
    z-index: 1;
    position: absolute;
    left: 20px;
    opacity: 0;
    transition: all .1s ease-in-out;
}

.wishlist-product-addtocart:hover:before {
    opacity: 1;
}

.wishlist-product-addtocart span {
    position: relative;
    transition: all .3s ease-in-out;
    right: 0;
}

.wishlist-product-addtocart:hover span {
    right: -10px;
}

.products .product .mr_btn:hover,
.products .product .mr_btn:active,
.products .product .mr_btn:focus {
    background: var(--mr_color__pacificblue);
    border: 1px solid var(--mr_color__pacificblue);
    color: var(--mr_color__white);
}

.product-additional-info,
.mr_single-about-product-wish {
    width: max-content;
    max-width: 100%;
}

.mr_single-about-product-wish .wishlist-button-add {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0 !important;
    left: 0 !important;
    opacity: 0 !important;
}

.mr_single-delivery {
    gap: 15px;
}

.mr_single-about-product {
    display: grid;
    gap: 15px;
}

.mr_single-about-product-btn {
    color: var(--mr_color__primary);
    line-height: 1.25;
    font-size: var(--mr_fontsize__xsmall);
    font-weight: var(--mr_fontweight__medium);
    text-transform: uppercase;
}

a.mr_single-about-product-btn:hover,
button.mr_single-about-product-btn:hover {
    color: inherit;
    text-decoration: underline;
}

.mr_single-about-product-icon {
    width: 30px;
    max-width: 100%;
    text-align: left;
}

.product-additional-info .tabs,
.product-additional-info .mr_single_promoinfo {
    display: none;
}


/* Single Description */

.mr_single-subtitle-container {
    width: 100%;
    max-width: 925px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

.mr_single-subtitle-inside {
    position: relative;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
}
.mr_single-subtitle-inside .tab-item-content {
    font-weight: var(--mr_fontweight__medium);
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
}
.mr_single-subtitle-inside .research-purpose-banner {
    border: 1.5px solid var(--mr_color__pacificblue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    padding: 25px;
    gap: 25px;
}
.mr_single-subtitle-inside .research-purpose-banner h3 {
    margin-bottom: 15px;
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__semibold);
    color: var(--mr_color__primary);
}
.mr_single-subtitle-inside .research-purpose-banner p {
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__regular);
    color: var(--mr_color__primary);
}
.mr_single-subtitle-inside .research-purpose-banner img {
    min-width: 76px;
    height: auto;
}
@media (max-width: 767px) {
    .mr_single-subtitle-inside .research-purpose-banner {
        padding: 15px;
        gap: 15px;
    }
    .mr_single-subtitle-inside .research-purpose-banner img {
        min-width: 56px;
        height: auto;
    }
}
.mr_single-content {
    margin-bottom: 2rem;
}

.mr_single-content-title {
    margin-top: 4.5rem;
    margin-bottom: 1.5rem;
}
.mr_single-content-description {
    padding-right: 30px;
}
.mr_single-content-description>* {
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
    font-weight: var(--mr_fontweight__medium);
    color: var(--mr_color__primary);
    /* padding-top: 10px;
    padding-bottom: 10px; */
}
.mr_single-content-description h2 {
    font-size: min(max(1.8rem, 2.4vw), 2.4rem);
    color: var(--mr_color__primary);
}

.mr_single-content-description h3 {
    font-size: 2.4rem;
}

.mr_single-content-description h4 {
    font-size: 2rem;
}

.mr_single-content-description h5 {
    font-size: 1.8rem;
}
.mr_single-content-description p {
    padding-bottom: 1.5rem;
}
.mr_single-content-description>*:first-child {
    padding-top: 0;
}

.mr_single-content-description>*:last-child {
    padding-bottom: 0;
}
.mr_single-content-description ul:not(.elementor-editor-element-settings):not(.elementor-select-preset-list) {
    display: grid;
    margin-top: 1rem;
    margin-bottom: 0;
}

.mr_single-content-description ul li:not(.elementor-editor-element-setting):not(.elementor-preset) {
    position: relative;
    padding: 0 15px;
    margin: 5px 0;
    align-items: center;
}

.mr_single-content-description ul >li:not(.elementor-editor-element-setting):not(.elementor-preset)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 200px;
    background-color: var(--mr_color__pacificblue);
}


ul[style="list-style-type: disc;"]{
    display: grid;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.mr_single-content-description ul[style="list-style-type: disc;"] li:not(.elementor-editor-element-setting):not(.elementor-preset) {
    position: relative;
    padding: 0 15px;
    display: grid;
    margin: 7px 0;
    align-items: center;
}
.mr_single-content-description ul[style="list-style-type: disc;"] li:not(.elementor-editor-element-setting):not(.elementor-preset)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 200px;
    background-color: var(--mr_color__pacificblue);
}

.mr_single-content-description .inline-style-ul li:not(.elementor-editor-element-setting):not(.elementor-preset) {
    display: inline;
}
.mr_single-content-description a {
    overflow-wrap: break-word;
}
@media (min-width: 992px) {
    .mr_single-subtitle {
        margin-left: auto;
        width: 58%;
        max-width: 100%;
    }
    .mr_single-content-description ul {
        grid-template-columns: 1fr;
    }
    .mr_single-content-description ul[style="list-style-type:disc;"] {
        grid-template-columns: 1fr 1fr;
    }
}

/* .mr_single-content-description img {
    margin-left: 20px;
    margin-right: 0;
} */

@media (max-width: 767px) {
    .mr_single-content-buttom {
        margin: 0 auto;
    }
    .mr_single-content-description {
        padding-right: 0;
    }
    .mr_single-content-description img:not(.elementor-image > img):not(.elementor-image > picture > img) {
        width: 100%;
        height: auto;
        margin-top: 2rem;
        margin-bottom: 2rem;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Single Comments */

.mr_single-comments {
    border-top: 1px solid #CACCDA;
}

.product-comment-list-item {
    box-shadow: 0px 3px 6px #ecf1fd;
}

.comment-infos,
.comment-content {
    display: grid;
    align-content: center;
}

.comment-content {
    gap: 1rem;
}

.product-comment-list-item .comment-infos .grade-stars {
    transform: scale(0.6);
    margin-left: -50px !important;
    margin: 0 0 2rem -3px;
}

.product-comment-list-item .comment-content h4,
.product-comment-list-item .comment-content p,
.product-comment-list-item .comment-infos {
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__medium);
    color: var(--mr_color__primary);
    line-height: 1.25;
    letter-spacing: 0;
}

.product-comment-list-item .comment-content h4 {
    font-weight: var(--mr_fontweight__bold);
    margin: 0;
}

.comment-infos {
    padding-left: 20px;
    padding-right: 20px;
}

.comment-buttons {
    margin-top: 1rem;
}

.comment-buttons .useful-review-content>button {
    display: flex;
    align-items: center;
}

.comment-buttons .useful-review-content>button>span {
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
    font-weight: var(--mr_fontweight__medium);
    color: var(--mr_color__primary);
    margin-left: 6px;
}

.not-useful-review {
    margin-left: 24px;
}

#mr-product-comments-list-header {
    gap: 10px;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

#mr-product-comments-list-header svg {
    width: 30px;
    height: 20px;
}

#product-comments-list-pagination {
    position: unset !important;
    height: unset;
}

#product-comments-list-pagination ul {
    margin: 0;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: 5rem;
}

#product-comments-list-pagination ul li span {
    margin: 0 10px;
}

#product-comments-list-pagination ul li span.next,
#product-comments-list-pagination ul li span.prev {
    width: unset;
    height: unset;
}

#product-comments-list-pagination ul li span.next {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5.243' height='9.072' viewBox='0 0 5.243 9.072'%3E%3Cpath id='Path_128' data-name='Path 128' d='M6095.917,240.821,6100.1,245l4.182-4.182' transform='translate(-240.468 6104.636) rotate(-90)' fill='none' stroke='%23273370' stroke-width='1'/%3E%3C/svg%3E%0A");
}

#product-comments-list-pagination ul li span.prev {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5.243' height='9.072' viewBox='0 0 5.243 9.072'%3E%3Cpath id='Path_129' data-name='Path 129' d='M6095.917,240.821,6100.1,245l4.182-4.182' transform='translate(245.711 -6095.564) rotate(90)' fill='none' stroke='%23273370' stroke-width='1'/%3E%3C/svg%3E");
}

#product-comments-list-pagination ul li {
    align-self: center;
}

#product-comments-list-pagination ul li span:not(.next):not(.prev) {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--mr_fontsize__xsmall);
    font-weight: var(--mr_fontweight__medium);
    color: var(--mr_color__primary);
    line-height: 1.25;
    width: 23px;
    height: 23px;
    background-color: var(--mr_color__white);
    border-radius: 200px;
    box-shadow: 0px 3px 6px #ecf1fd;
}

#product-comments-list-pagination ul li.active span {
    color: var(--mr_color__white) !important;
    background-color: var(--mr_color__primary) !important;
}

#product-comments-list-footer {
    justify-content: center;
    min-height: unset;
}

.mr_single-content-buttom {
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .mr_single-content-buttom {
        grid-template-columns: repeat(2, minmax(1px, max-content));
        margin-bottom: 8rem;
    }
}

.mr_single-delivery {
    gap: 1rem;
}

.mr_single-delivery-item {
    grid-template-columns: minmax(1px, max-content) minmax(1px, 1fr);
    gap: 1.5rem;
    align-items: center;
    position: relative;
}

.mr_single-delivery-description {
    color: var(--mr_color__primary);
    line-height: 1.25;
    font-size: var(--mr_fontsize__xsmall);
    font-weight: var(--mr_fontweight__bold);
    text-transform: uppercase;
}

.mr_single-about-product-icon,
.mr_single-delivery-icon {
    width: 40px;
    max-width: 100%;
}

.mr_single-about-product-icon::before,
.mr_single-delivery-icon::before {
    padding-bottom: 75%;
}

.mr_single-about-product-icon>*,
.mr_single .mr_aspect_ratio>* {
    object-fit: contain;
}

.mr_single-about-product-icon {
    width: 27px;
    margin-right: 1.5rem;
}

.ikonka-wysylka {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='30' height='30' viewBox='0 0 30 30'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_262' data-name='Rectangle 262' width='30' height='30' fill='%2301a3cb'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Group_564' data-name='Group 564' transform='translate(0 0)'%3E%3Cg id='Group_563' data-name='Group 563' transform='translate(0 0)' clip-path='url(%23clip-path)'%3E%3Cpath id='Path_168' data-name='Path 168' d='M15,32.122a.491.491,0,0,1-.225-.054L.256,24.538A.468.468,0,0,1,0,24.123V9.924a.468.468,0,0,1,.233-.4.489.489,0,0,1,.473-.012l14.519,7.529a.469.469,0,0,1,.255.416v14.2a.469.469,0,0,1-.232.4.5.5,0,0,1-.248.067M.962,23.84l13.558,7.03V17.736L.962,10.706Z' transform='translate(0 -2.123)' fill='%2301a3cb'/%3E%3Cpath id='Path_169' data-name='Path 169' d='M18.792,32.123a.486.486,0,0,1-.247-.067.468.468,0,0,1-.233-.4v-14.2a.469.469,0,0,1,.255-.416L33.086,9.509a.489.489,0,0,1,.473.012.467.467,0,0,1,.232.4v14.2a.471.471,0,0,1-.255.416L19.017,32.068a.49.49,0,0,1-.225.055m.481-14.386V30.871L32.83,23.84V10.706Zm14.038,6.387h0Z' transform='translate(-3.792 -2.123)' fill='%2301a3cb'/%3E%3Cpath id='Path_170' data-name='Path 170' d='M15,15.8a.492.492,0,0,1-.225-.055L.255,8.218a.466.466,0,0,1,0-.834L14.779.053a.492.492,0,0,1,.442,0L29.739,7.384a.466.466,0,0,1,0,.834L15.224,15.746A.487.487,0,0,1,15,15.8M1.518,7.807,15,14.8,28.482,7.807,15,1Z' transform='translate(0 0)' fill='%2301a3cb'/%3E%3Cpath id='Path_171' data-name='Path 171' d='M23.273,16.357a.487.487,0,0,1-.248-.067.467.467,0,0,1-.233-.4V12.945L8.531,5.647a.466.466,0,0,1,0-.835L11.627,3.25a.494.494,0,0,1,.442,0l14.508,7.361a.469.469,0,0,1,.259.417v3.26a.47.47,0,0,1-.255.416L23.5,16.3a.483.483,0,0,1-.225.055M9.8,5.233l13.7,7.011a.468.468,0,0,1,.258.416v2.446l2.122-1.1V11.315L11.848,4.2Z' transform='translate(-1.713 -0.718)' fill='%2301a3cb'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ikonka-darmowo {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='35' height='18' viewBox='0 0 35 18'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_265' data-name='Rectangle 265' width='35' height='18' fill='%2301a3cb'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Group_570' data-name='Group 570' transform='translate(0 0)'%3E%3Cg id='Group_569' data-name='Group 569' transform='translate(0 0)' clip-path='url(%23clip-path)'%3E%3Cpath id='Path_179' data-name='Path 179' d='M7.564,22.608a3.078,3.078,0,1,1,3.095-3.078,3.09,3.09,0,0,1-3.095,3.078m0-5.283A2.2,2.2,0,1,0,9.781,19.53a2.213,2.213,0,0,0-2.217-2.205' transform='translate(-1.234 -4.608)' fill='%2301a3cb'/%3E%3Cpath id='Path_180' data-name='Path 180' d='M36.1,22.608a3.078,3.078,0,1,1,3.095-3.078A3.09,3.09,0,0,1,36.1,22.608m0-5.283a2.2,2.2,0,1,0,2.217,2.205A2.213,2.213,0,0,0,36.1,17.325' transform='translate(-9.11 -4.608)' fill='%2301a3cb'/%3E%3Cpath id='Path_181' data-name='Path 181' d='M20.5,19.082H9.122a.437.437,0,1,1,0-.873H20.065v-4.04H1.114a.236.236,0,0,0-.237.235v3.571a.236.236,0,0,0,.237.235H3.545a.437.437,0,1,1,0,.873H1.114A1.112,1.112,0,0,1,0,17.974V14.4A1.112,1.112,0,0,1,1.114,13.3H20.5a.438.438,0,0,1,.439.437v4.914a.437.437,0,0,1-.439.436' transform='translate(0 -3.724)' fill='%2301a3cb'/%3E%3Cpath id='Path_182' data-name='Path 182' d='M40.791,10.653H36.2a.438.438,0,0,1-.439-.436V5.405a.438.438,0,0,1,.439-.437h2.418a.441.441,0,0,1,.4.258l2.173,4.812a.437.437,0,0,1-.4.616M36.638,9.78h3.474L38.334,5.841h-1.7Z' transform='translate(-9.871 -1.392)' fill='%2301a3cb'/%3E%3Cpath id='Path_183' data-name='Path 183' d='M41.595,15.93H37.5a.437.437,0,1,1,0-.873h4.093a.178.178,0,0,0,.178-.177v-1.1a.177.177,0,0,0-.178-.177h-.554a.438.438,0,0,1-.439-.437V9.66a.48.48,0,0,0-.041-.194L37.749,3.195a.48.48,0,0,0-.437-.282H29.073a.478.478,0,0,0-.478.476V15.057h3.278a.437.437,0,1,1,0,.873H28.156a.437.437,0,0,1-.439-.436V3.388A1.354,1.354,0,0,1,29.073,2.04h8.239a1.358,1.358,0,0,1,1.239.8l2.812,6.271a1.328,1.328,0,0,1,.117.549v3.066h.115a1.055,1.055,0,0,1,1.056,1.05v1.1a1.055,1.055,0,0,1-1.056,1.05' transform='translate(-7.651 -0.572)' fill='%2301a3cb'/%3E%3Cpath id='Path_184' data-name='Path 184' d='M19,10.445H2.55a.437.437,0,0,1-.439-.436V.436A.437.437,0,0,1,2.55,0H19a.437.437,0,0,1,.439.436v9.572a.437.437,0,0,1-.439.436M2.988,9.572H18.56V.873H2.988Z' transform='translate(-0.583 0)' fill='%2301a3cb'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ikonka-eko {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='25.415' viewBox='0 0 35 25.415'%3E%3Cg id='Group_577' data-name='Group 577' transform='translate(-1689.158 -2687.996)'%3E%3Cpath id='Path_1673' data-name='Path 1673' d='M1701.39,2713.411c-.652,0-.734-.081-.734-.723,0-3.053,0-12.94,0-12.94H1698l-1.245,0c-.333,0-.533-.161-.535-.428a.394.394,0,0,1,.113-.291.576.576,0,0,1,.412-.149q.692,0,1.385,0h2.5v-1.61h-5.536c-1.5,0-3.486,0-5.485.007a.5.5,0,0,1-.245-.105.456.456,0,0,1-.2-.439.381.381,0,0,1,.259-.324.241.241,0,0,1,.076-.015c2.016.006,4.03.007,5.559.007h5.605v-.265c0-.142,0-.282,0-.42v-.018c0-.324.007-.629-.007-.945a2.076,2.076,0,0,1,.243-1.053c.965-1.835,1.846-3.544,2.7-5.224a.853.853,0,0,1,.765-.471c2.71.006,5.414.009,8.04.009,2.714,0,5.423,0,8.051-.01a.74.74,0,0,1,.776.481c.463.915.94,1.839,1.4,2.732l.01.021c.445.863.906,1.754,1.351,2.635a1.508,1.508,0,0,1,.161.675c.009,5.223.009,10.525.008,15.652v2.533c0,.59-.1.686-.7.686H1701.39Zm21.872-.9v-17.785h-8.06v1.971q0,1.746,0,3.492c0,.515-.127.64-.643.642l-2.164,0-2.1,0c-.507,0-.638-.135-.638-.65q0-1.608,0-3.217v-2.239h-8.1v1.667l1.524,0c.277,0,.553,0,.829,0,.44,0,.514.259.519.41.01.276-.177.442-.51.457-.11,0-.23.007-.376.007h-.271l-.276,0h-1.442v1.586l.252.012.08,0c.064,0,.114.007.164.007h1.1c.321,0,.58,0,.816.007a.434.434,0,1,1,0,.866c-.065,0-.13,0-.2,0h-2.223v12.765Zm-8.949-12.576v-5.21h-3.775v5.21Zm-4.6-6.116.636-4.943h-2.228c-1.08,0-2.24,0-3.414.01a.692.692,0,0,0-.523.367c-.343.641-.676,1.288-1,1.914l-.263.51-.568,1.1-.536,1.04Zm13.185,0-.117-.349a.941.941,0,0,0-.086-.189c-.011-.019-.02-.035-.03-.056-.336-.706-.656-1.252-.995-1.831-.283-.483-.574-.981-.916-1.634-.1-.193-.165-.335-.212-.439-.116-.257-.2-.443-.55-.443v0h-4.856c-.077,0-.151.007-.228.014l-.112.01-.28.02.636,4.9Zm-8.628,0-.635-4.922h-2.407l-.636,4.922Z' fill='%2301a3cb'/%3E%3Cpath id='Path_1674' data-name='Path 1674' d='M1689.788,2868.8a.261.261,0,0,1-.225-.113.565.565,0,0,1-.094-.329c0-.165.067-.444.32-.444,1.795.007,3.561.008,4.9.008h4.5a1.228,1.228,0,0,1,.144.006.406.406,0,0,1,.365.361.394.394,0,0,1-.261.456,1.528,1.528,0,0,1-.436.047l-9.207.009Z' transform='translate(-0.281 -163.106)' fill='%2301a3cb'/%3E%3Cpath id='Path_1675' data-name='Path 1675' d='M1739.346,2895.374q-.467,0-.933,0c-.34,0-.537-.156-.541-.424a.4.4,0,0,1,.113-.294.575.575,0,0,1,.413-.149c.766,0,1.557-.006,2.352-.006q1.148,0,2.3.005c.459,0,.531.273.532.435a.387.387,0,0,1-.1.291.631.631,0,0,1-.452.143l-.934,0h-2.746Z' transform='translate(-44.162 -187.202)' fill='%2301a3cb'/%3E%3Cpath id='Path_1676' data-name='Path 1676' d='M1740.118,2896.065l-.933,0c-.171,0-.458-.047-.462-.345a.32.32,0,0,1,.09-.238.5.5,0,0,1,.357-.125c.765,0,1.557-.006,2.352-.006q1.148,0,2.3.005c.3,0,.451.121.453.356a.312.312,0,0,1-.078.234.563.563,0,0,1-.4.119l-.934,0h-2.746Z' transform='translate(-44.933 -187.973)' fill='%2301a3cb'/%3E%3Cpath id='Path_1677' data-name='Path 1677' d='M1985.217,2890.415c-.5,0-1.016,0-1.526-.01-.341,0-.487-.158-.489-.511-.006-1.023-.006-2.039,0-3.019a.5.5,0,0,1,.492-.5c.507-.005,1.016-.008,1.513-.008s1.02,0,1.52.008c.239,0,.484.066.49.512,0,.352,0,.71,0,1.057v.011c0,.157,0,.313,0,.469v.43c0,.334,0,.668,0,1,0,.446-.2.54-.494.544C1986.225,2890.411,1985.718,2890.415,1985.217,2890.415Zm1.113-.895v-2.25H1984.1v2.25Z' transform='translate(-266.558 -179.834)' fill='%2301a3cb'/%3E%3Cpath id='Path_1678' data-name='Path 1678' d='M1985.988,2891.107c-.5,0-1.018,0-1.525-.01-.3,0-.409-.121-.411-.432-.006-1.02-.006-2.035,0-3.019a.42.42,0,0,1,.413-.416c.5-.006,1.013-.009,1.513-.009s1.016,0,1.519.009c.25,0,.406.076.411.433s0,.717,0,1.067q0,.234,0,.469v.43c0,.334,0,.668,0,1,0,.386-.149.461-.415.465C1986.995,2891.1,1986.489,2891.107,1985.988,2891.107Zm-1.2-.736h2.393v-2.409h-2.393Z' transform='translate(-267.329 -180.606)' fill='%2301a3cb'/%3E%3Cpath id='Path_1679' data-name='Path 1679' d='M1854.044,2868.865h-1.75q-.978,0-1.957,0a1.259,1.259,0,0,1-.365-.044.392.392,0,0,1-.265-.458.412.412,0,0,1,.368-.363.6.6,0,0,1,.072,0h4.188q1.789,0,3.577,0a.47.47,0,0,1,.389.176.42.42,0,0,1,.059.378c-.06.207-.241.312-.539.313q-.828,0-1.656,0Z' transform='translate(-145.539 -163.174)' fill='%2301a3cb'/%3E%3Cpath id='Path_1680' data-name='Path 1680' d='M1854.818,2869.556h-1.75q-.978,0-1.956,0a1.188,1.188,0,0,1-.341-.041.32.32,0,0,1-.211-.372.334.334,0,0,1,.3-.294.519.519,0,0,1,.062,0h4.188q1.789,0,3.577,0a.394.394,0,0,1,.325.145.343.343,0,0,1,.046.308c-.018.063-.074.255-.463.256l-1.655,0Z' transform='translate(-146.313 -163.944)' fill='%2301a3cb'/%3E%3Cpath id='Path_1681' data-name='Path 1681' d='M1856.575,2895.384h-4.693q-.831,0-1.662,0a.569.569,0,0,1-.418-.144.436.436,0,0,1,.292-.71,3.169,3.169,0,0,1,.369-.017h7.227a1.91,1.91,0,0,1,.3.016.415.415,0,0,1,.382.456.4.4,0,0,1-.43.395c-.246,0-.518.007-.855.007Z' transform='translate(-145.542 -187.212)' fill='%2301a3cb'/%3E%3Cpath id='Path_1682' data-name='Path 1682' d='M1857.859,2896.077h-5.206q-.831,0-1.661,0a.493.493,0,0,1-.36-.119.357.357,0,0,1,.244-.577,3.039,3.039,0,0,1,.36-.017h7.227a1.883,1.883,0,0,1,.287.015.338.338,0,0,1,.315.373.324.324,0,0,1-.353.319C1858.466,2896.075,1858.195,2896.077,1857.859,2896.077Z' transform='translate(-146.313 -187.984)' fill='%2301a3cb'/%3E%3Cpath id='Path_1683' data-name='Path 1683' d='M1899.529,2922.171q-.8,0-1.6,0a.449.449,0,0,1-.5-.434.39.39,0,0,1,.128-.3.6.6,0,0,1,.4-.132q.315,0,.63,0h1.926q.309,0,.617,0a.569.569,0,0,1,.405.138.408.408,0,0,1,.1.3c0,.266-.19.426-.5.427Q1900.334,2922.17,1899.529,2922.171Z' transform='translate(-188.806 -211.494)' fill='%2301a3cb'/%3E%3Cpath id='Path_1684' data-name='Path 1684' d='M1900.3,2922.863q-.8,0-1.6,0c-.254,0-.419-.141-.42-.354a.309.309,0,0,1,.1-.244.522.522,0,0,1,.344-.112l.629,0h1.926q.308,0,.616,0a.493.493,0,0,1,.349.114.333.333,0,0,1,.082.247c0,.3-.265.348-.419.349Q1901.105,2922.863,1900.3,2922.863Z' transform='translate(-189.577 -212.265)' fill='%2301a3cb'/%3E%3C/g%3E%3C/svg%3E");
}

.ikonka-zwroty {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='30' height='30' viewBox='0 0 30 30'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_264' data-name='Rectangle 264' width='30' height='30' fill='%2301a3cb'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Group_568' data-name='Group 568' transform='translate(0 0)'%3E%3Cg id='Group_567' data-name='Group 567' transform='translate(0 0)' clip-path='url(%23clip-path)'%3E%3Cpath id='Path_176' data-name='Path 176' d='M15,30a3.607,3.607,0,0,1-3.3-2.157.169.169,0,0,0-.112-.1.172.172,0,0,0-.146.027,3.606,3.606,0,0,1-5.722-3.286.176.176,0,0,0-.2-.2,3.606,3.606,0,0,1-3.286-5.722.172.172,0,0,0-.07-.258,3.606,3.606,0,0,1,0-6.6.173.173,0,0,0,.07-.259A3.606,3.606,0,0,1,5.513,5.717a.175.175,0,0,0,.2-.2,3.606,3.606,0,0,1,5.722-3.287.172.172,0,0,0,.258-.07,3.606,3.606,0,0,1,6.6,0,.173.173,0,0,0,.259.07,3.606,3.606,0,0,1,5.722,3.287.175.175,0,0,0,.2.2,3.606,3.606,0,0,1,3.287,5.722.169.169,0,0,0-.027.146.167.167,0,0,0,.1.113,3.606,3.606,0,0,1,0,6.6.167.167,0,0,0-.1.112.169.169,0,0,0,.027.146,3.606,3.606,0,0,1-3.287,5.722.175.175,0,0,0-.2.2,3.606,3.606,0,0,1-5.722,3.286.173.173,0,0,0-.259.07A3.606,3.606,0,0,1,15,30m-3.462-3.169a1.084,1.084,0,0,1,.991.646,2.7,2.7,0,0,0,4.941,0,1.081,1.081,0,0,1,1.629-.437,2.7,2.7,0,0,0,4.28-2.459,1.083,1.083,0,0,1,1.2-1.2,2.7,2.7,0,0,0,2.459-4.28,1.079,1.079,0,0,1,.436-1.628,2.7,2.7,0,0,0,0-4.942,1.08,1.08,0,0,1-.436-1.629,2.7,2.7,0,0,0-2.459-4.28,1.082,1.082,0,0,1-1.2-1.2A2.7,2.7,0,0,0,19.1,2.959a1.08,1.08,0,0,1-1.629-.436,2.7,2.7,0,0,0-4.941,0,1.08,1.08,0,0,1-1.629.436,2.7,2.7,0,0,0-4.28,2.459,1.083,1.083,0,0,1-1.2,1.2A2.7,2.7,0,0,0,2.959,10.9a1.08,1.08,0,0,1-.436,1.629,2.7,2.7,0,0,0,0,4.942A1.079,1.079,0,0,1,2.959,19.1,2.7,2.7,0,0,0,5.418,23.38a1.083,1.083,0,0,1,1.2,1.2,2.7,2.7,0,0,0,4.28,2.459,1.076,1.076,0,0,1,.637-.21' transform='translate(0 0)' fill='%2301a3cb'/%3E%3Cpath id='Path_177' data-name='Path 177' d='M16.514,26.994A10.481,10.481,0,1,1,27,16.513,10.492,10.492,0,0,1,16.514,26.994m0-20.053a9.573,9.573,0,1,0,9.573,9.573,9.584,9.584,0,0,0-9.573-9.573' transform='translate(-1.514 -1.514)' fill='%2301a3cb'/%3E%3Cpath id='Path_178' data-name='Path 178' d='M21.42,24.389a.954.954,0,0,1-.491-.139L17.7,22.312,14.471,24.25a.953.953,0,0,1-1.422-1.02l.834-3.836L11.1,17.084a.954.954,0,0,1,.5-1.681l3.531-.4,1.7-3.519a.953.953,0,0,1,1.715,0L20.262,15l3.531.4a.954.954,0,0,1,.5,1.681l-2.779,2.31.834,3.836a.958.958,0,0,1-.93,1.159M17.7,11.853a.039.039,0,0,0-.04.025l-1.814,3.744a.453.453,0,0,1-.357.253l-3.779.43a.04.04,0,0,0-.038.032.039.039,0,0,0,.014.047l2.991,2.487a.454.454,0,0,1,.154.446l-.893,4.106a.045.045,0,0,0,.067.048l3.462-2.078a.452.452,0,0,1,.467,0L21.4,23.471a.039.039,0,0,0,.049,0,.038.038,0,0,0,.017-.046l-.893-4.106a.454.454,0,0,1,.154-.446l2.991-2.487a.039.039,0,0,0,.014-.047.04.04,0,0,0-.038-.032l-3.779-.43a.453.453,0,0,1-.357-.253L17.74,11.878a.039.039,0,0,0-.04-.025' transform='translate(-2.7 -2.746)' fill='%2301a3cb'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}

.mr_single .star-content {
    margin: 0 0 0 -2px;
}

.mr_single-contenta .small-stars .star-content div.star:last-child {
    margin-left: -2px;
}

#empty-product-comment {
    display: none !important;
}


/* popup reviev */

.wishlist-modal.show,
.modal-open .modal,
#product .fancybox-overlay {
    background-color: rgba(0, 0, 0, 0.81);
}

#blockcart-modal .modal-dialog,
.modal-content,
.fancybox-skin {
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(27, 163, 204, 1) 0%, rgba(38, 50, 111, 1) 100%);
    border: 0;
}

.fancybox-skin {
    padding: 55px 15px !important;
}

.mr_add_review__title {
    margin-bottom: 2rem;
}

.mr_add_review__content_p {
    margin-bottom: 3rem;
}

#send_AAP_form,
#product .fancybox-outer {
    max-width: 100%;
    background: transparent;
}

.mr_add_review__content,
#send_AAP_form_content,
.send_AAP_form_content_button {
    width: 390px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.mr_add_review__content {
    width: 925px;
}

#send_AAP_form textarea {
    height: 140px;
}

.wishlist-modal .modal-body .form-group .form-control,
.send_AAP_form_content fieldset input,
.send_AAP_form_content fieldset textarea {
    background-color: var(--mr_color__white);
    font-size: var(--mr_fontsize__xsmall);
    line-height: 1.25;
    font-weight: var(--mr_fontweight__regular);
    color: var(--mr_color__black);
    border-radius: 18px;
    padding: 10px;
    font-size: var(--mr_fontsize__small);
}

.send_AAP_form_content_button {
    border: 0;
    padding: 0;
    margin: 0 auto;
}

.send_AAP_form_content_button .submit {
    display: grid;
    grid-template-columns: minmax(1px, 1fr) minmax(1px, max-content);
    gap: 5px;
    padding-left: 24px;
}

.mr_sumbit_app {
    position: relative;
}

.mr_sumbit_app input {
    position: absolute;
    opacity: 0;
    width: calc(100% + 24px);
    height: 100%;
    top: 0;
    left: -24px;
}

.send_AAP_form_content_button .mr_sumbit_app span,
.send_AAP_form_content_button .mr_sumbit_app a {
    font-weight: var(--mr_fontsize__medium);
    color: var(--mr_color__white);
    font-size: var(--mr_fontsize__xsmall);
    line-height: 1.25;
}

.mr_sumbit_app span::before,
.mr_sumbit_app span::after {
    content: '';
    position: absolute;
    border-radius: 200px;
    cursor: pointer;
    pointer-events: none;
}

.mr_sumbit_app span::before {
    top: 0;
    left: -24px;
    width: 15px;
    height: 15px;
    border: 1px solid var(--mr_color__white);
}

.mr_sumbit_app input:checked+span:after {
    left: -20px;
    top: 4px;
    width: 7px;
    height: 7px;
    background-color: var(--mr_color__white);
}

.send_AAP_form_content .form-group {
    margin-bottom: 2rem;
}

.fancybox-close {
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
}

#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
    background-image: url("data:image/svg+xml,%3Csvg id='Icon' xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Crect id='Area' width='20' height='20' fill='%23fbfbfb' opacity='0'/%3E%3Cg id='Icon-2' data-name='Icon' transform='translate(1.29 2.499)'%3E%3Ccircle id='Path' cx='8.333' cy='8.333' r='8.333' transform='translate(0.377 -0.832)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.667'/%3E%3Cline id='Line' x1='5' y2='5' transform='translate(6.21 5.001)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.667'/%3E%3Cline id='Line-2' data-name='Line' x2='5' y2='5' transform='translate(6.21 5.001)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.667'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
}

.modal-header .close span {
    content: url("data:image/svg+xml,%3Csvg id='Icon' xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Crect id='Area' width='20' height='20' fill='%23fbfbfb' opacity='0'/%3E%3Cg id='Icon-2' data-name='Icon' transform='translate(1.29 2.499)'%3E%3Ccircle id='Path' cx='8.333' cy='8.333' r='8.333' transform='translate(0.377 -0.832)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.667'/%3E%3Cline id='Line' x1='5' y2='5' transform='translate(6.21 5.001)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.667'/%3E%3Cline id='Line-2' data-name='Line' x2='5' y2='5' transform='translate(6.21 5.001)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.667'/%3E%3C/g%3E%3C/svg%3E");
}

.product-comment-modal .modal-dialog {
    width: var(--global-width);
    max-width: 1060px;
}

.close:focus,
.close:hover {
    opacity: 1;
    outline: 0;
}

#post-product-comment-modal .criterion-rating {
    display: grid;
    justify-content: center;
    justify-items: center;
}

#post-product-comment-modal .criterion-rating label {
    margin: 0 0 15px;
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__medium);
    line-height: 1.25;
    color: var(--mr_color__white);
}

.modal-dialog {
    margin-left: auto;
    margin-right: auto;
}

.mr_add_review__inputs {
    width: 100%;
    max-width: 452px;
}

.mr_add_review__inputs label {
    text-align: center;
}

.modal-header button {
    position: absolute;
    right: 12px;
    top: 12px;
    color: var(--mr_color__pink);
    opacity: 1;
    font-size: 24px;
}

.product-comment-modal .modal-header {
    padding: max(24px, 3.8rem) 20px 0;
}

.product-comment-modal .modal-body {
    padding: 2rem 20px 24px;
}

.modal-dialog .modal-content .mr_add_review__title {
    margin-bottom: 0;
    font-size: var(--mr_fontsize__big);
    font-weight: var(--mr_fontweight__light);
    color: var(--mr_color__white);
}

.wishlist-modal .modal-header h5,
.modal-dialog .mr_add_review__content .mr_add_review__content_h3 {
    font-size: var(--mr_fontsize__normal);
    font-weight: var(--mr_fontweight__medium);
    color: var(--mr_color__white);
    margin-bottom: 0;
}
.wishlist-modal.fade .modal-dialog {
    max-width: 46rem;
}
.form-control-label,
.modal-dialog .mr_add_review__content .mr_add_review__content_p {
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__regular);
    color: var(--mr_color__white);
}

.product-comment-modal .post-comment-buttons .btn-comment {
    display: block;
    margin: 0;
    width: max-content;
    line-height: 1;
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__light);
}

.product-comment-modal textarea {
    margin-bottom: 2rem;
}

.modal-backdrop.in {
    opacity: 0 !important;
}

.comment-content {
    padding-left: 20px;
    padding-right: 20px;
}


/* shop fixed cart */

#blockcart-modal .cart-content p .label,
#blockcart-modal .cart-content .page-content.page-cms ul .label,
.page-content.page-cms #blockcart-modal .cart-content ul .label,
#blockcart-modal .cart-content p .value,
#blockcart-modal .cart-content .page-content.page-cms ul .value,
.page-content.page-cms #blockcart-modal .cart-content ul .value,
#blockcart-modal .cart-content p .label,
#blockcart-modal .cart-content p.cart-products-count,
#blockcart-modal .product-name {
    color: var(--mr_color__white);
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__medium);
    line-height: 1.25;
}

#blockcart-modal .cart-content p .label {
    font-weight: var(--mr_fontweight__regular);
}

.modal-body--inside {
    display: grid;
    gap: 20px;
}

@media (min-width: 992px) {
    .modal-body--inside {
        grid-template-columns: 1fr 1fr;
    }
}

#blockcart-modal .modal-body .divide-right span {
    margin-bottom: 5px;
}

.modal-body--inside .mr_content>* {
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
    color: var(--mr_color__white) !important;
    font-weight: var(--mr_fontweight__regular);
}

#blockcart-modal .product-image {
    border-radius: 18px;
}

.divide-right {
    display: grid;
    grid-template-columns: max-content minmax(1px, 100%);
    gap: 20px;
}

#blockcart-modal .cart-content .cart-content-btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 10px;
}

.wishlist-modal .modal-footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(1px, max-content));
    gap: 5px;
    justify-content: space-between;
}

.wishlist-modal .modal-footer .btn,
#blockcart-modal .cart-content .cart-content-btn .btn {
    display: grid;
    align-content: center;
    margin: 0;
    cursor: pointer;
    padding: 10px 30px;
    border-radius: 100px;
    font-weight: var(--mr_fontweight__semibold);
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
    text-transform: uppercase;
    transition: color .3s ease, background-color .3s ease, border-color .3s ease, opacity .3s ease;
    background-color: transparent !important;
    color: var(--mr_color__white) !important;
    border: 1px solid var(--mr_color__white) !important;
    white-space: normal;
}

.wishlist-modal .modal-footer .btn:not(:disabled):active,
.wishlist-modal .modal-footer .btn:not(:disabled):hover,
.wishlist-modal .modal-footer .btn:not(:disabled):focus,
#blockcart-modal .cart-content .cart-content-btn .btn:not(:disabled):active,
#blockcart-modal .cart-content .cart-content-btn .btn:not(:disabled):hover,
#blockcart-modal .cart-content .cart-content-btn .btn:not(:disabled):focus {
    background-color: var(--mr_color__primary) !important;
    color: var(--mr_color__white) !important;
    border: 1px solid var(--mr_color__primary) !important;
}

.wishlist-modal .modal-footer .btnn:disabled:hover,
.wishlist-modal .modal-footer .btn:disabled:focus,
.wishlist-modal .modal-footer .btntn:disabled:active,
#blockcart-modal .cart-content .cart-content-btn .btn:disabled:hover,
#blockcart-modal .cart-content .cart-content-btn .btn:disabled:focus,
#blockcart-modal .cart-content .cart-content-btn .btn:disabled:active {
    cursor: no-drop;
    opacity: 0.5;
}

.wishlist-modal .modal-footer .btn:first-child {
    float: left;
}

.wishlist-modal .modal-footer .btn:last-child {
    float: right;
}

#blockcart-modal .cart-content .cart-content-btn a {
    grid-template-columns: max-content max-content;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: 100%;
    padding: 9px 10px;
    cursor: pointer;
    border: 1px solid var(--mr_color__pink);
    border-radius: 0;
    background-color: var(--mr_color__pink);
    color: var(--mr_color__white);
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__light);
    transition: color .3s ease, background-color .3s ease;
    outline: 0 !important;
    display: grid;
}

#blockcart-modal .cart-content .cart-content-btn a:hover {
    background-color: var(--mr_color__white);
    color: var(--mr_color__pink);
}

#blockcart-modal .cart-content p.product-total,
#blockcart-modal .cart-content .page-content.page-cms ul.product-total,
.page-content.page-cms #blockcart-modal .cart-content ul.product-total,
#blockcart-modal .modal-header,
#blockcart-modal .modal-body {
    background-color: transparent;
}

#blockcart-modal .cart-content {
    height: 100%;
    display: grid;
    padding: 0;
}

.divide-right .mr_aspect_ratio {
    width: max(150px, 20rem);
}

#blockcart-modal {
    padding: 0 !important;
}

#blockcart-modal .modal-dialog {
    width: var(--global-width);
    max-width: 100%;
    margin: 5rem auto;
}

#blockcart-modal .modal-title i.material-icons {
    color: var(--mr_color__white);
}

.wishlist-list-item p {
    font-weight: var(--mr_fontweight__medium) !important;
    font-size: var(--mr_fontsize__small) !important;
    color: var(--mr_color__primary);
}

.wishlist-add-to-new i[data-v-cab62222],
.wishlist-add-to-new[data-v-cab62222]:not([href]):not([tabindex]) {
    color: var(--mr_color__white) !important;
}
#product .wishlist-add-to-new,
#product .wishlist-add-to-new i {
    color: #fff !important;
    font-size: 16px;
}

#blockcart-modal .modal-title {
    color: var(--mr_color__white);
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__semibold);
    line-height: 1.25;
}

.wishlist-modal .modal-header {
    padding: 25px 30px 15px;
}

.wishlist-products-container .sort-by-row .sort-by {
    display: none;
}

.wishlist-products-container-header {
    display: grid !important;
    gap: 5px;
    width: var(--global-width);
    max-width: 100%;
    margin: 0 auto 30px;
}

.wishlist-products-list {
    padding: 0 !important;
}

@media (max-width: 991px) {
    .wishlist-products-list {
        justify-content: space-around;
    }
}

@media (min-width: 992px) {
    .wishlist-products-list {
        margin: -30px -25px !important;
    }
}

.wishlist-list {
    overflow: unset !important;
}

#blockcart-modal .modal-content .divide-right .row {
    display: flex;
    justify-content: space-between;
}

#blockcart-modal .modal-content .divide-right .row div:first-child {
    position: relative;
    padding: 0;
    width: 300px !important;
    max-width: 100%;
}

#blockcart-modal .modal-content .divide-right .row div:first-child::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

#blockcart-modal .modal-content .divide-right .row div:first-child>* {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover;
    object-position: 50%;
}


/* cart */

.product-line-grid * {
    padding: 0;
}

#cart .featured-products {
    clear: both;
}

.product-line-grid .product-line-grid-body .product-line-info .label {
    color: var(--mr_color__primary);
    line-height: 1.25;
    font-size: var(--mr_fontsize__normal);
    font-weight: var(--mr_fontweight__bold);
}

.product-line-grid .product-line-grid-body .product-price {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: baseline;
}

.card .no-items,
.mr_cart_continue,
.product-line-grid .product-line-grid-body .product-discount .regular-price {
    font-weight: var(--mr_fontweight__regular);
    line-height: 1.25;
    font-size: var(--mr_fontsize__small);
    color: var(--mr_color__primary);
}

.product-line-grid .product-line-grid-body .product-discount .regular-price {
    font-size: var(--mr_fontsize__small);
    color: var(--mr_color__pacificblue);
}

.product-line-grid .product-line-grid-body .has-discount .discount {
    padding: 2px 5px;
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
    font-weight: var(--mr_fontweight__semibold);
    color: var(--mr_color__white);
    background: var(--mr_color__pacificblue);
}

.product-line-grid .product-line-grid-body .current-price .price {
    font-weight: var(--mr_fontweight__bold);
    line-height: 1.25;
    font-size: var(--mr_fontsize__normal);
    color: var(--mr_color__pacificblue);
    padding-right: 7px;
}

.bootstrap-touchspin .input-group-btn-vertical {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bootstrap-touchspin .input-group-btn-vertical .btn {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 200px;
    z-index: 2;
    bottom: calc(50% + 1px);
    transform: translateY(50%);
    background-color: transparent;
    border: 0;
}

.bootstrap-touchspin .input-group-btn-vertical .btn i {
    display: none;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
    left: 5px;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26.542' height='26.542' viewBox='0 0 26.542 26.542'%3E%3Cg id='Icon_feather-minus-circle' data-name='Icon feather-minus-circle' transform='translate(0.5 0.5)'%3E%3Cpath id='Path_132' data-name='Path 132' d='M28.542,15.771A12.771,12.771,0,1,1,15.771,3,12.771,12.771,0,0,1,28.542,15.771Z' transform='translate(-3 -3)' fill='%23fff' stroke='%23273370' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3Cpath id='Path_133' data-name='Path 133' d='M12,18H22.217' transform='translate(-4.337 -5.229)' fill='none' stroke='%23273370' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
    right: 5px;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26.542' height='26.542' viewBox='0 0 26.542 26.542'%3E%3Cg id='Icon_feather-plus-circle' data-name='Icon feather-plus-circle' transform='translate(0.5 0.5)'%3E%3Cpath id='Path_134' data-name='Path 134' d='M28.542,15.771A12.771,12.771,0,1,1,15.771,3,12.771,12.771,0,0,1,28.542,15.771Z' transform='translate(-3 -3)' fill='%23fff' stroke='%23273370' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3Cpath id='Path_135' data-name='Path 135' d='M18,12V22.217' transform='translate(-5.229 -4.337)' fill='none' stroke='%23273370' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3Cpath id='Path_136' data-name='Path 136' d='M12,18H22.217' transform='translate(-4.337 -5.229)' fill='none' stroke='%23273370' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
}

.bootstrap-touchspin .input-group-btn-vertical .btn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity .3s ease;
}

.bootstrap-touchspin .input-group-btn-vertical .btn:hover::after {
    opacity: 0.9;
}

.input-group .form-control:not(:first-child):not(:last-child) {
    background-color: var(--mr_color__pacificblue);
    border: 1px solid var(--mr_color__primary);
    border-radius: 200px;
    line-height: 1.25;
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__semibold);
    color: var(--mr_color__white);
    text-align: center;
    width: 120px;
    padding: 18px 35px;
    margin: 0;
    z-index: 1;
}

.mr_cart_quantity,
.product-line-grid .product-line-grid-body>* {
    padding-left: 15px;
}

.cart-items .cart-item {
    border-bottom: 1px solid var(--mr_color__primary);
}

.cart-items .cart-item:last-child {
    border-bottom: none;
}

.mr_cart_continue:hover {
    color: inherit !important;
    text-decoration: underline;
}

.cart-grid-body,
.cart-grid-right {
    padding: 5px;
    background-color: var(--mr_color__white);
    box-shadow: 0px 3px 6px #ecf1fd;
    border-radius: 13px;
}

.leaflet-popup-content .point-wrapper p {
    color: var(--mr_color__white);
}

@media (min-width: 992px) {
    .cart-grid {
        display: grid;
        gap: 15px;
        grid-template-columns: 65% 33%;
        justify-content: space-between;
    }
    .cart-grid-body,
    .cart-grid-right {
        width: 100%;
        height: max-content;
    }
}

.cart-grid-body a.label:hover {
    text-decoration: underline;
}

.mr_cart-delete {
    margin-top: 10px;
    width: 100%;
}

.material-icons {
    color: var(--mr_color__primary);
    margin-bottom: 5px;
}

.cart-grid-right .card .cart-detailed-totals *,
.card-block.cart-summary-totals .cart-summary-line.cart-total .label,
.card-block.cart-summary-totals .cart-summary-line.cart-total .value {
    line-height: 1.25;
    font-size: var(--mr_fontsize__small);
}

.card-block.checkout {
    padding: 15px 0 0;
}

.card-block.checkout .btn {
    border: 1px solid var(--mr_color__pacificblue) !important;
    border-radius: 13px;
    background-color: var(--mr_color__pacificblue);
    color: var(--mr_color__white);
    line-height: 1.25;
    font-size: var(--mr_fontsize__normal);
    font-weight: var(--mr_fontweight__light);
    transition: color .3s ease, background-color .3s ease;
    outline: 0 !important;
    padding: 15px;
}

.card,
.card-block {
    background-color: transparent;
}

.card-block.checkout .btn:focus,
.card-block.checkout .btn:active,
.card-block.checkout .btn:hover {
    background-color: var(--mr_color__white) !important;
    color: var(--mr_color__pacificblue) !important;
}

.block-promo .promo-input {
    height: auto;
    margin-right: -0.24rem;
    color: var(--mr_color__primary);
    text-indent: 0;
    border: var(--mr_color__pacificblue) 1px solid;
    padding: 1.2rem;
    border-radius: 0;
}

.block-promo .promo-input+button {
    border-width: 2px !important;
    margin-top: 0px;
}

.block-promo .promo-code form {
    display: flex;
    justify-content: center;
}

.block-promo .promo-code .alert-danger::after {
    margin-left: 10px;
}

.block-promo .promo-input {
    border: var(--mr_color__primary) 2px solid;
    border-radius: 200px 0 0 200px;
}

#cart .block-promo .promo-input {
    width: 100%;
}

#cart .card-block.checkout {
    padding-top: 0;
}

#cart #promo-code {
    display: block !important;
}

#cart .promo-code-button,
#cart .promo-code-button {
    display: none !important;
}

#cart .card-block.checkout .btn {
    border-radius: 200px;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(100% - 20px);
}

.promo-code .btn {
    border-radius: 0 200px 200px 0;
}

.cart-grid-right .promo-discounts .cart-summary-line .label .code {
    color: var(--mr_color__primary);
}

.cart-grid-right .promo-discounts .cart-summary-line .label .code:hover {
    text-decoration: underline;
}

.block-promo .promo-name .cart-summary-line span {
    color: var(--mr_color__primary);
}


/* my account */

.page-authentication #content {
    width: var(--global-width);
    max-width: 100%;
    margin: 50px auto;
}

.mr_authentication__bottom {
    display: grid;
    grid-template-columns: minmax(1px, 100%) max-content;
}

#password #content .form-control,
#checkout #content .form-control,
.page-customer-account #content .form-control,
#order-confirmation .form-control {
    color: var(--mr_color__primary) !important;
    border: 1px solid rgba(202, 29, 91, 0.1);
    outline: 0;
    background-color: var(--mr_color__white);
    font-weight: var(--mr_fontweight__light);
    line-height: 1.25;
    font-size: var(--mr_fontsize__normal);
    color: var(--mr_color__primary);
    min-height: 50px;
    padding: 1rem 2rem;
    background-color: var(--mr_color__white);
    box-shadow: 0px 3px 6px #ecf1fd;
    border-radius: 200px;
    -webkit-appearance: none;
}

#checkout #content .form-control:focus,
.page-customer-account #content .form-control:focus,
#order-confirmation .form-control:focus {
    border: 1px solid var(--mr_color__pacificblue);
}

.input-group .input-group-btn>.btn[data-action="show-password"] {
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
    color: var(--mr_color__white);
    background-color: var(--mr_color__primary);
    font-weight: var(--mr_fontweight__regular);
    border: 1px solid rgba(202, 29, 91, 0.1);
    transition: background-color .3s ease, color .3s ease;
    height: 100%;
    border-left: 0;
    outline: 0;
    box-shadow: 0px 3px 6px #ecf1fd;
}
#address form .form-control-label {
    word-wrap: break-word;
}
#address form .form-control-label,
.page-authentication #content form .form-control-label {
    font-weight: var(--mr_fontweight__medium);
    line-height: 1.25;
    font-size: var(--mr_fontsize__small);
    color: var(--mr_color__primary);
}

.page-authentication #content .input-group {
    display: grid;
    grid-template-columns: minmax(1px, 100%) max-content;
}

.page-authentication #content .input-group {
    border-color: var(--mr_color__pacificblue);
    outline: 0;
}

.page-authentication #content .input-group .form-control {
    border-radius: 200px 0 0 200px;
}

.input-group .input-group-btn>.btn[data-action="show-password"] {
    min-width: 100px;
    border-radius: 0 200px 200px 0;
}

.input-group .input-group-btn>.btn[data-action="show-password"]:hover {
    color: var(--mr_color__primary);
    background-color: var(--mr_color__white);
    border: 1px solid var(--mr_color__primary);
}

.page-customer-account #content .forgot-password a,
.page-customer-account #content .no-account a {
    font-weight: var(--mr_fontweight__medium);
    line-height: 1.25;
    font-size: var(--mr_fontsize__small);
    color: var(--mr_color__primary);
    transition: color .3s ease;
}

.page-customer-account #content .forgot-password a:hover,
.page-customer-account #content .no-account a:hover {
    text-decoration: underline;
}


/* register */

.form-control-comment {
    line-height: 1.25;
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__light);
    color: var(--mr_color__primary);
    display: block;
}

.page-authentication #content form .form-group .custom-checkbox label {
    font-weight: var(--mr_fontweight__regular);
    line-height: 1.25;
    font-size: var(--mr_fontsize__small);
    color: var(--mr_color__primary);
    padding-left: 25px;
}

.custom-radio {
    border-color: var(--mr_color__pacificblue);
}

.custom-radio input[type="radio"]:checked+span {
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    background-color: var(--mr_color__pacificblue);
}

#login-form .form-footer {
    display: flex;
    justify-content: center;
}

#authentication .radio-inline {
    color: var(--mr_color__primary);
    line-height: 1.25;
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__regular);
}

.mr_register__footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#main .page-footer a,
.page-footer .account-link i,
.page-footer .account-link span,
#main .page-footer {
    color: var(--mr_color__primary);
    line-height: 1.25;
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__regular);
    transition: color .3s ease;
}

#main .page-footer div {
    text-align: center;
}

#best-sales #wrapper h1,
#category .page-header h1 {
    position: relative;
    width: max-content;
    text-align: center;
    color: var(--mr_color__primary);
    line-height: 1.25;
    font-size: var(--mr_fontsize__title);
    font-weight: var(--mr_fontweight__bold);
    line-height: 4.7rem;
    margin: 2.5rem auto 2.5rem;
    text-transform: capitalize;
}
#category .page-header h1 {
    width: 100%;
    line-height: 1.3;
}

#category #category-description p {
    max-width: 70%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


.page-footer {
    width: var(--global-width);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.page-footer .account-link:hover span,
#main .page-footer a:hover {
    text-decoration: underline;
}

#best-sales #main h1,
#main .page-header h1 {
    position: relative;
    width: max-content;
    text-align: center;
    color: var(--mr_color__primary);
    line-height: 1.25;
    font-size: var(--mr_fontsize__title);
    font-weight: var(--mr_fontweight__bold);
    line-height: 4.7rem;
    margin: 2.5rem auto 2.5rem !important;
    text-transform: capitalize;
    max-width: 100%;
}

.page-my-account #content .links a span.link-item {
    border: 1px solid var(--mr_color__pacificblue) !important;
    border-radius: 13px;
    background-color: var(--mr_color__pacificblue);
    color: var(--mr_color__white);
    line-height: 1.25;
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__light);
    transition: color .3s ease, background-color .3s ease;
    outline: 0 !important;
    display: grid;
    justify-items: center;
    gap: 3px;
}

.page-my-account #content .links a span.link-item:hover {
    background-color: var(--mr_color__white) !important;
    color: var(--mr_color__pacificblue) !important;
}

.page-my-account #content .links a i {
    color: var(--mr_color__white);
    transition: color .3s ease;
}

.page-my-account #content .links a:hover i {
    color: var(--mr_color__pacificblue);
}

.page-my-account #content .links #wishlist-link {
    display: none;
}

.cart-grid-body a.label,
.send-renew-password-link {
    text-align: center;
    line-height: 1.25;
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__regular);
    color: var(--mr_color__primary);
    margin-bottom: 10px;
}

.forgotten-password .form-fields label.required {
    line-height: 1.25;
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__medium);
    color: var(--mr_color__primary);
    align-self: center;
}

#main .page-content h6 {
    line-height: 1.25;
    line-height: 1.25;
    color: var(--mr_color__primary);
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__regular);
}

#order-products .line-products td:first-of-type,
#order-products .line-shipping td:first-of-type,
#order-products .line-total td:first-of-type {
    background-color: #eee !important;
}

.table-bordered,
.table-bordered th,
.table-bordered td {
    border-color: var(--mr_color__pacificblue) !important;
    background-color: var(--mr_color__white) !important;
    line-height: 1.25;
    font-size: var(--mr_fontsize__small);
    color: var(--mr_color__primary);
    text-align: center !important;
}

.table-bordered .order-actions {
    display: flex;
    border: 0;
    flex-wrap: wrap;
    justify-content: space-between;
}

.page-order-detail .box {
    background: transparent;
}

.table-bordered thead th,
.table-bordered thead td {
    border-bottom-width: 1px;
}

.table-bordered tr:not(:last-of-type) .order-actions:first-child {
    border-top: 1px solid var(--mr_color__pacificblue);
}

.table-bordered tr:not(:last-of-type) .order-actions {
    border-bottom: 1px solid var(--mr_color__pacificblue);
}

.table-bordered .order-actions a {
    color: var(--mr_color__primary);
    font-weight: var(--mr_fontweight__medium);
}

.table-bordered .order-actions a:hover {
    text-decoration: underline;
}

body:not(#cart) .input-group {
    display: grid;
    grid-template-columns: minmax(1px, 100%) max-content;
    border-radius: 200px;
}

body:not(#cart) .input-group #field-new_password,
body:not(#cart) .input-group #field-password {
    border-radius: 200px 0 0 200px;
}

#history .orders .order a h3,
#history .orders .order *:not(i) {
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
    color: var(--mr_color__primary);
}

.orders {
    display: grid;
    gap: 20px;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

#history .orders .order {
    display: grid;
    border: 1px solid var(--mr_color__pacificblue) !important;
}

#order-detail #order-infos .box:first-child * {
    padding: 0;
}

.page-order-detail .box {
    margin-bottom: 4rem;
}

.order-item,
.order-message-form .form-fields {
    display: grid;
    margin-top: 20px;
}

.order-message-form .form-group {
    display: grid;
    grid-template-columns: max-content minmax(1px, 100%);
    align-items: center;
}

select.form-control:not([size]):not([multiple]) {
    height: max(30px, 5rem);
    cursor: pointer;
    outline: 0;
    border-color: var(--mr_color__pacificblue);
    background-color: var(--mr_color__white);
    border-radius: 13px;
}

.order-message-form .form-group * {
    padding: 0;
}

.order-message-form .form-group:first-child label {
    padding-right: 15px;
}

.order-message-form .form-group:nth-child(2) .col-md-9 {
    width: 100% !important;
}

.order-message-form .form-group .form-control {
    border-color: var(--mr_color__pacificblue);
    background-color: var(--mr_color__white);
    outline: 0;
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
    height: max(70px, 10rem);
    padding: 5px;
}

.order-message-form .form-group textarea.form-control {
    border-radius: 13px;
    min-height: 150px;
}

.box {
    display: grid;
}

#identity .mr_register__footer {
    justify-content: flex-end;
}

#identity .mr_register__footer p {
    display: none;
}

#module-psgdpr-gdpr #main .page-footer,
#module-psgdpr-gdpr #main .page-footer,
#view #main .wishlist-footer-links,
#module-blockwishlist-lists #main .wishlist-footer-links,
#password #main .page-footer,
#authentication #main .page-footer,
#identity #main .page-footer,
#order-slip #main .page-footer,
#addresses #main .page-footer,
#order-detail #main .page-footer,
#guest-tracking #main .page-footer,
#history #main .page-footer {
    display: flex;
    justify-content: space-between;
}

.cart-grid-body a.label:not(.mr_btn):not(.btn),
#view #wrapper a:not(.mr_btn):not(.btn),
#module-blockwishlist-lists #wrapper a:not(.mr_btn):not(.btn),
#password #wrapper a:not(.mr_btn):not(.btn),
#order-confirmation #wrapper a:not(.mr_btn):not(.btn),
#authentication #wrapper a:not(.mr_btn):not(.btn),
#module-psgdpr-gdpr #wrapper a:not(.mr_btn):not(.btn),
#identity #wrapper a:not(.mr_btn):not(.btn),
#addresses #wrapper a:not(.mr_btn):not(.btn),
#order-detail #wrapper a:not(.mr_btn):not(.btn),
#guest-tracking #wrapper a:not(.mr_btn):not(.btn) {
    color: var(--mr_color__primary);
    font-weight: var(--mr_fontweight__medium);
}

.cart-grid-body a.label:hover,
#view #wrapper .wishlist-footer-links a:hover,
#module-blockwishlist-lists #wrapper a:hover,
#password #wrapper a:hover,
#authentication #wrapper a:hover,
#module-psgdpr-gdpr #wrapper a:hover,
#identity #wrapper a:hover,
#addresses #wrapper a:hover,
#guest-tracking #wrapper a:hover,
#order-detail #wrapper a:hover {
    color: var(--mr_color__primary);
    text-decoration: underline;
}

.wishlist-products-container-header,
#module-blockwishlist-lists>.card-title,
#order-items .h3,
#order-details>.card-title,
#order-items .h3,
#order-confirmation #wrapper #order-items table tr td,
#order-confirmation #wrapper section:not(#content-hook-order-confirmation-footer) #wrapper #content-wrapper *,
#module-psgdpr-gdpr *,
#customer-form *,
#addresses *,
#password *,
#order-detail *,
#guest-tracking *,
#order-slip * {
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
}

#addresses .address {
    background-color: var(--mr_color__white);
    box-shadow: 0px 3px 6px #ecf1fd;
    border-radius: 13px;
}

#password .center-email-fields {
    align-items: center;
    gap: 10px;
}

#guest-tracking #order-infos .col-xs-9 {
    padding-left: 0 !important;
}

.custom-checkbox label {
    padding-left: 25px;
    position: relative;
}

.custom-checkbox label .material-icons {
    display: none !important;
}

#addresses #main .page-footer {
    padding-left: 15px;
    padding-right: 15px;
}

.page-addresses .addresses-footer {
    margin: 0 15px;
}

.custom-checkbox input[type="checkbox"]+span {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

#use_same_address+label::before,
.custom-checkbox input[type="checkbox"]+span::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid var(--mr_color__pacificblue);
    top: 0;
    left: 0;
}

#use_same_address+label::after,
.custom-checkbox input[type="checkbox"]+span::after {
    content: '';
    position: absolute;
    background-color: var(--mr_color__pacificblue);
    width: 14px;
    height: 14px;
    top: 3px;
    left: 3px;
    opacity: 0;
    transition: opacity .3s ease;
}

#use_same_address:checked+label::after,
.custom-checkbox input[type="checkbox"]:checked+span::after {
    opacity: 1;
}

#module-psgdpr-gdpr .psgdprinfo17 {
    background-color: var(--mr_color__white);
    color: var(--mr_color__primary);
    border: 1px solid var(--mr_color__pacificblue);
    border-radius: 13px;
}


/* checkout */

#checkout #wrapper *:not(h1) {
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
}

body#checkout section.checkout-step .step-title {
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
}

body#checkout section.checkout-step.-unreachable .step-title {
    opacity: 1;
}

body#checkout section.checkout-step .step-number {
    font-size: var(--mr_fontsize__medium);
    line-height: 1.25;
    color: var(--mr_color__white);
    background-color: var(--mr_color__pacificblue);
    border: 0;
}

body#checkout section.checkout-step.-reachable.-current .step-number {
    font-size: var(--mr_fontsize__medium);
    line-height: 1.25;
    color: var(--mr_color__pacificblue);
    background-color: var(--mr_color__white);
    border: 1px solid var(--mr_color__pacificblue);
}

#checkout #wrapper a {
    color: var(--mr_color__primary);
    transition: color .3s ease;
}

#checkout #wrapper .condition-label a {
    font-weight: var(--mr_fontweight__bold);
}

#checkout #wrapper a:hover {
    opacity: 0.7 !important;
}

#checkout #wrapper .condition-label {
    padding-top: 2px;
    margin-left: 5px;
}

#checkout #wrapper .condition-label a:hover {
    font-weight: var(--mr_fontweight__bold);
}

body#checkout section.checkout-step.-reachable.-complete h1 .step-edit,
body#checkout section.checkout-step .delete-address,
body#checkout section.checkout-step .edit-address {
    color: var(--mr_color__primary) !important;
}

body#checkout header:not(#header):not(#footer) section.checkout-step.-reachable.-complete h1 .step-edit:hover,
body#checkout section.checkout-step .delete-address:hover,
body#checkout section.checkout-step .edit-address:hover {
    text-decoration: underline;
}

body#checkout section.checkout-step .payment-options {
    font-weight: var(--mr_fontweight__medium) !important;
}

body#checkout section.checkout-step .payment-options .payment-option {
    margin: 1rem 0;
    min-height: 25px;
}

body#checkout section.checkout-step i {
    font-size: var(--mr_fontsize__medium) !important;
    line-height: 1.25;
}

body#checkout .custom-checkbox>label {
    padding-left: 25px;
    cursor: pointer;
}

body#checkout section.checkout-step #delivery-address .form-fields {
    display: grid;
}

body#checkout section.checkout-step .address-item {
    box-shadow: 0px 3px 6px #ecf1fd;
    background-color: var(--mr_color__white);
    font-weight: var(--mr_fontweight__medium);
    border-radius: 13px;
}

body#checkout section.checkout-step .address-item.selected {
    background-color: rgba(1, 163, 203, 0.03);
    border-color: var(--mr_color__pacificblue);
    border-width: 2px;
}

body#checkout section.checkout-step .address {
    border-color: var(--mr_color__pacificblue);
    font-weight: var(--mr_fontweight__medium);
    line-height: 1.3;
    margin-left: 25px;
}

body#checkout section.checkout-step .address-footer {
    padding: 1.3rem 1rem 1rem 1rem;
}

#use_same_address {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

body#checkout .condition-label label,
#use_same_address+label {
    padding-left: 10px;
    cursor: pointer;
}

body#checkout section.checkout-step .delivery-options .delivery-option {
    background-color: var(--mr_color__white);
    border: 1px solid var(--mr_color__pacificblue);
    border-radius: 13px;
    font-weight: var(--mr_fontweight__medium);
}

body#checkout section.checkout-step .delivery-options .delivery-option .col-sm-1 {
    width: 15px;
    padding-right: 0;
}
body#checkout section.checkout-step .delivery-options .delivery-option .row,
body#checkout section.checkout-step .delivery-options .delivery-option .col-xs-12 {
    padding-left: 0;
}

body#checkout section.checkout-step .delivery-options .delivery-option img {
    width: max(35px, 5rem);
}

body#checkout #gift_message textarea,
body#checkout #delivery textarea {
    border: 1px solid var(--mr_color__pacificblue);
    border-radius: 13px;
    outline: 0;
    padding: 1rem 2rem;
    min-height: 180px;
    width: 100%;
}

body#checkout section.checkout-step .content {
    padding-left: 0;
    padding-right: 0;
}

body#checkout #conditions-to-approve .custom-checkbox .material-icons {
    display: none;
}

body#checkout .cart-grid-right .card .cart-summary-subtotals-container * {
    line-height: 1.25;
    font-size: var(--mr_fontsize__small) !important;
}

.order-options #delivery label {
    font-weight: var(--mr_fontweight__medium);
}

.product-price {
    color: var(--mr_color__pacificblue);
    font-weight: var(--mr_fontweight__medium);
    font-size: var(--mr_fontsize__small);
}

.product-line-info .value {
    color: var(--mr_color__primary);
    font-weight: var(--mr_fontweight__medium);
    font-size: var(--mr_fontsize__small);
}

body#checkout #cart-summary-product-list img {
    width: 10rem;
}

#content-hook_order_confirmation {
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: transparent;
}

#order-confirmation #order-items td {
    padding: 12px 10px;
    border: 1px solid var(--mr_color__primary);
}

#order-items .order-line {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--mr_color__primary);
}

#order-items {
    border-right: none;
    margin-bottom: 30px;
}

#order-items .order-confirmation-table .order-line:last-of-type {
    border-bottom: none;
}

#order-confirmation #order-items,
#order-confirmation .order-confirmation-table {
    display: grid;
    padding: 0;
}

#order-confirmation #order-items .order-line * {
    padding: 0;
}

#order-confirmation #order-items .order-line .details {
    padding-left: 2rem;
}

#order-confirmation #order-items .order-line .details span {
    font-weight: var(--mr_fontweight__medium);
    line-height: 1.25;
    font-size: var(--mr_fontsize__normal);
}

#order-confirmation main #wrapper .h1 {
    line-height: 1.25;
    font-size: var(--mr_fontsize__medium);
}

#order-confirmation main #wrapper .h1+p {
    line-height: 1.25;
    font-size: var(--mr_fontsize__normal);
}

#order-confirmation main #wrapper .h1 .material-icons {
    line-height: 1.25;
    font-size: 25px;
}

#history .material-icons {
    height: 15px;
    margin-top: -10px;
    margin-bottom: 0;
}

#order-confirmation main #wrapper {
    margin-bottom: 5rem;
}

#order-confirmation #registration-form .h4 {
    line-height: 1.25;
    font-size: var(--mr_fontsize__medium);
    margin-top: 60px;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: left;
}

#order-confirmation #registration-form {
    width: 100%;
}

#order-confirmation #registration-form {
    max-width: 1200px;
}

@media (max-width: 767px) {
    #order-confirmation #content-wrapper .col-md-12 {
        padding-left: 0;
        padding-right: 0;
    }
    #order-confirmation #content-wrapper .card-block {
        padding: 0;
    }
    .page-order-detail .order-items .order-item {
        padding: 10px 0;
        border-bottom: 1px solid var(--mr_color__primary);
    }
    .page-order-detail .order-items .order-item:last-of-type {
        border-bottom: none;
    }
    .page-order-detail .order-totals {
        padding: 0;
    }
    .page-order-detail .order-totals .order-total {
        border: 1px solid var(--mr_color__pacificblue);
        border-bottom: none;
    }
    .page-order-detail .order-totals .order-total:last-of-type {
        border-bottom: 1px solid var(--mr_color__pacificblue);
    }
    .page-order-detail .order-totals .order-total>div:first-child {
        padding: 8px 15px;
        background-color: var(--mr_color__primary);
    }
    .page-order-detail .order-totals .order-total>div:last-child {
        padding: 8px 15px;
    }
}

.card-block {
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
    color: var(--mr_color__primary);
}

#order-confirmation #content-hook-order-confirmation-footer {
    margin-top: 35px;
}

.wishlist-list-item:hover .wishlist-list-item-title {
    color: inherit !important;
}

.wishlist-list-item.wishlist-list-item-default {
    border: 0;
}

#main .wishlist-container .card.page-content {
    box-shadow: none !important;
}

.wishlist-list-item-link {
    padding: 10px;
    border-radius: 13px;
    box-shadow: 0 0 6px #ecf1fd;
    background-color: var(--mr_color__white);
    color: var(--mr_color__primary);
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 10px;
}

.wishlist-list-item-link .wishlist-list-item-title {
    font-weight: var(--mr_fontweight__semibold) !important;
    padding: 0;
}

.products-sort-order .dropdown-menu,
.brands-sort .dropdown-menu,
.suppliers-sort .dropdown-menu {
    background: #F5F9FF;
}

.wishlist-list-item-right>button i {
    color: var(--mr_color__primary) !important;
}

.form-informations {
    padding: 5px 15px;
}

.form-informations-option,
.form-informations-subtitle,
.form-control-comment {
    font-size: var(--mr_fontsize__xsmall) !important;
}

.form-control-comment {
    margin-top: 5px;
    margin-bottom: 10px;
}

#footer {
    display: block !important;
}

body#checkout #footer {
    padding: 0;
}

#send-reset-link {
    min-height: calc(30px + 2rem);
}

body#checkout section.checkout-step .address-selector {
    gap: 5px;
}
@media (max-width: 767px) {
    body#checkout section.checkout-step .address-selector {
        position: relative;
        left: 0;
        top: 0;
        margin: 0;
        width: 100%;
    }
    body#checkout section.checkout-step .address-item,
    body#checkout section.checkout-step .address {
        width: 100%;
    }
    body#checkout section.checkout-step .address-item {
        flex-grow: unset;
    }
    #checkout-addresses-step .js-address-form p {
        margin-bottom: 10px;
    }
}
@media (max-width: 480px) {
    body#checkout section.checkout-step .address-selector {
        position: relative;
        left: 0;
        top: 0;
        margin: 0;
        flex-direction: column;
        width: 100%;
    }
    body#checkout section.checkout-step .address-item,
    body#checkout section.checkout-step .address {
        width: 100%;
    }
    .payment-option label {
        text-align: left;
    }
    #conotoxia-payment-methods {
        margin: 0 0 10px 0 !important;
    }
}
body#checkout section.checkout-step .add-address {
    margin-bottom: 1.25rem;
}

body#checkout section.checkout-step .delete-address,
body#checkout section.checkout-step .edit-address {
    margin: 0 1rem;
}

body#checkout .cancel-address {
    font-weight: var(--mr_fontweight__bold);
    margin: 12px;
}

.table-bordered {
    position: relative;
    width: calc(100% - 40px);
    margin: 30px auto;
}

.table-bordered::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background-color: var(--mr_color__white);
    box-shadow: 0 0 6px var(--mr_color__pacificblue);
    border-radius: 13px;
    z-index: -1;
}


/* Error 404 */

.section--mr_not-found {
    background: linear-gradient(90deg, rgba(27, 163, 204, 1) 0%, rgba(38, 50, 111, 1) 100%);
}

.mr_not-found {
    width: 100vw;
    height: 100vh;
    align-content: center;
    justify-items: center;
    gap: 2rem;
}

.mr_not-found--description {
    width: 270px;
    max-width: 100%;
    margin-bottom: 1.5rem;
}


/* FORUM PAGE */

.blogview .main_box .main_title,
.blogview .blog_title {
    background-color: transparent;
    border: none;
    text-align: center;
    font-size: var(--mr_fontsize__title);
    font-weight: var(--mr_fontweight__bold);
    line-height: 4.7rem;
    color: var(--mr_color__primary);
    margin-bottom: 1rem;
    position: relative;
    width: max-content;
    text-transform: capitalize;
    /* margin: 2.5rem auto 2.5rem; */
    margin: 2.5rem;
    max-width: 100%;
}

.blogview .form-control {
    border: 1px solid rgba(202, 29, 91, 0.1);
    outline: 0;
    background-color: var(--mr_color__white);
    font-weight: var(--mr_fontweight__light);
    line-height: 1.25;
    font-size: var(--mr_fontsize__normal);
    color: var(--mr_color__primary);
    min-height: 50px;
    padding: 1rem 2rem;
    box-shadow: 0px 3px 6px #ecf1fd;
    border-radius: 200px;
    -webkit-appearance: none;
}

.blogview label {
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
    color: #232323;
    margin: 0;
}

.blogview .twoColumn {
    max-width: 700px;
    margin: 0 auto;
}

.blogview .twoColumn dt {
    text-align: right;
    width: 25%;
}

.blogview .twoColumn dd {
    text-align: left;
    width: 75%;
}

.blogview .twoColumn dd,
.blogview input[type="text"] {
    margin: 0;
}

.blogview .main_box .ctrlUnit {
    display: flex;
    align-items: center;
}

.blogview input::placeholder,
.blogview textarea::placeholder {
    color: var(--mr_color__primary);
    font-weight: var(--mr_fontweight__regular);
    opacity: 1;
}

.mr_area-agreement {
    height: 200px;
    margin-bottom: 8px;
    background: #fff;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: scroll;
    border: 10px solid var(--mr_color__pacificblue);
    border-radius: 13px;
    outline: 0;
    padding: 1rem 2rem;
    min-height: 180px;
    width: 100%;
    outline-offset: -11px;
    outline: 1rem solid #fff;
    border-left-width: 1px;
    margin-bottom: 20px;
}

.blogview .mr_rules dl {
    display: flex;
    flex-direction: column;
}

.blogview .mr_rules dl label h4 {
    line-height: 1.25;
    color: #232323;
    font-weight: var(--mr_fontweight__semibold);
    font-size: var(--mr_fontsize__normal);
    margin-bottom: 10px;
}

.blogview .condition-label {
    padding-left: 1.625rem;
    margin-left: 5px;
    margin-top: 0.625rem;
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
    font-weight: var(--mr_fontweight__regular);
}

.blogview .mr_message-login {
    background-color: transparent;
    border: none;
    text-align: center;
    font-size: var(--mr_fontsize__title);
    font-weight: var(--mr_fontweight__regular);
    line-height: 4.7rem;
    color: var(--mr_color__primary);
    margin-bottom: 1rem;
    position: relative;
    width: max-content;
    text-transform: capitalize;
    margin: 2.5rem auto 2.5rem;
    max-width: 100%;
}

.blogview .mr_message-login a {
    font-weight: var(--mr_fontweight__bold);
    color: var(--mr_color__primary);
}

.blogview .mr_message-login a:hover,
.blogview .mr_message-login a:focus,
.blogview .mr_message-login a:active {
    color: var(--mr_color__primary);
    text-decoration: underline;
}

.blogview .alertFooter {
    margin: 0 auto;
    width: max-content;
    display: block;
    text-align: center;
    padding: 2rem 3rem;
    box-shadow: 0px 3px 6px #ecf1fd;
    background-color: #fff;
    border-radius: 13px;
    color: var(--mr_color__primary);
}

.helpContent {
    padding: 2rem 3rem;
    box-shadow: 0px 3px 6px #ecf1fd;
    background-color: #fff;
    border-radius: 13px;
    border: none;
    color: var(--mr_color__primary);
}

.blogview .alertFooter a {
    font-size: var(--mr_fontsize__normal);
    line-height: 1.25;
    font-weight: var(--mr_fontweight__regular);
    color: var(--mr_color__primary);
    display: block;
}

.blogview .alertFooter a:hover,
.blogview .alertFooter a:focus,
.blogview .alertFooter a:active {
    text-decoration: underline;
    color: var(--mr_color__primary);
}

.post_loop {
    border: none;
}

.post_loop .post_header {
    padding: 0.7rem 1rem;
    background-color: var(--mr_color__primary);
    color: var(--mr_color__white);
    border: none;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.post_loop .post_header .post_title a,
.post_loop .post_header .post_title {
    color: var(--mr_color__white);
    font-weight: 500;
    font-size: 16px;
}
.post_loop .post_header .post_title a:hover {
    text-decoration: underline;
}
.post_loop .post_header .post_title a:after {
    content: '»';
    font-size: 18px;
}

.nodeList .categoryForum {
    background-color: var(--mr_color__white);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    margin-top: 9px;
}

.nodeInfo .nodeText .nodeTitle a {
    color: var(--mr_color__primary);
    font-weight: var(--mr_fontweight__bold);
}

.nodeInfo .nodeText .nodeTitle a:hover {
    color: var(--mr_color__primary);
    text-decoration: underline;
}

.nodeLastPost {
    background: var(--mr_color__pacificblue);
    /* border: none; */
}

@media (min-width: 611px) {
    .nodeList .forumNodeInfo .nodeLastPost {
        display: flex;
        align-items: center;
    }
}

.blogview .muted {
    color: var(--mr_color__primary);
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
    font-weight: var(--mr_fontweight__regular);
}

.nodeList .forumNodeInfo .muted {
    color: var(--mr_color__white);
}

#kb_submit_date_filter,
#report_box_form button.btn-primary,
#add_attachment.btn-primary {
    color: var(--mr_color__white) !important;
    background: var(--mr_color__pacificblue) !important;
    border-color: var(--mr_color__pacificblue) !important;
}

#kb_submit_date_filter:hover,
#kb_submit_date_filter:active,
#kb_submit_date_filter:focus,
#report_box_form button.btn-primary:hover,
#report_box_form button.btn-primary:active,
#report_box_form button.btn-primary:focus,
#add_attachment.btn-primary:hover,
#add_attachment.btn-primary:active,
#add_attachment.btn-primary:focus {
    color: var(--mr_color__pacificblue) !important;
    background: var(--mr_color__white) !important;
    border-color: var(--mr_color__pacificblue) !important;
}

.xenForm .ctrlUnit .hint {
    margin-top: 5px;
}

.alert-success a {
    color: var(--mr_color__primary);
    font-weight: var(--mr_fontweight__semibold);
}

.alert-success a:hover {
    color: var(--mr_color__primary);
    text-decoration: underline;
}

.discussionList .sectionHeaders {
    padding: 1rem;
    background: var(--mr_color__primary);
    color: var(--mr_color__white);
    border: none;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    color: var(--mr_color__white);
    font-weight: var(--mr_fontweight__regular);
    font-size: var(--mr_fontsize__small);
}

.nodeList .forumNodeInfo {
    border-bottom: none;
}

.discussionList .sectionHeaders a {
    color: var(--mr_color__white);
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
}

.discussionList .sectionHeaders a.title {
    font-weight: var(--mr_fontweight__bold);
}

.discussionList .stats {
    width: 210px;
}

.discussionList .lastPost {
    width: 130px;
}

.discussionList .sectionHeaders a span {
    padding: 0 10px;
}

.discussionListItem {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    margin-top: 9px;
    border: none;
    padding: 7px 5px;
}

.discussionListItem>div:not(:last-of-type) {
    border-right: 1px solid var(--mr_color__primary);
}

.discussionListItem .posterAvatar .avatar {
    padding: 10px
}

.discussionListItem .title a {
    font-weight: var(--mr_fontweight__bold);
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
    color: var(--mr_color__primary);
}

.discussionListItem .stats .major {
    font-size: var(--mr_fontsize__xsmall);
}

.discussionListItem .title a:hover {
    text-decoration: underline;
    color: var(--mr_color__primary);
}

.message .messageMeta .control {
    padding: 3px 8px;
    color: var(--mr_color__white);
    background: var(--mr_color__pacificblue);
    font-weight: var(--mr_fontweight__semibold);
    border: 1px solid var(--mr_color__pacificblue);
    border-radius: 50px;
    display: flex;
    align-items: center;
    align-content: center;
    transition: color .3s ease, background-color .3s ease, border-color .3s ease;
}

.message .messageMeta .control:hover,
.message .messageMeta .control:focus,
.message .messageMeta .control:active {
    color: var(--mr_color__pacificblue);
    background: var(--mr_color__white);
    border: 1px solid var(--mr_color__pacificblue);
}

.message .messageMeta .control.delete {
    border: 1px solid var(--mr_color__red);
    background-color: var(--mr_color__red);
    font-weight: var(--mr_fontweight__semibold);
}

.message .messageMeta .control.delete:hover,
.message .messageMeta .control.delete:focus,
.message .messageMeta .control.delete:active {
    border: 1px solid var(--mr_color__red);
    color: var(--mr_color__red);
    background: var(--mr_color__white);
}

.message .messageMeta .control.edit {
    border: 1px solid #6EBE45;
    background-color: #6EBE45;
    font-weight: var(--mr_fontweight__semibold);
}

.message .messageMeta .control.edit:hover,
.message .messageMeta .control.edit:focus,
.message .messageMeta .control.edit:active {
    border: 1px solid #6EBE45;
    color: #6EBE45;
    background: var(--mr_color__white);
}

.message .messageMeta .control.report-topic {
    border: 1px solid var(--mr_color__pacificblue);
    background-color: var(--mr_color__pacificblue);
    font-weight: var(--mr_fontweight__semibold);
}

.message .messageMeta .control.report-topic:hover,
.message .messageMeta .control.report-topic:focus,
.message .messageMeta .control.report-topic:active {
    border: 1px solid var(--mr_color__pacificblue);
    color: var(--mr_color__pacificblue);
    background: var(--mr_color__white);
    font-weight: var(--mr_fontweight__semibold);
}

.blogview .faint a {
    padding: 4px 8px;
    color: var(--mr_color__white);
    background: var(--mr_color__pacificblue);
    border: 1px solid var(--mr_color__pacificblue);
    border-radius: 50px;
}

.blogview .muted a {
    font-weight: var(--mr_fontweight__medium);
    color: var(--mr_color__primary);
}

.blogview .faint,
.blogview a.faint {
    font-weight: var(--mr_fontweight__regular);
    color: var(--mr_color__primary);
}

.blogview .faint:hover,
.blogview a.faint:hover {
    color: var(--mr_color__primary);
}

.blogview .faint a:hover {
    color: var(--mr_color__pacificblue);
    background: var(--mr_color__white);
    border: 1px solid var(--mr_color__pacificblue);
}

.blogview .faint a.EditControl {
    border: 1px solid #6EBE45;
    background-color: #6EBE45;
}

.blogview .faint a.EditControl:hover,
.blogview .faint a.EditControl:focus,
.blogview .faint a.EditControl:active {
    border: 1px solid #6EBE45;
    color: #6EBE45;
    background: var(--mr_color__white);
}

.blogview .faint a.deleteTopic {
    border: 1px solid var(--mr_color__red);
    background-color: var(--mr_color__red);
}

.blogview .faint a.deleteTopic:hover,
.blogview .faint a.deleteTopic:focus,
.blogview .faint a.deleteTopic:active {
    border: 1px solid var(--mr_color__red);
    color: var(--mr_color__red);
    background: var(--mr_color__white);
}

.pairsJustified dt {
    color: var(--mr_color__primary);
}

.notif,
.btn-facebook,
.btn-twitter {
    padding: 4px 8px;
    border: none;
    color: var(--mr_color__white) !important;
    background: var(--mr_color__pacificblue) !important;
    border: 1px solid var(--mr_color__pacificblue);
    border-radius: 50px;
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__semibold);
}

.notif:focus,
.notif:hover,
.notif:active,
.btn-facebook:hover,
.btn-facebook:focus,
.btn-facebook:active,
.btn-twitter:hover,
.btn-twitter:focus,
.btn-twitter:active {
    padding: 4px 8px;
    border: none;
    color: var(--mr_color__pacificblue) !important;
    background: var(--mr_color__white) !important;
    border: 1px solid var(--mr_color__pacificblue);
    border-radius: 50px;
}

.avatar img,
.avatar .img,
.avatarCropper {
    border-radius: 18px;
    width: 60px;
    height: 60px;
}

.messageUserBlock div.avatarHolder {
    background: var(--mr_color__white);
    border-radius: 18px;
}

.discussionList .posterAvatar {
    width: 56px;
}

.messageUserBlock {
    background: none;
    border: none;
}

.messageUserBlock h5.userText {
    font-weight: var(--mr_fontweight__regular);
    font-size: var(--mr_fontsize__xsmall);
    line-height: 1.25;
    color: var(--mr_color__primary);
}

.messageUserBlock a.username {
    font-weight: var(--mr_fontweight__bold);
    font-size: var(--mr_fontsize__xsmall);
    line-height: 1.25;
    color: var(--mr_color__primary);
}

.messageList .message {
    border-top: 2px solid var(--mr_color__linkwater);
}

.discussionListItem .posterAvatar,
.discussionListItem .stats {
    background: transparent;
}

.discussionListItem .stats dl {
    border-left: none;
    border-right: none;
}

.blogview label {
    margin-bottom: 10px;
    margin-left: 20px;
}

.bbCodeBlock {
    border-radius: 0;
    border: none;
    overflow: visible;
}

.message .messageContent {
    overflow: visible;
}

.bbCodeBlock .attribution {
    padding: 0.5rem 1rem;
    background: var(--mr_color__primary);
    color: var(--mr_color__white);
    border: none;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 0;
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__semibold);
}

.bbCodeBlock .quoteContainer {
    background: var(--mr_color__white);
    font-size: var(--mr_fontsize__xsmall);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    margin-top: 5px;
    border-radius: 0;
    border: none;
    padding: 0.5rem 1rem;
}

.blogview .post_tags {
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__bold);
}

.txtgray {
    background: #ececec;
}

.notif {
    font-size: var(--mr_fontsize__xsmall);
    color: var(--mr_color__primary);
}

.secondaryContent {
    padding: 0;
    background: none;
    border: none;
}

#wrapper .sidebar .secondaryContent h3 {
    padding: 1.5rem;
    background-color: var(--mr_color__primary);
    color: var(--mr_color__white);
    border: none;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.form-search input {
    padding: 5px 0;
    background: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--mr_color__primary) !important;
    font-size: var(--mr_fontsize__small);
    color: var(--mr_color__primary);
    font-weight: var(--mr_fontweight__regular);
    max-width: 100%;
    outline: 0 !important;
}

.form-search input::placeholder {
    color: var(--mr_color__primary);
}

.blogview .main_box .main_rcolumn {
    background: var(--mr_color__white);
    font-size: var(--mr_fontsize__small);
    border: none;
    box-shadow: 0px 3px 6px #ecf1fd;
    border-radius: 13px;
    padding: 2rem;
}

.membersSetting dt {
    width: 63%;
    text-align: left;
    margin-right: 30px;
}

.membersSetting dt label {
    text-align: left;
    color: var(--mr_color__primary);
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__bold);
}

.membersSetting dd {
    width: calc(65% - 30px);
    text-align: left;
}

@media (max-width: 1199px) {
    #products .products,
    .featured-products .products,
    .product-accessories .products {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

#module-xenforum-home #left-column {
    background-color: var(--mr_color__white);
    padding: 0;
    padding-bottom: 10px;
    margin-top: 9.7rem;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 16%);
}

#left-column .block-my-account {
    display: none;
}

#module-xenforum-home #left-column .secondaryContent>* {
    padding: 10px 20px;
}


/* #xenforum_block_right */

.sidebar .secondaryContent h3 {
    margin: 0;
    padding: 14px 20px !important;
}


/* Small devices (laptops, 992px and up) */

@media (max-width: 991px) {
    .mr_newsletter-btn {
        place-self: center;
    }
    .mr_newsletter {
        gap: 25px;
    }
    .mr_newsletter-content {
        gap: 12px;
        text-align: center;
    }
    #products .products,
    .featured-products .products,
    .product-accessories .products {
        max-width: 532px;
    }
    .captcha_newsletter .pa-captcha-inf {
        justify-content: center;
    }
    .mr_newsletter-description br {
        display: none;
    }
    .pa-captcha-inf .g-recaptcha {
        transform-origin: center;
    }
}

/* Large devices (laptops, 992px and up) */

@media (min-width: 992px) {
    .mr_newsletter {
        grid-template-columns: repeat(2, 50%);
    }
    .mr_newsletter-input-container {
        margin-left: 15px;
    }
}


/* Small devices (mobiles, 768px and down) */

@media (max-width: 767px) {
    /* #header .mobile {
        position: relative;
    }
    #header .header-nav {
        background: none;
        padding-top: 20px;
    }
    #header .top-logo {
        justify-content: center;
    }
    #header .top-logo img {
        max-height: 57px;
    }
    #header .header-nav #menu-icon {
        position: absolute;
        right: 0;
        bottom: 0;
        top: auto;
        display: flex;
        height: min-content;
        align-items: center;
    }
    #header .header-nav #menu-icon i {
        content: '';
        background-image: url('/themes/classic_child/assets/img/menu.svg');
        background-size: contain;
        background-repeat: no-repeat;
        width: 25px;
        height: 25px;
    }
    #header.is-open .header-nav #menu-icon i {
        background-image: url('/themes/classic_child/assets/img/menu-open.svg');
    }
    #header .header-nav #menu-icon .material-icons {
        line-height: 25px;
    }
    #mobile_top_menu_wrapper {
        margin-top: 2.5rem;
        margin-bottom: -2.5rem;
        position: absolute;
        left: 0;
        right: 0;
    }
    body:not(#index) #mobile_top_menu_wrapper::before {
        content: '';
        background: linear-gradient(#1ba3cc 0%, #26326f 100%);
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: -1;
    }
    .mr_topbar-phone {
        margin-top: 15px;
    }
    #wrapper {
        display: block !important;
    }
    #mobile_top_menu_wrapper .js-top-menu-bottom .user-info a {
        padding: 0;
    }
    #header .header-top {
        padding: 2.5rem 0 2.5rem 0;
    }
    #header .header-top>.container {
        padding: 0;
        width: 100% !important;
    }
    #header .header-top #mobile_top_menu_wrapper {
        background: none;
    }
    #header .header-top a[data-depth="0"] {
        color: var(--mr_color__white);
        text-align: right;
    }
    #mobile_top_menu_wrapper .top-menu a[data-depth="0"] {
        border-bottom: 0;
        font-weight: var(--mr_fontweight__bold);
        padding: 1rem;
    }
    #header .top-menu a[data-depth="0"]:hover {
        color: var(--mr_color__white);
        text-decoration: underline;
    }
    .dropdown-item .float-xs-right {
        float: left !important;
    }
    #header .header-top-right {
        display: block;
        padding-right: 0;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.4)
    }
    #header .mr_header_menu_right {
        margin-right: 0;
        padding-right: 0;
    }
    #header .mr_header_menu_right a {
        font-weight: var(--mr_fontweight__bold);
        color: var(--mr_color__white);
        padding: 1rem;
        display: block;
    }
    #header .mr_header_menu_right>ul>li {
        display: block;
        text-align: right;
    }
    #header .mr_header_menu_right>ul {
        margin: 0;
    }
    #mobile_top_menu_wrapper #top-menu {
        margin-bottom: 0;
    }
    #mobile_top_menu_wrapper .top-menu .sub-menu {
        background: none;
    }
    #mobile_top_menu_wrapper .top-menu .sub-menu li>a {
        border-bottom: 0;
        font-weight: var(--mr_fontweight__bold);
        color: var(--mr_color__white);
        text-align: right;
        font-size: var(--mr_fontsize__small);
        text-transform: uppercase;
    }
    #mobile_top_menu_wrapper .top-menu .sub-menu li>a:hover {
        color: var(--mr_color__white);
        text-decoration: underline;
    }
    #mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="1"]>li a {
        font-size: var(--mr_fontsize__small);
        text-transform: uppercase;
        padding: 1rem;
    }
    #mobile_top_menu_wrapper .top-menu .navbar-toggler {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #search_widget form input {
        color: var(--mr_color__white);
        border-bottom: 1px solid var(--mr_color__white);
        max-width: calc(100% - 25px);
    }
    #search_widget form input::placeholder {
        color: var(--mr_color__white) !important;
        font-weight: var(--mr_fontweight__regular);
        opacity: 1;
    }
    #search_widget {
        display: none;
        margin-right: 0;
        margin-top: 15px;
    }
    #search_widget.mr_searchbar-show {
        display: block;
    }
    .mr_user_signin {
        background-image: url('/themes/classic_child/assets/img/login-mobile.svg');
        width: 32px;
        height: 32px;
    }
    .shopping-cart {
        background-image: url('/themes/classic_child/assets/img/cart-mobile.svg');
        width: 32px;
        height: 32px;
    }
    .mr_icon-search {
        background-image: url('/themes/classic_child/assets/img/search-mobile.svg');
        width: 20px;
        height: 20px;
        right: 0;
    }
    .mr_icon-wishlist {
        content: '';
        background-image: url('/themes/classic_child/assets/img/wishlist-mobile.svg');
        background-size: contain;
        background-repeat: no-repeat;
        width: 32px;
        height: 32px;
        display: block;
    }
    .mr_icon-phone {
        background-image: url('/themes/classic_child/assets/img/phone-mobile.svg');
    }
    .mr_icon-mail {
        background-image: url('/themes/classic_child/assets/img/mail-mobile.svg');
        display: inline-block;
    }
    #_desktop_user_wishlist {
        display: none;
    }
    .mr_mobile_icon_wrapper {
        display: flex;
        justify-content: center;
        padding: 3rem 0;
        width: 100%;
    }
    #_mobile_search .mr_icon-search {
        background-image: url('/themes/classic_child/assets/img/search-mobile.svg');
        width: 32px;
        height: 32px;
        right: unset;
        margin-right: 8px;
        cursor: pointer;
    } */
    .cart-products-count {
        /* mike 24.03.2022 - psuje popup po dodaniu do koszyka*/
        /* width: 29px;
        height: 29px; */
        top: -12px;
        right: -9px;
        line-height: 25px;
        font-size: 14px;
    }
    #_mobile_user_wishlist {
        margin-right: 10px;
    }
    .cart-products-count {
        font-weight: var(--mr_fontweight__semibold);
    }
    #_mobile_currency_selector {
        position: absolute;
        left: 15px;
        top: -40px;
    }
    #_mobile_language_selector {
        position: absolute;
        right: 50px;
        top: -8px;
    }
    #_mobile_currency_selector .dropdown select,
    #_mobile_language_selector .dropdown select {
        background: none;
        color: var(--mr_color__primary);
        font-weight: var(--mr_fontweight__semibold);
    }
    #_mobile_currency_selector .dropdown select option,
    #_mobile_language_selector .dropdown select option {
        background: none;
        color: var(--mr_color__primary);
        font-weight: var(--mr_fontweight__semibold);
    }
    #_mobile_contact_link {
        text-align: center;
        font-weight: var(--mr_fontweight__semibold);
        font-size: var(--mr_fontsize__small);
    }
    #_mobile_contact_link .mr_topbar-email a {
        position: relative;
        margin-right: -20px;
    }
    #_mobile_contact_link .mr_topbar-email a::before {
        content: '';
        background-image: url('/themes/classic_child/assets/img/mail-mobile.svg');
        background-size: contain;
        background-repeat: no-repeat;
        width: 15px;
        height: 15px;
        display: inline-block;
        position: absolute;
        left: -20px;
    }
    .mr_email-label {
        display: none;
    }
    #mobile_top_menu_wrapper .js-top-menu-bottom a {
        color: var(--mr_color__white);
        padding: 0 0.625rem;
        display: inline-block;
    }
    .mr_topbar-newsletter {
        background-color: #061540;
        color: var(--mr_color__white);
        font-size: var(--mr_fontsize__medium);
        mix-blend-mode: hard-light;
        padding: 15px;
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-bottom: -15px;
        margin-top: 30px;
        font-weight: var(--mr_fontweight__regular);
    }
    #mobile_top_menu_wrapper .js-top-menu-bottom .mr_topbar-newsletter a {
        font-weight: var(--mr_fontweight__semibold);
    }
    .section--mendzynarodowa-wysylka::before {
        height: 108%;
    }
    /* FORUM */
    .secondaryContent,
    .blogview .main_box .main_rcolumn {
        padding: 1rem;
    }
    .blogview .main_box .ctrlUnit {
        display: block;
    }
    .membersSetting dt,
    .membersSetting dd {
        width: 100%;
    }
    .membersSetting dt label {
        margin-left: 0;
        font-size: var(--mr_fontsize__normal);
    }

    .dropdown-menu.language-selector-mobile {
        min-width: fit-content;
    }
    .dropdown-menu.language-selector-mobile a {
        padding: 3px;
    }
}

@media (max-width: 575px) {
    #products .products,
    .featured-products .products,
    .product-accessories .products {
        max-width: calc(100% + 16px);
        margin-left: -8px;
        margin-right: -8px;
    }
    #products .products .mr_btn,
    .featured-products .products .mr_btn,
    .product-accessories .products .mr_btn {
        padding: 7px 18px;
    }
    #products .products .mr_addbtn:before,
    .featured-products .products .mr_addbtn:before,
    .product-accessories .products .mr_addbtn:before {
        margin-left: -10px;
    }
}

@media (max-width: 390px) {
    /* Update bestsellers on mobile 12-04-2022 */
    .mr_bestsellers .products .product:nth-child(n+5) {
        display: none;
    }
    .products .product {
        width: 100%;
        float: none;
        max-width: 330px;
    }
    .product-miniature .thumbnail-container .product-thumbnail img {
        max-width: 100%;
    }
}


/* Footer */
.section--footer {
    background-color: #273370;
    position: relative;
}
.section--footer-wrapper:after {
    content:'';
    position: absolute;
    background-image: url('/themes/classic_child/assets/img/footer-bg-image.svg');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 93%;
    display: block;
    right: 0;
    bottom: 0;
}
.mr_footer {
    display: grid;
    grid-template-columns: repeat(3, minmax(1px, max-content));
    justify-content: space-between;
    gap: 40px 20px;
    padding-top: 60px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}
.mr_footer .footer-heading,
.mr_footer .footer-heading .h3 {
    color: var(--mr_color__white);
    font-size: var(--mr_fontsize__normal);
    font-weight: var(--mr_fontweight__semibold);
    line-height: 1.25;
    margin-bottom: 25px;
    text-transform: unset;
}
.mr_footer .mail,
.mr_footer .telephone {
    align-items: center;
}
.mr_footer .mail img,
.mr_footer .telephone img {
    margin-right: 15px;
}

.mr_footer-description {
    max-width: 300px;
}
.mr_footer-description p {
    color: #fff;
}
.mr_footer-description div:not(.mr_footer-logo) img {
    margin-top: 20px;
    width: 100% !important;
    height: auto !important;
    max-width: 280px !important;
}

.mr_footer .material-icons {
    color: var(--mr_color__white);
    font-size: 22px;
}

.mr_footer-menu .links {
    width: 100%;
}

.mr_footer-menu .links>.row {
    display: grid;
    grid-template-columns: repeat(3, minmax(1px, 185px));
    gap: 5px;
}

.mr_footer .row::after {
    display: none;
}

.mr_footer-menu .links,
.mr_footer-menu .links .wrapper,
.mr_footer-menu .links .wrapper ul {
    padding: 0;
    margin: 0;
}

.mr_footer-menu .links .wrapper {
    width: unset;
}

.mr_footer-menu .links .hidden-sm-down {
    display: none;
}

.mr_footer-description,
.mr_footer-menu .links ul li a,
.mr_footer-info .mr_footer-contact p {
    color: #BEC1E8;
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__regular);
    line-height: 1.25;
}
.mr_footer-info .mr_footer-contact a {
    color: var(--mr_color__white);
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__regular);
    line-height: 1.25;
}
.mr_footer-info .mr_footer-contact p {
    margin-bottom: 5px;
}

.mr_footer-menu .links ul li a:hover,
.mr_footer-info .mr_footer-contact a:hover {
    text-decoration: underline;
}

.mr_footer-contact {
    gap: 25px;
}

.mr_footer-social {
    display: grid;
    grid-auto-flow: column;
    gap: 25px;
}
.mr_footer-logo {
    margin-bottom: 40px;
}

.mr_footer-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(1px, max-content));
    align-items: start;
    gap: min(5rem, 50px);
}

.mr_footer .facebook {
    background-image: url('/themes/classic_child/assets/img/fb-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    height: 21px;
    width: 17px;
}

.mr_footer .instagram {
    background-image: url('/themes/classic_child/assets/img/insta-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    height: 22px;
    width: 20px;
}

.mr_footer .youtube {
    background-image: url('/themes/classic_child/assets/img/yt-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    height: 25px;
    width: 25px;
}

.mr_footer-copyright-text {
    color: #BEC1E8;
    font-size: var(--mr_fontsize__xsmall);
    font-weight: var(--mr_fontweight__regular);
    line-height: 1.25;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
    z-index: 2;
    position: relative;
}

/* Large devices (laptops, 768px and up) */

@media (min-width: 768px) {
    .mr_footer-menu .links .wrapper ul {
        display: grid;
        gap: 13px;
    }
    .mr_footer-logo {
        grid-column: 1/ 4;
    }

    .mr_footer-copyright-text {
        border-top: 1px solid rgba(238, 240, 243, 0.2);
    }
}


/* Small devices (mobiles, 1199px and down) */

@media (max-width: 1199px) and (min-width: 768px) {
    .mr_footer-info {
        grid-column: 1 / 4;
        grid-row: 3;
    }
}

@media (max-width: 767px) {
    .mr_footer {
        padding-top: 50px;
        padding-bottom: 0;
        text-align: center;
        justify-items: center;
        grid-template-columns: 100%;
        gap: 20px;
    }
    .mr_footer-menu {
        width: 100%;
    }
    .mr_footer-menu .links>.row {
        grid-template-columns: 100%;
    }
    .mr_footer-info {
        display: grid;
        grid-template-columns: 100%;
        justify-items: center;
        text-align: center;
        gap: 20px;
        width: 100%;
    }
    .mr_footer-info > div {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(238, 240, 243, 0.2);
        padding-bottom: 25px;
    }
    .mr_footer-social {
        display: flex;
    }
    .mr_footer-contact span {
        display: grid;
        gap: 5px;
    }
    .mr_footer .links .material-icons {
        margin-top: -5px;
    }
    .mr_footer .links .title {
        margin: 0;
        padding: 0;
        border: 0;
        text-align: left;
    }
    .mr_footer .links .title .h3 {
        color: var(--mr_color__white);
        font-size: var(--mr_fontsize__normal);
        font-weight: var(--mr_fontweight__semibold);
        text-transform: unset;
    }
    .mr_footer-menu .links ul li {
        padding: 1rem;
    }
    .mr_footer-menu .links ul li:first-child {
        padding-top: .5rem;
    }
    .mr_footer-menu .links .wrapper {
        padding-top: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(238,240,243,0.2);
    }
    .mr_footer .facebook {
        height: 35px;
        width: 22px;
    }
    .mr_footer .instagram {
        height: 35px;
        width: 32px;
    }
    .mr_footer .youtube {
        height: 35px;
        width: 35px;
    }
}


/* CMS */

.page-cms #wrapper .breadcrumb {
    text-align: left;
}

.page-cms #main .page-header {
    width: 925px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.page-cms:not(.crazyelements-free-default) #main .page-header h1 {
    margin: 7.5rem auto 2.5rem 0;
}

.elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated {
    /* width: 100%; */
    /* max-width: 925px; */
    /* margin-left: auto;
    margin-right: auto; */
    /* padding: 0; */
    /* margin-bottom: 5rem; */
}

.elementor-widget-text-editor p {
    color: var(--mr_color__primary);
}

.mr_single-content {
    margin-bottom: 2rem;
}

.mr_single-content-title {
    margin-top: 4.5rem;
    margin-bottom: 1.5rem;
}

/* .elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated .elementor-text-editor>* {
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__medium);
    color: var(--mr_color__primary);
    line-height: 1.25;
} */

.elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated .elementor-text-editor h1,
.elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated .elementor-text-editor h2,
.elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated .elementor-text-editor h3,
.elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated .elementor-text-editor h4,
.elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated .elementor-text-editor h5,
.elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated .elementor-text-editor h6 {
    font-size: var(--mr_fontsize__medium);
    font-weight: var(--mr_fontweight__semibold);
    color: var(--mr_color__primary);
    margin-bottom: 1rem;
}

.elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populatedion>ul {
    display: grid;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populatedion>ul>li {
    position: relative;
    padding: 0 15px;
    margin: 7px 0;
}

.elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populatedion>ul>li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 200px;
    background-color: var(--mr_color__pacificblue);
}

.elementor-lightbox .dialog-lightbox-close-button i {
    content: url("data:image/svg+xml,%3Csvg id='Icon' xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Crect id='Area' width='20' height='20' fill='%23fbfbfb' opacity='0'/%3E%3Cg id='Icon-2' data-name='Icon' transform='translate(1.29 2.499)'%3E%3Ccircle id='Path' cx='8.333' cy='8.333' r='8.333' transform='translate(0.377 -0.832)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.667'/%3E%3Cline id='Line' x1='5' y2='5' transform='translate(6.21 5.001)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.667'/%3E%3Cline id='Line-2' data-name='Line' x2='5' y2='5' transform='translate(6.21 5.001)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.667'/%3E%3C/g%3E%3C/svg%3E");
}

body#cms:not(.crazy-cms-7):not(.crazy-cms-6):not(.crazy-cms-16) .elementor a {
    font-weight: var(--mr_fontweight__bold);
    color: var(--mr_color__primary);
    text-decoration: underline;
    transition: color .3s ease;
}

body#cms:not(.crazy-cms-7):not(.crazy-cms-6):not(.crazy-cms-16) .elementor a:hover {
    color: var(--mr_color__pacificblue);
}

body#cms:not(.crazy-cms-7):not(.crazy-cms-6):not(.crazy-cms-16) .elementor .elementor-text-editor li,
body#cms:not(.crazy-cms-7):not(.crazy-cms-6):not(.crazy-cms-16) .elementor .elementor-text-editor>* {
    margin: 10px 0;
}


/* Badania */

.crazy-cms-7 .elementor-lightbox .elementor-lightbox-image {
    max-width: 100%;
}

.crazy-cms-7 #main .page-header h1 {
    margin-left: auto;
    margin-right: auto;
}

.crazy-cms-7 #wrapper .breadcrumb {
    text-align: center;
}

.crazy-cms-7 .elementor-lightbox .elementor-lightbox-item {
    padding: 10px 20px 0;
}

.crazy-cms-7 .cms-id-7 .elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated {
    padding: 0;
}

.cms-id-7 .page-header>h1 {
    margin-top: 24px;
    margin-bottom: 16px;
    text-align: center;
}

.cms-id-7 .page-header>h1,
.cms-id-7 #main .page-content .elementor-widget-heading.elementor-widget-heading .elementor-heading-title {
    color: var(--mr_color__primary);
    font-size: var(--mr_fontsize__title);
    font-weight: var(--mr_fontweight__bold);
    line-height: 1.25;
    text-align: left;
}

.cms-id-7 #main .page-content {
    color: var(--mr_color__primary);
    font-size: var(--mr_fontsize__title);
    font-weight: var(--mr_fontweight__bold);
    line-height: 1.25;
}

.cms-id-7 #main .page-content .elementor-widget-text-editor p {
    color: var(--mr_color__primary);
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__medium);
    line-height: 1.25;
}

.cms-id-7 .elementor-section.elementor-section-boxed:not(.elementor-element-d7a9183)>.elementor-container {
    padding-top: 15px;
    padding-bottom: 55px;
}

.cms-id-7 #main .page-content .elementor-section-boxed:not(:first-of-type) {
    border-top: 1px solid var(--mr_color__linkwater);
}

.crazy-cms-7 .elementor-element-d7a9183 {
    padding-bottom: 75px;
}

.crazy-cms-7 .elementor-image-gallery .gallery-columns-4 .gallery-item {
    max-width: 100%;
}

.crazy-cms-7 .dialog-message {
    padding: 15px 30px 15px;
    overflow-y: scroll;
}

.crazy-cms-7 .elementor-lightbox .elementor-lightbox-image {
    transition: all 0.3s ease-in-out;
    cursor: zoom-in;
}

.crazy-cms-7 .elementor-lightbox .elementor-lightbox-image.mr_zoom {
    transform: scale(1.5) !important;
    cursor: zoom-out !important;
}


/* Webinar */

.crazy-cms-6 .elementor-widget-heading.elementor-widget-heading .elementor-heading-title {
    font-size: var(--mr_fontsize__title);
    font-weight: var(--mr_fontweight__bold);
    line-height: 1.25;
    color: var(--mr_color__primary);
    text-align: left;
}

.crazy-cms-6 .elementor-widget-video .elementor-custom-embed-image-overlay img {
    border-radius: 25px;
}

.crazy-cms-6 .elementor-widget-text-editor p {
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__medium);
    line-height: 1.25;
    color: var(--mr_color__primary);
    text-align: left;
}

.crazy-cms-6 .elementor-widget-button .elementor-button-wrapper {
    width: max-content;
    max-width: 100%;
}

.crazy-cms-6 .elementor-widget-button a.elementor-button {
    cursor: pointer;
    padding: 10px 30px;
    border-radius: 100px;
    font-weight: var(--mr_fontweight__semibold);
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
    text-transform: uppercase;
    background-color: transparent;
    transition: color .3s ease, background-color .3s ease, border-color .3s ease, opacity .3s ease !important;
    color: var(--mr_color__primary);
    border: 1px solid var(--mr_color__primary);
}

.crazy-cms-6 .elementor-widget-button a.elementor-button:not(:disabled):active,
.crazy-cms-6 .elementor-widget-button a.elementor-button:not(:disabled):focus,
.crazy-cms-6 .elementor-widget-button a.elementor-button:not(:disabled):hover {
    background-color: var(--mr_color__pacificblue);
    color: var(--mr_color__white);
    border: 1px solid var(--mr_color__pacificblue);
}

.crazy-cms-6 .elementor-widget-button a.elementor-button:disabled,
.crazy-cms-6 .elementor-widget-button a.elementor-button:disabled:hover {
    cursor: no-drop;
    opacity: 0.5;
}

@media (min-width: 768px) {
    .crazy-cms-6 .elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap:first-child {
        padding-right: 15px;
    }
    .crazy-cms-6 .elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap:last-child {
        padding-left: 15px;
    }
}

#mr_popup_webinar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.81);
    z-index: 999999;
}

#mr_popup_webinar-close {
    position: absolute;
    top: calc(50% - 20vw - 15px);
    left: calc(50% + 40vw + 15px);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

#mr_popup_webinar-close::before {
    content: url("data:image/svg+xml,%3Csvg id='Icon' xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Crect id='Area' width='20' height='20' fill='%23fbfbfb' opacity='0'/%3E%3Cg id='Icon-2' data-name='Icon' transform='translate(1.29 2.499)'%3E%3Ccircle id='Path' cx='8.333' cy='8.333' r='8.333' transform='translate(0.377 -0.832)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.667'/%3E%3Cline id='Line' x1='5' y2='5' transform='translate(6.21 5.001)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.667'/%3E%3Cline id='Line-2' data-name='Line' x2='5' y2='5' transform='translate(6.21 5.001)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.667'/%3E%3C/g%3E%3C/svg%3E");
}

#mr_popup_webinar-video {
    border: 0;
    width: 80vw;
    height: 40vw;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


/* Śledzenie zamówień gości */

form#guestOrderTrackingForm p {
    font-size: var(--mr_fontsize__normal);
}

form#guestOrderTrackingForm .form-fields {
    margin-top: 30px;
}

form#guestOrderTrackingForm .form-group,
form#guestOrderTrackingForm .form-control-label,
form#guestOrderTrackingForm .form-control-comment {
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
}

form#guestOrderTrackingForm .form-footer {
    margin: 0 auto;
    text-align: center;
}


/* Small devices (767px and low) */

@media (max-width: 767px) {
    .cms-id-7 .elementor-section.elementor-section-boxed:not(.elementor-element-d7a9183):not(.elementor-element-8f2a87c)>.elementor-container .elementor-element:first-child {
        margin-bottom: 20px;
    }

    .crazy-cms-7 .elementor-element .elementor-widget-container .gallery {
        display: grid;
        grid-template-columns: repeat(2, 40%);
        justify-content: space-around;
        justify-items: center;
        gap: 1rem;
    }
}


/* Medium devices (tablets, 768px and up) */

@media (min-width: 768px) {
    .cms-id-7 .elementor-section.elementor-section-boxed:not(.elementor-element-d7a9183):not(.elementor-element-8f2a87c)>.elementor-container .elementor-element:first-child {
        margin-right: 25px;
    }

    .crazy-cms-7 .elementor-element .elementor-widget-container .gallery {
        display: grid;
        grid-template-columns: repeat(3, 30%);
        justify-content: space-between;
        justify-items: center;
    }

    .cms-id-7 #main .page-content .elementor-section-boxed:not(.elementor-element-d7a9183) .elementor-row {
        -webkit-flex-wrap: unset;
        -ms-flex-wrap: unset;
        flex-wrap: unset;
    }

    .cms-id-7 .elementor-element .elementor-widget-container .gallery,
    .cms-id-7 .elementor .elementor-widget:not(.elementor-widget-text-editor) figure {
        transform: scaleX(-1);
    }
}


/* mr icons */

.mr-icon {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 15px;
    /*margin: 0 36px;*/
    padding: 18px 20px;
    transition: .3s;
    border-radius: 10px;
}
.mr-icon:hover {
    background-color: var(--mr_color__white);
}
@media screen and (max-width: 1200px) {
    .mr-icon {
        margin: unset;
    }
}
/*@media screen and (min-width: 1500px) {*/
/*    .mr-icon {*/
/*        margin: 0 8px;*/
/*    }*/
/*    .mr-icon:first-of-type {*/
/*        margin: 0 8px 0 0;*/
/*    }*/
/*    .mr-icon:last-of-type {*/
/*        margin: 0 0 0 8px;*/
/*    }*/
/*}*/

.mr-icon--image img {
    width: 100% !important;
    max-width: 100%;
    height: 55px;
}

@media (min-width: 992px) {
    .mr-icons {
        justify-content: space-between;
        grid-template-columns: repeat(3, minmax(1px, max-content));
        gap: 30px 15px;
    }
}

@media (max-width: 991px) {
    .universal-element,
    .universal-element--content {
        text-align: center;
        justify-items: center;
    }
}

@media (min-width: 992px) {
    .universal-elements {
        gap: 12rem;
    }

    .universal-element {
        gap: 9rem;
        grid-template-columns: minmax(250px, max-content) minmax(1px, 1fr);
        align-items: center;
    }

    .universal-elements:not(.reverse) .universal-element:nth-child(odd),
    .universal-elements:not(.reverse) .universal-element:nth-child(odd)>*,
    .universal-elements.reverse .universal-element:nth-child(even),
    .universal-elements.reverse .universal-element:nth-child(even)>* {
        transform: scaleX(-1);
    }

    .universal-elements:not(.reverse) .universal-element:nth-child(odd) .universal-element--content,
    .universal-elements.reverse .universal-element:nth-child(even) .universal-element--content {
        justify-items: start;
        text-align: left;
    }

    .universal-element--content a {
        margin-top: 18px;
    }
}

/* Hide Alias */
#delivery-address .form-fields .form-group:first-of-type,
.address-form .form-group:first-of-type {
    display: none;
}

.mr_thumbnail.product-thumbnail>img {
    min-width: 100%;
}

#search_widget {
    float: left;
}

@media (max-width: 767px) {
    /* #header .mrs_parent_open_child >*:not(ul), */
    .header-nav,
    .mr_header_menu_right,
    #search_widget,
    #_mobile_currency_selector,
    .mr_header_menu_right {
        display: none;
    }

    #_mobile_currency_selector {
        display: block;
        z-index: 1000;
        position: absolute;
        right: 0;
        top: -8px;
        left: auto;
    }
}

#header .header-nav .material-icons.expand-more {
    margin-right: 0;
}
#header .header-top-left #_desktop_contact_link {
    display: flex;
    align-items: center;
}
.js-product-list-top {
    display: none;
}

#category #left-column {
    padding: 0;
    margin-top: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    background-color: var(--mr_color__sweetblue);
}

#category #left-column .block-categories {
    padding: 0;
    /* padding-bottom: 10px; */
    margin-bottom: 0;
    background-color: var(--mr_color__sweetblue);
}

#category #left-column .block-categories .category-top-menu {
    margin-bottom: 0;
}

#category #left-column .block-categories .category-top-menu-title {
    padding: 12px 18px;

}

#category #left-column .block-categories .category-top-menu-title a {
    font-size: 12px;
    font-weight: var(--mr_fontweight__bold);
}

#category #left-column .block-categories .category-sub-menu  {
    margin-top: 0;
}

#category #left-column .block-categories .category-sub-menu li[data-depth="0"] {
    min-height: 40px;
    transition: background-color .3s ease;
}

#category #left-column .block-categories .category-sub-menu li[data-depth="0"].active {
    background-color: var(--mr_color__white);
}

#category #left-column .block-categories .category-sub-menu li[data-depth="0"]>a {
    padding: 12px 18px;
    margin: 0 18px;
    width: calc(100% - 36px);
    font-size: 12px;
    font-weight: var(--mr_fontweight__semibold);
    transition: font-weight .3s ease;
}

#category #left-column .block-categories .category-sub-menu li[data-depth="0"].active>a {
    font-weight: var(--mr_fontweight__bold);
}

#category #left-column .block-categories .category-sub-menu li:not(.category-sub-menu-has-sub) {
    transition: background-color .3s ease;
}

#category #left-column .block-categories .category-sub-menu li:not(.category-sub-menu-has-sub).current-cat,
#category #left-column .block-categories .category-sub-menu li:not(.category-sub-menu-has-sub):hover {
    background-color: var(--mr_color__white);
}

#category #left-column .block-categories .collapse-icons {
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    margin: 0;
    overflow: hidden;
    position: absolute;
}
#category #left-column .block-categories .arrows {
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    margin: 0;
    overflow: hidden;
    position: absolute;
}

#category #left-column .block-categories .collapse-icons:not([aria-expanded="true"])::before,
#category #left-column .block-categories .collapse-icons[aria-expanded="true"]::after {
    content: "";
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.5) translate(50%, 50%);
}
#category #left-column .block-categories .arrows:not([aria-expanded="true"])::before,
#category #left-column .block-categories .arrows[aria-expanded="true"]::after {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1) translate(50%, 50%);
}
.block-categories .category-sub-menu li:not([data-depth="0"]):not([data-depth="1"])::before {
    display: none;
}

#category #left-column .block-categories .collapse-icons:not([aria-expanded="true"])::before,
#category #left-column .block-categories .arrows:not([aria-expanded="true"])::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5.243' height='9.072' viewBox='0 0 5.243 9.072'%3E%3Cpath id='Path_1702' data-name='Path 1702' d='M6095.917,240.821,6100.1,245l4.182-4.182' transform='translate(-240.468 6104.636) rotate(-90)' fill='none' stroke='%23273370' stroke-width='1'/%3E%3C/svg%3E%0A");
}

#category #left-column .block-categories .collapse-icons[aria-expanded="true"]::after,
#category #left-column .block-categories .arrows[aria-expanded="true"]::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.072' height='5.243' viewBox='0 0 9.072 5.243'%3E%3Cpath id='Path_1701' data-name='Path 1701' d='M6095.917,240.821,6100.1,245l4.182-4.182' transform='translate(-6095.564 -240.468)' fill='none' stroke='%23273370' stroke-width='1'/%3E%3C/svg%3E%0A");
}

#category #left-column .block-categories .collapse-icons .material-icons,
#category #left-column .block-categories .arrows .material-icons {
    display: none;
}

#category #left-column .block-categories .category-sub-menu li[data-depth="0"] .category-sub-menu {
    padding: 8px 0;
    background-color: var(--mr_color__sweetblue);
}

#category #left-column .block-categories .category-sub-menu li[data-depth="0"] .category-sub-menu li {
    display: grid;
    padding: 0;
    margin-bottom: 0;
    transition: background-color .3s ease;
}

#category #left-column .block-categories .category-sub-menu li[data-depth="0"] .category-sub-menu li:hover {
    background-color: var(--mr_color__white);
}

#category #left-column .block-categories .category-sub-menu li[data-depth="0"] .category-sub-menu li a {
    font-size: 12px;
    font-weight: var(--mr_fontweight__regular);
    transition: font-weight .3s ease;
    padding: 9px 18px;
}

#category #left-column .block-categories .category-sub-menu li[data-depth="0"] .category-sub-menu li a:hover {
    font-weight: var(--mr_fontweight__bold);
}

#category #left-column #search_filters {
    padding: 0;
    margin: 0;
}

#category #left-column #search_filters>.h6 {
    padding: 12px 18px;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: var(--mr_fontweight__bold);
}

#category #left-column #search_filters .facet {
    padding: 23px 18px;
    background-color: var(--mr_color__sweetblue);
}

#category #left-column #search_filters .js-search-filters-clear-all {
    padding: 7px 18px;
    margin: 0;
    width: 100%;
    display: flex;
    background-color: var(--mr_color__sweetblue);
    font-size: 12px;
    font-weight: var(--mr_fontweight__bold);
    color: var(--mr_color__primary);
    border: 0 !important;
    border-top: 2px solid var(--mr_color__sweetblue) !important;
    border-bottom: 2px solid var(--mr_color__sweetblue) !important;
    transition: background-color .3s ease;
}

#category #left-column #search_filters .js-search-filters-clear-all:hover {
    background-color: var(--mr_color__white);
}

#category #left-column #search_filters .js-search-filters-clear-all .material-icons {
    margin: 0;
    margin-right: 5px;
    font-size: 17px;
}

#category #left-column #search_filters .facet-title {
    margin-bottom: 15px;
    padding: 0 !important;
    font-size: 14px;
    font-weight: var(--mr_fontweight__regular);
}

#search_filters .facet .facet-label a {
    padding-left: 24px;
    font-size: 12px;
    font-weight: var(--mr_fontweight__regular);
    color: var(--mr_color__primary);
    line-height: 1.25;
}

#search_filters .facet .facet-label .custom-checkbox input[type="checkbox"]+span::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid var(--mr_color__primary);
    top: -2px;
    left: 0;
}

#search_filters .facet .facet-label .custom-checkbox input[type="checkbox"]+span::after {
    content: '';
    position: absolute;
    background-color: var(--mr_color__primary);
    width: 9px;
    height: 9px;
    top: 1px;
    left: 3px;
    opacity: 0;
    transition: opacity .3s ease;
}

#search_filters .facet .facet-label .custom-checkbox input[type="checkbox"]:checked+span::after {
    opacity: 1;
}

#search_filters .facet .facet-label .custom-checkbox input[type="checkbox"]+span .material-icons {
    display: none !important;
}

#search_filters .ui-slider .ui-slider-handle {
    width: 11px;
    height: 11px;
    border-radius: 100px;
    margin-left: -0.65em;
    background-color: var(--mr_color__primary);
    border: 1px solid var(--mr_color__primary);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
}

#search_filters .ui-widget-header {
    background: var(--mr_color__white);
}

.ui-widget-content {
    border: 2px solid var(--mr_color__sweetblue);
    box-shadow: none;
}

@media (min-width: 768px) {
    #search_filters .facet ul.collapse li:not(:last-child) .facet-label {
        margin-bottom: 5px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #category #left-column {
        margin-left: 15px;
        width: calc(25% - 15px);
    }
}

@media (max-width: 991px) {
    #category #wrapper .breadcrumb ol {
        padding-left: 15px;
    }
}

@media (min-width: 1200px) {
    #category #main .col-xl-3 {
        width: 33.33333%;
    }
}

#search_filters .facet .facet-label a,
#search_filters .facet ul li p {
    margin-top: 0;
    font-weight: var(--mr_fontweight__light);
    font-size: var(--mr_fontsize__normal);
}

#search_filters .facet ul li p {
    font-weight: var(--mr_fontweight__regular);
}

#search_filters .ui-slider-horizontal {
    margin-top: 15px;
}

#main .active_filters {
    margin-top: 8px;
    padding: 12px 18px 0;
    background-color: var(--mr_color__sweetblue);
    margin-bottom: 10px;
}

#main .active_filters .active-filter-title {
    font-size: 14px;
    color: var(--mr_color__primary);
}

#main .active_filters .filter-block {
    padding: 9px;
    margin-right: 9px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--mr_color__primary);
    background: #fff;
}

@media (max-width: 767px) {
    #category #category-description p {
        max-width: 100%;
    }

    #category #left-column #search_filters_wrapper {
        margin-left: 0;
        margin-right: 0;
    }

    #category #left-column #search_filters .facet {
        padding: 12px 18px !important;
    }

    #category #left-column #search_filters .facet:last-child,
    #category #left-column #search_filters .facet ul li {
        border: 0 !important;
    }

    #category #left-column {
        margin-bottom: 20px;
    }

    .mr_sort_filter-wrapper {
        margin: 10px auto 5px;
    }

    #search_filters_wrapper {
        height: 1px;
        opacity: 0;
    }

    #search_filters_wrapper.show {
        height: unset;
        opacity: 1;
    }
}

#category #left-column #search_filter_controls {
    display: none !important;
}

.products-selection .sort-by-row .select-title,
#category #search_filter_toggler {
    padding: 5px;
    border: 1px solid var(--mr_color__primary);
    font-size: var(--mr_fontsize__xsmall);
    font-weight: var(--mr_fontweight__medium);
    line-height: 1.2;
}

#module-xenforum-home #content-wrapper {
    width: 100%;
}

@media (min-width: 768px) {
    .carousel .carousel-item img {
        max-width: min(30vw, 480px);
    }
}

#carousel .carousel-item .carousel-item-content-wrapper {
    width: var(--global-width) !important;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.pd-cat-second-desc p {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.pd-cat-second-desc h2 {
    font-size: 1.9rem;
}

.pd-cat-second-desc h3 {
    font-size: 1.7rem;
}

.pd-cat-second-desc h2, .pd-cat-second-desc h3 {
    margin-bottom: 1.2rem;
}

.pd-cat-second-desc ul, .pd-cat-second-desc ol {
    font-size: 1.6rem;
    line-height: 1.3;
    list-style-position: inside;
    padding-left: 10px;
}

.pd-cat-second-desc ul {
    list-style-type: disc;
}

.pd-cat-second-desc ul li, .pd-cat-second-desc ol li {
    margin-bottom: 1rem;
}


.faq-container ul, .faq-container ol {
    font-size: var(--mr_fontsize__small);
    font-weight: var(--mr_fontweight__regular);
    line-height: 1.25;
    list-style-position: inside;
    padding-left: 10px;
}

.faq-container ul {
    list-style-type: disc;
}

.faq-container ul li, .faq-container ol li {
    margin-bottom: 0.5rem;
}

/* Search input mobile in header */
.mr_icon-search-mobile {
    cursor: pointer;
    content: '';
    background-image: url(/themes/classic_child/assets/img/search-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    margin-right: 8px;
    display: block;
    right: 0;
    margin-bottom: 8px;
  }

  @media (max-width: 767px) {
    .show-on-mobile {
      position: fixed;
      right: 0;
      width: 100%;
      background: #fff;
      height: 80px;
      top: 0;
      margin: auto;
      display: flex !important;
      align-items: center;
      z-index: 1000;
      left: 0;
      margin-left: 0;
      padding-left: 15px;
      padding-right: 15px;
      max-width: 100% !important;
    }

    .mr_icon-close {
      cursor: pointer;
      content: '';
      background-image: url(/themes/classic_child/assets/img/close.svg);
      background-size: contain;
      background-repeat: no-repeat;
      width: 17px;
      height: 17px;
      margin-right: 8px;
      display: block;
      right: 0;
      left: 8px;
      position: relative;
    }
    #search_widget form {
      width: 90%;
    }
    #search_widget form input {
      width: 100%;
      max-width: 100%;
    }
    #search_widget form .close {
      left: auto;
      right: -45px;
      opacity: 1;
    }
  }


/* custom searchbar 27.10.2022 */
#header .header-top .search-widget {
    float: left;
}
#search_widget {
    overflow: unset;
}

#search_widget form i {
    padding: 0;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    cursor: pointer;
}

.search-widget form button[type="submit"] {
    left: auto;
    top: 0;
    right: -5px;
    bottom: auto;
    padding: 5px;
    outline-color: var(--mr_color__pacificblue);
}

.ui-menu .ui-menu-item span.jolisearch-title {
    padding: 8px 10px;
    text-shadow: none;
    text-transform: uppercase;
    background: none;
    display: inline-block;
    margin-left: 0;
    border-radius: 0;
    position: relative;
    box-shadow: none;
    z-index: 30;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
}

.ui-menu .ui-menu-item span.jolisearch-title:after {
    display: none;
}

.ui-menu .ui-menu-item a {
    padding: 6px 10px !important;
}

.ui-menu li+li:before {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: auto;
    margin-top: 1px;
    border: none;
    display: none;
}

.ui-menu .ui-menu-item a {
    border-top: none !important;
    border: none !important;
    margin: 0 !important;
    color: var(--mr_color__primary) !important;
    border-bottom: 1px solid var(--mr_color__lightblue) !important;
    border-top: 1px solid var(--mr_color__lightblue) !important;
}

.ui-menu .ui-menu-item a:hover,
.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-hover {
    border: unset !important;
    border-radius: 0 !important;
    background: var(--mr_color__lightblue) !important;
    border-bottom: 1px solid var(--mr_color__lightblue) !important;
    border-top: 1px solid var(--mr_color__lightblue) !important;
}

.ui-menu.ui-jolisearch {
    border-radius: 0 !important;
    border: 1px solid var(--mr_color__lightblue);
    padding: 0;
    max-height: 80vh;
    overflow-y: scroll;
}

.ui-menu .ui-menu-item .jolisearch-post-right {
    color: var(--mr_color__primary);
    font-weight: var(--mr_fontweight__medium);
    font-size: var(--mr_fontsize__small);
    margin-right: 0;
}

.ui-menu .ui-menu-item .jolisearch-description span {
    color: var(--mr_color__primary);
    font-weight: var(--mr_fontweight__medium);
    font-size: var(--mr_fontsize__small);
}

.ui-menu .ui-menu-item span.jolisearch-features,
.ui-menu .ui-menu-item span.jolisearch-results {
    padding-right: 80px;
    max-width: 450px;
    font-size: 11px;
    font-weight: 600;
    color: #6e6e6e;
    text-transform: none;
    font-family: 'Open Sans';
    line-height: 1.2;
    letter-spacing: 1;
}

.ui-menu li+li.jolisearch-container:before {
    display: none;
}

.ui-menu .ui-menu-item a.more-results {
    border-bottom: none !important;
    justify-content: center;
}

.ui-menu .ui-menu-item span.jolisearch-post {
    color: var(--mr_color__primary);
    font-weight: var(--mr_fontweight__medium);
    font-size: var(--mr_fontsize__normal);
}

.ui-menu .ui-menu-item .jolisearch-image {
    max-width: 60px;
    max-height: 60px;
    background-color: #fff;
}

html::-webkit-scrollbar {
    display: none;
}

html {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

@media (max-width: 480px) {
    .ui-menu.ui-jolisearch {
        max-width: calc(100% - 20px) !important;
        width: 100% !important;
    }
    #header .header-top .search-widget {
        width: 100%;
    }
    .ui-menu .ui-menu-item a {
        display: flex;
    }
    .ui-menu .ui-menu-item .jolisearch-post-right {
        margin-right: 0;
        margin-left: auto;
        margin-top: 0;
        min-width: 50px;
    }
    .ui-menu .ui-menu-item .jolisearch-image {
        max-width: 45px;
        max-height: 45px;
    }
}

/* Custom Scrollbar 27.10.2022 */
@media (min-width: 768px) {
    /* Firefox */
    * {
        scrollbar-width: auto;
        scrollbar-color: rgb(0 0 0 / 30%) #ffffff;
    }

    /* Chrome, Edge, and Safari */
    *::-webkit-scrollbar {
        width: 13px;
    }

    *::-webkit-scrollbar-track {
        background: #ffffff;
    }

    *::-webkit-scrollbar-thumb {
        border-radius: 10px;
        box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
        background-color: rgba(0, 0, 0, 0.15);
        border: 3px solid #ffffff;
    }
}

/* Tabs single product */
.ets-ept-list-tabs-more-info li.nav-item a.nav-link {
    color: var(--mr_color__primary);
    font-weight: var(--mr_fontweight__regular);
    font-size: var(--mr_fontsize__small);
}
.tabs .nav-tabs .nav-link {
    color: var(--mr_color__primary);
    font-weight: var(--mr_fontweight__regular);
    font-size: var(--mr_fontsize__small);
    border-bottom: var(--mr_color__blue) 3px solid !important;
}
.tabs .nav-tabs .nav-link.active {
    color: var(--mr_color__white);
    font-weight: var(--mr_fontweight__regular);
    font-size: var(--mr_fontsize__small);
    border-bottom: var(--mr_color__primary) 3px solid !important;
    background: var(--mr_color__pacificblue);
    border-radius: 8px 8px 0 0;
}
.tabs .nav-tabs .nav-link:hover {
    border-bottom: var(--mr_color__linkwater) 3px solid;
}
.tabs {
    padding-left: 0;
    padding-right: 0;
}
.product-reference,
.product-quantities,
.product-out-of-stock {
    color: var(--mr_color__primary);
    font-weight: var(--mr_fontweight__regular);
    font-size: var(--mr_fontsize__small);
}
.tabs .tab-pane {
    padding-top: 2.25rem;
}
.ets-ept-tab-more-info {
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
    font-weight: var(--mr_fontweight__medium);
    color: var(--mr_color__primary);
}
.ets-ept-tab-more-info p {
    padding-top: 10px;
    padding-bottom: 10px;
}
.ets-ept-tab-more-info img {
    text-align: center;
    display: block;
    border: 1px solid var(--mr_color__linkwater);
    margin: 10px auto;
}
.ets-ept-tab-more-info>ul {
    display: grid;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 992px){
    .ets-ept-tab-more-info>ul {
        grid-template-columns: 1fr 1fr;
    }
}
.ets-ept-tab-more-info>* {
    font-size: var(--mr_fontsize__small);
    line-height: 1.25;
    font-weight: var(--mr_fontweight__medium);
    color: var(--mr_color__primary);
    padding-top: 10px;
    padding-bottom: 10px;
}
.ets-ept-tab-more-info ul li {
    position: relative;
    padding: 0 15px;
    display: grid;
    margin: 7px 0;
    align-items: center;
}
.ets-ept-tab-more-info ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 200px;
    background-color: var(--mr_color__pacificblue);
}
#index #block-reassurance {
    width: 100vw;
    position: relative;
    overflow: hidden;
    left: 50%;
    margin-left: -50vw;
    background-color: #F5F9FF;
    padding: 26px 0;
    margin-bottom: 2rem;
}
@media screen and (max-width: 600px) {
    #index #block-reassurance {
        padding: 5px 0;
        margin-bottom: 0;
    }
}
/*#index #block-reassurance .mr-icons {*/
/*    max-width: var(--global-width);*/
/*}*/
/*@media screen and (min-width: 1600px) {*/
    #index #block-reassurance .mr-icons {
        width: 95vw;
        max-width: 1460px;
        display: flex;
    }
/*}*/

@media(min-width: 768px) {
    .tab-content {
        padding: 15px;
    }
    #index #block-reassurance {
        margin-top:0rem
    }
}

/* Custom FAQs 12.12.2022 */
#content-wrapper .faq-container{
	display: flex;
	justify-content: center;
	flex-direction: column;
	border: 1px solid var(--mr_color__pacificblue);
	border-radius: 20px;
	margin-bottom: 15px;
    overflow: auto;
}
#content-wrapper .faq-container .faq-question {
	padding: 12px;
	cursor: pointer;
	font-size: 1.6rem;
    font-weight: bold;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
#content-wrapper .faq-container .faq-answer {
	padding: 0 12px;
    opacity: 0;
    transition: .25s all ease;
}
#content-wrapper .faq-container .faq-item[open] .faq-answer {
    opacity: 1;
}
#content-wrapper .faq-container .faq-item {
	border-bottom: 1px solid #01A3CB;
}
#content-wrapper .faq-container .faq-item:last-of-type {
    border-bottom: none;
}
#content-wrapper .faq-container .faq-item[open] .faq-question {
    color: #fff;
    background-color: #01A3CB;
}
#content-wrapper .faq-container p {
    margin: 1.2rem 0;
}
#content-wrapper .faq-container .faq-question:after{
	content: "+";
	font-size: 2rem;
	float: right;
	margin-left: 5px;
}
#content-wrapper .faq-container .faq-item[open] .faq-question:after{
	content: "-";
	font-size: 2rem;
	float: right;
	margin-left: 5px;
}
#content-wrapper .faq-item .faq-question::-webkit-details-marker,
#content-wrapper .faq-item .faq-question::marker {
    display: none;
    content: "";
}
@media(max-width: 550px) {
    .pd-cat-second-desc .faq-container .faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.5rem;
        line-height: 1.2;
    }
}

@media (max-width: 768px) {
    .calculator-peptides-page .hidden-sm-down {
        display: block !important;
    }
    .calculator-peptides-page {
        display: flex;
        flex-direction: column;
    }
    .calculator-peptides-page #left-column{
        order: 2;
    }
    .calculator-peptides-page #right-column{
        order: 1;
    }
}
.cp-link-menu {
    min-height: 40px;
    height: auto;
    padding: 15px;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.4;
    padding-top: 10px;
    padding-bottom: 6px;
    text-transform: uppercase;
}
.cp-link-menu:hover {
    color: var(--mr_color__primary)!important;
    font-weight: var(--mr_fontweight__bold);
}

h4.ets_crosssell_title {
    text-transform: unset;
    font-size: var(--mr_fontsize__small);
}

/* Slider slick default style */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.fancybox-inner {
    max-width: 100%;
}

/* hide identification number checkout */
.form-group-dni {
    display: none;
}

#discount .cart-rules {
    display: grid;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}
#discount .cart-rules .cart-rule {
    padding: 14px 20px;
    background-color: var(--mr_color__white);
    box-shadow: 0px 3px 6px #ecf1fd;
    border-radius: 13px;
    color: var(--mr_color__primary);
    font-size: var(--mr_fontsize__small);
    line-height: 1.4;
}

@media (max-width: 480px) {
    #discount .cart-rules {
        grid-template-columns: 1fr;
    }
}

.products-selection .sort-by-row .expand-more {
    background-color: #fff;
    color: var(--mr_color__primary);
}

#header .product #send_aap_button.mr_btn {
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 100px;
    font-weight: var(--mr_fontweight__semibold);
    font-size: 14px;
    line-height: 1.25;
    text-transform: uppercase;
    background-color: transparent;
    text-decoration: none !important;
    color: var(--mr_color__pacificblue) !important;
}
#header .product #send_aap_button.mr_btn:hover {
    color: var(--mr_color__white) !important;
    background-color:  var(--mr_color__pacificblue) !important;
}


/* elementor custom styles */
.mrce_btn a {
    border-radius: 50px !important;
    text-decoration: none !important;
    color: var(--mr_color__primary) !important;
    background-color: var(--mr_color__white) !important;
    font-weight: var(--mr_fontweight__semibold) !important;
    text-decoration: underline;
    border: 1px solid var(--mr_color__primary) !important;
    transition: color .3s ease;
}

.mrce_btn a:hover {
    background-color: var(--mr_color__primary) !important;
    color: var(--mr_color__white) !important;
    text-decoration: underline;
    transition: color .3s ease;
}

.js-product.product.hideproduct {
    display: none;
}
.warehouses-select {
    display: none !important;
}
.fancybox-opened,
.fancybox-inner {
    width: auto !important;
    max-width: 1000px;
}
.wishlist-list-item-default .wishlist-list-item-actions + button {
    display:none;
}

#product-modal .modal-content .modal-body {
    max-height: 100vh;
    height: max-content;
    width: max-content;
}

@media (max-width:767px) {
    #order-detail .order-totals .col-xs-8 strong {
        color: #fff;
    }
    #history .orders .order .text-xs-right {
        display: flex;
    }
}
.label-pill.dark {
    color: var(--mr_color__primary) !important;
    text-align: left;
}
#history .orders .order .label,
.table-labeled .label,
.history-lines .label {
    font-weight: 500;
    padding: 5px;
    border-radius: 8px;
    margin: 7px 0;
    display: inline-block;
}
.history-lines .label {
    color: #fff;
}
#guest-tracking input[name="password"]{
    color: var(--mr_color__primary) !important;
    border: 1px solid rgba(202, 29, 91, 0.1);
    outline: 0;
    background-color: var(--mr_color__white);
    font-weight: var(--mr_fontweight__light);
    line-height: 1.25;
    font-size: var(--mr_fontsize__normal);
    color: var(--mr_color__primary);
    min-height: 50px;
    padding: 1rem 2rem;
    background-color: var(--mr_color__white);
    box-shadow: 0px 3px 6px #ecf1fd;
    border-radius: 200px;
    -webkit-appearance: none;
}
/* ets_advancedcaptcha */
label[for="pa_captcha"] {
    padding: 0;
    color: var(--mr_color__white);
    font-size: var(--mr_fontsize__xsmall);
    display: block;
    width: 100%;
    text-align: left;
}
.captcha_register label[for="pa_captcha"] {
    color: var(--mr_color__primary);
}
.pa-captcha-inf {
    text-align: left;
    padding: 0;
    width: 100%;
}
.pa_captcha_img_data {
    border-radius: 50px;
}
.pa_captcha_img + input {
    max-height: 30px;
    border-radius: 50px;
}
.pa-captcha-inf + .form-group-captcha .form-control-comment {
    margin: 0;
}
.captcha_contact > label.col-md-3 {
    width: 100%;
    text-align: left;
}
.page-customer-account #content .captcha_register {
    max-width: 230px;
    margin: 0 auto;
}
.page-customer-account #content .captcha_register .pa_captcha_img + input {
    min-height: 30px;
    border-radius: 50px;
}
.page-customer-account #content .form-footer {
    display: flex;
    justify-content: center;
}
.tooltip-info {
    position: absolute;
    right: -5px;
    margin-top: 3px;
}
.form-group-address2,
#field-address2 {
    display: none !important;
}
#customer-form .form-group-optin {
    display: none;
}
.info-maintance-display {
    display: none !important;
}


.products .product .mr_addbtn span,
#product .add-to-cart span {
    pointer-events: none;
}
/* Spinner CSS */
.spinner {
    display: none;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 3px solid rgba(38, 50, 111, 0.3);
    border-left-color: rgb(38, 50, 111);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
}
.products .product .mr_btn .spinner {
    top: 8px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.mr_categorylist-single .mr_categorylist-desc h3 {
    word-wrap: break-word;
    width: 100%;
}
.cms-id-11 .page-content.page-cms ol > li ul {
    list-style: initial;
    margin-left: 15px !important;
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
}
.cms-id-11 .page-content.page-cms li {
    white-space: nowrap !important;
}
.cms-id-11 .page-content.page-cms p,
.crazyelements-pro-default .page-content.page-cms p  {
    float: none;
}
.page-cms ul li,
.page-cms ol li {
    white-space: unset !important;
}
.form-group-customer_privacy *,
.form-group-psgdpr * {
    font-weight: 600 !important;
}
.g-recaptcha-bubble-arrow + div
{
    position: fixed !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

/* .lang-po .hide-element-by-lang,
.lang-lv .hide-element-by-lang,
.lang-po .mr_categorylist,
.lang-lv .mr_categorylist,
.lang-po .mr_header_menu_right,
.lang-lv .mr_header_menu_right,
.lang-po #footer_sub_menu_1 li:nth-child(2),
.lang-lv #footer_sub_menu_1 li:nth-child(2),
.lang-po #footer_sub_menu_1 li:nth-child(4),
.lang-lv #footer_sub_menu_1 li:nth-child(4),
.lang-po .section--jakosc-badania .universal-element:nth-child(1),
.lang-lv .section--jakosc-badania .universal-element:nth-child(1) {
    display: none;
    visibility: hidden;
} */

.lang-pl .mrs_peptides .mm_before_breaker + .mm_breaker,
.lang-de .mrs_peptides .mm_before_breaker + .mm_breaker {
    display: none !important;
    visibility: hidden !important;
}

.lang-pl .sarms-cat {
    display: none;
    visibility: hidden;
}

/* .lang-po .ets_mm_mega,
.lang-lv .ets_mm_mega {
    max-width: 1200px;
    margin: 0 auto;
}
.lang-po #header .layout_layout1 .mm_menus_ul,
.lang-lv #header .layout_layout1 .mm_menus_ul {
    justify-content: flex-start;
} */
.lang-po .mr_footer-description,
.lang-lv .mr_footer-description {
    width: 430px;
}

.swiperMainProd img,
.mr_single_gallery .swiperThumbs .swiper-slide img {
    max-width: 100%;
}

body#checkout section.checkout-step .payment-options>div .payment-option.active,
body#checkout section.checkout-step .payment-options .additional-information.active {
    background-color: var(--mr_color__lightblue);
}

@media (max-width: 480px) {
    #category #content-wrapper {
        padding: 0;
    }
    #category #main {
        margin: 0;
        max-width: 100%;
    }
}

.sticky-container {
    position: fixed;
    max-width: 610px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    bottom: 0;
    transition: opacity 0.2s;
    padding: var(--space);
    background: white;
    left: 0;
    text-align: center;
    padding-bottom: 5px;
    padding-top: 5px;
    z-index: 10;
    display: none;
}
@media (max-width: 768px) {
    .sticky-container {
        display: block;
    }
}
.sticky-container .btn {
    width: calc(100% - 40px);
    max-width: 240px;
    outline: 0;
    transition: border .3s ease, color .3s ease, background-color .3s ease;
    background: var(--mr_color__white);
    border: 1px solid var(--mr_color__pacificblue);
    color: var(--mr_color__pacificblue);
    position: relative;
}
.sticky-container .btn:not(:disabled):hover,
.sticky-container .btn:not(:disabled):hover,
.sticky-container .btn:not(:disabled):focus,
.sticky-container .btn:not(:disabled):focus {
    background: var(--mr_color__pacificblue);
    border: 1px solid var(--mr_color__pacificblue);
    color: var(--mr_color__white);
}
.sticky-container .spinner {
    right: 7px;
    top: 7px;
}
.u-hidden {
    opacity: 0;
    pointer-events: none;
}

.mr_promo-bf {
    background-color: var(--mr_color__black);
    color: var(--mr_color__white);
    text-align: center;
    padding: 6px 4px 5px 4px;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.2;
}
.mr_promo-bf-timer {
    display: none;
}
.mr_promo-bf-timer.show-timer {
    display: inline-block;
}
li.ets_solo_social_item.item_type_custom.facebook.active:before {
    display: none;
}
.mr_promo-bf a {
    color: #fff !important;
}

.internal-cat-listing {
    padding: 0px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
	margin: 20px 0;
}

.internal-cat-listing-header {
	font-size: var(--mr_fontsize__medium);
    padding-top: 20px;
    padding-bottom: 10px;
	text-transform:unset !important;
}

.internal-cat-listing a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 600;
	font-size: var(--mr_fontsize__xsmall);
    width: 100%;
    margin: 0 auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid;
	padding: 13px 0 !important;
	text-transform:unset;
}


@media (max-width:310px) {
    .internal-cat-listing {
        grid-template-columns: unset;
    }
}
.pclass-myfatoorah img {
    max-width: 260px !important;
    width: 100% !important;
}
@media (max-width:768px) {
    .pclass-myfatoorah label {
        flex-direction: column;
    }
}
body#checkout section.checkout-step .payment-options > div .payment-option {
    border-radius: 14px;
}
body#checkout section.checkout-step .payment-options > div .payment-option.active {
    border-left: 1px solid var(--mr_color__primary);
    border-right: 1px solid var(--mr_color__primary);
    border-top: 1px solid var(--mr_color__primary);
    border-bottom: none;
    border-radius: 14px 14px 0 0;
}
body#checkout section.checkout-step .payment-options .additional-information.active {
    border-left: 1px solid var(--mr_color__primary);
    border-right: 1px solid var(--mr_color__primary);
    border-bottom: 1px solid var(--mr_color__primary);
    border-top: none;
    border-radius: 0 0 14px 14px;
}
.bluepayment-gateways__item label {
    border-radius: 14px;
}
body#checkout section.checkout-step .payment-options > div .payment-option:hover {
    border-color: var(--mr_color__blue);
}
.bluepayment-gateways__item:hover label {
    border-color: var(--mr_color__blue);
}
button.mr_addbtnjoli.mr_btn.mr_btn-small.mr_addbtn {
    padding: 4px 15px;
    margin-left: 80px;
    top: -37px;
    text-align: right;
    z-index: 60;
    position: absolute;
}
a.mr_addbtnjoli.mr_btn.mr_btn-small.mr_addbtn {
    padding: 4px 15px;
    margin-left: 80px;
    top: -37px;
    text-align: right;
    z-index: 60;
    position: absolute;
}
.mr_addbtn_wrapper {
    position: relative;
}

.mr_addbtn_wrapper .mr_btn {
    margin: 0 auto 0 auto;
    display: block;
    text-align: center;
    background: var(--mr_color__white);
    border: 1px solid var(--mr_color__pacificblue);
    color: var(--mr_color__pacificblue);
    position: relative;
    transition: all .3s ease-in-out;
    padding: 8px 13px;
    outline: none;
}

.mr_addbtn_wrapper .mr_addbtn:before {
    content: '';
    background-image: url('/themes/classic_child/assets/img/cart-add.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 13px;
    height: 13px;
    display: block;
    z-index: 1;
    position: absolute;
    left: 7px;
    opacity: 0;
    transition: all .1s ease-in-out;
}
.mr_addbtn_wrapper .spinner {
    width: 15px;
    height: 15px;
    top: 5px;
    left: 40px;
}

.mr_addbtn_wrapper .mr_addbtn:hover:before {
    opacity: 1;
}

.mr_addbtn_wrapper .mr_addbtn span {
    position: relative;
    transition: all .3s ease-in-out;
    right: 0;
}

.mr_addbtn_wrapper .mr_addbtn:hover span {
    right: -10px;
}
.mr_addbtn_wrapper .mr_btn:hover,
.mr_addbtn_wrapper .mr_btn:active,
.mr_addbtn_wrapper .mr_btn:focus {
    background: var(--mr_color__pacificblue);
    border: 1px solid var(--mr_color__pacificblue);
    color: var(--mr_color__white);
}

@media (max-width: 480px) {
    button.mr_addbtnjoli.mr_btn.mr_btn-small.mr_addbtn {
        top: -32px;
        margin-left: auto;
        margin-right: 5px;
        left: auto;
        right: 0;
    }
}

/* Modification for promotions and discount module label */
.product-miniature .thumbnail-top,
.product-miniature .thumbnail-container,
.product-miniature .product-description {
    position: static;
}
/* .qd_prod_promoinfo {
    font-size: 13px;
    position: absolute;
    top: 25px;
    right: 0;
    left: 0;
    background: #DF576E;
    border: #DF576E;
    padding: 4px;
    border-radius: 8px;
    color: #fff;
    width: fit-content;
    margin: 0 auto;
} */
.qd_prod_promoinfo {
    font-size: 13px;
    background: var(--mr_color__linkwater);
    border: var(--mr_color__linkwater);
    padding: 6px 6px 7px 6px;
    border-radius: 5px;
    color: var(--mr_color__primary);
    width: fit-content;
    margin: 10px auto 0 auto;
    font-weight: 600;
}
#product .qd_prod_promoinfo {
    margin-left: 0;
}
#header .product-miniature {
    position: relative;
}
#header .qd_prod_promoinfo {
    line-height: 1;
    top: 4px;
    right: 4px;
    font-size: 12px;
}
.crosssell_product_list_wrapper .product.slick-slide article.product-miniature {
    position: relative;
}
.ets_crosssell_block .product-miniature .thumbnail-container,
.ets_crosssell_block .product-miniature .product-description {
    position: static;
}
/* .lang-gb .sarms-cat {
    display: none;
    visibility: hidden;
} */
.lang-gb .mrs_peptides .mm_columns_ul .column_size_5:first-child,
.lang-de .mrs_peptides .mm_columns_ul .column_size_5:first-child {
    display: none !important;
    visibility: hidden !important;
}
.lang-gb .sarms-cat .mm_columns_ul .column_size_3:first-child,
.lang-de .sarms-cat .mm_columns_ul .column_size_3:first-child {
    display: none !important;
    visibility: hidden !important;
}


.bw-permalink {
    position: relative;
    border-radius: 30px;
}

.bw-permalink .bw-textlink {
    text-align: left;
    padding: 5px 40px 5px 15px;
    height: auto;
    width: 100%;
    display: block;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #494949;
    border-radius: 25px;
    border: 1px solid #fff;
    background-color: #fff;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.3s ease;
    margin-top: 4px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .bw-permalink .bw-textlink {
        width: 100%;
    }
}

.bw-permalink .bw-textlink:focus {
    border-color: #d8d8d8;
}

.bw-permalink .bw-textlink::-moz-selection {
    color: #fff;
    background-color: var(--mr_color__primary);
}

.bw-permalink .bw-textlink::selection {
    color: #fff;
    background-color: var(--mr_color__primary);
}

.bw-permalink .bw-copylink {
    position: absolute;
    top: 48%;
    right: 18px;
    cursor: pointer;
}

.bw-permalink .bw-copylink:hover:after {
    opacity: 1;
    transform: translateY(-20px) translateX(-50%);
}

.bw-permalink .bw-copylink:after {
    content: attr(tooltip);
    width: max-content;
    bottom: -40px;
    left: 50%;
    padding: 5px;
    border-radius: 8px;
    font-size: 0.8rem;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    font-weight: 500;
    background-color: var(--mr_color__primary);
    color: #ffffff;
    transform: translateY(-10px) translateX(-50%);
    transition: all 300ms ease;
    text-align: center;
    z-index: 20;
}

.bw-permalink .bw-copylink i {
    font-size: 20px;
    color: var(--mr_color__primary);
    font-family: "FontAwesome";
    font-weight: 400;
}

#order-confirmation .definition-list dl {
    font-weight: 500;
}

@media (max-width: 767px) {
    #order-confirmation .definition-list dl {
        display: block;
    }

    #order-confirmation .definition-list dt {
        margin-top: 10px;
        background-color: var(--mr_color__primary);
        color: #fff;
    }
}
.section-promo-banner {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 2rem;
}
.promo-banner-content {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    padding: 52px 62px;
    height: 100%;
}
.promo-banner-img {
    width: 100%;
    object-fit: cover;
    z-index: 1;
}
.mr_btn--promo-banner {
    border: 1px solid var(--mr_color__pacificblue);
    color: var(--mr_color__pacificblue);
    display: inline-block;
}
.mr_btn--promo-banner.mr_btn:not(:disabled):hover:hover {
    background-color: var(--mr_color__pacificblue);
}
.promo-banner-content :is(.promo-banner-header, .promo-banner-description){
    color: var(--mr_color__white);
}
.promo-banner-description {
    line-height: 1.7em;
    width: 92%;
}
.promo-banner-content {
    width: 55%;
}
.promo-banner-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
@media screen and (max-width: 1300px) {
    .promo-banner-content {
        gap: 22px;
    }
    .promo-banner-content {
        z-index: 2;
        position: relative;
        padding: 52px 62px;
    }
    .promo-banner-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    .promo-banner-description {
        width: 100%;
    }
}
@media screen and (max-width: 1100px) {
    .promo-banner-content {
        width: 70%;
    }
    .promo-banner-content {
        padding: 52px 42px;
    }
}
@media screen and (max-width: 768px) {
    .promo-banner-content {
        width: 100%;
    }
    .promo-banner-img {
        filter: brightness(0.7);
    }
}
@media screen and (max-width: 500px) {
    .promo-banner-content {
        width: 100%;
    }
    .promo-banner-content {
        gap: 13px;
        padding: 26px 28px 220px 28px;
    }
    .promo-banner-header {
        font-size: var(--mr_fontsize__bigger);
    }
    .promo-banner-img {
        object-position: bottom;
    }

}
@media screen and (max-width: 400px) {
    .promo-banner-header {
        font-size: var(--mr_fontsize__big);
    }
    .promo-banner-content {
        gap: 13px;
        padding: 26px 28px 180px 28px;
    }
}
.section-our-mission {
    gap: 55px;
    margin-top: 60px;
}
.section-our-mission .mr_btn {
    display: inline-block;
    margin-top: 28px;
}
.our-mission-description {
    margin-top: 28px;
    line-height: 1.7em;
}
.section-our-mission .mr_btn:hover {
    background-color: var(--mr_color__pacificblue);
    border: 1px solid var(--mr_color__pacificblue);
}
.our-mission-section-text-wrapper {
    padding: 130px 115px 130px 0;
    width: 85%;
}
.our-mission-section-text-wrapper::before {
    position: absolute;
    content: "";
    border-radius: 0 10px 10px 0;
    width: calc(100% + calc((100vw - var(--global-width))/2));
    height: 100%;
    top: 0;
    right: 0;
    background: url("../img/our-mission-background.jpg") no-repeat center;
    background-size: cover;
}
.our-mission-section-bullet-points {
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
}
.our-mission-bullet-point {
    padding: 30px 0;
    gap: 26px;
}
.our-mission-bullet-point-text-wrapper {
    width: calc(100% - 78px);
}
.our-mission-bullet-point:not(:last-of-type) {
    border-bottom: 1px solid #EEF0F3;
}
.our-mission-bullet-point-description {
    line-height: 1.7em;
    margin-top: 10px;
    /*white-space: break-spaces;*/
}
.our-mission-bullet-point-img {
    width: 52px;
    height: 52px;
}
.our-mission-bullet-point-img img {
    width: 100%;
    height: auto;
}
@media screen and (max-width: 992px) {
    .our-mission-section-text-wrapper {
        padding: 130px 60px 130px 0;
    }
}
@media screen and (max-width: 768px) {
    .section-our-mission {
        flex-direction: column;
        gap: 15px;
    }
    .our-mission-section-text-wrapper {
        width: 100%;
        padding: 46px 16px 46px 0;
    }
    .our-mission-section-bullet-points {
        width: 100%;
        max-width: unset;
    }
    .our-mission-bullet-point {
        padding: 20px 0;
    }
    .our-mission-bullet-point-text-wrapper {
        padding-right: 16px;
    }
    .our-mission-section-text-wrapper::before {
        background: url("../img/our-mission-background-mobile.jpg") no-repeat center;
        background-size: cover;
    }
}

.page-index h4.ets_crosssell_title {
    border-top: none;
}

.pclass-stripe_official + .additional-information.active + .js-payment-option-form {
    border-left: 1px solid var(--mr_color__primary);
    border-right: 1px solid var(--mr_color__primary);
    border-bottom: 1px solid var(--mr_color__primary);
    border-top: none;
    border-radius: 0 0 14px 14px;
}
.pclass-stripe_official + .additional-information.active {
    border-bottom: none !important;
    border-radius: 0 !important;
}
.pclass-stripe_official + .additional-information.active + .js-payment-option-form {
    border-left: 1px solid var(--mr_color__primary);
    border-right: 1px solid var(--mr_color__primary);
    border-bottom: 1px solid var(--mr_color__primary);
    border-top: none;
    border-radius: 0 0 14px 14px;
    background-color: var(--mr_color__lightblue);
    padding-left: 20px;
    padding-right: 20px;
}
.seo-top-wrapper {
    padding: max(40px, 4rem) 0;
}
.seo-bottom-wrapper {
    background: #F5F9FF;
    padding: max(74px, 7.4rem) 0;
}
.seo-bottom-wrapper__inner {
    columns: 2;
    /*display: grid;*/
    /*grid-template-columns: repeat(2, 1fr);*/
    column-gap: max(25px, 2.5rem);
    /*row-gap: max(40px, 4rem);*/
}
.seo-single-text {
    break-inside: avoid;
    margin-bottom: max(40px, 4rem);
}
.seo-single-text :is(p, ul) {
    line-height: 1.78em;
    text-align: justify;
    color: #7478A3;
    margin-top: max(44px, 4.4rem);
    /*margin-top: max(14px, 1.4rem);*/
}
.seo-single-text p:first-of-type {
    margin-top: max(14px, 1.4rem);
}
.seo-single-text ul {
    list-style-type: disc;
    padding-inline-start: 16px;
    margin-top: max(14px, 1.4rem);
}
.seo-single-text h2 {
    line-height: normal;
}
@media screen and (max-width: 992px) {
    .seo-bottom-wrapper {
        padding: max(45px, 4.5rem) 0;
    }
    .seo-bottom-wrapper__inner {
        columns: 1;
    }
}
@media (min-width: 768px) {
    .lang-pl #header .layout_layout1 .mrs_peptides > .mm_columns_ul > li:first-child .menu-arrow-container,
    .lang-de #header .layout_layout1 .mrs_peptides > .mm_columns_ul > li:first-child .menu-arrow-container,
    .lang-de #header .layout_layout1 .sarms_cat > .mm_columns_ul > li:first-child .menu-arrow-container {
        display: block !important;
        position: absolute;
        right: 0;
        top: 0;
    }
    .lang-pl #header .layout_layout1 .mm_menus_li.mm_sub_align_full.mrs_2_col_prod.mrs_peptides .mm_columns_li.column_size_2,
    .lang-de #header .layout_layout1 .mm_menus_li.mm_sub_align_full.mrs_2_col_prod.mrs_peptides .mm_columns_li.column_size_2,
    .lang-de #header .layout_layout1 .mm_menus_li.mm_sub_align_full.mrs_3_col_prod.sarms-cat .mm_columns_li.column_size_2 {
        width: 41.6667%;
    }
    .lang-pl #header .layout_layout1 .mm_menus_li.mm_sub_align_full.mrs_2_col_prod.mrs_peptides .mm_columns_li.column_size_5,
    .lang-de #header .layout_layout1 .mm_menus_li.mm_sub_align_full.mrs_2_col_prod.mrs_peptides .mm_columns_li.column_size_5,
    .lang-de #header .layout_layout1 .mm_menus_li.mm_sub_align_full.mrs_3_col_prod.sarms-cat .mm_columns_li.column_size_5 {
        width: 58.3333%;
    }
    .lang-pl #header .layout_layout1 .mm_menus_li.mm_sub_align_full.mrs_2_col_prod.mrs_peptides .mm_block_type_product .product:nth-child(3),
    .lang-de #header .layout_layout1 .mm_menus_li.mm_sub_align_full.mrs_2_col_prod.mrs_peptides .mm_block_type_product .product:nth-child(3),
    .lang-de #header .layout_layout1 .mm_menus_li.mm_sub_align_full.mrs_3_col_prod.sarms-cat .mm_block_type_product .product:nth-child(3) {
        display: block;
    }
    .lang-pl #header .layout_layout1 .mm_menus_li.mm_sub_align_full.mrs_2_col_prod.mrs_peptides li.has-sub>.ets_mm_categories,
    .lang-de #header .layout_layout1 .mm_menus_li.mm_sub_align_full.mrs_2_col_prod.mrs_peptides li.has-sub>.ets_mm_categories,
    .lang-de #header .layout_layout1 .mm_menus_li.mm_sub_align_full.mrs_3_col_prod.sarms-cat li.has-sub>.ets_mm_categories {
        display: grid;
        grid-template-columns: repeat(2, 50%);
        grid-template-rows: min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content;
    }
    .lang-pl .mrs_peptides > .mm_columns_ul > li:first-child .hidden,
    .lang-de .mrs_peptides > .mm_columns_ul > li:first-child .hidden,
    .lang-de .sarms-cat > .mm_columns_ul > li:first-child .hidden {
        display: block !important;
    }
    .lang-pl .mrs_peptides > .mm_columns_ul > li:first-child .show-more-types,
    .lang-de .mrs_peptides > .mm_columns_ul > li:first-child .show-more-types,
    .lang-de .sarms-cat > .mm_columns_ul > li:first-child .show-more-types {
        display: none !important;
    }
    .lang-pl .mrs_peptides > .mm_columns_ul > li:first-child .menu-arrow-container,
    .lang-de .mrs_peptides > .mm_columns_ul > li:first-child .menu-arrow-container,
    .lang-de .sarms-cat > .mm_columns_ul > li:first-child .menu-arrow-container {
        display: none !important;
    }
}
/*KARAS X BIOLAB LANDING PAGE*/
body.cms-id-16 {
    scroll-behavior: smooth;
}
body.cms-id-16 #main :is(.page-content, .page-footer) {
    margin-bottom: unset;
    text-align: left;
}
body.cms-id-16 :is(header, footer#footer) {
    display: none!important;
}
body.cms-id-16 {
    background: var(--mr_color__black);
    color: var(--mr_color__white);
}
.landing-img {
    z-index: 0;
}
.landing-img img {
    width: 100%;
    object-fit: cover;
}
section.landing-full-width {
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
}
.landing-hero-banner {
    height: 100svh;
    align-items: center;
    justify-content: center;
}
.landing-hero-banner--inner {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: max(26px, 2.6rem);
}
.landing-content {
    z-index: 1;
}
.landing-logo {
    max-width: 60vw;
    height: auto;
}
.landing-page-main-img {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 150%;
    filter: grayscale(1);
    transform: translate(-20%, -30%);
}
.landing-learn-more {
    width: max(18px, 1.8rem);
    height: max(26px, 2.6rem);
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='27' viewBox='0 0 20 27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 17.7636L11.4142 25.3494C10.6332 26.1304 9.36683 26.1304 8.58579 25.3494L1 17.7636' stroke='white' stroke-width='2'/%3E%3Cpath d='M19 9L11.4142 16.5858C10.6332 17.3668 9.36683 17.3668 8.58579 16.5858L1 9' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.landing-introduction--inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: flex-end;
}
.landing-introduction-text-wrapper {
    width: 55%;
}
.landing-small-text {
    font-weight: var(--mr_fontweight__regular);
    font-size: var(--mr_fontsize__normal);
    letter-spacing: 0.61em;
    text-transform: uppercase;
}
.landing-introduction-heading {
    font-size: max(65px, 6.5rem);
    font-weight: var(--mr_fontweight__semibold);
    margin-top: max(18px, 1.8rem);
}
.landing-introduction-description {
    font-weight: var(--mr_fontweight__medium);
    letter-spacing: 0.04em;
    line-height: 1.6em;
    font-size: var(--mr_fontsize__normal2);
    color: var(--mr_color__white);
    text-align: left;
    margin-top: max(22px, 2.2rem);
}

.landing-introduction-img {
    left: 0;
    width: 42vw;
}

.landing-soon--inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: center;
    z-index: 2;
}
.landing-soon-text-wrapper {
    flex-direction: column;
    align-items: center;
    gap: max(32px, 3.2rem);
}
.landing-soon-heading {
    font-size: max(65px, 6.5rem);
    font-weight: var(--mr_fontweight__medium);
    line-height: 1.04em;
    letter-spacing: 0.1em;
}
.btn--landing-cta {
    padding: 20px 80px;
    background: #fff;
    color: #000;
    letter-spacing: 0.3em;
    font-weight: 600;
    line-height: 1.05em;
    border-radius: 10px;
    font-size: 14px;
    transition: .3s;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0px 0px 0px 0px rgba(0, 0, 0, 1);
}
.btn--landing-cta:hover {
    color: #fff;
    box-shadow: inset 50vw 0px 0px 0px rgba(0, 0, 0, 1);
    cursor: pointer;
}
.landing-soon-img {
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    z-index: 1;
}
.landing-apply {
    justify-content: center;
}
.landing-apply-text-wrapper {
    flex-direction: column;
    max-width: min(80vw, 650px);
}
.landing-apply--inner {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    text-align: center;
}

#applyToWaitlist {
    padding-top: max(80px, 8rem);
}
.landing-apply-img {
    max-width: 62vw;
    overflow: hidden;
}
.landing-apply-heading {
    font-size: max(65px, 6.5rem);
    font-weight: var(--mr_fontweight__semibold);
    margin-top: max(18px, 1.8rem);
}
.landing-apply-description {
    font-size: max(32px, 3.2rem);
    font-weight: var(--mr_fontweight__medium);
    line-height: 1.09em;
    margin-top: max(12px, 1.2rem);
    color: var(--mr_color__white);
}


.landing-form {
    margin-top: 42px;
}
.landing-form-row label {
    text-align: left;
}
.landing-form-row:first-of-type {
    gap: 24px;
    display: flex;
}
.landing-form-row input {
    width: 100%;
    padding: 20px 26px;
    color: #ffffffCC;
    background: #151515;
    font-size: 14px;
    border: unset;
    border-radius: 10px;
    font-family: "Clash Display", sans-serif;
}
.landing-form-row input::placeholder {
    color: #ffffffCC;
}
.btn--landing-form {
    margin-top: 24px;
    width: 100%;
    font-family: "Clash Display", sans-serif;
    border: 1px solid #fff;
}
.data-consent-row {
    margin-top: 20px;
    position: relative;
}
.data-consent-row input {
    opacity: 0;
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
}
.data-consent-row span {
    display: block;
    padding-left: 32px;
    color: #666666;
    font-size: 11px;
    line-height: 1.56em;
    font-weight: 500;
    font-family: "Arial", sans-serif;
    margin: 0;
}
.data-consent-row .custom-checkbox::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 19px;
    height: 19px;
    border: 1px solid #fff;
    border-radius: 3px;
    background-color: transparent;
}
.data-consent-row .custom-checkbox::after {
    content: " ";
    cursor: pointer;
}
.data-consent-row label input[type="checkbox"]:checked + .custom-checkbox::after {
    content: '';
    display: block;
    position: absolute;
    left: 4px;
    top: 4px;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.2L3.86364 7L10 1' stroke='white'/%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.fyp-content {
    background: #000;
    color: #fff;
    text-align: center;
    width: 700px;

}
.fyp-heading {
    font-size: 65px;
    color: #fff;
    font-weight: 600;
}
.fyp-additional-info {
    font-size: 30px;
    color: #fff;
    margin-top: 15px;
    font-weight: 400;

}
.fyp-cta {
    font-size: 35px;
    color: #fff;
    margin-top: 20px;
    font-weight: 500;
}
.landing-footer {
    margin-top: max(198px, 19.8rem);
    padding: max(52px, 5.2rem) 0;
    background: #0F0F0F;
}
.landing-footer--inner {
    align-items: center;
    flex-direction: column;
}
.landing-footer-cta {
    color: var(--mr_color__white);
    font-size: max(32px, 3.2rem);
    font-weight: var(--mr_fontweight__medium);
    line-height: 1.09em;
}
.landing-footer-social-wrapper {
    margin-top: max(30px, 3rem);
    gap: max(50px, 5rem);
}
.landing-footer-social-name {
    color: var(--mr_color__white);
    font-size: max(14px, 1.4rem);
    font-weight: var(--mr_fontweight__semibold);
    letter-spacing: 0.61em;
}
.landing-footer-social {
    align-items: center;
    gap: max(15px, 1.5rem);
}
.landing-footer-social::before {
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: max(24px, 2.4rem);
    height: max(24px, 2.4rem);
}
.landing-footer-social--ig::before {
    background-image: url("data:image/svg+xml,%3Csvg width='23' height='24' viewBox='0 0 23 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_11_357)'%3E%3Cpath d='M22.9775 7.05607C22.9236 5.78085 22.726 4.90416 22.4429 4.14449C22.1508 3.33812 21.7015 2.61617 21.1129 2.01602C20.5377 1.40652 19.8413 0.932921 19.0775 0.632936C18.3453 0.337529 17.5095 0.131312 16.2874 0.0750879C15.0562 0.0141019 14.6653 0 11.5427 0C8.41997 0 8.02911 0.0141019 6.80247 0.0703262C5.58039 0.126551 4.74022 0.332951 4.01238 0.628174C3.23943 0.932922 2.54757 1.40176 1.97242 2.01602C1.38832 2.61617 0.934631 3.34288 0.646969 4.13991C0.363871 4.90416 0.166246 5.77609 0.112365 7.0513C0.0539196 8.33604 0.0404053 8.7439 0.0404053 12.0023C0.0404053 15.2608 0.0539196 15.6686 0.107801 16.9486C0.161683 18.2238 0.359483 19.1005 0.642581 19.8602C0.934631 20.6666 1.38832 21.3885 1.97242 21.9887C2.54757 22.5982 3.244 23.0718 4.00782 23.3718C4.74022 23.6672 5.57583 23.8734 6.79808 23.9296C8.02455 23.986 8.41558 23.9999 11.5383 23.9999C14.6609 23.9999 15.0518 23.986 16.2784 23.9296C17.5005 23.8734 18.3407 23.6672 19.0685 23.3718C20.6143 22.7482 21.8363 21.4729 22.4339 19.8602C22.7169 19.096 22.9147 18.2238 22.9686 16.9486C23.0224 15.6686 23.0359 15.2608 23.0359 12.0023C23.0359 8.7439 23.0314 8.33604 22.9775 7.05607ZM20.9063 16.8549C20.8568 18.027 20.6681 18.6599 20.5109 19.0819C20.1244 20.1274 19.3292 20.9572 18.3272 21.3605C17.9228 21.5246 17.3119 21.7215 16.193 21.7729C14.9798 21.8293 14.616 21.8433 11.5472 21.8433C8.47842 21.8433 8.11002 21.8293 6.90128 21.7729C5.77801 21.7215 5.17145 21.5246 4.76707 21.3605C4.26845 21.1682 3.81458 20.8634 3.44618 20.4649C3.06427 20.0758 2.77222 19.6069 2.58794 19.0866C2.43068 18.6647 2.24201 18.027 2.19269 16.8596C2.13863 15.5937 2.12529 15.2139 2.12529 12.0117C2.12529 8.80946 2.13863 8.42505 2.19269 7.16394C2.24201 5.99183 2.43068 5.3589 2.58794 4.93694C2.77222 4.41645 3.06427 3.94303 3.45075 3.55843C3.82353 3.15992 4.27284 2.85517 4.77164 2.66306C5.17601 2.49896 5.78714 2.30209 6.90584 2.25044C8.11897 2.19422 8.48298 2.18011 11.5516 2.18011C14.625 2.18011 14.9888 2.19422 16.1975 2.25044C17.3208 2.30209 17.9274 2.49896 18.3317 2.66306C18.8304 2.85517 19.2842 3.15992 19.6526 3.55843C20.0345 3.94761 20.3266 4.41645 20.5109 4.93694C20.6681 5.3589 20.8568 5.99641 20.9063 7.16394C20.9602 8.42981 20.9737 8.80946 20.9737 12.0117C20.9737 15.2139 20.9602 15.589 20.9063 16.8549Z' fill='white'/%3E%3Cpath d='M11.5427 5.83716C8.2808 5.83716 5.63428 8.59856 5.63428 12.0024C5.63428 15.4063 8.2808 18.1677 11.5427 18.1677C14.8047 18.1677 17.451 15.4063 17.451 12.0024C17.451 8.59856 14.8047 5.83716 11.5427 5.83716ZM11.5427 16.0017C9.42653 16.0017 7.71004 14.2107 7.71004 12.0024C7.71004 9.79411 9.42653 8.00317 11.5427 8.00317C13.659 8.00317 15.3753 9.79411 15.3753 12.0024C15.3753 14.2107 13.659 16.0017 11.5427 16.0017Z' fill='white'/%3E%3Cpath d='M19.0641 5.59336C19.0641 6.38819 18.4465 7.03267 17.6846 7.03267C16.9229 7.03267 16.3053 6.38819 16.3053 5.59336C16.3053 4.79834 16.9229 4.15405 17.6846 4.15405C18.4465 4.15405 19.0641 4.79834 19.0641 5.59336Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_11_357'%3E%3Crect width='23' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.landing-footer-social--fb::before {
    background-image: url("data:image/svg+xml,%3Csvg width='23' height='24' viewBox='0 0 23 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.2811 24V13.0533H16.801L17.3291 8.78588H13.2811V6.06176C13.2811 4.82664 13.6085 3.98492 15.3078 3.98492L17.4715 3.98399V0.167076C17.0973 0.116334 15.8129 0 14.3179 0C11.1961 0 9.05884 1.98836 9.05884 5.63912V8.78588H5.52832V13.0533H9.05884V24H13.2811Z' fill='white'/%3E%3C/svg%3E%0A");
}
.btn--landing-cta--footer {
    box-shadow: inset 0px 0px 0px 0px rgba(255, 255, 255, 1);
    border: 1px solid var(--mr_color__white);
    color: var(--mr_color__white);
    background: #0F0F0F;
    margin-top: max(30px, 3rem);
    display: flex;
    gap: max(10px, 1rem);
    text-transform: uppercase;
}
.btn--landing-cta--footer::after {
    content: "";
    width: max(14px, 1.4rem);
    height: max(11px, 1.1rem);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.5H11.8571M8.42857 10C8.42857 10 13 5.95 13 5.5C13 5.05 8.93686 1 8.93686 1' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    transition: .3s;
}
.btn--landing-cta:hover {
    color: var(--mr_color__black);
    box-shadow: inset 50vw 0px 0px 0px rgba(255, 255, 255, 1);
}
.btn--landing-cta:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.5H11.8571M8.42857 10C8.42857 10 13 5.95 13 5.5C13 5.05 8.93686 1 8.93686 1' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}


/*KARAS X BIOLAB LANDING PAGE PRODUCTS UPDATE*/
.landing-introduction-heading {
    font-size: max(48px, 4.8rem);
    font-weight: var(--mr_fontweight__bold);
}
.landing-apply-heading {
    font-size: max(48px, 4.8rem);
    font-weight: var(--mr_fontweight__bold);
}
.landing-apply-text-wrapper {
    max-width: min(80vw, 800px);
}
.landing-products-text-wrapper {
    max-width: max(1000px, 100rem);
}
.landing-products-heading {
    font-size: max(32px, 3.2rem);
    line-height: 1.15em;
    max-width: 80vw;
}
.landing-footer {
    margin-top: max(45px, 4.5rem);
}
.landing-apply-img {
    max-height: 1500px;
}
.landing-img img {
    object-position: top;
}
.landing-products--inner {
    flex-direction: column;
}
.landing-products-grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: max(30px, 3rem);
    row-gap: max(50px, 5rem);
    margin-top: max(62px, 6.2rem);
}
.btn--landing-cta--product {
    box-shadow: inset 0px 0px 0px 0px rgba(255, 255, 255, 1);
    border: 1px solid var(--mr_color__white);
    color: var(--mr_color__black);
    background: var(--mr_color__white);
    margin-top: max(30px, 3rem);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: max(10px, 1rem);
    padding: 20px 30px;
    width: 100%;
}
.btn--landing-cta--product:hover {
    color: var(--mr_color__white);
    box-shadow: inset 40vw 0px 0px 0px rgba(0, 0, 0, 1);
}
.btn--landing-cta--product::after {
    content: "";
    width: max(23px, 2.3rem);
    height: max(22px, 2.2rem);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: .3s;
    background-image: url("data:image/svg+xml,%3Csvg width='23' height='22' viewBox='0 0 23 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.9998 11C16.9954 10.5177 16.8011 10.0566 16.459 9.71665L12.5265 5.77498C12.3548 5.60425 12.1224 5.50842 11.8803 5.50842C11.6381 5.50842 11.4058 5.60425 11.234 5.77498C11.1481 5.8602 11.0799 5.96158 11.0334 6.07329C10.9868 6.18499 10.9629 6.30481 10.9629 6.42582C10.9629 6.54683 10.9868 6.66664 11.0334 6.77834C11.0799 6.89005 11.1481 6.99143 11.234 7.07665L14.2498 10.0833H5.08317C4.84006 10.0833 4.6069 10.1799 4.43499 10.3518C4.26308 10.5237 4.1665 10.7569 4.1665 11C4.1665 11.2431 4.26308 11.4763 4.43499 11.6482C4.6069 11.8201 4.84006 11.9166 5.08317 11.9166H14.2498L11.234 14.9325C11.0614 15.1039 10.9639 15.3368 10.9631 15.5801C10.9622 15.8233 11.058 16.057 11.2294 16.2296C11.4008 16.4022 11.6338 16.4996 11.877 16.5005C12.1203 16.5014 12.3539 16.4055 12.5265 16.2341L16.459 12.2925C16.8033 11.9502 16.9978 11.4854 16.9998 11Z' fill='black'/%3E%3C/svg%3E%0A");
}
.btn--landing-cta--product:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg width='23' height='22' viewBox='0 0 23 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.9998 11C16.9954 10.5177 16.8011 10.0566 16.459 9.71665L12.5265 5.77498C12.3548 5.60425 12.1224 5.50842 11.8803 5.50842C11.6381 5.50842 11.4058 5.60425 11.234 5.77498C11.1481 5.8602 11.0799 5.96158 11.0334 6.07329C10.9868 6.18499 10.9629 6.30481 10.9629 6.42582C10.9629 6.54683 10.9868 6.66664 11.0334 6.77834C11.0799 6.89005 11.1481 6.99143 11.234 7.07665L14.2498 10.0833H5.08317C4.84006 10.0833 4.6069 10.1799 4.43499 10.3518C4.26308 10.5237 4.1665 10.7569 4.1665 11C4.1665 11.2431 4.26308 11.4763 4.43499 11.6482C4.6069 11.8201 4.84006 11.9166 5.08317 11.9166H14.2498L11.234 14.9325C11.0614 15.1039 10.9639 15.3368 10.9631 15.5801C10.9622 15.8233 11.058 16.057 11.2294 16.2296C11.4008 16.4022 11.6338 16.4996 11.877 16.5005C12.1203 16.5014 12.3539 16.4055 12.5265 16.2341L16.459 12.2925C16.8033 11.9502 16.9978 11.4854 16.9998 11Z' fill='white'/%3E%3C/svg%3E%0A");
}
.landing-product-tile-image {
    border: max(1px, 0.1rem) solid var(--mr_color__white);
    border-radius: max(10px, 1rem);
    height: max(350px, 35rem);
    display: flex;
    align-items: center;
    justify-content: center;
}
.landing-product-name {
    font-size: max(16px, 1.6rem);
    margin-top: max(18px, 1.8rem);
    font-weight: var(--mr_fontweight__medium);
    display: block;
}
.landing-product-price {
    font-size: max(24px, 2.4rem);
    font-weight: var(--mr_fontweight__bold);
    margin: max(14px, 1.4rem) auto 0;
    display: block;
}
.landing-product-tile a {
    color: inherit;
}
.landing-apply {
    margin-top: -100px;
}
@media screen and (max-width: 1400px) {
    .landing-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 992px) {
    .landing-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .landing-products-heading {
        font-size: max(28px, 2.8rem);
    }
}

@media screen and (max-width: 662px) {
    .landing-products-grid {
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
    }
    .landing-product-tile {
        width: max(400px, 40rem);
        max-width: 80vw;
    }
    .landing-products-heading {
        font-size: max(26px, 2.6rem);
    }
    @media screen and (max-width: 992px) {
        .landing-apply {
            margin-top: max(30px, 3rem);
        }
    }
}

/*KARAS X BIOLAB LANDING PAGE MOBILE*/
@media screen and (max-width: 1400px) {
    .landing-introduction-img {
        width: 45vw;
    }
    .landing-soon {
        margin-top: max(120px, 12rem);
    }
}
@media screen and (max-width: 1250px) {
    .landing-introduction-heading br {
        display: none;
    }
    .landing-apply-description br {
        display: none;
    }

}
@media screen and (max-width: 992px) {
    .landing-introduction--inner {
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
    }
    .landing-introduction {
        flex-direction: column-reverse;
        gap: max(40px, 4rem);
    }
    .landing-introduction-text-wrapper {
        width: 100%;
    }
    .landing-introduction-img {
        width: 80vw;
    }
    .landing-apply {
        margin-top: max(60px, 6rem);
    }
    .landing-apply-img {
        max-width: 90vw;
    }
    .landing-soon-img {
        width: 50%;
    }
}
@media screen and (max-width: 768px) {
    .landing-logo {
        max-width: 85vw;
    }
    .btn--landing-cta:hover {
        box-shadow: inset 100vw 0px 0px 0px rgba(0, 0, 0, 1);
    }
    .btn--landing-cta--footer:hover {
        box-shadow: inset 100vw 0px 0px 0px rgba(255, 255, 255, 1);
    }
}
@media screen and (max-width: 600px) {
    .landing-introduction-heading {
        font-size: max(50px, 5rem);
    }
    .landing-soon-heading {
        font-size: max(50px, 5rem);
    }
    .landing-apply-heading {
        font-size: max(50px, 5rem);
    }
    .landing-apply-description {
        font-size: max(26px, 2.6rem);
    }
    .landing-footer-cta {
        font-size: max(26px, 2.6rem);
    }
    .landing-soon {
        margin-top: max(60px, 6rem);
    }
    .landing-apply {
        flex-direction: column;
        align-items: center;
    }
    .landing-apply--inner {
        position: relative;
        left: unset;
        top: unset;
        margin-top: -50%;
        transform: unset;
    }
    .landing-footer {
        margin-top: max(90px, 9rem);
    }
    .landing-introduction-img {
        width: 100vw;
    }
    section.landing-full-width {
        padding-left: 10px;
        padding-right: 10px;
    }
    .landing-footer-social-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    iframe#salesmanagoIframe {
        height: 450px!important;
    }
}
@media screen and (max-width: 480px) {
    .landing-introduction-heading {
        font-size: max(35px, 3.5rem);
    }
    .landing-soon-heading {
        font-size: max(35px, 3.5rem);
    }
    .landing-apply-heading {
        font-size: max(35px, 3.5rem);
    }
    .landing-apply-description {
        font-size: max(20px, 2rem);
    }
    .landing-footer-cta {
        font-size: max(20px, 2rem);
    }
    .landing-footer-social-name {
        font-size: 12px;
    }
    .btn--landing-cta {
        font-size: 12px;
        padding: 20px 50px;
    }
    .landing-apply-img {
        max-width: 100vw;
    }
}

.bold-link .mm_menu_content_title,
.bold-link .mm_menus_li_title-mobile {
    font-weight: 600 !important;
    background-color: #222222 !important;
}

#tidio-chat {
    z-index: 1000 !important;
}

/* #BLUEPAYMENT START */
.bluepayment-loader-bg {
    display: none;
    width: 100%;
    height: 100%;
    margin: auto;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
    background: #222;
    opacity: .3;
    filter: alpha(opacity=30)
}

div.payment-option>label>img {
    width: 70px
}

.bluepayment-loader {
    display: none;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    animation: bluepayment_spin 1.5s linear infinite;
    margin: auto;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99
}

@keyframes bluepayment_spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

#blue_payway {
    margin-top: 20px;
    margin-bottom: 20px
}

#bluepayment-gateway {
    margin-bottom: 20px
}

.payment-option>label span {
    text-align: left
}

.payment-option>label p {
    text-align: left;
    font-size: 12px;
    margin: 0
}

.blue-gateway label {
    text-align: left;
    width: 100%;
    display: inline-block
}

.blue-gateway label img {
    width: 60px
}

.payway-text {
    padding-left: 5px;
    max-width: 198px;
    text-align: left;
    width: 100%;
    color: #000
}

@media only screen and (max-width: 1199px) {
    .payway-text {
        padding-top:0
    }
}

.blue-media-body {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.blue-media-body .bm-redirect-page-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #2f3237;
    font-family: Lato, "Open Sans", BlinkMacSystemFont, sans-serif !important
}

.blue-media-body .bm-redirect-page-content .logo {
    max-width: 180px;
    height: auto
}

.blue-media-body .bm-redirect-page-content .loader {
    margin-top: 15px
}

.blue-media-body .bm-redirect-page p {
    font-family: Lato, "Open Sans", BlinkMacSystemFont, sans-serif !important;
    color: #2f3237;
    margin-bottom: 10px;
    font-size: 14px;
    margin-top: 0
}

.blue-media-body .bm-redirect-page input[type=submit] {
    display: none
}

.bluepayment-gateways__wrap {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    display: grid;
    margin-left: -0.3rem;
    margin-right: -0.3rem;
    margin-bottom: 1rem
}

.bluepayment-gateways__item {
    padding: .3rem
}

.bluepayment-gateways__img {
    width: 65px;
    display: table;
    margin: 0 auto
}

.bluepayment-gateways__item label {
    border: 1px solid #f1f1f1;
    padding: .5rem;
    border-radius: 1px;
    display: flex !important;
    flex-direction: column;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all .3s ease;
    align-content: flex-start;
    align-items: initial;
    flex-direction: column;
    justify-content: space-between;
    font-weight: 400
}

.bluepayment-gateways__item input:checked ~ label {
    border-color: #63bb6c;
    transition: all .3s ease
}

.bluepayment-gateways__item:hover label {
    border-color: #63bb6c
}

.bluepayment-gateways__item input {
    display: none
}

.bluepayment-gateways__name {
    text-align: center;
    width: 100%;
    color: #000;
    font-size: 12px;
    margin-top: 4px;
    display: block;
    line-height: 1.2
}

.payment-option {
    display: flex;
    align-items: center
}

.payment-option label {
    margin-bottom: 0
}

.payment-brand {
    display: block;
    margin-bottom: 24px;
    max-width: 85px
}

.payment-navigation {
    margin-top: 46px;
    margin-bottom: 16px
}

body#checkout section.checkout-step .payment-options>div .payment-option {
    border-top: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    min-height: 70px;
    margin-bottom: 0
}

body#checkout section.checkout-step .payment-options>div .payment-option>label {
    display: flex;
    align-items: center;
    margin-bottom: 0
}

body#checkout section.checkout-step .payment-options>div .payment-option>label img {
    max-width: 90px;
    padding-right: 20px
}
@media (max-width: 600px) {
    body#checkout section.checkout-step .payment-options>div .payment-option>label {
        flex-wrap: wrap;
    }
    body#checkout section.checkout-step .payment-options .pclass-worldpaygateway .payment-option>label img,
    body#checkout section.checkout-step .payment-options .pclass-sibs .payment-option>label img,
    body#checkout section.checkout-step .payment-options .pclass-sibspln .payment-option>label img {
        padding-right: 5px;
        max-width: 45px;
    }
    body#checkout section.checkout-step .payment-options .pclass-worldpaygateway .payment-option>label span {
        display: block;
    }
}
body#checkout section.checkout-step .payment-options>div .payment-option>label span {
    order: 3;
    font-weight: 600
}

.bm-small-info {
    color: #767676;
    font-size: 11px
}

body#checkout .additional-information {
    font-size: .875rem;
    margin-left: 2.875rem;
    margin-top: 0;
    margin-bottom: 1.25rem
}

body#checkout section.checkout-step .payment-options .custom-radio {
    margin-right: 1.645rem
}

.additional-information p {
    color: #222;
    font-size: 13px
}

body#checkout section.checkout-step .content {
    padding: .5rem .5rem
}

body#checkout section.checkout-step .payment-options .additional-information .bm-small-info {
    display: none
}

body#checkout section.checkout-step .payment-options .additional-information.active {
    border-bottom: 1px solid #63bb6c;
    border-left: 1px solid #63bb6c;
    border-right: 1px solid #63bb6c;
    padding: 0 16px 16px 16px
}

body#checkout section.checkout-step .payment-options .additional-information.active .bm-small-info {
    display: block
}

body#checkout section.checkout-step .payment-options .additional-information[data-payment-bm=true].active {
    padding: 0 16px 16px 92px
}

body#checkout section.checkout-step .payment-options>div .payment-option {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 85px;
    margin-bottom: 0;
    margin-top: 15px;
    cursor: pointer;
    border-top: 1px solid #f1f1f1;
    border-left: 1px solid #f1f1f1;
    border-right: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    outline-offset: 0px;
    background: transparent;
    -webkit-transition: all 0.1s cubic-bezier(0.2, 0.3, 0, 1);
    -moz-transition: all 0.1s cubic-bezier(0.2, 0.3, 0, 1);
    -ms-transition: all 0.1s cubic-bezier(0.2, 0.3, 0, 1);
    -o-transition: all 0.1s cubic-bezier(0.2, 0.3, 0, 1);
    transition: all 0.1s cubic-bezier(0.2, 0.3, 0, 1)
}

body#checkout section.checkout-step .payment-options>div .payment-option:hover {
    border-color: #87ca8d;
    -webkit-transition: all 0.1s cubic-bezier(0.2, 0.3, 0, 1);
    -moz-transition: all 0.1s cubic-bezier(0.2, 0.3, 0, 1);
    -ms-transition: all 0.1s cubic-bezier(0.2, 0.3, 0, 1);
    -o-transition: all 0.1s cubic-bezier(0.2, 0.3, 0, 1);
    transition: all 0.1s cubic-bezier(0.2, 0.3, 0, 1)
}

body#checkout section.checkout-step .payment-options>div .payment-option.active {
    -webkit-transition: all 0.3s cubic-bezier(0.2, 0.3, 0, 1);
    -moz-transition: all 0.3s cubic-bezier(0.2, 0.3, 0, 1);
    -ms-transition: all 0.3s cubic-bezier(0.2, 0.3, 0, 1);
    -o-transition: all 0.3s cubic-bezier(0.2, 0.3, 0, 1);
    transition: all 0.3s cubic-bezier(0.2, 0.3, 0, 1);
    min-height: 69px;
    outline-offset: 0px;
    border-top: 1px solid #63bb6c;
    border-left: 1px solid #63bb6c;
    border-right: 1px solid #63bb6c;
    border-bottom: 0;
    margin-bottom: 0
}

body#checkout section.checkout-step .payment-options>div .payment-option.active .bm-selected-payment {
    display: flex !important;
    padding-bottom: 0
}

body#checkout section.checkout-step .payment-options>div .payment-option.active .bm-selected-payment {
    display: flex
}

body#checkout section.checkout-step .payment-options>div .payment-option .custom-radio {
    display: none
}

body#checkout section.checkout-step .payment-options>div .payment-option>label {
    padding: 16px 16px 16px 16px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    font-size: 16px;
    width: 100%;
    cursor: pointer
}

body#checkout section.checkout-step .payment-options>div .payment-option>label img {
    padding-right: 25px;
    width: 75px;
    height: auto
}

body#checkout section.checkout-step .payment-options>div .payment-option>label span {
    order: 3
}

body#checkout section.checkout-step .payment-options>div .payment-option>label span.bm-promo-desc {
    margin-top: 3px;
    display: block;
    font-weight: 400;
    font-size: 13px
}

body#checkout section.checkout-step .payment-options>div .payment-option>label span.bm-promo-desc--info {
    margin-top: 9px;
    color: #767676;
    display: block;
    font-weight: 400;
    font-size: 12px
}

body#checkout section.checkout-step .payment-options body#checkout section.checkout-step .payment-options>div .payment-option>label.bm-payment-hide {
    display: none
}

.bm-small-info {
    color: #767676;
    font-size: 12px;
    margin-bottom: 10px;
    display: block
}

body#checkout .additional-information {
    margin: 0
}

body#checkout section.checkout-step .payment-options .custom-radio {
    margin-right: 1.645rem
}

.additional-information p {
    color: #222;
    font-size: 13px
}

.bm-frame-start {
    position: relative;
    overflow: hidden;
    padding-top: 22px;
    padding-bottom: 14px
}

.bm-frame-start img {
    margin-left: 3px
}

.bm-frame-start:after {
    height: 2px;
    background-color: #006ec7;
    content: "";
    position: absolute;
    top: 28px
}

.bm-frame-start:after {
    width: 100%;
    right: -105px
}

.bm-safe-brands {
    top: 33px;
    right: 0;
    position: absolute
}

.bm-frame-end {
    position: relative;
    height: 2px;
    width: 100%;
    background-color: #006ec7;
    margin-bottom: 16px;
    margin-top: 16px
}

.bm-modal-open .bm-modal {
    overflow-x: hidden;
    overflow-y: auto
}

.bm-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    outline: 0
}

.bm-modal.bm-in {
    display: block;
    opacity: 1;
    transition: all 1s ease-out
}

.bm-modal.bm-fade.bm-in .bm-modal__dialog {
    transition: -webkit-transform 1s ease-out;
    transition: all 1s ease-out
}

.bm-modal.bm-fade .__dialog {
    transition: all 1s ease-out
}

.bm-modal__dialog {
    position: relative;
    max-width: 1000px;
    margin: 30px auto;
    box-shadow: rgba(0,0,0,0.15) 0px 8px 24px;
    z-index: 1050
}

.bm-modal__body {
    position: relative;
    padding: 15px 0
}

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

.bm-modal__content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,0.2);
    outline: 0;
    padding: 2rem
}

.bm-modal__close {
    background: transparent;
    border: 0;
    cursor: pointer
}

.bm-modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: rgba(0,0,0,0.7)
}

.bm-fade {
    transition: opacity 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
    opacity: 0
}

.bm-fade.in {
    transition: opacity 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
    opacity: 1
}

.bm-fade.bm-in {
    transition: opacity 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
    opacity: 1
}

.payment-option[data-payment-name=smartney] .bm-promo-label {
    background: #fdb83f;
    color: #fff
}

.payment-option[data-payment-name=aliorbank] .bm-promo-label {
    background: #6b113d;
    color: #fff
}

.bm-promo-label {
    padding: 1px 6px;
    font-size: 12px;
    text-transform: uppercase;
    position: absolute;
    right: 20px
}

.bm-reset {
    order: 4;
    padding: 4px;
    font-size: 16px
}

.bm-payment-wrap {
    align-self: center
}

.bm-payment-name {
    text-align: left;
    font-size: 16px;
    display: flex;
    align-items: center
}

.bm-payment-name .h6 {
    margin-bottom: 0
}

.bm-payment-desc {
    margin-top: 16px;
    text-align: left;
    font-size: 12px;
    color: #767676
}

body#checkout section.checkout-step .payment-options>div .payment-option>label.bm-selected-payment {
    align-items: flex-start
}

.bm-payment__subtitle {
    font-size: 14px
}

.bm-show {
    display: block
}

.bm-hide {
    display: none
}

.bm-d-none {
    display: none !important
}

.bm-transition {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@keyframes bm-fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1;
        display: block
    }
}

@keyframes bm-fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.bm-fadeIn {
    -webkit-animation-name: bm-fadeIn;
    animation-name: bm-fadeIn
}

@keyframes bm-fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes bm-fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.bm-fadeOut {
    -webkit-animation-name: bm-fadeOut;
    animation-name: bm-fadeOut
}

p.bm-legals {
    margin: 6px 0;
    font-size: 12px;
    color: #767676
}

p.bm-legals--first {
    padding-top: 12px
}

.bm-toggle {
    -webkit-animation-name: bm-fadeOut;
    animation-name: bm-fadeOut;
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: none
}

.bm-toggle--show {
    -webkit-animation-name: bm-fadeIn;
    animation-name: bm-fadeIn;
    display: block
}

.bm-slideshow {
    position: relative;
    width: 75px;
    height: 50px
}

.bm-slideshow .slide {
    opacity: 0;
    position: absolute;
    transition: opacity .17s linear .1s
}

.bm-slideshow .slide:first-child {
    opacity: 1
}

.js-additional-information {
    display: table;
    width: 100%
}

.js-additional-information #bm-methods-grouped {
    display: none
}

.tc-main-title {
    min-height: 85px;
    margin-bottom: 0;
    margin-top: 15px;
    border: 1px solid #f1f1f1;
    position: relative;
    padding: 6px 16px 6px 16px;
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    -webkit-transition: all 0.1s cubic-bezier(0.2, 0.3, 0, 1);
    -moz-transition: all 0.1s cubic-bezier(0.2, 0.3, 0, 1);
    -ms-transition: all 0.1s cubic-bezier(0.2, 0.3, 0, 1);
    -o-transition: all 0.1s cubic-bezier(0.2, 0.3, 0, 1);
    transition: all 0.1s cubic-bezier(0.2, 0.3, 0, 1)
}

.tc-main-title.active {
    border: 1px solid #63bb6c;
    padding: 16px
}

.tc-main-title:hover {
    border-color: #87ca8d;
    -webkit-transition: all 0.1s cubic-bezier(0.2, 0.3, 0, 1);
    -moz-transition: all 0.1s cubic-bezier(0.2, 0.3, 0, 1);
    -ms-transition: all 0.1s cubic-bezier(0.2, 0.3, 0, 1);
    -o-transition: all 0.1s cubic-bezier(0.2, 0.3, 0, 1);
    transition: all 0.1s cubic-bezier(0.2, 0.3, 0, 1)
}

.tc-main-title .additional-information p {
    color: #767676;
    font-size: 12px;
    margin-bottom: 10px
}

.tc-main-title>.payment-option {
    width: 100%
}

.tc-main-title>.payment-option .bm-selected-payment .bm-payment-wrap {
    order: 2
}

.tc-main-title>.payment-option .bm-selected-payment img {
    order: 1
}

.tc-main-title>.payment-option label {
    cursor: pointer;
    align-items: center;
    display: flex;
    width: 100%;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px
}

.tc-main-title>.payment-option label span {
    padding: 0;
    margin: 0;
    order: 2;
    display: block
}

.tc-main-title>.payment-option label img {
    order: 1;
    max-width: 100px;
    padding-right: 25px;
    width: 70px;
    margin-left: 0 !important
}

.tc-main-title>.payment-option label .bm-wallet-slideshow,.tc-main-title>.payment-option label .bm-transfers-slideshow {
    order: 1
}

.tc-main-title .custom-radio {
    display: none
}

.tc-main-title[data-payment-module=bluepayment].active {
    padding: 0 16px 16px 16px
}

.additional-information.active {
    display: block !important
}

.bm-promo-icons {
    display: flex;
    flex-direction: column;
    width: 100%
}

.bm-promo-icons--main {
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1
}

@media only screen and (min-width: 1200px) {
    .bm-promo-icons--main {
        flex-direction:row;
        justify-content: space-around
    }
}

@media only screen and (min-width: 1200px) {
    .bm-promo-icons--cart {
        flex-direction:row;
        justify-content: space-around
    }
}

.bm-promo-icons__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 10px 0
}

.bm-promo-icons__icon {
    margin-right: 6px
}

.bm-promo-icons__label {
    padding: 2px 5px;
    margin-right: 6px;
    font-weight: 700;
    font-size: 12px;
    line-height: 14px
}

.bm-promo-icons__desc {
    color: #000;
    font-weight: 500;
    font-size: 12px;
    display: none
}

@media only screen and (min-width: 480px) {
    .bm-promo-icons__desc {
        display:block
    }
}

.bm-pay-later {
    background: #fdb83f;
    color: #fff
}

.bm-installments {
    background: #6b113d;
    color: #fff
}

.bm-matched-installments {
    background: #00b5dd;
    color: #fff
}

.bm-modal-bliklater {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px
}

.bm-modal-bliklater .bm-modal__dialog {
    display: flex;
    align-items: center;
    min-height: calc(100% - (30px * 2));
    max-width: 688px;
    box-shadow: none
}

.bm-modal-bliklater .bm-modal__content {
    padding: 0;
    background: none;
    border: none
}

.bm-modal-bliklater .bm-modal__body {
    padding: 0;
    box-shadow: 0 0 12px 2px rgba(0,0,0,0.35);
    background: #f1f2fe;
    border-radius: 12px
}

.bm-modal-bliklater .bm-modal__close {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1
}

.bm-modal-bliklater .bliklater-modal-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 48px 48px
}

.bm-modal-bliklater .bliklater-modal-content .bliklater-modal-content--logo {
    max-width: 210px;
    align-self: center;
    margin: 0 0 19px 0
}

.bm-modal-bliklater .bliklater-modal-content .bliklater-modal-content--header {
    margin: 0 0 17px 0;
    padding: 0;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.24px;
    text-align: center
}

.bm-modal-bliklater .bliklater-modal-content .bliklater-modal-content--items {
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.bm-modal-bliklater .bliklater-modal-content .bliklater-modal-content--item {
    display: flex;
    gap: 31px
}

.bm-modal-bliklater .bliklater-modal-content .bliklater-modal-content--item:first-child .bliklater-modal-content--item-img-wrapper {
    position: relative
}

.bm-modal-bliklater .bliklater-modal-content .bliklater-modal-content--item:first-child .bliklater-modal-content--item-img-wrapper:before {
    content: "";
    height: calc(200% + 40px);
    border-left: 1px solid #C5C6F9;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%)
}

.bm-modal-bliklater .bliklater-modal-content .bliklater-modal-content--item-img {
    width: 64px;
    position: relative;
    z-index: 1
}

.bm-modal-bliklater .bliklater-modal-content .bliklater-modal-content--item-header {
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    padding-top: 2px;
    margin-bottom: 6px
}

.bm-modal-bliklater .bliklater-modal-content .bliklater-modal-content--footer {
    font-size: 16px
}

.bm-modal-bliklater .bliklater-modal-content .bliklater-modal-content--footer-link {
    padding: 0;
    border: none;
    background: none;
    outline: none;
    box-shadow: none;
    color: #000000;
    text-decoration: underline;
    margin-left: 10px
}

.bm-modal-bliklater .bliklater-modal-content .bliklater-modal-content--footer-link.active .bliklater-modal-content--footer-link-1 {
    display: none
}

.bm-modal-bliklater .bliklater-modal-content .bliklater-modal-content--footer-link:not(.active) .bliklater-modal-content--footer-link-2 {
    display: none
}

.bm-modal-bliklater .bliklater-modal-content .bliklater-modal-content--footer-link.active ~ .bliklater-modal-content--footer-example {
    display: block
}

.bm-modal-bliklater .bliklater-modal-content .bliklater-modal-content--footer-example {
    margin-top: 14px;
    color: #000000;
    font-size: 12px;
    line-height: 2;
    display: none
}

@media (max-width: 767px) {
    .bm-modal-bliklater .bm-modal__dialog {
        width:343px;
        max-width: calc(100vw - 20px)
    }

    .bm-modal-bliklater .bm-modal__close {
        right: 9px;
        top: 9px
    }

    .bm-modal-bliklater .bliklater-modal-content {
        padding: 40px 24px
    }

    .bm-modal-bliklater .bliklater-modal-content .bliklater-modal-content--logo {
        margin: 0 0 24px 0
    }

    .bm-modal-bliklater .bliklater-modal-content .bliklater-modal-content--header {
        margin: 0 auto 24px;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 30px;
        letter-spacing: -0.2px;
        max-width: 200px
    }

    .bm-modal-bliklater .bliklater-modal-content .bliklater-modal-content--item {
        gap: 15px
    }
}
/* #BLUEPAYMENT END */

        #schemafaq h3 {margin: 0 !important;}
        #schemafaq p {margin:0 !important;padding:10px 0;}
        #schemafaq label {margin:0 !important;}
        #schemafaq {max-width: 100%;width: 100%;margin: 0 auto;clear: both;padding: 0;margin-top:40px;}
        #schemafaq input {position: absolute;opacity: 0;z-index: -1}
        #schemafaq .tabs {border-radius: 0px;overflow: hidden;border: 1px solid #eee;padding:0;}
        #schemafaq .tab {width: 100%;color: white;overflow: hidden}
        #schemafaq .tab-label {display: -webkit-box;display: flex;-webkit-box-pack: justify;justify-content: space-between;padding: 1em;background: #f9f9f9;font-weight: bold;cursor: pointer;color: #111;transition: all .3s;border-top: 1px solid #eee;font-size:1em;}
        #schemafaq .tab:first-child .tab-label {border-top: none}
        #schemafaq .tab-label:hover {background: #eee}
        #schemafaq .tab-label::after {content: "\276F";width: 1em;height: 1em;text-align: center;-webkit-transition: all .3s;transition: all .3s;display: flex;justify-content: center;align-items: center;-webkit-transform: rotateZ(90deg);transform: rotateZ(90deg)}
        #schemafaq .tab-content {max-height: 0;padding: 0 1em;color: #111;background: white;-webkit-transition: all .3s;transition: all .3s}
        #schemafaq .tab-close {display: -webkit-box;display: flex;-webkit-box-pack: end;justify-content: flex-end;padding: 1em;font-size: 0.75em;background: #29abe2;cursor: pointer}
        #schemafaq .tab-close:hover {background: #29abe2}
        #schemafaq input:checked+.tab-label,#schemafaq input:checked+h3>.tab-label {background: #eee;color: #111}
        #schemafaq input:checked+.tab-label::after,#schemafaq input:checked+h3>.tab-label::after {-webkit-transform: rotateZ(180deg);transform: rotateZ(180deg)}
        #schemafaq input:checked~.tab-content {max-height: 100vh;padding: 1em}


/* START CRAZY ELEMENTS WIDGET - COMPOSITION LIST */
.composition-grid {
    display: flex !important;
    gap: 40px !important;
    flex-wrap: wrap !important;
}

.composition-column {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.composition-item {
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
}
.composition-item::before {
    display: none;
}

.composition-number {
    background: #D7B86F !important;
    color: #fff !important;
    font-weight: bold !important;
    padding: 4px 10px !important;
    border-radius: 5px !important;
    margin-right: 10px !important;
    min-width: 40px !important;
    text-align: center !important;
}

.composition-label {
    font-weight: 600 !important;
    color: #2c2c2c !important;
}

@media screen and (max-width: 768px) {
    .composition-grid {
        gap: 10px !important;
    }
}

/* END CRAZY ELMENTS WIDGET - COMPOSITION LIST */

/* CRAZY ELMENTS WIDGET - ADVANTAGES LIST */
.advantages-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    margin-left: -15px !important;
    margin-right: -15px !important;
}

.advantage-item {
    padding: 0 15px !important;
    margin-bottom: 30px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
    align-items: flex-start !important;
    border-left: 1px solid rgba(255,255,255,0.2) !important;
}
.advantage-item .advantage-top {
    margin-bottom: 10px;;
}

/* usuwa border z pierwszego elementu w każdym wierszu */
.advantage-item:first-child {
    border-left: none !important;
}
.advantages-grid.columns-2 .advantage-item:nth-child(2n+1),
.advantages-grid.columns-3 .advantage-item:nth-child(3n+1),
.advantages-grid.columns-4 .advantage-item:nth-child(4n+1),
.advantages-grid.columns-5 .advantage-item:nth-child(5n+1),
.advantages-grid.columns-6 .advantage-item:nth-child(6n+1) {
    border-left: none !important;
}
@media (max-width: 767px) {
    .advantage-item {
        border-left: none !important;
    }
}

/* END CRAZY ELMENTS WIDGET - ADVANTAGES LIST */

.circle-features-wrapper {
    position: relative !important;
    width: 100% !important;
    max-width: 800px !important;
    aspect-ratio: 1/1 !important;
    margin: 0 auto !important;
    border-radius: 50% !important;
    background: conic-gradient(
        #f3e1bb 0deg 60deg,
        #fff0 60deg 120deg,
        #f3e1bb 120deg 180deg,
        #fff0 180deg 240deg,
        #f3e1bb 240deg 300deg,
        #fff0 300deg 360deg
    ) !important;
}

.circle-center {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 160px !important;
    height: 160px !important;
    border-radius: 50% !important;
    background: #d4af65 !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.circle-center img {
    max-width: 100% !important;
    height: auto !important;
}

.circle-feature-item {
    position: absolute !important;
    width: 160px !important;
    text-align: center !important;
    transform: translate(-50%, -50%) !important;
    z-index: 3 !important;
    padding: 10px !important;
}

.circle-feature-item .icon {
    margin-bottom: 10px !important;
}

.circle-feature-item .title {
    font-weight: bold !important;
    font-size: 15px !important;
    color: #002060 !important;
}

.circle-feature-item .desc {
    font-size: 14px !important;
    color: #000 !important;
    line-height: 1.4 !important;
}

/* Pozycje na okręgu – rozmieszczone co 60° */
.circle-feature-item.pos-1 { top: 5%; left: 50%; }
.circle-feature-item.pos-2 { top: 25%; left: 85%; }
.circle-feature-item.pos-3 { top: 70%; left: 85%; }
.circle-feature-item.pos-4 { top: 95%; left: 50%; }
.circle-feature-item.pos-5 { top: 70%; left: 15%; }
.circle-feature-item.pos-6 { top: 25%; left: 15%; }

/* MOBILE */
@media (max-width: 767px) {
    .circle-features-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        padding: 0 !important;
        background: none !important;
        aspect-ratio: auto !important;
    }

    .circle-center {
        position: static !important;
        transform: none !important;
        margin: 0 auto 30px auto !important;
    }

    .circle-feature-item {
        position: relative !important;
        transform: none !important;
        width: 100% !important;
        text-align: left !important;
        padding: 20px 0 !important;
        border-top: 1px solid #ddd !important;
    }

    .circle-feature-item .icon i,
    .circle-feature-item .icon svg {
        font-size: 24px !important;
        margin-bottom: 10px !important;
    }
}


#opt-justct, #opt-justct-n {
	justify-content:unset !important;
}

.opt-custom-scroll {
	overflow-x:auto !important;
}

/* START CRAZY ELEMENTS WIDGET - FLAVORS LIST */
.flavors-grid {
    display: flex !important;
    gap: 40px !important;
    flex-wrap: wrap !important;
}

.flavors-column {
    flex: 1 1 0% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
    min-width: 300px !important;
}

.flavor-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    border-bottom: 1px solid #ECCEBE !important;
}

.flavor-title {
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    color: #2c2c2c !important;
}

.flavor-description {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    color: #555555 !important;
}

@media screen and (max-width: 768px) {
    .flavors-grid {
        flex-direction: column !important;
        gap: 20px !important;
    }
    .flavors-column {
        min-width: 100% !important;
    }
}
/* END CRAZY ELEMENTS WIDGET - FLAVORS LIST */

/* START CRAZY ELEMENTS WIDGET - RESPONSIVE IMAGE */
@media (max-width: 767px) {
  .elementor-image--mobile-cover img {
    height: 100% !important;
    position: static !important;
    object-fit: cover !important;
  }
}
/* END CRAZY ELEMENTS WIDGET - RESPONSIVE IMAGE */

/*BLOG UPDATE*/
.ybc-block-author {
    border-radius: 20px;
    flex-direction: column;
    align-items: flex-start;
}
.ybc-block-author .ybc-author-description {
    color: var(--mr_color__primary);
    margin-top: 10px;
}
.ybc-author-name .page-heading {
    margin: unset;
    font-size: 16px;
}
.ybc-block-author-avatar-wrapper {
    align-items: center;
}
.ybc-block-author .avata_img {
    width: 60px;
    height: 60px;
    flex: 0 0 auto;
}
.read_more.toggle-more:focus {
    color: inherit;
}

/* WEBINARS ADJUSTMENTS */

.cms-id-17 .elementor-element.elementor-element-00eaa1c .elementor-image-box-img {
    margin: unset;
}
.cms-id-17 .elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper {
    display: flex;
    text-align: left;
}
.cms-id-17 .elementor-widget-image-box .elementor-image-box-content {
    margin: auto;
}
@media screen and (max-width: 500px) {
    .cms-id-17 .elementor-element .elementor-image-box-wrapper .elementor-image-box-img {
        width: 10%!important;
    }
}
@media screen and (max-width: 400px) {
    .cms-id-17 .elementor-element .elementor-image-box-wrapper .elementor-image-box-img {
        width: 15%!important;
    }
}
