: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: .75rem;
    --space-double: 3rem;

	--line: 1rem;
	
    --preheader-height: 2rem;
    --header-height: 4.5rem;
    --navigation-height: 2.5rem;
    --color-dark: #212529;
    --border-color: #EBEBEB;
}
html {
	font-size:100%;
}
body {
	font-size: var(--size);
	line-height: 1.5;
	font-family: neue-haas-unica, sans-serif;
	color: var(--color-dark);
}
#content {
	min-height: 60rem;
}
.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: var(--bs-gray-dark);
}
.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: 1rem;
    left: 50%;
    min-width: 50rem;
    max-width: calc(100% - 6rem);
    margin-right: auto;
    margin-left: auto;
    transform: translateX(-50%);
    z-index: 9999;
}
.alert-fixed + .alert-fixed {
	bottom: 5rem;
}
.alert > i {
	position: relative;
	top: 1px;
}
.btn-close {
	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") center/1em auto no-repeat;
	box-sizing: content-box;
	width: 1em;
	height: 1em;
	padding: .25em .25em;
}

/* 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%/.75rem auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: .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: .125rem;
	color: var(--color-dark);
	border: 0;
}
.page-item:not(:first-child) .page-link {
	margin-left: .125rem;
}
.pagination-wrap nav ul {
    justify-content: end;
}

/* GRID */
@media (max-width: 1024px){
    body:not(.common_home) main.container-xxl {
        padding-left: 0;
        padding-right: 0;
    }
}
@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: 1800px;
    }

	.footer-wrap .footer-wrap-container {
	    max-width: calc(1800px - 600px);
	}
}
.container-account {
    max-width: 60rem;
}

/* GLYPHTER */
@font-face {
    font-family: 'Glyphter';
    src: url('../fonts/glyphter-font/Glyphter.eot');
    src: url('../fonts/glyphter-font/Glyphter.eot?#iefix') format('embedded-opentype'),
         url('../fonts/glyphter-font/Glyphter.woff') format('woff'),
         url('../fonts/glyphter-font/Glyphter.ttf') format('truetype'),
         url('../fonts/glyphter-font/Glyphter.svg#Glyphter') format('svg');
    font-weight: normal;
    font-style: normal;
}
[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-sorting, .btn-limiting {
	padding: 0 0 0 0;
	line-height: 1.25rem;
	width: 15rem;
	text-align: left;
}
.btn-sorting:focus, .btn-limiting:focus {
	box-shadow: none;
}
.btn-sorting.dropdown-toggle::after, .btn-limiting.dropdown-toggle::after {
	content: '\f107';
	font-family: "Font Awesome 6 Pro";
	border: 0;
	position: relative;
	top: 50%;
	padding-left: 2rem;
	line-height: 1;
}
.btn-sorting.dropdown-toggle.show::after, .btn-limiting.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: .625rem var(--space-double);
	letter-spacing: .125rem;
	transition: 300ms ease-in-out;
}
.btn-generic:hover {
	color: var(--bs-white);
    background-color: var(--color-dark);
    border-color: var(--color-dark);
}

@media all and (max-width: 991px) {
    .btn-sorting.dropdown-toggle::after,
    .btn-limiting.dropdown-toggle::after {
        padding-left: 0;
    }
}

/* FORMS */

.form-select,
.form-control {
    padding: 0.625rem 0.75rem;
    border: 1px solid #E1E1E1;
    border-radius: 0;
    line-height: 1.25rem;
}
.form-control + .text-danger {
	margin-top: 0.25rem;
	font-size: 0.875rem;
}
form .required label:after {
	content: '*';
	color: var(--bs-red);
	padding-left: .125rem;
}
.form-check-input:checked {
    background-color: #000;
    border-color: #000;
}

/* 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;
}

#top-header-msg {
    background-color: #000;
    display: flex;
    color: #fff;
    justify-content: center;
    padding: 0.5rem;
    height: 50px;
    align-items: center;
    letter-spacing: 2.2px;
    font-size: 0.7rem;
}

#header {
	position:relative;
	z-index:100;
	padding: 3rem 0;
}

body.scrolled #header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
}

#logo {
	max-width: 230px;
	display:flex;
}
#logo .logo-text {
	font-size: 2.25rem;
	margin: 0;
	font-weight: 900;
	letter-spacing: -.125rem;
}
#header .header-main-wrapper {
    height: var(--header-height);
    display: flex;
    justify-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: 0.5rem;
    width: 14px;
    height: 14px;
    background: #000;
    border-radius: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
#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: .75rem;
	line-height: 1.25rem;
	position: relative;
	top: -2px;
	margin-left: .75rem;
	border-bottom: solid 1px var(--color-dark);
}
.header-search .header-top-bar-block {
	width: 100%;
}
#search {
	padding: 0;
	-webkit-border-radius: 0;
	border: 0;
	border-radius: 0;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	max-width: 1600px;
	margin: auto;
	padding: 3rem 1rem;
}
#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;
}

#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);
	background-color: transparent;
}
#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: flex-start;
    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: 0;
    font-size: 0.75rem;
    font-weight: bold;
    opacity: 0.5;
}
.live-results__suggestion-box ul {
    margin: 1rem 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    list-style-type: none;
    text-align: left;
}
.live-results__no_results-text {
    font-weight: 300;
    font-size: 1rem;
}
.live-results__suggestion-box ul li {
	margin: 0 0 0.5rem 0;
}
.live-results__suggestion-box ul li a:hover {
	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-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: .5rem;
    padding-top: .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;
}

@media all and (max-width: 991px) {
    #search {
        padding: 1rem;
    }

    #search .search-logo {
        max-width: 120px;
    }

    .live-results__suggestion-box {
        margin-top: 1rem;
    }

    #searchOffcanvas {
        height: auto;
        bottom: auto;
    }

    .live-results__container .search-products-wrap .product-layout .sizes-addcart-container,
    .live-results__container .product-layout .product-wishlist.product-wishlist-add {
        display: none !important;
    }

    .live-results__container .search-products {
        row-gap: 2rem;
    }

    .live-results__search-page {
        margin-top: 2rem;
    }
}

/* DESKTOP MENU */
#desktop-menu {
	border: 0;
	padding: 0;
	box-shadow: 0px .75rem 1rem #0000001a;
	border-top: 1px solid #E1E1E1;
	border-bottom: 1px solid #E1E1E1;
}

div#desktop-menu .dropdown-menu,
div#mmenu .dropdown-menu
{
    background: none;
}
#desktop-menu .main-nav {
    padding: 0;
    width: 100%;
}
#desktop-menu .dropdown .dropdown-menu {
	border: 0;
	position: relative;
	top: auto;
	margin-top: 0;
	left: auto;
	padding: 0;
	border-radius: 0;
	color: rgb(0 0 0 / 60%);
	letter-spacing: 0.6px;
	font-size: 0.7rem;
	text-transform: uppercase;
    min-width: 0;
}
#desktop-menu .navbar-nav > .nav-item {
	line-height: 1.5rem;
	border: 0;
	text-align: center;
	justify-content: center;
}
#desktop-menu .navbar-nav > .nav-item .nav-link {
	line-height: var(--line);
	border: 0;
	padding: 0.5rem 0;
	font-size: 0.75rem;
	position: relative;
}
#desktop-menu .nav-item:hover > .nav-link {
	position: relative;
}
#desktop-menu .dropdown .dropdown-megamenu-wrap .megamenu-block h3 {
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.0625rem;
    margin: 0;
}
#desktop-menu .dropdown .megamenu-block h3 + .megamenu-block-content {
    margin: 1.5rem 0 0 0;
}
#desktop-menu .dropdown .megamenu-block-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
#desktop-menu .dropdown .dropdown-megamenu-wrap .megamenu-block.type1 ul,
#desktop-menu .dropdown .dropdown-megamenu-wrap .megamenu-block.type7 ul {
    column-count: 2;
}
#desktop-menu .dropdown .megamenu-block-content ul > li {
    margin-bottom: .75rem;
    line-height: 1.25rem;
}
#desktop-menu .dropdown .megamenu-block-content ul > li > a,
#desktop-menu .dropdown .megamenu-block-content ul > li > span {
    font-size: 0.875rem;
    color: #707070;
    line-height: 1.25rem;
    height: 1.25rem;
    display: inline-block;
}
#desktop-menu .dropdown .megamenu-block-content ul > li > a:hover,
#desktop-menu .dropdown .megamenu-block-content ul > li > a:focus {
	color: var(--color-dark);
}
#desktop-menu .dropdown .megamenu-block-content ul > li > a:hover:after {
	content: '\f105';
	display: inline-block;
	font-family: "Font Awesome 6 Pro";
	font-weight: 300;
	margin-left: .25rem;
	line-height: 1.25rem;
}
#desktop-menu .dropdown .dropdown-megamenu-wrap .megamenu-block.type4 ul > li {
	border: solid 1px #E1E1E1;
	background-color: #fff;
	text-align: center;
	height: 2rem;
	line-height: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: .25rem;
}
#desktop-menu .dropdown .dropdown-megamenu-wrap .megamenu-block.type4 ul > li.category-all-products {
	border: none;
	width: auto;
	height: auto;
}
#desktop-menu .dropdown .megamenu-block.type4 .megamenu-block-content ul > li a {
	width: 100%;
	height: 100%;
	height: 2.25rem;
	line-height: 2rem;
}
#desktop-menu .dropdown .megamenu-block.type4 .megamenu-block-content ul > li:hover {
	background-color: #E1E1E1;
}
#desktop-menu .dropdown .megamenu-block.type4 .megamenu-block-content ul > li a:after {
	display: none;
}
#desktop-menu .dropdown .megamenu-block-row {
	--bs-gutter-x: 2rem;
}
#desktop-menu .dropdown .megamenu-block-wrap {
	display: flex;
	align-items: stretch;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: space-between;
}
#desktop-menu .dropdown .megamenu-block-wrap .megamenu-block {
	display: flex;
	flex-direction: column;
	height: 100%;
}
#desktop-menu .dropdown .megamenu-block-wrap .megamenu-block-content {
    border-right: solid 1px #E1E1E1;
    height: 100%;
}
#desktop-menu .dropdown .megamenu-block-wrap .megamenu-block.type4 .megamenu-block-content,
#desktop-menu .dropdown .megamenu-block-wrap:last-child .megamenu-block-content {
    border-right: 0;
}
#desktop-menu .dropdown .megamenu-block-wrap .megamenu-block.type3 {
	--bs-gutter-x: 0.5rem;
}
#desktop-menu .dropdown .megamenu-block-wrap .megamenu-block.type3 .banner-image img {
	max-width: 100%;
}
#desktop-menu .dropdown .megamenu-block-wrap .megamenu-block.type3 .banner-caption h2 {
    font-size: 0.875rem;
    font-weight: bold;
    margin: .75rem 0 0 0;
    letter-spacing: .075rem;
}
#desktop-menu .dropdown .megamenu-block-wrap .megamenu-block.type3 .banner-caption h2:after {
    content: '\f105';
	display: inline-block;
	font-family: "Font Awesome 6 Pro";
	font-weight: 300;
	margin-left: .25rem;
	line-height: 1.25rem;
}
#desktop-menu .dropdown .megamenu-block-wrap .megamenu-block.type3 .banner-col:last-child {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}


/* BREADCRUMB */
nav[aria-label="breadcrumb"] {
    display: flex;
    background-color: #F8F8F8;
}
.breadcrumb {
	padding-top: .625rem;
	padding-bottom: .625rem;
	margin: auto;
}
.breadcrumb li,
.breadcrumb li a {
    font-size: 0.625rem;
    color: #A0A0A0;
    letter-spacing: 1.5px;
    line-height: 1.25rem;
    text-transform: uppercase;
}


/* INFORMATIONS */
.information_information #content {
	margin-bottom: 3rem;
	margin-bottom: 10rem;
}
.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: var(--color-pink);
}
.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: .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: .125rem;
}
.card-account #content .tab-links h3 {
	position: relative;
	font-size: 1rem;
}
.card-account .tab-links > div:first-child h3:after {
	content: '';
	background-color: #dee2e6;
	height: 100%;
	width: 1px;
	position: absolute;
	right: 0;
}
.card-account .tab-links .border-bottom {
	border-bottom-width: 1px !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: .5rem;
}
.card-account .card-account-header .card-account-title {
	font-size: 1.5rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: .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: .5rem;
	padding-right: .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: .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, #e1cbcb, #edededF0);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to left, #e1cbcb, #edededF0); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
@media (max-width: 500px) {
	.alert-fixed {
	    left: .75rem;
		bottom: .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) * .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 {
	display: flex;
	padding-top: 5rem;
	padding-bottom: 5rem;
	margin: 0;
	color: var(--color-dark);
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	justify-content: center;
}
.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 {
	margin-bottom: 1rem;
	font-size: 0.9rem;
	font-weight: bold;
}
.footer-wrap h5.small-title,
.footer-wrap h6 {
	font-size: 0.7rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}

.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 .spacings ul + h6 {
    margin-top: 1rem;
}
.footer-wrap ul li,
.footer-wrap .spacings ul li {
	color: #707070;
	list-style: none;
	line-height: 1.25rem;
	margin-bottom: .5rem;
}
.footer-wrap .spacings li:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
}
.footer-wrap ul li, .footer-wrap ul li a {
	color: #5A5A5A;
	font-size: 0.7rem;
	font-weight: 400;
}
.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 {
	padding-top: var(--space);
	padding-bottom: var(--space);
	border-top: 1px solid #000;
}
.payment-logos {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}
.copyright .copy,
.copyright .dev {
	font-size: 0.6rem;
	letter-spacing: 1.8px;
}
.copyright .cards {
	justify-content: center;
	display: flex;
}
.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) * .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-caption-wrapper {
	display:flex;
	justify-content:flex-start;
	align-items:center;
	padding: 1rem;
}
.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container {
	display:flex;
}
.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-hypertitle {
	font-size: var(--size-h2);
	color: var(--bs-white);
	width:100%;
	margin-bottom: 0;
	display:flex;
	justify-content:flex-start;
	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: var(--bs-white);
	width:100%;
	margin-bottom: 0;
	margin-top: 0;
	display:flex;
	justify-content:flex-start;
	line-height:1;
}
.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-subtitle {
	font-size: var(--size-h3);
	color: var(--bs-white);
	width:100%;
	display:flex;
	justify-content:flex-start;
}
.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-button-container {
	width:100%;
	display:flex;
	justify-content:flex-start;
	margin-top: var(--space-double);
}
.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-button {
	font-size: .75rem;
	font-weight: 300;
	padding: var(--space-half) var(--space-double);
	background: none;
}
/* 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: var(--bs-white);
	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: .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  .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 .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: .75rem;
	letter-spacing: .125rem;
	justify-content: center;
	padding: .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: .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 */

/* 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-wrapper {
	flex-direction: row;
	display: flex;
	align-items: center;
}
.top-row-wrapper .main-content-title {
	font-size: 1.1rem;
	font-weight: 700;
	text-align: center;
	margin: 0;
	padding-bottom: 1rem;
}
.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;
	text-align: center;
	font-size: 0.85rem;
	line-height: 25px;
	max-width: 600px;
	margin: auto;
}
.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, #input-limit {
	border: 0;
	border-radius: 0;
	background: #fff;
	text-align: left;
	padding: 1rem .75rem;
	font-size: 0.875rem;
	width: 15rem;
	box-shadow: 0 0.5rem 1rem 0.125rem rgb(0 0 0 / 15%);
}
#input-sort li, #input-limit li {
	line-height: 1.25rem;
}
#input-sort li a.dropdown-item, #input-limit li a.dropdown-item {
	background: none;
	color: var(--color-dark);
}
#input-sort li a.dropdown-item:hover, #input-sort li a.dropdown-item.active, #input-limit li a.dropdown-item:hover, #input-limit 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: center;
    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-wishlist.in-wishlist span:before {
	content:'\0045';
	color: var(--link-color-hover);
}
.product-layout .product-wishlist {
	border: none;
	padding: 0;
	background: none;
	color: #A0A0A0;
}
.product-layout .product-wishlist:focus {
    box-shadow: none;
}
.product-layout .product-wishlist.btn.btn-default span {
	font-size: 1.125rem;
	line-height: 2.75rem;
}

.product-layout .product-wishlist.in-wishlist span:before {
	content:'\0045';
	color: var(--link-color-hover);
}
.product-layout .product-block .product-top {
	margin-bottom: 1rem;
	position: relative;
}
.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 {
    text-align: left;
}
.product-layout .product-block .product-block-caption .product-block-title .product-name a {
	color: #000;
	font-size: 0.875rem;
	font-weight: 700;
}
.product-layout .product-block .product-block-price {margin-top: 0.3rem;text-align: left;}
.product-layout .product-block .product-block-price .amount_before {
	color: #acacac;
	line-height:1;
	font-size: 0.75rem;
	align-items: center;
}
.product-layout .product-block .product-block-price .amount {
	font-size: 0.85rem;
	font-weight: 400;
}
.product-layout .product-block .product-top .product-block-image {
	position:relative;
}
.product-layout .product-block .product-label {
	font-size: 0.6rem;
	font-weight: 200;
}

.product-layout .product-block .product-top .product-block-image .product-label {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    pointer-events: none;
    background-color: rgb(255 255 255);
    padding: 0.2rem 0.3rem;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    border: solid 1px #111;
    font-size: 14px;
}

div#product-product .product-label {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    pointer-events: none;
    background-color: rgb(165 74 64);
    padding: 0.3rem 0.5rem;
    color: #fff;
    letter-spacing: 0.9px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	z-index:10;
}

.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 {opacity: 1;transition: 0.3s;}
.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;
    pointer-events: none;
    transition: 0.3s;
}
.product-layout:hover .product-block .product-wishlist {
    opacity: 1;
    pointer-events: initial;
	transition: 0.3s;
}
.product-layout .product-block .product-wishlist i {
	height: 2.5rem;
	font-size: 1rem;
	line-height: 2.5rem;
}

.product-layout .product-block.wished .product-wishlist i {
	color: #000;
	font-weight: 900;
}
.product-layout .product-block .product-block-actions .product-cart span,
.product-layout .product-block .product-block-actions .product-cart i {
	font-size: 0.7rem;
}
.product-layout .product-block .product-block-actions .product-cart span:before {
	transition: 300ms ease-in-out;
}
.product-layout .product-block .product-block-actions .product-cart:hover span:before {
	color: var(--link-color-hover);
}
@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;
	}

    .product-layout .product-block .product-top {
        margin-bottom: 0.5rem;
    }
}

/* HO FILTERS */

.filter-wrapper-column.show {
    visibility: visible;
    transform: translateX(0%);
}

.ho-filters-wrapper .filter-clear-all {
	color: var(--bs-dark);
	margin-bottom: 1rem;
	display: block;
	cursor: pointer;
}
.ho-filters-wrapper .price-range-group .form-control {
    font-size: .875rem;
    line-height: 2.25rem;
    height: 2.5rem;
    padding: 0 0.5rem;
    min-height: unset;
    margin-bottom: .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;
    padding-bottom: .5rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.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: 0.8rem;
    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.75rem;
    color: var(--bs-dark);
    cursor: pointer;
    margin-left: .5rem;
    text-transform: initial;
}
.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;
    max-width: fit-content;
}
.ho-filters-wrapper .filter-group-filters-container .form-check .form-check-label.disabled {
    pointer-events: none;
    opacity: .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: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 0;
    position: relative;
    width: 1.2rem;
    height: 1.2rem;
    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);
	content: '\f00c';
	font-family: 'Font Awesome 5 Pro';
	color: #fff;
	align-items: center;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
}
.ho-filters-wrapper .filter-group-filters-container .form-check .form-check-title {
    font-size: 0.75rem;
    color: var(--color-dark);
    margin-left: 0.375rem;
}
.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 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-title, 
.ho-filters-wrapper .filter-group-filters-container .form-check .form-check-input:checked + span.form-check-image-block .form-check-title, 
.ho-filters-wrapper .filter-group-filters-container .form-check .form-check-label:hover {
    font-weight: bold;
}

.ho-filters-wrapper .filter-group-filters-container .form-check .form-check-input:checked + span.form-check-image-block span.form-check-color-block,
.ho-filters-wrapper .filter-group-filters-container .form-check .form-check-label:hover span.form-check-color-block {
    border: 2px solid var(--color-pink);
    outline: 1px solid #000;
}

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

#ajax-wrapper {
	opacity:0;
}

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

.ho-filters-wrapper .filter-group-filters-container .form-check.form-check-link {
    padding: 0;
}

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

/* CATEGORY */

/* #product-category .product-container .product-layout,
#product-manufacturer .product-container .product-layout {
	flex: 0 0 auto;
	width: 20%;
}
#product-category aside#column-left,
#product-manufacturer aside#column-left {
	flex: 0 0 auto;
	width: 20%;
}
#product-category #content,
#product-manufacturer #content {
	flex: 0 0 auto;
	width: 80%;
} */

/* 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;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #000;
	padding-bottom: 0.5rem;
}


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

.irs--round .irs-handle {
    border-color: #111;
}

.irs--round .irs-from, .irs--round .irs-to, .irs--round .irs-single {
    background-color: #111;
}

.irs--round .irs-from:before, .irs--round .irs-to:before, .irs--round .irs-single:before {
    border-top-color: #111;
}

.irs--round .irs-bar {
    background-color: #111;
}

/* 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: .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: .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: .6;
	transition: transform .7s cubic-bezier(.19,1,.22,1) .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 .product-gallery {
    position: relative;
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
}
#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);
	z-index: 10;
    position: absolute;
}
#product-product .manufacturer_info {
	margin-bottom: 1rem;
}
#product-product .product-info_wrap h1 {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 2.125rem;
}
#product-product .product-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    font-size: .75rem;
    line-height: 1.5rem;
    font-weight: 300;
    color: #a0a0a0;
    margin-bottom: .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: .25rem;
}
#product-product .product-meta .meta-rating a {
    font-size: 0.625rem;
}
#product-product .product-details {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    padding-top: 0.2rem;
    position: relative;
}
#product-product .product-details ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.8125rem;
    font-weight: 300;
}

#product-product .product-details li.text-success:before {
	font-family: 'Font Awesome 6 Pro';
    content: '\f00c';
}
#product-product .product-details li.danger:before {
	font-family: 'Font Awesome 6 Pro';
    content: '\f00d';
}
#product-product .product-price {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	margin-top: 1rem;
}
#product-product .product-price .price-new {
	font-size: 1.3rem;
	color: #000;
	font-weight: 500;
}
#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: .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 .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 h3, #product-product .options-row .col-form-label {
	font-size: 0.7rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	padding: 0;
	line-height: 1;
}
#product-product .product-color_related .color_related-wrap {
	display: flex;
	align-items: center;
	gap: .5rem;
	flex-wrap:wrap;
}
#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: .25rem;
}
#product-product .product-btn .btn {
	font-size: 0.75rem;
	font-weight: 300;
	letter-spacing: .125rem;
	border-radius: 0;
}
#product-product .product-btn .btn#button-cart, #product-product .product-btn .btn#button-notify {
	color: #fff;
	background-color: #000;
	border-color: #000;
	flex: 1;
	letter-spacing: 4.4px;
	position: relative;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	display: flex;
}

#product-product .product-btn .btn#button-notify {
	background:rgb(165 74 64);
}
#product-product .product-btn .btn#button-cart.loading {
    opacity: .5;
    pointer-events: none;
}

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

#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: 500;
	padding: .75rem .25rem;
	border-color: transparent;
	box-shadow: none;
    background-color: transparent;
}
#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: .75rem;
	background-position: center;
	filter: grayscale(1);
}
#product-product #product-info .accordion-body {
	padding: .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: .5rem;
	top: .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-pink);
    color: #000;
    padding: 0.7rem 1rem;
    justify-content: flex-start;
    gap: 0.5rem;
    border-bottom: 1px solid #000;
}

#offcanvasCart .offcanvas-header h5 {
	font-size: 0.75rem;
	font-weight: 700;
}

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

#offcanvasCart .offcanvas-header .btn-close {
	color: #000 !important;
	opacity: 1;
	margin: 0;
	padding: 0;
	font-size: .75rem;
	line-height: 1.75rem;
	height: 1.75rem;
	width: 1.75rem;
	background-image: none;
	background-color: #fff;
	border-radius: 50%;
	margin-right: 0;
	margin-left: auto;
	border: 1px solid #E1E1E1;
}

#offcanvasCart .offcanvas-header .btn-close:hover {
	color: #fff !important;
	background-color: #000;
}

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

#offcanvasCart .offcanvas-body {
	display: flex;
	background-color: var(--color-pink);
}

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

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

#offcanvasCart .offcanvas-empty:before {
	content: '\f656';
	font-family: "Font Awesome 6 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 rgb(0 0 0 / 10%);
	margin-bottom: 1rem;
	padding-bottom: 1rem;
}

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

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

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

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

#offcanvasCart .cart_item-total .cart_item-qnt {
	width: 40%;
	display: inline-flex;
	align-items: center;
}

#offcanvasCart .cart_item-total .cart_item-sum {
	font-size: 0.85rem;
}

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

#offcanvasCart .cart_total .cart_total-title, #offcanvasCart .cart_total .cart_total-text {
	font-size: .875rem;
}

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

#offcanvasCart .offcanvas-up {
	overflow: auto;
	padding: 0.7rem 1rem;
}

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

#offcanvasCart .offcanvas-down {
	padding: .75rem;
	border-top: 1px solid #000;
}

@media all and (max-width: 991px) {
    #offcanvasCart .offcanvas-body {
        max-width: 93%;
        margin-right: 0;
        margin-left: auto;
        width: 100%;
    }

    #offcanvasCart {
        background-color: rgb(0 0 0 / 30%);
        border-left: revert-layer;
    }

    #offcanvasCart .offcanvas-body .btn-cart {
        background-color: #fff;
    }
}

/* 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 .2s linear;
}
.brand_list-block .brand_list-text {
    border-top: 1px solid #E1E1E1;
    padding-top: .5rem;
}
.brand_list-block .brand_list-text h2 {
    font-size: 1rem;
    letter-spacing: .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 {
	font-size: 1rem;
	line-height: normal;
	color: var(--color-dark);
	font-weight: 600;
	text-transform: uppercase;
	text-align: left;
}
.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 .wrap-td-block.td-name {
	font-weight: bold;
	font-size: 14px;
	flex: 1;
	text-align: left;
	padding: 0;
	align-items: flex-start;
	flex: 1;
}
.thankyou-wrap .td-quantity {
	flex: 0 0 70px;
	text-align: center;
	font-size: 14px;
	letter-spacing: 2px;
}
.thankyou-wrap .td-image {
	flex: 0 0 60px;
	max-width: 60px;
	margin-right: 2rem;
}
.thankyou-wrap .td-image img {
	width: 60px;
	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 .wrap-td-block.td-total {
	font-weight: bold;
	font-size: 16px;
	flex: 1;
	text-align: right;
	align-items: end;
	display: flex;
	max-width: 150px;
}
.thankyou-wrap .order-details-flex {
	display: flex;
	flex-direction: row;
}
.thankyou-wrap .order-address-flex {
	flex: 1;
	padding: 2rem 1.5rem;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}
.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;
	text-align: left;
}
.thankyou-wrap ul.order-details-ul > li span {
	font-weight: bold;
	color: #111;
	font-size: 0.8rem;
}
.thankyou-wrap .order-address-flex h4 {
	font-size: 1rem;
	font-weight: 800;
	padding: 0;
	margin-bottom: 2rem;
	text-align: left;
	text-transform: uppercase;
}
.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: .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;
	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: row;
	/* padding-left: 1rem; */
	flex: 1;
}
.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: 1rem;
}

.thankyou-wrap .wrap-td-block.td-color {
    width: 150px;
    align-items: flex-start;
}

.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);
}	

@media all and (max-width: 768px) {
    .thankyou-wrap .order-success-text-bottom span {
        flex-direction: column;
        display: flex;
        gap: 0.4rem;
    }

    .thankyou-wrap .thankyou-heading .heading-icon {
        width: 3rem;
        height: 3rem;
    }

    .thankyou-wrap .thankyou-heading .heading-icon i {
        font-size: 1.5rem;
    }

    .thankyou-wrap .thankyou-heading .heading-msg {
        font-size: 0.8rem;
    }

    .thankyou-content .order-heading {
        text-align: left;
    }
}

/* THANKYOU PAGE */

/* RESPONSIVE */
@media only screen and (max-width: 1024px) { 
    #mmenu .offcanvas-body {
        justify-content: space-between;
        display: flex;
        flex-direction: column;
    }
    .mmenu-social-links {
        padding: 2rem 0;
        row-gap: 1.5rem;
    }
    .mmenu-bottom {
        padding: var(--bs-gutter-x,.75rem);
        margin-bottom: 0;
        margin-top: auto;
    }
    .mmenu-account-wishlist {
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
        padding: 1rem 0;
    }
    .mmenu-social-links a {
        display: inline-flex;
        gap: 0.5rem;
        align-items: center;
        font-size: 0.65rem;
        font-weight: 500;
    }
    .mmenu-account-wishlist a, .mmenu-account-wishlist button span {
        gap: 0.5rem;
        display: flex;
        align-items: center;
        font-size: 0.75rem;
        text-transform: uppercase;
    }
    .mmenu-social-links > a {
        width: 50%;
    }
    .mmenu-account-wishlist > div {
        width: 33.33%;
        align-items: end;
        display: flex;
    }
	#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: .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 6 Pro";
		font-weight: 300;
		font-size: 0.75rem;
		line-height: 1.75rem;
	}
	
	#mmenu {
	    font-size: var(--size);
	}
	#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;
		flex-wrap: wrap;
	}
	#mmenu nav ul > li:last-child {
		border-bottom: 0;
	}
	#mmenu nav ul > li > a {
		padding: 0 var(--bs-gutter-x,.75rem);
		line-height: 3.125rem;
		position: relative;
		display: block;
		width: 100%;
		font-weight: 700;
        text-transform: uppercase;
	}
	#mmenu nav > ul > li > a.drop-link:after {
		content: '\f107';
		font-size: 1.5rem;
		font-family: 'Font Awesome 6 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.show:after {
	    content: '\f106';
	}
	#mmenu nav > ul > li > .drop-link + ul {
		display: none;
	}
	#mmenu nav > ul > li > .drop-link.show + ul {
		display: block;
		width: 100%;
	}
	#mmenu nav > ul > li > .drop-link.show + ul > li {
		padding-left: var(--space-half);
	}

    #mmenu {
	    border: 0;
	    top: 136px;
	    width: 90%;
	    max-width: 400px;
	}
    nav#mmenu {
        width: 100%;
    }
    header#header .offcanvas-backdrop {
        top: 146px;
    }
    .scrolled header#header .offcanvas-backdrop,
    .scrolled #mmenu {
        top: 96px;
    }
}

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

	/* HEADER */
	.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;
	}

	/* CART */
	#offcanvasCart .cart_total {
		line-height: 1.5rem;
	}
	
	/* FOOTER */
	.footer-wrap {
		padding-top: 0;
		padding-bottom: 2rem;
	}
    .payment-logos {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
	.footer-wrap .footer-col {
		flex: 0 0 auto;
		width: 100%;
		margin: auto;
	}


    .footer-col.footer-contact {
        text-align: center;
        padding: 2rem 0;
    }

	.footer-wrap .footer-col:nth-child(n+3) .footer-title {
	    border-top: 1px solid #e0e0e0;
	}
	.footer-wrap .footer-col h5:not(.not-closed) {
	    margin: 0;
	    text-align: center;
	    padding-top: 1rem;
	    padding-bottom: 1rem;
	    position: relative;
	}
	.footer-wrap .footer-col:not(.socials) h5:not(.not-closed):before {
	    content: '\f107';
	    font-family: 'Font Awesome 6 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:not(.not-closed) {
	    display: none;
	    text-align: center;
	}
    .footer-wrap .footer-content:not(.not-closed) ul {
        padding-bottom: 1rem;
    }
	
	/* 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;
	}
}

/* OVERRIDE */
:root {
	--swiper-pagination-bullet-width: 30px;
	--swiper-pagination-bullet-size: 30px;
	--swiper-pagination-bullet-height: 3px;
	--swiper-pagination-bullet-border-radius: 0;
	--swiper-pagination-color: #000;

	--color-pink: #F8EEEE;
	--color-grey: #5A5A5A;
}

.swiper-pagination-bullet {
	width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));
    height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));
    border-radius: var(--swiper-pagination-bullet-border-radius,50%);
}

.swiper-pagination-bullet-active {
    background: var(--swiper-pagination-color,var(--swiper-theme-color));
}

main {
    display: flex;
}

main > .section-left {
    flex: 0 0 300px;
    max-width: 300px;
    width: 300px;
}

main > .section-right {
    flex: 0 0 300px;
    max-width: 300px;
    width: 300px;
}

main > .section-center {
    flex: 0 0 calc(100% - 600px);
    width: calc(100% - 600px);
    max-width: calc(100% - 600px);
}

@media all and (max-width: 1480px) {
    main > .section-left {
        flex: 0 0 200px;
        max-width: 200px;
        width: 200px;
    }
    
    main > .section-right {
        flex: 0 0 200px;
        max-width: 200px;
        width: 200px;
    }
    
    main > .section-center {
        flex: 0 0 calc(100% - 400px);
        width: calc(100% - 400px);
        max-width: calc(100% - 400px);
    }
}

@media all and (max-width: 1024px) {
    main > .section-left,
    main > .section-right {
        display: none !important;
    }

    main > .section-center {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
}

/* section left menu */
main > .section-left #desktop-menu {
    box-shadow: none;
    border: 0;
}

main > .section-left #desktop-menu li.nav-item .nav-link {
    color: #000;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-align: left;
    max-width: fit-content;
    text-transform: uppercase;
}

main > .section-left #desktop-menu li.nav-item .nav-link:after {
	content: none;
}

main > .section-left #desktop-menu li.nav-item .nav-link:hover {
    color: rgb(0 0 0 / 60%);
}

main > .section-left #desktop-menu .navbar-nav {
    flex-direction: column;
    background-color: var(--color-pink);
    /* outline: 10px solid var(--color-pink); */
}

main > .section-left #desktop-menu.stick_it {
    position: fixed;
    top: 104px;
    z-index: 1;
}

main > .section-left #desktop-menu.active nav.navbar,
main > .section-left #desktop-menu:not(.stick_it) nav.navbar {
    display: flex;
}

main > .section-left #desktop-menu nav.navbar {
    display: none;
}

/* section right */
main > .section-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
	padding-right: 1.5rem;
    padding-left: 1.5rem;
}

main > .section-right .header-main-block-search {
    margin-bottom: 2rem;
	position: relative;
}

main > .section-right .header-right-bar-block span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

main > .section-right .header-right-bar-block a, main > .section-right .header-right-bar-block button span {
    gap: 0.5rem;
    display: flex;
    align-items: center;
}

main > .section-right .header-right-bar-block button span.short {
    display: none;
}

#language.header-right-bar-block {
    margin-top: 2rem;
}

#language.header-top-bar-block span.full {
    display: none;
}

#language.header-top-bar-block span.short {
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 500;
}

main > .section-right .header-right-bar-block + .header-right-bar-block {
    margin-top: 1rem;
}

main > .section-right .header-right-bar-block span#cart-total {
    background-color: #000;
    color: #fff;
    padding: 0 0.2rem;
    border-radius: 50%;
    font-size: 0.5rem;
    width: 18px;
    height: 18px;
    justify-content: center;
    display: flex;
    align-items: center;
}

main > .section-right .header-right-bar-block i {
    font-weight: 500;
    text-align: right;
}

main > .section-right .header-main-block-search:after {
    content: '';
    width: 0px;
    height: 1px;
    background-color: #000;
    display: block;
    position: absolute;
    right: 1.2rem;
    bottom: -2px;
	transition: 0.5s;
}

main > .section-right .header-main-block-search:hover:after {
    content: '';
	width: 130%;
	transition: 0.5s;
}

/* summer sales banner */
.summer-sales.banner-container {
    background-color: transparent;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    transition: 0.3s;
    z-index: 1;
    position: relative;
}

.summer-sales.banner-container .banner-title {
    font-size: 3.5rem;
    font-style: italic;
    letter-spacing: 12px;
    font-weight: 800;
}

.summer-sales.banner-container .banner-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.summer-sales.banner-container .btn {
    border: 0;
    border-radius: 0;
    padding: 0;
    font-size: 0.8rem;
    font-weight: 500;
	gap: 0.5rem;
    display: flex;
    align-items: center;
    line-height: 1;
}

.summer-sales.banner-container:hover {
    background-color: #000;
	transition: 0.3s;
}

.summer-sales.banner-container:hover .banner-title,
.summer-sales.banner-container:hover .btn {
	color: #fff;
	transition: 0.3s;
}

@media all and (max-width: 1480px) {
    .summer-sales.banner-container .banner-title {
        font-size: 2rem;
    }
}

@media all and (max-width: 1024px) {
    .summer-sales.banner-container .banner-title {
        font-size: 1rem;
        letter-spacing: 4px;
    }

    .summer-sales.banner-container .btn {
        font-size: 0.7rem;
    }
}

/* module slideshow */
.module-slideshow {
    margin-top: 1rem;
}

.module-slideshow.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-title {
    font-size: 1.3rem;
    color: #000;
    font-weight: 900;
}

.module-slideshow.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container {
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.module-slideshow.swiper .swiper-slide .slideshow-slide-caption-wrapper {
    padding: 1rem 0;
}

.module-slideshow.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-subtitle {
    font-size: 0.75rem;
    color: #000;
    margin-top: 0.3rem;
}

.module-slideshow.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-button-container {
    margin: auto 0 auto auto;
    justify-content: flex-end;
    width: auto;
}

.module-slideshow.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-button {
    border: 0;
    padding: 0;
    color: #000;
    font-weight: 400;
    position: relative;
}

.module-slideshow.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-button:after {
    content: '';
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    position: absolute;
    background: #000;
	transition: 0.3s;
}

.module-slideshow.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-button:hover:after {
    width: 100%;
	transition: 0.3s;
}

.module-slideshow.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-button span i {
    padding-left: 0.5rem;
}

.module-slideshow.swiper .swiper-pagination-bullets {
    bottom: 0;
}

@media all and (max-width: 1480px) {
    .module-slideshow.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-title {
        font-size: 1rem;
    }
}

@media all and (max-width: 1024px) {
    .module-slideshow.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container {
        flex-direction: column;
    }

    .module-slideshow.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-title {
        justify-content: center;
    }

    .module-slideshow.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-button-container {
        margin: 1rem auto;
    }

    .module-slideshow.swiper .swiper-pagination-bullets {
        bottom: 0;
    }

    .module-slideshow.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-title {
        font-size: 1.2rem;
    }
}

/* header */
.header-utilities,
.header-menu.m_header-trigger {
    display: none;
}

.scrolled .header-utilities,
.scrolled .header-menu.m_header-trigger {
    display: flex;
}

body.scrolled #header .header-main-wrapper {
    justify-content: space-between;
}

body.scrolled #header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
}

.header-main-block-right.header-utilities {
    gap: 2rem;
}

.header-main-block-right.header-utilities a {
    font-size: 0.9rem;
}

.header-main-block-right.header-utilities i {
    font-weight: 500;
}

.header-main-block-cart a.menu-cart-icon {
    align-items: center;
    display: flex;
    gap: 0.2rem;
}

.header-main-block.header-menu, .header-main-block-right.header-utilities {
    flex: 1;
}

.header-main-block.header-logo {
    /* flex: 0 0 230px; */
    /* max-width: 230px; */
}

.m_header-trigger {
	display: flex;
	align-items: center;
}

.m_header-trigger .btn-m_trigger {
	padding: 0 0.5rem;
    display: flex;
    width: 1.3rem;
    height: 1rem;
    position: relative;
    outline: none;
    box-shadow: none;
    align-items: center;
}

.m_header-trigger .btn-m_trigger .btn-m_trigger-icon span {
	border-radius: 0;
	height: 2px;
	width: 100%;
	bottom: unset;
	display: block;
	background-color: #000;
	position: absolute;
	left: 0;
}

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

.m_header-trigger .btn-m_trigger .btn-m_trigger-icon span:nth-of-type(2) {
	top: calc(50% - 1px);
	transition: 0.5s;
}

.m_header-trigger .btn-m_trigger.active .btn-m_trigger-icon span:nth-of-type(2), .m_header-trigger .btn-m_trigger:hover .btn-m_trigger-icon span:nth-of-type(2) {
    width: 50%;
    transition: 0.5s;
}

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

.m_header-trigger .btn-m_trigger > span {
    margin-left: 1.2rem;
    font-size: 0.6rem;
    letter-spacing: 3.6px;
    font-weight: 400;
}

.header-main-wrapper .header-main-block-search:after {
    content: '';
    width: 0px;
    height: 1px;
    background-color: #000;
    display: block;
    position: absolute;
    right: 1.2rem;
    bottom: -2px;
	transition: 0.5s;
}

.header-main-wrapper .header-main-block-search:hover:after {
    content: '';
	width: 130%;
	transition: 0.5s;
}

.header-main-wrapper .header-main-block-search span {
    font-size: 0.7rem;
    font-weight: 600;
	margin-right: 0.5rem;
}

.header-main-block-right.header-utilities .header-main-block-search {
    margin-right: 7%;
}

@media all and (max-width: 1024px) {
    #top-header-msg {
        font-size: 0.6rem;
        height: 40px;
    }
    
    #header {
        padding: 1rem 0;
    }

    .header-utilities, .header-menu.m_header-trigger {
        display: flex;
    }

    .header-main-wrapper .header-main-block-search span {
        display: none !important;
    }

    .header-main-block-right.header-utilities .header-main-block-search {
        margin-right: 0;
    }

    .header-top-bar-block.header-main-block-icon.header-main-block-account,
    .header-main-block-icon#wish,
    #language.header-top-bar-block {
        display: none;
    }

    .mmenu-main-block-language span.short {
        display: none;
    }

    .mmenu-main-block-language span {
        flex-direction: row-reverse;
    }

    .header-main-block-right.header-utilities i {
        font-size: 1.3rem;
    }

    #logo {
        max-width: 150px;
        margin: auto;
    }

    .header-main-wrapper .header-main-block-search:after {
        content: none;
    }

    .header-main-block.header-logo {
        flex: 1;
    }
}

/* double banners module */
.banner-container.double-banners h2.banner-title {
    font-size: 1.3rem;
    color: #000;
    font-weight: 900;
}

.banner-container.double-banners .banner-readmore .btn {
    border: 0;
    padding: 0;
    color: #000;
    font-weight: 400;
    position: relative;
    font-size: 0.75rem;
}

.banner-container.double-banners .banner-readmore .btn:after {
    content: '';
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    position: absolute;
    background: #000;
    transition: 0.3s;
}

.banner-container.double-banners .banner-readmore .btn:hover:after {
    width: 100%;
    transition: 0.3s;
}

.banner-container.double-banners .banner-readmore .btn i {
    padding-left: 0.5rem;
}

.banner-container.double-banners .banner-caption {
    padding: 0.5rem 0.5rem 0.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media all and (max-width: 1480px) {
    .banner-container.double-banners h2.banner-title {
        font-size: 1rem;
    }
}

@media all and (max-width: 1024px) {
    .double-banners .row.banner-row {
        row-gap: 1rem;
    }
}

@media all and (max-width: 768px) {
    .double-banners .row.banner-row .banner-image img {
        width: 100%;
    }
}

/* slideshow with video */
.module-slideshow-video video {
    width: 100%;
}

.module-slideshow-video .swiper .slideshow-slide-caption-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    justify-content: center;
    width: 100%;
}

.module-slideshow-video .swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-title {
    font-size: 2.5rem;
    text-align: center;
}

.module-slideshow-video .swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-subtitle {
    font-size: 1.1rem;
    max-width: 340px;
    text-align: center;
    margin: 1rem auto 0 auto;
    font-weight: 300;
}

.module-slideshow-video .swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container {
    flex-direction: column;
    z-index: 1;
}

/*
.module-slideshow-video .swiper .slideshow-slide-caption-wrapper:after {
    content: '';
    background-color: rgb(0 0 0 / 30%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
}*/

.module-slideshow-video .swiper-pagination {
    position: relative;
    top: auto;
    bottom: auto;
}

.module-slideshow-video video,
.module-slideshow-video img {
    height: 600px;
    object-fit: cover;
}

.module-slideshow-video .swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-button-container {
    position: absolute;
    bottom: 1rem;
    left: 0;
    margin-top: 0;
}

.module-slideshow-video .slideshow-slide-button-container .btn.slideshow-slide-button {
    margin: auto;
    border: 0;
    padding: 0;
    position: relative;
}

.module-slideshow-video .slideshow-slide-button-container .btn.slideshow-slide-button:after {
	content: '';
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    position: absolute;
    background: #fff;
	transition: 0.3s;
}

.module-slideshow-video .slideshow-slide-button-container .btn.slideshow-slide-button:hover:after {
    width: 100%;
	transition: 0.3s;
}

@media all and (max-width: 1480px) {
    .module-slideshow-video .swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-title {
        font-size: 1.5rem;
    }
}

@media all and (max-width: 768px) {
    .module-slideshow-video .slideshow-slide-wrapper video, 
    .module-slideshow-video .slideshow-slide-wrapper img {
        height: 230px;
    }

    .module-slideshow-video .swiper .slideshow-slide-caption-wrapper {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        min-height: 150px;
        align-items: flex-start;
    }

    .module-slideshow-video .swiper .slideshow-slide-caption-wrapper:after {
        content: none;
    }

    .module-slideshow-video .swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-title,
    .module-slideshow-video .swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-subtitle {
        color: #000;
    }

    .module-slideshow-video .swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-title {
        font-size: 1.2rem;
        justify-content: center;
    }

    .module-slideshow-video .swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-subtitle {
        font-size: 0.9rem;
    }

    .module-slideshow-video .swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-button-container {
        position: relative;
        bottom: auto;
        margin-top: 1rem;
    }

    .module-slideshow-video .slideshow-slide-button-container .btn.slideshow-slide-button {
        color: #000;
    }

    .module-slideshow-video {
        margin-left: calc(var(--bs-gutter-x, .75rem) * -1);
        margin-right: calc(var(--bs-gutter-x, .75rem) * -1);
    }
}

/* search dropdown */
#search .search-logo {
    width: 160px;
}

#search a.search-focus-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

#search a.search-focus-close span {
    letter-spacing: 1.8px;
    font-size: 0.6rem;
    font-weight: 500;
}

#search a.search-focus-close i {
    background-color: #fff;
    border-radius: 50%;
    padding: 0.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
	transition: 0.3s;
}

#search a.search-focus-close:hover i {
    background-color: #000;
    color: #fff;
	transition: 0.3s;
}

#search .search-input-clear, #search.search-focus .live-search {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

#search.search-focus input[name="search"] {
    text-align: left;
    padding: 0;
}

#search.search-focus .live-search {
	margin: 1rem auto;
}

#search.search-focus input[name="search"]::placeholder {
    font-size: 1rem;
    font-weight: 800;
    color: #000;
}

#searchOffcanvas {
    height: 100vh;
    max-height: 680px;
}

#searchOffcanvas.offcanvas-top.loaded-results {
    max-height: 100%;
}

.live-results__search-page a {
    border: 1px solid #000;
    border-radius: 0;
    padding-left: 5rem;
    padding-right: 5rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    position: relative;
    transition: 0.3s;
}

.live-results__search-page a:hover {
	background-color: #000;
	color: #fff;
	transition: 0.3s;
}

.live-results__search-page a i {
    top: 50%;
    position: absolute;
    right: 1.5rem;
    transform: translateY(-50%);
    transition: 0.3s;
    font-size: 0.6rem;
}

.live-results__search-page a:hover i {
	right: 1rem;
	transition: 0.3s;
}

#search #search-clear {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

#search .search-input-clear {
    margin-top: 2rem;
}

@media all and (max-width: 991px) {
    .live-results__search-page a {
        padding: 0.5rem 3rem;
        letter-spacing: 1px;
    }

    #searchOffcanvas.offcanvas-top.loaded-results {
        border-bottom: 0;
    }
}

/* footer */
.footer-wrap-container {
    flex: 0 0 calc(100% - 600px);
    width: calc(100% - 600px);
    max-width: calc(100% - 600px);
}

@media all and (max-width: 1480px) {
    .footer-wrap-container {
        flex: 0 0 calc(100% - 400px);
        width: calc(100% - 400px);
        max-width: calc(100% - 400px);
    }
}

@media all and (max-width: 1024px) {
    .footer-wrap-container {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
}

/* newsletter-about modules */
.newsletter-about-container {
    margin: 5rem 0;
}

.newsletter-about-container > .row {
    flex-wrap: nowrap;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
}

.about-content h3 {
    font-size: 22px;
    margin-bottom: var(--space-half);
    font-weight: 900;
}

.about-content .about-subtitle {
    margin-bottom: var(--space);
}

.about-content .about-text, 
.about-content .about-subtitle {
    font-size: 13px;
    line-height: 2;
}

.about-content .about-link {
	margin-top: 10px;
}

.about-content .about-link a {
	font-size: 12px;
	font-weight: 600;
	position: relative;
}

.about-content .about-link a i {
	padding-left: 10px
}

.about-content .about-link a:after {
    content: '';
    width: 0px;
    height: 1px;
    background-color: #000;
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    transition: 0.5s;
}

.about-content .about-link a:hover:after {
    content: '';
    width: 100%;
    transition: 0.5s;
}

.newsletter-wrapper {
	margin-top: var(--space-double);
	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_top {
    display: flex;
    margin-bottom: 0;
}

.newsletter-wrapper .newsletter-inner h3 {
	z-index: 2;
	color: #000;
	font-weight: 900;
	text-align: left;
	font-size: 20px;
	margin-bottom: 20px;
}

.newsletter-wrapper .newsletter-inner .newsletter-intro {
	z-index: 2;
	color: #000;
	font-weight: normal;
	font-size: 13px;
	margin-bottom: 30px;
	text-align: left;
}

.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;
	background-color: transparent;
	border-bottom: 1px solid #000;
	border-radius: 0;
}

.newsletter-wrapper .newsletter-inner .newsletter_form input#subscribe-email::placeholder {
	color: #000;
	font-size: 0.75rem;
	font-style:italic;
	font-weight:800;
	text-align: left;
}

.newsletter-wrapper .newsletter-inner .newsletter_form #subscribe-gdpr {
	width: 20px;
	min-width: 20px;
	height: 20px;
	min-height: 20px;
	border: none;
	border-radius: 0;
}

.newsletter-wrapper .newsletter-inner .newsletter_form .form-check-input:focus {
	box-shadow: none
}

.newsletter-wrapper .newsletter-inner .newsletter_form .form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
    background-color: #000;
}

.newsletter-wrapper .newsletter-inner .newsletter_form input#subscribe-email,
.newsletter-wrapper .newsletter-inner .newsletter_form .newsletter_email {
	width: 100%;
    text-align: left;
    color: #000;
}

.newsletter-wrapper .newsletter-inner .newsletter_button button {
	padding:0;
	border-radius: 0;
	border: none;
	letter-spacing: 0;
	transition: 300ms ease-in-out;
	font-size: 12px;
	font-weight: 600;
	position: relative;
}

.newsletter-wrapper .newsletter-inner .newsletter_button button i {
	padding-left: 10px
}

.newsletter-wrapper .newsletter-inner .newsletter_button button:after {
    content: '';
    width: 0px;
    height: 1px;
    background-color: #000;
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    transition: 0.5s;
}

.newsletter-wrapper .newsletter-inner .newsletter_button button:hover {
	background-color: transparent;
}

.newsletter-wrapper .newsletter-inner .newsletter_button button:hover:after {
    content: '';
    width: 100%;
    transition: 0.5s;
}

.newsletter-wrapper .newsletter-inner .agree-row {
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-wrap: nowrap;
}

.newsletter-wrapper .newsletter-inner .newsletter_agree label {
	padding-left: 10px
}

.newsletter-wrapper .newsletter-inner .newsletter_agree a,
.newsletter-wrapper .newsletter-inner .newsletter_agree {
	font-weight: normal;
	color: #000;
	font-size: 12px;
}

.newsletter-wrapper .newsletter-inner .newsletter_agree {
    display: flex;
    align-items: center;
}

.newsletter-wrapper .newsletter-inner .newsletter_agree a {
	font-weight: 600;
	padding-left: 4px
}

#modal-agree .modal-content {
    max-height: calc(100vh - 3.5rem);
    overflow-y: auto;
}

@media all and (max-width: 1480px) {
    .newsletter-about-container > .row {
        gap: 1rem;
    }
}

@media all and (max-width: 991px) {
    .newsletter-about-container > .row {
        flex-direction: column;
        display: flex;
        text-align: center;
    }

    .newsletter-wrapper .newsletter-inner h3,
    .newsletter-wrapper .newsletter-inner .newsletter-intro,
    .newsletter-wrapper .newsletter-inner .newsletter_form {
        text-align: center;
    }

    .newsletter-wrapper .newsletter-inner .agree-row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-wrapper .newsletter-inner .newsletter_agree {
        justify-content: center;
    }

    .newsletter-wrapper .newsletter-inner .newsletter_form input#subscribe-email::placeholder {
        text-align: center;
        font-weight: 500;
    }

    .about-content h3,
    .newsletter-wrapper .newsletter-inner h3 {
        font-weight: 700;
    }

    .newsletter-about-container {
        margin: 4rem 0;
    }

    .about-container {
        margin-top: 0;
    }

    .newsletter_top_wrapper {
        width: 100%;
    }
}
/* newsletter-about modules */

/* tunes module */
.banner-container.tunes {
    margin: 7rem 0;
}

.tunes .banner-image img {
    width: 100%;
}

.tunes .titles-wrapper {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	position: relative;
}

.banner-container.tunes .swiper-pagination {
    bottom: auto;
}

.tunes .titles-wrapper-inner {
	display: flex;
	align-items: center;
	background-color: var(--color-pink);
	padding-right: 15px;
}

.tunes .titles-wrapper:after {
	content: '';
	display: flex;
	height: 1px;
	width: 100%;
	background-color: #000;
	position: absolute;
	top:0;
	right: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.tunes .titles-wrapper i {
	font-size: 26px;
	padding-right: 10px;
}

.tunes .titles-wrapper h3 {
	font-weight: 900;
	padding-right: 4px;
	display: flex;
	align-items: center;
}

.tunes .banner-caption {
	margin-top: 10px;
	position: relative;
	padding-bottom: 10px;
}

.tunes .banner-caption:after  {
    content: '';
    width: 0px;
    height: 1px;
    background-color: #000;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.5s;
}

.tunes .banner-item:hover .banner-caption:after {
    content: '';
    width: 100%;
    transition: 0.5s;
}

.tunes .banner-title {
	font-size: 16px;
	font-weight: 900;
}

.tunes .banner-subtitle {
	color: #5A5A5A;
	font-size: 14px;
	margin-top: 4px
}

@media all and (max-width: 1480px) {
    .banner-container.tunes {
        margin: 2rem 0;
    }
}

@media all and (max-width: 991px) {
    .tunes .banner-title {
        font-size: 11px;
        text-align: center;
        font-weight: 700;
    }

    .tunes .banner-subtitle {
        font-size: 9px;
        text-align: center;
    }
}

@media all and (max-width: 768px) {
    .banner-container.tags-banner .banner-image {
        display: none;
    }
}
/* tunes module */

/* tags module */
.banner-container.tags-banner .banner-image {
    top: 50%;
    opacity: 0;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
    z-index: -1;
    width: 160px;
    height: 244px;
}

.banner-container.tags-banner .module-container {
    display: flex;
    justify-content: center;
    flex-flow: wrap;
    max-width: 1000px;
    margin: auto;
    gap: 1rem;
    padding: 6rem 0 4rem 0;
}

.banner-container.tags-banner .banner-title {
    font-size: 1.8rem;
}

.banner-container.tags-banner .module-container .banner-item:nth-child(even) .banner-title {
    font-weight: 700;
}

.banner-container.tags-banner .banner-item {
    position: relative;
}

.banner-container.tags-banner a:hover .banner-image {
    opacity: 1;
}

@media all and (max-width: 1480px) {
    .banner-container.tags-banner .banner-title {
        font-size: 1.2rem;
    }
}

@media all and (max-width: 768px) {
    .banner-container.tags-banner .banner-title {
        font-size: 1rem;
    }

    .banner-container.tags-banner .module-container {
        padding: 2rem 0;
    }
}

/* top row - sort - limit */
.top-pagination #button-wrapper button {
    border: 0;
    padding: 0;
    opacity: 0.5;
}

.top-pagination #button-wrapper {
    gap: 0.5rem;
    display: flex;
}

.top-pagination #button-wrapper button.active,
.top-pagination #button-wrapper button:hover {
    opacity: 1;
    background-color: transparent;
}

button#input-sort-dropdown, button#input-limit-dropdown {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.7rem;
    align-items: center;
    display: flex;
    gap: 0.5rem;
    width: auto;
}

button#input-sort-dropdown span, button#input-limit-dropdown span {
    font-weight: 400;
    color: #5A5A5A;
}

.dropdown.dropdown-limit {
    margin-right: 3rem;
    margin-left: auto;
}

.top-pagination #button-wrapper button:focus {
    background: transparent;
    box-shadow: none;
}

/* main product layout */
.product-layout .product-block .product-block-price .amount.amount_final {
    background-color: #D6EFC4;
    border-radius: 3px;
    padding: 0.1rem 0.3rem;
    background-color: #14dd52;
    border-radius: 3px;
    padding: 0.2rem 0.3rem;
    color: #000;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.product-layout .product-block .product-block-price .percentage {
    background-color: #000;
    border-radius: 3px;
    padding: 0.1rem 0.3rem;
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.2;
}

.product-layout .product-wishlist:hover {
    color: #000;
}

.product-layout .product-wishlist:hover i {
    font-weight: 500;
}

.product-layout .wished .product-wishlist.product-wishlist-remove,
.product-layout .product-wishlist.product-wishlist-add {
    display: flex;
}

.product-layout .product-wishlist.product-wishlist-remove,
.product-layout .wished .product-wishlist.product-wishlist-add {
    display: none;
}

.product-layout .product-colors > span {
    color: #909090;
    font-size: 0.75rem;
    cursor: pointer;
}

.product-layout .product-colors ul {
	display: none;
	flex-wrap: wrap;
}

.product-layout .product-colors:hover > span {
    display: none;
}

.product-layout .product-colors:hover ul {
    display: flex;
}

.product-layout .product-colors ul span div {
    width: 20px;
    height: 20px;
    display: flex;
    border-radius: 50%;
    opacity: 0.5;
    border: 2px solid var(--color-pink);
}

.product-layout .product-colors ul span {
    cursor: pointer;
}

.product-layout .product-colors ul span:hover div {
    outline: 1px solid #ccc;
    opacity: 1;
}

.product-layout .product-colors {
    padding: 0.5rem 0;
    min-height: 35px;
}

.product-layout .product-colors ul {
    gap: 0.5rem;
}

.product-layout .sizes-available {
    display: flex;
    padding: 0.6rem;
    background-color: #fff;
    justify-content: center;
    gap: 1.2rem;
    width: 100%;
    line-height: 1.5;
    transform: translateY(100%);
    transition: 0.5s;
    position: relative;
    height: 44px;
}

.product-list-4 .product-layout .sizes-available {
    transform: none;
}

.product-layout .sizes-available .sizes-available-inner {
    display: flex;
    gap: 1.2rem;
    position: relative;
}

.product-layout:hover .sizes-available {
    transform: translateY(0);
    transition: 0.5s;
}

.product-layout .sizes-available span {
    opacity: 0.2;
    font-size: 0.7rem;
    min-width: 14px;
    align-items: center;
    display: flex;
}

.product-layout .sizes-available span.active {
    opacity: 1;
    cursor: pointer;
}

.product-layout .sizes-available span.active:hover, .product-layout .sizes-available span.active.selected {
	font-weight: 700;
}

.product-layout .product-block-actions {
    background-color: #000;
    padding: 0;
    z-index: 2;
    height: 44px;
    justify-content: center;
    display: flex;
}

.product-list-4 .product-layout .product-block-actions {
    transform: translateY(-100%);
    transition: 0.5s;
}

.product-list-4 .product-layout:hover .product-block-actions {
    transform: translateY(0);
    transition: 0.5s;
}

.product-layout .product-block-actions .product-cart {
    background-color: transparent;
    border: none;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 4.4px;
    font-size: 0.7rem;
    color: #fff;
    height: 100%;
    width: 100%;
    padding: 0.6rem;
}

.product-layout .product-block-actions .product-cart > div {
    width: fit-content;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.product-layout .product-block-actions .product-cart:focus {
    box-shadow: none;
}

.product-layout .product-block-actions .product-cart:hover {
    background-color: initial;
}

.product-layout .sizes-addcart-container {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    max-width: calc(100% - 1rem);
    opacity: 0;
	transition: 0.3s;
}

.product-list-4 .product-layout .sizes-addcart-container.sizes-addcart-container-grid-2,
.product-list-2 .product-layout .sizes-addcart-container.sizes-addcart-container-grid-4 {
    display: none !important;
}

.product-list-4 .product-layout .sizes-addcart-container.sizes-addcart-container-grid-4 {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 100%;
    margin-top: 0.7rem;
}

.product-layout:hover .sizes-addcart-container {
    opacity: 1;
	transition: 0.3s;
}

.product-layout .product-block-actions .product-cart:hover span {
    opacity: 0;
}

.product-layout .product-block-actions .product-cart i {
	transition: 0.3s;
	position: absolute;
	left: -0.5rem;
	transform: translateX(-100%);
}

.product-layout .product-block-actions .product-cart:hover i {
    font-size: 1rem;
    transition: 0.3s;
    left: 50%;
    transform: translateX(-50%);
}

.product-layout .product-block .product-top .product-block-image .product-thumbnail.product-thumbnail-alt {
    opacity: 0;
    transition: 0.3s;
    position: absolute;
    left: 0;
    top: 0;
}

.product-layout:hover .product-block .product-top .product-block-image .product-thumbnail {
	opacity: 0;
	transition: 0.3s;
}

.product-layout:hover .product-block .product-top .product-block-image .product-thumbnail.product-thumbnail-alt {
    opacity: 1;
    transition: 0.3s;
}

.product-layout.loading .product-block .product-top .loader {
	display: block;
}

.product-layout .product-block .product-top .loader {
	display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.product-layout.loading .product-block .product-top .product-block-image,
.product-layout.loading .sizes-addcart-container,
.product-layout.loading .product-colors,
.product-layout.loading .product-block .product-block-caption {
    opacity: 0.3;
}

@media all and (max-width: 1024px) {
    .product-layout .product-colors > span {
        display: none;
    }

    .product-layout .product-colors ul {
        display: flex;
    }

    .product-layout .product-colors ul span div {
        opacity: 1;
    }

    .product-layout .product-block .product-block-price {
        padding-left: 0;
    }
}

/* pagination */
.pagination-next ul.pagination,
.pagination-prev ul.pagination {
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 1.1px;
    font-size: 0.65rem;
    font-weight: 700;
    transition: 0.3s;
}

.pagination-next ul.pagination li a:after,
.pagination-prev ul.pagination li a:after {
    content: '';
    width: 0;
    height: 1px;
    display: block;
    position: absolute;
    bottom: -0.2rem;
    transition: 0.3s;
    background-color: #000;
}

.pagination-prev ul.pagination li a:after {
    right: 0;
}

.pagination-next ul.pagination li a:after {
    left: 0;
}

.pagination-next ul.pagination li a:hover:after,
.pagination-prev ul.pagination li a:hover:after {
    content: '';
    width: calc(100% - 1.5rem);
    transition: 0.3s;
}

.pagination-next ul.pagination li a,
.pagination-prev ul.pagination li a {
    display: flex;
    align-items: center;
	position: relative;
}

.pagination-prev ul.pagination li a {
	padding-left: 1.5rem;
}

.pagination-next ul.pagination li a {
	padding-right: 1.5rem;
}

.pagination-next ul.pagination li a i {
	position: absolute;
	right: 0.5rem;
	transition: 0.3s;
}

.pagination-next ul.pagination li a:hover i {
    right: 0;
	transition: 0.3s;
}

.pagination-prev ul.pagination li a i {
	position: absolute;
	left: 0.5rem;
	transition: 0.3s;
}

.pagination-prev ul.pagination li a:hover i {
    left: 0;
	transition: 0.3s;
}

.pagination-num ul.pagination {
    gap: 0.5rem;
}

.pagination-num ul.pagination li a,
.pagination-num ul.pagination li span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.pagination-num ul.pagination li a:hover {
	border-color: #000;
}

.pagination-num ul.pagination li.active {
	background-color: #000;
	color: #fff;
}

/* must have module */
.product-tabs-wrapper.must-have .swiper-button-next {
    right: -1.5rem;
}

.product-tabs-wrapper.must-have .swiper-button-prev {
	left: -1.5rem;
}

.product-tabs-wrapper.must-have .swiper-button-next::after,
.product-tabs-wrapper.must-have .swiper-button-prev::after {
    font-size: 0.7rem;
}

.product-tabs-wrapper.must-have .single-tab-title {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

.product-tabs-wrapper.must-have .single-tab-title .swiper-pagination {
    display: flex;
}

.product-tabs-wrapper.must-have .single-tab-title:after {
    content: '';
    background-color: #000;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
}

.product-tabs-wrapper.must-have .single-tab-title > span {
    background-color: var(--color-pink);
    z-index: 1;
    padding-right: 1rem;
}

.product-tabs-wrapper.must-have .single-tab-title .pagination-static {
    z-index: 1;
    background-color: var(--color-pink);
    padding-left: 1rem;
}

@media all and (max-width: 1024px) {
    .product-tabs-wrapper.must-have .swiper-button-next {
        right: 0;
    }

    .product-tabs-wrapper.must-have .swiper-button-prev {
        left: 0;
    }
}

@media all and (max-width: 991px) {
    .product-tabs-wrapper.must-have .product-layout .sizes-addcart-container,
    .product-tabs-wrapper.must-have .product-layout .product-block .product-wishlist {
        display: none !important;
    }

    .product-tabs-wrapper.must-have .swiper-scrollbar {
        max-width: 190px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -2rem;
        border-radius: 0;
    }

    .product-tabs-wrapper.must-have .swiper-scrollbar .swiper-scrollbar-drag {
        background: #000;
    }
}

/* common cart */
#offcanvasCart {
    z-index: 99999;
}

#offcanvasCart .offcanvas-body .btn-close {
    font-size: 0.5rem;
}

#offcanvasCart .offcanvas-body .btn-checkout {
    letter-spacing: 4.4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    background-color: #000;
    color: #fff;
    border-radius: 0;
    position: relative;
	border: 1px solid #000;
}

#offcanvasCart .offcanvas-body .btn i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
	transition: 0.3s;
}

#offcanvasCart .offcanvas-body .btn:hover i {
	transition: 0.3s;
	right: 1rem;
}

#offcanvasCart .offcanvas-body .btn-cart {
    letter-spacing: 4.4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    background-color: transparent;
    color: #000;
    border-radius: 0;
    position: relative;
	border: 1px solid #000;
}

#offcanvasCart .offcanvas-body .btn-checkout:hover,
#offcanvasCart .offcanvas-body .btn-cart:hover {
	background-color: #fff;
	color: #000;
}

#offcanvasCart .offcanvas-header span.counter {
    width: 18px;
    height: 18px;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    border-radius: 50%;
}

.cart_item-options span i {
    width: 14px;
    height: 14px;
    display: inline-flex;
    border-radius: 50%;
    margin-right: 0.3rem;
}

.cart_item-options span {
    display: inline-flex;
    align-items: center;
    width: 40%;
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* category page */
#product-category #product-container.product-list-2 .product-layout:nth-child(5n+5) {
    grid-column: 1/-1;
}

#product-category #product-container.product-list-2 .product-layout:nth-child(5n+5) .product-block {
    max-width: calc(50% - 1rem);
    margin: auto;
}

.product_category .mobile-filters-trigger {
    display: none;
}

@media all and (max-width: 1366px) {
    #product-category #product-container.tw-grid-cols-4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media all and (min-width: 1025px) and (max-width: 1200px) {
    #product-category #product-container.tw-grid-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media all and (max-width: 1024px) {
    .product_category .mobile-filters-trigger {
        display: flex;
        justify-content: center;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .scrolled .mobile-filters-trigger .ho-filter-title.ho-filter-trigger-container {
        position: relative;
    }

    .mobile-filters-trigger .ho-filter-title.ho-filter-trigger-container {
        margin-top: 0;
    }

    .product_category.scrolled .mobile-filters-trigger {
        position: fixed;
        top: 96px;
        left: 0;
        z-index: 99;
        width: calc(100% - 2 * var(--bs-gutter-x, .75rem));
        background-color: var(--color-pink);
        margin: 0 var(--bs-gutter-x, .75rem);
    }
}

@media all and (max-width: 991px) {
    #product-category .top-pagination {
        display: none;
    }

    #product-category .product-layout .product-block .product-wishlist {
        display: none;
    }

    #product-category .product-layout .sizes-addcart-container {
        display: none !important;
    }
}

@media all and (max-width: 768px) {
    #product-category #product-container.tw-grid-cols-4 {
        grid-template-columns: none;
        gap: 1rem;
        display: flex;
        flex-wrap: wrap;
    }

    #product-category #product-container.tw-grid-cols-4 .product-layout {
        width: calc(50% - 0.5rem);
    }

    #product-category #product-container.tw-grid-cols-4 .product-layout:nth-child(5n + 5) {
        width: 100%;
    }

    #product-category .pagination-next ul.pagination span,
    #product-category .pagination-prev ul.pagination span {
        display: none;
    }

    #product-category .pagination-prev,
    #product-category .pagination-next {
        width: 60px;
        height: 40px;
    }

    #product-category .pagination-prev li,
    #product-category .pagination-next li {
        border: 1px solid #000;
        height: 40px;
        width: 60px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    #product-category .pagination-num {
        flex: 1;
    }
}

/* filters section left */
.ho-filter-title.ho-filter-trigger-container {
    margin-top: 3.5rem;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
}

.ho-filter-trigger-button {
    gap: 0.5rem;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.ho-filter-trigger-button:after {
    content: '';
    width: 0px;
    height: 1px;
    background-color: #000;
    display: block;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.5s;
}

.ho-filter-trigger-button:hover:after {
    content: '';
    width: 100%;
    transition: 0.5s;
}

.scrolled .ho-filter-title.ho-filter-trigger-container {
    position: fixed;
}

#filtersOffcanvas .offcanvas-body {
    padding: 3rem;
}

.filter-group-block-wrap span.form-check-color-block {
    width: 16px;
    height: 16px;
    display: inline-flex;
    border-radius: 50%;
}

.filter-group-block-wrap span.form-check-image-block {
    align-items: center;
    display: flex;
}

.ho-filters-wrapper .filter-group-filters-container .form-check.filter-with-image {
    padding-left: 0;
    width: 49%;
    display: inline-flex;
}

.ho-filters-wrapper.filter-style-vertical-list .filter-group-container.gf1 .form-check {
    width: 49%;
    display: inline-flex;
}

.ho-filters-wrapper .filter-group-filters-container .form-check .form-check-input:checked {
    border-color: var(--color-dark);
}

#filtersOffcanvas .offcanvas-header {
    border-bottom: 1px solid #ccc;
    padding: 1.5rem;
}

#filtersOffcanvas .offcanvas-header .filters-responsive-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#filtersOffcanvas .offcanvas-header .filters-responsive-title {
    font-weight: 700;
    font-size: 0.75rem;
    gap: 0.5rem;
    display: flex;
    align-items: center;
}

#filtersOffcanvas .offcanvas-header .filters-responsive-close {
    cursor: pointer;
}

#filtersOffcanvas .offcanvas-footer {
    border-top: 1px solid #ccc;
    padding: 1.5rem;
}

#filtersOffcanvas .offcanvas-footer .filters-responsive-bottom .btn {
    letter-spacing: 4.4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    background-color: #000;
    color: #fff;
    border-radius: 0;
    position: relative;
    border: 1px solid #000;
    width: 100%;
}

#filtersOffcanvas .offcanvas-footer .filters-responsive-bottom .btn:hover {
    background-color: #fff;
    color: #000;
}

#filtersOffcanvas .offcanvas-footer .filters-responsive-bottom .btn i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    transition: 0.3s;
}

#filtersOffcanvas .offcanvas-footer .filters-responsive-bottom .btn:hover i {
    transition: 0.3s;
    right: 1rem;
}

#filtersOffcanvas .selected-filters-wrapper {
    display: none;
}

.filter-clear-all span {
    margin-bottom: 0;
    margin-top: auto;
    display: flex;
    align-items: center;
    background-color: rgb(255 255 255 / 60%);
    padding: 0.7rem 1rem;
    justify-content: center;
    color: #AE2424;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.75rem;
}

.filter-clear-all span:hover {
    background-color: rgb(174 36 36 / 60%);
    color: #fff;
}

#filtersOffcanvas .selected-filters-wrapper .selected-filter-block {
    background-color: #fff;
    padding: 0.2rem 0.5rem;
    font-size: 0.65rem;
    border: 1px solid #EBEBEB;
    border-radius: 3px;
}

#filtersOffcanvas .selected-filters-wrapper .selected-filter-block i {
    display: none;
}

@media all and (max-width: 768px) {
    #filtersOffcanvas {
        width: 90%;
    }

    #filtersOffcanvas .offcanvas-header .filters-responsive-close {
        background-color: #fff;
        padding: 0.2rem 0.5rem;
        border-radius: 50%;
        font-size: 0.7rem;
    }

    #filtersOffcanvas .offcanvas-body {
        padding: 1rem 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    #filtersOffcanvas .offcanvas-footer .filters-responsive-bottom .btn {
        letter-spacing: 1px;
        font-size: 0.6rem;
    }

    #filtersOffcanvas .selected-filters-wrapper {
        display: flex;
        margin-top: 0.5rem;
    }

    #filtersOffcanvas .offcanvas-footer {
        padding: 1.5rem 1rem;
    }

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

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

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

    .ho-filters-wrapper.filter-style-vertical-list .filter-group-container {
        border-bottom: 1px solid #ccc;
        padding: 1rem;
        margin-bottom: 0;
    }

    #filtersOffcanvas .offcanvas-header {
        border-bottom: 0;
        padding: 1rem;
    }

    .ho-filters-wrapper.filter-style-vertical-list .filter-group-container .filter-group-title-container .filter-group-title {
        width: 100%;
        display: flex;
        position: relative;
        align-items: center;
    }

    .ho-filters-wrapper.filter-style-vertical-list .filter-group-container .filter-group-title-container .filter-group-title:after {
        content: '\f054';
        font-family: 'Font Awesome 6 Pro';
        position: absolute;
        right: 0;
        font-weight: 300;
        font-size: 0.6rem;
        cursor: pointer;
    }

    .filter-clear-all {
        padding: 0 1rem;
    }

    .ho-filters-wrapper.filter-style-vertical-list .filter-group-container.opened .filter-group-filters-container {
        display: block;
        margin-top: 0.5rem;
    }

    #filtersOffcanvas .ho-filters-wrapper.filter-style-vertical-list .filter-group-container.opened .selected-filters-wrapper {
        display: none;
    }

    .ho-filters-wrapper.filter-style-vertical-list .filter-group-container.opened .filter-group-title-container .filter-group-title:after {
        content: '\f077';
    }
}

/* blog home */
.blog-list-container .mini-description {
    max-width: 600px;
    margin: auto;
}

.blog-list-container .btn.blog-read-more {
    position: relative;
    padding: 0;
    font-weight: 500;
    display: inline-flex;
    margin-top: 0.5rem;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
}

.blog-list-container .btn.blog-read-more:after {
	content: '';
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    position: absolute;
    background: #000;
	transition: 0.3s;
}

.blog-list-container .btn.blog-read-more:hover:after {
    width: 100%;
	transition: 0.3s;
}

.blog-list-container .btn.blog-read-more i {
    font-size: 0.6rem;
}

.blog-post-container,
.blog-list-container {
    max-width: 900px;
    margin: auto;
}

.blog-post-container .extra-images img:nth-child(1),
.blog-post-container .extra-images img:nth-child(2),
.blog-post-container .extra-images img:nth-child(3) {
    width: 31.33%;
}

.blog-post-container .extra-images img:nth-child(4) {
    width: 100%;
}

.blog-post-container .extra-images img:nth-child(5),
.blog-post-container .extra-images img:nth-child(6) {
    width: 48.5%;
}

.blog-post-container .backtoblog {
    border-bottom: 1px solid #000;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.blog-post-container .backtoblog a {
    color: var(--color-grey);
    font-size: 0.75rem;
    gap: 0.5rem;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.blog-post-container .backtoblog a:hover span {
    text-decoration: underline;
    color: #000;
}

/* product page */
#product-product span#shopthelook_link {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background-color: #fff;
    border: 1px solid #E1E1E1;
    border-radius: 17px;
    font-size: 0.6rem;
    padding: 0.5rem 1rem;
    letter-spacing: 1.8px;
    align-items: center;
    gap: 0.5rem;
    display: none;
    cursor: pointer;
}

#product-product span#shopthelook_link:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

#product-product .product-wishlist.product-wishlist-remove,
#product-product.wished .product-wishlist.product-wishlist-add {
    display: none;
}

#product-product.wished .product-wishlist.product-wishlist-remove,
#product-product .product-wishlist.product-wishlist-add {
    display: flex;
}

#product-product.wished .product-wishlist i {
    color: #000;
    font-weight: 900;
}

#product-product .product-wishlist.product-wishlist {
    height: auto;
    min-height: 0;
    padding: 0;
    align-items: center;
}

#product-product .product-wishlist.product-wishlist:focus {
    box-shadow: none;
}

#product-wrap {
    gap: 5rem;
}

#product-product .product-details li {
    letter-spacing: 2.2px;
    color: var(--color-grey);
    font-weight: 400;
    font-size: 0.75rem;
}

#product-product .product-details:after {
    content: '';
    height: 1px;
    background: #000;
    width: 4rem;
    position: absolute;
    left: 0;
    bottom: 0;
}

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

#sizeChartModal .modal-header {
    border-bottom: 1px solid #000;
    text-transform: uppercase;
}

#sizeChartModal .modal-content {
    border-radius: 0;
}

#sizeChartModal .modal-dialog {
    top: 50%;
    transform: translateY(-50%);
}

.modal-header .btn-close.close {
    color: #000 !important;
    opacity: 1;
    margin: 0;
    padding: 0;
    font-size: .75rem;
    line-height: 1.75rem;
    height: 1.75rem;
    width: 1.75rem;
    background-image: none;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 0;
    margin-left: auto;
    border: 1px solid #E1E1E1;
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}

.modal-header .btn-close.close:hover {
    color: #fff !important;
    background-color: #000;
}

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

#sizeChartModal .modal-body h4 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

#sizeChartModal table {
    width: 100%;
    margin-bottom: 2rem;
}

#sizeChartModal table tbody td {
    padding: 0.5rem;
    text-align: center;
}

#sizeChartModal table tbody tr:nth-child(even) {
    background-color: rgb(0 0 0 / 5%);
}

#sizeChartModal table tbody tr:nth-child(1) td,
#sizeChartModal table tbody tr td:nth-child(1) {
    font-weight: 700;
}

#sizeChartModal table tbody tr td:nth-child(1) {
    width: 20%;
}

#sizeChartModal table tbody tr td:nth-child(n+1) {
    width: 16%;
}

#product-product .product-custom-text-1, #product-product .product-ruler a {
    color: var(--color-grey);
    font-weight: 500;
    font-size: 0.75rem;
}

#product-product .product-ruler a:hover {
    color: #000;
}

#product-product .product-ruler a:hover span {
    text-decoration: underline;
}

#product-product .color_related-item {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

#product-product .color_related-item span {
    width: 25px;
    height: 25px;
    display: flex;
    border-radius: 50%;
}

#product-product .color_related-item.active, #product-product .color_related-item:hover {
    border-color: #000;
}

#product-product .color_related-item.active {
    order: -1;
}

#product-product .product-color_related h3 span {
    color: var(--color-grey);
    font-weight: 400;
}

#product-product .option-row .form-check {
    padding: 0;
    width: auto;
    opacity: 0.5;
    margin-bottom: 0;
}

#product-product .option-row {
    gap: 0.2rem;
    display: flex;
}

#product-product .option-row .form-check label {
    border: 1px solid #E1E1E1;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    font-size: 0.7rem;
    cursor: pointer;
}

#product-product .option-row .form-check label:hover,
#product-product .form-check-input:checked[type=radio] + label {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

#product-product .product-color_related {
	position: relative;
	padding-bottom: 1rem;
	margin-bottom: 0.5rem;
}

#product-product .product-color_related:after {
    content: '';
    height: 1px;
    background: #000;
    width: 4rem;
    position: absolute;
    left: 0;
    bottom: 0;
}

#product-product .options-row {
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
}

#product-product .option-row .form-check.active {
    opacity: 1;
}

#product-product .product-quantity .number-spinner {
    border-radius: 0;
}

#product-product .product-quantity .number-spinner button {
    font-size: 1.5rem;
    font-weight: 100;
}

#product-product .product-quantity {
    max-width: 150px;
    background-color: #fff;
    border: 1px solid #000;
    display: none;
}

#product-product .product-btn.has-quantity .product-quantity,
#product-product .product-btn.has-quantity .btn#button-cart,
#product-product .product-btn.has-quantity .btn#button-cart-alt,
#product-product .product-btn .btn#button-notify {
    display: flex;
}

#product-product .product-btn .btn#button-cart,
#product-product .product-btn .btn#button-cart-alt,
#product-product .product-btn.has-quantity .btn#button-notify {
	display: none;
}

#product-product .product-quantity .number-spinner span {
    display: inline-flex;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
}

#product-product .product-btn .btn#button-cart > div,
#product-product .product-btn .btn#button-notify > div {
    width: fit-content;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

#product-product .product-btn .btn#button-cart i,
#product-product .product-btn .btn#button-notify i {
    transition: 0.3s;
    font-weight: 500;
    font-size: 0.75rem;
    position: absolute;
    left: -0.5rem;
    transform: translateX(-100%);
	font-size:1rem;
}

#product-product .product-btn .btn#button-cart:hover span,
#product-product .product-btn .btn#button-notify:hover span,
#product-product .product-btn .btn#button-cart.loading span {
    display: none;
}

#product-product .product-btn .btn#button-cart:hover i,
#product-product .product-btn .btn#button-notify:hover i,
#product-product .product-btn .btn#button-cart.loading i {
    left: 50%;
    transform: translate(-50%);
}

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

#product-product #button-cart-alt {
    background-color: transparent;
    color: #000;
    width: 100%;
    letter-spacing: 4.4px;
    margin-top: 0.5rem;
    position: relative;
    transition: 0.3s;
    justify-content: center;
}

#product-product #button-cart-alt i {
    right: 2.5rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

#product-product #button-cart-alt:hover i {
    right: 1rem;
    transition: 0.3s;
}

#product-product #button-cart-alt:hover {
	background-color: #000;
	color: #fff;
}

#product-product .accordion-item {
    background-color: transparent;
    border-bottom: 1px solid rgba(0,0,0,.125);
}

#product-product #product-info .accordion-item.no-arrow .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#product-product #product-info .accordion-item.no-arrow .accordion-header .accordion-button::after {
	display: none;
}

#product-product #product-info .accordion-item.no-arrow button {
    width: fit-content;
}

#product-product #product-info .accordion-item.no-arrow .accordion-header span {
    color: var(--color-grey);
    font-size: 0.7rem;
}

#product-product .product-info_wrap-inner {
    position: sticky;
    top: 104px;
}

.product-usps > div {
    justify-content: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.product-usps img {
    width: 35px;
    height: 25px;
}

.product-usps span {
    font-weight: 500;
    font-size: 0.6rem;
    max-width: 150px;
}

#product-product button#button-notify {
    width: 100%;
    background-color: #000;
}

#reminderModal .modal-header {
    border-bottom: 0;
    padding-top: 2rem;
}

#reminderModal .modal-body {
    width: 400px;
    margin: auto;
    max-width: 100%;
}

#reminderModal .modal-header .modal-title {
    max-width: 300px;
    text-align: center;
}

#reminderModal .modal-body img {
    width: 120px;
}

#reminderModal .option-selected span.label_d {
    color: var(--color-grey);
    font-weight: 400;
    font-size: 0.8rem;
    display: block;
}

#reminderModal .option-selected span#reminder_size {
    background-color: #000;
    color: #fff;
    padding: 0.3rem 2rem;
    font-weight: 300;
    font-size: 0.7rem;
    margin-top: 0.5rem;
    display: inline-block;
    text-transform: uppercase;
}

#reminderModal input#reminder_email {
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid #000;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
}

#reminderModal input#reminder_email::placeholder {
    color: #000;
    font-size: 0.85rem;
    font-weight: 500;
}

#reminderModal button#reminder_send {
    letter-spacing: 4.4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    background-color: #000;
    color: #fff;
    border-radius: 0;
    position: relative;
    border: 1px solid #000;
}

#reminderModal button#reminder_send i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    transition: 0.3s;
}

#reminderModal button#reminder_send:hover {
    background-color: #fff;
    color: #000;
}

#reminderModal button#reminder_send:hover i {
    transition: 0.3s;
    right: 1rem;
}

#reminderModal .modal-dialog {
    max-width: 600px;
    top: 50%;
    transform: translateY(-50%);
}

#reminderModal {
    /* top: 50%; */
    /* transform: translateY(-50%); */
}

#imageSliderModal .modal-dialog {
    max-width: 100%;
    margin: auto;
    height: 100%;
}

#imageSliderModal .modal-content {
    border: 0;
    border-radius: 0;
    flex-direction: row;
    display: flex;
    height: 100%;
}

#imageSliderModal {
    overflow-y: hidden;
}

#imageSliderModal .modal-content .modal-body {
    max-width: calc(100% - 300px);
}

#imageSliderModal .modal-content .modal-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    width: 300px;
}

#imageSliderModal .swiper-slide img {
    width: 100%;
    object-fit: cover;
    height: auto;
}

#imageSliderModal #slideshow_image_slider {
	height: 100%;
}

#imageSliderModal .modal-header .btn-close.close {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin-left: 0;
    margin-bottom: 1rem;
}

#imageSliderModal .modal-header .modal-title {
    font-size: 1rem;
}

#imageSliderModal .swiper-wrapper .swiper-slide {
    padding-bottom: 2rem;
}

#imageSliderModal .swiper-scrollbar {
    width: 430px;
    max-width: 100%;
    margin: auto;
    left: 50%;
    transform: translateX(-50%);
}

#imageSliderModal .swiper-wrapper {
    max-width: 100%;
}

#imageSliderModal .modal-header .btn-close.close::before {
    content: '\f053';
}

@media all and (max-width: 1580px) {
    #product-wrap {
        gap: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 1580px) {
    .product-gallery_wrap {
        max-width: 450px;
    }
}

@media all and (max-width: 768px) {
    #product-wrap {
        flex-direction: column;
    }

    .product-gallery_wrap {
        margin-left: calc(calc(var(--bs-gutter-x) * .5) * -1);
        margin-right: calc(calc(var(--bs-gutter-x) * .5) * -1);
        width: calc(100% + 2 * calc(var(--bs-gutter-x) * .5));
        padding-bottom: 2rem;
    }

    #product-product .product-color_related:after {
        content: none;
    }

    #product-product .product-ruler {
        position: relative;
        padding-bottom: 1rem;
        margin-bottom: 0.5rem;
    }

    #product-product .product-ruler:after {
        content: '';
        height: 1px;
        background: #000;
        width: 4rem;
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .product-usps span {
        font-size: 0.5rem;
    }

    .product-gallery .swiper-container {
        overflow: hidden;
    }

    #product-product .product-gallery .swiper-pagination {
        bottom: -1rem;
    }

    #imageSliderModal .modal-content {
        flex-direction: column;
    }

    #imageSliderModal .modal-content .modal-header {
        width: 100%;
        padding: 1rem !important;
    }

    #imageSliderModal .modal-content .modal-body {
        max-width: 100%;
    }

    #product-product span#shopthelook_link {
        bottom: 1rem;
        top: auto;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    #product-product .tagger-wrapper {
        margin-top: 2rem;
    }

    #product-product #product-tabs {
        margin-bottom: 3rem;
    }
}

/* information stores */
.information-stores-content h1 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.information-stores-content .description {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    line-height: 27px;
}

.information-stores-content h4 {
    font-weight: 700;
    text-align: center;
    border-top: 1px solid #000;
    padding-top: 2rem;
}

.information-stores-content .stores-row {
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.information-stores-content .stores-row .store-block-wrap {
    width: calc(100% / 3 - 1.5rem);
    text-align: center;
    max-width: 280px;
    margin: auto;
}

.information-stores-content .stores-row .store-block-wrap img {
    border-radius: 10px;
}

.information-stores-content .stores-row .store-block-wrap .store-block-title {
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 1rem;
    position: relative;
    margin-bottom: 0.5rem;
    padding-bottom: 0.3rem;
}

.information-stores-content .stores-row .store-block-wrap .store-block-title:after {
	content: '';
	background-color: #000;
	width: 15px;
	height: 2px;
	position: absolute;
	left: 50%;
	bottom: -0.2rem;
	transform: translateX(-50%);
}

.information-stores-content .stores-row .store-block-wrap .store-block-address {
    font-size: 0.7rem;
}

.information-stores-content .stores-row .store-block-wrap .store-block-actions {
    flex-direction: column;
    display: flex;
    margin-top: 0.5rem;
}

.information-stores-content .stores-row .store-block-wrap .store-block-actions a.phone {
    font-weight: 500;
    font-size: 0.8rem;
}

.information-stores-content .stores-row .store-block-wrap .store-block-actions a.map {
    color: var(--color-grey);
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

@media all and (max-width: 1024px) {
    .information_stores .section-center > .row {
        margin: auto;
    }

    .information-stores-content .stores-row .store-block-wrap {
        width: calc(100% / 2 - 1rem);
    }
}

@media all and (max-width: 768px) {
    .information-stores-content .stores-row .store-block-wrap {
        width: 100%;
    }

    .thankyou-wrap .order-address-flex {
        padding: 2rem 1rem;
    }

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

    .thankyou-wrap .td-image {
        margin-right: 1rem;
    }

    .thankyou-wrap .wrap-tds {
        flex-flow: wrap;
    }

    .thankyou-wrap .wrap-td-block.td-name {
        width: 100%;
        font-size: 0.75rem;
    }

    .thankyou-wrap .wrap-td-block.td-color {
        width: 100%;
        padding-left: 0;
        margin: 0.5rem 0;
    }

    .checkout_success .wrap-td-block.td-option {
        padding-left: 0;
        font-size: 0.75rem;
    }
}

/* cart page */
#checkout-cart #content .top-btns h1 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
}

#checkout-cart #content .top-btns span.counter {
    font-weight: 500;
    font-size: 0.8rem;
}

#checkout-cart #content .top-btns .btn {
    padding: 0;
    opacity: 0.5;
    font-size: 0.8rem;
}

#checkout-cart #content .top-btns .btn:hover {
    opacity: 1;
}

#checkout-cart .cart-content .cart--product--card {
    border-bottom: 1px solid #ccc;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

#checkout-cart .product-quantity.product-common-cart {
    width: 125px;
}

#checkout-cart .product-quantity.product-common-cart button {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
    border-radius: 0;
}

#checkout-cart .wished .product-wishlist.product-wishlist-remove,
#checkout-cart .product-wishlist.product-wishlist-add {
    display: inline-flex;
    font-size: 0.75rem;
    opacity: 0.5;
    font-weight: 500;
    align-items: center;
    gap: 0.5rem;
    padding: 0.2rem 0.5rem 0.2rem 0rem;
}

#checkout-cart .product-wishlist.product-wishlist-remove,
#checkout-cart .wished .product-wishlist.product-wishlist-add {
    display: none;
}

#checkout-cart .wished .product-wishlist i {
    color: #000;
    font-weight: 900;
}

#checkout-cart .wished .product-wishlist.product-wishlist-remove:hover,
#checkout-cart .product-wishlist.product-wishlist-add:hover {
    opacity: 1;
}

#checkout-cart .wished .product-wishlist.product-wishlist-remove:hover span,
#checkout-cart .product-wishlist.product-wishlist-add:hover span {
    text-decoration: underline;
}

#checkout-cart .product-quantity.product-common-cart .number-spinner {
    border: 0;
}

#checkout-cart .product-quantity.product-common-cart input#input-quantity {
    font-size: 0.8rem;
}

#checkout-cart .cart--product--card .color,
div#cart1 .color
{
    font-size: 0.8rem;
    gap: 0.5rem;
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
}

#checkout-cart .cart--product--card .color span,
div#cart1 .color span
{
	width: 16px;
	height: 16px;
	display: inline-flex;
	border-radius: 50%;
}

#checkout-cart .product-usps {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#checkout-cart .product-usps span {
    max-width: 140px;
}

#checkout-cart .cart-sidebar {
    width: 370px;
    flex: 0 0 370px;
    max-width: 370px;
}

#checkout-cart .cart-content {
    flex: 1;
}

#checkout-cart .cart-sidebar .card-cart .card-header,
#checkout-cart .cart-sidebar .card,
#checkout-cart .cart-sidebar .card .card-header,
#checkout-cart .cart-sidebar .card-cart .card-footer {
    background-color: transparent;
    border-radius: 0;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-color: #000;
}

#checkout-cart .card-cart .card-footer .cart_total {
    padding: 0.5rem 0;
}

#checkout-cart .card-cart .card-footer .cart_total span {
    font-weight: 400;
    opacity: 0.6;
    font-size: 0.8rem;
    top: auto;
}

#checkout-cart .card-cart .card-footer .cart_total:last-child span {
    opacity: 1;
    font-size: 1rem;
    font-weight: 600;
}

#checkout-cart .cart-sidebar .card .card-header h3 {
    margin-bottom: 0;
}

#checkout-cart .cart-sidebar .card .card-header {
    margin-bottom: 0;
    border-bottom: 0;
}

#checkout-cart .cart-sidebar .cart-modules .card .card-header {
    padding: 0;
}

#checkout-cart .cart-sidebar .cart-modules .card .card-header h4 a {
    padding: 1rem;
    transition: 0.3s;
}

#checkout-cart .cart-sidebar .cart-modules .card .card-header h4 a:hover {
    background-color: #000;
    color: #fff;
    transition: 0.3s;
}

#checkout-cart .btn-checkout {
    letter-spacing: 3px;
    font-size: 0.65rem;
    text-transform: uppercase;
    background-color: #000;
    color: #fff;
    border-radius: 0;
    position: relative;
    border: 1px solid #000;
}

#checkout-cart .btn-checkout i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    transition: 0.3s;
}

#checkout-cart .btn-checkout:hover {
    background-color: #fff;
    color: #000;
}

#checkout-cart .btn-checkout:hover i {
    transition: 0.3s;
    right: 1rem;
}

#checkout-cart .cart-sidebar .card-title a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

#checkout-cart .cart-sidebar .card-title .collapsed i {
    transform: rotate(180deg);
}

#checkout-cart .cart-sidebar .card-title {
    margin-bottom: 0;
}

#checkout-cart .cart-sidebar #collapse-coupon .input-group,
#checkout-cart .cart-sidebar #collapse-voucher .input-group,
#checkout-cart .cart-sidebar #collapse-reward .input-group
{
    display: flex;
    flex-direction: column;
}

#checkout-cart .cart-sidebar #collapse-coupon .input-group > input, 
#checkout-cart .cart-sidebar #collapse-voucher .input-group > input,
#checkout-cart .cart-sidebar #collapse-reward .input-group > input,
#checkout-cart .cart-sidebar #collapse-reward .input-group > select
{
    width: 100%;
    border: 1px solid #000;
    border-radius: 0;
    margin-bottom: 0.2rem;
}
#checkout-cart .cart-sidebar #collapse-coupon .input-group > input, 
#checkout-cart .cart-sidebar #collapse-voucher .input-group > input,
#checkout-cart .cart-sidebar #collapse-reward .input-group > input,
#checkout-cart .cart-sidebar #collapse-reward .input-group > select
{
    width: 100%;
    border: 1px solid #000;
    border-radius: 0;
    margin-bottom: 0.2rem;
}

#checkout-cart .cart-sidebar #collapse-coupon .input-group span.input-group-btn,
#checkout-cart .cart-sidebar #collapse-voucher .input-group span.input-group-btn,
#checkout-cart .cart-sidebar #collapse-reward .input-group span.input-group-btn 
{
    width: 100%;
    margin: auto;
}

#checkout-cart .cart-sidebar #collapse-coupon .input-group span.input-group-btn input,
#checkout-cart .cart-sidebar #collapse-voucher .input-group span.input-group-btn input,
#checkout-cart .cart-sidebar #collapse-reward .input-group span.input-group-btn input
{
    font-size: 0.7rem;
    text-transform: uppercase;
    width: 100%;
    letter-spacing: 1.8px;
    border-radius: 0;
    background-color: #000;
}

#checkout-cart .cart-sidebar #collapse-coupon .input-group span.input-group-btn input:hover,
#checkout-cart .cart-sidebar #collapse-voucher .input-group span.input-group-btn input:hover,
#checkout-cart .cart-sidebar #collapse-reward .input-group span.input-group-btn input:hover
{
    background-color: #fff;
}

#checkout-cart .cart-sidebar #collapse-coupon .input-group > input::placeholder,
#checkout-cart .cart-sidebar #collapse-voucher .input-group > input::placeholder,
#checkout-cart .cart-sidebar #collapse-reward .input-group > input::placeholder
{
	font-size: 0.7rem;
}

#checkout-cart .product-usps.mobile,
#checkout-cart .btn-back.mobile {
    display: none;
}

@media all and (max-width: 1366px) {
    #checkout-cart .cart-sidebar {
        width: 300px;
        max-width: 300px;
        flex: 0 0 300px;
    }

    #checkout-cart .btn-checkout {
        letter-spacing: 1px;
    }
}

@media all and (max-width: 1200px) {
    .checkout-cart > .row {
        flex-direction: column;
    }

    #checkout-cart .cart-sidebar {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        margin-top: 3rem;
    }

    #checkout-cart .product-usps,
    #checkout-cart .btn-back {
        display: none;
    }

    #checkout-cart .product-usps.mobile,
    #checkout-cart .btn-back.mobile {
        display: flex;
    }

    #checkout-cart .btn-back.mobile {
        align-items: center;
        opacity: 0.5;
        justify-content: center;
        margin: 2rem 0;
        gap: 0.5rem;
    }
}

@media all and (max-width: 768px) {
    #checkout-cart .cart--product--card .cart-model-stock {
        width: 100%;
    }

    #checkout-cart .cart--product--card .color,
	#cart1 .color 
	{
        margin-bottom: 0;
        min-width: 100px;
    }

    #checkout-cart .product-quantity.product-common-cart .number-spinner {
        max-width: 100px;
    }

    #checkout-cart .product-quantity.product-common-cart {
        width: auto;
    }
}

/* success page */
.checkout_success .td-color span {
    width: 16px;
    height: 16px;
    display: inline-flex;
    border-radius: 50%;
    align-items: center;
    gap: 0.5rem;
}

.checkout_success .wrap-td-block.td-option {
    flex-direction: row;
    gap: 0.3rem;
    text-transform: uppercase;
    width: 120px;
    justify-content: flex-start;
}

.checkout_success .thankyou-wrap .wrap-td-block + .wrap-td-block .wrap-td-value {
    display: flex;
    align-items: center;
}

.thankyou-wrap .wrap-td-block.td-color .wrap-td-value {
    gap: 0.3rem;
    text-transform: uppercase;
}

/* about us page */
.about-us-container img {
    width: 100% !important;
	border-radius: 10px;
}

.information_information .about-us-container #content h1 {
    text-align: center;
    font-weight: 900;
    font-size: 1.8rem;
    margin-top: 0;
}

.information_information .about-us-container #content p {
    text-align: center;
}

.about-us-container .module-container h4 {
    text-align: center;
    font-weight: 700;
    letter-spacing: 2.8px;
    font-size: 0.9rem;
}

.about-us-container .content-bottom {
	margin-top: 4rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.about-us-container .content-bottom .banner-col {
    display: flex;
    flex-flow: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.about-us-container .content-bottom .banner-col a.banner-item {
    width: 50%;
}

.information_information .about-us-container #content h2 {
    margin: 0;
}

.about-us-container .content-bottom .banner-col a.banner-item {
    flex: 0 0 calc(50% - 0.5rem);
    border: 1px solid #000;
    padding: 0.7rem 1rem;
    text-align: center;
    font-size: 0.8rem;
    transition: 0.3s;
    letter-spacing: 2.4px;
    display: flex;
    justify-content: center;
    position: relative;
	transition: 0.3s;
}

.about-us-container .content-bottom .banner-col a.banner-item:last-child {
    flex: 0 0 100%;
}

.about-us-container .content-bottom .banner-col a.banner-item i {
    position: absolute;
    right: 1.5rem;
	transition: 0.3s;
}

.about-us-container .content-bottom .banner-col a.banner-item:hover i {
	right: 1rem;
}

.about-us-container .content-bottom .banner-col a.banner-item:hover {
	background-color: #000;
	color: #fff;
	transition: 0.3s;
}

/* three banners module */
.banner-container.threebanners {
    margin-bottom: 5rem;
    margin-top: 2rem;
}

.banner-container.threebanners .banner-item .banner-image video {
    width: 100%;
}

.banner-container.threebanners .banner-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.banner-container.threebanners .banner-image img {
    width: 100%;
}

.banner-container.threebanners .banner-caption {
    margin-top: 0.7rem;
    text-align: center;
}

.banner-container.threebanners .banner-caption .banner-title {
    font-size: 1.3rem;
    color: #000;
    font-weight: 900;
    margin-bottom: 0.3rem;
}

.banner-container.threebanners .banner-readmore .btn {
    border: 0;
    padding: 0;
    color: #000;
    font-weight: 400;
    position: relative;
    font-size: 0.75rem;
}

.banner-container.threebanners .banner-readmore .btn i {
    padding-left: 0.5rem;
}

.banner-container.threebanners .banner-readmore .btn:after {
    content: '';
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    position: absolute;
    background: #000;
    transition: 0.3s;
}

.banner-container.threebanners .banner-readmore .btn:hover:after {
    width: 100%;
    transition: 0.3s;
}

@media all and (max-width: 1480px) {
    .banner-container.threebanners .banner-caption .banner-title {
        font-size: 1rem;
    }
}

@media all and (max-width: 1024px) {
    .banner-container.threebanners .banner-image img {
        width: 100%;
    }

    .banner-container.threebanners .row.banner-row {
        row-gap: 2rem;
    }
}

/* account voucher */
#account-voucher h1.main-content-title {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

#account-voucher .description {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    font-size: 0.8rem;
}

#account-voucher .banner {
    width: 430px;
    max-width: 100%;
}

#account-voucher .form {
    flex: 1;
    align-items: center;
    display: flex;
}

#account-voucher .form input[type="text"], 
#account-voucher .form textarea {
    background-color: transparent;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #000;
    padding: 30px 0 10px 0;
}

#account-voucher .form input[type="text"]:focus,
#account-voucher .form textarea:focus {
    box-shadow: none;
}

#account-voucher .col-input label {
    position: absolute;
    top: 10px;
    z-index: 4;
    transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    font-size: 0.8rem;
}

#account-voucher .form .col-input {
	position: relative;
	width: 48%;
	display: inline-flex;
	flex-direction: column;
}

#account-voucher .col-input label.f-up {
    top: 5px;
    z-index: 9;
    color: #808080;
    font-size: 12px;
}

#account-voucher .btn#voucher-submit-alt {
    color: #fff;
    background-color: #000;
    border-color: #000;
    letter-spacing: 4.4px;
    position: relative;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 0;
    font-size: 0.7rem;
}

#account-voucher .btn#voucher-submit-alt > div {
    width: fit-content;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

#account-voucher .btn#voucher-submit-alt i {
    transition: 0.5s;
    font-weight: 500;
    font-size: 0.75rem;
    position: absolute;
    left: -0.5rem;
    transform: translateX(-100%);
}

#account-voucher .btn#voucher-submit-alt:hover i {
    transition: 0.5s;
    left: 50%;
    transform: translate(-50%);
    font-size: 1rem;
}

#account-voucher .btn#voucher-submit-alt:hover span {
    display: none;
}

#account-voucher #voucher-submit-quick {
    background-color: transparent;
    color: #000;
    width: 100%;
    letter-spacing: 4.4px;
    position: relative;
    transition: 0.3s;
    border: 1px solid #000;
    border-radius: 0;
    font-size: 0.7rem;
}

#account-voucher #voucher-submit-quick i {
    right: 2.5rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

#account-voucher #voucher-submit-quick:hover {
    background-color: #000;
    color: #fff;
}

#account-voucher #voucher-submit-quick:hover i {
    right: 1rem;
    transition: 0.3s;
}

#account-voucher .form .text-danger {
    font-size: 0.7rem;
}

#account-voucher .form input#input-amount {
    background-color: #fff;
    border: 1px solid #E1E1E1;
    padding: 10px;
    color: var(--color-grey);
    width: 150px;
    font-size: 0.7rem;
}

#account-voucher .amounts-extra input {
    display: none;
}

#account-voucher .amount-extra {
    background-color: #fff;
    border: 1px solid #E1E1E1;
    color: var(--color-grey);
    cursor: pointer;
}

#account-voucher .amount-extra label {
    padding: 10px;
    cursor: pointer;
}

#account-voucher .amount-extra:hover {
    border-color: #000;
}

#account-voucher .amount-extra.active {
    background-color: #000;
	color: #fff;
}

#account-voucher .banner img {
    border-radius: 10px;
}

#account-voucher .product-block-actions .product-cart:hover span {
    opacity: 0;
}

#account-voucher .form form .col-input:nth-child(2), #account-voucher .form form .col-input:nth-child(4) {
    margin-left: 2%;
}

@media all and (max-width: 991px) {
    #account-voucher .banner {
        margin: auto;
        max-width: 280px;
    }
}

@media all and (max-width: 768px) {
    #account-voucher .form .col-input {
        width: 100%;
    }

    #account-voucher .form form .col-input:nth-child(2), #account-voucher .form form .col-input:nth-child(4) {
        margin-left: 0;
    }

    #account-voucher .form input#input-amount,
    #account-voucher .amounts-extra {
        margin: auto;
        text-align: center;
        justify-content: center;
    }
}

/* common success */
#common-success #content {
    padding-top: 5rem;
    text-align: center;
}

#common-success #content h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

#common-success #content .buttons {
    margin-top: 1rem;
}

#common-success #content .message {
    max-width: 800px;
    margin: auto;
}

#common-success #content .buttons > a {
    border-radius: 0;
    background-color: #000;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    font-size: 0.7rem;
}

#common-success #content .buttons > a:hover {
    background-color: #fff;
	color: #000;
}

@media all and (max-width: 768px) {
    #common-success #content {
        padding-top: 0;
        margin-top: 0;
    }

    #common-success #content h1 {
        font-size: 1.1rem;
        font-weight: 600;
    }
}

/* information page */
#information-information h1 {
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
}

#information-information h3 {
    font-weight: 700;
}

/* fixed social */
#social-links {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#social-links a {
    font-size: 0.6rem;
    display: inline-flex;
    justify-content: end;
    gap: 0.5rem;
    font-weight: 500;
    align-items: center;
}

#social-links a:hover {
    color: var(--color-grey);
}

@media all and (max-width: 1024px) {
    #social-links { 
        display: none;
    }
}

/* account register */
#account-register.container-account, #account-login.container-account {
    max-width: 100%;
}

#account-register #content {
    max-width: 500px;
    margin: auto;
}

#account-register input[type="text"], #account-register textarea, #account-register input[type="email"], #account-register input[type="tel"], #account-register input[type="date"], #account-register input[type="password"], #account-login input[type="email"], #account-login input[type="password"], #account-forgotten input[type="email"] {
    background-color: transparent;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #000;
    padding: 30px 0 10px 0;
}

#account-register .col-input label, #account-login .col-input label, #account-forgotten .col-input label {
    position: absolute;
    top: 10px;
    z-index: 4;
    transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    font-size: 0.8rem;
}

#account-register .col-input, #account-login .col-input, #account-forgotten .col-input {
	position: relative;
	flex-direction: column;
}

#account-register .col-input label.f-up, #account-login .col-input label.f-up, #account-forgotten .col-input label.f-up {
    top: 5px;
    z-index: 9;
    color: #808080;
    font-size: 12px;
}

#account-register h1 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

#account-register p {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

#account-register form {
    margin-top: 2rem;
}

#account-register .btn-container {
    letter-spacing: 4.4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    background-color: #000;
    border-radius: 0;
    position: relative;
    border: 1px solid #000;
}

#account-register .btn-container .btn,
#account-register .btn-container i {
    color: #fff;
}

#account-register .btn-container i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    transition: 0.3s;
}

#account-register .btn-container:hover {
    background-color: #fff;
}

#account-register .btn-container:hover .btn,
#account-register .btn-container:hover i {
    color: #000;
}

#account-register .btn-container:hover i {
    transition: 0.3s;
    right: 1rem;
}

#account-register .form-check-input:checked {
    background-color: #000;
    border-color: #000;
}

#account-register.b2b #content {
    max-width: 900px;
}

#account-register.b2b .col-input {
    width: 48%;
    display: inline-flex;
}

#account-register .bottom {
    max-width: 450px;
    margin: 2rem auto 0 auto;
}

#account-register.b2b #account .col-input:nth-child(2n+3), #account-register.b2b #password-fieldset .col-input:nth-child(2) {
    margin-left: 2%;
}

#account-register form .required label:after {
    content: none;
}

@media all and (max-width: 576px) {
    #account-register > .row {
        margin: auto;
    }
}

/* login */
#account-login {
    padding-top: 2rem;
}

#account-login h1, #account-login h2, #account-forgotten h3 {
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

#account-login p {
    opacity: 0.6;
    font-size: 0.75rem;
}

#account-login form {
    margin-top: 2rem;
}

#account-login .columns-container > div {
    width: 450px;
    max-width: 100%;
    flex-direction: column;
}

#account-login .columns-container {
    justify-content: center;
}

#account-login .forgot a {
    opacity: 0.6;
    font-size: 0.75rem;
    font-weight: 500;
    gap: 0.5em;
    display: flex;
    justify-content: end;
    align-items: center;
}

#account-login .forgot a:hover {
    opacity: 1;
}

#account-login .forgot a:hover span {
    text-decoration: underline;
}

#account-login .register-top p {
    max-width: 350px;
}

#account-login .register-top ul {
    margin: 1rem auto 2rem auto;
}

#account-login .register-top ul li {
    font-weight: 500;
    font-size: 0.8rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.2rem 0;
}

#account-login .register-top ul li i {
    width: 35px;
    height: 35px;
    background-color: #000;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#account-login #login-button,
#account-login .register-top a.btn,
#account-login .register-bottom a.btn {
    font-size: 0.8rem;
    background-color: #000;
    color: #fff;
    border-radius: 0;
    position: relative;
    border: 1px solid #000;
    justify-content: center;
}

#account-login #login-button i,
#account-login .register-top a.btn i,
#account-login .register-bottom a.btn i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    transition: 0.3s;
}

#account-login #login-button:hover,
#account-login .register-top a.btn:hover,
#account-login .register-bottom a.btn:hover {
    background-color: #fff;
    color: #000;
}

#account-login #login-button:hover i,
#account-login .register-top a.btn:hover i,
#account-login .register-bottom a.btn:hover i {
    transition: 0.3s;
    right: 1rem;
}

#account-login .register-bottom {
    margin-top: 7.5rem;
}

#account-login .register-bottom a.btn {
    margin-top: 1rem;
}

#account-login .social-logins {
    margin-top: 3rem;
}

#account-login .social-logins h3 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
}

#account-login .social-logins p {
    opacity: 0.6;
    font-size: 0.75rem;
}

#account-login .social-logins .social_login {
    flex-direction: column;
    display: flex;
    gap: 0.5rem;
}

#account-login .social-logins .content-bottom {
    margin-top: 1rem;
}

#account-login .social-logins .social_login a.socalicon {
    width: 100%;
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
    text-align: center;
    padding: 0.625rem 1.25rem;
    transition: 0.3s;
    font-size: 0.8rem;
    position: relative;
}

#account-login .social-logins .social_login a.socalicon:hover {
    background-color: #fff;
    color: #000;
    transition: 0.3s;
}

#account-login .social-logins .social_login a.socalicon i {
    transform: translateY(-50%);
    position: absolute;
    left: 1rem;
    top: 50%;
}

#account-login .social-logins h3:after {
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    content: '';
}

#account-login .social-logins h3 span {
    padding-right: 1rem;
    background-color: var(--color-pink);
    z-index: 1;
    position: relative;
}

@media all and (max-width: 1024px) {
    #account-login > .row {
        margin: auto;
    }
}

@media all and (max-width: 768px) {
    #account-login .columns-container {
        flex-direction: column;
    }

    #account-login .columns-container > div {
        width: 100%;
    }

    #account-login .register-bottom {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
}

/* forgotten */
#account-forgotten form {
    max-width: 400px;
    margin: 2rem auto;
}

#account-forgotten form input.btn {
    border-radius: 0;
}

/* checkout footer */
body.extension_quickcheckout_checkout .footer-wrap {
    display: none;
}

body.extension_quickcheckout_checkout .payment-logos {
    border-top: 1px solid #000;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

body.extension_quickcheckout_checkout .payment-logos img {
    height: 25px;
}

/* quicklogin */
#quickLogin input#input-login-email,
#quickLogin input#password {
    background-color: transparent;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #000;
}

#quickLogin button#button-login {
    background-color: #000;
    color: #fff;
    border-radius: 0;
    text-transform: uppercase;
    border: 1px solid #000;
}

#quickLogin button#button-login:hover {
    background-color: #fff;
    color: #000;
}

/* checkout */

#shipping-method,
#payment-method,
.quick-checkout .checkout-login {
    border: 1px solid #000;
    padding: 1rem;
    margin-bottom: 2rem;
}

.giftwrap_box.order {
    border: 1px solid #000;
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 0.5rem;
}

label#giftselect {
    justify-content: space-between;
    display: inline-flex;
    flex: 1;
}

fieldset#choosegift {
    display: none !important;
}

#shipping-method.card-checkout .card-heading,
#payment-method.card-checkout .card-heading {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.quickcheckout-login-choose {
    display: flex;
    justify-content: space-between;
}

.quickcheckout-login-choose .buttons {
    display: flex;
    gap: 0.5rem;
}

.quickcheckout-login-choose .buttons button.btn,
.quickcheckout-login-choose .buttons a.btn,
button#button-payment-method{
    font-size: 0.8rem;
    background-color: #000;
    color: #fff;
    border-radius: 0;
    position: relative;
    border: 1px solid #000;
    align-items: center;
    display: inline-flex;
    padding: 0.7rem 3rem;
}

.quickcheckout-login-choose .buttons button.btn i,
.quickcheckout-login-choose .buttons a.btn i,
button#button-payment-method i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    transition: 0.3s;
}

button#button-payment-method {
    letter-spacing: 3.4px;
    text-transform: uppercase;
    padding: 0.7rem;
    justify-content: center;
    font-size: 0.7rem;
}

.quickcheckout-login-choose .buttons button.btn:hover,
.quickcheckout-login-choose .buttons a.btn:hover,
button#button-payment-method:hover {
    background-color: #fff;
    color: #000;
}

.quickcheckout-login-choose .buttons button.btn:hover i,
.quickcheckout-login-choose .buttons a.btn:hover i,
button#button-payment-method:hover i {
    transition: 0.3s;
    right: 1rem;
}

body #header.checkout_header,
body.scrolled #header.checkout_header {
    position: relative;
    border: 0;
    box-shadow: none;
    padding: 1rem;
}

#header.checkout_header .header-main-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    gap: 1rem;
}

#header.checkout_header .header-main-wrapper .question,
#header.checkout_header .header-main-wrapper .cards {
    flex: 1;
}

#header.checkout_header .header-main-wrapper .cards {
    justify-content: end;
    display: inline-flex;
}

#header.checkout_header .header-main-wrapper .cards img {
    max-height: 30px;
}

body #header.checkout_header {
    margin-bottom: 2rem;
}

.checkout_header .header-logo img {
    width: 165px;
}

#header.checkout_header .header-main-wrapper .question i {
    background-color: #fff;
    padding: 0.8rem;
    border-radius: 50%;
    border: 1px solid #E1E1E1;
    font-size: 1.2rem;
}

#header.checkout_header .header-main-wrapper .question a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#header.checkout_header .header-main-wrapper .question a div > span:nth-child(1) {
    font-weight: 500;
    color: rgb(0 0 0 / 60%);
    font-size: 0.75rem;
}

#header.checkout_header .header-main-wrapper .question a div > span:nth-child(2) {
    font-weight: 700;
    font-size: 0.8rem;
}

#header.checkout_header .header-main-wrapper .question a div {
    display: flex;
    flex-direction: column;
}

#header.checkout_header .header-main-wrapper .question a:hover div > span:nth-child(2) {
    text-decoration: underline;
}

#payment-address .col-input,
#shipping-address .col-input {
    position: relative;
    flex-direction: column;
}

#payment-address .col-input:not(.col-payment_address) label, #shipping-address .col-input:not(.col-shipping_address):not(.col-payment_address) label {
    position: absolute;
    top: 10px;
    z-index: 4;
    transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    font-size: 0.8rem;
}

#payment-address .col-input input:not([type="checkbox"]):not([type="radio"]), #shipping-address .col-input input:not([type="checkbox"]):not([type="radio"]), #payment-address .col-input select, #shipping-address .col-input select {
    background-color: transparent;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #000;
    padding: 30px 0 10px 0;
}

#payment-address .col-input:not(.col-payment_address) label.f-up, #shipping-address .col-input:not(.col-shipping_address) label.f-up {
    top: 5px;
    z-index: 9;
    color: #808080;
    font-size: 0.75rem;
}

#payment-address .col-shipping_address {
    padding: 1rem;
    display: flex;
    border: 1px solid #000;
    margin: 2rem calc(var(--bs-gutter-x) * .5);
    width: calc(100% - 2 * calc(var(--bs-gutter-x) * .5));
}

#payment-address .col-shipping_address .form-check {
    margin-bottom: 0;
    align-items: center;
    display: flex;
    min-height: 0;
}

#payment-address .col-shipping_address .form-check {
    margin-bottom: 0;
    align-items: center;
    display: flex;
    min-height: 0;
    gap: 0.5rem;
    font-weight: 600;
}

#payment-address .col-shipping_address .form-check label {
    position: relative;
    top: 1px;
    color: #000;
    font-size: 0.8rem;
}

#payment-address .col-create_account {
    margin: 1rem auto;
    display: flex;
}

#payment-address .col-create_account .form-check label, #payment-address .col-agree label, #payment-address .col-newsletter label {
    position: relative;
    top: 2px;
    color: #000;
    font-size: 0.8rem;
}

#payment-address .col-create_account .form-check {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#payment-method.alt-id {
    border: 0;
    padding: 0;
}

#payment-method.alt-id label {
    font-size: 0.75rem;
}

#payment-method.alt-id textarea {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #000;
    padding: 0;
}

#payment-method.alt-id textarea::placeholder {
    font-size: 0.8rem;
}

.card-checkout .card-content .col-input.required label:after {
    content: none;
}

#quickLogin .modal-header {
    border-bottom: 0;
}

.card-checkout#shipping-method .card-content .form-check strong,
.card-checkout#payment-method .card-content .form-check strong {
    font-weight: 500;
    font-size: 0.9rem;
}

.card-checkout#shipping-method .card-content .form-check input:checked + label strong,
.card-checkout#payment-method .card-content .form-check input:checked + label strong {
    font-weight: 700;
}

.card-checkout#shipping-method .card-content .form-check p,
.card-checkout#payment-method .card-content .form-check p {
    color: rgb(0 0 0 / 60%);
}

#checkout-checkout .totals-only .card-body {
    display: none !important;
}

.extension_quickcheckout_checkout #social-links {
    display: none;
}

#mini_cart .card-footer .cart_total span {
    font-weight: 400;
    opacity: 0.6;
    font-size: 0.8rem;
}

#mini_cart .card-footer .cart_total {
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#mini_cart .card-footer .cart_total span {
    font-weight: 400;
    opacity: 0.6;
    font-size: 0.8rem;
    top: auto;
}

#mini_cart .card-footer .cart_total:last-child span {
    opacity: 1;
    font-size: 1rem;
    font-weight: 600;
}

#checkout-checkout #voucher .card-header {
    background-color: transparent;
    border-radius: 0;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-color: #000;
}

#checkout-checkout #voucher .card-header {
    margin-bottom: 0;
    border-bottom: 0;
    padding: 0;
}

#checkout-checkout #voucher .card-title {
    margin-bottom: 0;
}

#checkout-checkout #voucher .card-title a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 1rem 0.7rem;
    transition: 0.3s;
}

#checkout-checkout #voucher .card-title a:hover {
    background-color: #000;
    color: #fff;
    transition: 0.3s;
}

#checkout-checkout #voucher .card-title .collapsed i {
    transform: rotate(180deg);
}

#checkout-checkout #voucher #collapse-coupon .input-group, 
#checkout-checkout #voucher #collapse-voucher .input-group,
#checkout-checkout #reward #collapse-reward .input-group
{
    display: flex;
    flex-direction: column;
}

#checkout-checkout #voucher #collapse-coupon .input-group > input, 
#checkout-checkout #voucher #collapse-voucher .input-group > input,
#checkout-checkout #reward #collapse-reward .input-group > input,
#checkout-checkout #reward #collapse-reward .input-group > select
{
    width: 100%;
    border: 1px solid #000;
    border-radius: 0;
    margin-bottom: 0.2rem;
}

#checkout-checkout #voucher #collapse-coupon .input-group span.input-group-btn, 
#checkout-checkout #voucher #collapse-voucher .input-group span.input-group-btn,
#checkout-checkout #reward #collapse-reward .input-group span.input-group-btn

{
    width: 100%;
    margin: auto;
}

#checkout-checkout #voucher #collapse-coupon .input-group span.input-group-btn input, 
#checkout-checkout #voucher #collapse-voucher .input-group span.input-group-btn input,
#checkout-checkout #reward #collapse-reward .input-group span.input-group-btn input

{
    font-size: 0.7rem;
    text-transform: uppercase;
    width: 100%;
    letter-spacing: 1.8px;
    border-radius: 0;
    background-color: #000;
}

#checkout-checkout #voucher #collapse-coupon .input-group span.input-group-btn input:hover,
#checkout-checkout #voucher #collapse-voucher .input-group span.input-group-btn input:hover,
#checkout-checkout #reward #collapse-reward .input-group span.input-group-btn input:hover
{
    background-color: #fff;
}

#checkout-checkout #voucher .card {
    background-color: transparent;
    border: 0;
    border-radius: 0;
}

.checkout-wrap .checkout-sidebar .quickcheckoutleft {
    border: 1px solid #000;
}

#mini_cart .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

#mini_cart .card-header h3 {
    margin-bottom: 0;
}

#mini_cart .card-header i {
    cursor: pointer;
}

#mini_cart .card-header a.edit-cart {
    font-size: 0.7rem;
    opacity: 0.5;
    font-weight: 500;
    margin-right: 1rem;
    margin-left: auto;
}

#mini_cart .card-header a.edit-cart:hover {
    opacity: 1;
    text-transform: underline;
}

#checkout-checkout #mini_cart .hidden i {
    transform: rotate(180deg);
}

#checkout-checkout .card-cart .card-body .cart_item + .cart_item {
    border-top: 1px solid #ccc;
}

#checkout-checkout .products-only .card-footer {
    display: none;
}

#checkout-checkout #cart1, #checkout-checkout .quickcheckoutmid.totals-terms, #checkout-checkout #voucher .card {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
}

#checkout-checkout #cart1 {
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

#checkout-checkout #voucher .card {
    border-top: 1px solid #000;
    padding: 0;
}

#voucher .card-body {
    padding: 0;
}

#checkout-checkout #voucher #collapse-coupon .input-group > input::placeholder,
#checkout-checkout #voucher #collapse-voucher .input-group > input::placeholder {
    font-size: 0.8rem;
}

#checkout-checkout .quickcheckoutmid.totals-terms {
    border-top: 1px solid #000;
    padding-top: 0.7rem;
}

#checkout-checkout .quickcheckoutmid.totals-terms #mini_cart .card-header a.edit-cart, #checkout-checkout .quickcheckoutmid.totals-terms #mini_cart .card-header #cart-slide-toggle {
    display: none;
}

#checkout-checkout #cart1.totals-only {
    padding: 0;
}

#voucher #collapse-coupon .card-body, 
#voucher #collapse-voucher .card-body,
#voucher #collapse-reward .card-body
{
    margin-top: 0.5rem;
    padding: 0.7rem;
}

#terms label[for=agree] {
    font-size: 0.7rem;
}

#checkout-checkout #cart1 h3.totals-only,
#checkout-checkout #cart1.totals-only h3.products-only {
    display: none;
}

#checkout-checkout #cart1.totals-only h3.totals-only {
    display: block;
}

#checkout-checkout #terms {
    margin-top: 1rem;
}

#checkout-checkout .locations-container {
    width: 100%;
    margin-top: 1rem;
    display: none;
}

#checkout-checkout .locations-container select, #checkout-checkout .locations-container .select-selected {
    padding: 0.7rem;
    border: 1px solid #ccc;
    margin-left: 0.5rem;
    background-color: #fff;
    position: relative;
    width: 500px;
    max-width: 100%;
}

#checkout-checkout input:checked + label + .locations-container {
    display: flex;
}

#mini_cart .card-footer .cart_total span:nth-child(2) {
    max-width: fit-content;
}

#payment-custom-field4,
.col-input.col-customer_group {
    display: none !important;
}

#custom-field-invoice .custom-field {
    display: flex !important;
}

#custom-field-payment {
    padding: 0;
}

#custom-field-payment .col-input:not(#payment-custom-field8):not(#payment-custom-field4) {
    width: 49.8%;
    display: inline-flex !important;
}

#checkout-checkout .custom-select {
    position: relative;
    font-family: Arial;
}
  
#checkout-checkout .custom-select select {
    display: none;
}

#checkout-checkout .select-items > div {
    padding: 0.5rem;
}
  
#checkout-checkout .select-selected:after {
    position: absolute;
    content: "\f078";
    right: 2rem;
    width: 0;
    height: 0;
    font-family: 'Font Awesome 6 Pro';
    transform: translateY(-50%);
}
  
#checkout-checkout .select-selected.select-arrow-active:after {
    content: "\f077";
}
  
#checkout-checkout  .select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    margin-left: 0.5rem;
    width: 500px;
    max-width: 100%;
    border-width: 0px 1px 1px 1px;
    border-color: #ccc;
    border-style: solid;
}
  
#checkout-checkout  .select-hide {
    display: none;
}
  
#checkout-checkout .select-items div:hover, 
#checkout-checkout .same-as-selected {
    background-color: var(--color-pink);
}

#checkout-checkout .locations-container .select-selected.select-arrow-active {
    border-bottom-color: transparent;
}

@media all and (max-width: 1680px) {
    .quickcheckout-login-choose .buttons button.btn, .quickcheckout-login-choose .buttons a.btn, button#button-payment-method {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media all and (max-width: 1480px) {
    .checkout-wrap .checkout-content {
        padding-left: 2rem;
    }

    .checkout-wrap .checkout-sidebar {
        margin-right: 2rem;
    }
}

@media all and (max-width: 1200px) {
    .checkout-wrap .checkout-sidebar {
        padding-left: 1rem;
    }

    .checkout-wrap .checkout-content {
        padding-right: 1rem;
    }

    .quickcheckout-login-choose {
        flex-direction: column;
        gap: 0.5rem;
    }

    .quick-checkout #quickcheckoutconfirm {
        padding-top: 1rem;
    }
}

@media all and (max-width: 991px) {
    body #header.checkout_header {
        margin-bottom: 1rem;
    }

    body #header.checkout_header .container-xxl {
        padding: 0;
    }

    #header.checkout_header .header-main-wrapper .question a div {
        display: none;
    }

    .checkout_header .header-logo {
        max-width: 100px;
        flex: auto;
    }

    #header.checkout_header .header-main-wrapper .question {
        flex: auto;
        max-width: fit-content;
    }

    #header.checkout_header .header-main-wrapper {
        gap: 0.5rem;
    }

    .checkout-wrap .checkout-content {
        padding-left: 1rem;
    }

    .checkout-wrap .checkout-sidebar {
        margin-right: 1rem;
        margin: auto;
    }

    .checkout_body #checkout-checkout {
        flex-direction: column;
    }
}

@media all and (max-width: 768px) {
    #payment-address .col-input, 
    #shipping-address .col-input,
    #custom-field-payment .col-input:not(#payment-custom-field8):not(#payment-custom-field4) {
        width: 100%;
    }

    .quick-checkout .checkout-login {
        text-align: center;
    }

    .quickcheckout-login-choose .buttons {
        justify-content: center;
    }

    .quickcheckout-login-guest {
        text-align: center;
    }

    #custom-field-invoice .custom-field {
        justify-content: center;
    }

    #payment-address .col-shipping_address {
        margin-top: 1rem;
        margin-bottom: 1rem;
        width: calc(100% - 2 * calc(var(--bs-gutter-x) * .5));
    }

    .checkout-wrap .checkout-sidebar {
        padding-left: 0;
    }

    #mini_cart .card-body {
        display: none;
    }

    #mini_cart .card-header a.edit-cart {
        display: none;
    }

    #checkout-checkout #mini_cart .hidden i {
        transform: none;
    }

    #checkout-checkout #mini_cart i {
        transform: rotate(180deg);
    }

    #checkout-checkout #voucher .card-title .collapsed i {
        font-weight: 600;
    }

    #payment-address.card-checkout .card-content .col-postcode {
        width: 35%;
    }

    #payment-address.card-checkout .card-content .col-city {
        width: 65%;
    }

    #checkout-checkout .select-items {
        max-width: 250px;
    }

    #checkout-checkout .locations-container select,
    #checkout-checkout .locations-container .select-selected {
        width: 250px;
    }

    #header.checkout_header .header-main-wrapper .cards img {
        max-height: none;
        max-width: 160px;
    }
}
 
/* custom invoice */
#payment-address #custom-field-invoice .col-input label, #payment-address #custom-field-invoice .col-input label.f-up {
    position: relative;
    top: auto;
    color: #000;
    font-size: 0.8rem;
    transition: 0s;
}

#payment-address #custom-field-invoice .col-input input:checked + label {
    font-weight: 600;
}

/* shop the look */
.product-tag_container .product-tag_imgparent .product-tagger-image-wrapper {
    position: relative;
}

.product-tag_container .product-tag_imgparent .product-tagger-image-wrapper .product_tag__Points {
    opacity: 0;
    transition: all .3s;
}

.product-tag_container .product-tag_imgparent .product-tagger-image-wrapper:hover .product_tag__Points, .product-tag_container .product-tag_imgparent .product-tagger-image-wrapper:hover button.check-look {
    opacity: 1;
    bottom: 1rem;
}

.product-tag_container .product-tag_point {
    position: absolute;
    background: #fff;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    transform: translate(-50%,-50%);
    transition: transform 0.3s;
}

.product-tag_container .product-tag_point:before {
    content: "";
    position: absolute;
    background: #fff;
    opacity: .5;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    transform: translate(-8px,-8px);
    cursor: pointer;
}

.product-tag_container .product-tag_point.active {
    position: absolute;
    background: rgba(255,255,255,0.5);
    width: var(--space);
    height: var(--space);
    border-radius: 100%;
    transform: translate(-50%,-50%) scale(1.4);
}

.product-tag_container .product-tag_point.active:before {
    content: "";
    position: absolute;
    background: rgba(255,255,255,0.3);
    width: var(--space-double);
    height: var(--space-double);
    border-radius: 100%;
    transform: translate(-25%,-25%);
}

.product-tag-products .product-block {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}

.product-tag-products .products-tagger-inner {
    padding: 1rem 2rem;
}

.product-tag-products .product-layout .product-block .product-block-price {
    flex-direction: row;
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0;
    align-items: center;
}

.product-tag-products .product-layout .product-block-actions {
    width: 120px;
    border-radius: 3px;
    height: 30px;
}

.product-tag-products .product-layout .product-block-actions span {
    font-size: 0.6rem;
}

.product-tag-products .product-tag-read-more-container {
    padding: 1rem 2rem;
}

.swiper-slide.product-tag-products .product-tag-read-more-container .product-tag-read-more {
    width: 100%;
    background-color: #fff;
    display: flex;
    padding: 1rem;
    justify-content: space-between;
    border: 1px solid #000;
    transition: 0.3s;
    align-items: center;
    letter-spacing: 3.6px;
    font-size: 0.6rem;
    font-weight: 700;
    cursor: pointer;
}

.swiper-slide.product-tag-products .product-tag-read-more-container .product-tag-read-more:hover {
    background-color: #000;
    color: #fff;
    transition: 0.3s;
}

.product-tag-products .product-block-caption {
    flex: 1;
}

.product-tag-products .product-layout .product-block .product-top {
    width: 120px;
    margin-bottom: 0;
}

.product-tag-products .product-tag_product + .product-tag_product {
    margin-top: 0.5rem;
}

.swiper-slide.product-tag-products {
    height: auto;
    display: none;
}

.product-tag_prodparent.product-tag_block {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.swiper-slide.product-tag-products .product-tag-read-more-container .product-tag-read-more i {
    font-size: 1rem;
}

.swiper-slide.product-tag-products .product-tag-read-more-container .product-tag-read-more span {
    font-size: 0.8rem;
    font-weight: 400;
}

#product-tagger-swiper {
    overflow: hidden;
}

.product-tagger-image-wrapper button.check-look {
    position: absolute;
    bottom: -100%;
    background-color: #000;
    color: #fff;
    display: flex;
    left: 1rem;
    right: 1rem;
    justify-content: center;
    letter-spacing: 4.4px;
    font-weight: 300;
    align-items: center;
    border-radius: 0;
    opacity: 0;
    transition: 0.3s;
    width: calc(100% - 2rem);
}

.product-tagger-image-wrapper button.check-look i {
    position: absolute;
    right: 1rem;
}

.product-tagger-image-wrapper button.check-look:hover {
    background-color: #fff;
    color: #000;
}

.product-tagger-image-wrapper button.check-look:focus {
    box-shadow: none;
}

.product-tag_container .product-tag_imgparent .product-tagger-image-wrapper img {
    width: 100%;
}

.product-tag_container button.btn.close-look {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0;
}

.tagger-wrapper .single-tab-title {
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
}

.tagger-wrapper .single-tab-title > span {
    background-color: var(--color-pink);
    z-index: 1;
    padding-right: 1rem;
}

.tagger-wrapper .single-tab-title:after {
    content: '';
    background-color: #000;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
}

.tagger-wrapper .swiper-button-next {
    right: -1.5rem;
}

.tagger-wrapper .swiper-button-prev {
    left: -1.5rem;
}

.tagger-wrapper .tags-sizes-available {
    margin: 0.3rem 0 0.6rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tagger-wrapper .tags-sizes-available span {
    color: var(--color-grey);
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
}

.tagger-wrapper .tags-sizes-available select {
    background-color: transparent;
    border-bottom: 1px solid #000;
    width: 120px;
}

.product-tag_block-wrapper .swiper-pagination.tags-pagination {
    bottom: -2rem;
}

.tagger-wrapper {
    padding-bottom: 3rem;
}

.tagger-wrapper .product-tag_block-wrapper {
    position: relative;
}

@media all and(max-width: 1480px) {
    .swiper-slide.product-tag-products .products-tagger-inner {
        padding: 0.5rem;
    }

    .swiper-slide.product-tag-products .product-layout .product-block .product-block-caption .product-block-title .product-name a {
        font-size: 0.7rem;
    }

    .swiper-slide.product-tag-products .product-layout .product-block .product-block-price {
        margin: 0.2rem 0;
    }
}

@media all and (min-width: 1025px) and (max-width: 1479px) {
    .product-tag-products .products-tagger-inner {
        padding: 1rem 0.5rem;
    }

    .product-tag-products .product-block {
        gap: 0.5rem;
    }

    .product-tag-products .product-layout .product-block .product-top {
        width: 80px;
    }

    .product-tag-products .product-layout .product-block .product-block-caption .product-block-title .product-name a {
        font-size: 0.7rem;
    }

    .product-tag-products .product-layout .product-block .product-block-price {
        margin: 0.2rem 0;
    }

    .product-tag-products .product-layout .product-block .product-block-price .amount,
    .product-tag-products .product-layout .product-block .product-block-price .amount_before {
        font-size: 0.7rem;
    }

    .tagger-wrapper .tags-sizes-available span {
        font-size: 0.65rem;
    }

    .tagger-wrapper .tags-sizes-available select {
        font-size: 0.7rem;
    }

    .product-tag-products .product-layout .product-block-actions {
        height: 25px;
    }

    .swiper-slide.product-tag-products .product-tag-read-more-container .product-tag-read-more {
        letter-spacing: 1px;
    }

    .product-tag-products .product-tag-read-more-container {
        padding: 0.5rem;
    }
}

@media all and (min-width: 1201px) and (max-width: 1479px) {
    .product-tag-products .product-layout .product-block .product-top {
        width: 100px;
    }
}

@media all and (max-width: 1024px) {
    .tagger-wrapper .swiper-button-next::after, .tagger-wrapper .swiper-button-prev::after {
        font-size: 0.7rem;
    }

    .tagger-wrapper .swiper-button-next {
        right: 0;
        bottom: -2rem;
        top: auto;
        transform: none;
    }

    .tagger-wrapper .swiper-button-prev {
        left: 0;
        bottom: -2rem;
        top: auto;
        transform: none;
    }

    .product-tag_block-wrapper .swiper-pagination.tags-pagination {
        width: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media all and (max-width: 991px) {
    .product-tag_container .product-tag_imgparent .product-tagger-image-wrapper .product_tag__Points {
        opacity: 1;
    }

    .product-tagger-image-wrapper button.check-look {
        opacity: 1;
        bottom: 1rem;
        font-size: 0.7rem;
    }

    .swiper-slide.product-tag-products {
        display: flex;
        /* width: 100%; */
    }

    .offcancas-tags .offcanvas-header {
        background-color: var(--color-pink);
    }

    .offcancas-tags button.btn.close-look {
        display: none;
    }

    .offcancas-tags h5#tagsLabel {
        font-weight: 700;
    }

    .offcancas-tags {
        border-right: 0;
        max-height: 90vh;
        height: auto;
        bottom: auto;
    }

    .product-tag_prodparent.product-tag_block .row {
        margin: 0;
    }

    .product-tag-products .products-tagger-inner {
        padding: 1rem 0;
    }

    .product-tag-products .product-tag-read-more-container {
        padding: 1rem;
    }

    .product-layout .product-block .product-block-caption .product-block-title .product-name a {
        font-size: 0.6rem;
    }

    .product-tag-products .product-layout .product-block .product-block-price {
        margin: 0.2rem 0;
    }

    .product-tag-products .product-layout .product-block .product-block-price h3.amount {
        font-size: 0.65rem;
    }

    .tagger-wrapper .tags-sizes-available span {
        font-size: 0.6rem;
    }

    .tagger-wrapper .tags-sizes-available select {
        font-size: 0.65rem;
    }

    .product-tag-products .product-layout .product-block .product-top {
        width: 90px;
    }

    .product-tag_prodparent.product-tag_block {
        width: 100%;
    }
}

/* contact page */
#information-contact h1 {
    text-align: center;
    font-weight: 700;
    font-size: 1.4rem;
}

/* sitemap page */
#information-sitemap h1 {
    text-align: center;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 3rem;
}

#information-sitemap h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
}

#information-sitemap li {
    text-transform: uppercase;
}

/* search page */
#search-form .search-toolbar-block input,
#search-form select {
    background-color: transparent;
    border-color: #000;
}

@media all and (max-width: 768px) {
    #product-search .top-pagination #button-wrapper {
        display: none;
    }
}

/* wishlist page */
#product-wishlist h1.main-content-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem auto 4rem auto;
}

@media all and (max-width: 768px) {
    #product-wishlist .product-layout .sizes-addcart-container {
        display: none !important;
    }
}

/* cart free shipping */
.cart-free-shipingbar {
    border: 1px solid #000;
    margin-bottom: 0.5rem;
    padding: 1rem;
    display: flex;
    gap: 1rem;
}

/* contact form */

div#information-contact .form-group.row {display: flex;flex-direction: column;}

div#information-contact .form-group.row input {
    width: 100%;
}

div#information-contact .form-group.row input, div#information-contact .form-group.row textarea {
    width: 100%;
    border: solid 1px #111;
}

div#information-contact .form-group {
	margin-bottom:.5rem;
}

div#information-contact .buttons input {
    width: 100%;
    margin-top: 2rem;
    border-radius: 0;
    background: #000;
    border: none;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

div#information-contact .buttons input:hover,
div#information-contact .buttons input:active,
div#information-contact .buttons input:focus {
	color:#fff;
}

div#information-contact form {
	max-width:800px;
	margin:0 auto;
	width:100%;
	margin-bottom:2rem;
}

.card-default.contact-details {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: solid 2px #111;
	max-width:800px;
	width:100%;
	margin-left:auto;
	margin-right:auto;
}

.map-container.my-3 {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 2rem !important;
    border: solid 2px #000;
}

/* module bundles home */
.product-tabs-wrapper.bundles .nav-tabs {
    border-bottom: 0;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.product-tabs-wrapper.bundles .nav-tabs button.nav-link {
    border: 1px solid #000;
    border-radius: 0;
}

.product-tabs-wrapper.bundles .nav-tabs button.nav-link.active, .product-tabs-wrapper.bundles .nav-tabs button.nav-link:hover {
    background-color: #000;
    color: #fff;
}

.product-tabs-wrapper.bundles .product-layout .product-block-actions {
    display: none;
}

.product-tabs-wrapper.bundles .product-bundles-add {
    width: 100%;
    background-color: #fff;
    display: flex;
    padding: 0.7rem 2rem;
    justify-content: space-between;
    border: 1px solid #000;
    transition: 0.3s;
    align-items: center;
    letter-spacing: 3.6px;
    font-size: 0.6rem;
    font-weight: 700;
    cursor: pointer;
    gap: 0.5rem;
}

.product-tabs-wrapper.bundles .product-bundles-add i {
    font-size: 1rem;
}

.product-tabs-wrapper.bundles .product-bundles-add:hover {
    background-color: #000;
    color: #fff;
    transition: 0.3s;
}

@media (max-width: 991px) {
    .product-tabs-wrapper.bundles .product-layout .product-top .sizes-addcart-container {
        display: flex !important;
        opacity: 1;
    }
	
	.slideshow-slide-image-container img {
		width: 100%;
		height: auto;
		max-width: none;
	}	
	
	div#top-header-msg {
		text-align: center;
	}
	
	.breadcrumb {
		justify-content: center;
	}	
	
	.module-slideshow.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container, 
	.module-slideshow.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-subtitle,
	.module-slideshow.swiper .swiper-slide .slideshow-slide-caption-wrapper .slideshow-slide-caption-container .slideshow-slide-title
	{
		text-align: center;
        align-items: center;
        justify-content: center;
	}
	
}

@media(max-width:768px) {
	.pagination-num ul.pagination li a, .pagination-num ul.pagination li span {
		width: 20px;
		height: 20px;
	}

	#product-category .pagination-prev li, #product-category .pagination-next li {
		width: 40px;
	}
}

#top-header-msg config_topheader_msg a {
	color:#fff;
}

#top-header-msg a:link { -webkit-tap-highlight-color: #fff; }

#top-header-msg a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}


#mmenu .offcanvas-body {
	flex-direction: column;
}

nav#mmenu {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: scroll;
}

.mmenu-account-wishlist a, .mmenu-account-wishlist button span {
    font-size: 0.7rem;
}

#mmenu nav ul > li > a {
    line-height: 2.7rem;
}