


:root {
    --size: 0.875rem;
    --size-sm: 0.75rem;
    --size-xs: 0.6875rem;
    --size-h1: 2rem;
    --size-h2: 1.75rem;
    --size-h3: 1.375rem;
    --size-h4: 1.125rem;
    --size-h5: 1rem;
    --size-h6: 0.875rem;
    --space: 1.5rem;
    --space-half: 0.75rem;
    --space-double: 3rem;

    --line: 1rem;

    --preheader-height: 2.125rem;
    --header-height: 7.1875rem;
    --navigation-height: 2.5rem;
    --color-dark: black;
    --border-color: #ebebeb;
}

html {
    font-size: 100%;
}

body {
    font-size: var(--size);
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    background: var(--background);
    color: var(--color-dark);
}

#content {
    min-height: 35rem;
}

.common_home #content {
    min-height: unset;
}

@media (min-width: 1920px) {
    html {
        /* font-size: 112.5%; */
    }
}

/* TYPORGAPHY */
a {
    color: var(--color-dark);
    text-decoration: none;
}

a:hover {
    color: inherit;
}

.nav-link,
.nav-link:hover,
.nav-link:focus {
    color: var(--color-dark);
}

.alert-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.alert-danger {
    color: #fff;
    background-color: #d52925;
    border-color: #d52925;
}

.alert-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.alert-info {
    color: #fff;
    background-color: #3c9ce2;
    border-color: #3c9ce2;
}

.alert-success a,
.alert-danger a,
.alert-warning a,
.alert-info a {
    color: #fff;
    text-decoration: underline;
}

.alert-fixed {
    position: fixed;
    bottom: 5rem;
    left: 50%;
    min-width: 50rem;
    max-width: calc(100% - 6rem);
    margin-right: auto;
    margin-left: auto;
    transform: translateX(-50%);
    z-index: 4;
}

.alert-fixed + .alert-fixed {
    bottom: 5rem;
}

.alert > i {
    position: relative;
    top: 1px;
}

.main-title {
    font-size: 2.25rem;
    letter-spacing: -1.44px;
    font-weight: bold;
    margin-bottom: 0.4rem;
}

.main-subtitle {
    font-size: 1rem;
    color: #929292;
}

/* MODALS */

.modal-content {
    padding: 1rem 2rem;
}

.modal-header {
    justify-content: center;
}

.modal-header,
.modal-body,
.modal-footer {
    padding-left: 0;
    padding-right: 0;
}

.modal-header .modal-title {
    font-weight: bold;
    font-size: 1.25rem;
}

.modal-footer {
    border: 0;
    justify-content: center;
}

.modal-footer .btn-close-extra {
    box-sizing: content-box;
    height: 1rem;
    padding: 0.25rem 0.25rem 0.25rem 1.75rem;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") left 75%/0.75rem auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.5;
}

/* PAGINATION */
.page-link {
    color: var(--color-dark);
    border-color: #e1e1e1;
    line-height: 1.875rem;
    width: 2rem;
    height: 2rem;
    padding: 0;
    text-align: center;
    border: 0;
    margin-left: 0.125rem;
}

.page-item.active .page-link {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
    border: 0;
    border-radius: 50%;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-radius: 50%;
}

.page-item .page-link:hover {
    border-radius: 50%;
    margin-left: 0.125rem;
    color: var(--color-dark);
    border: 0;
}

.page-item:not(:first-child) .page-link {
    margin-left: 0.125rem;
}

.pagination-wrap nav ul {
    justify-content: end;
}

/* GRID */
@media (min-width: 1200px) {
    .container-sm {
        max-width: 1140px;
    }

    .container-xxl {
        max-width: 100%;
    }
}

@media (min-width: 1600px) {
    .container-xxl {
        max-width: 100%;
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

@media (min-width: 1900px) {
    .container-xxl {
        max-width: 1860px;
        margin-left: auto;
        margin-right: auto;
    }
}

.container-account {
    max-width: 60rem;
}





[class*="icon-"]:before {
    display: inline-block;
    font-family: "Glyphter";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-user-check-interface-symbol:before {
    content: "\0041";
}

.icon-heart:before {
    content: "\0042";
}

.icon-shopping-bag:before {
    content: "\0043";
}

.icon-user:before {
    content: "\0044";
}

.icon-like:before {
    content: "\0045";
}

/* BUTTONS */

.btn {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0.1875rem;
    line-height: 1.25rem;
}

.btn-group-lg > .btn,
.btn-lg {
    padding: 0.75rem 1.75rem;
    font-size: 1.25rem;
    border-radius: 0.5rem;
    line-height: 1.75rem;
}

.btn-primary {
    color: #fff;
    background-color: #303030;
    border-color: #303030;
}

.btn-primary:hover {
    color: #303030;
    background-color: #fff;
    border-color: #303030;
}

.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0.25rem 0.25rem rgb(0 0 0 / 25%);
}

.btn-check:focus + .btn-primary,
.btn-primary:focus,
.btn-primary:active {
    color: #fff;
    background-color: #000000;
    border-color: #000000;
    box-shadow: 0 0 0.25rem 0.25rem rgb(0 0 0 / 25%);
}

.btn-default {
    background-color: #f4f4f4;
    border-color: #f4f4f4;
    color: #a0a0a0;
    border-radius: 0.1875rem;
}

.btn-default:hover {
    color: #000000;
    background-color: #fff;
    border-color: #e1e1e1;
}

.btn-check:active + .btn-default:focus,
.btn-check:checked + .btn-default:focus,
.btn-default.active:focus,
.btn-default:active:focus,
.show > .btn-default.dropdown-toggle:focus {
    box-shadow: 0 0 0.25rem 0.25rem rgb(0 0 0 / 25%);
}

.btn i + span,
.btn span + i {
    padding-left: 0.375rem;
}

.btn-dropdown-main {
    padding: 0 0 0 0;
    line-height: 1.25rem;
    width: 15rem;
    text-align: left;
}

.btn-dropdown-main:focus {
    box-shadow: none;
}

.btn-dropdown-main.dropdown-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    border: 0;
    font-size: 0.75rem;
    line-height: 1.25rem;
    position: relative;
    top: 0.15rem;
    padding-left: 0.25rem;
}

.btn-dropdown-main.dropdown-toggle.show::after {
    content: "\f106";
}

.btn-generic {
    background-color: var(--bs-white);
    border-color: var(--color-dark);
    color: var(--color-dark);
    border-radius: 0;
    font-size: 0.625rem;
    font-weight: 100;
    padding: 0.625rem var(--space-double);
    letter-spacing: 0.125rem;
    transition: 300ms ease-in-out;
}

.btn-generic:hover {
    color: var(--bs-white);
    background-color: var(--color-dark);
    border-color: var(--color-dark);
}

/* FORMS */

.form-select,
.form-control {
    padding: 0.625rem 0.75rem;
    border: 1px solid #e1e1e1;
    border-radius: 0;
    line-height: 1.25rem;
    background: #f9f9f9;
}

.form-control + .text-danger {
    margin-top: 0.25rem;
    font-size: 0.875rem;
}

form .required label:after {
    content: "*";
    color: var(--bs-red);
    padding-left: 0.125rem;
}

/* HEADER */

.header-top-bar {
    background: var(--color-dark);
    color: var(--bs-white);
    height: var(--preheader-height);
    font-size: var(--size-sm);
}

.header-top-bar .header-top-bar-row {
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.header-top-bar .header-top-bar-block > span + span {
    margin-left: var(--space);
}

.header-top-bar .header-top-bar-block {
    height: var(--preheader-height);
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.header-top-bar .header-top-bar-block a {
    text-decoration: none;
}

.header-top-bar .header-top-bar-block .header-order-label {
    font-weight: var(--font-weight-light);
    letter-spacing: 1.2px;
}

.header-top-bar .header-top-bar-block .header-order-phone {
    font-weight: var(--font-weight-light);
    color: var(--text-color);
    letter-spacing: 1.2px;
}

.header-top-bar .header-top-bar-block-1,
.header-top-bar .header-top-bar-block-3 {
    font-size: var(--size-xs);
}

.header-top-bar .header-top-bar-last-offer {
    letter-spacing: 1.2px;
    font-weight: var(--font-weight-light);
}

.header-top-bar .header-top-bar-block span i {
    margin-right: calc(var(--bs-gutter-x) / 4);
}

.header-top-bar .header-top-bar-block span a:last-child i {
    margin-right: 0;
}

.header-top-bar .header-top-bar-block-2 .header-top-bar-sale {
    letter-spacing: 1.2px;
}

.header-top-bar .header-top-bar-block-2 .header-top-bar-offer a {
    display: inline-flex;
    align-items: center;
    color: var(--bs-white);
    letter-spacing: 1.2px;
    font-weight: var(--font-weight-xlight);
}

.header-top-bar .header-top-bar-block-2 .header-top-bar-offer span {
    height: 1rem;
    width: 1rem;
    line-height: 1rem;
    margin-left: calc(var(--bs-gutter-x) / 4);
    position: relative;
    top: 2px;
}

.header-top-bar .header-top-bar-block-2 .header-top-bar-offer i {
    margin: 0;
}

#header {
    position: relative;
    z-index: 100;
    background-color: var(--background);
}

#logo {
    max-width: var(--logo-header-width);
    display: flex;
}

#logo .logo-text {
    font-size: 2.25rem;
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.125rem;
}

#header {
    height: var(--header-height);
    align-content: center;
}

/* .header-main {
    height: var(--header-height);
} */

.header-main-block {
    display: flex;
    align-items: center;
}

.header-main-block-left {
    justify-content: flex-start;
}

.header-main-block-center {
    justify-content: center;
}

.header-main-block-right {
    justify-content: flex-end;
}

.header-main-block-icon {
    position: relative;
    margin-right: calc(var(--bs-gutter-x) * 2);
}

.header-main-block-icon > a,
.header-main-block-icon > button {
    font-size: var(--size-h3);
}

.header-main-block-icon:first-child {
    margin-right: calc(var(--bs-gutter-x) * 2);
}

.header-main-block-icon:last-child {
    margin-right: 0;
}

.header-main-block-icon .ho-total-counter {
    font-size: var(--size-xs);
    line-height: 0.75rem;
    position: absolute;
    bottom: -0.5rem;
    left: -0.75rem;
    width: 1rem;
    height: 1rem;
    background: transparent;
    border-radius: 100%;
    border: 1px solid #e1e1e1;
    margin: 0;
    padding: 0;
    text-align: center;
}

.header-main-block-icon .ho-total-counter[data-has-total="0"] {
    display: flex;
    align-items: center;
    display: none;
}

#header .header-utilities [class*="icon-"] {
    font-size: var(--size-h3);
}

/* HEADER SEARCH */

.header-utilities .header-search-btn {
    display: flex;
    align-items: center;
}

.header-utilities .header-search-btn .header-search-text {
    font-size: 0.75rem;
    line-height: 1.25rem;
    position: relative;
    top: -2px;
    margin-left: 0.75rem;
    border-bottom: solid 1px var(--color-dark);
}

.header-search .header-top-bar-block {
    width: 100%;
}

.header-search .header-search-btn {
    display: flex;
    align-items: center;
    border: solid 1px #e1e1e1;
    border-radius: 3rem;
    padding: 0.5rem 1rem;
    width: 100%;
}

.header-search .header-search-btn > i {
    font-size: 1.25rem;
}

.header-search .header-search-btn .header-search-text {
    font-size: 0.75rem;
    line-height: 1.25rem;
    position: relative;
    margin-left: 1rem;
}

#search {
    padding: 0;
    -webkit-border-radius: 0;
    border: 0;
    border-radius: 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    max-width: 1800px;
    margin: auto;
    padding: 3rem 0 0 0;
}

#search > button i {
    color: var(--icon-color);
    font-size: 1.125rem;
}

#search i:hover {
    color: var(--icon-color-hover);
    cursor: pointer;
}

#search .select-categories-header-search {
    display: flex;
    align-items: center;
    flex: 0 0 var(--bs-gutter-x);
    opacity: 0;
    position: relative;
    z-index: -1;
    transition: all 0.3s;
}

#search .close-arrow {
    opacity: 0;
    display: none;
}

#search.expanded .select-categories-header-search {
    flex: 0 0 300px;
    opacity: 1;
    padding-right: var(--bs-gutter-x);
    z-index: 1;
}

#search.expanded .close-arrow {
    opacity: 1;
    transition: all 0.3s;
}

#search select {
    flex: 1;
    background: var(--background-dark);
    color: var(--text-color);
    margin-right: calc(var(--bs-gutter-x) / 4);
    margin-left: calc(var(--bs-gutter-x) / 4);
    border: 0px;
    border-radius: 30px;
    min-height: calc(var(--input-height) - calc(var(--bs-gutter-x) * 2));
    font-size: 0.75rem;
}

#search input,
select,
button {
    min-height: calc(var(--input-height) - calc(var(--bs-gutter-x) * 2));
    border: 0px;
}

#search input {
    color: #252525;
    font-size: 0.75rem;
    line-height: 1.625rem;
    padding: 0.375rem 0.75rem;
}

#search button {
    border: 0px;
    background: none;
    padding-left: 15px;
}

#searchOffcanvas.offcanvas-top {
    height: max(80vh, 40rem);
}

#search.search-focus a.search-focus-close {
    display: flex;
    position: absolute;
    color: #111;
    width: 4.5rem;
    height: 4.5rem;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    right: 0;
    top: 0;
}

#search.search-focus input[name="search"] {
    border-bottom: solid 1px #111;
    border-radius: 0;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 1.75rem;
    line-height: 2.5rem;
    position: relative;
    box-shadow: none;
    height: calc(4.5rem + 1px);
}

#search.search-focus button {
    display: none;
}

.live-search {
    display: none;
}

div#search.search-focus .live-search {
    display: block;
    height: calc(100% - 4.5rem);
    overflow: hidden;
}

.live-search {
}

.live-results__container {
    padding: 0rem 1rem 1rem 1rem;
}

.live-results__suggestion-box {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

.live-results__suggestion-box h3 {
    font-size: 0.9375rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.live-results__suggestion-box h4 {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: bold;
}

.live-results__suggestion-box ul {
    margin: 1rem 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    list-style-type: none;
    text-align: center;
}

.live-results__suggestion-box ul li {
    margin: 0 0 0.5rem 0;
}

.live-results__suggestion-box ul li a {
    text-decoration: underline;
}

.live-results__container .search-results-wrap__all {
    display: flex;
    flex-wrap: nowrap;
}

.live-results__container .search-products-wrap {
    flex: 1;
}

.live-results__container .search-products-wrap .product-layout {
    width: 20%;
}

.live-results__container .search-results-sidebar {
    flex: 0 0 20%;
    max-width: 20%;
    margin-right: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
    border-right: dashed 1px rgba(0, 0, 0, 0.2);
    display: flex;
}

.live-results__container .search-results-sidebar > ul {
    position: sticky;
    top: 3rem;
}

.live-results__container .search-results-sidebar ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.live-results__container .search-results-sidebar ul ul {
    padding-left: 1rem;
}

.live-results__container li.search-results-cat__parent > a {
    font-weight: bold;
}

.live-results__container li.search-results-cat__child a {
    font-size: 12px;
    line-height: 1.5rem;
}

.live-results__container .search-results-sidebar > ul > li + li {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: solid 1px rgba(0, 0, 0, 0.1);
}

.live-results__container .search-results-sidebar ul li {
    display: flex;
    flex-direction: column;
}

.live-results__container li.search-results-cat__parent > a + ul {
    margin-top: 0.5rem;
}

.live-results__container .live-search .aj-loader {
    width: 100%;
    position: relative;
    height: 200px;
    left: 0;
    transform: none;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-results__container .live-results__no_results-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-size: 18px;
    font-weight: 100;
}

.live-results__no_results-wrap i {
    font-size: 40px;
    opacity: 0.5;
    margin-bottom: 1rem;
}

li.search-results-cat__parent:hover,
li.search-results-cat__parent:active,
li.search-results-cat__parent:focus {
    color: var(--link-color-hover);
}

.live-results__no_results-text span {
    font-weight: bold;
    color: var(--link-color-hover);
}

.swiper .product-layout .product-block:hover,
.live-search .product-layout .product-block:hover {
    box-shadow: none;
}

.live-search .product-layout .product-block:hover .product-wishlist,
.live-search .product-layout .product-block:hover .product-block-actions {
    display: none;
}

/* DESKTOP MENU */

/* BREADCRUMB */
nav[aria-label="breadcrumb"] {
    display: flex;
}

.breadcrumb {
    /* padding-top: .625rem;
	padding-bottom: .625rem; */
    margin-bottom: 0;
}
@media (max-width: 575px) {
    .breadcrumb {
        justify-content: center;
    }
    .breadcrumb .breadcrumb-item[aria-current="page"] a {
        font-weight: bolder;
    }
}

.breadcrumb li,
.breadcrumb li a {
    font-size: 0.625rem;
    color: #afafaf;
    line-height: 1.25rem;
}

.breadcrumb .breadcrumb-item[aria-current="page"] a {
    pointer-events: none;
    color: black;
    text-decoration: underline;
}

/* INFORMATIONS */
.information_information #content {
    margin-bottom: 3rem;
}

.information_information #content,
.information_information #content p,
.information_information #content ul,
.information_information #content span {
    font-size: 1rem;
    line-height: 1.5rem;
}

.information_information #content h1 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.information_information #content h2,
.information_information #content h3,
.information_information #content h4 {
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.information_information #content p {
    margin-bottom: 1.25rem;
}

/* ACCOUNT BODY */
body.account_body {
    background: #ededed 0% 0% no-repeat padding-box;
}

.account-wrap {
    width: 100%;
    max-width: 60rem;
    margin: 0 auto;
}

.account_login .account-wrap,
.account_register .account-wrap,
.account_forgotten .account-wrap,
.account_reset .account-wrap {
    max-width: 50rem;
}

.account_login .card-account form,
.account_register .card-account form,
.account_forgotten .card-account form,
.account_reset .card-account form {
    max-width: 28rem;
}

.account_header #logo {
    justify-content: center;
    padding: 2rem 0;
}

.card-greeting {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-greeting span {
    background-color: #000;
    color: #fff;
    font-weight: bold;
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: 0.125rem;
    padding: 0.375rem 1rem 0.8125rem 1rem;
}

.card-greeting span + span {
    margin-top: 0.5rem;
}

.card-account {
    border-width: 1px;
    border-color: #dee2e6;
    border-radius: 0;
}

.card-account #content h3 {
    font-size: 1.25rem;
    line-height: 2rem;
    font-weight: bold;
    letter-spacing: 0.125rem;
}

.card-account #content .tab-links h3 {
    position: relative;
    font-size: 1rem;
}

.card-account .tab-links .border-bottom {
    border-bottom-width: 3px !important;
    border-color: #e1e1e1 !important;
}

.card-account .tab-links > div.active {
    border-color: #303030 !important;
}

.card-account form {
    margin: auto;
}

.card-account .card-account-header {
    margin-bottom: 3rem;
}

.card-account .card-account-header .card-account-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-account .card-account-header .card-account-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    margin: 0;
}

.card-account .card-account-header .card-account-btns {
    margin-top: 1.5rem;
}

.account_body .footer-link {
    font-size: 0.875rem;
    display: inline-block;
}

.account_body .footer-link:hover {
    text-decoration: underline;
}

.account_body .footer-link + .footer-link:before {
    content: "|";
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* ACCOUNT SIDEBAR */

.account-list-group .list-group-item {
    padding: 1rem 1rem;
    font-size: 1rem;
}

.account-list-group .list-group-item a {
    width: 100%;
}

.account-list-group .list-group-item.active {
    background-color: #f8f8f8;
    border-color: #dee2e6;
}

.account-list-group .list-group-item.active:before {
    content: "";
    width: 0.25rem;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
}

.account-list-group .list-group-item.active a {
    font-weight: bold;
}

.account-list-group .list-group-item i {
    width: 1.75rem;
    font-size: 1.25rem;
}

.bg-account {
    background: #f0f2f0;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #000c40, #f0f2f0);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #000c40, #edededf0);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

@media (max-width: 500px) {
    .alert-fixed {
        left: 0.75rem;
        bottom: 0.75rem;
        min-width: calc(100% - 1.5rem);
        transform: none;
        margin-bottom: 0;
    }

    .card-account #content h3 {
        letter-spacing: 0.0625rem;
    }

    .account-wrap {
        padding-right: 0.75rem;
        padding-left: 0.75rem;
    }

    .card-greeting span {
        font-size: 1.5rem;
        line-height: 1.5rem;
        letter-spacing: 0.125rem;
        padding: 0.25rem 1rem 0.625rem 1rem;
    }

    .account-wrap > div:not(#account-account) .account-list-group {
        display: none;
    }

    .account-wrap > div:not(#account-account) .account-list-group:first-child {
        display: flex;
    }

    .account-wrap > div:not(#account-account) .account-list-group:first-child .list-group-item a i:before {
        content: "\f104";
    }
}

/* FOOTER BANNERS */
.footer-info {
    border-top: 1px solid var(--color-dark);
    margin-top: 2rem;
    padding: 1.5rem 0;
}

.footer-info .container {
    max-width: 1640px;
}

.footer-info .module-container {
    padding-top: calc(var(--bs-gutter-x) * 2);
    padding-bottom: calc(var(--bs-gutter-x) * 2);
}

.footer-info .banner-row {
    margin-left: var(--space-negative);
    margin-right: var(--space-negative);
}

.footer-info .banner-row .banner-col.col-md-2,
.footer-info .banner-row .banner-col.col-sm-2 {
    flex: 0 0 20%;
    max-width: 20%;
}

.footer-info .banner-row .banner-col .banner-item {
    flex-direction: row;
    align-items: center;
    display: flex;
}

.footer-info .banner-row .banner-col .banner-item .banner-image {
    flex: unset;
    background-color: var(--background);
    width: 68px;
    min-width: 68px;
    height: 68px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space);
}

.footer-info .banner-row .banner-col .banner-item .banner-image img {
    height: auto;
    object-fit: unset;
    width: auto;
}

.footer-info .banner-row .banner-col .banner-item .banner-caption {
    color: var(--color-dark);
    padding: 0 0 0 1rem;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
    flex-wrap: wrap;
}

.footer-info .banner-row .banner-col .banner-item .banner-caption .banner-hypertitle {
    color: var(--color-dark);
    text-align: left;
    font-size: var(--size);
    font-weight: bold;
    margin-bottom: calc(var(--bs-gutter-x) * 0.25);
}

.footer-info .banner-row .banner-col .banner-item .banner-caption .banner-title {
    margin-bottom: 0;
}

.footer-info .banner-row .banner-col .banner-item .banner-caption .banner-title,
.footer-info .banner-row .banner-col .banner-item .banner-caption .banner-subtitle {
    color: #707070;
    font-size: var(--size);
    font-weight: 300;
}

@media only screen and (max-width: 1199px) {
    .footer-info .banner-row .banner-col .banner-item {
        flex-direction: column;
    }

    .footer-info .banner-row .banner-col .banner-item .banner-image {
        margin-right: 0;
        height: 100px;
    }

    .footer-info .banner-row .banner-col .banner-item .banner-caption .banner-title,
    .footer-info .banner-row .banner-col .banner-item .banner-caption .banner-subtitle,
    .footer-info .banner-row .banner-col .banner-item .banner-caption .banner-hypertitle,
    .footer-info .banner-row .banner-col .banner-item .banner-caption {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media only screen and (max-width: 990px) {
    .footer-info .banner-row .banner-col.col-md-2,
    .footer-info .banner-row .banner-col.col-sm-2 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }

    .footer-info .banner-row .banner-col.col-md-2:nth-child(4),
    .footer-info .banner-row .banner-col.col-sm-2:nth-child(4),
    .footer-info .banner-row .banner-col.col-md-2:nth-child(5),
    .footer-info .banner-row .banner-col.col-sm-2:nth-child(5) {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .footer-info .banner-row .banner-col .banner-item .banner-image {
        height: 105px;
    }
}

@media only screen and (max-width: 768px) {
    .footer-info .banner-row .banner-col.col-md-2,
    .footer-info .banner-row .banner-col.col-sm-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .footer-info .banner-row .banner-col.col-md-2:nth-child(5),
    .footer-info .banner-row .banner-col.col-sm-2:nth-child(5) {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* FOOTER BANNERS */
/* BANNERS */

/* FOOTER */

.footer-wrap {
    margin: 0;
    color: var(--color-dark);
}

.footer-wrap .column-5 {
    max-width: 20%;
    flex: 0 0 20%;
    padding-left: var(--space);
    padding-right: var(--space);
}

.footer-wrap #footer-logo {
    display: flex;
    margin-bottom: var(--space-double);
}

.footer-wrap #footer-logo a {
    max-width: 200px;
}

.footer-wrap a:hover {
    color: var(--link-color-dark);
}

.footer-wrap h5 {
    color: var(--color-dark);
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: bold;
}

.footer-wrap h5.small-title,
.footer-wrap h6 {
    font-size: 0.875rem;
    font-weight: bold;
}

.footer-wrap a {
    color: #707070;
    font-weight: var(--font-weight-light);
}

.footer-wrap i {
    color: var(--text-color-dark);
    font-size: var(--md-size);
}

.footer-wrap a:hover {
    color: var(--link-color-hover);
}

.footer-wrap .spacings ul {
    padding-left: 0;
    font-weight: 300;
}

.footer-wrap ul li,
.footer-wrap .spacings ul li {
    color: #707070;
    list-style: none;
    line-height: 1.25rem;
    margin-bottom: 0.5rem;
}

.footer-wrap .spacings li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.footer-wrap ul li a,
.footer-wrap .spacings ul li a {
    color: #707070;
}

.footer-wrap ul li a:hover,
.footer-wrap .spacings ul li a:hover {
    color: #000000;
}

.footer-wrap .spacings .find_us {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    line-height: 1rem;
}

.footer-wrap .spacings .find_us i {
    padding-right: var(--space-half);
}

.socials.mobile {
    display: none;
}

.footer-wrap .socials i {
    margin-right: var(--space-half);
    width: 1rem;
    text-align: center;
    position: relative;
    top: 0.125rem;
}

.footer-wrap .socials a {
    display: flex;
    align-items: center;
}

.copyright {
    background-color: var(--background);
    padding-top: var(--space);
    padding-bottom: var(--space);
}

.copyright .copy {
    font-size: 0.75rem;
    color: #111;
}

.copyright .cards {
    justify-content: center;
    display: flex;
}

.copyright .dev {
    font-size: 0.75rem;
    color: #111;
}

.copyright .dev img {
    max-width: 15px;
    margin-left: var(--space);
}

.espa-banner {
    position: fixed;
    z-index: 20;
    bottom: 10px;
    left: 10px;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}

/* SLIDESHOW */

.swiper {
    --swiper-navigation-size: 2rem;
    z-index: 1;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
    color: var(--bs-white);
    background: rgb(48 48 48 / 30%);
    width: var(--swiper-navigation-size);
    height: var(--swiper-navigation-size);
}

.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
    font-size: calc(var(--swiper-navigation-size) * 0.5);
}

.swiper:hover .swiper-button-next,
.swiper:hover .swiper-button-prev {
    background: rgb(48 48 48 / 100%);
}

.swiper .swiper-slide .slideshow-slide-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* .swiper .swiper-slide .slideshow-slide-wrapper:after {
	content: '';
	background-image: -moz-linear-gradient(-90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%);
	background-image: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%);
	background-image: -ms-linear-gradient(-90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}

.swiper .swiper-slide .slideshow-slide-caption-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: var(--space-double) var(--space-double) var(--space-double) calc(2 * var(--space-double));
	width: 100%;
	height: 100%;
}

.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container {
	display: flex;
	flex-wrap: wrap;
	z-index: 6;
}

.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-hypertitle {
	font-size: var(--size-h2);
	color: #000;
	width: 100%;
	margin-bottom: 0;
	display: flex;
	justify-content: center;
	line-height: 1;
	font-weight: 200;
	letter-spacing: 4px;
}

.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-title {
	font-size: 2.75rem;
	font-weight: 800;
	color: #000;
	width: 100%;
	margin-bottom: 0;
	margin-top: 0;
	display: flex;
	justify-content: center;
	line-height: 1;
}

.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-subtitle {
	font-size: var(--size-h3);
	color: #000;
	width: 100%;
	display: flex;
	justify-content: center;
}

.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-button-container {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: var(--space-double);
}

.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-button {
	color: #000;
	font-size: .75rem;
	font-weight: 300;
	letter-spacing: 6px;
	padding: var(--space-half) var(--space-double);
	border: 1px solid #fff;
	background: #fff;
	min-height: 0;
	border-radius: 0;
} */

/* SLIDESHOW */

/* HOMEPAGE CATEGORIES */
.common_home .content-top .banner-container .container-xxl {
    max-width: fit-content;
}

.homepage_categories {
    margin-top: 0;
    transform: translateY(calc(-1 * var(--space-double)));
    z-index: 3;
    position: relative;
}

.homepage_categories .banner-row .banner-col .banner-item .banner-caption {
    padding-left: var(--space);
}

.homepage_categories .banner-row .banner-col .banner-item .banner-image {
    background-color: #000;
    padding: 0.25rem;
    overflow: hidden;
}

.homepage_categories .banner-row .banner-col .banner-item .banner-image img {
    height: auto;
    width: 100%;
    object-fit: none;
    transition: transform 1s;
}

.homepage_categories .banner-row .banner-col .banner-item.banner-image-right .banner-title {
    text-align: left;
    color: var(--color-dark);
    font-size: var(--size-h3);
    font-weight: 700;
    margin-bottom: 0;
    margin-top: var(--space-half);
}

.homepage_categories .banner-row .banner-col .banner-item.banner-image-right .banner-title:after {
    content: "";
    background-color: var(--color-dark);
    height: 1px;
    width: 30px;
    display: block;
    margin-top: var(--space-half);
    margin-bottom: var(--space-half);
    transition: 300ms ease-in-out;
}

.homepage_categories .banner-row .banner-col .banner-item.banner-image-right .banner-title:hover:after {
    background-color: var(--link-color-hover);
    width: 60px;
}

.homepage_categories .banner-row .banner-col .banner-item.banner-image-right .banner-readmore {
    justify-content: flex-start;
}

.homepage_categories .banner-row .banner-col .banner-item.banner-image-right .banner-readmore .btn-generic {
    border: none;
    color: var(--color-dark);
    font-size: var(--size-h4);
    font-weight: 200;
    min-height: 0;
    padding: 0;
    letter-spacing: 0;
}

.homepage_categories .banner-row .banner-col .banner-item.banner-image-right .banner-readmore .btn-generic:hover {
    background: transparent;
    color: var(--link-color-hover);
}

@media only screen and (max-width: 1220px) {
    .homepage_categories .banner-row .banner-col .banner-item .banner-image img {
        object-fit: cover;
    }

    .homepage_categories .banner-row .banner-col .banner-item .banner-caption {
        padding: var(--space);
        text-align: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .homepage_categories .banner-row .banner-col .banner-item.banner-image-right .banner-title:after {
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (max-width: 768px) {
    .homepage_categories .banner-row .banner-col .banner-item .banner-image {
        background-color: transparent;
        padding: 0;
        margin: auto auto;
    }

    .homepage_categories .banner-row .banner-col .banner-item .banner-image img {
        width: auto;
        max-width: 100%;
        height: auto;
    }
}

/* HOMEPAGE CATEGORIES */

/* HOMEPAGE BANNERS */

.homepage_banners {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.homepage_banners > .container {
    max-width: 1640px;
}

.homepage_banners .banner-row .banner-col:nth-child(2) .banner-item {
    position: relative;
    display: block;
}

.homepage_banners .banner-row .banner-col:nth-child(2) .banner-item .banner-caption {
    position: absolute;
    top: 0;
    left: 0;
    /* right: 0; */
    /* bottom: 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.homepage_banners .banner-row .banner-col .banner-item .banner-caption {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.homepage_banners .banner-row .banner-col .banner-item .banner-image {
    display: flex;
    justify-content: center;
}

.homepage_banners .banner-row .banner-col .banner-item .banner-image img {
    object-fit: none;
    height: auto;
}

.homepage_banners .banner-row .banner-col .banner-item.banner-image-center .banner-title {
    text-align: center;
    color: var(--text-color-dark);
    font-size: 1.125rem;
    margin-bottom: 0;
    letter-spacing: 4px;
    font-weight: var(--font-weight-light);
    margin-top: var(--space-half);
}

.homepage_banners .banner-row .banner-col .banner-item.banner-image-center .banner-title:after {
    content: "";
    background-color: var(--background-dark);
    height: 1px;
    width: 30px;
    display: flex;
    margin: var(--space) auto;
    transition: 300ms ease-in-out;
}

.homepage_banners .banner-row .banner-col .banner-item.banner-image-center .banner-title:hover:after {
    background-color: var(--link-color-hover);
    width: 60px;
}

.homepage_banners .banner-row .banner-col:nth-child(2) .banner-item.banner-image-center .banner-hypertitle {
    margin-bottom: 0;
}

.homepage_banners .banner-row .banner-col .banner-item.banner-image-center .banner-hypertitle {
    text-align: center;
    color: var(--text-color-dark);
    font-size: 2.25rem;
    margin-bottom: var(--space);
    letter-spacing: 4px;
}

.homepage_banners .banner-row .banner-col .banner-item.banner-image-center .banner-subtitle {
    text-align: center;
    color: #707070;
    font-size: var(--size-h6);
    font-weight: 200;
    line-height: var(--size-h3);
    max-width: 50%;
    margin: 0 auto;
}

.homepage_banners .banner-row .banner-col .banner-item.banner-image-center .banner-readmore {
    margin-top: 2rem;
}

@media only screen and (max-width: 1199px) {
    .homepage_banners .banner-row .banner-col .banner-item.banner-image-center .banner-hypertitle {
        font-size: 2rem;
    }
}

@media only screen and (max-width: 990px) {
    .homepage_banners .banner-row .banner-col .banner-item.banner-image-center .banner-hypertitle {
        font-size: 1.8rem;
    }

    .homepage_banners .banner-row .banner-col .banner-item.banner-image-center .banner-subtitle {
        line-height: 1.2;
        max-width: 100%;
    }

    .homepage_banners .banner-row .banner-col .banner-item .banner-image img {
        object-fit: cover;
    }
}

@media only screen and (max-width: 768px) {
    .homepage_banners .banner-row .banner-col .banner-item .banner-image img {
        width: auto;
    }

    .homepage_banners .banner-row .banner-col:nth-child(2) .banner-item .banner-caption {
        position: unset;
    }
}

@media only screen and (max-width: 480px) {
    .homepage_banners .banner-row .banner-col .banner-item .banner-image img {
        object-fit: cover;
    }
}

/* HOMEPAGE BANNERS */

/* SIMPLE BOX ABOUT US */
.about-container {
    margin-top: var(--space-double);
}

.about-container .row {
    padding-top: var(--space-double);
    padding-bottom: var(--space-double);
}

.about-container .about-right {
    border: 2px solid var(--color-dark);
    border-left: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.about-container .about-background {
    text-align: right;
    padding-right: 3rem;
}

.about-container .about-background.untouch {
    pointer-events: none;
    width: 100%;
}

.about-container .about-background iframe {
    display: block;
}

.about-container .about-background img {
    border-radius: 50%;
    max-width: 100%;
}

.about-container .about-left {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-dark);
    border-right: none;
}

.about-container .about-left .about-left-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 3rem;
}

.about-container .about-left .about-left-wrapper h3 {
    font-weight: bold;
    font-size: var(--size-h5);
    color: var(--color-dark);
}

.about-container .about-left .about-left-wrapper .about-subtitle {
    color: var(--color-dark);
    font-weight: 100;
    font-size: var(--size-h1);
    letter-spacing: 0.5rem;
    max-width: 40%;
    margin-bottom: var(--space-double);
}

.about-container .about-left .about-left-wrapper .about-text {
    color: #707070;
    font-weight: 100;
    line-height: 1.72;
    max-width: 70%;
}

.about-container .about-left .about-left-wrapper .about-button {
    margin-top: var(--space-double);
}

@media only screen and (max-width: 1199px) {
    .about-container .about-left .about-left-wrapper .about-subtitle {
        font-size: 2rem;
        letter-spacing: 4px;
        max-width: 80%;
        margin-bottom: var(--space-double);
    }

    .about-container .about-left .about-left-wrapper .about-text {
        line-height: 1.2;
        max-width: 100%;
        padding-right: var(--space-double);
    }
}

@media only screen and (max-width: 990px) {
    .about-container .about-left .about-left-wrapper {
        padding-left: var(--space-double);
        padding-right: var(--space-double);
    }

    .about-container .about-background {
        padding-right: 0;
        justify-content: center;
    }

    .about-container .about-left {
        border-right: 2px solid var(--background-dark);
    }

    .about-container .about-right {
        border-top: none;
        border-left: 2px solid var(--background-dark);
    }
}

@media only screen and (max-width: 480px) {
    .about-container .about-left .about-left-wrapper .about-subtitle {
        max-width: 100%;
    }

    .about-container .about-left .about-left-wrapper .about-text {
        padding-right: 0;
    }

    .about-container .about-left .about-left-wrapper .about-button a {
        display: inline-block;
    }

    .about-container .about-background {
        padding: var(--space);
    }
}

/* SIMPLE BOX ABOUT US */

/* PRODUCT TABS */

.product-tabs-wrapper {
    position: relative;
}

.product-tabs-wrapper.has-background {
    padding-top: var(--module-vertical-margin);
    padding-bottom: var(--module-vertical-margin);
}

.product-tabs-wrapper .product-tabs-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-tabs-wrapper .product-tabs-carousel-wrapper .swiper-wrapper.has-not-carousel {
    justify-content: space-between;
}

.product-tabs-wrapper .product-tabs-background {
    position: absolute;
    overflow: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.product-tabs-wrapper .product-tabs-carousel-wrapper .swiper-button-next,
.product-tabs-wrapper .product-tabs-carousel-wrapper .swiper-button-prev {
    border-radius: 50%;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
}

.product-tabs-wrapper .product-tabs-carousel-wrapper .swiper-button-next {
    margin-right: var(--space-half);
}

.product-tabs-wrapper .product-tabs-carousel-wrapper .swiper-button-prev {
    margin-left: var(--space-half);
}

.product-tabs-wrapper .tabs-container-flex {
    display: flex;
    flex-wrap: wrap;
}

.product-tabs-wrapper.right-layout .tabs-container-flex {
}

.product-tabs-wrapper .tab-description-wrapper {
    padding: var(--space);
}

.product-tabs-wrapper .product-tabs-tab-wrapper .products-carousel-outter {
    flex: 0 0 100%;
    min-width: 0;
    position: relative;
}

.product-tabs-wrapper .product-tabs-tab-wrapper.has-description .products-carousel-outter {
}

.product-tabs-wrapper .product-tabs-tab-wrapper .products-carousel-outter .products-carousel-inner {
    margin-left: var(--space-half-negative);
    margin-right: var(--space-half-negative);
}

.product-tabs-wrapper .tab-description-content .tab-text {
    font-size: var(--md-size);
}

.product-tabs-wrapper .tab-description-content .more-container {
    display: flex;
    margin-top: var(--space-double);
}

.product-tabs-wrapper .swiper-pagination {
    position: relative;
    margin-top: 0;
    bottom: 0;
}

@media only screen and (max-width: 480px) {
    .product-tabs-wrapper .product-tabs-carousel-wrapper .swiper-button-prev,
    .product-tabs-wrapper .product-tabs-carousel-wrapper .swiper-button-next {
        opacity: 1;
        margin-top: 0;
    }
}

/* PRODUCT TABS COLLECTION */

.collection_tabs {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.collection_tabs .tab-content {
    padding: 1rem 0;
}

.collection_tabs .module-title {
    margin-bottom: 2rem;
    text-align: center;
    font-size: var(--size-h4);
}

.collection_tabs .nav-tabs {
    border: 0;
    display: flex;
    justify-content: center;
}

.collection_tabs .nav-tabs .nav-item {
    padding-right: var(--space-half);
    text-align: center;
}

.collection_tabs .nav-tabs .nav-item:last-child {
    padding-right: 0;
}

.collection_tabs .nav-tabs .nav-item .nav-link {
    border: 1px solid var(--color-dark);
    border-radius: 0;
    font-size: 0.75rem;
    letter-spacing: 0.125rem;
    justify-content: center;
    padding: 0.75rem var(--space);
    font-weight: normal;
    margin: 0;
    min-width: 16rem;
    text-transform: uppercase;
}

.collection_tabs .nav-tabs .nav-item .nav-link.active {
    background: var(--color-dark);
    color: var(--bs-white);
}

.swiper-button-next,
.swiper-button-prev {
    --swiper-navigation-color: #000000;
    --swiper-navigation-size: 1.25rem;
}

/* PRODUCT TABS COLLECTION */
@media only screen and (max-width: 1192px) {
    .collection_tabs .nav-tabs .nav-item {
        flex: 0 0 auto;
    }
}

@media only screen and (max-width: 992px) {
    .product-tabs-wrapper .tab-description-wrapper {
        flex: 0 0 100%;
        width: 100%;
        padding: 0;
        text-align: center;
        margin-bottom: var(--space-double);
    }

    .product-tabs-wrapper .product-tabs-tab-wrapper.has-description .products-carousel-outter {
        flex: 0 0 100%;
        width: 100%;
        padding-left: 0;
    }

    .product-tabs-wrapper .tab-description-content .more-container {
        justify-content: center;
    }
}

@media only screen and (max-width: 768px) {
    .collection_tabs .nav-tabs {
        display: flex;
        transform: none;
        flex-wrap: nowrap;
        overflow-x: scroll;
        justify-content: left;
        background: var(--background-dark);
    }

    .collection_tabs .nav-tabs .nav-item .nav-link,
    .collection_tabs .nav-tabs .nav-item .nav-link.active {
        background-color: transparent;
        color: var(--text-color);
    }
}

/* PRODUCT TABS */

/* COOKIES */
#cookieWrap {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 270px;
    box-sizing: border-box;
    padding: 20px 20px;
    background-color: var(--background-dark);
    z-index: 100;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
    opacity: 0.9;
}

#cookieWrap p {
    line-height: 17px;
    margin: 0 0 20px;
}

#cookieWrap #cookieAcceptButton {
    border: 1px solid #fff;
    background: none no-repeat 0 0 transparent;
    color: #fff;
    float: left;
    text-align: center;
    width: 96px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: 300ms ease-in-out;
    -webkit-transition: 300ms ease-in-out;
    -moz-transition: 300ms ease-in-out;
    -ms-transition: 300ms ease-in-out;
    -o-transition: 300ms ease-in-out;
}

#cookieWrap #cookieAcceptButton:hover {
    border: 1px solid var(--link-color-hover);
    color: var(--link-color-hover);
}

#cookieWrap #cookieReadMore {
    float: right;
    color: #fff;
    font-size: 12px;
    line-height: 24px;
    text-decoration: underline;
}

#cookieWrap #cookieReadMore:hover {
    color: var(--link-color-hover);
}

@media only screen and (max-width: 768px) {
    .footer-wrap .column-5 {
        max-width: 33.33%;
        flex: 0 0 33.33%;
    }

    .footer-wrap .column-5:nth-child(4),
    .footer-wrap .column-5:nth-child(5) {
        max-width: 50%;
        flex: 0 0 50%;
        margin: var(--space-double) auto 0 auto;
    }

    .espa-banner {
        bottom: 0;
        left: 0;
    }
}

@media only screen and (max-width: 567px) {
    .copyright .row {
        flex-direction: column;
        text-align: center;
    }

    .copyright .cards {
        margin: var(--space) 0;
    }

    .copyright .dev {
        justify-content: center;
    }
}

@media only screen and (max-width: 480px) {
    .footer-wrap .column-5 {
        max-width: 50%;
        flex: 0 0 50%;
        margin: var(--space-double) auto 0 auto;
    }

    .footer-wrap .column-5:nth-child(5) {
        max-width: 100%;
        flex: 0 0 100%;
        display: none;
    }

    .socials.mobile {
        display: flex;
        background-color: var(--background-dark);
        align-items: center;
        padding: var(--space-half);
    }

    .socials.mobile ul {
        display: flex;
        justify-content: space-between;
        padding: 0 var(--space);
        width: 100%;
        margin-bottom: 0;
    }

    .socials.mobile ul li {
        display: flex;
        align-items: center;
    }

    .socials.mobile ul li i {
        margin-right: var(--space-quarter);
        color: var(--text-color);
    }

    .socials.mobile ul li a {
        color: var(--text-color);
    }
}

/* FOOTER */

/* NEWSLETTER */
.newsletter-wrapper {
    margin-top: var(--space-double);
    padding-top: var(--space-double);
    padding-bottom: var(--space-double);
    background-color: #111;
    text-align: center;
}

.newsletter-wrapper .newsletter-inner {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    color: var(--bs-white);
}

.newsletter-wrapper .newsletter-inner a {
    color: var(--bs-white);
    text-decoration: underline;
}

.newsletter-wrapper .newsletter-inner h3 {
    z-index: 2;
    color: var(--bs-white);
    font-weight: bold;
    font-size: var(--size-h3);
    letter-spacing: 0.25rem;
    margin-bottom: var(--space);
}

.newsletter-wrapper .newsletter-inner .newsletter-intro {
    z-index: 2;
    color: var(--bs-white);
    font-weight: 300;
    font-size: var(--size);
    margin-bottom: var(--space-double);
}

.newsletter-wrapper .newsletter-inner .newsletter_form {
    z-index: 2;
    max-width: 50rem;
    width: 100%;
    margin: auto;
}

.newsletter-wrapper .newsletter-inner .newsletter_form input#subscribe-email {
    height: 45px;
    text-align: center;
    border: none;
    box-shadow: none;
}

.newsletter-wrapper .newsletter-inner .newsletter_form input#subscribe-email::placeholder {
    color: #707070;
    font-size: 0.75rem;
    font-weight: var(--font-weight-light);
}

.newsletter-wrapper .newsletter-inner .newsletter_form input#subscribe-email,
.newsletter-wrapper .newsletter-inner .newsletter_form .newsletter_email {
    width: 100%;
}

.newsletter-wrapper .newsletter-inner .newsletter_button button {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    border-radius: 0;
    letter-spacing: 0.125rem;
}

.newsletter-wrapper .newsletter-inner .newsletter_agree {
    font-weight: 300;
}

/* NEWSLETTER */

/* TESTIMONIALS */

.testimonial-block > em:first-child {
    margin-bottom: 2rem;
}

.testimonial-block .testimonial-comments {
    font-weight: 300;
    line-height: 1.5rem;
}

.testimonial-block .testimonial-comments.testimonial-video iframe {
    width: 100%;
    max-height: 250px;
}

.testimonial-block .testimonial-author {
    font-weight: bold;
    margin-top: 1rem;
}

.testimonial-block > em:last-child {
    margin-top: 2rem;
}

/* TESTIMONIALS */

/* CATEGORY PAGE */
.top-row {
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: var(--space-double);
}

.top-row-wrapper {
    flex-direction: row;
    display: flex;
    align-items: center;
}

.top-row-wrapper .main-content-title {
    font-size: var(--size-h2);
    font-weight: 600;
    text-align: left;
    letter-spacing: 4px;
    margin: 0;
    padding-top: var(--space);
    padding-bottom: var(--space);
}

.top-row-wrapper .main-content-text {
    display: none;
}

.top-row-wrapper .main-content-small-text,
.top-row-wrapper .main-content-text {
    font-weight: 300;
    line-height: 1.71;
}

.top-row-wrapper .main-content-button,
.top-row-wrapper .main-content-text {
    margin-bottom: var(--space);
}

.top-row-wrapper .main-content-small-text p,
.top-row-wrapper .main-content-text p {
    margin-bottom: 0;
}

.top-row-wrapper .main-content-button {
    color: var(--color-dark);
    font-weight: bold;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    margin-top: var(--space-half);
}

.top-row-wrapper .main-content-button:hover {
    color: var(--link-color-hover);
}

.top-row-wrapper .main-content-button i {
    margin-left: var(--space-half);
}

#input-sort {
    border: 0;
    border-radius: 0;
    background: #fff;
    text-align: left;
    padding: 1rem 0.75rem;
    font-size: 0.875rem;
    width: 15rem;
    box-shadow: 0 0.5rem 1rem 0.125rem rgb(0 0 0 / 15%);
}

#input-sort li {
    line-height: 1.25rem;
}

#input-sort li a.dropdown-item {
    background: none;
    color: var(--color-dark);
}

#input-sort li a.dropdown-item:hover,
#input-sort li a.dropdown-item.active {
    background: none;
    color: var(--color-dark);
    font-weight: bold;
}

/* PRODUCT LIST BLOCK */

.product-layout .product-block {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    position: relative;
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    transition: 300ms ease-in-out;
    padding: 0;
}

.product-layout .product-block:hover {
    box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.1);
}

.product-layout .product-wishlist.in-wishlist span:before {
    content: "\0045";
    color: var(--link-color-hover);
}

.product-layout .product-wishlist {
    border: none;
    border-radius: 50%;
    padding: 0;
    height: 2.5rem;
    width: 2.5rem;
    border: 1px solid #e1e1e1;
    background: none;
    color: #a0a0a0;
}

.product-layout .product-wishlist.btn.btn-default span {
    font-size: 1.125rem;
    line-height: 2.75rem;
}

.product-layout .product-wishlist.btn.btn-default:focus,
.product-layout .product-wishlist.btn.btn-default:hover {
    background: #f4f4f4;
}

.product-layout .product-wishlist.in-wishlist span:before {
    content: "\0045";
    color: var(--link-color-hover);
}

.product-layout .product-block .product-top {
    margin-bottom: var(--space);
}

/* .product-layout .product-block .product-block-caption {
	text-align: left;
	margin-bottom: var(--space-half);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: flex-start;
	-webkit-justify-content: flex-start;
	align-items: flex-start;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	flex-direction: column;
	width: 100%;
} */

.product-layout .product-block .product-block-caption .product-block-title .product-name {
    margin-bottom: 0;
    font-size: 0.875rem;
    font-weight: 300;
    text-align: start;
}

.product-layout .product-block .product-block-caption .product-intro {
    margin-top: var(--space-half);
}

.product-layout .product-block .product-block-caption .product-block-title .product-name a {
    color: #000;
    font-size: 0.875rem;
    font-weight: 300;
}

/* .product-layout .product-block .product-block-actions {
	margin-top: var(--space);
} */

.product-layout .product-block .product-top .product-block-image {
    position: relative;
}

.product-layout .product-block .product-label {
    font-size: 0.75rem;
    font-weight: 700;
}

.product-layout .product-block .product-top .product-block-image .product-label {
    position: absolute;
    bottom: 0;
    right: 1rem;
    pointer-events: none;
}

.product-layout .product-block .product-top .product-block-image .product-label.product-label-new {
    right: unset;
    left: 1rem;
}

.product-layout .product-block .product-top .product-block-image .product-thumbnail {
}

.product-layout .product-block .product-top .product-block-image .product-thumbnail img {
    width: 100%;
}

.product-layout .product-block .product-block-actions a + a {
    margin-left: var(--space-half);
}

.product-layout .product-block .product-wishlist {
    opacity: 0;
    transition: 300ms ease-in-out;
    text-align: center;
}

.product-layout .product-block .product-wishlist i {
    height: 2.5rem;
    font-size: 1rem;
    line-height: 2.5rem;
}

.product-layout .product-block:hover {
    box-shadow: 0px 3px 25px 0px rgba(0, 0, 0, 0.1);
}

.product-block:hover .product-wishlist,
.product-layout .product-block.wished .product-wishlist,
.product-block:hover .product-block-actions .product-cart {
    opacity: 1;
    z-index: 5;
}

.product-layout .product-block.wished .product-wishlist i {
    color: var(--bs-danger);
    font-weight: 900;
}

.product-sizes label.radio {
    cursor: pointer;
}

.product-sizes label.radio input {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    pointer-events: none;
}

.product-sizes label.radio input + span {
    height: 100%;
    display: grid;
    place-items: center;
    padding: 0.2rem;
}

.product-sizes label.radio input:checked + span {
    background: black;
    color: white;
    height: 100%;
    display: grid;
    place-items: center;
}

.product-sizes input[type="radio"]:checked,
.product-sizes input[type="checkbox"]:checked {
    background: red;
}

.option-row input[type="radio"] 
.option-row input[type="checkbox"] {
    border-radius: 3px;
}
.option-row input[type="radio"] + label,
.option-row input[type="checkbox"] + label {
    cursor: pointer;
}
.option-row input[type="radio"]:checked + label,
.option-row input[type="checkbox"]:checked + label {
    background: #0B2675;
    color: white;
}

@media only screen and (max-width: 768px) {
    .product-layout .product-block .product-block-caption .product-block-title .product-name {
        max-width: 100%;
    }

    .product-layout .product-block .product-block-price {
        width: 100%;
        padding-left: 15px;
    }

    .product-layout .product-block:hover {
        box-shadow: none;
    }

    .product-layout .product-block .product-wishlist,
    .product-layout .product-block .product-block-actions .product-cart {
        opacity: 1;
        z-index: 5;
    }
}

/* HO FILTERS */

.ho-filters-wrapper .filter-clear-all,
.ho-filters-wrapper .selected-filters-wrapper,
.ho-filters-wrapper .filters-responsive-top,
.ho-filters-wrapper .filters-responsive-bottom {
    display: none;
}

.ho-filters-wrapper .price-range-group .form-control {
    font-size: 0.875rem;
    line-height: 2.25rem;
    height: 2.5rem;
    padding: 0 0.5rem;
    min-height: unset;
    margin-bottom: 0.5rem;
}

.ho-filters-wrapper.filter-style-vertical-list .filter-group-container {
    margin-bottom: var(--space);
}

.ho-filters-wrapper.filter-style-vertical-list .filter-group-container .filter-group-title-container {
    position: relative;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.5rem;
}

.ho-filters-wrapper.filter-style-vertical-list .filter-group-container .filter-group-title-container:after {
    content: none;
    background-color: var(--color-dark);
    width: 3rem;
    height: 1px;
    display: block;
    margin-top: 0.5rem;
    position: absolute;
    left: 0;
    bottom: 0;
}

.ho-filters-wrapper.filter-style-vertical-list .filter-group-container .filter-group-filters-container {
    border-bottom: 0;
}

.ho-filters-wrapper.filter-style-vertical-list .filter-group-container .filter-group-title-container .filter-group-title {
    font-size: 1rem;
    font-weight: bold;
    color: var(--color-dark);
}

.ho-filters-wrapper.filter-style-vertical-list .filter-group-container .filter-group-title-container .filter-group-clear {
    font-size: 0.875rem;
    color: black;
    cursor: pointer;
    margin-left: 0.5rem;
}

.ho-filters-wrapper.filter-style-vertical-list .filter-group-container .filter-group-title-container .filter-group-clear:hover {
    text-decoration: underline;
}

.ho-filters-wrapper.filter-style-vertical-list .filter-group-container .filter-group-title-container .filter-group-clear i {
    display: none;
}

.ho-filters-wrapper.filter-style-vertical-list .filter-group-container .filter-group-title-container .filter-group-clear a {
    font-size: 0.875rem;
    color: var(--blue);
}

.ho-filters-wrapper .filter-group-filters-container .form-check-main-title {
    font-size: 1rem;
    font-weight: bold;
}

.ho-filters-wrapper .filter-group-filters-container .form-check + .form-check-main-title {
    margin-top: 1rem;
}

.ho-filters-wrapper .filter-group-filters-container .form-check {
    line-height: 1.125rem;
}

.ho-filters-wrapper .filter-group-filters-container .form-check .form-check-label {
    display: flex;
    align-items: center;
    flex-direction: row;
    cursor: pointer;
}

.ho-filters-wrapper .filter-group-filters-container .form-check .form-check-label.disabled {
    pointer-events: none;
    opacity: 0.4;
    cursor: not-allowed;
    color: #bbb;
}

.ho-filters-wrapper .filter-group-filters-container .form-check .form-check-input {
    border-radius: 0;
    margin-top: 0;
    appearance: none;
    -webkit-appearance: none;
    background-color: #f1f1f1;
    border: 1px solid #e1e1e1;
    border-radius: 0;
    position: relative;
    width: 1rem;
    height: 1rem;
    position: relative;
}

.ho-filters-wrapper .filter-group-filters-container .form-check .form-check-input:hover {
    background-color: #fff;
}

.ho-filters-wrapper .filter-group-filters-container .form-check .form-check-input:checked:after {
    background-color: var(--color-dark);
    width: 0.625rem;
    height: 0.625rem;
    position: absolute;
    top: 0.125rem;
    left: 0.125rem;
    content: "";
}

.ho-filters-wrapper .filter-group-filters-container .form-check .form-check-title {
    font-size: 0.875rem;
    line-height: 1rem;
    color: var(--color-dark);
    margin-left: 0.375rem;
    margin-top: 0.125rem;
    text-transform: lowercase;
}

.ho-filters-wrapper .filter-group-filters-container .form-check .form-check-title:first-letter {
    text-transform: uppercase;
}

.ho-filters-wrapper .filter-group-filters-container .form-check .form-check-count {
    font-size: 0.75rem;
    margin-left: var(--space-half);
    line-height: 1rem;
    margin-top: 0.125rem;
}

.filter-group-container.gfilter.gf1 .form-check.filter-with-image {
    display: block;
}

.ho-filters-wrapper .filter-group-filters-container.has-image .form-check-image-block {
    padding: 0;
    border: solid 1px #e1e1e1;
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
    display: block;
}

.ho-filters-wrapper .filter-group-filters-container.has-image .form-check-image-block img {
    max-width: 100%;
    border: 0;
    display: block;
}

.ho-filters-wrapper .filter-group-filters-container .form-check :checked + .form-check-image-block {
    background: none;
    border: 0;
}

.ho-filters-wrapper .filter-group-filters-container .form-check :checked + .form-check-image-block:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.75rem;
    text-align: center;
    width: 1rem;
    height: 1rem;
    line-height: 1rem;
    pointer-events: none;
    color: #fff;
    mix-blend-mode: difference;
}

.ho-filters-wrapper .filter-group-filters-container .form-check :checked ~ .form-check-title {
    font-weight: bold;
}

#ajax-wrapper,
.filters-wrapper {
    -webkit-transition: 0.2s opacity linear;
    transition: 0.2s opacity linear;
}

#ajax-wrapper.loading,
.filters-wrapper.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* CATEGORY */

#product-category .product-container .product-layout.col-3 {
    flex: 0 0 auto;
    width: 33.33%;
}

#product-category .product-container .product-layout.col-4 {
    flex: 0 0 auto;
    width: 33.33%;
}
@media only screen and (max-width: 1200px) {
    #product-category .product-container .product-layout.col-3 {
        flex: 0 0 auto;
        width: 33.33%;
    }
    #product-category .product-container .product-layout.col-4 {
        flex: 0 0 auto;
        width: 50%;
    }
}
@media only screen and (max-width: 620px) {
    #product-category .product-container .product-layout.col-3 {
        flex: 0 0 auto;
        width: 50%;
    }
}

#product-category aside#column-left {
    flex: 0 0 auto;
    width: 20%;
}

#product-category #content.category {
    flex: 0 0 auto;
    width: 80%;
}
@media only screen and (max-width: 991px) {
    #product-category #content {
        width: 100%;
    }
    .ho-filters-wrapper.filter-style-vertical-list .filter-group-container .filter-group-title-container {
        margin-bottom: 0 !important;
    }
}

/* CHECKOUT CART */

#checkout-cart #content > h1 {
    font-size: 1.75rem;
    margin: 0;
    padding: 3rem 0 2rem 0;
}

#checkout-cart #content .top-btns {
    margin-bottom: 1rem;
}

/* HIDDEN FOR DEV */
.top-toolbar,
.gprice_range {
    display: none;
}

/* SELECT BOX */

.custom-selectbox {
    position: relative;
    width: 100%;
}

.custom-selectbox select {
    display: none;
}

.custom-selectbox .select-selected {
    background-color: #ffffff;
}

.custom-selectbox .select-selected:after {
    position: absolute;
    content: "";
    top: 1.375rem;
    right: 0.625rem;
    width: 0;
    height: 0;
    border: 0.1875rem solid transparent;
    border-color: var(--color-dark) transparent transparent transparent;
}

.custom-selectbox .select-selected.select-arrow-active:after {
    border-color: transparent transparent var(--color-dark) transparent;
    top: 1.125rem;
}

.custom-selectbox .select-items div,
.custom-selectbox .select-selected {
    color: var(--color-dark);
    padding: 0.5rem 1rem;
    line-height: 1.5rem;
    border: 1px solid #eaeaea;
    cursor: pointer;
    font-size: 0.8125rem;
    white-space: nowrap;
}

.has-error .custom-selectbox .select-selected {
    border-color: var(--bs-danger);
}

.custom-selectbox .select-items div {
    border-color: transparent;
    padding: 0 0;
    position: relative;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.custom-selectbox .select-items div span {
    position: relative;
    pointer-events: none;
}

.custom-selectbox .select-items div span.text,
.custom-selectbox .select-items div span.action {
    font-size: 0.625rem;
}

.custom-selectbox .select-items div span.action {
    text-decoration: underline;
}

.custom-selectbox .select-items div:last-child {
    margin-bottom: 0;
}

.custom-selectbox .select-items div span.option.disable {
    opacity: 0.6;
}

.custom-selectbox .select-items div span.option:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: var(--color-dark);
    opacity: 0.6;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    transform: scaleX(0);
    transform-origin: left;
    transition-delay: 0s;
}

.custom-selectbox .select-items div:hover span.option:after,
.custom-selectbox div.same-as-selected span.option:after {
    transform: scaleX(1);
}

.custom-selectbox .select-items div:hover span.option.disable:after {
    transform: scaleX(0);
}

.custom-selectbox .select-items {
    position: absolute;
    background-color: #ffffff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border: 1px solid #eaeaea;
    border-width: 0 1px 1px 1px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0.4375rem 0.875rem;
    max-height: 12rem;
    overflow: auto;
}

.custom-selectbox .select-hide {
    display: none;
}

.has-error .invalid-feedback {
    /* display: block; */
}

/* PRODUCT PAGE */

#product-product {
    margin-top: 2rem;
}

#product-product .product-gallery {
    position: relative;
}

#product-product .badge {
    font-size: 0.75rem;
    min-width: 6rem;
    line-height: 1.25rem;
    padding: 0.3125rem 0.75rem;
    border-radius: 0;
}

#product-product .badge.badge-sale {
    border: solid 1px var(--color-dark);
    color: var(--color-dark);
}

#product-product .manufacturer_info {
    margin-bottom: 1rem;
}

#product-product .product-info_wrap h1 {
    font-size: var(--size-h2);
    font-weight: bold;
    line-height: 2.125rem;
    margin-bottom: 1.5rem;
}

#product-product .product-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    line-height: 1.5rem;
    font-weight: 300;
    color: #a0a0a0;
    margin-bottom: 0.5rem;
}

#product-product .product-meta .meta-origin {
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}

#product-product .product-meta .meta-origin img {
    width: 2rem;
    height: 2rem;
    border: solid 2px #f4f4f4;
    border-radius: 50%;
}

#product-product .product-meta .meta-origin span {
    display: block;
    margin-left: 0.5rem;
}

#product-product .product-meta .meta-stock {
    margin-left: 1rem;
    margin-right: auto;
    border-left: solid 1px #a0a0a0;
    padding-left: 1rem;
}

#product-product .product-meta .meta-rating {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#product-product .product-meta .meta-rating div {
    display: flex;
    flex-direction: row;
    line-height: 1rem;
}

#product-product .product-meta .meta-rating div i + i {
    margin-left: 0.25rem;
}

#product-product .product-meta .meta-rating a {
    font-size: 0.625rem;
}

#product-product .product-details {
    margin-bottom: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eaeaea;
}

#product-product .product-details ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.8125rem;
    font-weight: 300;
}

#product-product .product-details li:before {
    content: "■";
    font-size: 0.625rem;
    font-weight: 400;
    display: inline-block;
    width: 0.75rem;
    text-align: center;
    margin-right: 0.5rem;
}

#product-product .product-details li.text-success:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f00c";
}

#product-product .product-details li.danger:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f00d";
}

#product-product .product-price {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

#product-product .product-price .price-new {
    font-size: 1.875rem;
    color: #d12128;
}

#product-product .product-price .price-old {
    font-size: 1rem;
    font-weight: 300;
    color: #acacac;
    text-decoration: line-through;
}

#product-product .product-price span + span {
    margin-left: 0.75rem;
}

#product-product .product-price .limited-offer {
    color: #d12128;
    margin-left: 1rem;
    font-weight: 300;
}

#product-product .select_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#product-product .select_wrap > label {
    width: 50%;
}

#product-product .select_wrap > .btn-size_chart {
    width: 50%;
    text-align: right;
    color: var(--bs-gray);
    text-decoration: underline;
}

#product-product .size-guide-table {
    display: table;
    white-space: nowrap;
    border-collapse: collapse;
    overflow-x: auto;
    width: 100%;
}

#product-product .size-guide-table__column-head {
    padding: 0.5rem 0 1.5rem 0;
    text-align: center;
    width: 2rem;
}

#product-product .size-guide-table__row {
    border-bottom: 1px solid #eaeaea;
}

#product-product .size-guide-table__column-head:first-child {
    padding-left: 0;
    text-align: left;
}

#product-product .size-guide-table__column-body:first-child {
    padding-left: 0;
    text-align: left;
}

#product-product .size-guide-table__column-body {
    padding: 1.5rem 0;
    text-align: center;
    width: 2rem;
}

#product-product .product-color_related {
    margin: 1rem 0;
}

#product-product .product-color_related h3 {
    font-size: 0.875rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

#product-product .product-color_related .color_related-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#product-product .product-color_related .color_related-wrap .color_related-item {
    opacity: 0.7;
}

#product-product .product-color_related .color_related-wrap .color_related-item.active {
    opacity: 1;
}
#product-product .product-color_related .color_related-wrap .color_related-item.active .color_related-image{
    border-color: #0B2675;
}

#product-product .product-color_related .color_related-wrap .color_related-item .color_related-image {
    border: 1px solid #eaeaea;
    padding: 0.125rem;
    overflow: hidden;
}

#product-product .product-color_related .color_related-wrap .color_related-item:hover .color_related-image {
    border-color: #777;
}

#product-product .product-color_related .color_related-wrap .color_related-item img {
    max-width: 4rem;
}

#product-product .product-color_related .color_related-wrap .color_related-item h4 {
    font-size: 0.75rem;
    text-align: center;
    margin-top: 0.25rem;
}

#product-product .product-btn .btn {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.125rem;
    border-radius: 0;
}

#product-product .product-btn .btn#button-cart {
    color: #fff;
    background-color: #303030;
    border-color: #303030;
}

#product-product .product-btn .btn#button-cart.loading {
    opacity: 0.5;
    pointer-events: none;
}

#product-product .product-btn .btn#button-cart:not(.loaded):hover {
    background-color: #000000;
    border-color: #000000;
}

#product-product .product-btn .btn#button-cart:not(.loaded) .text {
    transform: translateX(8px);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    display: inline-block;
}

#product-product .product-btn .btn#button-cart:not(.loaded):hover .text {
    transform: translateX(0);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

#product-product .product-btn .btn#button-cart:not(.loaded) i,
#product-product .product-btn .btn#button-notify:not(.loaded) i {
    opacity: 0;
    display: inline-block;
    transform: translateX(-10px);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 0;
    font-size: 0.75rem;
}

#product-product .product-btn .btn#button-cart:not(.loaded):hover i,
#product-product .product-btn .btn#button-notify:not(.loaded):hover i {
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.15s;
}

#product-product .product-btn .btn.loaded#button-cart {
    pointer-events: none;
}

#product-product .product-btn .btn.loaded#button-cart i {
    display: none;
}

#product-product .product-btn .btn.button_wishlist {
    font-size: 0.625rem;
}

#product-product .product-btn .small-msg {
    font-size: 0.75rem;
    color: var(--bs-gray);
    text-align: center;
    padding: 0 0.5rem;
}

#product-product .options-row .required > label:after {
    content: "*";
    color: var(--bs-red);
    padding-left: 0.125rem;
}

#product-product #product-info {
    margin-top: 2rem;
    font-size: 0.875rem;
}

#product-product #product-info .accordion-header {
    font-size: 0.875rem;
}

#product-product #product-info .accordion-header .accordion-button {
    font-size: 0.875rem;
    font-weight: bold;
    padding: 0.75rem 0.25rem;
    border-color: transparent;
    box-shadow: none;
}

#product-product #product-info .accordion-header .accordion-button:not(.collapsed) {
    background: none;
    color: var(--color-dark);
}

#product-product #product-info .accordion-header .accordion-button::after {
    background-size: 0.75rem;
    background-position: center;
}

#product-product #product-info .accordion-body {
    padding: 0.75rem 0.25rem;
    font-size: 0.875rem;
    font-weight: 300;
}

#product-product #product-info .accordion-body b {
    font-weight: bold;
}

.product_product a[data-fancybox] img {
    cursor: zoom-in;
}

.product_product .fancybox__container {
    --fancybox-color: #999;
    --fancybox-bg: #fff;
    --carousel-button-svg-width: 2rem;
    --carousel-button-svg-height: 2rem;
    --carousel-button-svg-stroke-width: 1.2;
    --carousel-button-svg-filter: none;
}

.product_product .fancybox__nav {
    --carousel-button-svg-width: 2.25rem;
    --carousel-button-svg-height: 2.25rem;
    --carousel-button-svg-stroke-width: 1;
}

.product_product .has-image[data-image-fit="contain-w"] {
    padding: 0;
    overflow: hidden;
}

#addCartModal.modal.fade .modal-dialog {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
    transform: translate(0, 50px);
    margin-top: 0;
    margin-bottom: 0;
}

#addCartModal.modal.fade.show .modal-dialog {
    transform: none;
}

#addCartModal .modal-content {
    padding: 1rem;
}

#addCartModal .modal-content .add-image {
    width: 8rem;
}

#addCartModal .modal-content .add-text {
    width: calc(100% - 8rem);
    display: flex;
    justify-content: space-between;
}

#addCartModal .modal-content .btn-close {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    z-index: 11;
}

#addCartModal .modal-content h6 {
    font-size: 1rem;
    font-weight: 300;
    margin: 0 0 0.25rem 0;
}

#addCartModal .modal-content h4 {
    font-size: 1.25rem;
    font-weight: bold;
}

#addCartModal .modal-body {
    padding-bottom: 0;
}

#product-product #countdown > span {
    color: #d12128;
    font-size: 18px;
    font-weight: 700;
}

#product-product #countdown > span label {
    color: #ccc;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
}

#product-product .call-fashion-expert a {
    background-color: #d88bc7;
    border-color: #d88bc7;
    font-weight: 600;
    letter-spacing: 0.5px;
}

#product-product .call-fashion-expert a:hover {
    color: #fff;
    background-color: #303030;
}

#product-product .call-fashion-expert a span:nth-child(2) {
    letter-spacing: 2px;
}

#product-product #slideshow_related .swiper-wrapper,
#product-product #slideshow_recent .swiper-wrapper {
    display: flex;
    justify-content: flex-start;
}

/* OFF CANVAS CART */

#offcanvasCart .offcanvas-header {
    background-color: var(--color-dark);
    color: var(--bs-white);
    padding: 0.7rem 1rem;
}

#offcanvasCart .offcanvas-header h5 {
    font-size: 1rem;
}

#offcanvasCart .offcanvas-header .fa-shopping-cart {
    font-size: 1.125rem;
}

#offcanvasCart .offcanvas-header .btn-close {
    color: var(--bs-white) !important;
    opacity: 1;
    margin: 0;
    padding: 0;
    font-size: 0.75rem;
    line-height: 1.75rem;
    height: 1.75rem;
    width: 1.75rem;
    background-image: none;
    background-color: var(--bs-gray-800);
    border-radius: 50%;
}

#offcanvasCart .offcanvas-header .btn-close:hover {
    color: var(--bs-dark) !important;
    background-color: var(--bs-gray-200);
}

#offcanvasCart .offcanvas-header .btn-close:before {
    content: "\f104";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 0.75rem;
    line-height: 1.75rem;
}

#offcanvasCart .offcanvas-body {
    display: flex;
}

#offcanvasCart .offcanvas-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

#offcanvasCart .offcanvas-empty {
    margin: auto !important;
    text-align: center;
}

#offcanvasCart .offcanvas-empty:before {
    content: "\f656";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

#offcanvasCart .cart_item {
    font-size: 0.8125rem;
    line-height: 1.125rem;
    border-bottom: solid 1px var(--border-color);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

#offcanvasCart .cart_item:last-child {
    margin-bottom: 0;
    border: 0;
}

#offcanvasCart .cart_item-image {
}

#offcanvasCart .cart_item-info {
    margin-bottom: 1rem;
    position: relative;
}

#offcanvasCart .cart_item-info h4 {
    font-size: 0.8125rem;
    font-weight: bold;
    line-height: 1.125rem;
    margin: 0;
    padding-right: 1.5rem;
}

#offcanvasCart .cart_item-total {
    line-height: 1.25rem;
}

#offcanvasCart .cart_item-total .cart_item-qnt {
    margin-right: 0.25rem;
    color: var(--bs-gray-600);
}

#offcanvasCart .cart_item-total .cart_item-price {
    margin-right: 1rem;
    color: var(--bs-gray-600);
}

#offcanvasCart .cart_item-total .cart_item-sum {
    font-size: 0.9375rem;
    font-weight: bold;
}

#offcanvasCart .cart_total {
    font-size: 1.125rem;
    line-height: 1.75rem;
    padding: 0.5rem 0;
    white-space: nowrap;
}

#offcanvasCart .cart_total .cart_total-title {
    font-size: 0.875rem;
}

#offcanvasCart .cart_total .cart_total-text {
    font-size: 1.125rem;
    color: #707070;
}

#offcanvasCart .cart_total.sum_total {
    font-size: 1.125rem;
}

#offcanvasCart .cart_total.sum_total .cart_total-text {
    font-size: 1.25rem;
    color: var(--text-dark);
}

#offcanvasCart .cart_total:nth-child(2n + 1) {
    background-color: #f4f4f4;
}

#offcanvasCart .offcanvas-up {
    overflow: auto;
    padding-top: calc(0.75rem / 2);
    padding-left: calc(0.75rem / 2);
    padding-right: calc(0.75rem / 2);
}

#offcanvasCart .offcanvas-wrap .row {
    margin-right: calc(0.75rem / -2);
    margin-left: calc(0.75rem / -2);
}

#offcanvasCart .offcanvas-down {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-bottom: 0.75rem;
}

/* MANUFACTURER LIST */

.brand_list-block .brand_list-link {
    display: block;
    position: relative;
}

.brand_list-block .brand_list-img {
    margin-bottom: var(--space);
    padding: 2rem;
    transition: all 0.2s linear;
}

.brand_list-block .brand_list-text {
    border-top: 1px solid #e1e1e1;
    padding-top: 0.5rem;
}

.brand_list-block .brand_list-text h2 {
    font-size: 1rem;
    letter-spacing: 0.125rem;
}

.brand_list-block .brand_list-badge {
    position: absolute;
    left: 0rem;
    top: 0rem;
    pointer-events: none;
    border: solid 1px var(--color-dark);
    background-color: var(--bs-white);
    color: var(--color-dark);
    font-size: 0.75rem;
    min-width: 6rem;
    line-height: 1.25rem;
    padding: 0.125rem 0.75rem;
    border-radius: 0;
}

.brand_list-block:hover .brand_list-img {
    padding: 1rem;
}

/* THANKYOU PAGE */
.thankyou-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.thankyou-heading .order-heading {
    background: #28aae2;
}

.thankyou-content .order-heading {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: var(--bs-gray-100);
    color: #fff;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    text-align: center;
    line-height: normal;
    color: var(--color-dark);
    font-weight: 600;
}

.thankyou-wrap .product-row-flex {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: solid 2px rgba(0, 0, 0, 0.1);
}

.thankyou-wrap .td-name {
    padding-left: 1rem;
    padding-right: 1rem;
    font-weight: bold;
    font-size: 14px;
    flex: 1;
    text-align: left;
    padding: 0;
}

.thankyou-wrap .td-quantity {
    flex: 0 0 30%;
    max-width: 30%;
    text-align: center;
    font-size: 14px;
    letter-spacing: 2px;
}

.thankyou-wrap .td-image {
    flex: 0 0 150px;
    max-width: 150px;
}

.thankyou-wrap .td-image img {
    width: 100px;
    height: auto;
}

.thankyou-wrap .table-products-flex {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.thankyou-wrap .product-row-flex:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.thankyou-wrap .td-total {
    font-weight: bold;
    font-size: 16px;
    flex: 1;
    text-align: right;
}

.thankyou-wrap .order-details-flex {
    display: flex;
    flex-direction: row;
}

.thankyou-wrap .order-address-flex {
    flex: 1;
    background: var(--bs-gray-100);
    padding: 2rem 1.5rem;
}

.thankyou-wrap ul.order-details-ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.thankyou-wrap .order-success-text-bottom {
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    padding: 2rem 0;
}

.thankyou-wrap ul.order-details-ul > li {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #707070;
    text-align: left;
}

.thankyou-wrap ul.order-details-ul > li span {
    font-weight: bold;
    color: #111;
}

.thankyou-wrap .order-address-flex h4 {
    font-size: 1rem;
    font-weight: 800;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.thankyou-wrap .thankyou-heading {
    margin-bottom: 3rem;
    text-align: center;
    margin-top: 2rem;
}

.thankyou-wrap .thankyou-heading h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #111;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.thankyou-wrap .thankyou-heading .heading-msg {
    font-size: 1rem;
    font-weight: normal;
    text-align: center;
    margin: 0;
    padding: 0;
}

.thankyou-wrap .thankyou-heading .heading-msg a:hover {
    text-decoration: underline;
}

.thankyou-wrap .order-register-flex {
    flex: 1;
    background: #f8f8f8;
    padding: 2rem;
    max-width: 35%;
    flex: 0 0 35%;
    margin-left: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thankyou-wrap .order-register-info {
    text-align: center;
    font-size: 16px;
    margin-bottom: 2rem;
    line-height: 1.5rem;
    font-weight: bold;
}

.thankyou-wrap .order-register-buttons {
    width: 100%;
}

.thankyou-wrap .wrap-td {
    display: flex;
    margin-top: 1rem;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    align-items: flex-end;
}

.thankyou-wrap .wrap-td-variables {
    display: flex;
    flex: 1;
    align-items: flex-end;
    justify-content: space-between;
}

.thankyou-wrap .wrap-tds {
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
    width: 100%;
}

.thankyou-wrap .wrap-td-label {
    font-size: 10px;
    color: #808080;
    white-space: nowrap;
}

.thankyou-wrap .wrap-td-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.thankyou-wrap .wrap-td-block + .wrap-td-block {
    padding-left: 2rem;
}

.thankyou-wrap .wrap-td-value {
    font-size: 13px;
    color: #111;
    font-weight: 600;
}

.thankyou-wrap .order-register-buttons a.btn.btn-primary {
    background: #111;
    font-size: 13px;
    color: #fff;
    border: none;
    border-radius: 40px;
    height: 50px;
    min-height: 50px;
    letter-spacing: 1px;
}

.thankyou-wrap .order-register-buttons a.btn.btn-primary:hover,
.order-register-buttons a.btn.btn-primary:active,
.order-register-buttons a.btn.btn-primary:focus {
    background: var(--color-dark);
}

.thankyou-wrap .thankyou-heading .heading-icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    background: var(--color-dark);
    color: var(--bs-white);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.thankyou-wrap .thankyou-heading .heading-icon i {
    font-size: 2.5rem;
    position: relative;
    top: 2px;
}

.thankyou-wrap .order-success-text-bottom {
    font-size: 13px;
    color: #111;
    font-weight: 600;
}

.thankyou-wrap .order-success-text-bottom i {
    color: var(--color-dark);
}

/* THANKYOU PAGE */

/* RESPONSIVE */
@media only screen and (max-width: 992px) {
    /* DISABLE FOR DEVELOPMENT */
    .m_header-top {
        display: none;
    }

    :root {
        --header-height: 4rem;
    }

    /* HEADER */
    .m_header-trigger {
        /* padding: 0.5rem 0; */
        display: flex;
        background: #fff;
        align-items: center;
    }

    .m_header-trigger .btn-m_trigger {
        padding: 0 0.5rem;
        display: block;
        width: 1.625rem;
        height: 1rem;
        position: relative;
        outline: none;
        box-shadow: none;
    }

    .m_header-trigger .btn-m_trigger span {
        border-radius: 0;
        height: 2px;

        bottom: unset;
        display: block;
        background-color: #000;
        position: absolute;
        left: 0;
    }

    .m_header-trigger .btn-m_trigger span:nth-of-type(1) {
        top: -1px;
        width: 100%;
    }

    .m_header-trigger .btn-m_trigger span:nth-of-type(2) {
        top: calc(50% - 1px);
        width: 85%;
    }

    .m_header-trigger .btn-m_trigger span:nth-of-type(3) {
        top: calc(100% - 1px);
        width: 70%;
    }

    .m_header-logo {
        padding-left: 0;
    }

    .m_header-icons {
        flex-direction: row-reverse;
        display: flex;
    }

    .m_header-icons > a {
        font-size: 1.25rem;
    }

    .m_header-icons > a + a {
        padding-right: 1rem;
    }

    #mmenu {
        border: 0;
    }

    #mmenu .offcanvas-header {
        background-color: var(--color-dark);
        color: var(--bs-white);
        padding: 0.7rem 1rem;
    }

    #mmenu .offcanvas-header h5 {
        font-size: 1rem;
    }

    #mmenu .offcanvas-header .fa-shopping-cart {
        font-size: 1.125rem;
    }

    #mmenu .offcanvas-header .btn-close {
        color: var(--bs-white) !important;
        opacity: 1;
        margin: 0;
        padding: 0;
        font-size: 0.75rem;
        line-height: 1.75rem;
        height: 1.75rem;
        width: 1.75rem;
        background-image: none;
        background-color: var(--bs-gray-800);
        border-radius: 50%;
    }

    #mmenu .offcanvas-header .btn-close:hover {
        color: var(--bs-dark) !important;
        background-color: var(--bs-gray-200);
    }

    #mmenu .offcanvas-header .btn-close:before {
        content: "\f00d";
        font-family: "Font Awesome 5 Pro";
        font-weight: 300;
        font-size: 0.75rem;
        line-height: 1.75rem;
    }

    #mmenu {
        font-size: var(--size);
    }

    #mmenu nav {
    }

    #mmenu nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    #mmenu nav ul.dropdown-menu {
        position: static;
        min-width: unset;
        font-size: var(--size);
        border: 0;
        border-radius: 0;
        color: var(--color-dark);
        border-top: 1px solid #ddd;
    }

    #mmenu nav ul > li {
        display: flex;
        border-bottom: 1px solid #ddd;
        flex-wrap: wrap;
    }

    #mmenu nav ul > li:last-child {
        border-bottom: 0;
    }

    #mmenu nav ul > li > a {
        padding: 0 1.25rem;
        line-height: 3.125rem;
        position: relative;
        display: block;
        width: 100%;
    }

    #mmenu nav > ul > li > a.drop-link:after {
        content: "\f107";
        font-size: 1.5rem;
        font-family: "Font Awesome 5 Pro";
        font-weight: 300;
        position: absolute;
        right: 1rem;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        pointer-events: none;
    }

    #mmenu nav > ul > li.parent-active > a.drop-link:after {
        content: "\f106";
    }

    #mmenu nav > ul > li > .drop-link + ul {
        display: none;
    }

    #mmenu nav > ul > li > .drop-link.show + ul {
        display: block;
        width: 100%;
        background-color: #f1f2f4;
    }

    #mmenu nav > ul > li > .drop-link.show + ul > li {
        padding-left: var(--space-half);
    }

    /* CART */
    #offcanvasCart .cart_total {
        line-height: 1.5rem;
    }

    /* FOOTER */
    .footer-wrap {
        padding-top: 0;
        padding-bottom: 2rem;
    }

    .footer-wrap .footer-col {
        flex: 0 0 auto;
        width: 100%;
    }

    .footer-wrap .footer-col:not(:first-child) {
        border-top: 1px solid #e0e0e0;
    }

    .footer-wrap .footer-col h5 {
        margin: 0;
        text-align: left;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        position: relative;
    }

    .footer-wrap .footer-col:not(.socials) h5:before {
        content: "\f107";
        font-family: "Font Awesome 5 Pro";
        font-weight: 300;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: center;
    }

    .footer-wrap .footer-col:not(.socials) h5.show:before {
        content: "\f106";
    }

    .footer-wrap .footer-content {
        display: none;
    }

    /* COPYRIGHT */
    .copyright .copy {
        order: 2;
    }

    .copyright .cards {
        order: 1;
        margin: var(--space-half) 0 var(--space) 0;
    }

    .copyright .dev {
        order: 3;
    }

    /* CHECKOUT */
    .checkout-wrap .checkout-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .card-checkout {
        margin-bottom: 1rem;
    }
}

/* progress bar cart-checkout-success */

.progress-container span {
    color: #a1a1a1;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    text-align: center;
}

.progress-container .active span {
    color: #303030;
}

.progress-container i:before {
    background: #fff;
}

.progress-container .progress-bar {
    background-color: #303030;
}

.progress-container {
    width: 800px;
    max-width: calc(100% - 60px);
    /* margin: 0 auto; */
    padding: 50px 0;
}

@media all and (max-width: 768px) {
    .progress-container span {
        white-space: normal;
        max-width: 105px;
        margin: auto;
    }
}

/* STORE LOCATOR */
.store_locator_input .form-control {
    font-size: 0.75rem;
    min-height: 48px;
    border-radius: 0;
    padding: 0.5rem 0.5rem;
}
.store_locator_input input[type="text"] {
    min-width: 200px;
}
.store_locator_input button {
    font-size: 0.75rem;
    padding: 0.5rem 0.5rem;
}
#locationSelect {
    margin-top: 3rem;
}
#locationSelect .locOption {
    padding: 2rem 3rem;
    cursor: pointer;
}
#locationSelect .locOption .locOption-num {
    font-family: "Arial", sans-serif;
    padding-right: 3rem;
    font-size: 2rem;
    font-weight: normal;
    display: flex;
    align-items: center;
}
#locationSelect .locOption .locOption-cont {
    display: flex;
    align-items: center;
}
#locationSelect .locOption .locOption-name {
    font-size: 1.125rem;
    font-weight: bold;
}
#locationSelect .locOption:nth-child(odd) {
    background: #f7f7f7;
}
#locationSelect .locOption:nth-child(even) {
    background: #ebebeb;
}
#locationSelect .locOption:hover {
    background: black;
    color: #fff;
}
#locationSelect .locOption:hover .locOption-num span {
    color: #fff;
}
#store_locator #map {
    width: 100%;
    height: 100%;
    min-height: 500px;
}
#store_locator h1 {
    margin-top: 0;
}

/* GIFTCARD */
.gift-card-description {
    margin-top: var(--space);
}
.gift-card-description ol {
    margin-left: 0px;
    padding-left: 20px;
}
gift-card-intro {
}
.gift-card-description ol li {
    margin-bottom: var(--space-half);
}
.gift-card-description ol li::marker {
    color: #aaa;
    font-size: var(--lg-size);
}
#product-product .product-images-container img {
    width: 100%;
}
.gift-card-description ul {
    margin-top: var(--space-double);

    background: #f4f4f4;
    padding: var(--space-double);
    padding-left: var(--space-triple);
}
.account_voucher #product-product #product-row h1 {
    font-size: var(--lg-size);
}
.gift-card-description ul li {
    font-size: var(--xs-size);
    margin-bottom: var(--space-half);
    color: #888;
}
.gift-card-description ul li::marker {
    color: var(--link-color);
}
