:root {
    --color-white: #ffffff;
    --color-black: oklch(14.5% 0 0);
    --color-gray-1: #B1B1B1;
    --color-gray-2: #f9f9f9;
    --color-gray-3: #F2F2F2;
    --color-gray-4: #E3E3E3;
    --color-gray-5: #EAEAEA;
    --color-blue-1: #4A71B1;
    --color-blue-2: #457DE3;

    --color-dark-1: #0F0F0F;
    --color-dark-2: #1D1D1D;
    --color-dark-3: #1E1E1E;
    --color-dark-4: #282828;
    --color-dark-5: #2D2D2D;
    --color-dark-6: #242425;
    --color-dark-7: #050505;

    --up-box-shadow-large: 8px 8px 48px 0 rgba(0, 0, 0, 0.04);
    --up-box-shadow-small: 4px 4px 24px 0 rgba(0, 0, 0, 0.04);
    --up-border-radius-large: 20px;
    --up-border-radius-medium: 16px;
    --up-border-radius-small: 12px;
}

.light-theme {
    --up-box-shadow-1px: 0px 0px 0px 1px var(--color-gray-3);
    --up-body-bg: var(--color-white);
    --up-header-bg: var(--color-white);
    --up-text-color: var(--color-black);
    --up-text-wd-color: var(--color-black);
    --up-text-link: var(--color-blue-1);
    --up-text-light-color: var(--color-gray-1);
    --up-text-gray-color: var(--color-gray-1);
    --up-bg-wd: #fff;
    --up-bg-main: var(--color-gray-2);
    --up-bg-gray: var(--color-gray-2);
    --up-bg-wg: var(--color-white);
    --up-bg-gray-hover: var(--color-gray-4);
    --up-bg-main-hover: var(--color-white);
    --up-gray-color-1: var(--color-gray-3);
    --up-border-color: var(--color-gray-3);
    --up-dd-menu-bg-hover: var(--color-gray-2);
    --up-modal-backdrop: var(--color-black);
    --up-modal-bg: var(--color-white);
    --up-quantity-bg: var(--color-white);
    --slider-arrow-bg: var(--color-white);
    --slider-arrow-color: var(--color-black);
    --slider-arrow-hover-bg: var(--color-gray-2);
    --slider-arrow-hover-color: var(--color-black);
    --slider-navigation-border: 1px solid var(--color-gray-3);
    --slider-navigation-bg: var(--color-white);
    --form-field-bg: var(--color-white);
    --form-field-border: var(--color-gray-4);
    --form-field-border-focus: var(--color-gray-5);
    --tab-nav-bg: var(--color-gray-2);
    --tab-nav-bg-active-item: var(--color-white);
    --next-prev-box-bg: var(--color-white);
    --next-prev-btn-bg: var(--color-white);
    --next-prev-btn-bg-hover: var(--color-gray-2);
    --next-prev-btn-color: var(--color-black);
    --next-prev-btn-color-hover: var(--color-black);
    --pagination-active-bg: var(--color-white);
    --indicator-active-bg: var(--color-white);
}

.dark-theme {
    --up-box-shadow-1px: 0px 0px 0px 1px var(--color-dark-2);
    --up-body-bg: var(--color-black);
    --up-header-bg: var(--color-black);
    --up-text-color: var(--color-gray-1);
    --up-text-wd-color: var(--color-white);
    --up-text-link: var(--color-blue-2);
    --up-text-light-color: var(--color-gray-1);
    --up-text-gray-color: var(--color-gray-1);
    --up-bg-wd: var(--color-dark-1);
    --up-bg-main: var(--color-dark-1);
    --up-bg-gray: var(--color-dark-2);
    --up-bg-wg: var(--color-dark-2);
    --up-bg-gray-hover: var(--color-dark-4);
    --up-bg-main-hover: var(--color-dark-2);
    --up-gray-color-1: var(--color-dark-2);
    --up-dd-menu-bg-hover: var(--color-dark-2);
    --up-border-color: var(--color-dark-2);
    --up-modal-backdrop: var(--color-dark-6);
    --up-modal-bg: var(--color-dark-7);
    --up-quantity-bg: var(--color-dark-2);
    --slider-arrow-bg: var(--color-dark-2);
    --slider-arrow-color: var(--color-gray-1);
    --slider-arrow-hover-bg: var(--color-dark-1);
    --slider-arrow-hover-color: var(--color-white);
    --slider-navigation-border: 1px solid var(--color-dark-2);
    --slider-navigation-bg: var(--color-black);
    --form-field-bg: var(--color-dark-3);
    --form-field-border: var(--color-dark-4);
    --form-field-border-focus: var(--color-dark-5);
    --tab-nav-bg: var(--color-dark-1);
    --tab-nav-bg-active-item: var(--color-dark-2);
    --next-prev-box-bg: var(--color-dark-2);
    --next-prev-btn-bg: var(--color-dark-2);
    --next-prev-btn-bg-hover: var(--color-dark-1);
    --next-prev-btn-color: var(--color-gray-1);
    --next-prev-btn-color-hover: var(--color-white);
    --pagination-active-bg: var(--color-dark-2);
    --indicator-active-bg: var(--color-dark-2);
}

html {
    font-size: 14px;
}

body {
    font-weight: 400;
    color: var(--up-text-wd-color);
    line-height: 20px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    background-color: var(--up-body-bg);
}

b, strong {
    font-weight: 600;
}

main {
    overflow: clip;
}

@media (min-width: 992px) {
    main {
        padding-top: 10px;
    }
}

@media (min-width: 1200px) {
    html {
        width: 100vw;
    }
}

h1, h2, h3, h4, h5, h6 {
    color: var(--up-text-wd-color);
    margin-top: 5px;
    margin-bottom: 20px;
}

.fa {
    font-size: 14px;
}

.h1, h1 {
    font-size: 22px;
    line-height: 30px;
}

.h2, h2 {
    font-size: 20px;
}

.h3, h3 {
    font-size: 18px;
}

.h4, h4 {
    font-size: 14px;
}

.h5, h5 {
    font-size: 12px;
}

.h6, h6 {
    font-size: 10.2px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

a {
    color: var(--up-color-link);
}

a:hover {
    text-decoration: none;
    color: var(--up-color-link-hover);
}

a:focus {
    outline: none;
    text-decoration: none;
    outline-offset: -2px;
}

legend {
    font-size: 18px;
    padding: 7px 0;
    border-color: var(--up-border-color);
    color: var(--up-text-wd-color);
}

.captcha-block legend {
    padding: 15px 0;
    margin-bottom: 15px;
    position: relative;
}

.captcha-block .form-group {
    margin-left: -10px;
    margin-right: -10px;
}

label {
    font-size: 12px;
    font-weight: normal;
}

.form-horizontal .control-label {
    font-size: 14px;
    margin-bottom: 5px;
}

.icon-arrow-down {
    width: 8px;
    height: 4px;
    margin-left: 8px;
}

select.form-control, input[type="text"].form-control, input[type="password"].form-control, input[type="datetime"].form-control, input[type="datetime-local"].form-control, input[type="date"].form-control, input[type="month"].form-control, input[type="time"].form-control, input[type="week"].form-control, input[type="number"].form-control, input[type="email"].form-control, input[type="url"].form-control, input[type="search"].form-control, input[type="tel"].form-control, input[type="color"].form-control {
    font-size: 14px;
    box-shadow: none;
    border: 1px solid var(--form-field-border);
}

textarea.form-control {
    font-size: 14px;
    box-shadow: none;
    border: 1px solid var(--form-field-border);
}

select.form-control {
    height: 44px;
    border: 1px solid var(--form-field-border);
    font-size: 14px;
    box-shadow: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding-right: 25px;
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 8px;
    border-radius: 6px;
    cursor: pointer;
    color: var(--up-text-light-color);
    background-color: var(--form-field-bg);
}

.light-theme select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 14 14'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M6.422 7.504a1 1 0 0 0 1.25-.007l3.7-2.994a1 1 0 1 1 1.257 1.555l-3.7 2.994a3 3 0 0 1-3.748.02l-3.8-3.007a1 1 0 1 1 1.24-1.57l3.801 3.009Z' clip-rule='evenodd'/%3E%3C/svg%3E");
    color: #000000;
}

.dark-theme select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 14 14'%3E%3Cpath fill='%23B1B1B1' fill-rule='evenodd' d='M6.422 7.504a1 1 0 0 0 1.25-.007l3.7-2.994a1 1 0 1 1 1.257 1.555l-3.7 2.994a3 3 0 0 1-3.748.02l-3.8-3.007a1 1 0 1 1 1.24-1.57l3.801 3.009Z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.dark-theme select.form-control:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 14 14'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M6.422 7.504a1 1 0 0 0 1.25-.007l3.7-2.994a1 1 0 1 1 1.257 1.555l-3.7 2.994a3 3 0 0 1-3.748.02l-3.8-3.007a1 1 0 1 1 1.24-1.57l3.801 3.009Z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

select.form-control:focus,
textarea.form-control:focus,
input.form-control:focus {
    box-shadow: none;
    background-color: var(--form-field-bg);
    border-color: var(--form-field-border-focus);
    z-index: 1;
    color: var(--up-text-wd-color);
}

input.form-control {
    box-shadow: none;
    color: var(--up-text-wd-color);
    background: var(--form-field-bg);
    border-radius: 6px;
    padding: 10px 12px 10px 12px;
    height: 44px;
}

.input-group input, .input-group select, .input-group .dropdown-menu, .input-group .popover {
    font-size: 12px;
}

.input-group .input-group-addon {
    font-size: 12px;
}

span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {
    display: inline;
}

input[type="number"],
input[type="text"] {
    -webkit-appearance: none !important;
}

input, input:hover, input:active {
    outline: none;
    box-shadow: none;
}

button, input {
    overflow: visible;
}

.modal-open > div {
    overflow: hidden;
}

.action-timer {
    opacity: 0;
}

.product-thumb .action-timer {
    position: absolute;
}

header {
    position: relative;
    background: var(--up-header-bg);
}

.img-rounded-10 {
    border-radius: 10px;
}

.justify-content-xs-end {
    justify-content: flex-end;
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.row-flex {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.f-col-xs-12,
.f-col-sm-6
.f-col-md-4,
.f-col-lg-3,
.item-col-5 {
    padding-right: 10px;
    padding-left: 10px;
}

.f-col-xs-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.f-col-xs-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.xs-w-100 {
    width: 100%;
}

.xs-mb-5 {
    margin-bottom: 5px;
}

.xs-mb-10 {
    margin-bottom: 10px;
}

.xs-mb-20 {
    margin-bottom: 20px;
}

.flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.pt-xs-5 {
    padding-top: 5px;
}

.pb-xs-5 {
    padding-bottom: 5px;
}

@media (max-width: 767px) {
    .d-xs-flex {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }

    .flex-xs-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .justify-content-xs-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.w-auto {
    width: auto !important;
}

@media (min-width: 768px) {
    .pt-sm-10 {
        padding-top: 10px;
    }

    .pb-sm-10 {
        padding-bottom: 10px;
    }

    .flex-sm-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .sm-w-auto {
        width: auto;
    }

    .sm-w-100 {
        width: 100%;
    }

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

    .sm-mb-30 {
        margin-bottom: 30px;
    }

    .d-sm-block {
        display: block !important;
    }

    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .f-col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .justify-content-sm-end {
        justify-content: flex-end;
    }

    .col-sm-auto {
        width: auto;
    }
}

#column-left, #column-right {
    display: none;
}

.htop-b-pc img {
    margin: 0 auto;
}

.htop-b-mob img {
    margin: 0 auto;
}

.htop-b-mob ~ header {
    padding-top: 0;
}

@media (min-width: 992px) {
    .f-order-3 {
        -ms-flex-order: 3;
        order: 3;
    }

    .pt-md-15 {
        padding-top: 15px;
    }

    .pb-md-15 {
        padding-bottom: 15px;
    }

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

    .flex-md-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    header {
        z-index: 1008;
    }

    .light-theme header {
        border-bottom: 1px solid #eaeaea;
    }

    .dark-theme header {
        border-bottom: 1px solid #0F0F0F;
    }

    #column-left, #column-right {
        display: block;
    }

    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .f-col-md-4 {
        -ms-flex: 0 0 33.3333333333%;
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .justify-content-md-center {
        justify-content: center;
    }

    .col-md-offset-right-3 {
        margin-right: 25% !important;
    }

    .flex-1 {
        flex: 1;
    }

    .col-auto {
        width: auto;
    }

    html.vw-100 body {
        overflow-y: hidden;
    }

    .vw-100 .htop-b-pc,
    .vw-100 nav#top,
    .vw-100 header {
        z-index: 1007;
        position: relative;
    }

    .fix-header.h-sticky {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1008;
    }

    html.light-theme:not(.vw-100) .fix-header.h-sticky {
        box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.06);
    }

    html.dark-theme:not(.vw-100) .fix-header.h-sticky {
        box-shadow: 0 3px 15px rgba(0, 0, 0, .45);
    }
}

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

.pos-r {
    position: relative;
}

@media (min-width: 1200px) {
    .f-col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-30 {
        width: 30%
    }

    .col-lg-20 {
        width: 20%
    }
}

@media (min-width: 1360px) {
    .item-col-5 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        align-items: center;
    }
}

#column-right .pct_gv .item-col-5,
#column-left .pct_gv .item-col-5,
#column-right .latest_gv .item-col-5,
#column-left .latest_gv .item-col-5 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.col-md-1-5,
.col-lg-1-5 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

@media (min-width: 992px) {
    .col-md-1-5 {
        width: 20%;
        float: left;
    }
}

.container {
    width: 100%;
}

@media (min-width: 768px) {
    .container {
        width: calc(100% - 30px);
    }
}

#column-left,
#column-right {
    margin-top: 10px;
}

@media (max-width: 991px) {
    #content.col-md-9 {
        width: 100%;
        clear: both;
    }
}

@media (min-width: 1500px) {
    .container {
        width: 1470px;
    }

    .col-md-3.menu-box,
    .menu_fix.col-md-3,
    .container .sw-20,
    #column-left.col-md-3,
    #column-right.col-md-3 {
        width: 22%;
    }

    .container .sw-80,
    #content.col-md-9, #content.col-sm-9 {
        width: 78%;
    }

    #content.col-md-6, #content.col-sm-6 {
        width: 56%;
    }

    .col-lg-offset-3, .col-md-offset-3 {
        margin-left: 20.4%;
    }

    .col-lg-1-5 {
        width: 20%;
        float: left;
    }
}

.p-content {
    margin-bottom: 20px;
}

.dark-theme .p-content,
.dark-theme .p-content * {
    color: var(--up-text-gray-color);
}

.container {
    padding-right: 10px;
    padding-left: 10px;
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    padding-right: 10px;
    padding-left: 10px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    margin-right: -10px;
    margin-left: -10px;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

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

.mb-15 {
    margin-bottom: 15px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

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

.mr-10 {
    margin-right: 10px;
}

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

.pr-10 {
    padding-right: 10px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pl-10 {
    padding-left: 10px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pr-20 {
    padding-right: 20px !important;
}

.pr-35 {
    padding-right: 35px !important;
}

.pt20 {
    padding-top: 20px;
}

.pr-17 {
    padding-right: 17px;
}

.h-100 {
    height: 100%;
}

.h-auto {
    height: auto;
}

.w-100 {
    width: 100%;
}

.pr-0 {
    padding-right: 0;
}

.pl-0 {
    padding-left: 0;
}

.dflex,
.d-flex {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.d-inline-flex {
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

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

.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.buttons {
    margin-top: 15px;
}

.btn {
    padding: 10px 15px;
    font-size: 14px;
    border: 0;
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn.focus:active, .btn:active:focus, .btn:focus {
    outline: none;
}

.btn.active, .btn:active {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-xs {
    font-size: 9px;
}

.btn-sm {
    font-size: 10.2px;
}

.btn-lg {
    padding: 10px 16px;
    font-size: 15px;
}

.btn-group > .btn, .btn-group > .dropdown-menu, .btn-group > .popover {
    font-size: 12px;
}

.btn-group > .btn-xs {
    font-size: 9px;
}

.btn-group > .btn-sm {
    font-size: 10.2px;
}

.btn-group > .btn-lg {
    font-size: 15px;
}

.chm-btn {
    border: 0;
    border-radius: 12px;
    display: inline-block;
    padding: 0 15px;
    height: 46px;
    font-size: 14px;
    line-height: 46px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: manipulation;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.chm-btn.disabled, .chm-btn[disabled] {
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 0.75;
}

.input-group-btn .chm-btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    height: 48px;
}

.input-group-btn:last-child > .chm-btn {
    z-index: 2;
    margin-left: -1px;
    position: relative;
}

.chm-btn-secondary {
    color: #000000;
}

.chm-btn-white {
    color: #000000;
    background-color: #ffffff;
}

.chm-btn-white:hover {
    background-color: #ffffff;
}

.chm-btn-white:focus,
.chm-btn-white:hover,
.chm-btn-white:hover {
    color: #3572E1;
}

.chm-btn-grey {
    color: var(--up-color-btn-default);
    background-color: var(--up-bg-btn-default);
}

.chm-btn-grey:hover {
    color: var(--up-color-btn-default-hover);
    background-color: var(--up-bg-btn-default-hover);
}

.chm-btn-black {
    color: var(--up-color-btn-black);
    background-color: var(--up-bg-btn-black);
}

.chm-btn-black:hover {
    color: var(--up-color-btn-black-hover);
    background-color: var(--up-bg-btn-black-hover);
    text-decoration: underline;
}

.chm-btn-outline-primary {
    background: transparent;
    border: 1px solid #457de3;
    color: #457de3;
}

.chm-btn-outline-primary:hover {
    background: #457DE3;
    border: 1px solid #457de3;
    color: #fff;
}

.chm-lg {
    height: 54px;
    line-height: 54px;
    font-weight: 500;
}

.chm-lg-rounded {
    border-radius: 54px;
}

.chm-sm {
    height: 40px;
    padding: 0px 13px;
    line-height: 40px;
}

.chm-btn-sm-only-icon {
    height: 44px;
    padding: 0px 8px;
    line-height: 40px;
    width: 44px;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.chm-px-lg {
    padding: 0px 25px;
}

.chm-px-xlg {
    padding: 0px 40px;
}

.btn-default {
    color: var(--up-color-btn-default);
    background-color: var(--up-bg-btn-default);
    border: 0px;
    border-radius: 8px;
    display: inline-block;
    font-size: 14px;
    padding: 0px 20px;
    line-height: 44px;
    min-height: 44px;
    font-weight: 400;
    box-shadow: none;
    text-shadow: none;
}

.btn-default:hover, .btn-default:active {
    color: var(--up-color-btn-default-hover);
    background-color: var(--up-bg-btn-default-hover);
}

.light-theme .input-group-btn .btn-default {
    border: 1px solid var(--up-bg-btn-default);
    height: 44px;
    color: var(--up-color-btn-default);
    background-color: var(--up-bg-btn-default);
}

.dark-theme .input-group-btn .btn-default {
    border: 1px solid var(--form-field-border);
    height: 44px;
    color: #ffffff;
    background-color: var(--form-field-bg);
}

.btn-primary,
.chm-btn-primary {
    color: var(--up-color-btn-primary);
    background-color: var(--up-bg-btn-primary);
}

.btn-primary.disabled,
.btn-primary.disabled.active,
.btn-primary.disabled.focus,
.btn-primary.disabled:active,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled],
.btn-primary[disabled].active,
.btn-primary[disabled].focus,
.btn-primary[disabled]:active,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
.btn-primary:focus,
.btn-primary:hover,
.btn-primary:disabled,
.btn-primary:active,
.btn-primary:active:focus,
.chm-btn-primary:focus,
.chm-btn-primary:hover,
.chm-btn-primary:hover {
    color: var(--up-color-btn-primary-hover);
    background-color: var(--up-bg-btn-primary-hover);
}

.btn-primary:focus, .btn-primary:focus, .btn-primary {
    color: var(--up-color-btn-primary);
    background-color: var(--up-bg-btn-primary);
    border: 0px;
    border-radius: 8px;
    display: inline-block;
    font-size: 14px;
    padding: 0px 20px;
    line-height: 44px;
    min-height: 44px;
    font-weight: 400;
    box-shadow: none;
    text-align: center;
}

.btn-primary:hover, .btn-primary:active {
    background-color: #3572E1;
    color: #ffffff;
    border: 0px;
}

.btn-warning {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #faa732;
    background-image: linear-gradient(to bottom, #fbb450, #f89406);
    background-repeat: repeat-x;
    border-color: #f89406 #f89406 #ad6704;
}

.btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] {
    box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}

.btn-danger {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #da4f49;
    background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
    background-repeat: repeat-x;
    border-color: #bd362f #bd362f #802420;
}

div.required_field .control-label:before,
div.required .control-label:before {
    content: '* ';
    color: #EB5757;
    display: inline-flex;
    width: 12px;
}

[class^="icon-"],
[class*=" icon-"] {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    fill-rule: evenodd;
}

/*Dropdown*/
.dropdown-menu li > a:hover, .dropdown-menu li > a.active, .dropdown-menu li > a:focus {
    text-decoration: none;
    color: #000;
    background-color: transparent;
    border-radius: 4px;
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
    background-color: transparent;
    color: #000;
    outline: 0 none;
    text-decoration: none;
}

.ch-dropdown {
    padding: 12px 15px;
    border: 0px;
    border-radius: 14px;
    box-shadow: 6px 6px 19px rgba(0, 0, 0, 0.06);
    background-color: var(--up-bg-wd);

}

.up-compact-dropdown {
    padding: 8px;
    border: 0px;
    border-radius: 50px;
    box-shadow: 6px 6px 19px rgba(0, 0, 0, 0.06);
}

.open .dropdown-menu.up-compact-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: var(--up-bg-wd);
}

.dropdown-menu.up-compact-dropdown > li > a,
.dropdown-menu.up-compact-dropdown > li > button {
    padding: 3px 12px 3px 12px !important;
    font-size: 14px !important;
    line-height: 20px;
    border: 0;
    color: var(--up-text-light-color);
    text-align: center;
    text-decoration: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu.ch-dropdown > .active > a,
.dropdown-menu.ch-dropdown > .active > button,
.dropdown-menu.up-compact-dropdown > .active > a,
.dropdown-menu.up-compact-dropdown > .active > button {
    color: var(--up-text-wd-color);
    background: var(--up-gray-color-1);
}

.dropdown-menu.up-compact-dropdown > .active > a,
.dropdown-menu.up-compact-dropdown > .active > button {
    border-radius: 20px;
}

.dropdown-menu.ch-dropdown li {
    padding-top: 3px;
    margin-bottom: 3px;
    position: relative;
}

.dropdown-menu.ch-dropdown > li > button, .dropdown-menu.ch-dropdown > li > a {
    padding: 3px 10px 3px 10px !important;
    font-size: 14px !important;
    line-height: 1.42857143;
    border: 0px;
    text-align: left;
    text-decoration: none;
    color: var(--up-text-color);
}

.dark-theme .dropdown-menu.ch-dropdown > li > button:hover,
.dark-theme .dropdown-menu.ch-dropdown > li > a:hover {
    color: #ffffff;
}

.dropdown-menu.ch-dropdown li + li {
    border-top: 1px dashed var(--up-gray-color-1);
}

.dropdown-menu.ch-dropdown li > a:hover:before,
.dropdown-menu.ch-dropdown li > button:hover:before,
.dropdown-menu.ch-dropdown li > div:hover:before,
.dropdown-menu.ch-dropdown > .active > button:before,
.dropdown-menu.ch-dropdown > .active > button:focus:before,
.dropdown-menu.ch-dropdown > .active > button:hover:before,
.dropdown-menu.ch-dropdown > .active > a:before,
.dropdown-menu.ch-dropdown > .active > a:focus:before,
.dropdown-menu.ch-dropdown > .active > a:hover:before {
    background: var(--up-dd-menu-bg-hover);
    position: absolute;
    height: calc(100% - 3px);
    content: "";
    z-index: -1;
    left: 0px;
    right: 0px;
    width: 100%;
    top: 3px;
    border-radius: 4px;
}

.form-control::placeholder {
    opacity: 1;
    font-size: 14px;

}

.light-theme .form-control::placeholder {
    color: #6F6F6F;
}

.dark-theme .form-control::placeholder {
    color: var(--up-text-light-color);
}

/*Top Nav*/
.light-theme #top,
.light-theme #top .container {
    background-color: var(--color-gray-2);
}

.dark-theme #top,
.dark-theme #top .container {
    background-color: #0F0F0F;
}

#top {
    padding-top: 5px;
    padding-bottom: 5px;
    height: 40px;
}

#top .dropdown-menu-right {
    left: auto;
    min-width: 100%;
    right: -8px;
    border-top-right-radius: 0px;
    margin-top: 9px;
    z-index: 1009;
}

#top #currency .currency-select {
    text-align: left;
}

#top .btn-link {
    text-decoration: none;
}

.light-theme #top .btn-link {
    color: #000;
}

.dark-theme #top .btn-link {
    color: #B1B1B1;
}

.header-nav-links {
    position: relative;
    border: 0px;
    box-shadow: none;
    padding: 0px;
    display: block;
    margin: 0px 0px;
    background: transparent;
    width: auto;
    min-width: auto;
    list-style: none;
}

@media (min-width: 992px) {
    #top .box-nav-links ul li:first-child .btn-link {
        padding-left: 0 !important;
    }

    .header-nav-links .btn-link {
        padding: 4px 8px;
        height: 28px;
        font-size: 14px;
    }

    .header-nav-links .btn-link:hover {
        color: #222;
    }

    .header-nav-links li {
        display: inline-block;
    }

}

/*Header*/


.up-header__left {
    padding-left: 10px;
    padding-right: 10px;
}

.up-header__right {
    margin-left: auto;
}

.up-header__btn-mobile-menu {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0px;
    border-radius: 0px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-right: 10px;
    color: var(--up-text-wd-color) !important;
}

.up-header #logo {
    position: relative;
}

.up-header #logo img {
    margin-left: 0;
    margin-right: auto;
    color: transparent;
    max-height: 40px;
}

.up-header .btn-menu-top {
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: manipulation;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    width: 54px;
    border-radius: 54px;
    height: 54px;
}

.up-header .btn-menu-top {
    background-color: var(--up-bg-menu);
    border: 1px solid var(--up-border-color-menu);
    color: var(--up-color-menu);
}

.up-header .btn-menu-top.active-btn,
.up-header .btn-menu-top:hover,
.up-header .btn-menu-top:hover .text-category {
    background-color: var(--up-bg-menu-hover);
    color: var(--up-color-menu-hover);
    border-color: var(--up-border-color-menu-hover);
}

.up-header .btn-menu-top:hover i {
    color: var(--up-color-menu-hover);
}

.up-header .btn-menu-top .text-category {
    margin-right: 10px;
    margin-left: 10px;
}

.up-header .btn-menu-top i,
.up-header .btn-menu-top .text-category {
    color: var(--up-color-menu);
}

.up-header .btn-menu-top.show-tc {
    padding: 10px 18px;
    width: auto;
}

.up-header-phones {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.up-header-phones.hp-dd .up-header-phones__top:after {
    content: "\e901";
    font-size: 13px;
    position: relative;
    display: inline-flex;
}

.dark-theme .up-header-phones.hp-dd .up-header-phones__top:after {
    color: #B1B1B1;
}

.up-header-phones__top {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 54px;
    min-height: 54px;
    position: relative;
    padding: 10px 20px 10px 20px;
}

.light-theme .up-header-phones__top {
    border: 1px solid #F6F6F6;
    background: #fff;
}

.dark-theme .up-header-phones__top {
    border: 0px;
    background: #0F0F0F;
}

.dark-theme .up-header-phones__top .up-icon-phone-sound {
    color: #B1B1B1;
}

.up-header-phones.hp-dd .up-header-phones__items {
    margin-right: 10px;
    margin-left: 15px;
}

.up-header-phones:not(.hp-dd) .up-header-phones__items {
    margin-right: 15px;
    margin-left: 15px;
}

.up-header-phones__items {
    display: flex;
    flex-direction: column;
}

.up-header-phones__item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 16px;
    font-weight: 600;
}

.up-header-phones__top .up-header-phones__item,
.up-header-phones__top .up-header-phones__item a {
    color: var(--up-text-wd-color);
}

.up-header-phones__item + .up-header-phones__item {
    margin-top: 2px;
}

.up-header-phones__dropdown.ch-dropdown > li > div,
.up-header-phones__dropdown.ch-dropdown > li > a {
    font-size: 13px;
    padding: 4px 8px 4px 8px !important;
    white-space: nowrap;
    color: var(--up-text-color);
    font-weight: 400;
}

.up-header-phones__text-af {
    color: #B1B1B1;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-align: right;
    margin-top: -1px;
    white-space: nowrap;
}

.up-header-phones__dropdown {
    margin-top: 0px;
    min-width: auto;
    z-index: 1012;
    left: auto;
    right: 0;
    border-radius: 0px 0px 14px 14px;
    box-shadow: none;
}

.dark-theme .up-header-phones__dropdown.ch-dropdown > li {
    color: var(--up-text-color);
}

.dark-theme .up-header-phones__dropdown {
    background: var(--up-bg-wd);
}

.dark-theme .up-header-phones__dropdown.ch-dropdown > li > a:hover {
    color: #ffffff;
}

.up-header-phones__icon-image {
    margin-right: 10px;
    display: inline-block;
    text-align: center;
}

.box-cart,
.box-currency,
.box-language,
.box-account,
.box-wishlist,
.box-compare {
    order: 4;
    position: relative;
}

.box-language-currency {
    display: none;
}

.up-header .btn-open-contact,
.up-header .btn-open-search,
.box-account .btn-account,
.btn-wishlist-top,
.btn-compare-top,
#cart > .btn {
    position: relative;
    border: 0px;
    padding: 0px;
    background: transparent;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 30px;
    width: 30px;
    color: var(--up-text-wd-color);
}

#cart {
    position: relative;
}

.viewed-quantity,
.wishlist-quantity,
.compare-quantity,
#cart .cart-total {
    position: absolute;
    height: 18px;
    min-width: 18px;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 25px;
    font-size: 11px;
    line-height: 22px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.viewed-quantity,
.wishlist-quantity,
.compare-quantity {
    right: 0px;
    top: 0px;
}

.up-header .viewed-quantity,
.up-header .wishlist-quantity,
.up-header .compare-quantity {
    background: var(--up-bg-header-total-cw);
    color: var(--up-color-header-total-cw);
}

.mob-fix-panel .viewed-quantity,
.mob-fix-panel .wishlist-quantity,
.mob-fix-panel .compare-quantity {
    background: var(--up-bg-header-total-cw);
    color: var(--up-color-header-total-cw);
    right: 1px;
}

.fixed-goods-bar .viewed-quantity,
.fixed-goods-bar .wishlist-quantity,
.fixed-goods-bar .compare-quantity {
    background: var(--up-bg-total-fix-bar);
    color: var(--up-color-total-fix-bar);
}

#cart .cart-total {
    background: var(--up-bg-header-total-cart);
    color: var(--up-color-header-total-cart);
    right: -3px;
    top: -2px;
}

.box-wishlist.text-ai-on .wishlist-quantity,
.box-compare.text-ai-on .compare-quantity,
.box-cart.text-ai-on #cart .cart-total {
    right: -3px;
    top: -2px;
}

.phone-box,
.box-account,
.box-cart {
    margin-left: 4px;
}

.box-account.open {
    z-index: 1012;
}

.box-account.open .dropdown-menu {
    z-index: 1012;
    border-radius: 14px 0px 14px 14px;
    margin-top: 11px;
    right: 0;
    box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.06);
}

header .text-a-icon,
header .text-a-icon-cart {
    display: none;
}

.header-search .form-control {
    height: 44px;
    border: 0px !important;
    padding: 0 15px 0px 25px;
    box-shadow: none !important;
    border-radius: 44px 0px 0px 44px;
}

.light-theme .header-search .form-control {
    background-color: var(--color-gray-2);
    color: #222;
}

.dark-theme .header-search .form-control {
    background: #0F0F0F;
    color: #fff;
}

.header-search .categories + .form-control {
    padding-left: 5px;
}

.btn-search {
    padding: 0px;
    height: 38px;
    width: 38px;
    border-radius: 100% !important;
    box-shadow: none;
    margin-top: 0px;
    margin-right: 4px;
    margin-left: 4px;
    border: 0px;
    line-height: 1;
    background: #fff;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
}

.light-theme .btn-search {
    background: #ffffff;
}

.dark-theme .btn-search {
    background: #1D1D1D;
}

.btn-search-select {
    display: block;
    background: transparent;
    padding: 0px;
    height: 38px;
    width: 38px;
    border-radius: 38px !important;
    box-shadow: none;
    margin-top: 0px;
    border: 0px;
    line-height: 1px;
    text-align: center;
    font-size: 12px;
    margin-left: 6px;
}

.btn-search-select .icon-search-category {
    color: #B4B4B4;
    width: 18px;
    height: 18px;
}

.btn-voice-search {
    background: transparent;
    border: 0px;
    padding: 0px;
    height: 38px;
    width: 38px;
    box-shadow: none;
    margin-top: 0px;
    margin-left: 4px;
    line-height: 1;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .dark-theme .box-account.open .dropdown-menu {
        background: var(--up-header-bg);
    }
}

@media (min-width: 768px) {

    .flex-grow-sm-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .up-header__logo-mobile {
        display: none;
    }

    .box-search {
        margin-right: 5px;
    }

    .box-account .btn-account,
    .box-wishlist:not(.text-ai-on) .btn-wishlist-top,
    .box-compare:not(.text-ai-on) .btn-compare-top,
    .up-header .btn-open-contact {
        border-radius: 54px;
        background: var(--up-bg-gray);
    }

    header .box-account .btn-account,
    header .box-wishlist:not(.text-ai-on) .btn-wishlist-top,
    header .box-compare:not(.text-ai-on) .btn-compare-top,
    header .up-header .btn-open-contact {
        background: var(--up-bg-main);
    }

    .dark-theme .up-header .btn-open-contact,
    .dark-theme .up-header .btn-open-search,
    .dark-theme .box-account .btn-account,
    .dark-theme .btn-wishlist-top,
    .dark-theme .btn-compare-top,
    .dark-theme #cart > .btn {
        color: #B1B1B1;
    }

    .box-account:not(.text-ai-on).open {
        filter: drop-shadow(2px 7px 7px rgba(0, 0, 0, 0.09));
    }

    .box-account:not(.text-ai-on).open .btn-account {
        border-radius: 26px 26px 0px 0px;
        background: var(--up-bg-wd);
    }

    .box-account.open .dropdown-menu {
        border-radius: 14px 0px 14px 14px;
        margin-top: 5px;
        box-shadow: none;
    }

    #cart > .btn,
    .up-header .btn-open-contact,
    .up-header .btn-account {
        height: 44px;
        width: 44px;
    }

    .phone-box, .box-account, .box-cart {
        margin-left: 8px;
    }

    #cart > .btn {
        background: var(--up-bg-main);
        border-radius: 44px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .box-account.open .dropdown-menu:before {
        position: absolute;
        background: var(--up-bg-wd);
        width: 44px;
        content: '';
        top: -8px;
        height: 10px;
        right: 0;
    }
}

@media (max-width: 992px) {
    .up-header {
        background: var(--up-header-bg);
        position: sticky;
        top: 0px;
        z-index: 1009;
        height: 54px;
        max-height: 54px;
    }

    .light-theme .up-header:not(.header-no-shadow) {
        box-shadow: 0 0 15px -7px rgba(0, 0, 0, 0.4);
    }

    .dark-theme .up-header:not(.header-no-shadow) {
        box-shadow: 0 5px 15px rgba(0, 0, 0, .45);
        border-bottom: 1px solid var(--up-border-color);
    }

    .up-header.header-no-shadow {
        border-bottom: 1px solid var(--up-border-color);
    }

    .phone-box {
        -ms-flex-order: 3;
        order: 3;
    }
}

.fixed-goods-bar {
    display: none;
}

.search_word {
    display: none;
}

#top .up-theme-mode,
.mob-theme-mode .up-theme-mode {
    display: flex;
}

#top .up-theme-mode {
    margin-left: 8px;
}

.light-theme #top .up-theme-mode {
    background: #ffffff;
}

.up-theme-mode {
    height: 30px;
    width: 54px;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    border-radius: 20px;
    padding: 3px;
    position: relative;
}

.light-theme .up-header__right .up-theme-mode {
    border: 1px dashed #F6F6F6;
}

.light-theme #top .up-theme-mode,
.light-theme .mob-theme-mode .up-theme-mode {
    border: 1px dashed #e3e3e3;
}

.dark-theme .up-theme-mode {
    border: 1px dashed #2F2F2F;
}

.up-theme-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px;
    height: 22px;
    width: 22px;
    padding: 2px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.light-theme .up-theme-btn {
    background: #ffffff;
}

.light-theme .up-theme-btn.active {
    background: var(--color-gray-2);
}

.dark-theme .light-theme-btn {
    background: transparent;
    color: #E3C045;
}

.dark-theme .dark-theme-btn {
    background: transparent;
    color: #457DE3;
}

.dark-theme .up-theme-btn.active {
    background: #1D1D1D;
}

.up-header__right .up-theme-mode {
    display: none;
}

@media (min-width: 992px) {
    .up-header__right .up-theme-mode {
        display: flex !important;
    }

    .up-header__right .up-theme-mode {
        height: 54px;
        width: 30px;
        order: 5;
        margin-left: 10px;
        flex-direction: column;
    }

    .box-search .search-top {
        position: relative;
    }

    .box-search .search_word {
        display: block;
        font-size: 12px;
        color: #c5c5c5;
        text-align: right;
    }

    .box-search .search_word a {
        color: var(--up-text-wd-color);
        cursor: pointer;
    }

    .phone-box, .box-account, .box-cart {
        margin-left: 0;
    }

    header .text-a-icon,
    header .text-a-icon-cart {
        font-size: 10px;
        font-weight: 500;
        line-height: 14px;
        display: block;
        margin-bottom: 4px;
    }

    header .text-a-icon {
        color: var(--up-text-wd-color);
    }

    header .text-a-icon-cart {
        color: #fff;
    }

    .up-header__logo-top {
        margin-right: 30px;
    }

    .up-header #logo img {
        max-height: 66px;
    }

    .up-header-phones__dropdown {
        min-width: 100%;
    }

    .up-header-phones.hp-dd.open {
        filter: drop-shadow(2px 7px 7px rgba(0, 0, 0, 0.09));
        z-index: 1012;
    }

    .up-header-phones.hp-dd.open .up-header-phones__top {
        border-radius: 24px 24px 0px 0px;
        border-color: #fff;
    }

    .up-header-phones.hp-dd.open .up-header-phones__dropdown {
        padding-top: 0;
    }

    .up-header-phones.hp-dd.open .up-header-phones__dropdown.top-left-radius {
        border-top-left-radius: 14px;
    }

    .box-cart {
        min-width: 50px;
    }

    .top-lc {
        height: 30px;
        margin-left: 10px;
        border-radius: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-left: 4px;
        padding-right: 4px;
    }

    .light-theme .top-lc {
        border: 1px dashed #e3e3e3;
        background: #fff;
    }

    .dark-theme .top-lc {
        border: 1px dashed #2F2F2F;
    }

    .top-lc:not(.only_one_block) {
        width: 60px;
    }

    .top-lc.only_one_block {
        width: 50px;
    }

    .top-lc.only_one_block .btn-language-top,
    .top-lc.only_one_block .btn-currency-top {
        width: 40px;
    }

    .box-language-currency {
        height: 54px;
        width: 30px;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        border-radius: 20px;
        padding: 3px;
        order: 5;
        margin-left: 10px;
        position: relative;
    }

    .light-theme .box-language-currency {
        border: 1px solid #F6F6F6;
    }

    .dark-theme .box-language-currency {
        border: 1px dashed #2F2F2F;
    }

    .box-language-currency .dropdown-menu {
        right: 32px;
        height: 40px;
    }

    .box-language-currency:not(.only_one_block) .dropdown-menu {
        top: -11px;
    }

    .box-language-currency.only_one_block .dropdown-menu {
        top: 50%;
        transform: translateY(-50%);
    }

    .box-language-currency .open .dropdown-menu::after {
        content: '';
        position: absolute;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 8px solid var(--up-bg-wd);
        right: -3px;
        top: 50%;
        border-radius: 0;
        transform: translateY(-50%);
    }

    .btn-language-top,
    .btn-currency-top {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0px;
        height: 22px;
        width: 22px;
        padding: 2px;
        border-radius: 20px;
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .light-theme .btn-language-top,
    .light-theme .btn-currency-top {
        background: var(--color-gray-2);
    }

    .dark-theme .btn-language-top,
    .dark-theme .btn-currency-top {
        background: var(--up-bg-gray);
        color: #B1B1B1;
    }

    .box-language-currency.only_one_block .btn-language-top,
    .box-language-currency.only_one_block .btn-currency-top {
        height: 46px;
    }

    .up-header .btn-open-contact {
        display: none;
    }

    .box-account.text-ai-on .btn-account,
    .box-wishlist.text-ai-on .btn-wishlist-top,
    .box-compare.text-ai-on .btn-compare-top,
    .box-cart.text-ai-on #cart > .btn {
        justify-content: space-between;
        flex-direction: column;
    }

    .box-account.text-ai-on .btn-account {
        background: transparent;
    }

    .box-account.text-ai-on .btn-account i,
    .box-compare.text-ai-on .btn-compare-top i,
    .box-wishlist.text-ai-on .btn-wishlist-top i,
    .box-cart.text-ai-on .shopping-cart .up-icon-cart {
        margin-top: auto;
        margin-bottom: 3px;
    }


    .box-search {
        margin-left: 10px;
        margin-right: 10px;
    }

    .header-search .form-control {
        height: 54px;
        border-radius: 56px 0px 0px 56px;
    }

    .btn-search {
        height: 44px;
        width: 44px;
        margin-right: 6px;
    }

    .btn-voice-search,
    .btn-search-select {
        height: 44px;
        width: 44px;
    }

    .phone-box {
        margin-right: 10px;
        margin-left: 10px;
    }

    .box-account {
        margin-left: auto;
    }

    .box-account,
    .box-wishlist,
    .box-compare {
        margin-right: 15px;
    }

    .box-account .btn-account,
    .btn-wishlist-top,
    .btn-compare-top {
        height: 54px;
        width: 54px;
    }

    .box-account.open .dropdown-menu {
        box-shadow: none;
        margin-top: 0;
    }

    .box-cart.text-ai-on #cart > .btn {
        border-radius: 12px;
    }

    .box-cart:not(.text-ai-on) #cart > .btn {
        border-radius: 56px;
    }

    #cart > .btn {
        padding: 0px;
        height: 54px;
        min-width: 54px;
    }

    .viewed-quantity,
    .wishlist-quantity,
    .compare-quantity,
    #cart .cart-total {
        top: 2px;
        right: 0px;
    }

    .fixed-goods-bar {
        padding: 5px;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1007;
        background: var(--up-bg-fix-bar);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        border-radius: 48px;
        transition: all .3s ease-out;
        outline: 1px solid var(--up-bc-fix-bar);
        gap: 5px;
    }

    .fixed-goods-bar.show-back-top {
        right: 90px;
    }

    .fixed-goods-bar .box-wishlist, .fixed-goods-bar .box-compare {
        order: 0;
    }

    .fixed-goods-bar .box-viewed-pc,
    .fixed-goods-bar .box-wishlist,
    .fixed-goods-bar .box-compare {
        margin-top: 0px;
        display: inline-block;
        position: relative;
        margin-right: 0px;
    }

    .fixed-goods-bar .box-viewed-pc .btn-viewed-pc,
    .fixed-goods-bar .box-wishlist .btn-wishlist-top,
    .fixed-goods-bar .box-compare .btn-compare-top {
        background: var(--up-bg-btn-fix-bar);
        height: 44px;
        width: 100%;
        border-radius: 48px;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        width: 44px;
        line-height: 1;
        border: 0px;
    }

    .fixed-goods-bar .btn-viewed-pc i,
    .fixed-goods-bar .btn-wishlist-top i,
    .fixed-goods-bar .btn-compare-top i {
        margin-top: 5px;
        color: var(--up-color-icon-btn-fix-bar);
    }
}

@media (min-width: 1200px) {
    .box-search {
        margin-left: 10px;
        margin-right: 20px;
    }

    .phone-box {
        margin-right: 20px;
        margin-left: 10px;
    }
}

.box-account .dropdown-menu {
    min-width: auto;
}

.box-currency .btn-group.open .dropdown-toggle,
.btn-group.box-account.open .dropdown-toggle {
    box-shadow: none;
}

#currency .currency__title {
    display: none;
}

.box-wishlist .text-wishlist,
.box-compare .text-compare {
    display: none;
}

.box-account,
.box-account-mob {
    position: relative;
}

.box-account.text-ai-on .icon-account {
    margin-top: auto;
}

.box-currency .mob-text-currency,
.box-language .mob-text-language {
    display: none;
}

.box-language .up-compact-dropdown,
.box-currency .up-compact-dropdown {
    min-width: 80px;
}

.box-language .dropdown-menu.ch-dropdown > li > a {
    text-align: center;
}

.fixed-goods-menu .viewed-quantity, .fixed-goods-menu .wishlist-quantity, .fixed-goods-menu .compare-quantity {
    top: 8px;
    right: 10px;
}

.btn-search .icon-hsearch {
    color: #000;
    width: 18px;
    height: 18px;
}

.header-search .form-control:focus {
    border: 0px;
    box-shadow: none;
    outline: 0 none;
    background: var(--up-bg-main);
}

.header-search .dropdown-menu {
    margin-top: 0px;
}

.header-search .group_voice_search {
    background: var(--up-bg-main);
    border: 0px;
    position: relative;
}

.btn-voice-search .up-icon-microphone {
    color: #B4B4B4;
}

.btn-voice-search.active-speak .up-icon-microphone {
    color: #319F46;
}

.search-voice__dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2px;
    bottom: 2px;
}

.search-voice__dots-item {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    animation: moveDots 1s infinite;
}

.search-voice__dots-item_color_blue {
    background-color: #3e77aa;
    animation-delay: .15s;
}

.search-voice__dots-item_color_red {
    background-color: #f84147;
    animation-delay: .3s;
}

.search-voice__dots-item_color_orange {
    background-color: #ff5c00;
    animation-delay: .45s;
}

.search-voice__dots-item_color_green {
    background-color: #00a046;
    animation-delay: .6s;
}

@keyframes moveDots {
    50% {
        transform: translateY(-3.12px)
    }
}

.header-search .button_search {
    border: 0px;
    border-radius: 0px 54px 54px 0px;
}

.header-search .categories {
    border-radius: 54px 0px 0px 54px;
}

.header-search .categories,
.header-search .button_search {
    background: var(--up-bg-main);
}

.btn-search i,
.header-search .categories i {
    color: var(--up-text-color);
}

.header-search .autosearch_link {
    cursor: pointer;
}

.header-search .search_autocomplete {
    background: var(--up-bg-wd);
    padding: 2px 4px;
    border-radius: 12px;
    margin-top: 0px;
    width: 100%;
    z-index: 1042 !important;
    left: 0px;
    right: 0px;
    border: 0px;
    position: absolute;
    display: none;
    font-size: 12px;
}

@media (min-width: 768px) {
    .light-theme .header-search .search_autocomplete {
        -webkit-box-shadow: 6px 6px 19px rgba(0, 0, 0, 0.06);
        box-shadow: 6px 6px 19px rgba(0, 0, 0, 0.06);
    }

    .dark-theme .header-search .search_autocomplete {
        -webkit-box-shadow: 0px 0px 0px 1px var(--up-gray-color-1);
        box-shadow: 0px 0px 0px 1px var(--up-gray-color-1);
    }
}

@media (min-width: 992px) {
    .header-search .search_autocomplete {
        min-width: 530px;
        margin-top: 10px;
    }
}

.header-search .search_autocomplete .autocomplete-wrapper {
    max-height: 465px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 14px 16px;
    scrollbar-color: #e3e3e3 transparent;
    scrollbar-width: thin;
}

.header-search .search_autocomplete .autocomplete-wrapper::-webkit-scrollbar {
    width: 8px;
}

.header-search .search_autocomplete .autocomplete-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.header-search .search_autocomplete .autocomplete-wrapper::-webkit-scrollbar-thumb {
    background-color: #e3e3e3;
    border-radius: 12px;
    border: transparent;
}

@media (min-width: 1200px) {
    .header-search .search_autocomplete li.is-active:after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        background: transparent;
        width: 30px;
    }
}

.header-search .search_autocomplete li > a:hover,
.header-search .search_autocomplete li.is-active > a,
.header-search .search_autocomplete li > a:focus {
    border-radius: 8px;
}

.light-theme .header-search .search_autocomplete li > a:hover,
.light-theme .header-search .search_autocomplete li.is-active > a,
.light-theme .header-search .search_autocomplete li > a:focus {
    background-color: rgba(0, 0, 0, .022);
}

.dark-theme .header-search .search_autocomplete li > a:hover,
.dark-theme .header-search .search_autocomplete li.is-active > a,
.dark-theme .header-search .search_autocomplete li > a:focus {
    background: #000000;
    box-shadow: 0px 0px 0px 1px var(--up-gray-color-1);
}

.header-search .search_autocomplete .search-view-all-result {
    color: #2b8cdb;
}

.header-search .search_autocomplete a.autosearch_link {
    border-radius: 0;
    white-space: normal;
    margin-top: 5px;
    margin-bottom: 5px;
    display: block;
    color: var(--up-text-wd-color);
}

.light-theme .header-search .search_autocomplete a.autosearch_link {
    padding: 5px 5px;
}

.dark-theme .header-search .search_autocomplete a.autosearch_link {
    padding: 10px 5px;
}

.header-search .search_autocomplete a.autosearch_link .model {
    color: var(--up-text-gray-color);
}

.header-search .search_autocomplete li + li {
    border-top: 1px dashed var(--up-gray-color-1);
}

.header-search .ajaxadvance {
    width: 100%;
    display: flex;
    align-items: center;
}

.header-search .ajaxadvance .content {
    display: flex;
    width: 100%;
    position: relative;
}

.header-search .ajaxadvance .search__left_block {
    margin-right: 15px;
    flex: 1;
}

.header-search .ajaxadvance .search__right_block {
    white-space: nowrap;
    margin-left: auto;
    display: flex;
    align-items: center;
    align-self: center;
}

.header-search .ajaxadvance .name {
    font-size: 13px;
    font-weight: 600;
}

.light-theme .header-search .search_autocomplete li a .image img {
    mix-blend-mode: multiply;
}

.header-search .ajaxadvance .stock_status {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inherit;
    font-weight: 500;
}

.header-search .ajaxadvance .stock_status.instock {
    color: var(--up-color-status-in-stock);
}

.header-search .ajaxadvance .stock_status.outofstock {
    color: var(--up-color-status-out-of-stock);
}

.header-search .ajaxadvance .image {
    margin-right: 15px;
    position: relative;
}

.light-theme .header-search .ajaxadvance .image {
    margin-left: 15px;
}

.dark-theme .header-search .ajaxadvance .image {
    margin-left: 5px;
    border-radius: 8px;
    background: #ffffff;
}

.dark-theme .header-search .ajaxadvance .image img {
    padding: 10px;
}

.header-search .ajaxadvance .search__left_block > div:not(:first-child) {
    margin-top: 5px;
}

.header-search .ajaxadvance .price-old {
    text-decoration: line-through;
}

.header-search .price-old {
    font-size: 14px;
}

.header-search .price {
    color: var(--up-color-price);
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 5px;
    text-align: left;
    padding-right: 5px;
}

.header-search .ajaxadvance .highlight {
    color: #38b0e3;
}

.search_fix .header-search .search_autocomplete {
    margin-top: 0 !important;
}

.sel-cat-search:before {
    content: url("../images/icons/option-checked-icon.svg");
    position: absolute;
    left: 6px;
    top: 7px;
}

@media (max-width: 992px) {
    .header-search {
        padding: 0;
    }
}

/*Header - cart - right*/
.header-cart-backdrop {
    background: #0b0b0b;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1011;
    transition: visibility .2s ease, opacity .2s ease;
}

.no-scroll header {
    z-index: 1012;
}

.header-cart-sticky {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    z-index: 1;
    transform: translate(0, 100%);
    background: var(--up-modal-bg);
    transition: transform .35s ease, visibility .35s ease, opacity .35s ease;
}

.light-theme .header-cart-sticky {
    box-shadow: 0px 0px 22px rgba(182, 195, 217, 0.25);
}

.dark-theme .header-cart-sticky {
    box-shadow: 0px 0px 22px rgba(0, 0, 0, .45);
}

.cart-is-sticky .header-cart-sticky {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

.cart-is-open .header-cart-backdrop {
    opacity: 0.6;
    visibility: visible;
}

.header-cart-fix-right {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1012;
    max-height: 100vh;
    height: 100%;
    width: 100%;
    max-width: 100%;
    background: var(--up-modal-bg);
    transition: transform .2s ease, visibility .2s ease, opacity .2s ease;
    transform: translate(100%, 0);
    text-align: left;
}

.cart-is-open .header-cart-fix-right {
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
}

.header-cart-top {
    padding: 15px 60px 15px 20px;
    border-bottom: 1px solid var(--up-border-color);
    align-items: center;
    overflow: hidden;
    height: 54px;
}

.header-cart-title {
    color: var(--up-text-wd-color);
    font-size: 16px;
    font-weight: 600;
    position: relative;
    width: 100%;
    text-align: left;
}

.btn-close-viewed,
.header-cart-close {
    cursor: pointer !important;
    font-size: 0px;
    height: 28px;
    outline: medium none;
    position: absolute;
    right: 18px;
    top: 16px;
    width: 28px;
    z-index: 1060;
    text-align: center;
    line-height: 25px;
    border: 1px solid var(--up-gray-color-1);
    background-color: var(--up-bg-wd);
    border-radius: 6px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close-viewed i,
.header-cart-close i {
    font-size: 11px;
    color: var(--up-text-color);
}

.light-theme .btn-close-viewed:hover,
.light-theme .header-cart-close:hover {
    border: 1px solid #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.067);
}

.dark-theme .btn-close-viewed:hover i,
.dark-theme .header-cart-close:hover i {
    color: #ffffff;
}

.header-cart-scroll {
    padding: 0px 15px 15px;
    height: calc(100% - 54px);
    overflow-x: hidden;
    overflow-y: auto;
}

.page-cart-empty {
    padding-top: 20px;
    padding-bottom: 20px;
}

.page-cart-empty .cart-text-empty,
.header-cart-scroll .cart-empty {
    font-size: 16px;
    font-weight: 500;
    color: var(--up-text-wd-color);
    padding: 25px 0px 10px;
}

.page-cart-empty .cart-text-empty-slogan,
.header-cart-scroll .cart-empty-info-text {
    color: #505966;
    font-size: 14px;
}

.header-cart-scroll .box-empty-cart-icon {
    padding-top: 30px;
    text-align: center;
}

.header-cart-product-item,
.header-cart-voucher-item {
    padding-top: 20px;
    padding-bottom: 20px;
}

.header-cart-products > div:last-child {
    border-bottom: 2px dashed var(--up-border-color);
}

.header-cart-product-item .header-cart-product-name a:hover,
.header-cart-voucher-item .header-cart-voucher-name:hover {
    color: #0f4b82;
}

.header-cart-product-item-left .btn-link-delete {
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
    width: 26px;
    height: 26px;
    position: absolute;
    right: 0;
    top: 20px;
}

.light-theme .header-cart-product-item-left .btn-link-delete {
    color: var(--up-text-wd-color);
}

.dark-theme .header-cart-product-item-left .btn-link-delete {
    color: #da4f49;
}

.header-cart-product-item-left .btn-link-delete {
    left: -7px;
}

.header-cart-voucher-item .btn-link-delete {
    background: var(--color-gray-2);
    border-radius: 6px;
    font-size: 16px;
    color: var(--up-text-wd-color);
    text-align: center;
    width: 28px;
    height: 28px;
}

.header-cart-product-item + div.header-cart-product-item,
.header-cart-voucher-item + div.header-cart-voucher-item,
.header-cart-product-item + div.header-cart-voucher-item {
    border-top: 2px dashed var(--up-border-color);
}

.header-cart-product-item-left {
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
    max-width: 90px;
    padding-left: 20px;
    position: relative;
}

.header-cart-product-item-left img {
    border-radius: 8px;
    padding: 5px;
    background: #fff;
    aspect-ratio: 1;
}

.header-cart-voucher-item-left {
    width: 100%;
}

.header-cart-product-item-center {
    padding: 0 10px;
    width: 100%;
    align-self: flex-start;
}

.header-cart-voucher-name,
.header-cart-product-name a {
    font-size: 14px;
    color: var(--up-text-wd-color);
    font-weight: 600;
}

.header-cart-voucher-amount,
.header-cart-price-quantity {
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    max-width: 100px;
    text-align: right;
}

.header-cart-voucher-remove {
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    max-width: 40px;
    text-align: left;
    padding-right: 10px;
}

.header-cart-voucher-quantity {
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    max-width: 20px;
    text-align: right;
    margin-left: auto;
    padding-left: 10px;
    padding-right: 10px;
}

.header-cart-price-quantity .ch-cart-quantity {
    justify-content: flex-end;
}

.header-cart-voucher-amount {
    font-weight: 600;
    color: var(--up-text-wd-color);
}

.header-cart-item-total {
    margin-top: 10px;
    font-weight: 600;
    color: var(--up-text-wd-color);
}

.header-cart-options,
.header-cart-product-recurring {
    margin-top: 5px;
}

.header-cart-product-option .hcp-option-name,
.header-cart-product-recurring .hcp-recurring-text {
    font-size: 12px;
    color: var(--up-text-gray-color);
    margin-right: 5px;
}

.header-cart-product-option .hcp-option-value,
.header-cart-product-recurring .hcp-recurring-value {
    font-size: 12px;
    color: var(--up-text-wd-color);
    font-weight: 500;
}

.header-cart-totals {
    margin-top: auto;
    padding-top: 15px;
    padding-bottom: 15px;
}

.header-cart-text-info {
    padding: 15px 0px;
    color: var(--up-text-wd-color);
    display: inline-block;
    text-align: right;
    font-size: 16px;
}

.header-cart-text-info .icon-arrow-down {
    width: 8px;
    height: 4px;
    color: var(--up-text-wd-color);
    margin-left: 10px;
}

.ch-total-item {
    justify-content: flex-end;
    margin-top: 15px;
}

.header-cart-total-info.collapse.in {
    margin-bottom: 10px;
}

.header-cart-total-title {
    width: 100%;
    color: #535D67;
    font-size: 16px;
}

.header-cart-total-text {
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    max-width: 100px;
    font-size: 16px;
}

.header-cart-total-cnt,
.header-cart-total-price,
.header-cart-total-text {
    font-weight: 600;
}

.header-cart-total-price {
    margin-right: 5px;
}

@media (min-width: 768px) {
    .dark-theme .header-cart-fix-right {
        border-left: 1px solid var(--up-border-color);
    }

    .header-cart-top {
        padding: 15px 60px 15px 30px;
    }

    .header-cart-scroll {
        padding: 0px 30px 30px;
    }

    .header-cart-sticky {
        padding: 30px;
    }

    .header-cart-close {
        top: 16px;
    }

    .header-cart-fix-right {
        max-width: 480px;
    }

    .header-cart-top {
        height: 60px;
    }

    .header-cart-scroll {
        height: calc(100% - 60px);
    }

    .dark-theme .header-cart-product-item-left .btn-link-delete {
        left: -12px;
    }
}

.dropdown-menu.ch-dropdown > li.sel-cat-search > a {
    padding-left: 20px !important;
}

.alert {
    padding: 8px 14px 8px 14px;
}

#content {
    min-height: 320px;
    max-width: 100%;
    margin-bottom: 20px;
    margin-top: 10px;
}

.row-flex #content.col-md-9 {
    flex: 1;
}

.breadcrumb {
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0px;
    background-color: transparent;
    padding-top: 10px;
    padding-bottom: 10px;
}

.breadcrumb + .row-flex {
    margin-top: 10px;
}

.breadcrumb.col-md-offset-3 {
    margin-bottom: 10px;
}

.breadcrumb.col-lg-offset-3 {
    margin-bottom: 10px;
}

.breadcrumb i {
    font-size: 15px;
}

.breadcrumb > li:first-child {
    padding-left: 0px;
}

.breadcrumb > li {
    font-size: 13px;
    padding: 0 7px;
    position: relative;
    white-space: nowrap !important;
}

.breadcrumb > li a,
.breadcrumb > li a span {
    color: var(--up-text-color);

}

.breadcrumb > li a span {
    text-decoration: underline;
}

.breadcrumb > li a:hover span {
    text-decoration: none;
}

.breadcrumb > li span {
    color: #c5c5c5;
}

.breadcrumb > li + li:before {
    content: '';
    padding: 0;
}

.breadcrumb > li:after {
    content: "/";
    display: block;
    height: 26px;
    position: absolute;
    right: -2px;
    top: 0;
    width: 2px;
    color: var(--up-text-color);
}

.breadcrumb > li:last-child:after {
    content: "";
}

@media (max-width: 992px) {
    .breadcrumb-box {
        overflow: hidden;
        position: relative;
        margin-top: 5px;
    }

    .breadcrumb-box .breadcrumb {
        white-space: nowrap;
        position: relative;
        overflow: auto;
        overflow-y: hidden;
        padding-bottom: 18px;
        margin-bottom: -9px !important;
    }

    .breadcrumb-box:after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        height: 100%;
        width: 30px;
        z-index: 1;
        background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, var(--up-body-bg) 100%);
    }
}

.view-box-rs {
    background: var(--up-bg-main);
    padding: 6px;
    border-radius: 42px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.view-box {
    background: var(--up-bg-main);
    padding: 6px;
    border-radius: 42px;
    margin-bottom: 20px;
    clear: both;
}

.dark-theme .view-box,
.dark-theme .view-box-rs {
    border: 1px solid var(--up-border-color);
}

@media (min-width: 600px) {
    .view-box {
        margin-bottom: 10px;
    }
}

.btn-view {
    background: transparent;
    border: 0px;
    padding: 8px 14px;
    border-radius: 42px !important;
    margin-right: 6px;
    height: 48px;
    line-height: 1;
    width: 68px;
    max-width: 68px;
    z-index: 2;
}

.btn-view svg {
    vertical-align: middle;
    color: var(--up-text-gray-color);
}

.btn-view.active, .btn-view:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    z-index: 1;
}

.btn-view.active svg, .btn-view svg:focus {
    color: var(--up-text-wd-color);
}

@media (max-width: 991px) {
    .product_list_toolbar {
        display: none !important;
    }
}

.product_list_toolbar button.btn-view.active ~ .indicator-active {
    content: '';
    position: absolute;
    background: var(--indicator-active-bg);
    -webkit-box-shadow: 9px 8px 10px rgba(0, 0, 0, 0.067);
    box-shadow: 9px 8px 10px rgba(0, 0, 0, 0.067);
    width: 68px;
    height: 100%;
    left: 0px;
    top: 0px;
    border-radius: 42px;
    transition: transform 0.1s linear;
    z-index: 1;
}

.product_list_toolbar button.btn-view:nth-child(1).active ~ .indicator-active {
    transform: translateX(0px);
}

.product_list_toolbar button.btn-view:nth-child(2).active ~ .indicator-active {
    transform: translateX(72px);
}

.product_list_toolbar button.btn-view:nth-child(3).active ~ .indicator-active {
    transform: translateX(146px);
}

.btn-success {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #5bb75b;
    background-image: linear-gradient(to bottom, #62c462, #51a351);
    background-repeat: repeat-x;
    border-color: #51a351 #51a351 #387038;
}

.btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {
    box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border: 0px;
}

.btn-link {
    border-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    color: #23A1D1;
    border-radius: 0;
}

.btn-link, .btn-link:active, .btn-link[disabled] {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    box-shadow: none;
}

.btn-link-delete {
    border-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    color: #222;
    border-radius: 0;
    padding: 1px;
}

.btn-link-delete:hover, .btn-link-delete:active {
    border-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    color: #da4f49;
    border-radius: 0;
}

.btn-link-delete, .btn-link-delete[disabled] {
    background-color: rgba(0, 0, 0, 0);
    background-image: none;
    box-shadow: none;
}

.btn-inverse {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #363636;
    background-image: linear-gradient(to bottom, #444444, #222222);
    background-repeat: repeat-x;
    border-color: #222222 #222222 #000000;
}

.btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] {
    background-color: #222222;
    background-image: linear-gradient(to bottom, #333333, #111111);
}

.img-center {
    margin: 0 auto;
}

.btn-remove {
    color: #000;
    border: 0px;
    height: 34px;
    width: 34px;
    padding: 8px 5px;
    line-height: 19px;
    background: var(--color-gray-2);
}

.btn-remove:focus, .btn-remove:hover, .btn-remove:active {
    color: #da4f49;
    background: var(--color-gray-2);
}

.btn-general {
    color: var(--up-color-mod-add-to-cart);
    border-radius: 44px;
    font-size: 14px;
    padding: 0px 16px;
    -webkit-transition: background .15s ease;
    transition: background .15s ease;
    height: 52px;
    min-width: 52px;
    border: 0px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px;
    background: var(--up-bg-mod-add-to-cart);
    border: 1px solid var(--up-bc-mod-add-to-cart);
}

.btn-general.rounded {
    border-radius: 52px;
}

.btn-general.squircle {
    border-radius: 14px;
    width: 44px;
    height: 44px;
    min-width: 44px;
}

.product-thumb:hover .cart .btn-general {
    background-color: var(--up-bg-mod-add-to-cart-hover-block);
    color: var(--up-color-mod-add-to-cart-hover-block);
    border: 1px solid var(--up-bc-mod-add-to-cart-hover-block);
}

.product-thumb:hover .cart .btn-general .up-icon-cart {
    color: var(--up-color-mod-add-to-cart-hover-block);
}

.btn-general:focus,
.btn-general:hover,
.btn-general:active {
    color: var(--up-color-mod-add-to-cart-hover) !important;
    background-color: var(--up-bg-mod-add-to-cart-hover) !important;
    border: 1px solid var(--up-bc-mod-add-to-cart-hover) !important;
}

.btn-general .text-cart-add {
    padding-left: 5px;
}

.btn-general .up-icon-cart {
    color: var(--up-color-mod-add-to-cart);
}

.btn-general:focus .up-icon-cart,
.btn-general:hover .up-icon-cart,
.btn-general:active .up-icon-cart {
    color: var(--up-color-mod-add-to-cart-hover) !important;
}

.light-theme .btn-general.is-active {
    background: #5EA91C !important;
}

.light-theme .btn-general.is-active:focus, .light-theme .btn-general.is-active:hover, .light-theme .btn-general.is-active:active {
    color: #fff !important;
    background-color: #529C10 !important;
}

.light-theme .btn-general.is-active .up-icon-cart {
    color: #ffffff !important;
}

.dark-theme .btn-general.is-active {
    background: #9AC872 !important;
}

.dark-theme .btn-general.is-active:focus, .dark-theme .btn-general.is-active:hover, .dark-theme .btn-general.is-active:active {
    color: #fff;
    background-color: #9AC872 !important;
}

.dark-theme .btn-general.is-active {
    color: #000 !important;
}

.dark-theme .btn-general.is-active .up-icon-cart {
    color: #000 !important;
}

.btn-general img {
    margin-top: -4px;
    min-width: 100%;
    min-height: 100%;
    height: auto;
}

.btn-compare,
.btn-wishlist,
.btn-quickview,
.btn-fastorder {
    color: var(--up-color-mod-dop-btn);
    padding: 2px;
    -webkit-transition: background .2s ease;
    transition: background .2s ease;
    border: 0px;
    height: 36px;
    width: 36px;
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-thumb.bg_image .btn-compare,
.product-thumb.bg_image .btn-wishlist,
.product-thumb.bg_image .btn-quickview,
.product-thumb.bg_image .btn-fastorder {
    background: #ffffff;
}

.product-thumb:not(.bg_image) .btn-compare,
.product-thumb:not(.bg_image) .btn-wishlist,
.product-thumb:not(.bg_image) .btn-quickview,
.product-thumb:not(.bg_image) .btn-fastorder {
    background: var(--up-bg-mod-dop-btn);
}

.btn-compare i:not(.up-icon-22),
.btn-wishlist i:not(.up-icon-22) {
    font-size: 16px;
}

.btn-quickview i,
.btn-fastorder i {
    font-size: 18px;
}

.btn-compare:hover,
.btn-wishlist:hover,
.btn-quickview:hover,
.btn-fastorder:hover {
    border: 0px;
    background: var(--up-bg-mod-dop-btn-hover) !important;
    color: var(--up-color-mod-dop-btn-hover) !important;
}

.btn-compare.is-active,
.btn-wishlist.is-active {
    position: relative;
}

.btn-compare.is-active:after,
.btn-wishlist.is-active:after {
    position: absolute;
    content: "\e906";
    font-size: 12px;
    display: inline-flex;
    margin-right: 4px;
    font-family: 'upstore' !important;
    background: var(--up-bg-mod-dop-btn);
    padding: 2px;
    border-radius: 50px;
    top: 0;
    right: -6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.btn-compare.is-active:hover:after,
.btn-wishlist.is-active:hover:after {
    background: var(--up-bg-mod-dop-btn-hover) !important;
}

.light-theme .btn-compare.is-active:after,
.light-theme .btn-wishlist.is-active:after {
    color: #84C1A8
}

.dark-theme .btn-compare.is-active:after,
.dark-theme .btn-wishlist.is-active:after {
    color: #9AC872
}

.price {
    color: var(--up-color-price);
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
}

.price-old {
    color: var(--up-text-light-color);
    text-decoration: line-through;
    font-weight: 400;
    display: block;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 5px;
    display: inline-flex;
    align-items: center;
    position: relative;
    align-self: flex-start;
}

.price-new {
    color: var(--up-color-price);
}

.price-tax, .points {
    color: var(--up-color-price);
    opacity: 0.6;
    font-size: 12px;
    display: block;
    font-weight: 400;
}

/* fixed colum left + content + right*/
@media (min-width: 768px) {
    #column-left .product-layout .col-md-3 {
        width: 100%;
    }

    #column-left + #content .product-layout .col-md-3 {
        width: 50%;
    }

    #column-left + #content + #column-right .product-layout .col-md-3 {
        width: 100%;
    }

    #content + #column-right .product-layout .col-md-3 {
        width: 100%;
    }
}

/* fixed product layouts used in left and right columns */
#column-left .product-layout,
#column-right .product-layout {
    width: 100%;
}

.product-modules .product-layout {
    display: inline-block;
    min-height: 1px;
    padding: 0 15px;
    position: relative;
    vertical-align: top;
    width: 100%;
    word-spacing: normal;
}

.showmore-paginatation {
    flex-direction: column-reverse;
    margin-bottom: 10px;
}

.pagination {
    margin-bottom: 0px;
    background: var(--up-bg-main);
    border-radius: 42px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.showmore-paginatation .pagination {
    margin-top: 20px;
}

.box-showmore {
    text-align: center;
}

.chm-icon-showmore {
    width: 20px;
    height: 20px;
    vertical-align: -5px;
    margin-right: 6px;
}

#showmore.box-showmore {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .pagination {
        margin-right: auto;
    }

    .showmore-paginatation {
        flex-direction: row-reverse;
    }

    .box-showmore {
        text-align: right;
        margin-left: auto;
    }
}

.pagination > li {
    display: inline-block;
}

.pagination > li > a,
.pagination > button {
    width: 30px;
}

.pagination > li > span,
.pagination > button.active {
    width: 40px;
}

.pagination > li > a,
.pagination > button,
.pagination > li > span {
    height: 40px;
    max-width: 40px;
    text-align: center;
    padding-left: 2px;
    padding-right: 2px;
    color: var(--up-text-gray-color);
    background-color: transparent;
    border: 0px;
    border-radius: 40px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination > li:not(.active):first-child {
    padding-left: 5px;
}

.pagination > li:not(.active):last-child {
    padding-right: 5px;
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > button:focus,
.pagination > button:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
    color: var(--up-text-wd-color);
    background-color: transparent;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > button.active,
.pagination > button.active:focus,
.pagination > button.active:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
    color: var(--up-text-wd-color);
    background-color: var(--pagination-active-bg);
}

.pagination > .disabled > a,
.pagination > .disabled > a:focus,
.pagination > .disabled > a:hover,
.pagination > button.disabled,
.pagination > button.disabled:focus,
.pagination > button.disabled:hover,
.pagination > .disabled > span,
.pagination > .disabled > span:focus,
.pagination > .disabled > span:hover {
    color: var(--up-text-wd-color);
    background-color: transparent;
}


.list-group-item:first-child {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.list-group-item:last-child {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}

.list-group-item {
    background: var(--up-bg-wd);
}

.list-group a {
    border: 1px solid var(--up-border-color);
    color: var(--up-text-color);
    padding: 12px 20px;
}

.list-group a.active, .list-group a.active:hover, .list-group a:hover {
    color: #444444;
    background: #eeeeee;
    border: 1px solid #DDDDDD;
    text-shadow: 0 1px 0 #FFF;
}

/* fixed mobile cart quantity input */
.input-group .form-control[name^=quantity] {
    min-width: 50px;
}

.mod-categories {
    box-shadow: var(--up-box-shadow-1px);
    border-radius: 20px;
    background: var(--up-bg-wd);
    padding: 20px;
    position: relative;
    margin-bottom: 30px;
}

.mod-categories .mod-cat-list-items {
    margin-bottom: 0;
}

.mod-categories .mc-children.children-2-lv {
    display: none;
    padding-top: 5px;
    padding-bottom: 10px;
}

.mod-categories .mc-children.children-3-lv {
    display: none;
}

.mod-categories .mc-item {
    margin-bottom: 8px;
}

.mod-categories li.mc-item:last-child {
    margin-bottom: 0;
}

.mod-categories li.mc-item:last-child .mc-children.children-2-lv {
    padding-bottom: 0;
}

.mod-categories .mc-item > span {
    padding: 10px 0px 10px 15px;
    background: var(--up-bg-gray);
    border-radius: 6px;
    position: relative;
}

.mod-categories .mc-item .mc-show-child {
    width: 40px;
    min-height: 40px;
    height: 100%;
}

.mod-categories .mc-child-item .mc-show-child {
    width: 40px;
    height: 34px;
}

.mod-categories .mc-show-child {
    position: absolute;
    right: 0;
    top: 0;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0px 5px 5px 0px;
}

.mod-categories .mc-child-item > span {
    padding: 6px 0px 6px 15px;
    position: relative;
}

.mod-categories .mc-item > span > a,
.mod-categories .mc-child-item a {
    color: var(--up-text-color);
}

.mod-categories .mc-item > span > a:hover,
.mod-categories .mc-child-item a:hover {
    text-decoration: underline;
    color: var(--up-text-wd-color);
}

.mod-categories .mc-item.is-active-item > span > a,
.mod-categories .mc-child-item.is-active-item > span > a,
.mod-categories .mc-child-item.is-active-item > .mc-children > .mc-child-item.is-active-item > a {
    color: var(--up-text-link);
}

.mod-categories .mc-item.has-child > span > a {
    padding-right: 40px;
}

.mod-categories .icon-mc-down {
    color: var(--up-text-color);
}

.mod-categories .mc-item.is-active-item > span > .mc-show-child > .icon-mc-down,
.mod-categories .mc-child-item.is-active-item > span > .mc-show-child > .icon-mc-down {
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mod-categories .is-active-item .mc-children.children-2-lv {
    display: block;
}

.mod-categories .children-3-lv {
    padding: 2px 15px 0px 15px;
}

.mod-categories .children-3-lv > li > a {
    display: block;
    padding: 6px 8px;
}

.mod-categories .is-active-item .mc-children.children-2-lv > .is-active-item > .children-3-lv {
    display: block;
}

/*BANNER*/
.container-banner {
    margin: 10px 0px 10px;
    position: relative;
}

.container-banner .item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

#column-left .container-banner .item img,
#column-right .container-banner .item img {
    width: 100%;
}

.container-banner .item:hover {
    opacity: .9 !important;
}

/*SLIDESHOW*/
.container-slideshow {
    margin: 10px 0px 10px;
    position: relative;
}

.container-slideshow .swiper-slideshow {
    margin-left: -10px;
    margin-right: -10px;
}

.container-slideshow .item {
    padding-left: 10px;
    padding-right: 10px;
}

.container-slideshow .item .inner-item {
    border: 1px solid #e9e9e9;
    border-radius: 10px;
}

.container-slideshow .item img {
    margin: 0 auto;
    color: transparent;
}

.swiper-slideshow-arrow {
    position: absolute;
    top: 6px;
    background: var(--slider-arrow-hover-bg);
    color: var(--slider-arrow-color);
    border-radius: 5px;
    font-size: 0;
    height: 40px;
    width: 40px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    transition: all .15s ease 0s;
    cursor: pointer;
    top: 50%;
    margin-top: -20px;
    z-index: 10;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;

}

.light-theme .swiper-slideshow-arrow:hover,
.light-theme .swiper-slideshow-arrow:active {
    background: var(--color-gray-5);
}

.dark-theme .swiper-slideshow-arrow:hover,
.dark-theme .swiper-slideshow-arrow:active {
    background: var(--up-bg-main-hover);
}

.swiper-slideshow-arrow .icon-arrow-prev,
.swiper-slideshow-arrow .icon-arrow-next {
    width: 6px;
    height: 10px;
    color: var(--slider-arrow-color);
}

.swiper-slideshow-arrow.prev-prod {
    left: -20px;
}

.swiper-slideshow-arrow.next-prod {
    right: -20px;
}

.container-slideshow:hover .swiper-slideshow-arrow.prev-prod {
    left: 20px;
    opacity: 1;
}

.container-slideshow:hover .swiper-slideshow-arrow.next-prod {
    right: 20px;
    opacity: 1;
}

.container-banner .swiper-banner-pagination,
.container-slideshow .swiper-slideshow-pagination {
    bottom: 15px;
    top: auto;
    position: absolute;
    display: inline-block;
    text-align: center;
    height: 18px;
    background: #F9F9F999;
    border-radius: 18px;
    padding: 2px 6px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.container-banner .swiper-banner-pagination .swiper-pagination-bullet,
.container-slideshow .swiper-slideshow-pagination .swiper-pagination-bullet {
    width: 20px;
    height: 4px;
    border-radius: 50px;
    opacity: 1;
    background: #fff;
    box-shadow: 0px 6px 10px rgba(232, 234, 243, 0.8);
}

.container-banner .swiper-banner-pagination .swiper-pagination-bullet-active,
.container-slideshow .swiper-slideshow-pagination .swiper-pagination-bullet-active {
    background: #457DE3;
}

.container-module .swiper-module {
    padding-top: 10px;
    padding-bottom: 25px;
    margin-left: -10px;
    margin-right: -10px;
    flex: 1 1 100%;
    max-width: calc(100% + 20px)
}

.container-module .item.swiper-slide,
.container-module .row_items.swiper-slide,
.container-module .mod-art-item.swiper-slide {
    padding-left: 10px;
    padding-right: 10px;
}

.position-no-owl .swiper-visible {
    overflow: hidden;
}

.container-module .swiper-initialized .swiper-slide:not(.swiper-slide-visible) {
    opacity: 0;
}

.container-module .swiper-visible .swiper-slide:not(.swiper-slide-visible) {
    opacity: 0;
    transition: all 0.2s linear;
}

.container-module .swiper-initialized .swiper-slide-visible,
.container-module .swiper-visible .swiper-slide-visible,
#column-left .container-module .swiper-visible,
#column-right .container-module .swiper-visible {
    opacity: 1;
}

.container-module .swiper-module:not(.swiper-backface-hidden) .item.swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#column-left .container-module .swiper-slide,
#column-right .container-module .swiper-slide {
    max-width: 100%;
    flex: 0 0 100%;
}

.swiper-scrollbar.swiper-scrollbar-horizontal {
    bottom: 0px;
    height: 3px;
}

.swiper-scrollbar {
    cursor: grab;
}

.light-theme .swiper-scrollbar {
    background: var(--color-gray-2);
}

.light-theme .swiper-scrollbar-drag {
    background: #557DC0
}

.dark-theme .swiper-scrollbar {
    background: #1d1d1d;
}

.dark-theme .swiper-scrollbar-drag {
    background: #B1B1B1
}

@media (max-width: 768px) {
    .container-module .swiper-slide.h-auto {
        transform: none !important;
    }

    .swiper-scrollbar {
        display: none !important;
    }
}

.promo-slider {
    max-width: 264px;
    min-width: 264px;
    height: auto;
    position: relative;
    margin-top: 10px;
}

#column-left .promo-slider,
#column-right .promo-slider {
    max-width: 100%;
}

.promo-slider-left .promo-slider {
    margin-right: 20px;
}

#column-left .promo-slider-left .promo-slider,
#column-right .promo-slider-left .promo-slider {
    margin-right: 0;
}

.promo-slider-right .promo-slider {
    margin-left: 20px;
}

#column-left .promo-slider-right .promo-slider,
#column-right .promo-slider-right .promo-slider {
    margin-left: 0;
}

.promo-slider-right {
    flex-direction: row-reverse;
}

#column-left .promo-slider-left,
#column-right .promo-slider-left,
#column-left .promo-slider-right,
#column-right .promo-slider-right {
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.promo-slider__item {
    width: 264px;
    min-width: 264px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    /*filter: drop-shadow(2px 7px 9px rgba(0, 0, 0, 0.1));*/
}

.promo-slider__item:not(.bg-product-item) {
    padding-bottom: 25px;
}

.promo-slider__item.bg-product-item {
    padding-bottom: 35px;
}

.promo-slider .swiper:not(.swiper-initialized) .promo-slider__item ~ .promo-slider__item {
    opacity: 0;
}

#column-left .promo-slider__item,
#column-right .promo-slider__item {
    padding-bottom: 20px;
}

.promo-slider__inner {
    width: 100%;
    background-color: #000;
    height: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.promo-slider__inner.navigation-block {
    clip-path: polygon(0px 20px, 0px 20px, 0.26176637px 16.7558949px, 1.01961376px 13.6784512px, 2.23236459px 10.8088463px, 3.85884128px 8.1882576px, 5.85786625px 5.8578625px, 8.18826192px 3.8588384px, 10.80885071px 2.2323627px, 13.67845504px 1.0196128px, 16.75589733px 0.2617661px, 20px 3.3111080641971E-31px, calc(100% - 20px) 0px, calc(100% - 20px) 0px, calc(100% - 16.755822px) 0.26176637px, calc(100% - 13.678336px) 1.01961376px, calc(100% - 10.808714px) 2.23236459px, calc(100% - 8.188128px) 3.85884128px, calc(100% - 5.85775px) 5.85786625px, calc(100% - 3.858752px) 8.18826192px, calc(100% - 2.232306px) 10.80885071px, calc(100% - 1.019584px) 13.67845504px, calc(100% - 0.26175799999999px) 16.75589733px, calc(100% - 5.6843418860808E-14px) 20px, calc(100% - 0px) calc(100% - 78px), calc(100% - 0px) calc(100% - 78px), calc(100% - 0.26175799999999px) calc(100% - 74.755822px), calc(100% - 1.0195839999999px) calc(100% - 71.678336px), calc(100% - 2.232306px) calc(100% - 68.808714px), calc(100% - 3.858752px) calc(100% - 66.188128px), calc(100% - 5.85775px) calc(100% - 63.85775px), calc(100% - 8.188128px) calc(100% - 61.858752px), calc(100% - 10.808714px) calc(100% - 60.232306px), calc(100% - 13.678336px) calc(100% - 59.019584px), calc(100% - 16.755822px) calc(100% - 58.261758px), calc(100% - 20px) calc(100% - 58px), calc(100% - 76px) calc(100% - 58px), calc(100% - 76px) calc(100% - 58px), calc(100% - 79.892965px) calc(100% - 57.685885px), calc(100% - 83.58592px) calc(100% - 56.77648px), calc(100% - 87.029455px) calc(100% - 55.321195px), calc(100% - 90.17416px) calc(100% - 53.36944px), calc(100% - 92.970625px) calc(100% - 50.970625px), calc(100% - 95.36944px) calc(100% - 48.17416px), calc(100% - 97.321195px) calc(100% - 45.029455px), calc(100% - 98.77648px) calc(100% - 41.58592px), calc(100% - 99.685885px) calc(100% - 37.892965px), calc(100% - 100px) calc(100% - 34px), calc(100% - 100px) calc(100% - 20px), calc(100% - 100px) calc(100% - 20px), calc(100% - 100.261758px) calc(100% - 16.755822px), calc(100% - 101.019584px) calc(100% - 13.678336px), calc(100% - 102.232306px) calc(100% - 10.808714px), calc(100% - 103.858752px) calc(100% - 8.1881279999999px), calc(100% - 105.85775px) calc(100% - 5.85775px), calc(100% - 108.188128px) calc(100% - 3.858752px), calc(100% - 110.808714px) calc(100% - 2.232306px), calc(100% - 113.678336px) calc(100% - 1.019584px), calc(100% - 116.755822px) calc(100% - 0.2617580000001px), calc(100% - 120px) calc(100% - 0px), 20px calc(100% - 0px), 20px calc(100% - 0px), 16.75589733px calc(100% - 0.26175799999993px), 13.67845504px calc(100% - 1.0195839999999px), 10.80885071px calc(100% - 2.232306px), 8.18826192px calc(100% - 3.858752px), 5.85786625px calc(100% - 5.85775px), 3.85884128px calc(100% - 8.188128px), 2.23236459px calc(100% - 10.808714px), 1.01961376px calc(100% - 13.678336px), 0.26176637px calc(100% - 16.755822px), 3.3111117619826E-31px calc(100% - 20px), 0px 20px);
}

.promo-slider__content-title {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
}

.promo-slider__title_xs {
    font-size: 16px;
    color: #757575;
    margin-bottom: 10px;
}

.promo-slider__title_lg {
    font-size: 30px;
    color: #fff;
    line-height: 28px;
    font-weight: 600;
}

.promo-slider__content-price {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 1;
}

.promo-slider__from {
    font-size: 16px;
    color: #E3C045;
    margin-bottom: 4px;
    line-height: 16px;
}

.promo-slider__price {
    color: #fff;
    font-size: 26px;
    line-height: 26px;
}

.promo-slider__image {
    width: 100%;
    height: 100%;
    position: relative;
}

.promo-slider__img {
    width: 100%;
    height: 100%;
    display: block;
}

.promo-slider__img_cover {
    object-fit: cover;
}

.promo-slider__img_contain {
    object-fit: contain;
    object-position: center;
}

.promo-slider__navigation {
    border: var(--slider-navigation-border);
    background: var(--slider-navigation-bg);
    border-radius: 48px;
    width: 90px;
    height: 48px;
    position: absolute;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px;
    transition: all .1s linear;
    z-index: 2;
}

.promo-slider__navigation:not(.bg-product-item) {
    bottom: 25px;
}

.promo-slider__navigation.bg-product-item {
    bottom: 35px;
}

#column-left .promo-slider__navigation,
#column-right .promo-slider__navigation {
    bottom: 20px;
}

.promo-slider__arrow.swiper-button-disabled {
    opacity: .5;
    cursor: inherit;
}

.promo-slider__arrow {
    position: relative;
    background: var(--slider-arrow-bg);
    color: var(--slider-arrow-color);
    border-radius: 40px;
    font-size: 0;
    height: 40px;
    width: 40px;
    min-width: 40px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    -webkit-transition: all 0.1s linear 0s;
    -moz-transition: all 0.1s linear 0s;
    -ms-transition: all 0.1s linear 0s;
    -o-transition: all 0.1s linear 0s;
    transition: all 0.1s linear 0s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-slider__arrow i {
    font-size: 22px;
}

.promo-slider__arrow:hover, .promo-slider__arrow:active {
    background: var(--slider-arrow-hover-bg);
    color: var(--slider-arrow-hover-color);
}

.promo-slider__pagination {
    position: absolute;
    top: 19px !important;
    right: 20px;
    bottom: auto !important;
    z-index: 3;
    left: auto !important;
    text-align: right;
    width: auto !important;
    line-height: 12px;
    display: flex;
}

.promo-slider__pagination .swiper-pagination-bullet {
    height: 4px;
    width: 18px;
    border-radius: 12px;
    background: #868890;
    margin-left: 4px !important;
    margin-right: 0 !important;
    opacity: 1;
}

.promo-slider__pagination .swiper-pagination-bullet-active {
    background: #ffffff;
}

.stock-status {
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.stock-status.outofstock {
    color: var(--up-color-status-out-of-stock);
}

.stock-status.instock {
    color: var(--up-color-status-in-stock);
}

.stock-quantity_success {
    background: var(--up-color-status-in-stock);
    color: #fff;
    padding: 3px 6px;
    margin-left: 5px;
    border-radius: 4px;
    line-height: 1;
}

.stock-status.instock svg {
    margin-right: 5px;
}

.no-slider .product-thumb.bg_image,
.container-module .item.swiper-slide .product-thumb.bg_image {
    border-radius: 20px 20px 0px 0px;
}

.container-module .swiper-module:not(.swiper-initialized) .item.swiper-slide,
.container-module .swiper-module:not(.swiper-initialized) .mod-art-item.swiper-slide {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 350px) {
    .container-module .swiper-module:not(.swiper-initialized) .item.swiper-slide {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .container-module .promo-slider {
        display: none !important;
    }
}

@media (min-width: 600px) {
    .container-module .swiper-module:not(.swiper-initialized) .item.swiper-slide,
    .container-module .swiper-module:not(.swiper-initialized) .mod-art-item.swiper-slide {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 770px) {
    .container-module .swiper-module:not(.swiper-initialized) .item.swiper-slide {
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }

    .container-module .promo-slider-left .swiper-module:not(.swiper-initialized) .item.swiper-slide,
    .container-module .promo-slider-left .swiper-module:not(.swiper-initialized) .item.swiper-slide,
    .container-module .promo-slider-right .swiper-module:not(.swiper-initialized) .item.swiper-slide,
    .container-module .promo-slider-right .swiper-module:not(.swiper-initialized) .item.swiper-slide {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 980px) {
    .container-module .promo-slider-left .swiper-module:not(.swiper-initialized) .item.swiper-slide,
    .container-module .promo-slider-left .swiper-module:not(.swiper-initialized) .item.swiper-slide,
    .container-module .promo-slider-right .swiper-module:not(.swiper-initialized) .item.swiper-slide,
    .container-module .promo-slider-right .swiper-module:not(.swiper-initialized) .item.swiper-slide {
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }
}

@media (min-width: 1022px) {
    .col-sm-12 .container-module .swiper-module:not(.swiper-initialized) .item.swiper-slide,
    .col-md-12 .container-module .swiper-module:not(.swiper-initialized) .item.swiper-slide {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-8 .container-module .swiper-module:not(.swiper-initialized) .item.swiper-slide,
    .col-md-9 .container-module .swiper-module:not(.swiper-initialized) .item.swiper-slide {
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }

    .col-sm-12 .container-module .promo-slider-left .swiper-module:not(.swiper-initialized) .item.swiper-slide,
    .col-md-12 .container-module .promo-slider-left .swiper-module:not(.swiper-initialized) .item.swiper-slide,
    .col-sm-12 .container-module .promo-slider-right .swiper-module:not(.swiper-initialized) .item.swiper-slide,
    .col-md-12 .container-module .promo-slider-right .swiper-module:not(.swiper-initialized) .item.swiper-slide,
    .col-sm-12 .container-module .swiper-module:not(.swiper-initialized) .mod-art-item.swiper-slide,
    .col-md-12 .container-module .swiper-module:not(.swiper-initialized) .mod-art-item.swiper-slide {
        -ms-flex: 0 0 33.33333333%;
        flex: 0 0 33.33333333%;
        max-width: 33.33333333%;
    }

    .col-md-6 .container-module .swiper-module:not(.swiper-initialized) .swiper-slide,
    .col-sm-8 .container-module .swiper-module:not(.swiper-initialized) .mod-art-item.swiper-slide,
    .col-md-9 .container-module .swiper-module:not(.swiper-initialized) .mod-art-item.swiper-slide {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .position-no-owl.col-md-6 .container-module .swiper-module:not(.swiper-initialized) .swiper-slide {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 1230px) {
    .col-sm-12 .container-module .swiper-module:not(.swiper-initialized) .item.swiper-slide,
    .col-md-12 .container-module .swiper-module:not(.swiper-initialized) .item.swiper-slide {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }

    .col-sm-12 .container-module .promo-slider-left .swiper-module:not(.swiper-initialized) .item.swiper-slide,
    .col-md-12 .container-module .promo-slider-left .swiper-module:not(.swiper-initialized) .item.swiper-slide,
    .col-sm-12 .container-module .promo-slider-right .swiper-module:not(.swiper-initialized) .item.swiper-slide,
    .col-md-12 .container-module .promo-slider-right .swiper-module:not(.swiper-initialized) .item.swiper-slide {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (min-width: 1230px) {
    .col-sm-8 .container-module .swiper-module:not(.swiper-initialized) .item.swiper-slide,
    .col-md-9 .container-module .swiper-module:not(.swiper-initialized) .item.swiper-slide {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-3 .container-module .swiper-module:not(.swiper-initialized) .item.swiper-slide {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

#column-left .container-module .swiper-module:not(.swiper-initialized) .item.swiper-slide,
#column-right .container-module .swiper-module:not(.swiper-initialized) .item.swiper-slide {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.container-module .row_items {
    -webkit-transition: box-shadow .2s ease, opacity .2s ease;
    transition: box-shadow .2s ease, opacity .2s ease;
}

.container-module .row_items .item {
    border-radius: 10px;
}

@media (min-width: 768px) {
    .container-module .item.swiper-slide:hover {
        z-index: 1;
    }
}

.container-module .product-thumb-viewed,
.container-module .product-thumb {
    overflow: hidden;
    position: relative;
}

.product-thumb {
    padding: 0px;
}

.product-thumb .image {
    text-align: center;
    position: relative;
    margin-bottom: 15px;
    min-height: 13em;
}

.light-theme .product-thumb .image {
    padding: 15px;
}

.dark-theme .product-grid .product-thumb:not(.bg_image) .image,
.dark-theme .container-module .product-thumb:not(.bg_image) .image {
    padding: 15px;
}

.product-thumb:not(.bg_image) {
    border-radius: 20px;
}

@media (min-width: 992px) {
    .product-thumb:not(.bg_image):hover {
        box-shadow: var(--up-box-shadow-small);
    }
}

.light-theme .product-thumb.bg_image .image:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: auto;
    background-color: rgba(0, 0, 0, .022);
    border-radius: 20px;
}

.light-theme .product-thumb.bg_image .image a img.img-responsive {
    mix-blend-mode: multiply;
}

.product-thumb .image a {
    display: block;
    position: relative;
}

.product-thumb .main-img {
    opacity: 1;
    transform: rotateY(0deg);
    transition: all ease-in-out .3s;
}

.product-thumb:hover .main-img {
    opacity: 0;
    transform: rotateY(-180deg);
}

.product-thumb .additional-img-hover {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    opacity: 0;
    cursor: pointer;
    transform: rotateY(-180deg);
    transition: all ease-in-out .3s;
}

.product-thumb:hover .additional-img-hover {
    opacity: 1;
    transform: rotateY(0deg);
}

.product-thumb .image a img.img-responsive {
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 1rem;
    background-color: var(--color-gray-3);
}

.dark-theme .product-thumb .image a img.img-responsive {
    width: 100%;
    /*padding: 10px;*/
}

.product-thumb .image img {
    margin-left: auto;
    margin-right: auto;
    font-size: 0;
    color: transparent;
}

.dark-theme .product-thumb:not(.bg_image) .image a img {
    border-radius: 16px;
    background: var(--color-gray-3);
}

.dark-theme .product-thumb.bg_image .image {
    background: var(--color-gray-3);
    border-radius: 20px;
    padding: 15px;
}

.product-layout.product-grid .product-model + .image .rating {
    top: -30px;
}

@media (min-width: 1500px) {
    #content.col-sm-9 .product-layout.product-grid.col-lg-4,
    #content.col-md-9 .wl-product-layout.product-grid.col-lg-4,
    #content.col-md-9 .product-layout.product-grid.col-lg-4 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.product-grid .product-thumb .image {
    float: none;
}

.product-thumb .caption {
    position: relative;
    padding-bottom: 10px;
}

.product-thumb:not(.bg_image) {
    box-shadow: 0px 0px 0px 1px var(--up-gray-color-1);
}

.product-thumb:not(.bg_image) .caption {
    padding: 0px 15px 15px;
}

.product-thumb .caption > div:nth-child(2) {
    margin-top: auto !important;
}

.product-list.reviews-list .caption > div:nth-child(2) {
    margin-top: 0 !important;
}

.price-actions-box {
    min-height: 40px;
}

@media (min-width: 768px) {
    .price-actions-box {
        margin-top: 10px !important;
        min-height: 40px;
    }
}

.product-thumb .price {
    min-height: 40px;
    display: flex;
    flex-direction: column;
    align-items: initial;
    justify-content: flex-end;
    margin-right: auto;
}

/* --- MODULES --- */
.tab-pane .container-modules {
    text-align: center;
}

.container-module {
    /*margin:10px 0px 10px;*/
    margin-bottom: 10px;
    position: relative;
}

.container-module .box-pagination,
.container-module .box-showmore {
    padding: 10px 0;
    width: 100%;
}

[class^="showmore-review-store"] {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.container-module .box-pagination .pagination {
    margin-top: 0;
}

.container-module .title-module {
    /*margin-bottom: 10px;*/
    padding: 15px 0 20px 0;
    position: relative;
    clear: both;
}

.container-module .title-module span {
    font-size: 20px;
    padding: 0 20px 0 15px;
    z-index: 5;
    position: relative;
    font-weight: 500;
}

.light-theme .container-module .title-module span {
    color: var(--up-text-wd-color);
}

.dark-theme .container-module .title-module span {
    color: var(--up-text-wd-color) !important;
}

.container-module .item.no-slider .product-thumb:not(.bg_image),
.container-module .item:not(.no-slider) .product-thumb:not(.bg_image) {
    background: var(--up-bg-wd);
}

.swiper-mod-navigation {
    border: var(--slider-navigation-border);
    background: var(--slider-navigation-bg);
    border-radius: 48px;
    width: 90px;
    height: 48px;
    position: absolute;
    top: 0px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px;
    transition: all .1s linear;
}

.swiper-mod-arrow.swiper-button-disabled {
    opacity: .5;
    cursor: inherit;
}

.disabled-navigation {
    opacity: 0;
}

.swiper-mod-arrow {
    position: relative;
    background: var(--slider-arrow-bg);
    color: var(--slider-arrow-color);
    border-radius: 40px;
    font-size: 0;
    height: 40px;
    width: 40px;
    min-width: 40px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    -webkit-transition: all 0.1s linear 0s;
    -moz-transition: all 0.1s linear 0s;
    -ms-transition: all 0.1s linear 0s;
    -o-transition: all 0.1s linear 0s;
    transition: all 0.1s linear 0s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-mod-arrow:hover, .swiper-mod-arrow:active {
    background: var(--slider-arrow-hover-bg);
    color: var(--slider-arrow-hover-color);
}

.swiper-mod-arrow i {
    font-size: 22px;
}

@media (max-width: 991px) {
    .sidebar-viewed {
        display: none;
    }
}

@media (min-width: 992px) {
    .sidebar-viewed {
        position: fixed;
        right: 0;
        top: 0;
        bottom: 0;
        left: auto;
        max-height: 100vh;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        width: 100%;
        max-width: 480px;
        z-index: 1150;
        background: var(--up-bg-wd);
        transition: transform .3s ease-out;
    }

    .dark-theme .sidebar-viewed {
        border-left: 1px solid var(--up-border-color);
    }

    .sidebar-viewed.open-viewed {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .sidebar-viewed__header {
        padding: 15px 60px 15px 30px;
        height: 60px;
        border-bottom: 1px solid var(--up-border-color);
        display: flex;
        align-items: center;
    }

    .sidebar-viewed__content {
        padding: 15px;
    }

    .sidebar-viewed__title {
        color: var(--up-text-wd-color);
        font-size: 16px;
        font-weight: 600;
        position: relative;
        width: 100%;
        text-align: left;
    }

    .sidebar-viewed__content {
        height: 100%;
        max-height: calc(100% - 60px);
        overflow-x: hidden;
        overflow-y: auto;
    }
}

.product-thumb-viewed .image {
    text-align: center;
}

.product-thumb-viewed .image img {
    margin-left: auto;
    margin-right: auto;
}

.product-thumb-viewed {
    padding-bottom: 15px;
    padding-top: 15px;
}

.product-thumb-viewed + div.product-thumb-viewed {
    border-top: 1px dashed var(--up-border-color)
}

.container-module-viewed .image {
    -ms-flex: 0 0 120px;
    flex: 0 0 120px;
    max-width: 120px;
}

.light-theme .container-module-viewed .image img {
    mix-blend-mode: multiply;
}

.dark-theme .container-module-viewed .image img {
    background: #fff;
    border-radius: 10px;
    padding: 5px;
}

.container-module-viewed .caption {
    padding-right: 0;
}

.container-module-viewed .product-name {
    margin-bottom: 10px;
    text-align: left;
}

.container-module-viewed .product-name a {
    color: var(--up-text-wd-color);
    font-size: 13px;
    font-weight: 600;
}

.container-module-viewed .product-model {
    color: var(--up-text-color);
    text-align: left;
    margin-bottom: 5px;
    font-size: 12px;
}

.product-thumb-viewed .price-actions-box {
    margin-top: auto !important;
}

.container-module-viewed .cart .btn-general {
    padding: 5px;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
}

.container-module-viewed .cart .text-cart-add {
    display: none;
}

.product-thumb-viewed .price {
    min-height: 40px;
    display: flex;
    flex-direction: column;
    align-items: initial;
    justify-content: flex-end;
    text-align: left;
    margin-right: auto;
    font-size: 18px;
}

.product-thumb-viewed .price-old {
    margin-bottom: 0;
    line-height: 16px;
    margin-bottom: auto;
    font-size: 15px;
}

.product-thumb .product-name {
    min-height: 44px;
    margin-bottom: 15px;
    text-align: left;
}

.product-thumb .product-name a {
    color: var(--up-text-wd-color);
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 20px;
    font-size: 13px;
}

@media (min-width: 992px) {
    .light-theme .product-thumb .product-name a:hover {
        color: #365A95;
    }

    .dark-theme .product-thumb .product-name a:hover {
        color: #3572E1;
    }
}

@media (min-width: 992px) {
    .product-thumb .product-name a {
        -webkit-line-clamp: 4;
        font-size: 15px;
        line-height: 22px;
        font-weight: 500;
    }
}

.product-description {
    margin-bottom: 10px;
}

.container-module .product-description {
    height: 62px;
    margin-bottom: 10px;
    overflow: hidden;
    text-align: left;
}

.product-thumb .product-model {
    color: var(--up-text-color);
    font-size: 13px;
    text-align: left;
}

.product-thumb .rating-stars {
    margin-right: 8px;
}

.product-thumb .product-reviews .up-icon-message {
    color: var(--up-text-light-color);
}

.product-thumb .product-reviews .total-reviews {
    height: 20px;
    min-width: 20px;
    margin-left: 8px;
    color: var(--up-text-color);
    font-size: 10px;
    border-radius: 6px;
    border: 1px solid var(--up-text-light-color);
}

.product-thumb .rating-star {
    width: 16px;
    position: relative;
    color: var(--up-color-rating-passive);
    margin-right: 3px;
    line-height: 18px;
}

.product-thumb .rating-star:after,
.product-thumb .rating-star-active:after {
    content: "\e914";
    line-height: 16px;
    font-size: 16px;
    display: inline-block;
}

.product-thumb .rating-star-active {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    color: var(--up-color-rating-active);
    width: 0%;
}

.product-thumb .product_model_sstatus {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .product-thumb .product-model {
        margin-bottom: 5px;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .product-thumb .product_model_sstatus {
        flex-wrap: nowrap;
    }
}

.stock-status {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inherit;
}

.stock-status.instock:before {
    content: "\e906";
    font-size: 14px;
    position: relative;
    display: inline-flex;
    margin-right: 4px;
}

@media (max-width: 500px) {
    .product-grid .product-thumb .cart,
    .container-module .product-thumb .cart {
        width: 100%;
        margin-top: 10px;
    }
}

.product-grid .product-thumb .cart,
.container-module .product-thumb .cart {
    margin-left: auto;
    align-items: flex-end;
}

.product-grid .product-thumb .addit-action,
.container-module .product-thumb .addit-action {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.product-grid .product-thumb .addit-action,
.container-module .product-thumb .addit-action {
    position: absolute;
    transition: all .15s ease 0s;
    opacity: 1;
    z-index: 2;
}

.product-grid .product-thumb .cart,
.container-module .product-thumb .cart {
    width: auto;
    margin-left: auto;
    display: flex;
}

@media (max-width: 992px) {
    .product-grid .product-thumb .addit-action,
    .container-module .product-thumb .addit-action {
        top: auto;
        bottom: 15px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 4px;
    }

    .product-grid .btn-compare.is-active:after,
    .container-module .btn-compare.is-active:after,
    .product-grid .btn-wishlist.is-active:after,
    .container-module .btn-wishlist.is-active:after {
        font-size: 9px;
        width: 12px;
        height: 12px;
        right: -3px;
    }

    .product-grid .addit-action > div > button,
    .container-module .addit-action > div > button {
        width: 28px;
        height: 28px;
    }

    .product-grid .addit-action > div > button i,
    .container-module .addit-action > div > button i {
        font-size: 15px;
    }
}

@media (min-width: 992px) {
    .product-grid .product-thumb .addit-action,
    .container-module .product-thumb .addit-action {
        top: 15px;
        right: -46px;
        flex-direction: column;
        opacity: 0;
        z-index: -1;
    }

    .product-grid .product-thumb .addit-action > div + div,
    .container-module .product-thumb .addit-action > div + div {
        margin-top: 4px;
    }

    .product-grid .product-thumb:hover .addit-action,
    .container-module .product-thumb:hover .addit-action {
        z-index: 2;
        right: 20px;
        top: 20px;
        opacity: 1;
    }

    .dark-theme .product-grid .product-thumb:hover .addit-action,
    .dark-theme .container-module .product-thumb:hover .addit-action {
        right: 20px;
        top: 20px;
    }
}

.position-no-owl .row_items .item {
    position: relative;
    margin-bottom: 20px;
}

.position-no-owl .row_items .item:last-child {
    margin-bottom: 0 !important;
}

.position-no-owl .row_items .image {
    position: inherit;
    float: left;
    width: clamp(80px, 100%, 130px);
    min-width: 80px;
    max-width: 130px;
    padding: 10px;
    margin-bottom: 0px;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    align-self: normal;
    align-self: flex-start;
    transition: opacity .15s ease 0s;
}

.position-no-owl .row_items .image img.additional-img-hover {
    padding: 15px;
    top: 0px;
}

.position-no-owl .promo-slider {
    display: none;
}

.position-no-owl .row_items .product-thumb {
    flex-direction: row !important;
    flex-wrap: nowrap;
    border-radius: 20px;
    padding: 50px 15px 15px;
}

.position-no-owl .row_items .product-thumb.bg_image .caption {
    padding: 0px 0px 5px 15px;
}

.position-no-owl .row_items .product-thumb:not(.bg_image) .caption {
    padding: 15px;
}

.position-no-owl .row_items .product-thumb .caption {
    margin-bottom: 0px;
    flex-grow: 1;
    position: relative;
    min-height: 132px;
}

.position-no-owl .row_items .product-name {
    overflow: hidden;
    margin-bottom: 0px;
    min-height: 22px;
    width: calc(100% - 30px);
    left: 15px;
    top: 15px;
    position: absolute;
}

.position-no-owl .row_items .product-thumb .product-name a {
    font-size: 14px;
    font-weight: 600;
    -webkit-line-clamp: 1;
}

.position-no-owl .row_items .product-thumb .cart {
    margin-left: auto;
    width: auto;
    margin-top: 0;
}

@media (min-width: 992px) {
    .position-no-owl .row_items .product-thumb .cart {
        opacity: 0;
        transition: opacity .15s ease 0s;
    }
}

.position-no-owl .row_items .product-thumb:hover .cart {
    opacity: 1;
}

.position-no-owl .row_items .product-thumb .btn-general {
    padding: 5px 7px;
}

.position-no-owl .row_items .product-thumb .btn-general .text-cart-add,
.position-no-owl .row_items .product-thumb .addit-action {
    display: none !important;
}

.position-no-owl .row_items .product-thumb .price {
    margin-bottom: 0px;
}

.position-no-owl .row_items .product-thumb .addit-action > div {
    margin: 4px;
}

.position-no-owl .row_items .product-thumb .addit-action > div > .btn:hover {
    background: var(--color-gray-2);
}

.position-no-owl .row_items .product-thumb .caption > div:nth-child(2) {
    margin-top: 0 !important;
}

.position-no-owl .row_items .product_model_sstatus {
    flex-direction: column;
}

.position-no-owl .row_items .product-thumb .caption .rating,
.position-no-owl .row_items .product-thumb .caption .product-model {
    margin-bottom: 6px;
}

.position-no-owl .row_items .price-actions-box {
    margin-top: auto !important;
}

.position-no-owl .row_items .quantity_plus_minus,
.position-no-owl .row_items .product-description,
.position-no-owl .row_items .stickers-ns,
.position-no-owl .row_items .pro_sticker_block,
.position-no-owl .row_items .pro_sticker,
.position-no-owl .row_items .action-timer {
    display: none;
}

.wl-product-layout .product-thumb,
.product-layout .product-thumb {
    overflow: hidden;
    position: relative;
}

.ch-limit-sorts .dropdown-menu.ch-dropdown > li > a {
    text-align: center;
}

.ch-limit-sorts .dropdown-menu.ch-dropdown > li.active > a {
    color: var(--up-text-wd-color);
}

@media (max-width: 991px) {
    .ch-limit-sorts {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
        width: 100%
    }
}

.box-sub-cat {
    padding-top: 1px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

@media (max-width: 768px) {
    .box-sub-cat {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .box-sub-cat .item-subc {
        flex: 0 0 45%;
        max-width: 45%;
    }
}

@media (min-width: 768px) {
    .box-sub-cat {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.item-subc {
    margin-bottom: 20px;
}

@media (min-width: 1200px) {
    .item-subc.col-lg-1-8 {
        -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
}

.sub-categories {
    position: relative;
}

.sub-categories .swiper-module {
    padding-top: 1px;
    padding-bottom: 10px;
    margin-left: -10px;
    margin-right: -10px;
}

#content .sub-categories .swiper-module {
    padding-bottom: 0;
}

.swiper-sub-category__item {
    padding-left: 10px;
    padding-right: 10px;
}

.sub-categories .swiper-module:not(.swiper-initialized) .swiper-sub-category__item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

@media (min-width: 500px) {
    .sub-categories .swiper-module:not(.swiper-initialized) .swiper-sub-category__item {
        -ms-flex: 0 0 33.3333333333%;
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }
}

@media (min-width: 768px) {
    .sub-categories .swiper-module:not(.swiper-initialized) .swiper-sub-category__item {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (min-width: 992px) {
    .sub-categories .swiper-module:not(.swiper-initialized) .swiper-sub-category__item {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (min-width: 1150px) {
    .sub-categories .swiper-module:not(.swiper-initialized) .swiper-sub-category__item {
        -ms-flex: 0 0 16.66666667%;
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }
}

@media (min-width: 1350px) {
    .sub-categories .swiper-module:not(.swiper-initialized) .swiper-sub-category__item {
        -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5;
        max-width: 12.5%;
    }
}

.subcategory {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -ms-flex-align: center !important;
    align-items: center !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    text-align: center;
    height: 100%;
    border-radius: 20px;
}

/*.subcategory:not(.bg_item) {
	border: 1px solid #e3e3e3;
}*/
.sub-categories.bg_item .subcategory {
    height: auto;
}

.swiper-sub-category__arrow.swiper-button-disabled {
    opacity: .5;
    cursor: inherit;
}

.swiper-sub-category__arrow {
    position: absolute;
    background: var(--slider-arrow-bg);
    color: var(--slider-arrow-color);
    border-radius: 40px;
    font-size: 0;
    height: 40px;
    width: 40px;
    min-width: 40px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    -webkit-transition: all 0.1s linear 0s;
    -moz-transition: all 0.1s linear 0s;
    -ms-transition: all 0.1s linear 0s;
    -o-transition: all 0.1s linear 0s;
    transition: all 0.1s linear 0s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.swiper-sub-category__navigation {
    opacity: 0;
}

.swiper-sub-category__arrow i {
    font-size: 22px;
}

.swiper-sub-category__arrow_prev {
    left: 15px;
}

.swiper-sub-category__arrow_next {
    right: 15px;
}

.type_arrow_bg_item .swiper-sub-category__arrow_prev,
.type_arrow_bg_item .swiper-sub-category__arrow_next {
    top: 45%;
    transform: translateY(-45%);
}

.type_arrow_bg_image .swiper-sub-category__arrow_prev,
.type_arrow_bg_image .swiper-sub-category__arrow_next {
    top: 40%;
    transform: translateY(-40%);
}

.sub-categories:hover .swiper-sub-category__navigation:not(.disabled-navigation) {
    opacity: 1;
}

.subcategory.bg_item {
    margin-bottom: 5px;
}

.subcategory.bg_item .sc-image,
.subcategory.bg_image .sc-image {
    padding: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 20px;
    min-height: 125px;
    position: relative;
}

.subcategory.bg_image .sc-image {
    background: var(--up-bg-wd);
    margin-bottom: 10px;
}

.light-theme .subcategory.bg_item:before,
.light-theme .subcategory.bg_image .sc-image:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: auto;
    background-color: rgba(0, 0, 0, .022);
    border-radius: 20px;
}

.light-theme .subcategory .sc-image img {
    mix-blend-mode: multiply;
}

.subcategory .sc-name {
    color: var(--up-text-wd-color);
    padding-left: 10px;
    padding-right: 10px;
}

.subcategory.bg_item > .sc-name {
    margin: 15px 0px;
}

.subcategory.bg_item .sc-image + .sc-name {
    margin: 0px 0 15px;
}

.subcategory img {
    margin: 0 auto;
    color: transparent;
}

.dark-theme .subcategory img {
    background: #ffffff;
    border-radius: 8px;
    padding: 5px;
}

.subcategory.bg_item {
    border-radius: 20px;
    margin-bottom: 10px;
}

.dark-theme .subcategory.bg_item {
    background: var(--up-bg-main);
    border: 1px solid var(--up-border-color);
}

@media (min-width: 992px) {
    .light-theme .subcategory.bg_item:hover {
        box-shadow: 0px 0px 0px 1px #e9e9e9;
        border: 0px;
    }

    .light-theme .subcategory.bg_image:hover .sc-image {
        box-shadow: 0px 0px 0px 1px #e9e9e9;
    }

    .light-theme .subcategory.bg_item:hover:before,
    .light-theme .subcategory.bg_image:hover .sc-image:before {
        display: none;
    }

    .subcategory:hover .sc-name {
        text-decoration: underline;
    }

    .light-theme .subcategory:hover .sc-name {
        color: #4A71B1;
    }

    .dark-theme .subcategory:hover .sc-name {
        color: #457DE3;
    }
}

.subcategory .name-wrapper {
    height: 44px;
    padding: 0 10px;
    overflow: hidden;
    color: #000;
    text-align: left;
}

.display-table {
    display: table;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.display-table-cell {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    width: 100%;
}

.btn-sort-limit {
    background: var(--up-bg-wg);
    border: 0px;
    height: 48px;
    padding-left: 26px;
    padding-right: 22px;
    font-size: 14px !important;
    color: var(--up-text-wd-color);
}

.btn-sort-limit:focus, .btn-sort-limit:hover {
    color: var(--up-text-wd-color) !important;
}

.ch-limit-sorts .btn-group:first-child .btn-sort-limit {
    border-top-left-radius: 42px;
    border-bottom-left-radius: 42px;
}

.ch-limit-sorts .btn-group:last-child .btn-sort-limit {
    border-top-right-radius: 42px !important;
    border-bottom-right-radius: 42px !important;
}

.ch-limit-sorts .btn-group + .btn-group .btn {
    margin-left: 2px;
}

.us-category-sort-title {
    display: none;
}

@media (min-width: 992px) {
    .us-category-sort-title {
        font-size: 16px;
        font-weight: 600;
        color: var(--up-text-wd-color);
        padding: 0px 5px 0px 15px;
        margin-bottom: 1px;
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
    }

    .ddm-sort-list-pc {
        display: flex;
        flex-wrap: wrap;
        margin-right: 20px;
        position: relative;
        padding: 0px;
        background: transparent;
        box-shadow: none;
        top: 0;
        margin-top: 0px !important;
        float: none;
    }

    .ddm-sort-list-pc.dropdown-menu.ch-dropdown li {
        margin-bottom: 0px;
        padding-top: 0px;
        border-top: 0px;
    }

    .ddm-sort-list-pc.dropdown-menu.ch-dropdown > li > a:before {
        display: none !important;
    }

    .ddm-sort-list-pc.dropdown-menu.ch-dropdown > li > a {
        color: var(--up-text-gray-color);
        background: transparent;
    }

    .ddm-sort-list-pc.dropdown-menu.ch-dropdown > li > a:hover {
        color: var(--up-text-wd-color);
    }

    .ddm-sort-list-pc.dropdown-menu.ch-dropdown > li.active > a {
        color: var(--up-text-wd-color);
        text-decoration: underline;
    }
}


.btn-sort-limit svg {
    margin-left: 8px;
}

.btn-sort-link,
.btn-limit-link {
    font-size: 12px;
    width: 100%;
    border: 0px;
    background: transparent;
    white-space: nowrap;
}

.dropdown-menu.ch-dropdown > li > button.btn-limit-link {
    text-align: center;
}

.btn-sort-link {
    text-align: left;
}

.localstorage .btn-group:active .dropdown-toggle,
.localstorage .btn-group.open .dropdown-toggle {
    box-shadow: none;
    color: var(--up-text-wd-color);
    background: var(--up-bg-gray-hover);
}

.localstorage .dropdown-menu.ch-dropdown {
    min-width: 80px;
    text-align: center;
    margin-top: 5px;

}

.ddm-sort {
    border-top-right-radius: 0px;
}

.ddm-limit {
    left: 0 !important;
    border-top-left-radius: 0px;
}

@media (min-width: 992px) {
    .ddm-limit {
        left: auto !important;
        border-top-right-radius: 0px;
        border-top-left-radius: 8px;
    }

    .md-border-radius .btn-sort-limit {
        border-radius: 42px;
    }
}

/*PRODUCT-GRID*/
.image-category {
    float: left;
    list-style: none;
    max-width: 78px;
}

#list-view .fa,
#price-view .fa,
#grid-view .fa {
    font-size: 16px;
}


@media (min-width: 600px) {
    .product-grid.wl-product-layout,
    .product-grid.product-layout {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

.product-grid .product-thumb {
    background: var(--up-bg-wd);
}

.product-grid .product-thumb:not(.bg_image) {
    border-radius: 20px;
}

.product-grid .product-thumb.bg_image {
    border-radius: 20px 20px 0px 0px;
}

@media (max-width: 600px) {
    .container-module .pct_gv, .container-module .latest_gv {
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .no_bg_image .product-grid.col-xs-6,
    .container-module .item.no-slider.p-xs-0,
    .container-module:not(.carousel-mod) .item.swiper-slide.p-xs-0 {
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .container-module:not(.carousel-mod) .item.swiper-slide .product-thumb,
    .container-module .no-slider .product-thumb,
    .no_bg_image .product-grid .product-thumb {
        border-radius: 0px !important;
    }

    .product-thumb .image a:after {
        border-radius: 0px !important
    }

    .product-thumb .image {
        min-height: 8em;
    }

    .product-grid .product-thumb .price,
    .container-module .product-thumb .price {
        font-size: 16px;
    }

    .product-grid .product-thumb .price-old,
    .container-module .product-thumb .price-old {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .product-grid .product-thumb .cart,
    .container-module .product-thumb .cart {
        margin-top: 0;
    }

    .product-grid .product-thumb .pro_sticker,
    .container-module .product-thumb .pro_sticker {
        display: none;
    }

    .container-module .product-thumb .quantity_plus_minus,
    .container-module .product-thumb .cart .text-cart-add,
    .product-grid .product-thumb .quantity_plus_minus,
    .product-grid .product-thumb .cart .text-cart-add {
        display: none;
    }
}

@media (max-width: 350px) {
    .container-module .item.no-slider.f-col-xs-6,
    .wl-product-layout.product-grid.col-xs-6,
    .product-layout.product-grid.col-xs-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media screen and (min-width: 350px) and (max-width: 992px) {
    .container-module .item.no-slider.f-col-xs-6,
    .wl-product-layout.product-grid.col-xs-6,
    .product-layout.product-grid.col-xs-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/*PRODUCT GRID*/

/*PRODUCT LIST*/
.product-list.reviews-list,
.product-layout.product-list {
    margin-top: 10px;
    margin-bottom: 10px;
}

.product-list .product-thumb {
    background: var(--up-bg-wd);
    box-shadow: 0px 0px 0px 1px var(--up-border-color);
    -webkit-transition: box-shadow .2s ease;
    transition: box-shadow .2s ease;
    border-radius: 20px;
}

.product-list .product-thumb:hover {
    -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, .07);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .07);
    z-index: 1;
}

@media (min-width: 992px) {
    .product-list .product-thumb.flex-column {
        flex-direction: row !important;
    }

    .product-list .product-thumb .stickers-ns {
        bottom: 66px;
    }

    .product-list .product-thumb:hover .ch-g-dots {
        padding-bottom: 6px;
    }

    .product-list .product-thumb:hover .action-timer,
    .product-list .product-thumb:hover .stickers-ns {
        z-index: 1 !important;
        opacity: 1 !important;
    }

    .product-list .product-thumb.bg_image .image {
        margin: 0 auto;
        margin-right: 5px;
        flex: 0 0 25%;
        min-width: 280px;
        margin: 15px 0px 15px 15px;
    }

    .product-list .product-thumb:not(.bg_image) .image {
        margin: 0 auto;
        padding: 20px 15px 15px 15px;
        min-width: 260px;
        max-width: 260px;
    }

    .dark-theme .product-list .product-thumb:not(.bg_image) .image {
        padding: 15px;
    }

    .product-list .product-thumb:not(.bg_image) .image img {
        max-width: 230px;
    }

    .product-list .product-thumb .image a {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dark-theme .product-list .product-thumb .image a {
        border-radius: 16px;
        background: #ffffff;
    }

    .product-list .product-thumb .caption {
        float: left;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 20px;
        position: unset;
    }

    .product-list .product-thumb:not(.bg_image) .caption {
        border-left: 1px solid var(--up-border-color);
    }

    .product-list .product-thumb .addit-action > div > .btn:hover {
        background: #e9e9e9;
        color: #000;
    }

    .product-list .product-name {
        min-height: auto;
        margin-bottom: 15px;
    }

    .product-list .product_model_sstatus {
        flex-direction: column;
        gap: 5px;
    }

    .product-list .price-actions-box {
        display: flex;
    }

    .product-list .price-actions-box .quantity_plus_minus {
        margin-left: 0px;
        margin-right: 15px;
        margin-bottom: 0px;
    }

    .product-list .price-actions-box .price {
        margin-right: 20px;
        margin-bottom: 0px;
        order: -1;
        width: 100%;
        margin-bottom: 15px;
    }

    .product-list .product-thumb .cart {
        text-align: left;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }

    .product-list .product-thumb .cart .btn-general {
        width: auto;
        max-width: 100%
    }

    .product-list .product-model + .image .action-timer {
        top: 30px;
    }

    .product-list .product-thumb .addit-action {
        top: 15px;
        right: -46px;
        flex-direction: column;
        opacity: 0;
        z-index: -1;
        position: absolute;
        transition: all .15s ease 0s;
    }

    .product-list .product-thumb .addit-action > div {
        position: relative !important;
        margin-bottom: 0px;
        position: relative;
        bottom: 0px;
        right: 0px;
        opacity: 1;
        visibility: visible;
        text-align: center;
        margin-bottom: 0px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .product-list .product-thumb .addit-action > div + div {
        margin-top: 4px;
    }
}

/*END PRODUCT LIST*/
/*****************************/

/* --- PRODUCT PAGE --- */

.image-additional {
    text-align: center;
}

.cloud-zoom-big {
    background: #fff;
    margin: 0 auto;
    width: 100%;
    right: 0px;
}

.mousetrap {
    margin: 0 auto;
    width: 100%;
    right: 0px;
}

.general-image {
    text-align: center;
    position: relative;
    position: relative;
    -ms-flex: 1;
    flex: 1;
    max-width: 100%;
}

.general-image.have-images .swiper {
    padding-bottom: 20px;
}

.ch-pagination {
    bottom: 0px !important;
}

.ch-pagination .swiper-pagination-bullet {
    width: 20px;
    border-radius: 2px;
    height: 3px;
    background: var(--color-gray-2);
    opacity: 1;
}

.ch-pagination .swiper-pagination-bullet-active {
    background: #557DC0;
}

.hide-sticker {
    z-index: 6;
}

.hide-sticker ~ .stickers-ns {
    opacity: 0;
}

.general-image {
    border-radius: 20px;
}

.dark-theme .general-image.have-images .swiper .swiper-slide {
    background: #fff;
    border-radius: 20px;
}

@media (min-width: 768px) {
    .thumbnails {
        flex-direction: row-reverse;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: start;
        align-items: start;
    }

    .general-image.have-images {
        width: calc(100% - 105px);
        margin-left: 15px;
    }

    .general-image.have-images .swiper {
        padding-bottom: 0;
    }

    .dark-theme .general-image.have-images .swiper {
        border-radius: 20px;
    }
}

.thumbnails .general-image span.thumbnail {
    display: inline-block;
    border: 0px;
    padding: 0px;
    margin-bottom: 0px;
    border-radius: 20px;
    cursor: pointer;
}

.thumbnails .general-image img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    color: transparent;
    border-radius: 20px;
    aspect-ratio: 1;
    object-fit: contain;
    background-color: var(--color-gray-3);
}

.image-additional {
    position: relative;
}

@media (min-width: 768px) {
    .image-additional.image-loop {
        padding-top: 32px;
        padding-bottom: 32px;
    }
}

.image-additional .swiper {
    max-height: 484px;
    overflow: hidden;
    border-radius: 16px;
}

.image-additional .swiper-slide:not(.swiper-slide-thumb-active) .thumbnail:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: auto;
    background-color: rgba(0, 0, 0, .022);
    border-radius: 20px;
}

.image-additional .swiper-ai-arrow {
    width: 60px;
    height: 22px;
    border-radius: 20px;
    background-color: var(--up-bg-gray);
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.image-additional .swiper-ai-arrow.prev-image {
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.image-additional .swiper-ai-arrow.next-image {
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.general-image .swiper-ai-arrow {
    width: 22px;
    height: 42px;
    border-radius: 20px;
    background-color: var(--up-bg-gray);
    position: absolute;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
}

.general-image .swiper-ai-arrow.next-image-mobile {
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
}

.general-image .swiper-ai-arrow.prev-image-mobile {
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

@media (min-width: 768px) {
    .general-image .next-image-mobile,
    .general-image .prev-image-mobile {
        display: none;
    }
}

.image-additional .swiper .swiper-wrapper {
    flex-direction: column;
    gap: 10px;
}

.image-additional .swiper:not(.swiper-initialized) .item.swiper-slide:first-child .thumbnail:before {
    display: none;
}

.image-additional .swiper:not(.swiper-initialized) .item.swiper-slide:first-child .thumbnail {
    border-color: #f8f8f8;
}

.image-additional .swiper-slide {
    display: -ms-flexbox;
    display: flex;
    height: 88px !important;
    width: 100%;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.light-theme .image-additional .swiper-slide.swiper-slide-thumb-active .thumbnail {
    border-color: #f8f8f8 !important;
}

.dark-theme .image-additional .swiper-slide.swiper-slide-thumb-active .thumbnail {
    border-color: #9AC872 !important;
}

.image-additional .thumbnail {
    margin: 0;
    border: 0;
    padding: 0;
    position: relative;
    border-radius: 20px;
    padding: 10px;
    border-style: solid;
    border-width: 1px;
    border-color: #fff;
    cursor: pointer;
}

.image-additional span.thumbnail.active, .image-additional span.thumbnail:focus, .image-additional span.thumbnail:hover {
    border-color: #f8f8f8 !important;
}

.image-additional .thumbnail img {
    margin: 0;
    aspect-ratio: 1;
    border-radius: 1rem
}

.info-minimum {
    padding: 12px 15px;

    margin-bottom: 25px;
    border-radius: 8px;
}

.light-theme .info-minimum {
    background: #fcfbef;
    color: #000;
}

.dark-theme .info-minimum {
    border: 2px dashed #E5DB77;
    background: transparent;
    color: #E5DB77;
}

.info-minimum svg {
    display: inline-block;
    vertical-align: bottom;
    margin-right: 5px;
}

.zoom-magnify {
    width: 100%;
    text-align: center;
}

a.zoom-magnify {
    width: 100%;
}

.space-padding-r20 {
    padding-right: 20px;
}

.space-padding-r5 {
    padding-right: 5px;
}

#next-prev-box .nextprevprod {
    align-items: center;
}

.has-share-next .top-product-button {
    position: absolute;
    right: 6px;
    top: 6px;
    background: var(--next-prev-box-bg);
    border-radius: 48px;
    padding: 3px;
}

.btn-share {
    border-radius: 48px;
}

.nextprevprod button {
    border-radius: 48px;
}

.btn-share,
.next-product,
.prev-product {
    width: 42px;
    height: 42px;
    background: var(--next-prev-btn-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px;
    position: relative;
    padding: 0px;
    color: var(--next-prev-btn-color);
}

.btn-share:hover,
.next-product:hover,
.prev-product:hover {
    background-color: var(--next-prev-btn-bg-hover);
    color: var(--next-prev-btn-color-hover);
}

.nextprevprod .popover {
    border: 0px;
    box-shadow: none;
    filter: drop-shadow(2px 4px 18px rgba(0, 0, 0, 0.1));
    border-radius: 16px;
    z-index: 10;
    max-width: 195px;
    width: 195px;
}

.nextprevprod .popover.popover-next-prod,
.nextprevprod .popover.popover-prev-prod {
    left: auto !important;
    right: 0px !important;
}

.share-off .nextprevprod.next__prev .popover.popover-prev-prod.bottom > .arrow {
    right: 55px !important;
    left: auto !important;
}

.share-off .nextprevprod.next__prev .popover.popover-next-prod.bottom > .arrow {
    right: 14px !important;
    left: auto !important;
}

.share-off .nextprevprod.only_one_btn .popover.popover-prev-prod.bottom > .arrow,
.share-off .nextprevprod.only_one_btn .popover.popover-next-prod.bottom > .arrow {
    right: 55px !important;
    left: auto !important;
}

.has-share .nextprevprod.next__prev .popover.popover-prev-prod.bottom > .arrow {
    right: 97px !important;
    left: auto !important;
}

.has-share .nextprevprod.next__prev .popover.popover-next-prod.bottom > .arrow {
    right: 55px !important;
    left: auto !important;
}

.has-share .nextprevprod.only_one_btn .popover.popover-prev-prod.bottom > .arrow,
.has-share .nextprevprod.only_one_btn .popover.popover-next-prod.bottom > .arrow {
    right: 55px !important;
    left: auto !important;
}

.popover-pr-image img {
    margin: 0 auto;
}

.popover-pr-name {
    font-size: 14px;
    color: #000;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 10px;
}

.nextprevprod .popover-content {
    padding: 15px;
}

.nextprevprod .popover.bottom > .arrow {
    border-bottom-color: #fff !important;
}

.nextprevprod .popover.left > .arrow {
    border-left-color: #fff !important;
}

.nextprevprod .popover.right > .arrow {
    border-right-color: #fff !important;
}

.light-theme .nextprevprod .price {
    color: var(--up-color-price);
}

.nextprevprod .price {
    font-size: 18px !important;
    font-weight: 600;
    line-height: 20px;
}

.nextprevprod .price .price-new span {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
}

.dark-theme .nextprevprod .price .price-new span {
    color: var(--up-color-sale-price);
}

.dark-theme .nextprevprod .price {
    color: #000;
}

.dark-theme .nextprevprod .price .price-old span {
    color: #000;
}

.nextprevprod .price .price-old {
    margin-bottom: 0px !important;
}

.light-theme .nextprevprod .price .price-old span {
    color: var(--up-text-light-color);
}

.nextprevprod .price .price-old span {
    text-decoration: line-through;
    font-weight: 400;
    display: block;
    font-size: 16px !important;
    line-height: 16px !important;
    margin-bottom: 2px !important;
}

.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

#product .top-product-button {
    margin-bottom: 15px;
}

#product .top-product-button .nextprev-share-group {
    width: 100%;
}

#product .has-share .btn-share {
    margin-left: auto;
}

.light-theme #product .btn-share, .light-theme #product .next-product, .light-theme #product .prev-product {
    background: #f8f8f8;
}

#product #next-prev-box .prev-product {
    margin-right: 10px;
}

#product.row-flex {
    margin-bottom: 10px;
    padding-top: 10px;
}

#product .rating-stars,
#popup-quickview .rating-stars {
    margin-right: 8px;
}

#product .product-reviews .up-icon-message,
#popup-quickview .product-reviews .up-icon-message {
    color: var(--up-text-gray-color);
}

#product .product-reviews .total-reviews,
#popup-quickview .product-reviews .total-reviews {
    height: 20px;
    min-width: 20px;
    margin-left: 8px;
    color: var(--up-text-gray-color);
    font-size: 10px;
    border-radius: 6px;
    border: 1px solid var(--up-text-gray-color);
}

#product .rating-star,
#popup-quickview .rating-star {
    width: 16px;
    position: relative;
    color: var(--up-color-rating-passive);
    margin-right: 3px;
    line-height: 18px;
}

#product .rating-star:after,
#product .rating-star-active:after,
#popup-quickview .rating-star:after,
#popup-quickview .rating-star-active:after {
    content: "\e914";
    line-height: 16px;
    font-size: 16px;
    display: inline-block;
}

#product .rating-star-active,
#popup-quickview .rating-star-active {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    color: var(--up-color-rating-active);
    width: 0%;
}

#product .image-block .stickers-ns,
#popup-quickview .product-img-box .stickers-ns {
    top: 10px;
    right: 5px;
    position: absolute;
    margin-left: 0;
    margin-right: 0;
    left: auto;
    display: flex;
    flex-direction: row;
    gap: 6px;
}

#product .image-block .stickers-ns > div,
#popup-quickview .product-img-box .stickers-ns > div {
    margin-right: 0;
    margin-bottom: 0;
}

#product .right-block-inner {
    background: var(--up-bg-wd);
    border-left: 0px;
}

#product .image-block {
    background: var(--up-bg-wd);
    position: relative;
    padding: 20px 10px 10px;
}

#product .right-block-inner {
    padding: 10px;
}

@media (min-width: 992px) {
    #product .image-block {
        padding: 20px 25px 20px 20px;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        border-top: 1px solid var(--up-border-color);
        border-left: 1px solid var(--up-border-color);
        border-bottom: 1px solid var(--up-border-color);
    }

    #product .right-block-inner {
        padding: 20px 20px 20px 25px;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
        border-left: 1px solid var(--up-border-color);
        border-top: 1px solid var(--up-border-color);
        border-right: 1px solid var(--up-border-color);
        border-bottom: 1px solid var(--up-border-color);
    }

    .no-gutters {
        margin-left: 0px;
        margin-right: 0px;
    }

    #product.row-flex {
        margin-bottom: 30px;
    }
}

.price-group,
.action-group,
.info-product {
    border-bottom: 1px solid var(--up-border-color);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

#product .price-group {
    gap: 15px;
}

.product-timer {
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #e7000b;
    border-radius: 12px;
    height: 58px;
    position: relative;
    min-width: 130px;
    margin-left: auto;
}

.product-timer__title {
    color: var(--up-text-wd-color);
    font-weight: 600;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: auto;
    line-height: 16px;
}

.product-timer__countdown {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    margin-bottom: 5px;
    min-height: 25px;
    width: 100%;
}

.product-timer .countDays,
.product-timer .countHours,
.product-timer .countMinutes,
.product-timer .countSec {
    font-size: 13px;
    font-weight: 600;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-timer .countDays,
.product-timer .countHours,
.product-timer .countMinutes {
    color: #e7000b;
}

.product-timer .countSec {
    color: #c2c2c2;
}

.product-timer .countDays:after,
.product-timer .countHours:after,
.product-timer .countMinutes:after {
    content: ":";
    position: absolute;
    right: -1px;
    top: 2px;
    color: #000;
}

.product-timer .time_productany {
    display: none;
}

.related-products {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--up-border-color);
    padding-bottom: 25px;
    margin-bottom: 22px;
}

.related-products__title {
    font-size: 16px;
    color: var(--up-text-wd-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.related-products__item {
    background: var(--up-bg-gray);
    padding: 16px;
    border-radius: 20px;
    display: flex;
}

.related-products__item + .related-products__item {
    margin-top: 20px;
}

.related-products__image {
    width: 70px;
    height: 70px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    min-width: 70px;
    margin-right: 15px;
    padding: 10px;
}

.related-products__image img {
    font-size: 0;
    color: #fff;
    margin: 0 auto;
}

.related-products__name-model {
    display: flex;
    flex-direction: column;
    margin-right: 22px;
    flex-grow: 1;
    align-self: center;
    width: 100%;
    margin-bottom: 5px;
}

.related-products__name-model a {
    color: var(--up-text-wd-color);
    margin-bottom: 5px;
}

.related-products__caption {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
    width: 100%;
}

.related-products__model {
    font-size: 13px;
    color: var(--up-text-gray-color);
}

.related-products__price {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: var(--up-text-wd-color);
    font-weight: 600;
    justify-content: center;
    min-width: 70px;
    position: relative;
}

.related-products__price .old-price {
    font-size: 14px;
    color: var(--up-text-gray-color);
    font-weight: 400;
    text-decoration: line-through;
}

.related-products__action {
    margin-left: auto;
    align-self: center;
}

.related-products__action .cart {
    margin-left: 0 !important;
}

.related-products__action .btn-general {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px;
    border-radius: 16px;
    position: relative;
    padding: 5px !important;
}

.related-products__action .btn-general .add-icon-plus:before {
    content: '';
    position: absolute;
    display: block;
    width: 2px;
    top: 27%;
    bottom: 27%;
    right: calc(50% - 1px);
    left: auto;
    border-radius: 1px;
    background: #fff;
    opacity: .9;
    transform: none;
}

.related-products__action .btn-general .add-icon-plus:after {
    content: '';
    position: absolute;
    display: block;
    height: 2px;
    right: 27%;
    left: 27%;
    top: calc(50% - 1px);
    border-radius: 1px;
    background: #fff;
    opacity: .9;
}

.related-products__more-products {
    margin-top: 20px;
    text-align: center;
}

.dark-theme .related-products__more-products .chm-btn-grey {
    background: var(--up-bg-gray);
}

.dark-theme .related-products__more-products .chm-btn-grey:hover {
    background: #2F2F2F;
}

@media (min-width: 768px) {
    .related-products__caption {
        flex-wrap: nowrap;
    }

    .related-products__name-model {
        margin-bottom: 0;
        width: auto;
    }

    .related-products__price {
        margin-left: auto;
    }

    .related-products__action {
        margin-left: 20px;
    }
}

#product .options,
#popup-quickview .options {
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--up-border-color);
}

@media (max-width: 992px) {
    .sticky-left-block {
        position: relative;
        top: 0px !important;
    }
}

@media (min-width: 992px) {
    .sticky-left-block {
        position: sticky;
        top: 20px;
        z-index: 1;
    }
}

.thumbnails:not(.sticky-left-block) {
    position: relative;
}

#product .fix_true .sticky {
    position: fixed;
    z-index: 99;

}

.stop {
    position: relative;
}

#product hr {
    margin-top: 0px;
    margin-bottom: 25px;
    border-color: var(--up-border-color);
}

#product .title_short_description,
#product .title_short_attribute {
    font-size: 14px;
    color: var(--up-text-wd-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.short-desc-b,
.short-attr-b {
    border-bottom: 1px solid var(--up-border-color);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

#product .list-unstyled.product-discounts {
    border-bottom: 1px solid var(--up-border-color);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

#product .list-unstyled.product-discounts > li:not(:last-child) {
    margin-bottom: 5px;
}

#product .product-discounts .product-discount-price {
    font-size: 14px;
    font-weight: 600;
}

#product.row-flex .options {
    margin-top: 25px;
}

#product .text_short_description {
    color: var(--up-text-gray-color);
    margin-bottom: 15px;
    font-size: 14px;
}

#product .redmore-link {
    border-radius: 8px;
    color: var(--up-color-btn-default);
    background-color: var(--up-bg-btn-default);
    padding: 10px 18px;
    font-size: 14px;
    display: inline-block;
}

#product .redmore-link:hover {
    color: var(--up-color-btn-default-hover);
    background-color: var(--up-bg-btn-default-hover);
}

#product .price,
#popup-quickview .price {
    text-align: left;
    font-size: 22px;
    margin-right: 20px;
    align-self: flex-end;
    margin-right: auto;
    flex: 1;
}

#product .price-new {
    text-align: left;
    font-size: 30px;
    display: block;
    clear: both;
    line-height: 24px;
    margin-bottom: 1px;
    white-space: nowrap;
}

#product .price-old {
    font-weight: 400;
    font-size: 18px;
    float: left;
    margin-bottom: 10px;
}

#product .cart,
#popup-quickview .cart {
    width: auto;
    flex-grow: 1;
}

#product .btn-notify-stock {
    height: 48px;
    padding: 12px 24px;
    font-size: 14px;
}

#product .cart .btn-general,
#popup-quickview .cart .btn-general {
    height: 48px;
    width: 100%;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
}

#product .btn-fastorder,
#popup-quickview .btn-fastorder {
    height: 48px;
    margin-top: 20px;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    margin-left: 0px;
    background: var(--up-bg-pp-fastorder);
    color: var(--up-color-pp-fastorder);
    border: 1px solid var(--up-bc-pp-fastorder);
}

#product .btn-fastorder:hover,
#popup-quickview .btn-fastorder:hover {
    background: var(--up-bg-pp-fastorder-hover) !important;
    color: var(--up-color-pp-fastorder-hover) !important;
    border: 1px solid var(--up-bc-pp-fastorder-hover);
}

#product .cart .btn-general,
#popup-quickview .cart .btn-general {
    background-color: var(--up-bg-pp-add-to-cart);
    color: var(--up-color-pp-add-to-cart);
    border-color: var(--up-bc-pp-add-to-cart);
}

#product .cart .btn-general .up-icon-cart,
#popup-quickview .cart .btn-general .up-icon-cart {
    color: var(--up-color-pp-add-to-cart);
}

#product .cart .btn-general:hover,
#popup-quickview .cart .btn-general:hover {
    background-color: var(--up-bg-pp-add-to-cart-hover) !important;
    color: var(--up-color-pp-add-to-cart-hover) !important;
    border-color: var(--up-bc-pp-add-to-cart-hover) !important;
}

#product .cart .btn-general:hover .up-icon-cart,
#popup-quickview .cart .btn-general:hover .up-icon-cart {
    color: var(--up-color-pp-add-to-cart-hover) !important;
}

@media (min-width: 600px) {
    #product .cart {
        margin-left: auto;
        flex-grow: 0;
    }

    #product .cart .btn-general {
        width: auto;
    }

    #product .btn-fastorder {
        margin-left: 20px;
        margin-top: 0;
        width: auto;
    }
}

@media (min-width: 992px) {
    #product .btn-fastorder {
        width: 100%;
        margin-top: 20px;
        margin-left: 0px;
    }
}

@media (min-width: 1320px) {
    #product .btn-fastorder {
        width: auto;
        margin-top: 0px;
        margin-left: 20px;
    }
}

#popup-quickview .quantity-adder,
#product .quantity-adder {
    width: 92px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    overflow: hidden;
    outline: 1px solid var(--up-border-color);
}

#product .quantity-adder .quantity-number {
    width: 100%;
    align-items: center;
    justify-content: center;
}

#popup-quickview .quantity-adder .add-action,
#product .quantity-adder .add-action {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    height: 48px;
    line-height: 10px;
    position: relative;
    text-align: center;
    width: 26px;
    background: var(--up-quantity-bg);
    color: var(--up-text-color);
}

@media (min-width: 992px) {
    #popup-quickview .quantity-adder .add-action:hover,
    #product .quantity-adder .add-action:hover {
        color: var(--up-text-wd-color);
    }
}

#popup-quickview .quantity-adder .add-down,
#product .quantity-adder .add-down {
    border-radius: 16px 0px 0px 16px;
}

#popup-quickview .quantity-adder .add-up,
#product .quantity-adder .add-up {
    border-radius: 0px 16px 16px 0px;
}

#popup-quickview .quantity-adder .quantity-number input,
#product .quantity-adder .quantity-number input {
    display: inline-block;
    height: 48px;
    min-width: 40px;
    padding: 0px 2px;
    text-align: center;
    border-radius: 0px;
    border: 0px;
    vertical-align: top;
    box-shadow: none;
    color: var(--up-text-wd-color);
    background: var(--up-quantity-bg);
}

#product .panel h1 {
    margin-top: 5px;
}

/*.timer_reward {
	margin-left: auto;
}*/
.info-text-notify-price,
.info-text-notify-stock,
.info-text-found-cheaper {
    color: var(--up-text-color);
    margin-bottom: 20px;
}

.notify-price {
    width: 100%;
    order: 4;
}

.found-cheaper + .notify-price {
    margin-top: 2px;
}

.notify-price:not(.found-cheaper + .notify-price) {
    margin-top: 8px;
}

.btn-cheaper,
.btn-notify-price {
    display: inline-flex;
    outline: none;
    text-align: center;
    border-radius: 0px;
    color: #457DE3;
    font-size: 12px;
    margin-right: auto;
    font-weight: 500;
}

.btn-cheaper {
    margin-top: 8px;
}

.btn-notify-price {
    background: transparent;
    border: 0;
    padding: 0;
    white-space: wrap;
    text-align: left;
}

.btn-cheaper:hover, .btn-cheaper:focus,
.btn-notify-price:hover, .btn-notify-price:focus {
    text-decoration: underline;
    color: #457DE3;
}

.info-product-reward {
    color: #000;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 8px;
}

.info-product-reward .qty-reward {
    font-weight: 500;
    color: #F3AB07;
}

#product .points,
#popup-quickview .points {
    flex: 0 0 100%;
    min-width: 100%;
    font-size: 12px;
    margin-top: 5px;
    line-height: 14px;
    color: #000;
    opacity: 1;
}

#product .list-unstyled > li,
#popup-quickview .list-unstyled > li {
    font-size: 14px;
    margin: 1px 0px;
}

.sticky-product-info {
    display: none;
}

@media (min-width: 992px) {
    .sticky-product-info {
        margin-left: 20px;
        background: var(--up-bg-wd);
        border: 1px solid var(--up-border-color);;
        border-radius: 20px;
        position: sticky;
        top: 225px;
        align-self: flex-start;
        width: 300px;
        min-width: 300px;
        display: flex;
        flex-direction: column;
        padding: 15px;
    }

    .sticky-product-info__image {
        position: relative;
        margin-bottom: 15px;
    }

    .dark-theme .sticky-product-info__image img {
        border-radius: 16px;
        background: #ffffff;
        width: 100%;
        padding: 15px;
    }

    .sticky-product-info__image img {
        font-size: 0px;
        margin: 0 auto;
    }

    .light-theme .sticky-product-info__image {
        padding: 15px;
    }

    .light-theme .sticky-product-info__image:before {
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        height: auto;
        background-color: rgba(0, 0, 0, .022);
        border-radius: 20px;
    }

    .sticky-product-info__name {
        margin-bottom: 10px;
        font-weight: 600;
    }

    .sticky-product-info__model-stock {
        display: flex;
        justify-content: space-between;
    }

    .sticky-product-info__model {
        color: var(--up-text-gray-color);
        font-size: 13px;
        text-align: left;
    }

    .sticky-product-info__price-action {
        display: flex;
        justify-content: space-between;
    }

    .sticky-product-info__price-action .price {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
}

/* --- FOOTER --- */
footer.ch-light-theme {
    color: #000;
    background: #f8f8f8;
}

footer.ch-dark-theme {
    color: #fff;
}

footer .ch-socials {
    column-count: 2;
}

footer .ch-socials li:not(:last-child) {
    margin-bottom: 15px;
}

footer .ch-socials i,
footer .ch-socials img {
    margin-right: 15px;
    width: 25px;
    display: grid;
    place-items: center;
}

footer .ch-socials i {
    font-size: 25px;
}

footer .newsletter {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    opacity: 0;
    transition: opacity .2s ease-in-out;
    z-index: -1;
    top: 0;
    position: absolute;
    right: 0;
    margin-top: 10px;
}

footer .newsletter.active {
    display: flex;
    position: relative;
    opacity: 1;
    z-index: 1;
}

footer .newsletter-info {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 68px;
    flex-direction: column;
}

footer .btn-newsletter {
    background-color: #3F78E0;
}

footer .btn-newsletter:hover, footer .btn-newsletter:active, footer .btn-newsletter:focus {
    background-color: #457DE3;
    border: 0px;
    color: #ffffff;
}

#error-msg {
    display: block;
    position: absolute;
    top: -25px;
    right: 10px;
}

#error-msg .nl-warning {
    font-weight: 500;
    color: #d80b0b;
}

#error-msg .nl-success {
    font-weight: 500;
    color: #2eb612;
}

footer .title-nl {
    font-size: 14px;
    text-align: center;
    line-height: 16px;
    padding: 10px 0px;
    margin-right: 00px;
    margin-bottom: 10px;
    font-weight: 500;
}

footer .title-nl div:nth-child(1) {
    margin-bottom: 8px;
}

footer.ch-dark-theme .title-nl {
    color: #fff;
}

footer.ch-light-theme .title-nl {
    color: #000;
}

footer .newsletter .input-group {
    position: relative;
    flex: 0 1 100%;
    margin-left: auto;
    width: 100%;
}

footer .newsletter .form-control, footer .newsletter .form-control:focus {
    border: 0px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    color: #222;
    display: block;
    height: 56px;
    line-height: 1;
    padding: 8px 20px;
    width: 100%;
    font-size: 14px !important;
    box-shadow: none !important;
}

footer .igb-nl {
    background: #fff;
    border: 0px;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
    border-left: 0px;
    padding-right: 10px;
}

footer.ch-dark-theme .igb-nl,
footer.ch-dark-theme .newsletter .form-control, footer.ch-dark-theme .newsletter .form-control:focus {
    background: #fff;
}

footer.ch-light-theme .igb-nl,
footer.ch-light-theme .newsletter .form-control, footer.ch-light-theme .newsletter .form-control:focus {
    background: #fff;
}

footer .newsletter .form-control::placeholder {
    color: #939393;
    font-size: 14px;
}

footer .btn-newsletter {
    border-radius: 44px !important;
    color: #fff;
    border: 0px;
    margin-right: 0px;
    padding: 2px 22px;
    height: 44px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

footer .btn-subscribe {
    background: transparent;
    height: 44px;
    border-radius: 44px;
    padding: 2px 22px;
    display: flex;
    align-items: center;
    border: 1.5px solid #3F78E0;
    color: #3F78E0;
    transition: all .2s linear;
}

footer .btn-subscribe:hover,
footer .btn-subscribe:focus {
    color: #3F78E0;
}

footer .btn-subscribe .text-btn,
footer .btn-newsletter .text-btn {
    margin-left: 8px;
}

footer .btn-newsletter .text-btn {
    display: none;
}

footer.ch-light-theme .btn-newsletter {
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.07);
}

footer {
    font-size: 14px;
    margin-top: 25px;
    color: #ADB5BD;
}

footer .footer-top {
    padding-top: 40px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

@media (min-width: 768px) {
    footer .footer-top {
        flex-direction: row-reverse;
    }
}

footer.ch-dark-theme .footer-top {
    border-bottom: 1px solid #1B1B1B;
}

footer .footer-bottom {
    padding-top: 15px;
    padding-bottom: 5px;
}

footer .footer-center {
    padding-top: 25px;
    padding-bottom: 15px;
}

footer .social_footer {
    padding-top: 10px;
}

footer a {
    font-size: 14px;
}

footer.ch-dark-theme {
    background-color: #0A0A0A;
    color: #B1B1B1;
}

footer.ch-dark-theme a {
    color: #B1B1B1;
}

footer.ch-dark-theme a:hover {
    color: #fff;
}

footer.ch-dark-theme .title-f {
    color: #fff;
}

footer.ch-light-theme {
    color: #535D67;
}

footer.ch-light-theme a {
    color: #535D67;
}

.ch-payments ul {
    margin-bottom: 0;
}

.ch-payments span {
    margin-right: 15px;
    margin-top: 4px;
    margin-bottom: 4px;
    border-radius: 20px;
}

.ch-payments span.plink {
    cursor: pointer;
}

.ch-payments span img {
    border-radius: 20px;
}

footer.ch-light-theme a:hover {
    color: #000;
}

footer.ch-dark-theme a:hover {
    color: #fff;
}

footer.ch-light-theme .title-f {
    color: #000;
}

footer .title-f {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

footer ul.list-unstyled li {
    display: block;
    margin-bottom: 6px;
}

.footer-contact .icon-image {
    margin-right: 15px;
}

footer.ch-light-theme .footer-contact a,
footer.ch-light-theme .footer-contact a div {
    color: #000;
}

footer .fa-width {
    width: 20px;
}

footer .gmap,
footer .description_store_footer {
    padding-top: 25px;
    padding-bottom: 25px;
}

footer .gmap iframe {
    border-radius: 10px;
    overflow: hidden;
}

.f-column {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 0px;
    margin-bottom: 20px;
}

.f-column .list-unstyled {
    display: none;
}

.ch-dark-theme .copyright__payments {
    background: #0A0A0A;
    border-top: 1px solid #1B1B1B;
}

.copyright__payments {
    padding-top: 12px;
    padding-bottom: 12px;
}

.ch-payments {
    padding-right: 0px;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

#logo-footer {
    margin-bottom: 15px;
}

#logo-footer img {
    margin: 0 auto;
}

.footer-contact,
.f-column .list-unstyled {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    footer .newsletter {
        margin-top: 0;
    }

    footer .newsletter .form-control, footer .newsletter .form-control:focus {
        padding-left: 30px;
        height: 68px;
    }

    footer .newsletter .input-group {
        flex: 0 1 80%;
        width: 80%;
    }

    footer .btn-newsletter .text-btn {
        display: block;
    }

    .footer-contact .list-unstyled {
        width: 50%;
    }

    .f-column .list-unstyled {
        display: block;
    }

    #logo-footer {
        margin-bottom: 0px;
    }

    #logo-footer img {
        margin: 0;
    }

    footer .newsletter-info {
        flex-direction: row;
        justify-content: flex-end;
    }

    footer .newsletter-info .title-nl {
        margin-right: 40px;
        text-align: left;
        margin-bottom: 0;
    }

    footer .ch-socials {
        column-count: 1;
        margin-left: 30px;
    }

    .ch-payments {
        padding-right: 0px;
        justify-content: flex-start;
        margin-bottom: 15px;
    }
}

@media (min-width: 992px) {
    .footer-contact {
        margin-bottom: 20px;
    }

    .copyright__payments {
        padding-top: 25px;
        padding-bottom: 15px;
    }

    .ch-payments {
        margin-right: 45px;
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    footer .title-f {
        font-size: 16px;
        margin-bottom: 0px;
        padding: 15px 20px;
        position: relative;
    }

    .f-column > .col-xs-12 {
        padding-left: 0;
        padding-right: 0;
        border-top: 1px solid #1B1B1B;
    }

    footer .title-f:after {
        font-family: FontAwesome;
        content: "\f107";
        position: absolute;
        right: 20px;
        width: 24px;
        height: 24px;
        line-height: 24px;
        text-align: center;
    }

    footer .f-column .list-unstyled {
        padding: 5px 20px 15px 20px;
        margin-bottom: 0;
    }

    footer.ch-light-theme .f-column .list-unstyled {
        background: #fff;
        padding-bottom: 15px;
    }

    footer.ch-light-theme .title-f {
        color: #000;
        background: #fff;
    }
}

.btn-back-top {
    border: 0px;
    background: var(--up-bg-scroll-top);
    width: 54px;
    height: 54px;
    border-radius: 50px;
    box-shadow: none;
    line-height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: background .2s ease;
    transition: background .2s ease;
    box-shadow: none !important;
}

.btn-back-top:hover {
    background: var(--up-bg-scroll-top-hover);
}

.btn-back-top .icon-back-top-arrow {
    width: 16px;
    height: auto;
}

.btn-back-top .icon-back-top-arrow path {
    fill: var(--up-color-icon-scroll-top);
}

.btn-back-top:hover .icon-back-top-arrow path {
    fill: var(--up-color-icon-scroll-top-hover);
}

.svg-progress.svg-progress--circle {
    transform: rotate(-90deg);
}

.svg-progress {
    position: absolute;
    top: 4px;
    right: 4px;
    bottom: 4px;
    left: 4px;
    width: 46px;
    height: 46px;
}

.svg-progress circle {
    stroke-linecap: round;
}

.svg-progress circle, .svg-progress rect {
    stroke: var(--up-color-progress-scroll-top);
    stroke-dasharray: 289px, 289px;
    stroke-dashoffset: var(--scroll-progress);
}

.btn-back-top:hover .svg-progress circle,
.btn-back-top:hover .svg-progress rect {
    stroke: var(--up-color-progress-scroll-top-hover);
}

.tab-content .item {
    min-height: 320px;
}

.banner-footer .col-xs-6 {
    margin-bottom: 20px;
}

.box-banner-container {
    padding: 40px 10px 0px 10px
}

.block-banner-footer {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    height: 100%;
}

.block-banner-footer .image-banner-footer {
    margin-bottom: 20px;
    text-align: left;
}

.block-banner-footer .image-banner-footer img {
    font-size: 0px;
}

.block-banner-footer .icon-banner-footer {
    text-align: center;
    margin-right: 5px;
}

.block-banner-footer .icon-banner-footer span {
    height: 50px;
    width: 50px;
    display: inline-block;
}

.block-banner-footer .icon-banner-footer i.fa {
    font-size: 24px;
    line-height: 50px;
}

.block-banner-footer .text-footer-banner .banner-title-footer {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.block-banner-footer .text-footer-banner .banner-description-footer {
    font-size: 12px;
    line-height: 16px;
}

footer.ch-dark-theme .block-banner-footer {
    background: #1B1B1B;
}

footer.ch-dark-theme .block-banner-footer .icon-banner-footer i.fa,
footer.ch-dark-theme .block-banner-footer .text-footer-banner .banner-title-footer {
    color: #fff;
}

footer.ch-dark-theme .block-banner-footer .text-footer-banner .banner-description-footer {
    color: #B1B1B1;
}

footer.ch-light-theme .block-banner-footer {
    background: #fff;
}

@media (min-width: 768px) {
    footer.ch-dark-theme .block-banner-footer.is_a_link:hover {
        outline: 1px solid #313131;
    }

    footer.ch-light-theme .block-banner-footer.is_a_link:hover {
        box-shadow: var(--up-box-shadow-large);
    }
}

footer.ch-light-theme .block-banner-footer .icon-banner-footer i.fa,
footer.ch-light-theme .block-banner-footer .text-footer-banner .banner-title-footer {
    color: #000;
}

footer.ch-light-theme .block-banner-footer .text-footer-banner .banner-description-footer {
    color: #B1B1B1;
}

@media (max-width: 992px) {
    .banner-footer {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.footer-ribbon {
    background-color: #457DE3;
}

.footer-ribbon-box::after {
    background-color: #2958AC;
}

.footer-ribbon-box::after {
    content: "";
    display: block;
    height: 21px;
    right: -4px;
    position: absolute;
    top: 0;
    width: 22px;
    z-index: -1;
    display: inline-block;
    border-radius: 0px 6px 0px;
}

.footer-ribbon-box {
    position: absolute;
    top: -21px;
    max-width: 93vw;
}

@media (max-width: 360px) {
    .footer-ribbon-box {
        display: none;
    }
}

.footer-ribbon {
    padding: 10px 20px;
    border-radius: 8px;
    height: 42px;
    -moz-transform: skew(-15deg, 0deg);
    -webkit-transform: skew(-15deg, 0deg);
    -o-transform: skew(-15deg, 0deg);
    -ms-transform: skew(-15deg, 0deg);
    transform: skew(-15deg, 0deg);
}

.footer-ribbon span {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    display: inline-block;
    -moz-transform: skew(15deg, 0deg);
    -webkit-transform: skew(15deg, 0deg);
    -o-transform: skew(15deg, 0deg);
    -ms-transform: skew(15deg, 0deg);
    transform: skew(15deg, 0deg);
}

.pos-rel {
    position: relative;
    z-index: 1;
}

.product-price .product-thumb .additional-img-hover {
    top: 0px;
}

.product-price .product-thumb .image {
    border-right: solid 1px var(--up-border-color);
    max-width: 80px;
    padding: 12px;
    width: 110px;
    min-width: 110px;
    min-height: 80px;
    margin-bottom: 0px;
    order: -1;
    border-radius: 18px 0px 0px 18px;
}

.product-price .product-thumb .image a {
    padding: 0px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-price {
    overflow: hidden;
}

.product-price .editproducts {
    display: none;
}

.product-price:first-child {
    margin-top: 10px;
}

.product-price:first-child .product-thumb {
    border-radius: 20px 20px 0 0;
}

.product-price:last-child {
    margin-bottom: 10px;
}

.product-price:last-child .product-thumb {
    border-radius: 0 0 20px 20px;
}

.product-price:last-child:first-child .product-thumb {
    border-radius: 20px;
}

.product-price:nth-child(n+1) .product-thumb {
    border-top: solid 1px var(--up-border-color);
}

.product-price:last-child .product-thumb {
    border-bottom: solid 1px var(--up-border-color);
}

.product-price .product-thumb {
    flex-direction: row !important;
    background: var(--up-bg-wd);
    padding: 0;
    border-radius: 0px;
    box-shadow: none;
    border-left: solid 1px var(--up-border-color);
}

.product-price .product-thumb .caption {
    margin-bottom: 0px;
    display: grid;
    grid-template-areas:"product_name price""model_sstatus price";
    grid-template-columns: auto minmax(240px, 275px);
    padding: 0;
}

.product-price .product-thumb > div.caption {
    border-left: none;
    border-right: 1px solid var(--up-border-color);
}

.product-price .product-thumb .caption .product-name {
    margin-bottom: 5px;
    min-height: auto;
    grid-area: product_name;
    padding-left: 15px;
    padding-top: 15px;
}

.product-price .product-thumb .product_model_sstatus {
    margin-bottom: 0;
    grid-area: model_sstatus;
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: 0;
    gap: 3px;
    align-self: flex-start;
    padding-left: 15px;
}

.product-price .product-thumb .price-actions-box {
    margin-top: 0px !important;
    border-left: solid 1px var(--up-border-color);
    grid-area: price;
    justify-self: end;
    padding-left: 15px;
    width: auto;
    min-width: 225px;
    max-width: 285px;
    flex-wrap: nowrap !important;
}

.product-price .quantity_plus_minus + .price {
    border-right: solid 1px var(--up-border-color);
}

.product-price .product-thumb .caption .price-actions-box .price {
    padding-right: 10px;
    padding: 10px 10px 10px 0px;
    align-items: flex-start;
    flex-grow: 1;
    order: -1;
    min-width: 110px;
}

.product-price .product-thumb .caption .price-actions-box .price .price-old {
    line-height: 18px;
}

.product-price .product-thumb .caption .price-actions-box .cart {
    width: auto;
    padding-left: 10px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 10px 20px;
    border-left: solid 1px var(--up-border-color);
    align-items: center;
}

.product-price .product-thumb .price {
    justify-content: center;
}

.product-price .product-thumb .caption .price-actions-box .quantity_plus_minus {
    margin-bottom: 0px;
    align-self: center;
    padding-right: 5px;
    margin-left: 10px;
    padding-left: 5px;
}

.product-price .product-thumb .btn-fastorder {
    box-shadow: none;
    background: var(--color-gray-2);
}

.product-price .product-thumb .image:before,
.product-price .product-thumb .image .action-timer,
.product-price .product-thumb .image .addit-action,
.product-price .product-thumb .caption .product-description,
.product-price .product-thumb .rating,
.product-price .product-thumb .pro_sticker,
.product-price .product-thumb .pro_sticker_block,
.product-price .product-thumb .image .stickers-ns,
.product-price .product-thumb .caption .price-actions-box .cart .btn-general span.text-cart-add {
    display: none !important;
}

.product-price .product-thumb .caption .cart .btn-general {
    padding: 5px 7px;
}

#bar {
    width: 0%;
    max-width: 100%;
    height: 4px;
    background: #2B8CDB;
}

#progressBar {
    width: 100%;
    background: #cccccc;
}

/*MODAL*/
.chm-modal.modal-dialog {
    z-index: 1052;
}

.chm-modal .modal-content {
    border-radius: 20px;
    box-shadow: none;
    border: 0px;
    padding: 25px;
}

.dark-theme .chm-modal .modal-content {
    background: var(--up-modal-bg);
    outline: 1px solid var(--up-gray-color-1);
}

.chm-modal .close-modal {
    cursor: pointer !important;
    font-size: 0px;
    height: 28px;
    outline: medium none;
    position: absolute;
    right: 0px;
    top: -4px;
    width: 28px;
    z-index: 1060;
    text-align: center;
    line-height: 25px;
    border: 1px solid var(--up-gray-color-1);
    background-color: var(--up-bg-wd);
    border-radius: 6px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chm-modal .close-modal i {
    font-size: 11px;
    color: var(--up-text-color);
}

.light-theme .chm-modal .close-modal:hover {
    border: 1px solid #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.067);
}

.dark-theme .chm-modal .close-modal:hover i {
    color: #ffffff;
}

.chm-modal .modal-header {
    padding: 0px 0px 24px;
    border-bottom: 1px solid var(--up-gray-color-1);
    height: 44px;
    position: relative;
    display: flex;
    align-items: center;
}

.chm-modal .modal-header .modal-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

.dark-theme .chm-modal .modal-title {
    color: #ffffff;
}

.chm-modal .modal-body {
    padding: 20px 0px;
    border: 0px;
}

.chm-modal .modal-footer {
    padding: 15px 20px 20px;
    border: 0px;
    text-align: left;
}

.chm-modal .modal-body + .modal-footer {
    padding: 0px;
    /*padding: 0px 20px 20px;*/
}

.chm-modal .form-group {
    margin-bottom: 20px;
}

.chm-modal .form-group ~ div.form-group:last-child {
    margin-bottom: 0 !important;
}

.chm-modal input.form-control {
    border: 1px solid #F2F2F2;
    box-shadow: none;
    color: #000000;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 10px 20px 10px 20px;
    height: 48px;
}

.chm-modal .input-group-flex input.form-control {
    padding: 10px 20px 10px 64px;
}

.chm-modal textarea.form-control {
    border: 1px solid #F2F2F2;
    box-shadow: none;
    color: #000000;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 10px 20px;
    min-height: 60px;
    resize: vertical;
}

.chm-modal .field_required_textarea {
    position: relative;
}

.chm-modal .field_required_textarea:before {
    content: "*";
    position: absolute;
    left: 11px;
    top: 6px;
    color: #EB5757;
    width: 8px;
    height: 14px;
    z-index: 9;
    font-size: 12px;
}

.chm-modal .form-group.required_field:before {
    content: "*";
    position: absolute;
    left: 10px;
    top: 10px;
    color: #EB5757;
    width: 8px;
    height: 14px;
    z-index: 9;
    font-size: 12px;
}

.chm-modal .form-group.field_required:before {
    content: "*";
    position: absolute;
    left: 54px;
    top: 10px;
    color: #EB5757;
    width: 8px;
    height: 14px;
    z-index: 9;
    font-size: 12px;
}

.chm-modal [class^="col-"].form-group.field_required:before {
    left: 20px;
}

.chm-modal input.form-control:focus,
.chm-modal textarea.form-control:focus {
    background-color: #fff;
    border-color: #838D9E;
}

.dark-theme .chm-modal input.form-control,
.dark-theme .chm-modal textarea.form-control {
    color: #fff;
    border-color: #1D1D1D;
    background-color: #141414;
}

/*.dark-theme .chm-modal .chm-btn-primary {
	background: #E3AD45;
	color:#000;
}*/
.dark-theme .chm-modal .input-group-icon img {
    filter: invert(48%);
}

.chm-modal .form-control.error_input {
    border-color: #EB5757;
}

.chm-modal .form-control.success_input {
    border-color: #00BC52;
}

.us-error-icon,
.us-success-icon {
    position: absolute;
    right: 11px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.us-error-agree {
    color: #EB5757;
}

.us-text-error {
    position: absolute;
    bottom: -8px;
    left: 18px;
    color: #EB5757;
    font-size: 11px;
    padding-right: 6px;
    padding-left: 6px;
    border-radius: 5px;
    line-height: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 45px);
    z-index: 2;
}

.light-theme .us-text-error {
    background: #ffffff;
}

.dark-theme .us-text-error {
    background: #141414;
}

.form-group .input-group-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    position: relative;
}

.form-group .input-group-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.form-group .input-group-icon:after {
    content: '';
    position: absolute;
    top: 8px;
    height: 32px;
    right: 2px;
    border-right: 1px solid var(--up-gray-color-1);
}

.modal-dialog {
    margin: 1rem 1rem;
}

.modal-dialog-centered {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.chm-modal .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 0px;
}

.chm-modal.modal.in .modal-dialog {
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

/*END MODAL*/
@media (min-width: 500px) {
    .chm-modal.sm-modal-4 {
        max-width: 400px;
        width: 400px;
    }

    .modal-dialog {
        margin: 1rem auto;
    }
}

@media (min-width: 768px) {
    .modal-dialog {
        margin: 1.75rem auto;
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

    .chm-modal .modal-body {
        padding: 20px 0px;
    }

    .chm-modal .modal-footer {
        padding: 0px;
    }

    .chm-modal .modal-body + .modal-footer {
        padding: 0px;
    }
}

.us-modal-lg {
    width: auto;
    margin: 10px;
}

@media (min-width: 992px) {
    .us-modal-lg {
        width: 840px;
        margin: 1.75rem auto;
    }
}

.form-group,
.field_required {
    position: relative;
}

a.agree,
a.register,
a.forgotten {
    color: var(--up-color-link);
}

a.agree:hover,
a.register:hover,
a.forgotten:hover {
    color: var(--up-color-link-hover);
    text-decoration: underline;
}

.form-group.message {
    margin-bottom: 0px;
}

.form-group.message .alert {
    margin-bottom: 15px;
}

#product i.required {
    color: #e4003a;
}

#product .btn-fastorder .btn-icon-fastorder {
    margin-right: 5px;
}


.image-radio {
    display: inline-flex;
}

.image-radio input {
    display: none;
}

.image-radio label {
    width: 70px;
    height: 70px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 16px;
    max-width: 70px;
    position: relative;
}

.light-theme .image-radio label:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: auto;
    background-color: rgba(0, 0, 0, .022);
    border-radius: 16px;
}

.light-theme .image-radio label img {
    mix-blend-mode: multiply;
}

.image-radio label img {
    border: 0px;
    padding: 5px;
}

.dark-theme .image-radio label {
    background: #ffffff;
    border-radius: 16px;
}

.image-radio label:hover,
.image-radio input:checked + label {
    outline: 2px solid #84C1A8;
}

.image-radio input:checked + label:after {
    position: absolute;
    content: "\e906";
    font-size: 12px;
    display: inline-flex;
    margin-right: 4px;
    font-family: 'upstore' !important;
    color: #84C1A8;
    background: #fff;
    padding: 2px;
    border-radius: 50px;
    bottom: 6px;
    right: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

#product-options .color-radio,
#popup-quickorder .color-radio,
#popup-quickview .color-radio,
#product .color-radio,
#product-options .default-radio,
#popup-quickorder .default-radio,
#popup-quickview .default-radio,
#product .default-radio {
    display: inline-flex;
}

#product-options .color-radio input,
#popup-quickorder .color-radio input,
#popup-quickview .color-radio input,
#product .color-radio input,
#product-options .default-radio input,
#popup-quickorder .default-radio input,
#popup-quickview .default-radio input,
#product .default-radio input {
    display: none;
}

#product-options .default-radio label,
#popup-quickorder .default-radio label,
#popup-quickview .default-radio label,
#product .default-radio label {
    border-radius: 4px;
    cursor: pointer;
    padding: 10px 8px;
    font-size: 14px;
    margin-bottom: 10px;
    background-color: var(--form-field-bg);
    outline: 2px solid var(--form-field-border);
    height: 40px;
    min-width: 60px;
    text-align: center;
}

[id^="input-option"],
[id^="input-modal-option"] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#product-options .color-radio input:checked + label,
#popup-quickorder .color-radio input:checked + label,
#popup-quickview .color-radio input:checked + label,
#product .color-radio input:checked + label,
#product-options .default-radio input:checked + label,
#popup-quickorder .default-radio input:checked + label,
#popup-quickview .default-radio input:checked + label,
#product .default-radio input:checked + label,
#product-options .color-radio label:hover,
#popup-quickorder .color-radio label:hover,
#popup-quickview .color-radio label:hover,
#product .color-radio label:hover,
#product-options .default-radio label:hover,
#popup-quickorder .default-radio label:hover,
#popup-quickview .default-radio label:hover,
#product .default-radio label:hover {
    outline: 2px solid #84C1A8;
}

#product-options .color-radio label,
#popup-quickorder .color-radio label,
#popup-quickview .color-radio label,
#product .color-radio label {
    border-radius: 50%;
    cursor: pointer;
    min-height: 38px;
    min-width: 38px;
    text-align: center;
    padding: 2px;
    background: var(--form-field-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    outline: 2px dashed #e3e3e3;
}

#product-options .color-radio img,
#popup-quickorder .color-radio img,
#popup-quickview .color-radio img,
#product .color-radio img {
    border: 0px;
    border-radius: 20px;
    cursor: pointer;
}

#product-options .color-radio input:checked + img,
#popup-quickorder .color-radio input:checked + img,
#popup-quickview .color-radio input:checked + img,
#product .color-radio input:checked + img {
    border-color: #334150;
    border-width: 1px;
}

@media (max-width: 768px) {
    #product-options .color-radio img,
    #popup-quickorder .color-radio img,
    #popup-quickview .color-radio img,
    #product .color-radio img {
        max-width: 40px;
    }
}

.options .text-danger {
    font-size: 11px;
    color: #EB5757;
}

#product-options .options .form-group,
#popup-quickorder .options .form-group,
#popup-quickview .options .form-group,
#product .options .form-group {
    margin-bottom: 15px;
    position: relative;
}

#product-options .options .form-group:last-child,
#popup-quickview .options .form-group:last-child,
#product .options .form-group:last-child {
    margin-bottom: 0;
}

#product-options .options .form-group .control-label,
#popup-quickorder .options .form-group .control-label,
#popup-quickview .options .form-group .control-label,
#product .options .form-group .control-label {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--up-text-wd-color);
    display: flex;
}

.form-group .text-danger {
    margin-top: 8px;
}

.form-group.option-error .control-label {
    color: #EB5757 !important;
}

#product-options .options .color-option,
#popup-quickorder .options .color-option,
#popup-quickview .options .color-option,
#product .options .color-option {
    cursor: pointer;
    display: inline-block;
    height: 32px;
    padding: 0;
    vertical-align: middle;
    width: 32px;
    border-radius: 50%;
    box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.1);
    outline: 2px solid #fff;
}

#product-options.product-thumb {
    padding: 0;
    box-shadow: none;
}

#product-options .price-old {
    font-weight: 400;
    font-size: 18px;
    float: left;
    margin-bottom: 10px;
}

#product-options .price,
#product-options .price-new {
    text-align: left;
    font-size: 30px;
    display: block;
    clear: both;
    line-height: 22px;
    margin-bottom: 1px;
    font-weight: 600;
    color: var(--up-text-wd-color);
    min-height: auto;
}

#product-options .btn-general {
    height: 54px;
    width: auto;
    padding: 12px 22px;
    font-size: 16px;
}

#product-options .options {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--up-border-color);
}

#product-options .info-options-bottom {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    align-items: flex-end;
}

#product-options .quantity_plus_minus {
    margin-right: 20px;
}

#product-options .chm-price-totals {
    margin-right: auto;
}

#product-options .quantity_plus_minus .add-action {
    height: 16px;
}

#product-options .quantity_plus_minus input.quantity-num {
    height: 20px;
}

.info-rating,
.info-model,
.info-sku,
.info-weight,
.info-dimension,
.info-product-stock {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--up-text-wd-color);
}

.info-model span,
.info-sku span,
.info-weight span,
.info-dimension span {
    color: var(--up-text-gray-color);
}

.info-manufacturer {
    text-align: left;
    color: var(--up-text-wd-color);
    margin-bottom: 10px;
}

.info-manufacturer a {
    color: #3F78E0;
}

.compare-wishlist-group {
    justify-content: flex-end;
    margin-bottom: 12px;
}

#product .btn-compare,
#product .btn-wishlist,
#popup-quickview .btn-compare,
#popup-quickview .btn-wishlist {
    width: 42px;
    height: 42px;
}

#product .btn-compare,
#popup-quickview .btn-compare {
    background-color: var(--up-bg-pp-compare) !important;
    color: var(--up-color-pp-compare) !important;
}

#product .btn-compare:hover,
#popup-quickview .btn-compare:hover {
    background-color: var(--up-bg-pp-compare-hover) !important;
    color: var(--up-color-pp-compare-hover) !important;
}

#product .btn-wishlist,
#popup-quickview .btn-wishlist {
    background-color: var(--up-bg-pp-wishlist) !important;
    color: var(--up-color-pp-wishlist) !important;
}

#product .btn-wishlist:hover,
#popup-quickview .btn-wishlist:hover {
    background-color: var(--up-bg-pp-wishlist-hover) !important;
    color: var(--up-color-pp-wishlist-hover) !important;
}

#product .btn-compare.is-active:after,
#product .btn-wishlist.is-active:after {
    background-color: var(--up-bg-pp-wishlist) !important;
}

#product .btn-compare.is-active:hover:after,
#product .btn-wishlist.is-active:hover:after {
    background-color: var(--up-bg-pp-wishlist-hover) !important;
}

@media (min-width: 992px) {
    #product .btn-compare,
    #product .btn-wishlist,
    #popup-quickview .btn-compare,
    #popup-quickview .btn-wishlist {
        width: 48px;
        height: 48px;
    }
}

#product .col-6,
#popup-quickview .col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.info-manufacturer {
    text-align: right;
}

.action-group + .product-call {
    margin-bottom: 20px;
}

.product-payment + .product-delivery {
    margin-top: 20px;
}

.product-call,
.product-payment,
.product-delivery {
    border-radius: 20px;
    background: var(--up-bg-gray);
    padding: 20px;
}

.product-call__title,
.product-payment__title,
.product-delivery__title {
    font-size: 16px;
    color: var(--up-text-wd-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.product-delivery__item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.product-delivery__item:last-child {
    margin-bottom: 0;
}

.product-delivery__content {
    display: flex;
    align-items: center;
    width: 100%;
}

.product-delivery__image {
    padding: 10px;
    background-color: #ffffff;
    border-radius: 100%;
    margin-right: 15px;
}

.product-delivery__text {
    display: flex;
    align-items: flex-start;
    width: 100%;
    flex-grow: 1;
    justify-content: space-between;
    position: relative;
}

.product-delivery__text.delivery-price-available:before {
    position: absolute;
    top: 14px;
    content: '';
    border-bottom: 1px dashed var(--up-text-gray-color);
    left: 15px;
    width: calc(100% - 30px);
    right: 15px;
}

.product-delivery__name {
    background: var(--up-bg-gray);
    z-index: 1;
    padding-right: 5px;
    display: inline-flex;
}

.product-delivery__name,
.product-delivery__name a {
    color: var(--up-text-wd-color);
}

.product-delivery__name a:hover {
    text-decoration: underline;
}

.product-delivery__left-block {
    z-index: 1;
}

.product-delivery__right-block {
    margin-left: auto;
    display: flex;
    background: var(--up-bg-gray);
    z-index: 1;
    padding-left: 5px;
}

.product-delivery__description {
    color: var(--up-text-light-color);
    font-size: 12px;
}

.product-delivery__text-price {
    font-weight: 600;
    font-size: 14px;
}

.product-delivery__price {
    margin-left: 5px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.product-payment__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
}

.product-payment__item {
    border-radius: 20px;
    background: #fff;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-payment__name {
    margin-left: 7px;
    margin-right: 12px;
    color: #000000;
}

.ch-g-image {
    display: none;
}

.ch-g-image.active-image {
    display: block;
}

.ch-g-dots {
    display: none;
}

@media (min-width: 992px) {
    .product-thumb:hover .ch-g-dots {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        padding: 0px;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        height: calc(100% + 8px);
    }
}

.ch-g-dots .ch-g-line {
    border-bottom: 2px solid #c5c5c5;
    transition: border-color 0.25s;
    position: relative;
    margin-right: 3px;
    height: 100%;
    display: block;
    -ms-flex: 1;
    flex: 1;
}

.ch-g-dots .ch-g-line:last-child {
    margin-right: 0;
}

.ch-g-dots .ch-g-line.active-line {
    border-color: #457DE3;
}

.masked_bg {
    position: absolute;
    z-index: 10000;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.6;
    left: 0;
    top: 0;
    border-radius: 8px;
}

.loading_masked {
    left: 8px;
    margin-top: -35px;
    position: absolute;
    right: 8px;
    text-align: center;
    top: 50%;
    width: auto;
    z-index: 11000;
}

.container-module.product-category {
    overflow: hidden;
}

#column-right .container-module .reviews .col-md-4.no-slider,
#column-left .container-module .reviews .col-md-4.no-slider {
    width: 100%;
}

#column-right .container-module .title-module span,
#column-left .container-module .title-module span {
    display: inline-block;
}

#column-right .container-module .title-module .see-all-reviews,
#column-left .container-module .title-module .see-all-reviews {
    position: relative;
}

.see-all-reviews {
    overflow: hidden;
    white-space: nowrap;
    color: var(--up-text-wd-color);
    font-size: 14px;
    position: absolute;
    right: 0px;
    top: 17px;
}

.see-all-reviews svg {
    margin-left: 15px;
}

.see-all-reviews:hover,
.see-all-reviews:hover .text-see-all {
    text-decoration: underline;
    color: var(--up-text-wd-color);
}

/*Customer reviews*/
.customer-reviews {
    margin-bottom: 10px;
}

.customer-reviews__item {
    margin-bottom: 10px;
}

.customer-reviews__content {
    box-shadow: 0px 0px 0px 1px var(--up-gray-color-1);
    border-radius: 20px;
    background: var(--up-bg-wd);
    padding: 30px;
    margin-top: 10px;
    flex: 1;
}

.customer-reviews__header {
    margin-bottom: 20px;
}

.customer-reviews__image {
    margin-right: 15px;
}

.customer-reviews__image img {
    min-width: 70px;
    padding: 5px;
    background: #fff;
    border-radius: 8px;
    color: transparent;
}

.customer-reviews__name a {
    color: var(--up-text-wd-color);
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    transition: color 0.2s ease-out;
}

.customer-reviews__name a:hover {
    color: #457DE3;
    color: #365A95;
    text-decoration: underline;
}

.customer-reviews__description {
    margin-bottom: 20px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.dark-theme .customer-reviews__description {
    color: var(--up-text-color);
}

.customer-reviews__footer {
    margin-top: auto;
}

.customer-reviews__letter {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 600;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.light-theme .customer-reviews__letter {
    background-color: #EFF4FF;
    color: #3F78E0;
}

.dark-theme .customer-reviews__letter {
    background-color: #1D1D1D;
    color: #ffffff;
}

.customer-reviews__author {
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    margin-bottom: 8px;
}

.customer-reviews__rating {
    display: flex;
    align-items: center;
    line-height: 18px;
}

.customer-reviews__rating .up-icon-star {
    margin-right: 3px;
}

.customer-reviews__rating .up-icon-star:not(.active) {
    color: #c5c5c5;
}

.customer-reviews__rating .up-icon-star.active {
    color: #F3AB07;
}

/*End Customer Reviews*/
.popup_banner {
    width: 600px;
    max-width: 80%;
    padding: 15px;
    background: #f8f8f8;
}

@media (min-width: 768px) {
    .popup_banner {
        width: 900px;
        max-width: 100%;
        padding: 15px;
        background: #f8f8f8;
    }
}

.popup_banner .close {
    position: absolute;
    z-index: 999;
    top: 8px;
    right: 10px;
}

.popup_banner h1 {
    font-size: 1.8em;
    margin: 0 0 10px;
}

.popup_banner #content {
    min-height: 10px;
}

.is_a_link {
    cursor: pointer;
}

#column-left .product-layout, #column-right .product-layout {
    width: 100%;
}

.review-item .review_plus,
.review-item .review_minus {
    margin-bottom: 15px;
    color: var(--up-text-wd-color)
}

.review-item .review_minus span,
.review-item .review_plus span {
    display: block;
    color: var(--up-text-wd-color);
    font-weight: 600;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.review-item .review_plus span:before {
    content: "+";
    color: #00BC52;
    font-size: 20px;
    font-weight: 400;
    position: absolute;
    left: -1px;
    top: 0px;
}

.review-item .review_minus span:before {
    content: "−";
    color: #F84147;
    font-size: 20px;
    font-weight: 400;
    position: absolute;
    left: -1px;
    top: 0px;
}

.review-item .admin_reply {
    padding: 25px;
    margin-top: 15px;
    background: var(--up-gray-color-1);
    border-radius: 8px;
    color: var(--up-text-wd-color)
}

.review-item .admin_reply div {
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--up-text-wd-color);
}

.review-item .purchased {
    padding-left: 5px;
    vertical-align: middle;
}

.review-item .comment {
    margin-bottom: 10px;
    color: var(--up-text-wd-color)
}

.review-heading {
    margin-bottom: 10px;
}

.review-item + div.review-item {
    margin-top: 20px;
    border-top: 2px dashed var(--up-border-color);
    padding-top: 20px;
}

.review-item .rc-author {
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    margin-bottom: 8px;
}

.review-item .rc-heading {
    margin-bottom: 20px;
}

.rc-author-rating {
    display: flex;
    align-items: center;
    line-height: 18px;
}

.rc-author-rating .up-icon-star {
    margin-right: 3px;
}

.rc-author-rating .up-icon-star:not(.active) {
    color: var(--up-color-rating-passive);
}

.rc-author-rating .up-icon-star.active {
    color: var(--up-color-rating-active);
}

.rc-author-letter {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: 600;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.light-theme .rc-author-letter {
    background-color: #EFF4FF;
    color: #3F78E0;
}

.dark-theme .rc-author-letter {
    background-color: #1D1D1D;
    color: #ffffff;
}

.review-item .rc-author-info {
    flex: 1;
    line-height: 22px;
}

.review-item .rc-author {
    color: var(--up-text-wd-color);
    font-weight: 500;
}

.review-item .rc-date {
    color: var(--up-text-gray-color);
}

.product-rating .star-rating {
    position: relative;
    width: 18px;
    height: 18px;
    margin-right: 2px;
    margin-bottom: 0 !important;
    cursor: pointer;
}

.product-rating .star-rating:before {
    position: absolute;
    content: "";
    color: var(--up-color-rating-passive);
    line-height: 16px;
    font-size: 16px;
    display: inline-block;
}

.product-rating .star-rating.checked:before, .product-rating .star-rating.active:before {
    color: var(--up-color-rating-active);
}

h2.ch-h2 {
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 28px;
    margin-top: 0;
}

.reviews-product {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--up-border-color);
    flex-wrap: wrap;
}

.reviews-product .btn-block-rs {
    margin-top: 20px;
}

.reviews-product__average {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    max-height: 130px;
    width: 100%;
}

.reviews-product__header {
    display: flex;
    align-items: flex-end;
}

.reviews-product__details {
    margin-left: auto;
    text-align: left;
    line-height: 14px;
    height: 46px;
    min-width: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
    padding: 6px;
    margin-bottom: auto;
}

.reviews-product__details .up-icon-message {
    color: var(--up-text-gray-color);
    padding-left: 6px;
    padding-right: 6px;
}

.reviews-product__totals {
    height: 30px;
    background: var(--up-gray-color-1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    min-width: 38px;
    margin-left: 10px;
}

.reviews-product__rating {
    color: var(--up-text-wd-color);
    font-weight: 600;
    font-size: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 50px;
    margin-top: -5px;
}

.btn-block-pr {
    text-align: left;
    width: 100%;
    margin-top: 20px;
}

.reviews-product__rating-summary {
    display: flex;
    gap: 5px;
    flex-grow: 1;
    justify-content: space-between;
    margin-top: 20px;
}

.product-rating-summary__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50px;
    height: 130px;
    background: var(--up-bg-wd);
    justify-content: space-between;
    padding: 6px;
    border-radius: 50px;
}

.light-theme .product-rating-summary__item,
.light-theme .reviews-product__details {
    border: 1px dashed #E3E3E3;
}

.dark-theme .product-rating-summary__item,
.dark-theme .reviews-product__details {
    border: 1px dashed #B1B1B1;
}

.product-rating-summary__icon {
    width: 38px;
    height: 38px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.product-rating-icon-start-1 {
    background-color: #e7000b;
}

.product-rating-icon-start-2 {
    background-color: #F3AB07;
}

.product-rating-icon-start-3 {
    background-color: #FFD818;
}

.product-rating-icon-start-4 {
    background-color: #9DE345;
}

.product-rating-icon-start-5 {
    background-color: #45BA5F;
}

.product-rating-summary__content {
    width: 38px;
    height: 74px;
    border-radius: 50px;
    background: var(--up-gray-color-1);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

.product-rating-summary__star {
    font-size: 24px;
    font-weight: 500;
}

.product-rating-summary__percent {
    font-size: 12px;
}

@media (min-width: 580px) {
    .reviews-product.d-flex {
        height: 100%;
    }

    .reviews-product__average {
        width: auto;
        margin-right: 15px;
    }

    .reviews-product__details {
        margin-left: 20px;
    }

    .reviews-product__rating-summary {
        margin-top: 0;
        margin-left: auto;
        flex-grow: 0;
        gap: 10px;
    }
}

@media (min-width: 1200px) {
    .reviews-product.d-flex {
        flex-wrap: nowrap;
    }
}

@media (min-width: 1320px) {
    .reviews-product__rating-summary {
        gap: 15px;
    }

    .product-rating-summary__item {
        width: 58px;
        height: 148px;
        padding: 10px;
    }

    .product-rating-summary__icon {
        margin-bottom: 10px;
    }
}

@media (min-width: 1420px) {
    .reviews-product__rating-summary {
        margin-left: auto;
        gap: 20px;
    }

    .product-rating-summary__item {
        width: 62px;
        height: 148px;
        padding: 12px;
    }

    .product-rating-summary__icon {
        margin-bottom: 12px;
    }
}

@media (min-width: 768px) {
    .reviews-product.d-flex {
        height: 100%;
    }

    .reviews-block.s-box {
        height: 100%;
    }

    .reviews-product__average {
        width: auto;
        max-height: 148px;
    }

    .reviews-product__details {
        margin-left: 20px;
    }

    .reviews-product__rating-summary {
        margin-top: 0;
        justify-content: flex-end;
    }

    .btn-block-pr {
        margin-top: auto;
    }
}


.category_description img.img-thumbnail {
    color: transparent;
}

.dark-theme .category_description img.img-thumbnail {
    border-radius: 16px;
    background: #fff;
}

.category_description img {
    max-width: 100%;
    border: 0px;
}

.category_description {
    clear: both;
    display: block;
    margin: 10px 0;
    overflow: hidden;
    padding-bottom: 15px;
    padding-top: 15px;
}

.light-theme .category_description {
    color: #333;
}

.dark-theme .category_description {
    color: var(--up-text-gray-color);
}

.category_description .psfl-l {
    padding: 0 20px 10px 0;
}

.psfl-l {
    float: left;
}

#column-left .banner-blocks-container > div,
#column-right .banner-blocks-container > div,
.position-no-owl .banner-blocks-container > div {
    width: 100%
}

.dark-theme .articles__content,
.dark-theme .module-articles__content,
.dark-theme .banner-blocks-container .banner-item {
    outline: 1px solid var(--up-gray-color-1);
}

.banner-blocks-container {
    margin-top: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
}

.banner-blocks-container .banner-item {
    border-radius: 20px;
    overflow: hidden;
    background: var(--up-bg-main);
    padding: 20px;
    align-items: flex-start;
    transition: all 0.1s linear;
}

.banner-blocks-container .banner-item .banner-image {
    width: 54px;
    height: 54px;
    border-radius: 100%;
    background: var(--up-bg-main-hover);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: auto;
    -ms-flex: 0 0 54px;
    flex: 0 0 54px;
    max-width: 54px;
    text-align: center;
}

.banner-blocks-container .banner-item .banner-image img {
    margin: 0 auto;
    font-size: 0px;
    color: #fff;
}

.dark-theme .banner-blocks-container .banner-item .banner-image img {
    filter: invert(1);
}

.banner-blocks-container .banner-item .banner-image .bb-circle-color {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
}

@media (min-width: 992px) {
    .banner-blocks-container .banner-item:hover {
        -webkit-box-shadow: var(--up-box-shadow-large);
        box-shadow: var(--up-box-shadow-large);
        background: var(--up-bg-main-hover);
    }

    .banner-blocks-container .banner-item:hover .banner-image {
        background: var(--up-bg-main);
    }
}

.banner-blocks-container .banner-item .banner-info .banner-title {
    margin: 0;
    margin-bottom: 8px;
    overflow: hidden;
    font-weight: 600;
    font-size: 14px;
    color: var(--up-text-wd-color);
}

.banner-blocks-container .banner-item .banner-info .banner-description {
    color: var(--up-text-light-color);
    font-size: 12px;
    line-height: 16px;
}

/*Wall Category*/
@media (min-width: 768px) {
    .wall-category-box .item-category {
        transition: all 0.1s linear;
        box-shadow: 0px 0px 0px 1px var(--up-gray-color-1);
    }

    .easy-catalog-box .item-catalog:hover,
    .wall-category-box .item-category:hover,
    .wall-category-box .item-category.sc-active {
        -webkit-box-shadow: 8px 8px 48px 0 rgba(0, 0, 0, 0.04);
        box-shadow: 8px 8px 48px 0 rgba(0, 0, 0, 0.04);
        background: var(--up-bg-main-hover);
    }

    .wall-category-box .item-category:hover .open-sub-cat,
    .wall-category-box .item-category.sc-active .open-sub-cat,
    .wall-category-box .item-category:hover .item-sub-category.active,
    .wall-category-box .item-category.sc-active .item-sub-category.active {
        background: var(--up-bg-main);
    }
}

.open-sub-cat {
    width: 42px;
    height: 42px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 24px;
    border-radius: 42px;
    cursor: pointer;
    background: var(--up-bg-main-hover);
    z-index: 1;
}

.open-sub-cat .up-icon-close {
    display: none;
}

.sc-active + .wall-cat-name .open-sub-cat .up-icon-close {
    display: block;
}

.sc-active + .wall-cat-name .open-sub-cat .up-icon-grid-plus {
    display: none;
}

.easy-catalog-box,
.wall-category-box {
    position: relative;
    margin: 0px -10px;
    padding-top: 10px;
}

@media (min-width: 1200px) {
    .easy-catalog-box .col-lg-1-8 {
        float: none;
        -ms-flex: 0 0 12.5%;
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
}

.easy-catalog-box .item-catalog {
    border-radius: 20px;
    overflow: hidden;
    background: var(--color-gray-2);
    padding: 20px;
    align-items: center;
    transition: all 0.1s linear;
}

.easy-catalog-box .easy-cat-image {
    position: relative;
    margin-bottom: 8px;
}

.easy-catalog-box .easy-cat-image img {
    display: block;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    border: 0;
    font-size: 0px;
    color: transparent;
    mix-blend-mode: multiply;
}

.easy-catalog-box .easy-cat-name {
    overflow: hidden;
    padding: 0px 10px;
    text-align: center;
    position: relative;
}

.easy-catalog-box .easy-cat-name a {
    color: #000;
    line-height: 18px;
    font-weight: 500;
}

@media (max-width: 300px) {
    .wall-category-box .wc-col-xs {
        float: none;
        -ms-flex: 0 0 90%;
        flex: 0 0 90%;
        max-width: 90%;
    }
}

@media (min-width: 300px) and (max-width: 500px) {
    .wall-category-box .wc-col-xs {
        float: none;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
}

@media (min-width: 500px) and (max-width: 768px) {
    .wall-category-box .wc-col-xs {
        float: none;
        -ms-flex: 0 0 66%;
        flex: 0 0 66%;
        max-width: 66%;
    }
}

@media (max-width: 768px) {
    .box-item-catalog {
        float: none;
        -ms-flex: 0 0 100px;
        flex: 0 0 135px;
        max-width: 135px;
    }

    .easy-catalog-box.dflex,
    .wall-category-box.d-xs-flex {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
}

.imgcategory .product-thumb,
.wall-category-box .item-category {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.wall-category-box .item-category {
    background-color: var(--up-bg-main);
}

.wall-category-box .wall-cat-image {
    position: relative;
    padding: 20px 15px;
}

.wall-category-box .wall-cat-image a {
    font-size: 0px;
}

.wall-category-box .wall-cat-image img {
    display: block;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
    max-height: 100%;
    border: 0;
    font-size: 0px;
    color: transparent;
}

.light-theme .wall-category-box .wall-cat-image img {
    mix-blend-mode: multiply;
}

.imgcategory .wall-cat-name, .wall-category-box .wall-cat-name {
    min-height: 42px;
    margin-left: 20px;
    margin-bottom: 20px;
    margin-right: 20px;
    margin-top: 10px;
    position: relative;
    text-align: left;
}

.item-category.parent_category .wall-cat-name a {
    margin-left: 15px;
}

.item-category .wall-cat-name a,
.imgcategory .product-thumb .wall-cat-name a {
    color: var(--up-text-wd-color);
    line-height: 18px;
    font-weight: 500;
}

.imgcategory .product-thumb:hover .wall-cat-name a,
.wall-category-box .item-category:hover .wall-cat-name a {
    color: var(--up-text-wd-color);
}

.wall-category-box .wall-cat-image.sc-active {
    opacity: 0;
}

.wall-category-box .item-sub-category {
    display: none;
    position: absolute;
}

.wall-category-box .item-sub-category.active {
    margin-top: 0px;
    margin-bottom: 20px;
    display: block;
    overflow: hidden;
    background: var(--up-bg-main-hover);
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 60px;
    opacity: 1;
    padding: 15px 8px 15px 20px;
    border-radius: 20px;
}

.light-theme .item-sub-category .mCSB_dragger_bar {
    background-color: #c5c5c5 !important;
}

.light-theme .item-sub-category .mCSB_draggerRail {
    background-color: #f8f8f8 !important;
}

.dark-theme .item-sub-category .mCSB_dragger_bar {
    background-color: #2F2F2F !important;
}

.dark-theme .item-sub-category .mCSB_draggerRail {
    background-color: #000000 !important;
}

.wall-category-box .item-sub-category .subcategory-name {
    margin-bottom: 2px;
    padding-right: 5px;
}

.wall-category-box .item-sub-category .subcategory-name a {
    font-size: 14px;
    color: var(--up-text-color);
    opacity: 1;
    line-height: 20px;
}

.wall-category-box .item-sub-category .subcategory-name a:hover {
    text-decoration: underline;
}

.dark-theme .wall-category-box .item-sub-category .subcategory-name a:hover {
    color: #ffffff;
}

.nswc-scrollbar {
    width: 3px;
    background-color: #ADB5BD;
    right: 11px !important;
    top: 13px !important;
    height: calc(100% - 25px) !important;
    border-radius: 10px;
}

.nswc-thumb {
    background-color: #000;
    border-radius: 10px;
}

.nswc-scrollbar.active .nswc-thumb {
    background-color: #000;
}


.quantity_plus_minus {
    flex: 0 0 34px;
    z-index: 10;
    margin-right: 10px;
    line-height: 1;
    align-self: flex-end;
}

.quantity_plus_minus input.quantity-num {
    display: inline-block;
    height: 17px;
    margin-top: -1px;
    line-height: 16px;
    width: 34px;
    padding: 0px 2px;
    text-align: center;
    border-radius: 0px;
    border-left: 1px solid var(--up-gray-color-1);
    border-right: 1px solid var(--up-gray-color-1);
    border-top: 0px;
    border-bottom: 0px;
    vertical-align: top;
    box-shadow: none;
    color: var(--up-text-color);
    background: var(--up-quantity-bg);
    box-shadow: none !important;
}

.light-theme .quantity_plus_minus .add-action:hover {
    background: var(--color-gray-2);
}

.dark-theme .quantity_plus_minus .add-action svg path {
    fill: var(--up-text-color);
}

.quantity_plus_minus .add-up {
    border-radius: 8px 8px 0px 0px;
    border-left: 1px solid var(--up-gray-color-1);
    border-right: 1px solid var(--up-gray-color-1);
    border-top: 1px solid var(--up-gray-color-1);
}

.quantity_plus_minus .add-down {
    border-radius: 0px 0px 8px 8px;
    border-left: 1px solid var(--up-gray-color-1);
    border-right: 1px solid var(--up-gray-color-1);
    border-bottom: 1px solid var(--up-gray-color-1);
}

.quantity_plus_minus .add-action {
    cursor: pointer;
    display: block;
    font-size: 13px;
    height: 14px;
    line-height: 10px;
    position: relative;
    text-align: center;
    width: 34px;
    background: var(--up-quantity-bg);
}

.container-module .pct_gv,
.container-module .latest_gv {
    overflow: hidden;
    margin-bottom: 10px;
}

.item.no-slider {
    margin-bottom: 10px;
    padding-top: 10px;
}

#column-left .container-module .no-slider,
#column-right .container-module .no-slider,
.position-no-owl .no-slider {
    border: 0px;
}

.nswc-viewport {
    min-height: 70px;
}

#modal-addcart .modal-dialog {
    max-width: 550px;
    width: 95%;
}

#modal-addcart .modal-body {
    padding: 30px 35px;
}

#modal-addcart .modal-content {
    border-radius: 12px;
    box-shadow: none;
    border: 0px;
}

#modal-addcart .btn-checkout {
    margin-top: 20px;
}

#modal-addcart .btn-shopping {
    margin-top: 20px;
}

.ch-alert-success,
.ch-alert-danger,
.option-danger {
    animation: slider_add_product 0.5s linear;
    position: fixed;
    right: 15px;
    top: 15px;
    width: 330px;
    z-index: 9999;
    color: var(--up-text-wd-color);
    padding: 25px 50px 25px 25px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    background: var(--up-bg-wd);
    border-radius: 12px;
    box-shadow: 4px 5px 12px rgba(0, 0, 0, 0.067);
    max-height: 105px;
    height: 105px;
    transition: all .5s ease-in-out;
}

.mh-100 {
    height: auto;
    max-height: 100%;
}

.ch-error-text + div.ch-error-text {
    margin-top: 10px;
}

.option-danger + .option-danger {
    top: 132px;
}

.option-danger + .option-danger + .option-danger {
    top: 250px;
}

.option-danger + .option-danger + .option-danger + .option-danger {
    top: 396px
}

.ch-alert-danger + .ch-alert-danger {
    top: 132px;
}

.ch-alert-danger + .ch-alert-danger + .ch-alert-danger {
    top: 257px;
}

.ch-alert-danger + .ch-alert-danger + .ch-alert-danger + .ch-alert-danger {
    top: 382px;
}

.ch-alert-danger + .ch-alert-danger + .ch-alert-danger + .ch-alert-danger + .ch-alert-danger {
    top: 507px;
}

.add_product_alert {
    padding: 25px 50px 25px 25px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    background: var(--up-bg-main);
    border-radius: 12px;
    box-shadow: 4px 5px 12px rgba(0, 0, 0, 0.067);
    animation: slider_add_product 0.5s linear;
    position: fixed;
    right: 15px;
    top: 15px;
    width: 330px;
    z-index: 999999999;
}

.dark-theme .add_product_alert {
    outline: 1px solid var(--up-border-color);
}

.dark-theme .add_product_alert a {
    color: #04A349;
}

.ch-alert-success .text-modal-block,
.ch-alert-danger .text-modal-block,
.option-danger .text-modal-block,
.add_product_alert .text-modal-block {
    margin-left: 20px;
}

@keyframes slider_add_product {
    0% {
        right: -100%;
    }
    50% {
        right: -20%;
    }
    85% {
        right: -30px;
    }
    100% {
        right: 15px;
    }
}

.ch-modal-success {
    border-radius: 12px;
    border: 0px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .18);
}

.ch-modal-success .modal-body {
    padding: 30px 50px 30px 40px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
}

.dark-theme .ch-modal-success.modal-content {
    background: var(--up-bg-main);
    outline: 1px solid var(--up-gray-color-1);
}

.ch-modal-success .modal-body .success-icon {
    float: left;
    margin-right: 20px;
}

.ch-modal-success .modal-body .text-modal-block {
    margin-right: 5px;
}

.ch-modal-success .modal-body .text-modal-block a {
    color: #04A349;
}

.ch-alert-success button.close,
.ch-alert-danger button.close,
.option-danger button.close,
.add_product_alert button.close,
.ch-modal-success button.close {
    cursor: pointer !important;
    font-size: 0px;
    height: 28px;
    outline: medium none;
    position: absolute;
    right: 17px;
    top: 17px;
    width: 28px;
    z-index: 1060;
    text-align: center;
    line-height: 25px;
    border: 1px solid var(--up-gray-color-1);
    border-radius: 6px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
}

.ch-alert-success button.close i,
.ch-alert-danger button.close i,
.option-danger button.close i,
.add_product_alert button.close i,
.ch-modal-success button.close i {
    font-size: 11px;
    color: var(--up-text-color);
}

.light-theme .ch-alert-success button.close:hover,
.light-theme .ch-alert-danger button.close:hover,
.light-theme .option-danger button.close:hover,
.light-theme .add_product_alert button.close:hover,
.light-theme .ch-modal-success button.close:hover {
    border: 1px solid #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.067);
}

.dark-theme .modal-body button.close:hover i {
    color: #ffffff;
}

@media (min-width: 992px) {
    .col-lg-offset-3, .col-md-offset-3 {
        margin-left: 25.4%;
    }
}

#fix_image .owl-carousel .owl-wrapper:after {
    padding-bottom: 0px;
}

.product-list .us-product-attributes {
    position: relative;
    opacity: 1;
    flex: 0 0 30%;
    padding: 20px;
    border-left: 1px solid var(--up-border-color);
    display: grid;
    gap: 2px;
    align-content: start;
}

.us-product-attributes__item {
    display: grid;
    grid-template-columns: auto 45%;
    font-size: 12px;
    gap: 10px;
}

.us-product-attributes__name {
    color: var(--up-text-gray-color);
}

.product-price .us-product-attributes,
.product-grid .product-thumb.bg_image .us-product-attributes {
    display: none;
}

.product-grid .us-product-attributes {
    position: absolute;
    top: 100%;
    left: -5px;
    right: -5px;
    border-radius: 0px 0px 20px 20px;
    background: var(--up-bg-wd);
    opacity: 0;
    overflow: hidden;
    height: 0;
    padding: 15px;
    margin-top: -1px;
}

@media (min-width: 992px) {
    .product-grid .product-thumb:not(.bg_image):hover {
        overflow: visible;
        border-radius: 20px 20px 0px 0px !important;
        z-index: 10;
        box-shadow: none;
        filter: drop-shadow(4px 4px 24px rgba(0, 0, 0, 0.04));
    }

    .product-grid .product-thumb:not(.bg_image):hover:before {
        opacity: 1;
    }

    .product-thumb:not(.bg_image):hover .us-product-attributes {
        height: auto;
        opacity: 1;
    }
}

.product-grid .product-thumb:not(.bg_image)::before {
    content: "";
    display: block;
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--up-bg-wd);
    opacity: 0;
    box-shadow: none;
    border-radius: 20px;
}


.product-grid .product-thumb:not(.bg_image):has(.us-product-attributes):hover::before {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}


.product-grid .product-thumb.top-r:not(.bg_image):before {
    border-radius: 20px 20px 0 0;
    bottom: 0;
}

@media (max-width: 767px) {
    .product-grid .short-attribute {
        display: none;
    }
}

#image-box > #wrap {
    display: inline-block;
    position: relative;
    outline: none;
}

.mfp-zoom-in .mfp-content > div {
    opacity: 0;
    transition: all 0.2s ease-in-out;
    transform: scale(0.6);
}

.mfp-zoom-in.mfp-ready .mfp-content > div {
    opacity: 1;
    transform: scale(1);
}

#product .short-attributes-groups {
    margin-bottom: 18px;
}

.tab-pane .short-attributes-groups {
    margin-bottom: 0px;
}

.tab-pane .attr-group-name {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--up-text-wd-color);
    font-weight: 600;
}

#product div.short-attribute {
    padding: 6px 15px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.tab-pane div.short-attribute {
    padding: 15px 20px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.tab-pane div.short-attribute .attr-name {
    width: 50%;
}

.tab-pane div.short-attribute .attr-text {
    width: 50%;
}

#product div.short-attribute:nth-child(2n+1),
.tab-pane div.short-attribute:nth-child(2n+2) {
    background: var(--up-bg-gray);
}

.tab-pane .short-attributes-groups ~ div.short-attributes-groups {
    margin-top: 30px;
}

.short-attribute > span {
    position: relative;
}

#product div.short-attribute > .attr-text {
    max-width: 50%;
    text-align: right !important;
}

.tab-pane div.short-attribute > .attr-text {
    max-width: 60%;
    text-align: left !important;
    font-weight: 600;
}

.short-attribute > .attr-name span {
    position: relative;
    z-index: 2;
    padding: 0 5px 0 0;
    font-size: 14px;
    color: var(--up-text-color);
}

.short-attribute > .attr-text span {
    position: relative;
    z-index: 2;
    padding: 0 0 0 5px;
    font-size: 14px;
    color: var(--up-text-wd-color);
    display: block;
}

.short-attributes-groups .short_attr_group_name {
    color: var(--up-text-wd-color);
}

.input-group .form-control[name^=quantity], #product .quantity-number [name^=quantity] {
    background: var(--up-quantity-bg);
}

.box-bg-full {
    background-attachment: fixed;
    background-position: center 0;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    width: auto;
}

.disabled_input {
    cursor: not-allowed;
}

@-webkit-keyframes active_load {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes active_load {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.active-load > svg {
    -webkit-animation: active_load 1s linear infinite;
    animation: active_load 1s linear infinite;
}

@media (max-width: 767px) {
    .box-bg-full {
        padding: 0px;
    }

    .product-slider .product-name a {
        font-size: 14px;
    }
}

.container-module .latest_gv .item {
    background: transparent;
}

.container-module .latest_gv .item .product-thumb {
    background: #fff;
}

.container-module .owl-pagination {
    top: 0px;
}

#form-review .form-group.required_field label {
    margin-bottom: 10px;
    font-size: 14px;
    color: #6F6F6F;
}

.product-rating {
    line-height: 1;
}

.product-rating .star-rating {
    color: #e7e7e7;
}

.product-rating .star-rating.active,
.product-rating .star-rating.checked {
    color: #fc0 !important;
}

.product-rating label .fa {
    font-size: 18px;
    padding: 2px 4px 2px 0px;
    cursor: pointer;
}

.product-rating label ~ label {
    margin-left: -5px;
}

.alphabetical_index {
    margin-bottom: 20px;
}

.alphabetical_index span {
    font-size: 16px;
    font-weight: 600;
    color: var(--up-text-gray-color);
}

.alphabetical_index a {
    font-size: 16px;
    font-weight: 600;
}

.manufacturer-heading {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 20px;
}

.manufacturer-content {
    margin-bottom: 25px;
}

.manufacturer-content a {
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    display: block;
    padding: 15px;
    border-radius: 4px;

}

.manufacturer-content a:hover {
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

.thumb-brand img {
    margin: 0 auto;
}

.name-brand {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#modal-wishlist,
#modal-compare {
    top: 50px;
}

.container-module .prod-cat-tabs {
    list-style: none;
    padding-left: 0px;
    margin: 0px;
    padding: 10px 0px;
}

.container-module .prod-cat-tabs > li {
    display: inline-block;
    padding: 5px 15px;
}

.container-module .prod-cat-tabs > li > a {
    color: #818181;
    font-size: 16px;
}

.container-module .prod-cat-tabs > li > a:hover {
    border-bottom: 1px dashed #818181;
}

@media (min-width: 992px) {
    .container-module .prod-cat-tabs > li:first-child {
        padding-left: 0px;
    }
}

.container-module .prod-cat-tabs > li.active a {
    color: #1e1e1e;
    border-bottom: 1px dashed #1e1e1e;
}

.tab-content.prod_cat_tab_content {
    min-height: 300px;
    padding-top: 0px;
}

.form-horizontal .form-group {
    margin-left: -10px;
    margin-right: -10px;
}

.ch-table .prod-name {
    display: block;
    max-width: 300px;
    white-space: normal;
    min-width: 200px;
}

.ch-table > tbody > tr > td:nth-child(6) {
    white-space: nowrap;
}

.ch-table > tbody > tr > td, .clss-table > thead > tr > td {
    vertical-align: middle;
}

.ch-table > thead > tr > td {
    padding: 10px;
    background: var(--up-gray-color-1);
}

.ch-table thead td:first-child {
    border-radius: 8px 0 0 8px;
}

.ch-table thead td:last-child {
    border-radius: 0 8px 8px 0;
}

.ch-table thead td:first-child:last-child {
    border-radius: 8px;
}

.ch-table > tbody > tr > td {
    border-top: 0px;
    padding: 15px 10px;
    vertical-align: middle;
}

.total-rewards,
.total-transactions {
    padding: 12px 0px 20px 0px;
}

.ch-table > tbody > tr > td.pr-0 {
    padding-right: 0;
}

.ch-table > tbody > tr {
    border-bottom: 2px dashed var(--up-border-color);
}

.ch-table > tfoot.account-order-totals > tr > td {
    border-top: 0px;
    padding: 5px;
    vertical-align: middle;
}

.ch-table > tfoot.account-order-totals > tr:first-child > td {
    padding-top: 20px;
}

.account-order-totals .cart-total-title {
    width: 100%;
    color: #535D67;
    font-size: 14px;
}

.account-order-totals .cart-total-text {
    font-size: 14px;
    font-weight: 600;
}

.input-remove-voucher {
    height: 38.5px;
}

.column-quantity {
    width: 100px;
}

.ch-cart-quantity {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
}

.ch-cart-quantity .form-control {
    border-color: var(--up-gray-color-1) !important;
    border-width: 1px 0px 1px 0px !important;
    height: 34px !important;
    border-style: solid;
    box-shadow: none;
    max-width: 30px;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
    border-radius: 0px;
    background: var(--up-quantity-bg);
    box-shadow: none !important;
}

.ch-cart-quantity .btn-quantity-minus {
    background: var(--up-quantity-bg);
    border-color: var(--up-gray-color-1);
    border-width: 1px 0px 1px 1px;
    border-style: solid;
    border-radius: 8px 0px 0px 8px;
    padding: 0px;
    width: 20px;
    height: 34px;
    line-height: 1;
    margin-right: 0px !important;
    color: var(--up-text-color);
}

.ch-cart-quantity .btn-quantity-plus {
    background: var(--up-quantity-bg);
    border-color: var(--up-gray-color-1);
    border-width: 1px 1px 1px 0px;
    border-style: solid;
    border-radius: 0px 8px 8px 0px;
    padding: 0px;
    width: 20px;
    height: 34px;
    line-height: 1;
    margin-left: 0px !important;
    color: var(--up-text-color);
}

.checkout-cart-accordion .panel-default {
    border: 0px;
    margin-bottom: 20px;
}

.checkout-cart-accordion .panel-default > .panel-heading {
    background: var(--color-gray-2);
}

.checkout-cart-accordion .panel-default > .panel-heading a {
    font-size: 14px;
    color: var(--up-text-wd-color);
}

.checkout-cart-accordion .panel-default > .panel-heading + .checkout-cart-accordion .panel-collapse > .panel-body {
    border-top-color: var(--up-border-color);
}

.checkout-cart-accordion .panel-collapse > .panel-body {
    border-top: 0px !important;
}

.checkout-cart-accordion .control-label {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 20px;
    text-align: left;
}

.checkout-cart-accordion .panel-body .form-control::placeholder {
    font-size: 14px;
}

.checkout-cart-accordion .panel-body .form-control {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    width: 100%;
    margin-bottom: 20px;
    max-width: 100% !important;
}

.checkout-cart-accordion .panel-body .input-group-btn {
    width: 100%;
}

.checkout-cart-accordion .panel-body .input-group-btn .btn {
    width: 100%;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.checkout-cart-accordion .form-control {
    height: 44px;
    border: 1px solid var(--up-border-color);
    box-shadow: none;
    font-size: 14px;
}

.checkout-cart-accordion .input-group-btn .btn-primary {
    font-size: 14px;
}

.table-cart > tbody > tr > td {
    border-top: 0px;
}

.table-cart .total-title {
    color: var(--up-text-gray-color);
    width: 75%;
}

.table-cart .total-text {
    font-weight: 600;
    color: var(--up-text-wd-color);
    min-width: 80px;
}

.table-responsive {
    position: relative;
    z-index: 8;
    border: 0px;
}

.ch-table .stock-status,
.ch-table .price {
    margin-bottom: 0px;
}

.ch-table .prod-name {
    color: #000;
    margin-bottom: 8px;
}

.ch-table .prod-name:hover {
    color: #0f4b82;
}

.ch-table .btn-general {
    min-width: 34px;
    margin-right: 10px;
    padding: 0px 7px;
    display: inline-flex;
}

.mw-70 {
    min-width: 70px;
}

#messageLoadPage {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*Category News*/
.mod-category-news {
    border-radius: 20px;
    border: 1px solid var(--up-border-color);
    padding: 10px 20px;
    background: var(--up-bg-wd);
}

.mod-category-news .articles-count {
    width: 18px;
    height: 18px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    background: var(--up-bg-gray);
    position: absolute;
    right: 4px;
    top: 10px;
    font-size: 11px;
    line-height: 18px;
}

.list-group.mod-category-news a.active .articles-count, .list-group.mod-category-news a.active:hover .articles-count, .list-group.mod-category-news a:hover .articles-count {
    background: var(--up-bg-wd);
}

.list-group.mod-category-news a.active, .list-group.mod-category-news a.active:hover, .list-group.mod-category-news a:hover {
    color: var(--up-text-wd-color);
    background: transparent;
    border: 0px;
    text-shadow: none;
}

.list-group.mod-category-news a {
    border: 0px;
    padding: 8px;
}

.list-group.mod-category-news a + a {
    border-top: 1px dashed var(--up-border-color) !important;
    z-index: 1;
}

.mod-category-news .list-group-item {
    margin-top: 0px;
    margin-bottom: 3px;
}

.mod-category-news .list-group-item:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.mod-category-news .list-group-item:last-child {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.list-group.mod-category-news a.active:before, .list-group.mod-category-news a.active:hover:before, .list-group.mod-category-news a:hover:before {
    background: var(--up-bg-gray);
    position: absolute;
    height: calc(100% - 3px);
    content: "";
    z-index: -1;
    left: -5px;
    right: -5px;
    width: calc(100% + 10px);
    top: 3px;
    border-radius: 5px;
}

/* END Category News*/

/*Module Atricles*/
.articles__item,
.module-articles__item {
    margin-top: 10px;
    margin-bottom: 10px;
}

.articles__content,
.module-articles__content {
    padding: 15px;
    background: var(--up-bg-main);
    border-radius: 20px;
}

.articles__image,
.module-articles__image {
    border-radius: 12px;
    margin-bottom: 15px;
}

.articles__image img,
.module-articles__image img {
    border-radius: 12px;
    overflow: hidden;
}

.articles__title,
.module-articles__title {
    margin-bottom: 20px;
}

.articles__title a,
.module-articles__title a {
    color: var(--up-text-wd-color);
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    transition: color 0.2s ease-out;
}

.articles__title a:hover,
.module-articles__title a:hover {
    color: #457DE3;
    text-decoration: underline;
}

.articles__description,
.module-articles__description {
    margin-top: auto;
    margin-bottom: 25px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    color: var(--up-text-color);
}

.atricles__footer,
.module-atricles__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.articles__description + .atricles__footer,
.module-articles__description + .module-atricles__footer {
    margin-top: 0;
}

.articles__date,
.module-articles__date {
    color: var(--up-text-light-color);
    display: flex;
    align-items: center;
}

.articles__date svg,
.module-articles__date svg {
    margin-right: 10px;
}

.atricles__viewed,
.module-atricles__viewed {
    display: flex;
    align-items: center;
    color: var(--up-text-light-color);
}

.atricles__viewed i,
.module-atricles__viewed i {
    margin-right: 10px;
}

/*END Module Atricles*/

#input-captcha {
    float: left;
    width: 160px;
    margin-right: 15px;
}

#form-article-comment .col-sm-2.control-label {
    text-align: left;
    width: auto;
}

#form-article-comment fieldset {
    padding-top: 20px;
}

#form-article-comment fieldset legend {
    display: none;
}

#article-comment {
    border: 1px solid var(--up-border-color);
    padding: 15px 20px;
    border-radius: 20px;
    margin-bottom: 25px;
    margin-top: 20px;
    background: var(--up-bg-wd);
}

#form-article-comment {
    border: 1px solid var(--up-border-color);
    padding: 15px 20px;
    border-radius: 20px;
    margin-top: 25px;
    margin-bottom: 20px;
    background: var(--up-bg-wd);
}

@media (min-width: 768px) {
    #article-comment,
    #form-article-comment {
        padding: 30px 50px;
    }
}

.info-article {
    margin-bottom: 15px;
    justify-content: flex-end;
    gap: 10px;
}

.info-article .date-added-article,
.info-article .total-comnent-article,
.info-article .aviewed-article {
    background: var(--up-bg-main);
    border-radius: 6px;
    padding: 8px 12px;
    color: var(--up-text-color);
}

.image-atricle {
    margin-bottom: 20px;
}

.info-article .icon-aviewed {
    display: block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.info-article .icon-comment {
    display: block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.info-article .icon-calendar {
    display: block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.comment-item .comment-heading {
    flex-direction: column;
    line-height: 22px;
    margin-bottom: 20px;
}

.comment-item .block-author {
    color: var(--up-text-wd-color);
    font-weight: 500;
}

.comment-item .block-date {
    color: #8F9AA2;
}

.comment-item .comment {
    margin-bottom: 10px;
}

.comment-item .admin_reply {
    padding: 25px;
    margin-top: 15px;
    background: var(--up-bg-gray);
    border-radius: 8px;
}

.comment-item .admin_reply div {
    margin-bottom: 5px;
    font-weight: 600;
}

.comment-item + div.comment-item {
    margin-top: 20px;
    border-top: 2px dashed #e9e9e9;
    padding-top: 20px;
}

.show-like-dislike {
    padding-right: 0px;
    position: relative;
}

.article-like-dislike-box {
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .show-like-dislike {
        padding-right: 150px;
    }

    .article-like-dislike-box {
        position: absolute;
        right: 0px;
        bottom: 0px;
    }
}

.btn-dislike, .btn-like {
    border: 0px;
    background: transparent;
    display: inline-block;
}

.btn-dislike span, .btn-like span {
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
}

.btn-dislike {
    margin-left: 5px;
}

.btn-dislike img {
    margin-top: 5px;
}

.article-comment-title {
    font-size: 18px;
    color: #000;
    padding-bottom: 10px;
    margin-top: 25px;
}

.article-comment-title sup {
    margin-left: 5px;
}

.ch_contact_map_code {
    margin-bottom: 20px;
}

.ch_contact_map_code iframe {
    background: var(--up-bg-wd);
    overflow: hidden;
    border-radius: 10px;
}

.contact_image {
    margin-top: 15px;
    margin-bottom: 10px;
}

.contact_image img {
    border-radius: 8px;
}

.contact-title {
    margin-bottom: 10px;
    margin-top: 25px;
    font-size: 16px;
    color: var(--up-text-wd-color);
    font-weight: 600;
}

.ch_contacts_phone a {
    font-size: 14px;
    color: var(--up-text-wd-color);
    font-weight: 600;
}

.ch_contacts_phone a:hover, .ch_contacts_phone a:focus {
    color: #0091ca;
}

.ch_contacts_phone li + li {
    margin-top: 5px;
}

.ch_contacts_phone li:not(.item-phone) + li.item-phone {
    margin-top: 15px;
}

.box-contact-left,
.box-contact-form form {
    border-radius: 8px;
    border: 1px solid var(--up-border-color);
    overflow: hidden;
    padding: 20px 30px;
    background: var(--up-bg-wd);
}

@media (min-width: 992px) {
    .box-contact-left,
    .box-contact-form form {
        padding: 50px 100px;
    }
}

form.form-horizontal legend {
    padding: 0px;
    border: 0px;
    color: var(--up-text-wd-color);
    font-size: 16px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 20px;
}

.store-locations .col-xs-12 + .col-xs-12 {
    margin-top: 15px;
}

.store-locations__item {
    border-radius: 12px;
    border: 1px solid var(--up-border-color);
    overflow: hidden;
    padding: 15px;
    background: var(--up-bg-wd);
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-locations__image {
    width: 100%;
}

.store-locations__image img {
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}

.store-locations__info {
    width: 100%;
}

@media (min-width: 500px) {
    .store-locations__image {
        width: 220px;
        order: 1;
    }

    .store-locations__map {
        order: 2;
    }

    .store-locations__info {
        order: 3;
    }
}

@media (max-width: 768px) {
    .store-locations__map iframe {
        height: 100%;
    }
}

@media (min-width: 768px) {
    .store-locations__image {
        width: 360px;
    }

    .store-locations__image img {
        border-radius: 8px;
        object-fit: contain;
    }

    .store-locations__map {
        order: 3;
    }

    .store-locations__info {
        width: calc(100% - 375px);
        padding-left: 15px;
        order: 2;
    }
}

@media (min-width: 992px) {
    .store-locations__info {
        width: calc(100% - 375px - 35%);
    }
}

.store-locations__info-title,
.store-locations__info-store-name {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--up-text-wd-color);
    font-weight: 600;
}

.store-locations__info-contacts a {
    font-size: 14px;
    color: var(--up-text-wd-color);
    font-weight: 600;
}

.chat-links {
    gap: 5px;
    margin-bottom: 10px;
}

.store-locations__info-contacts li + li {
    margin-bottom: 5px;
}

.store-locations__info-address {
    margin-bottom: 15px;
}

.store-locations__map {
    flex: 1;
}

.store-locations__map iframe {
    border-radius: 8px;
}

.store-title {
    margin-bottom: 25px;
}

.panel-group .panel-store {
    border-radius: 8px;
    border: 1px solid #e9e9e9;
}

.panel-group .panel-store + div.panel-store {
    margin-top: 15px;
}

.ch-table .image .img-responsive {
    margin: 0 auto;
    min-height: 47px;
}

.panel-title > a.i_am_registered {
    color: #0f4b82;
}

.agree_checkout {
    margin-top: 15px;
    margin-bottom: 15px;
}

textarea.form-control {
    border: 1px solid var(--form-field-border);
    background-color: var(--form-field-bg);
    box-shadow: none;
    font-size: 14px;
}

.title-customer {
    flex-direction: column;
}

.title-customer .i_am_registered {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
}

@media (min-width: 600px) {
    .title-customer {
        justify-content: space-between;
        flex-direction: row;
    }

    .title-customer .i_am_registered {
        margin-top: 0px;
    }
}

#cart_table table td {
    vertical-align: middle;
}

#cart_table .table_total .total-title {
    color: #838383;
}

#cart_table .table_total tr td {
    padding: 8px;
}

#cart_table .table_total {
    margin: 0 0 20px;
    text-align: right;
    width: 100%;
}

#cart_table .table_total tr td:last-child {
    font-weight: 600;
    padding: 8px 8px 8px 20px;
    white-space: nowrap;
    width: 115px;
}

#cart_table .table_total tr:last-child td {
    font-size: 1em;
    font-weight: 600;
    padding: 8px 8px 8px 20px;
    color: #000;
}

#cart_table .coupon_table {
    margin: 0 0 20px;
    text-align: right;
    width: 100%;
}

#cart_table .coupon_table div {
    float: right;
    padding: 0 0 8px;
    width: 100px;
}

#cart_table .coupon .form-control,
#cart_table .reward .form-control {
    font-size: 12px;
    width: 270px;
    height: 44px;
}

#cart_table .delete_td {
    width: 50px;
}

.ch-gift {
    color: #EF1212;
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
}

.cart-prod-info-reward,
.cart-prod-info-option {
    font-size: 12px;
    margin-bottom: 4px;
}

.group-checkbox {
    margin-top: 20px;
    margin-bottom: 20px;
}

.chm-radio,
.chm-checkbox {
    display: block;
    position: relative;
    margin: 0 0 10px;
    cursor: pointer;
    font-size: 14px;
    padding-left: 0 !important;
}

.chm-radio label {
    padding-left: 0;
    font-size: 14px;
}

.checkbox-input,
.chm-radio label input[type="radio"] {
    flex-shrink: 0;
    cursor: pointer;
    display: inline-block;
    position: relative !important;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: var(--up-bg-wd);
    border: 1px solid var(--form-field-border);
    outline: 0 !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.checkbox-input[type="radio"],
.checkbox-input[type="checkbox"],
.chm-radio label input[type="radio"] {
    margin-top: 0px;
    margin-right: 4px;
    margin-left: 0 !important;
}

.checkbox-input[type="radio"],
.chm-radio label input[type="radio"] {
    border-radius: 50%;
}

.checkbox-input[type="checkbox"] {
    border-radius: 4px;
}

.checkbox-radio,
.checkbox-check {
    display: none;
}

.checkbox-input[type="radio"]:checked,
.chm-radio label input[type="radio"]:checked {
    background-color: #457DE3;
    border-color: #457DE3;
    --form-checked-bg-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='4' fill='%23fff'/%3E%3C/svg%3E");
    background-image: var(--form-checked-bg-image);
}

.checkbox-input[type="checkbox"]:checked {
    background-color: #457DE3;
    border-color: #457DE3;
    --form-checked-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
    background-image: var(--form-checked-bg-image);
}

.checkbox-input:hover,
.chm-radio label input[type="radio"]:hover {
    border-color: #457DE3
}

.checkbox-input:disabled ~ *, .checkbox-input[disabled] ~ * {
    cursor: default;
    opacity: .5;
}

.radio > label:hover > input.checkbox-input:not(:disabled):not(:checked) + span.checkbox-radio {
    border-color: #b3d7ff;
}

.group-checkbox .checkbox-inline {
    display: block;
    margin-top: 5px;
    margin-left: 0px;
}

.search-form-input {
    height: 40px;

    font-size: 14px;
    box-shadow: none;
}

.chm-legend {
    font-size: 16px;
    margin-bottom: 20px;
}

.chm-search-block {
    padding: 0px;
    border-radius: 0px;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 20px;
    background: var(--up-bg-wd);
    border: 1px solid var(--up-border-color);
}

.dates_added {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.dates_added__item a {
    background-color: var(--up-bg-main);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-flex;
    height: 38px;
    align-items: center;
    justify-content: center;

}

.dates_added__item a.dates_added__active-date {
    border: 1px solid var(--up-border-color);
    font-weight: 600;
}

.light-theme .dates_added__item a {
    color: var(--color-black);
}

.light-theme .dates_added__item a.dates_added__active-date {
    background-color: #fff;
}

.dark-theme .dates_added__item a {
    color: #B1B1B1;
}

.dark-theme .dates_added__item a.dates_added__active-date {
    background-color: var(--up-bg-gray);
    color: var(--color-white);
}

.modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
}

.add-to-cart-footer {
    position: fixed;
    bottom: 0px;
    padding: 8px 10px;
    height: 60px;
    background: var(--up-bg-wd);
    left: 0;
    right: 0;
    z-index: 1001;
    border-top: 1px solid var(--up-border-color);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.12);
    align-items: center;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.add-to-cart-footer.fm_b_1 {
    bottom: 54px;
}

.add-to-cart-footer.fm_b_2,
.add-to-cart-footer.fm_b_3 {
    bottom: 0px;
}

.add-to-cart-footer.turn_on {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.add-to-cart-footer .btn-general {
    min-height: 40px;
    padding: 0px 18px;
    line-height: 40px;
    height: 44px;
}

#back-top {
    display: none;
    overflow: hidden;
    position: fixed;
    bottom: 10px;
    right: 10px;
    text-decoration: none;
    z-index: 1002;
}

#back-top,
#cs-fb-widget {
    transition: bottom .3s ease-out, -webkit-bottom .3s ease-out;
}

@media (max-width: 767px) {
    #back-top.turn_on.db_3 {
        bottom: 120px;
    }

    #back-top.turn_off {
        bottom: 68px;
    }
}

@media (max-width: 991px) {
    #back-top.turn_on,
    #back-top.back-top-design-1 {
        bottom: 68px;
    }

    .fix_cart_price_footer footer {
        padding-bottom: 75px;
    }

    .fix_cart_price_footer footer {
        padding-bottom: 135px;
    }

    footer {
        padding-bottom: 50px;
    }
}

@media (min-width: 992px) {
    #back-top {
        right: 20px;
        bottom: 20px;
    }
}

@media (min-width: 768px) {
    .add-to-cart-footer {
        display: none;
    }

    .fix-add-to-cart-footer footer {
        padding-bottom: 0;
    }
}

.chm-well {
    height: 100%;
    background: var(--up-bg-wd);
    border: 1px solid var(--up-border-color);
    padding: 25px;
    border-radius: 10px;
}

.chm-well.flex-column .btn-primary {
    margin-top: auto;
    align-self: flex-start;
}

.chm-content,
.register-content,
.chm-account-content {
    background: var(--up-bg-wd);
    border: 1px solid var(--up-border-color);
    border-radius: 20px;
    padding: 25px;
}

.chm-content,
.chm-account-content {
    padding: 25px;
    border-radius: 20px;
}

.register-content .form-group,
.chm-account-content .form-group {
    margin-left: 0px;
    margin-right: 0px;
}

.register-content .form-group:last-child {
    margin-bottom: 0;
}

.chm-auth .form-group .control-label,
.register-content .form-group .control-label,
.chm-account-content .form-group .control-label {
    text-align: left;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 6px;
}

.group-checkbox label > a {
    margin-left: 2px;
}


.register-content > p {
    margin-bottom: 20px;
}

.register-content fieldset {
    margin-top: 20px;
}

.register-content fieldset:first-child legend {
    margin-top: 0px !important;
}

.radio-inline-flex {
    display: flex;
}

.radio-inline-flex label {
    margin-right: 15px;
}

.chm-title-auth {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}

#chm-menu-account {
    margin-bottom: 20px;
}

.chm-list-group {
    border-radius: 20px;
    padding: 25px;
    background: var(--up-bg-wd);
    border: 1px solid var(--up-border-color);
}

.chm-list-group-item.active::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    height: 24px;
    width: 2px;
    border-radius: 0px 10px 10px 0px;
    background: #557DC0;
    transform: translateY(-50%);
}

.chm-list-group a.chm-list-group-item {
    position: relative;
    display: block;
    padding: 12px 15px;
    background-color: var(--up-gray-color-1);
    border-radius: 6px;
    color: var(--up-text-color);
    -webkit-transition: background .2s ease;
    transition: background .2s ease;
    display: flex;
    align-items: center;
}

[class^="icon-am-"], [class*=" icon-am-"] {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.chm-list-group a.active, .chm-list-group a.active:hover, .chm-list-group a:hover {
    color: var(--up-text-wd-color);
    background: var(--up-gray-color-1);
}

.chm-list-group a + a {
    margin-top: 5px;
}

.chm-account-fixed {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    max-height: 100vh;
    height: 100%;
    width: 300px;
    max-width: 100%;
    background: var(--up-bg-wd);
    transition: transform .2s ease, visibility .2s ease, opacity .2s ease;
    transform: translate(100%, 0);
    text-align: left;
}

.chm-account-fixed .chm-mod-account {
    border: 0px;
}

.chm-account-fixed .chm-account-menu-content {
    opacity: 0;
    visibility: hidden;
}

.chm-account-fixed.chm-account-is-open {
    transform: translate(0, 0);
    z-index: 1014;
}

.chm-account-fixed.chm-account-is-open .chm-account-menu-content {
    opacity: 1;
    visibility: visible;
}

.chm-account-button {
    position: absolute;
    right: 100%;
    top: 90px;
    background: #0b76ef;
    background-position: center;
    background-repeat: no-repeat;
    width: 42px;
    height: 44px;
    cursor: pointer;
    border-radius: 5px 0px 0px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.chm-account-button .icon-account-menu {
    width: 20px;
    height: 20px;
    color: #fff;
    margin-left: 2px;
    margin-bottom: 9px;
}

.chm-account-button .text-am-menu {
    position: absolute;
    font-weight: 600;
    font-size: 8px;
    bottom: 5px;
    line-height: 10px;
    margin-left: 2px;
    color: #fff;
}

.chm-account-menu-content {
    padding: 0px;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.chm-account-backdrop {
    background: #0b0b0b;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    transition: visibility .2s ease;
}

.chm-account-backdrop.active {
    opacity: 0.6;
    visibility: visible;
    z-index: 1013;
}

.chm-text-empty {
    padding: 12px 0px;
}

.icon-downloads {
    height: 22px;
    width: 22px;
}

.icon-returns {
    width: 24px;
    height: 24px;
}

.chm-account-content form.form-horizontal legend:first-child {
    margin-top: 0;
}

.chm-content-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 28px;
}

.table-responsive + .chm-content-title {
    margin-top: 20px;
}

.address-item {
    border-bottom: 2px dashed var(--up-border-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.address-item .chm-address-info {
    margin-bottom: 20px;
    line-height: 22px;
}

.chm-btn-info {
    margin-right: 20px;
}

.chm-btn-info,
.chm-btn-delete {
    cursor: pointer;
    border-bottom: 1px dashed;
}

.chm-btn-info:hover, .chm-btn-info:focus,
.chm-btn-delete:hover, .chm-btn-delete:focus {
    border-color: transparent;
}

.chm-btn-delete, .chm-btn-delete:hover, .chm-btn-delete:focus {
    color: #da4f49;
}

#content.forgot-password {
    min-height: 220px;
}

.page-cart {
    padding-bottom: 5px;
    align-items: flex-start;
    flex-direction: column;
}

.cart-col-left {
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0px 0px 0px 1px var(--up-border-color);
    background: var(--up-bg-wd);
    padding: 15px;
    border-radius: 14px;
}

.cart-col-right {
    width: 100%;
    background: var(--up-bg-wd);
    border-radius: 14px;
    padding: 15px;
}

.title-text-next {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

.cart-item {
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
}

.cart-item + div.cart-item {
    border-top: 2px dashed var(--up-border-color);
}

.cart-item-left {
    -ms-flex: 0 0 85px;
    flex: 0 0 85px;
    max-width: 85px;
    position: relative;
    padding-right: 20px;
}

.dark-theme .cart-item-left img {
    padding: 5px;
    border-radius: 8px;
    background: #fff;
    aspect-ratio: 1;
}

.cart-item-image {
    justify-content: space-between;
}

.cart-item-center {
    padding: 0px 10px;
    flex-grow: 1;
    align-self: flex-start;
}

@media (max-width: 619px) {
    .cart-item-center {
        flex: 0 0 calc(100% - 85px);
    }
}

.cart-item-prod-name {
    margin-bottom: 10px;
    padding-right: 30px;
}

.cart-item-prod-name a {
    font-size: 14px;
    color: var(--up-text-wd-color);
    font-weight: 600;
}

.cart-item .product-model {
    color: var(--up-text-gray-color);
    text-align: left;
    font-size: 12px;
    padding-right: 30px;
}

.cart-item-options {
    margin-top: 10px;
}

.cart-item-option .cart-item-option-name {
    font-size: 12px;
    color: var(--up-text-gray-color);
    margin-right: 5px;
}

.cart-item-option .cart-item-option-value {
    font-size: 12px;
    color: var(--up-text-wd-color);
    font-weight: 500;
}

.cart-item .cart-item-price-quantity {
    text-align: right;
}

.cart-item .cart-item-price-quantity .btn-remove {
    position: absolute;
    top: 20px;
    right: 0px;
}

.cart-item .ch-cart-quantity {
    justify-content: flex-end;
}

.cart-item-price {
    color: var(--up-text-gray-color);
}

.cart-item-price,
.cart-item-total {
    white-space: nowrap;
}

.cart-item-total {
    margin-top: 2px;
    font-weight: 600;
    color: var(--up-text-wd-color);
}

.text-cart-item-price,
.text-cart-item-total {
    margin-right: 6px;
}

.cart-col-right .table-cart .total-title {
    padding-left: 0;
}

.cart-col-right .table-cart .total-text {
    padding-right: 0;
}

.cart-item .cart-totals {
    flex-direction: column;
    margin-left: auto;
}

.cart-item .cart-item-price-quantity {
    width: 100%;
    margin-top: 10px;
}

.cart-item .cart-item-price-quantity > .justify-content-end {
    align-items: center;
}

.cart-shipping {
    margin-bottom: 10px;
}

.cart-shipping #collapse-shipping {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--up-border-color);
}

.cart-shipping .accordion-toggle {
    font-size: 14px;
    padding: 10px 0px;
    color: var(--up-text-wd-color);
    display: inline-block;
}

.cart-shipping .accordion-toggle i {
    margin-left: 5px;
}

.cart-item:last-child {
    padding-bottom: 5px;
}

.checkout-col-left {
    width: 100%;
    margin-bottom: 0;
}

.checkout-col-left .cart-list {
    padding: 15px;
}

.mb-30 {
    margin-bottom: 30px;
}

.checkout-heading {
    font-size: 16px;
    font-weight: 600;
    padding-top: 5px;
    padding-bottom: 20px;
}

.form-control[disabled], .form-control[readonly], .form-control[disabled]:focus, .form-control[readonly]:focus, fieldset[disabled] .form-control {
    background-color: var(--color-gray-2);
    opacity: 1;
}

#payment-existing {
    float: left;
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}

#payment-address-new {
    float: left;
    width: 100%;
}

.payment .well.well-sm {
    padding: 15px;
    background: var(--color-gray-2);
    box-shadow: none;
    border-radius: 8px;
    border-color: var(--up-border-color);
}

.payment .well.well-sm p + p {
    margin-bottom: 0;
}

.register-form {
    float: left;
    width: 100%;
    overflow: hidden;
    margin-top: 15px;
}

.register-form label {
    font-size: 14px;
}

.shipping_method_title {
    color: var(--up-text-wd-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.shipping_method_title ~ div.shipping_method_title {
    margin-top: 15px;
}

.checkout-comment {
    margin-bottom: 20px;
}

.checkout-cart-accordion {
    margin-bottom: 15px;
}

.text-checkout-modules {
    font-size: 14px;
    color: var(--up-text-wd-color);
    padding-bottom: 20px;
    margin-bottom: 15px;
    display: block;
    border-bottom: 1px solid var(--up-border-color);
}

.cart-shipping .control-label {
    text-align: left;
}

.cart-coupon .control-label,
.cart-reward .control-label,
.cart-voucher .control-label {
    font-size: 13px;
    font-weight: 600;
}

.cart-coupon .btn-primary,
.cart-reward .btn-primary,
.cart-voucher .btn-primary {
    font-size: 14px;
}

#collapse-dop-module {
    padding-top: 5px;
    border-bottom: 1px solid var(--up-border-color);
    margin-bottom: 15px;
}

.table_total {
    border-bottom: 1px solid var(--up-border-color);
    padding-bottom: 15px;
    display: block;
}

@media (min-width: 620px) {
    .cart-item .cart-item-price-quantity {
        width: auto;
        max-width: 220px;
    }

    .cart-item-total {
        margin-top: 5px;
    }

    .cart-item {
        flex-wrap: nowrap;
    }

    .cart-item-price-quantity {
        flex-direction: column;
    }

    .cart-item .cart-item-price-quantity .btn-remove {
        position: relative;
        margin-left: 15px;
        top: 0;
    }

    .cart-item .cart-totals {
        margin-top: 15px;
    }
}

@media (min-width: 768px) {
    .cart-item:first-child {
        padding-top: 5px;
    }

    .checkout-col-left .cart-list {
        box-shadow: 0px 0px 0px 1px var(--up-border-color);
        border-radius: 14px;
    }

    .cart-col-left {
        border-radius: 14px;
        padding: 15px;
    }

    .light-theme .cart-item .cart-item-prod-name a:hover {
        color: #0f4b82;
    }

    .dark-theme .cart-item .cart-item-prod-name a:hover {
        color: #457DE3;
    }
}

@media (min-width: 992px) {
    .page-cart {
        flex-direction: row;
    }

    .checkout-comment {
        margin-bottom: 0px;
    }

    .checkout-сustomer,
    .checkout-address,
    .checkout-shipping-address,
    .checkout-shipping-method,
    .checkout-payment-method {
        padding: 20px;
    }

    .checkout-col-left .cart-list {
        padding: 20px;
    }

    .cart-col-right {
        padding: 20px;
        position: sticky;
        top: 20px;
        padding: 20px;
    }

    .checkout-col-left {
        margin-right: 30px;
    }

    .cart-col-left {
        margin-right: 30px;
        margin-bottom: 0;
        padding: 20px;
    }

    .cart-col-right {
        max-width: 350px;
    }
}

.chm-page-nf-ec {
    padding: 10px 25px 25px 25px;
    border-radius: 10px;
    margin-top: 15px;
    background: var(--up-bg-wd);
}

.chm-not-found h1 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.chm-not-found img {
    max-width: 100%;
}

.modal-xl {
    max-width: 1030px;
    width: calc(100% - 30px);
}

.modal-backdrop ~ .modal-backdrop {
    opacity: 0;
}

.a2a_kit.a2a_kit_size_32.a2a_default_style {
    display: flex;
    justify-content: space-between;
}

.a2a_kit.a2a_kit_size_32.a2a_default_style div[style="clear: both;"] {
    display: none;
}

.search_categories_box {
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.search_category_items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search_category_items > a {
    background: var(--up-bg-main);
    color: var(--up-text-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    display: inline-block;
}

.light-theme .search_category_items > a:hover {
    background: #eaeaea;
}

.dark-theme .search_category_items > a {
    outline: 1px solid #1D1D1D;
}

.dark-theme .search_category_items > a:hover {
    background: #1D1D1D;
}

.search_categories_title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

@media (min-width: 1200px) {
    .dropdown_search_item_product {
        border-radius: 12px;
        position: absolute;
        left: 100%;
        top: 0;
        margin-left: 15px;
        background: var(--up-bg-wd);
        width: 320px;
        opacity: 0;
        height: auto;
        min-height: 100%;
        display: flex;
        transition: opacity 0.3s ease-in-out;
        margin-top: 0;
    }

    .light-theme .dropdown_search_item_product {
        box-shadow: 6px 6px 19px rgba(0, 0, 0, 0.06);
    }

    .dark-theme .dropdown_search_item_product {
        box-shadow: 0px 0px 0px 1px var(--up-gray-color-1);
    }

    li.is-active .dropdown_search_item_product {
        opacity: 1;
    }

    .dropdown_search_item_product:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 100%;
        width: 35px;
    }

    .header-search .product-thumb {
        flex: 1 0 100%;
        box-shadow: none;
    }

    .header-search .price-actions-box {
        margin-top: auto !important;
    }
}

.up-table-compare {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.compare-table-scroll {
    padding-bottom: 15px;
    overflow-x: auto;
}

.compare-fixed-block {
    position: sticky;
    left: 15px;
    max-width: calc(100vw - 50px);
}

@media (max-width: 428px) {
    .compare-table-scroll {
        scroll-snap-type: x mandatory;
    }

    .up-table-compare td:not([colspan]) {
        min-width: 50vw;
        max-width: 50vw;
    }
}

@media (max-width: 768px) {
    .compare-table-scroll {
        margin-left: -10px;
        margin-right: -10px;
    }

    .up-table-compare:not(.mob-vw-40) td:not([colspan]) {
        min-width: 50vw;
        max-width: 50vw;
    }

    .up-table-compare.mob-vw-40 td:not([colspan]) {
        min-width: 40vw;
        max-width: 40vw;
    }
}

.up-table-compare > tbody > tr > th,
.up-table-compare > thead > tr > td,
.up-table-compare > tbody > tr > td,
.up-table-compare > thead > tr > th {
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: 20px;
    vertical-align: top;
    padding-left: 12px;
    padding-right: 12px;
}

.up-table-compare > thead > tr > td + td,
.up-table-compare > tbody > tr > td + td {
    border-left: 1px solid var(--up-border-color);
}

.compare-property-group-name th {
    font-size: 18px;
    font-weight: 400;
    padding-left: 0px !important;
    padding: 0px !important;
}

.compare-property-group-name th > div {
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--up-border-color);
}

.compare-property-name th {
    font-weight: 600;
    background: var(--up-bg-main);
    padding-left: 12px;
}

.up-table-compare .rating-star {
    width: 16px;
    position: relative;
    color: var(--up-color-rating-passive);
    margin-right: 3px;
    line-height: 18px;
}

.up-table-compare .rating-star-active {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    color: var(--up-color-rating-active);
    width: 0%;
}

.up-table-compare .rating-star:after,
.up-table-compare .rating-star-active:after {
    content: "\e914";
    line-height: 16px;
    font-size: 16px;
    display: inline-block;
}

.up-table-compare .compare-rating-info {
    margin-left: 5px;
}

.up-table-compare .compare-rating-info span {
    font-size: 10px;
}

.up-table-compare .compare-product-name {
    margin-bottom: 8px;
    font-size: 12px;
}

.light-theme .up-table-compare .compare-product-name {
    color: #797878;
}

.dark-theme .up-table-compare .compare-product-name {
    color: var(--up-text-gray-color);
}

.compare-product {
    display: flex;
    flex-direction: column;
}

.compare-product__image {
    position: relative;
    margin-bottom: 10px;
}

.dark-theme .compare-product__image img {
    border-radius: 8px;
    background: #ffffff;
    padding: 5px;
}

.compare-product__caption {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
}

.compare-product__name {
    margin-bottom: 10px;
}

.compare-product__name a {
    color: var(--up-text-wd-color);
    font-size: 14px;
    font-weight: 400;
}

.compare-product__name a:hover {
    text-decoration: underline;
    color: #457DE3;
}

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

.btn-remove-compare {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f8f8f8;
    position: absolute;
    right: 5px;
    top: 5px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cs-fb-widget {
    display: none;
}

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

svg.up-spinner {
    width: 22px;
    transform-origin: center;
    animation: rotate4 2s linear infinite;
}

.up-spinner circle {
    fill: none;
    stroke-width: 3;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash4 1.5s ease-in-out infinite;
}

@keyframes rotate4 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash4 {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dashoffset: -125px;
    }
}

.logo-dark {
    display: none;
}

.logo-light {
    display: block;
}

html.dark-theme .logo-dark {
    display: block;
}

html.dark-theme .logo-light {
    display: none;
}
