﻿/* Main theme style rules.

	* Table of contents

	- Defaults
		- Set variables
		- Typographical elements
		- Headings
		- Objects
		- Select menu
		- Custom attributes
		- Form fields
		- Checkbox and radio
		- Columns
		- Scrollbar
		- Others
	- Header
		- Header logo
		- Header icons
		TODO: Remove menu point if theme use neither mini cart nor wishlist dropdown.
		- Mini cart
		TODO: Remove menu point if theme NOT use wishlist dropdown.
		- Wishlist dropdown
		- Header menu
	- Footer
		- Subscribe form
		- Footer logo
		- Social media icons
		- Contact data
		- Footer menus
		- Payment methods
		- Copyright
	- Other site parts
		TODO: Remove menu point if theme NOT use text stripe slide.
		- Text stripe slide
		- Breadcrumb
		- Page sidebar
		- Popup
		- Preloader animation
		- No results
		- Contact form
	- Front page
		- Main slider
		- Product slider
		- Front banner
		- Instagram
		- Front subscription
	- Category page
		- Products ordering
		- Products filter
		- Products grid
		- Products animation
		- Quick buy
		TODO: Remove menu point if theme NOT use infinite scrolling.
		- Infinite scrolling
		- Pagination
	- Product page
		- Product notice
		- Product gallery
		- Product summary
		- Product size table
		- Product tabs
		- Related products
	- My account
		- Login and Registration forms
		- Menu
		- Personal information
		- Change password form
		- Orders table
		- Wishlist
	- Cart & Checkout
		TODO: Remove menu point if theme NOT use steps on united checkout page.
		- Checkout steps
		- Items
		- User info
		TODO: Remove menu point if theme NOT use gift card.
		- Giftcard form
		- Shipping
		TODO: Remove menu point if theme NOT use departments or local pickup.
		- Local pickup
		- Coupon
		TODO: Remove menu point if theme NOT use birthday module.
		- Clubmember
		- Summary
	- Thank you page
	- Search
		- Search string
	- Contact us
		- Contact image
		TODO: Remove menu point if theme NOT use map on contact page.
		- Contact map
	- Departments
	- FAQ
	- Size table
	- 404 page
 */

/* Defaults
================================================================================================= */

.woocommerce .products ul::after,
.woocommerce .products ul::before,
.woocommerce ul.products::after,
.woocommerce ul.products::before {
	content: none;
}

/* Set variables
------------------------------------------------------------------------------------------------- */

:root {
	/* child-theme-color */
	--ct-color-white: #fff;
	--ct-color-black: #1b1b1b;
	--ct-color-light-gray: #fcfcfc;
	--ct-color-middle-gray: #e3e3e3;
	--ct-color-dark-gray: #b6b6b6;
	--ct-color-black-alfa: rgba( 27, 27, 27, .5 );
	--ct-color-white-alfa: rgba( 255, 255, 255, .9 );
	--ct-color-link: #1b1b1b;
	--ct-color-link-hover: #1b1b1b;
	--ct-color-btn-light: #fff;
	--ct-color-btn-dark: #1b1b1b;
	--ct-color-red: #ed2224;
	--ct-color-green: #6ca145;
	/* child-theme-font */
	--ct-font-family: Heebo, sans-serif;
	/* child-theme sizes */
	--ct-bd-radius: 2px;
	--ct-bd-specific-radius: 2px;
	/* child-theme animation */
	--ct-animation-color-start: #000;
	--ct-animation-color-middle: rgba( 0, 0, 0, .25 );
	--ct-animation-color-end: #000;
}

/* Typographical elements
------------------------------------------------------------------------------------------------- */

html {
	font-size: 10px;
}

body {
	background-color: var( --ct-color-white );
	color: var( --ct-color-black );
	font-family: var( --ct-font-family );
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.2;
}

ins {
	text-decoration: none !important;
}

a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.more-link {
	-webkit-transition: all .3s ease-in-out;
	-moz-transition:    all .3s ease-in-out;
	-ms-transition:     all .3s ease-in-out;
	-o-transition:      all .3s ease-in-out;
	transition:         all .3s ease-in-out;
}

button, button:focus, button:hover,
input, input:focus, input:hover,
select, select:focus, select:hover,
textarea, textarea:focus, textarea:hover {
	outline: none;
	box-shadow: none;
}

::-moz-selection,
::selection {
	background-color: var( --ct-color-btn-light );
	color: var( --ct-color-btn-dark );
}

a {
	color: var( --ct-color-link );
	text-decoration: none;
	outline: none!important;
}

a:hover {
	color: var( --ct-color-link-hover );
}

p {
	margin: 0 0 10px;
	padding: 0;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

b,
strong {
	font-weight: 700;
}

blockquote,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 40px;
}

blockquote::before {
	content: "\201C";
	position: relative;
	left: -20px;
	top: -10px;
	display: block;
	height: 0;
	font-size: 30px;
}

.btn,
.button,
.filter-control-buttons-container button {
	font-size: 1rem;
	line-height: 1.5;
	background-color: var( --ct-color-btn-dark );
	border: 1px solid var( --ct-color-btn-dark );
	color: var( --ct-color-btn-light );
	border-radius: var( --ct-bd-specific-radius );
}

.btn.btn_glass,
.button.button_glass {
	background-color: transparent;
	border: 1px solid var( --ct-color-btn-dark );
	color: var( --ct-color-btn-dark );
}

.btn:hover,
.btn:active,
.button:hover,
.button:active,
.filter-control-buttons-container button:hover {
	background-color: var( --ct-color-btn-light );
	border: 1px solid var( --ct-color-btn-dark );
	color: var( --ct-color-btn-dark );
}

.btn.btn_glass:hover,
.btn.btn_glass.active,
.button.button_glass:hover,
.button.button_glass.active {
	background-color: var( --ct-color-btn-dark );
	border: 1px solid var( --ct-color-btn-dark );
	color: var( --ct-color-btn-light );
}

/* Headings
------------------------------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 10px;
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.6rem;
}

h6 {
	font-size: 01.2rem;
}

/* Objects
------------------------------------------------------------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
	vertical-align: middle;
}

/* Select menu
------------------------------------------------------------------------------------------------- */

span.ui-selectmenu-button {
	position: relative;
	display: flex;
	column-gap: 5px;
	gap: 5px;
	flex-direction: row-reverse;
	justify-content: center;
	margin: 0 auto;
	width: 100% !important;
	padding: 0;
	height: 55px;
	line-height: 55px;
	overflow: hidden;
	background-color: var( --ct-color-white );
	outline: none;
	cursor: pointer;
}

.ui-selectmenu-button span.ui-icon:before {
	content: url( ../images/icons/chevron__down.svg );
	display: block;
}

.ui-selectmenu-button.ui-selectmenu-button-open span.ui-icon:before {
	transform: rotate( 180deg );
}

.ui-selectmenu-menu {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	padding: 0;
	margin: 0;
	z-index: 30;
}

.ui-selectmenu-open {
	display: block;
}

.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	overflow-x: hidden;
	background-color: var( --ct-color-white );
	border: 1px solid var( --ct-color-middle-gray );
	padding: 10px 0;
}

.ui-menu .ui-menu-item {
	text-align: left;
	position: relative;
	padding: 10px 15px;
	line-height: 25px;
	cursor: pointer;
	min-height: 0;
}

.ui-menu .ui-menu-item:hover {
	background-color: var( --ct-color-middle-gray );
}

/* Custom attributes
------------------------------------------------------------------------------------------------- */

.color-tumbler-wrap {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
	row-gap: 10px;
	gap: 10px;
	/* to not cut active color ::before */
	margin-bottom: 2px;
}

/* force WC styles */
.woocommerce .products ul.color-tumbler-wrap,
.woocommerce ul.products.color-tumbler-wrap {
	margin-bottom: 2px;
}

.color-item:hover {
	cursor: pointer;
}

.color-tumbler-wrap .color-item {
	position: relative;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid var( --ct-color-middle-gray );
}

.color-tumbler-wrap.additional-colors .color-item:nth-child( n + 4 ),
.color-tumbler-wrap:not( .additional-colors ) .plus-btn {
	display: none;
}

.color-tumbler-wrap .color-item::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 26px;
	height: 26px;
	transform: translate( -50%, -50% );
	border-radius: 50%;
	border: 1px solid transparent;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	transition: border-color .3s;
}

.color-tumbler-wrap .color-item:hover::before,
.color-tumbler-wrap .color-item.active::before {
	border-color: var( --ct-color-black );
}

.color-tumbler-wrap .attribute-style {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
}

.color-tumbler-wrap .plus-btn {
	width: 0;
	/* same as gap size */
	margin-right: -10px;
	font-size: 1.2rem;
	line-height: 1.5;
	color: var( --ct-color-dark-gray );
}

.color-tumbler-wrap .plus-btn:hover {
	cursor: pointer;
}

.color-tumbler-wrap .plus {
	display: block;
	width: 30px;
}

/* Form fields
------------------------------------------------------------------------------------------------- */

.form-row,
.woocommerce form .form-row {
	position: relative;
	/* force WC styles */
	padding: 0;
	margin-bottom: 0;
}

.form-row input,
.form-row textarea,
.woocommerce form .form-row textarea {
	height: 40px;
	padding-right: 10px;
	padding-left: 10px;
	border-width: 0 0 1px;
	border-style: solid;
	border-color: var( --ct-color-middle-gray );
	background-color: transparent;
	outline: none;
}

.form-row input {
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.form-row input[disabled],
.form-row textarea[disabled],
.woocommerce form .form-row textarea[disabled] {
	color: var( --ct-color-dark-gray );
}

.form-row textarea,
.woocommerce form .form-row textarea {
	resize: none;
	overflow-y: hidden;
	transition: height .3s;
}

.form-row.filled input,
.form-row.filled textarea,
.woocommerce form .form-row.filled textarea {
	border-width: 1px;
	border-radius: var( --ct-bd-radius );
	background-color: var( --ct-color-white );
}

.form-row.filled textarea,
.woocommerce form .form-row.filled textarea {
	height: 11rem;
	overflow-y: initial;
}

.form-row .form-row__error-msg {
	position: absolute;
	bottom: -15px;
	left: 3px;
	width: 100%;
	font-size: 1rem;
}

.form-row__error-msg.red {
	color: var( --ct-color-red );
}

.form-row label[for] {
	position: absolute;
	top: 8px;
	left: 0;
	padding-right: 3px;
	padding-left: 3px;
	z-index: 1;
	transition: top .3s;
}

#account_birthday_field.form-row:not( .filled ) label,
#datepicker_field.form-row:not( .filled ) label {
	left: 40px;
}

.form-row.filled label[for] {
	top: -10px;
	left: 10px;
	background-color: var( --ct-color-white );
	font-size: 1rem;
	line-height: 2;
}

/* Checkbox and radio
------------------------------------------------------------------------------------------------- */

.woocommerce form .form-row .input-checkbox,
label > input[type="checkbox"],
li > input[type="radio"] {
	display: none;
}

.woocommerce-shipping-methods li > input[type="radio"] + *::before {
	margin-left: -24px;
}

.custom-checkbox,
.custom-radio,
li > input[type="radio"] + *::before {
	display: inline-block;
	width: 1.2rem;
	height: 1.2rem;
	margin-right: 10px;
	border: 1px solid var( --ct-color-black );
	vertical-align: middle;
}

.custom-checkbox {
	cursor: pointer;
	position: relative;
	background-color: transparent;
}

.custom-checkbox::after  {
	content: "";
	position: absolute;
	display: none;
	top: 1px;
	left: 4px;
	width: 2px;
	height: 7px;
	border: solid var( --ct-color-black );
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate( 45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate( 45deg);
}

input:checked + span.custom-checkbox::after {
	display: block;
}

.custom-radio {
	position: relative;
	line-height: 14px;
	border-radius: 50%;
	cursor: pointer;
	color: transparent;
}

li > input[type="radio"] + *::before {
	content: "";
	border-radius: 50%;
}

input[type="radio"]:checked + .custom-radio,
li > input[type="radio"]:checked + *::before {
	background: radial-gradient( var( --ct-color-black ) 0%, var( --ct-color-black ) 40%, transparent 50%, transparent );
}

/* Columns
------------------------------------------------------------------------------------------------- */

.columns__container {
	display: grid;
	gap: 30px;
	grid-auto-flow: dense;
	align-items: start;
}

.columns__container_gap_big {
	gap: 60px;
}

.columns__container_gap_small {
	gap: 20px;
}

/* Scrollbar
------------------------------------------------------------------------------------------------- */

body::-webkit-scrollbar,
.theme-scrollbar::-webkit-scrollbar,
.search-result__wrap::-webkit-scrollbar {
	width: 2px;
	max-height: 253px;
}

body::-webkit-scrollbar-thumb,
.theme-scrollbar::-webkit-scrollbar-thumb,
.search-result__wrap::-webkit-scrollbar-thumb {
	height: 20px;
	background-color: var( --ct-color-middle-gray );
}

/* Others
------------------------------------------------------------------------------------------------- */

.site-container {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.admin-bar .site-container {
	min-height: calc( 100vh - 46px );
}

.site-inner {
	flex-grow: 1;
}

body:not( .home ) .site-inner,
body.home .site-container > section:last-of-type {
	margin-bottom: 60px;
}

.wrap {
	padding-right: 10px;
	padding-left: 10px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

#yith-wcwl-popup-message {
	display: none !important;
}

/* remove number input arrows in Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

/* remove number input arrows in Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

@media screen and ( max-width: 1023px ) {
	.custom-panel.wrap,
	.archive .site-inner > .wrap {
		padding-right: 0;
		padding-left: 0;
	}
}

/* Header
================================================================================================= */

.site-header {
	position: sticky;
	top: 0;
	background-color: var( --ct-color-white );
	border-bottom: 1px solid var( --ct-color-middle-gray );
	z-index: 80;
}

.site-header > .wrap {
	display: grid;
	grid-template-areas: "i l b";
	grid-template-columns: 1fr 1fr auto;
	gap: 20px;
	height: 45px;
}

/* Header logo
------------------------------------------------------------------------------------------------- */

.title-area,
.site-description {
	display: none;
}

.header-logo__container {
	grid-area: l;
	justify-self: end;
	align-self: center;
}

.header-logo__link svg,
.header-logo__link img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: 20px;
	vertical-align: middle;
}

/* Header icons
------------------------------------------------------------------------------------------------- */

.header-icons__container {
	grid-area: i;
	position: relative;
	display: inline-flex;
	gap: 20px;
	column-gap: 20px;
	align-items: center;
}

.header-icons {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}

.header-icon__wrap,
.header-icon__wrap svg {
	width: auto;
	height: 15px;
	vertical-align: middle;
}

.header-icon__wrap {
	position: relative;
}

.header-icon__wrap:hover {
	cursor: pointer;
}

.header-icon__counter {
	position: absolute;
	top: -3px;
	left: -5px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 10px;
	height: 10px;
	background-color: var( --ct-color-red );
	border: 1px solid var( --ct-color-white );
	border-radius: 50%;
	color: var( --ct-color-white );
	font-size: .7rem;
	line-height: 1;
}

.header-icon__counter.hidden {
	display: none;
}

/* TODO: Remove media rule if theme use neither mini cart nor wishlist dropdown. */
@media screen and ( max-width: 369px) {
	.header-icons {
		position: unset;
	}
}

/* TODO: Remove block if theme use neither mini cart nor wishlist dropdown. */
/* Mini cart
------------------------------------------------------------------------------------------------- */

.nav-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	width: 290px;
	background-color: var( --ct-color-white );
	border: 1px solid var( --ct-color-middle-gray );
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s, visibility .3s;
	z-index: 1;
}

.nav-dropdown__title-wrap {
	padding: 10px;
	text-align: center;
	border-bottom: 1px solid var( --ct-color-middle-gray );
}

.header-icons:hover .nav-dropdown,
.mini-cart-dropdown_active .mini-cart__dropdown,
.wishlist-dropdown_active .wishlist__dropdown {
	opacity: 1;
	visibility: visible;
}

/* TODO: Remove rest of block if theme NOT use mini cart and move upper part to "wishlist dropdown" block. */

.mini-cart__list {
	position: relative;
	/* 3 items ( ~181px ) */
	max-height: 543px;
	overflow-y: auto;
}

.mini-cart-item {
	display: grid;
	gap: 10px;
	grid-template-columns: 100px 1fr;
	padding: 15px 10px;
	border-bottom: 1px solid var( --ct-color-middle-gray );
}

.mini-cart-item__thumbnail a {
	display: block;
}

.mini-cart-item__thumbnail img {
	width: 100%;
}

.mini-cart-item__info {
	position: relative;
	display: grid;
	gap: 15px;
	font-size: 1.4rem;
}

.mini-cart-item__name {
	/* exclude remove button width */
	width: calc( 100% - 1.5rem );
	line-height: 1.5;
}

.mini-cart-item__price {
	display: flex;
	column-gap: 10px;
	gap: 10px;
	align-items: center;
}

.mini-cart-item__price del {
	color: var( --ct-color-dark-gray );
}

.mini-cart-item__attr {
	display: flex;
	column-gap: 10px;
	gap: 10px;
	align-items: center;
}

.mini-cart-item__attr-image {
	/* fix color image align issue */
	display: flex;
	width: 25px;
	height: 20px;
	border: 1px solid var( --ct-color-middle-gray );
	-webkit-border-radius: var( --ct-bd-radius );
	-moz-border-radius: var( --ct-bd-radius );
	border-radius: var( --ct-bd-radius );
	overflow: hidden;
}

.mini-cart-item__attr-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.mini-cart-item__remove {
	position: absolute;
	top: 0;
	right: 0;
}

.mini-cart-item__remove svg {
	vertical-align: middle;
}

.mini-cart__preloader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var( --ct-color-white-alfa );
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s, visibility .3s;
}

.mini-cart__preloader.active {
	opacity: 1;
	visibility: visible;
}

.mini-cart__total {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 10px;
	margin-top: -1px;
	border-top: 1px solid var( --ct-color-middle-gray );
}

.mini-cart-total__item {
	display: flex;
	column-gap: 5px;
	gap: 5px;
	align-items: baseline;
}

.mini-cart-total__title {
	font-size: 1.3rem;
}

.mini-cart-total__value {
	font-size: 1.8rem;
}

.mini-cart__buttons {
	padding: 0 10px 15px;
}

.mini-cart__buttons .btn {
	display: block;
	width: 100%;
	line-height: 40px;
	text-align: center;
}

/* TODO: Remove block if theme NOT use wishlist dropdown. */
/* Wishlist dropdown
------------------------------------------------------------------------------------------------- */

.header-icons.header-icon__wishlist {
	position: unset;
}

.wishlist__dropdown .wishlist-overlay {
	/* 3 items ( ~181px ) */
	max-height: 543px;
	overflow-y: auto;
}

.wishlist__dropdown .wishlist__container {
	display: block;
}

.wishlist__dropdown .wishlist-item {
	position: relative;
	gap: 10px;
	grid-template-columns: 100px 1fr;
	padding: 15px 10px;
	border-bottom: 1px solid var( --ct-color-middle-gray );
}

.wishlist__dropdown .wishlist-item:last-child {
	border-bottom-width: 0;
}

.wishlist__dropdown .wishlist-item__remove {
	top: 15px;
	right: 10px;
}

.wishlist__dropdown .wishlist-item__image-wrap {
	margin-bottom: 0;
}

.wishlist__dropdown .wishlist-item__information {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 0;
}

.wishlist__dropdown .wishlist-item__title {
	/* exclude remove button width */
	width: calc( 100% - 1.5rem );
	margin-bottom: 0;
	font-size: 1.4rem;
	text-align: start;
}

.wishlist__dropdown .wishlist__price {
	justify-content: start;
	margin-bottom: 0;
	font-size: 1.4rem;
	font-weight: 400;
}

.wishlist__attr,
.wishlist__dropdown .wishlist__attributes,
.wishlist__dropdown .wishlist-item__add-to-cart {
	display: none;
}

.wishlist__dropdown .wishlist__attr {
	display: block;
}

/* Header menu
------------------------------------------------------------------------------------------------- */

.mobile-menu-btn_container {
	grid-area: b;
	display: flex;
	align-items: center;
}

.mobile-menu-btn svg {
	width: 20px;
	height: auto;
	vertical-align: middle;
}

.nav-menu-mobile--container {
	top: 0;
	max-height: 100vh;
}

.nav-menu-mobile__header {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	height: 67px;
	padding-right: 15px;
	padding-left: 15px;
	border-bottom: 1px solid var( --ct-color-middle-gray );
}

.nav-menu-mobile__logo {
	/* fix woocommerce styles */
	max-height: 20px;
	width: auto;
	height: 20px;
}

.nav-menu-mobile__header-action {
	width: 20px;
	height: 20px;
	text-align: center;
}

.sub_open .nav-menu-mobile__header-action_close,
.nav-menu-mobile__header-action_back {
	display: none;
}

.sub_open .nav-menu-mobile__header-action_back {
	display: block;
}

.nav-menu-mobile__header-action svg {
	vertical-align: middle;
}

.nav-menu-mobile--container ul.menu {
	display: flex;
	flex-direction: column;
	row-gap: 30px;
	gap: 30px;
	padding: 20px 15px;
}

.nav-menu-mobile--container ul.menu > li.menu-item > a {
	display: flex;
	column-gap: 15px;
	gap: 15px;
	line-height: 1;
}

.nav-menu-mobile--container ul.menu > li.menu-item > a:before {
	content: '';
	width: 6px;
}

.nav-menu-mobile--container ul.menu li.menu-item.menu-item-has-children ul.sub-menu {
	display: flex;
	flex-wrap: wrap;
	row-gap: 30px;
	gap: 30px 0;
	max-width: 100%;
	/* except menu header height (67px) and it's bottom border (1px) */
	max-height: calc( 100vh - 68px );
	width: 100vw;
	height: auto;
	padding: 20px 0;
	overflow-y: auto;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.nav-menu-mobile--container ul.sub-menu > li {
	padding-right: 15px;
	padding-left: 15px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.nav-menu-mobile--container ul.menu ul.sub-menu li.back-to-main-menu {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.5;
}

.nav-menu-mobile--container ul.sub-menu li.column-0 {
	padding-bottom: 20px;
	border-bottom: 1px solid var( --ct-color-middle-gray );
}

.nav-menu-mobile--container ul.sub-menu li.column-1,
.nav-menu-mobile--container ul.sub-menu li.column-2 {
	width: 50%;
}

.nav-menu-mobile--container ul.sub-menu li.column-3 {
	display: none;
}

.nav-menu-mobile--container ul.menu ul.sub {
	display: flex;
	flex-wrap: wrap;
	row-gap: 30px;
	column-gap: 30px;
	gap: 30px;
}

.nav-menu-mobile--container ul.sub-menu li ul.sub li {
	flex-basis: 100%;
}

.nav-menu-mobile--container ul.sub-menu li ul.sub li.menu-item-object-image .menu-item-img-hover {
	display: none;
}

.nav-menu-mobile--container ul.sub-menu li ul.sub li.menu-item-object-product a,
.nav-menu-mobile--container ul.sub-menu li ul.sub li.menu-item-object-image a {
	display: grid;
	gap: 20px;
	justify-content: center;
}

.nav-menu-mobile--container ul.sub-menu li ul.sub li.menu-item-object-product a span,
.nav-menu-mobile--container ul.sub-menu li ul.sub li.menu-item-object-image a span {
	text-align: center;
}

/* Footer
================================================================================================= */

.site-footer {
	font-size: 1rem;
	line-height: 1.5;
	color: var( --ct-color-black );
	border-top: 1px solid var( --ct-color-middle-gray );
	background-color: var( --ct-color-light-gray );
}

.single-product .site-footer {
	z-index: 20;
}

.footer-content {
	display: grid;
	gap: 30px;
	grid-template-columns: 1fr;
	grid-template-areas:
		"sb"
		"lg"
		"sm"
		"cd"
		"ms"
		"pm";
	max-width: 450px;
	margin: 30px auto 20px;
}

.footer-content__title {
	margin-bottom: 15px;
	font-weight: 900;
	line-height: 1.5;
}

/* Subscribe form
------------------------------------------------------------------------------------------------- */

.footer-subscribe__wrap {
	grid-area: sb;
}

/* Footer logo
------------------------------------------------------------------------------------------------- */

.footer-logo__wrap {
	grid-area: lg;
	justify-self: center;
	height: 38px;
}

.footer-logo__wrap img {
	max-height: 100%;
}

/* Social media icons
------------------------------------------------------------------------------------------------- */

.social-media__wrap {
	grid-area: sm;
	justify-self: center;
	display: flex;
	align-items: center;
	gap: 10px;
	column-gap: 10px;
}

.social-media {
	display: block;
	height: 17px;
}

.social-media svg {
	max-height: 100%;
	width: auto;
	height: 100%;
}

/* Contact data
------------------------------------------------------------------------------------------------- */

.contact-data__container {
	grid-area: cd;
	padding-bottom: 0;
	/* force grid's gap */
	margin-bottom: -30px;
	border-top: 1px solid var( --ct-color-middle-gray );
	transition: padding-bottom .3s;
}

.contact-data__container.active {
	padding-bottom: 25px;
}

.contact-data__container .footer-content__title {
	position: relative;
	margin-bottom: 0;
	line-height: 35px;
	overflow: hidden;
}

.contact-data__container .footer-content__title::after {
	content: url( ../images/icons/menu-plus.svg );
	position: absolute;
	top: 0;
	left: 0;
	transform: rotate(0deg);
	transition: .3s transform;
}

.contact-data__container.active .footer-content__title::after {
	transform: rotate(45deg);
}

.footer-contact-data__wrap {
	display: none;
}

.contact-data__wrap,
.contact-data {
	display: grid;
	gap: 10px;
	grid-template-columns: auto 1fr;
}

.contact-data__icon {
	width: 30px;
	text-align: center;
}

.contact-data__icon svg {
	vertical-align: middle;
}

.contact-data__title {
	font-weight: 700;
}

.footer-content .contact-data__data {
	justify-self: end;
}

/* Footer menus
------------------------------------------------------------------------------------------------- */

.footer-menu__container {
	grid-area: ms;
	border-top: 1px solid var( --ct-color-middle-gray );
}

.footer-menu__wrap {
	border-bottom: 1px solid var( --ct-color-middle-gray );
}

.footer-menu__title {
	position: relative;
	line-height: 35px;
	overflow: hidden;
}

.footer-menu__title::after {
	content: url( ../images/icons/menu-plus.svg );
	position: absolute;
	top: 0;
	left: 0;
	transform: rotate(0deg);
	transition: .3s transform;
}

.footer-menu__wrap.active .footer-menu__title::after {
	transform: rotate(45deg);
}

.footer-menu {
	display: none;
}

.footer-menu__items {
	padding-bottom: 15px;
}

.footer-menu__items a {
	display: block;
	padding-top: 10px;
	padding-bottom: 10px;
}

@media screen and ( max-width: 1679px ) {
	.footer-menu__title {
		margin-bottom: 0;
	}
}

/* Payment methods
------------------------------------------------------------------------------------------------- */

.footer-payment__wrap {
	grid-area: pm;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	column-gap: 15px;
	margin-top: -10px;
}

.footer-payment__icon {
	width: 29px;
}

/* Copyright
------------------------------------------------------------------------------------------------- */

.footer-copyright {
	direction: ltr;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 60px;
	border-top: 1px solid var( --ct-color-middle-gray );
}

.footer-copyright__separator {
	margin-right: 5px;
	margin-left: 5px;
}

.footer-copyright > .footer-copyright__separator {
	display: none;
}

.footer-copyright__separator::before {
	content: '|';
}

/* Other site parts
================================================================================================= */

/* TODO: Remove block if theme NOT use text stripe slider. */
/* Text stripe slide
------------------------------------------------------------------------------------------------- */

.site-container .moving-strip--container {
	/* force default styles */
	border-bottom-width: 0;
	font-size: 1.2rem;
}

@media screen and ( max-width: 768px ) {
	.site-container .moving-strip--container {
		height: 20px;
		line-height: 20px;
		font-size: 1rem;
	}
}

/* Breadcrumb
------------------------------------------------------------------------------------------------- */

.breadcrumb__wrap {
	padding-top: 15px;
	padding-bottom: 15px;
}

.archive .breadcrumb__wrap {
	border-bottom: 1px solid var( --ct-color-middle-gray );
}

/* TODO: Remove style rule if theme NOT use special breadcrumbs on product page. */
.single-product .summary .breadcrumb__wrap {
	display: none;
}

.breadcrumb {
	display: flex;
	column-gap: 3px;
	row-gap: 10px;
	gap: 10px 3px;
	flex-wrap: wrap;
	font-size: 1.2rem;
	line-height: 1.5;
	color: var( --ct-color-dark-gray );
}

.breadcrumb-link {
	color: var( --ct-color-link );
}

.breadcrumb-link:hover {
	color: var( --ct-color-link-hover );
}

/* Page sidebar
------------------------------------------------------------------------------------------------- */

/* force .wrap side paddings */
.page-sidebar__image-wrap {
	margin-right: -10px;
	margin-left: -10px;
}

/* Popup
------------------------------------------------------------------------------------------------- */

.popup__container {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: var( --ct-color-black-alfa );
	visibility: hidden;
	opacity: 0;
	transition: visibility .3s, opacity .3s;
	z-index: 120;
}

.popup__container.active {
	visibility: visible;
	opacity: 1;
}

.popup {
	position: relative;
	width: 90%;
	padding: 20px;
	background-color: var( --ct-color-white );
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.popup__close-wrap {
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	height: 30px;
	padding: 5px;
}

/* Preloader animation
------------------------------------------------------------------------------------------------- */

.dots3-preloader {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	height: 10px;
	width: 40px;
	transform: translate( -50%, -50% );
}

.dots3-preloader span {
	position: absolute;
	width: 10px;
	height: 10px;
	background: var( --ct-animation-color-middle );
	border-radius: 50%;
	-webkit-animation: dots3 1.5s infinite ease-out;
	animation: dots3 1.5s infinite ease-out;
}

.dots3-preloader span:nth-child(1) {
	left: 0;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.dots3-preloader span:nth-child(2) {
	left: 15px;
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

.dots3-preloader span:nth-child(3) {
	left: 30px;
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

@keyframes dots3 {
	0% {
		background: var( --ct-animation-color-start );
		-webkit-transform: scale(0.1);
		transform: scale(0.1);
	}
	50% {
		background: var( --ct-animation-color-middle );
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
	100% {
		background: var( --ct-animation-color-end );
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes dots3 {
	0% {
		background: var( --ct-animation-color-start );
		-webkit-transform: scale(0.1);
		transform: scale(0.1);
	}
	50% {
		background: var( --ct-animation-color-middle );
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
	100% {
		background: var( --ct-animation-color-end );
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

/* No results
------------------------------------------------------------------------------------------------- */

.no-results__wrap {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
	gap: 20px;
	align-items: center;
	margin-bottom: 40px;
}

.woocommerce-MyAccount-content .no-results__wrap {
	margin-top: 30px;
	margin-bottom: 0;
}

.search .no-results__wrap {
	margin-top: 20px;
	margin-bottom: 20px;
}

.no-results__title,
.no-results__text {
	width: 200px;
	text-align: center;
	line-height: 1.5;
}

.no-results__title {
	font-size: 1.8rem;
	font-weight: 500;
}

.no-results__text {
	font-size: 1.4rem;
}

.no-results__link-wrap {
	margin-top: 10px;
	font-size: 1.4rem;
	line-height: 1.5;
}

.no-results__link-wrap a {
	border-bottom: 1px solid var( --ct-color-black );
}

/* Contact form
------------------------------------------------------------------------------------------------- */

.wpcf7-form {
	position: relative;
	margin-bottom: 5rem;
}

.wpcf7-form-control-wrap {
	display: block;
}

form.wpcf7-form .form-row {
	margin-top: 20px;
	margin-bottom: 20px;
}

.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.wpcf7 .button-wrap {
	height: 40px;
	text-align: center;
}

.wpcf7-submit {
	width: 100%;
	height: 40px;
	background-color: var( --ct-color-btn-dark );
	border: 1px solid var( --ct-color-btn-dark );
	color: var( --ct-color-btn-light );
	font-size: 1.4rem;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.wpcf7-submit:hover {
	background-color: var( --ct-color-btn-light );
	border: 1px solid var( --ct-color-btn-dark );
	color: var( --ct-color-btn-dark );
}

.wpcf7-form.submitting .wpcf7-submit {
	display: none;
}

span.wpcf7-spinner {
	display: none;
	margin: 8px auto;
}

.wpcf7-form.submitting span.wpcf7-spinner {
	display: block;
}

span.wpcf7-not-valid-tip {
	position: absolute;
	top: 100%;
	left: 0;
	font-size: 1rem;
}

.wpcf7 form div.wpcf7-response-output {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	padding: 0;
	margin: 10px auto;
	border: none;
	font-size: 1.4rem;
	text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	color: var( --ct-color-red );
}

.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
	color: var( --ct-color-green );
}

.wpcf7 form.resetting .wpcf7-response-output {
	/* force display:none for not .sent */
	display: block !important;
}

/* Front page
================================================================================================= */

.front-page__title,
.front-page__subtitle {
	padding-right: 20px;
	padding-left: 20px;
	text-align: center;
	line-height: 1.5;
	font-weight: 400;
}

.front-page__title {
	margin-top: 60px;
	margin-bottom: 10px;
	font-size: 3rem;
}

.front-page__subtitle {
	margin-bottom: 30px;
	font-size: 1.4rem;
}

/* Main slider
------------------------------------------------------------------------------------------------- */

.main-slider__arrow {
	display: none;
}

.main-slider.slick-slider {
	/* fix slick style */
	margin-bottom: 0;
}

.main-slider:not( .slick-slider ) .main-slider__item-wrap:not( :first-child ) {
	display: none;
}

.main-slider__video,
.main-slider__image {
	width: 100%;
	object-position: center;
	object-fit: cover;
}

/* Product slider
------------------------------------------------------------------------------------------------- */

.front-product-slider__slider .quickbuy-panel-container {
	display: none;
}

.front-product-slider__slider .slick-list {
	margin-left: -5px;
	margin-right: -5px;
}

.front-product-slider .slick-slide {
	padding: 0 5px;
	position: relative;
}

.front-product-slider li.product a img {
	width: 100%;
}

.front-product-slider .slick-arrow,
.front-product-slider .slick-arrow::before {
	width: 11px;
	height: 20px;
}

.front-product-slider .slick-arrow {
	/* minus half of text block height (84px) to align in image center */
	margin-top: calc( -84px / 2 );
	z-index: 1;
}

.front-product-slider button.slick-prev {
	left: 5px;
}

.front-product-slider button.slick-prev::before {
	content: url( ../images/icons/arrow__left.svg );
}

.front-product-slider button.slick-prev::before:hover {
	content: url( ../images/icons/arrow__left.svg );
}

.front-product-slider button.slick-next::before {
	content: url( ../images/icons/arrow__right.svg );
}

.front-product-slider button.slick-next::before:hover {
	content: url( ../images/icons/arrow__right.svg );
}

.front-product-slider .woocommerce-loop-product__title {
	margin-bottom: 5px;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
}

.front-product-slider .price {
	display: flex;
	column-gap: 10px;
	gap: 10px;
	justify-content: center;
	align-items: center;
	margin-bottom: 7px;
	font-weight: 700;
	font-size: 1.2rem;
	line-height: 1;
}

.front-product-slider .price del {
	color: var( --ct-color-dark-gray );
	font-size: 1rem;
}

/* Front banner
------------------------------------------------------------------------------------------------- */

.front-banner__container {
	margin-top: 60px;
	margin-bottom: 30px;
}

.front-banner__container a {
	display: block;
}

.front-banner__image {
	width: 100%;
}

/* Instagram
------------------------------------------------------------------------------------------------- */

.insta-feed-hashtag {
	display: none;
}

.insta-feed-account {
	padding-right: 10px;
	padding-left: 10px;
	margin-top: 60px;
	text-align: end;
}

.insta-feed-account-text {
	/* not need according to design, but should exists to display '@' to the left of account name */
	font-size: 0;
}

.insta-feed-account-link {
	text-transform: uppercase;
}

.fa.insta-feed-account-icon {
	font-size: 2rem;
	vertical-align: middle;
}

.iwebsite-insta-slider {
	padding-right: 5px;
	padding-left: 5px;
}

.iwebsite-insta-slider .insta-slider-inner .post-caption-container,
.iwebsite-insta-slider .instagram-grid-item .post-caption-container {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	/* force native styles */
	transform: translate( 0, 0 );
	font-size: 1.4rem;
}

.iwebsite-insta-slider .insta-slider-inner:hover .post-caption-container,
.iwebsite-insta-slider .instagram-grid-item:hover .post-caption-container {
	/* force native styles */
	background-color: var( --ct-color-black-alfa );
}

/* Front subscription
------------------------------------------------------------------------------------------------- */

.subscription-form_front {
	display: none;
}

/* Category page
================================================================================================= */

.category-banner__image {
	width: 100%;
}

/* Products filter
------------------------------------------------------------------------------------------------- */

.product-filter-panel {
	width: 50%;
	height: 55px;
	margin: 0;
	border: 1px solid var( --ct-color-middle-gray );
	border-top-width: 0;
}

#product-filter-toggle {
	line-height: 55px;
	text-align: center;
}

#product-filter-toggle:hover {
	cursor: pointer;
}

.open-filter #product-filter-toggle .open-txt,
#product-filter-toggle .close-txt,
.selected-terms-container {
	display: none;
}

#product-filter-toggle .open-txt::after,
#product-filter-toggle .close-txt::after {
	content: url( ../images/icons/chevron__down.svg );
	display: inline-block;
	padding: 0 5px;
}

.open-filter #product-filter-toggle .close-txt {
	display: block;
}

#product-filter-toggle .close-txt::after {
	transform: rotate( 180deg );
}

.content-sidebar-wrap {
	position: relative;
}

.content-sidebar .sidebar {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	background-color: var( --ct-color-white );
	z-index: 20;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	overflow: hidden;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}

.open-filter.content-sidebar .sidebar {
	width: 100%;
}

.filter-container {
	width: 100vw;
	padding-right: 20px;
	padding-bottom: 30px;
	padding-left: 20px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.sidebar .iwebsite-tax-filter {
	padding: 25px 0;
	border-bottom: 1px solid var( --ct-color-middle-gray );
}

.sidebar .iwebsite-tax-filter .widget-title {
	position: relative;
	margin-bottom: 0;
	font-size: 1.6rem;
}

.sidebar .iwebsite-tax-filter .widget-title.open-filter::after {
	content: url( ../images/icons/chevron__down.svg );
	position: absolute;
	top: 0;
	left: 0;
	transform: rotate(0deg);
	transition: .3s transform;
}

.sidebar .iwebsite-tax-filter .widget-title.open-filter.active::after {
	transform: rotate(180deg);
}

.sidebar .iwebsite-tax-filter .list-of-terms,
.sidebar .iwebsite-tax-filter .iwebsite-price-filter-container {
	margin-top: 20px;
}

.list-of-terms {
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr 1fr;
}

.filter-product_cat .list-of-terms {
	grid-template-columns: 1fr;
}

.sidebar .iwebsite-tax-filter.filter-color .term-item,
.sidebar .iwebsite-tax-filter.filter-size .term-item {
	display: grid;
	gap: 10px;
	grid-template-columns: 22px auto 1fr;
	align-items: center;
	height: 100%;
	font-size: 1.4rem;
}

.sidebar .iwebsite-tax-filter .term-item:hover {
	cursor: pointer;
}

.sidebar .iwebsite-tax-filter input.hidden {
	display: none;
}

.sidebar .iwebsite-tax-filter input:not(.hidden) {
	display: initial;
}

.sidebar .iwebsite-tax-filter input {
	justify-self: center;
}

.sidebar .iwebsite-tax-filter.filter-color .thumb-image {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 1px solid var( --ct-color-middle-gray );
}

.sidebar .iwebsite-tax-filter.filter-color input:checked ~ .thumb-image::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	display: inline-block;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1px solid var( --ct-color-black );
	transform: translate( -50%, -50% );
}

.sidebar .iwebsite-tax-filter.filter-color .thumb-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.sidebar .iwebsite-tax-filter.filter-color .term-name,
.sidebar .iwebsite-tax-filter.filter-size .term-name {
	line-break: anywhere;
}

.sidebar .iwebsite-tax-filter.filter-color .count,
.sidebar .iwebsite-tax-filter.filter-size .count {
	color: var( --ct-color-dark-gray );
}

.sidebar .iwebsite-tax-filter.filter-color .count::before,
.sidebar .iwebsite-tax-filter.filter-size .count::before,
.filter-control-buttons-container button .count::before {
	content: '(';
}

.sidebar .iwebsite-tax-filter.filter-color .count::after,
.sidebar .iwebsite-tax-filter.filter-size .count::after,
.filter-control-buttons-container button .count::after {
	content: ')';
}

.iwebsite-price-filter-values {
	display: none;
}

.ui-slider.ui-slider-horizontal:hover,
.ui-slider-horizontal .ui-slider-range:hover,
.ui-slider-horizontal .ui-slider-handle:hover {
	cursor: pointer;
}

.ui-slider.ui-slider-horizontal {
	position: relative;
	width: calc( 100% - 40px );
	height: 2px;
	/* margin-top: 30px to cover ::after and 20px to add space under title */
	margin: 50px auto 10px;
	background-color: var( --ct-color-middle-gray );
	border: none;
	border-radius: 0;
	text-align: left;
}

.ui-slider-horizontal .ui-slider-range {
	position: absolute;
	top: 0;
	z-index: 1;
	height: 2px;
	background-color: var( --ct-color-black );
}

.ui-slider-horizontal .ui-slider-handle {
	position: absolute;
	top: -6px;
	z-index: 2;
	width: 20px;
	height: 14px;
	margin-left: -10px;
	background-color: var( --ct-color-black );
	border: 0;
	border-radius: var( --ct-bd-radius );
}

.ui-slider-horizontal .ui-slider-handle::after {
	content: attr( data-val );
	position: absolute;
	bottom: calc( 100% + 4px );
	left: 50%;
	font-size: 1.2rem;
	transform: translateX( -50% );
}

.filter-control-buttons-container {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}

.filter-control-buttons-container button {
	min-width: 45%;
	height: 35px;
}

button.show-filter-results.ready .show-result,
button.show-filter-results.process .show-result,
button.show-filter-results span.thinking,
button.show-filter-results span.count,
button.show-filter-results.active.ready span.count::before,
button.show-filter-results.active.ready span.count::after,
button.show-filter-results span.items {
	display: none;
}

button.show-filter-results.process {
	opacity: 0.7;
}

button.show-filter-results.ready span.items {
	display: inline;
}

button.show-filter-results.process span.thinking {
	display: block;
}

button.show-filter-results.active span.count {
	display: inline-block;
	padding-right: 5px;
	padding-left: 5px;
}

@media screen and ( max-width: 1023px ) {
	.open-filter.content-sidebar .moving-strip--container {
		position: relative;
		z-index: 23;
	}

	.open-filter.content-sidebar .category-banner__container,
	.open-filter.content-sidebar .breadcrumb__wrap,
	.open-filter.content-sidebar .custom-panel.wrap {
		position: relative;
		z-index: 23;
		background-color: var( --ct-color-white );
	}

	.open-filter.content-sidebar .sidebar::before {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: var( --ct-color-black-alfa );
		z-index: 1;
	}

	.open-filter.content-sidebar .filter-container {
		position: relative;
		overflow: hidden;
		z-index: 2;
		background-color: var( --ct-color-white );
	}
}

/* Products ordering
------------------------------------------------------------------------------------------------- */

.archive.woocommerce .woocommerce-ordering {
	/* to set middle border in center. box-sizing cause some issue w/ bd-bottom */
	width: calc( 50% - 2px );
	height: 55px;
	margin: 0;
	border: 1px solid var( --ct-color-middle-gray );
	border-top-width: 0;
}

/* Products grid
------------------------------------------------------------------------------------------------- */

.woocommerce.archive ul.products {
	display: grid;
	gap: 30px 10px;
	grid-template-columns: repeat( 2, 1fr );
}

.woocommerce.archive .products ul::after,
.woocommerce.archive .products ul::before,
.woocommerce.archive ul.products::after,
.woocommerce.archive ul.products::before {
	display: none;
}

.woocommerce.archive ul.products[class*=columns-] li.product,
.woocommerce-page.archive ul.products[class*=columns-] li.product,
.woocommerce.archive ul.products li.product,
.woocommerce-page.archive ul.products li.product {
	width: 100%;
	margin: 0;
}

.product-grid-image-container {
	position: relative;
	margin-bottom: 10px;
	overflow: hidden;
}

.product-grid-image-container a,
.woocommerce ul.products li.product .product-grid-image-container a {
	position: relative;
	display: block;
}

.woocommerce ul.products li.product a img {
	margin-bottom: 0;
}

.product-grid-image-container a img.second-grid-image,
.woocommerce ul.products li.product .product-grid-image-container a img.second-grid-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: contain;
	visibility: hidden;
	opacity: 0;
	transition: all .5s;
}

.product-grid-image-container:hover a img.second-grid-image,
.woocommerce ul.products li.product .product-grid-image-container:hover a img.second-grid-image {
	visibility: visible;
	opacity: 1;
}

.add-to-wishlist-grid-container {
	font-size: 0;
}

.add-to-wishlist-grid-container .yith-wcwl-add-to-wishlist {
	position: absolute;
	top: 10px;
	right: -100%;
	transition: right .3s;
}

.product-grid-image-container:hover .add-to-wishlist-grid-container .yith-wcwl-add-to-wishlist,
.add-to-wishlist-grid-container .yith-wcwl-add-to-wishlist.exists {
	right: 10px;
}

.add-to-wishlist-grid-container .yith-wcwl-add-to-wishlist {
	/* force default styles */
	margin-top: 0;
}

.add-to-wishlist-grid-container .yith-wcwl-add-to-wishlist i.yith-wcwl-icon {
	margin: 0;
}

.add-to-wishlist-grid-container .yith-wcwl-add-button > a i {
	/* force default styles */
	margin-right: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
	padding: 0;
	margin-bottom: 5px;
	text-align: center;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.5;
}

.woocommerce ul.products li.product .price {
	margin-bottom: 7px;
	font-size: 1.2rem;
	font-weight: 700;
	color: var( --ct-color-black );
	text-align: center;
}

.woocommerce ul.products li.product .price del {
	font-size: 1rem;
}

/* Products animation
------------------------------------------------------------------------------------------------- */

ul.products li.product:nth-child( 2n - 1 ) {
	--animate-delay: 0s;
}

ul.products li.product:nth-child( 2n ) {
	--animate-delay: .25s;
}

/* Quick buy
------------------------------------------------------------------------------------------------- */

.quickbuy-panel-container {
	position: absolute;
	bottom: -100%;
	/* bottom for active is 5px, so make it symmetric */
	max-height: calc( 100% - 10px );
	width: 100%;
	padding: 10px 15px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	background-color: var( --ct-color-white-alfa );
	overflow-y: auto;
	transition: bottom .3s;
	/* force default value to make lower than .site-header z-index */
	z-index: 5;
}

.quickbuy-panel-container.active-preloader,
.quickbuy-panel-container.add-cart-message {
	background-color: var( --ct-color-white );
}

.quickbuy-panel-container.add-cart-message {
	padding-top: 15px;
	padding-bottom: 15px;
}

.product-grid-image-container:hover .quickbuy-panel-container,
.quickbuy-panel-container.active-preloader,
.quickbuy-panel-container.add-cart-message {
	bottom: 5px;
}

.quickbuy-panel-container.active-preloader .quickbuy-title,
.quickbuy-panel-container.add-cart-message .quickbuy-title,
.quickbuy-panel-container.active-preloader .size-bar-container,
.quickbuy-panel-container.add-cart-message .size-bar-container,
.quickbuy-panel-container .quickbuy-preloader,
.quickbuy-preloader #dots3 span:nth-child( 4 ),
.quickbuy-panel-container .message-container {
	display: none;
}

.quickbuy-title {
	display: block;
	margin-bottom: 15px;
	font-weight: 500;
	font-size: 1.6rem;
	text-align: center;
}

.woocommerce.archive .products ul.size-bar,
.size-bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 7px;
	row-gap: 7px;
	gap: 7px;
	margin-bottom: 0;
}

.woocommerce.archive .products ul.size-bar.hidden,
.size-bar.hidden {
	display: none;
}

.size-bar li {
	position: relative;
	padding: 7px;
	line-height: 1;
}

.size-bar li:not( .outstock ):hover {
	background-color: var( --ct-color-btn-dark );
	color: var( --ct-color-btn-light );
	cursor: pointer;
}

.size-bar li.outstock::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background-color: var( --ct-color-red );
	transform: rotate( -45deg );
}

.quickbuy-panel-container.active-preloader .quickbuy-preloader,
.quickbuy-panel-container.add-cart-message .message-container {
	display: block;
}

.quickbuy-preloader #dots3 {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	height: 10px;
	width: 40px;
	transform: translate( -50%, -50% );
}

.quickbuy-preloader #dots3 span {
	position: absolute;
	width: 10px;
	height: 10px;
	background: var( --ct-animation-color-middle );
	border-radius: 50%;
	-webkit-animation: dots3 1.5s infinite ease-out;
	animation: dots3 1.5s infinite ease-out;
}

.quickbuy-preloader #dots3 span:nth-child(1) {
	left: 0;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.quickbuy-preloader #dots3 span:nth-child(2) {
	left: 15px;
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

.quickbuy-preloader #dots3 span:nth-child(3) {
	left: 30px;
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.quickbuy-preloader #dots3 span:nth-child(4) {
	display: none;
}

.quickbuy-panel-container .temporary-woo-message {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row-reverse;
	column-gap: 5px;
	gap: 5px;
}

.quickbuy-panel-container .woo-mess {
	text-align: center;
}

.quickbuy-panel-container .icon-minicart {
	width: auto;
	height: 1.6rem;
}

.quickbuy-panel-container .waitlist_block {
	position: relative;
	overflow: hidden;
}

.quickbuy-panel-container .waitlist_block.active {
	display: block;
}

.quickbuy-panel-container span.waitlist-title {
	display: block;
	text-align: center;
	padding: 0 0 5px;
}

.quickbuy-panel-container .waitlist_block .relative {
	display: block;
	/* button height ( 40px ) + space ( 15px ) */
	margin-bottom: 55px;
}

.quickbuy-panel-container .waitlist_block .waitlist_input {
	padding-right: 5px;
	padding-left: 5px;
}

.quickbuy-panel-container .waitlist_block button.waitlist_add {
	/* space to fit error message between input and button */
	top: calc( 100% + 15px );
	right: 0;
	width: 100%;
	height: 40px;
	padding: 0 5px;
}

.quickbuy-panel-container .waitlist_block button.waitlist_add.thannkyou {
	top: 0;
	right: 0;
	width: 100%;
}

/* force WC styles */
.woocommerce ul.products li.product button.waitlist_add {
	margin-top: 0;
}

.quickbuy-panel-container .waitlist_result {
	bottom: 40px;
	max-width: 100%;
}

/* TODO: Remove block if theme NOT use infinite scrolling. */
/* Infinite scrolling
------------------------------------------------------------------------------------------------- */

.iwebsite-pagination-container,
.woocommerce-pagination {
	display: none;
}

.page-load-status {
	display: none;
	position: relative;
	margin: 0 0 100px;
}

.page-load-status .infinite-scroll-last,
.page-load-status .infinite-scroll-error {
	text-align: center;
}

/* Pagination
------------------------------------------------------------------------------------------------- */

.woocommerce nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul li {
	border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	font-size: 1.4rem;
	line-height: 1.6rem;
	color: var( --ct-color-dark-gray );
}

.woocommerce nav.woocommerce-pagination ul li span.dots,
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
	background: none;
	color: var( --ct-color-black );
}

/* Product page
================================================================================================= */

/* Product notice
------------------------------------------------------------------------------------------------- */

.woocommerce-notices-wrapper,
.woocommerce-form-login-toggle {
	display: none;
}

#product-notice-place {
	position: absolute;
	left: 30px;
	bottom: 0;
}

#product-notice-place ul.woocommerce-error,
#product-notice-place .woocommerce-message {
	padding: 0 0 0 24px;
	margin-bottom: 0;
	border: none;
	background: transparent;
}

#product-notice-place .woocommerce-error::before,
#product-notice-place .woocommerce-message::before {
	top: 0;
	left: 0;
}

#product-notice-place .woocommerce-error a.button,
#product-notice-place .woocommerce-message a.button {
	display: none;
}

/* Product gallery
------------------------------------------------------------------------------------------------- */

.woocommerce div.product div.images {
	margin-bottom: 50px;
}

/* force image paddings ( 5px ) */
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
	margin-right: -5px;
	margin-left: -5px;
}

/* TODO: Remove rule if theme NOT use "w/ vertical slider" product gallery. */
.woocommerce-product-gallery__vertical {
	display: none;
}

.woocommerce-product-gallery__wrapper .slick-arrow,
.woocommerce-product-gallery__wrapper .slick-arrow::before {
	width: 49px;
	height: 49px;
}

.woocommerce-product-gallery__wrapper .slick-arrow {
	z-index: 1;
}

.woocommerce-product-gallery__wrapper button.slick-prev {
	left: 0;
}

.woocommerce-product-gallery__wrapper button.slick-prev::before {
	content: url( ../images/icons/arrow__left.svg );
}

.woocommerce-product-gallery__wrapper button.slick-next {
	right: 0;
}

.woocommerce-product-gallery__wrapper button.slick-next::before {
	content: url( ../images/icons/arrow__right.svg );
}

.woocommerce div.product div.images.woocommerce-product-gallery .slick-slide {
	padding-right: 5px;
	padding-left: 5px;
}

/* TODO: Remove video-block styles here and next in block if theme NOT use video to product. */
.woocommerce div.product .woocommerce-product-gallery__wrapper .video-block--container {
	position: relative;
	/* force inline style */
	width: 100% !important;
	/* force inline style */
	height: 0 !important;
	padding-top: calc( 100% / 2 * 3 );
}

.woocommerce div.product .woocommerce-product-gallery__wrapper .video-block--container iframe {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
}

.woocommerce-product-gallery__wrapper .slick-dots {
	display: flex;
	column-gap: 5px;
	gap: 5px;
	justify-content: center;
	bottom: -15px;
}

.woocommerce-product-gallery__wrapper .slick-dots li,
.woocommerce-product-gallery__wrapper .slick-dots li button {
	width: auto;
	height: auto;
	padding: 0;
	margin: 0;
}

.woocommerce-product-gallery__wrapper .slick-dots li button:before {
	content: '';
	position: relative;
	display: block;
	width: 35px;
	height: 2px;
	background: var( --ct-color-btn-dark );
}

/* Product summary
------------------------------------------------------------------------------------------------- */

.woocommerce div.product div.summary {
	position: relative;
	margin-bottom: 30px;
}

.product .summary {
	display: grid;
	grid-template-columns: 1fr 60px;
	/* TODO: Remove "r r" row if theme NOT use Flag to product. */
	grid-template-areas:
		"t b"
		"s s"
		"r r"
		"p p"
		"z z"
		"c c"
		"f f";
	align-items: center;
}

.single-product-top-buttons {
	grid-area: b;
	position: relative;
	display: flex;
	column-gap: 15px;
	gap: 15px;
	justify-content: center;
	align-items: center;
	height: 30px;
}

.show-share-list {
	height: 18px;
	padding: 0;
	border: none;
	background-color: unset;
}

.show-share-list svg {
	height: 18px;
}

.single-product-top-buttons .yith-wcwl-add-to-wishlist,
.single-product-top-buttons .yith-wcwl-add-button > a i {
	margin: 0;
}

.yith-wcwl-add-button {
	height: 18px;
	font-size: 0;
}

.yith-wcwl-add-button a {
	display: block;
}

.yith-wcwl-add-button i {
	font-size: 18px;
}

.yith-wcwl-add-button span,
.yith-wcwl-add-button .view-wishlist {
	display: none;
}

.share-list-container {
	position: absolute;
	right: 0;
	top: 100%;
	display: none;
	padding: 5px;
	background: var( --ct-color-white );
	border: 1px solid var( --ct-color-middle-gray );
	z-index: 20;
}

.share-list-container.active {
	display: block;
}

.share-list {
	display: flex;
	column-gap: 10px;
	gap: 10px;
	text-align: center;
	font-size: 1rem;
}

.share-list__element svg {
	height: 15px;
}

.product .product_title {
	grid-area: t;
}

.woocommerce div.product .product_title {
	margin-bottom: 0;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.5;
}

.product .sku {
	grid-area: s;
	margin-bottom: 20px;
	font-size: 1rem;
	line-height: 1.5;
	color: var( --ct-color-dark-gray );
}

/* TODO: Remove rule if theme NOT use Flag to product. */
.summary .iftp-ribbon-image {
	grid-area: r;
	position: relative;
	margin-bottom: 20px;
}

.product .price {
	grid-area: p;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	display: flex;
	column-gap: 10px;
	gap: 10px;
	margin-bottom: 25px;
	color: var( --ct-color-black );
	font-weight: 700;
	font-size: 1.8rem;
}

/* TODO: Remove styles for .giftcard... here and next in block if theme NOT use gift card */
.woocommerce.iwebsite-giftcard div.product p.price {
	display: none;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
	font-weight: 500;
	color: var( --ct-color-dark-gray );
}

.product-attributes__container {
	position: relative;
	margin-bottom: 30px;
}

.product-attributes__container.product-attributes_size {
	grid-area: z;
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-areas:
		"h b"
		"a a";
	padding-bottom: 30px;
	border-bottom: 1px solid var( --ct-color-middle-gray );
}

.product-attributes__container.product-attributes_color {
	grid-area: c;
}

.product-attributes__title {
	grid-area: h;
	margin-bottom: 18px;
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.5;
}

.giftcard-attributes-container,
.product-attributes {
	grid-area: a;
	display: flex;
	column-gap: 10px;
	row-gap: 18px;
	gap: 18px 10px;
	flex-wrap: wrap;
}

.giftcard-attributes-container {
	grid-area: unset;
	margin-bottom: 30px;
}

.giftcard-attributes-container .attr-triger,
.product-attribute {
	position: relative;
	width: 33px;
	height: 26px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.giftcard-attributes-container .attr-triger {
	width: auto;
	padding-right: 5px;
	padding-left: 5px;
}

.giftcard-attributes-container .attr-triger:hover,
.product-attribute:hover {
	cursor: pointer;
}

.giftcard-attributes-container .attr-triger,
.product-attributes_size .product-attribute {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.4rem;
	line-height: 1;
	border: 1px solid transparent;
	border-radius: var( --ct-bd-radius );
	overflow: hidden;
}

.product-attributes_color .product-attribute:hover::after,
.product-attributes_color .product-attribute.active::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 39px;
	height: 32px;
	border: 1px solid var( --ct-color-middle-gray );
	border-radius: var( --ct-bd-radius );
	transform: translate(-50%, -50%);
}

.giftcard-attributes-container .attr-triger:hover,
.giftcard-attributes-container .attr-triger.active,
.product-attribute:hover,
.product-attribute.active {
	font-weight: 700;
	border-color: var( --ct-color-black );
}

.giftcard-attributes-container .attr-triger.inactive,
.product-attributes_size .product-attribute.inactive {
	color: var( --ct-color-dark-gray );
}

.giftcard-attributes-container .attr-triger.inactive::before,
.product-attribute.inactive::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 38px;
	height: 0;
	border-bottom: 1px solid var( --ct-color-red );
	transform: translate( -50%, -50% ) rotate( -143deg );
}

.product-attribute__image-wrap {
	width: 33px;
	height: 26px;
	border: 1px solid var( --ct-color-middle-gray );
	border-radius: var( --ct-bd-radius );
	overflow: hidden;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.product-attribute.inactive .product-attribute__image-wrap {
	opacity: .5;
}

.product-attribute__image {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
}

.woocommerce div.product form.cart {
	margin-bottom: 0;
}

.single_variation_wrap {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	margin: 0;
	padding: 12px 10px;
	border-top: 1px solid var( --ct-color-middle-gray );
	border-bottom: 1px solid var( --ct-color-middle-gray );
	background-color: var( --ct-color-white );
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	z-index: 15;
}

.woocommerce div.product form.cart .variations,
.woocommerce-variation {
	display: none !important;
}

.summary form.cart:not( .variations_form ),
.woocommerce-variation-add-to-cart {
	display: grid;
	grid-template-areas:
		"q e"
		"b b"
		"p p";
	gap: 30px;
	align-items: center;
}

.quantity {
	grid-area: q;
}

.woocommerce div.product form.cart div.quantity {
	margin: 0;
	float: unset;
}

.woocommerce .quantity .qty {
	width: 60px;
	padding-right: 4px;
	padding-left: 4px;
}

.quantity .input-text,
.quantity button {
	height: 19px;
	background-color: transparent;
	border: none;
	outline: unset;
}

.quantity button:focus {
	outline: unset;
}

.quantity__error-wrap {
	grid-area: e;
	justify-self: end;
}

.quantity__error {
	font-size: 1.2rem;
	line-height: 1.5;
	border-bottom: 1px solid var( --ct-color-black );
}

.woocommerce div.product form.cart .button {
	grid-area: b;
	border-radius: unset;
	background-color: var( --ct-color-btn-dark );
	border: 1px solid var( --ct-color-btn-dark );
	color: var( --ct-color-btn-light );
	font-weight: 400;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce div.product form.cart .button:focus {
	background-color: transparent;
	border: 1px solid var( --ct-color-btn-dark );
	color: var( --ct-color-btn-dark );
}

.add-to-cart__preloader {
	grid-area: p;
	position: relative;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s, visibility .3s;
}

.add-to-cart__preloader.active {
	opacity: 1;
	visibility: visible;
}

.waitlist_block,
.product .cart {
	grid-area: f;
}

.waitlist_block h4 {
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.5;
}

.waitlist_block .relative {
	position: relative;
	display: grid;
	gap: 25px;
	grid-template-columns: 1fr 150px;
}

.waitlist_block .label,
.woocommerce-product-details__short-description {
	display: none;
}

.waitlist_input {
	width: 100%;
	height: 40px;
	padding-right: 15px;
	padding-left: 15px;
	border: 1px solid var( --ct-color-middle-gray );
	border-radius: var( --ct-bd-radius );
	font-size: 1.4rem;
	line-height: 40px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

button.waitlist_add,
.woocommerce .waitlist_add.button {
	position: absolute;
	top: 0;
	right: 0;
	width: 150px;
	height: 40px;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1;
	background-color: var( --ct-color-btn-dark );
	border: 1px solid var( --ct-color-btn-dark );
	color: var( --ct-color-btn-light );
	border-radius: var( --ct-bd-specific-radius );
}

button.waitlist_add:hover,
.woocommerce .waitlist_add.button:hover {
	background-color: var( --ct-color-btn-light );
	border: 1px solid var( --ct-color-btn-dark );
	color: var( --ct-color-btn-dark );
}

button.waitlist_add.thannkyou,
.woocommerce .waitlist_add.button.thannkyou {
	/* button place ( 150px ) and gap ( 25px ) */
	right: calc( 150px + 25px );
	/* button place ( 150px ) and gap ( 25px ) */
	width: calc( 100% - 150px - 25px );
}

/* Product size table
------------------------------------------------------------------------------------------------- */

.size-table-btn {
	grid-area: b;
	display: flex;
	column-gap: 10px;
	gap: 10px;
	align-items: center;
	height: 40px;
}

.size-table-btn__text {
	border-bottom: 1px solid var( --ct-color-black );
	font-size: 1.2rem;
	line-height: 1.5;
}

.size-table-btn__icon svg {
	height: 18px;
}

.size-table__popup .popup {
	display: flex;
	max-width: 90%;
	max-height: 80%;
	width: auto;
}

.size-table__popup .popup__wrap {
	overflow-y: auto;
}

/* Product tabs
------------------------------------------------------------------------------------------------- */

.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: none;
}

.woocommerce div.product .woocommerce-tabs .panel {
	margin-bottom: 15px;
	border-bottom: 1px solid var( --ct-color-middle-gray );
}

.woocommerce-Tabs-panel,
.woocommerce-Tabs-panel h2 {
	font-weight: 400;
	font-size: 1.2rem;
}

.woocommerce-Tabs-panel h2 {
	margin-bottom: 15px;
}

.woocommerce-Tabs-panel h2:hover {
	cursor: pointer;
}

.woocommerce-Tabs-panel h2::before {
	content: url( ../images/icons/chevron__down.svg );
	display: inline-block;
	margin-right: 10px;
	transition: transform .3s;
}

.woocommerce-Tabs-panel.active h2::before {
	transform: rotate(180deg);
}

.woocommerce-Tabs-panel--content {
	display: none;
	/* fix for jQuery animation */
	width: 100% !important;
	padding-bottom: 15px;
}

/* TODO: Unwrap media rule content if theme NOT use special tabs style for desktop */
@media screen and ( max-width: 1023px ) {
	.woocommerce div.product .woocommerce-tabs .panel {
		/* force inline display:none for non active tab */
		display: block !important;
	}
}

/* Related products
------------------------------------------------------------------------------------------------- */

.related.products {
	margin-top: 60px;
}

.related.products h2 {
	margin-bottom: 30px;
	font-size: 2rem;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
}

/* force .wrap side paddings */
.woocommerce .related.products ul,
.woocommerce .related.products ul.products {
	margin-right: -10px;
	margin-left: -10px;
}

.related.products .slick-list {
	margin-right: 5px;
	margin-left: 5px;
}

.related.products .slick-arrow,
.related.products .slick-arrow::before {
	width: 11px;
	height: 20px;
}

.related.products .slick-arrow {
	/* minus half of text block height (84px) to align in image center */
	margin-top: calc( -84px / 2 );
	z-index: 1;
}

.related.products button.slick-prev {
	left: 10px;
}

.related.products button.slick-prev::before {
	content: url( ../images/icons/arrow__left.svg );
}

.related.products button.slick-prev::before:hover {
	content: url( ../images/icons/arrow__left.svg );
}

.related.products button.slick-next {
	right: 10px;
}

.related.products button.slick-next::before {
	content: url( ../images/icons/arrow__right.svg );
}

.related.products button.slick-next::before:hover {
	content: url( ../images/icons/arrow__right.svg );
}

.woocommerce .related.products .slick-slide,
.woocommerce-page .related.products .slick-slide {
	padding-right: 5px;
	padding-left: 5px;
	margin-bottom: 5px;
	clear: none;
}

.woocommerce .related.products ul.products li.product,
.woocommerce-page .related.products ul.products li.product {
	margin: 0;
}

/* My account
================================================================================================= */

.woocommerce-account .entry-header {
	display: none;
}

/* Login and Registration forms
------------------------------------------------------------------------------------------------- */

body.woocommerce-login .site-inner {
	max-width: 490px;
	width: 100%;
	margin: 0 auto;
}

.woocommerce #customer_login {
	position: relative;
	margin-top: 20px;
	overflow-x: hidden;
}

.woocommerce form.reset-form,
.woocommerce #customer_login .u-column1,
.woocommerce #customer_login .u-column2 {
	float: none;
	clear: both;
	width: 100%;
	padding: 10px;
	background-color: var( --ct-color-white );
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.woocommerce #customer_login .u-column1 {
	position: relative;
	left: 0;
	-webkit-transition: left 350ms ease;
	-moz-transition: left 350ms ease;
	transition: left 350ms ease;
}

.woocommerce #customer_login .u-column2 {
	position: absolute;
	top: 0;
	right: -100%;
	-webkit-transition: right 350ms ease;
	-moz-transition: right 350ms ease;
	transition: right 350ms ease;
}

.register-active .woocommerce #customer_login .u-column1 {
	left: -100%;
}

.register-active .woocommerce #customer_login .u-column2 {
	right: 0;
}

.u-columns__title {
	margin-bottom: 20px;
	font-size: 3rem;
	line-height: 1.5;
	text-align: center;
}

.woocommerce form.reset-form .u-columns__title {
	margin-top: 10px;
}

.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.reset-form {
	margin-top: 20px;
	margin-bottom: 20px;
	border: none;
}

.woocommerce form.login,
.woocommerce form.register {
	padding: 0;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
	font-size: 1.4rem;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
	float: unset;
	margin-left: 0;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce-form-register__submit,
.lost_reset_password .woocommerce-Button {
	width: 100%;
	height: 40px;
	margin-top: 30px;
	font-size: 1.4rem;
	line-height: 1.5;
}

#customer_login .woocommerce-LostPassword,
#customer_login .open-register-form,
#customer_login .open-login-form,
.facebook-entry {
	text-align: center;
	line-height: 1.5;
}

#customer_login .woocommerce-LostPassword {
	margin-top: 30px;
	font-size: 1.2rem;
}

#customer_login .woocommerce-LostPassword a {
	color: var( --ct-color-dark-gray );
}

#customer_login .open-register-form,
#customer_login .open-login-form,
.facebook-entry {
	margin-top: 15px;
	font-size: 1.3rem;
}

#customer_login .open-register-form:hover,
#customer_login .open-login-form:hover {
	cursor: pointer;
}

/* Menu
------------------------------------------------------------------------------------------------- */

.woocommerce-account .woocommerce-MyAccount-navigation {
	padding: 10px;
	margin-bottom: 40px;
	border-bottom: 1px solid var( --ct-color-middle-gray );
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.woocommerce-MyAccount-navigation-link {
	margin-top: 30px;
	margin-bottom: 30px;
}

.woocommerce-MyAccount-navigation-link a {
	display: block;
	border: 1px solid var( --ct-color-middle-gray );
	border-radius: var( --ct-bd-specific-radius );
	color: var( --ct-color-dark-gray );
	font-weight: 500;
	line-height: 40px;
	text-align: center;
}

.woocommerce-MyAccount-navigation-link.is-active a,
.woocommerce-MyAccount-navigation-link a:hover {
	background-color: var( --ct-color-btn-dark );
	border-color: var( --ct-color-btn-dark );
	color: var( --ct-color-btn-light );
}

/* Personal information
------------------------------------------------------------------------------------------------- */

.my-account-fields,
.my-account-fields__actions {
	padding: 30px 20px;
}

.my-account-fields {
	border-bottom: 1px solid var( --ct-color-middle-gray );
}

.woocommerce form .my-account-fields .form-row-first,
.woocommerce form .my-account-fields .form-row-last,
.woocommerce-page form .my-account-fields .form-row-first,
.woocommerce-page form .my-account-fields .form-row-last {
	float: unset;
	width: auto;
}

.my-account-fields__actions {
	display: flex;
	row-gap: 20px;
	gap: 20px;
	flex-direction: column;
}

.my-account-fields__actions .btn {
	width: 100%;
	height: 40px;
	font-size: 1.4rem;
}

/* Change password form
------------------------------------------------------------------------------------------------- */

.change-password-form .btn {
	width: 100%;
	height: 40px;
	font-size: 1.4rem;
}

/* Orders table
------------------------------------------------------------------------------------------------- */

@media screen and ( max-width: 767px ) {
	.woocommerce table.shop_table_responsive tr td.order-date,
	.woocommerce-page table.shop_table_responsive tr td.order-date {
		position: relative;
		font-weight: 700;
		font-size: 1.4rem;
	}

	.woocommerce table.shop_table_responsive tr td.order-date::before,
	.woocommerce-page table.shop_table_responsive tr td.order-date::before {
		content: url( ../images/icons/chevron__down.svg );
		position: absolute;
		right: 0;
		top: 50%;
		display: inline-block;
		transform: translateY( -50% );
		transition: transform .3s;
	}

	.woocommerce table.shop_table_responsive tr.active td.order-date::before,
	.woocommerce-page table.shop_table_responsive tr.active td.order-date::before {
		transform: translateY( -50% ) rotate(180deg);
	}

	.woocommerce table.shop_table_responsive tr:not( .active ) td.order-number,
	.woocommerce-page table.shop_table_responsive tr:not( .active ) td.order-number,
	.woocommerce table.shop_table_responsive tr:not( .active ) td.order-total,
	.woocommerce-page table.shop_table_responsive tr:not( .active ) td.order-total,
	.woocommerce table.shop_table_responsive tr:not( .active ) td.order-status,
	.woocommerce-page table.shop_table_responsive tr:not( .active ) td.order-status,
	.woocommerce table.shop_table_responsive tr:not( .active ) td.order-additional-status,
	.woocommerce-page table.shop_table_responsive tr:not( .active ) td.order-additional-status,
	.woocommerce table.shop_table_responsive tr:not( .active ) td.order-actions,
	.woocommerce-page table.shop_table_responsive tr:not( .active ) td.order-actions {
		height: 0;
		padding: 0;
		border-width: 0;
		overflow: hidden;
	}
}

.woocommerce table.shop_table_responsive tr.product-items td::before,
.woocommerce-page table.shop_table_responsive tr.product-items td::before,
.woocommerce table.shop_table_responsive tr.product-items .order-items__wrap {
	display: none;
}

.woocommerce table.shop_table tr.product-items th,
.woocommerce table.shop_table tr.product-items td {
	padding: 0;
}

.order-items__wrap {
	padding-top: 15px;
	padding-bottom: 15px;
	background-color: var( --ct-color-light-gray );
}

.order-item {
	display: grid;
	gap: 10px 30px;
	grid-template-columns: 100px 1fr;
	margin-bottom: 20px;
}

.order-item:last-child {
	margin-bottom: 0;
}

.order-item__img {
	grid-row: span 4;
}

.order-item__name,
.order-item__attrs,
.order-item__price,
.order-item__quantity {
	grid-column: 2;
}

.order-item__attrs {
	display: flex;
}

.color-attr,
.size-attr {
	width: 50%;
}

.order-item__attrs .color-image img {
	border-radius: 50%;
}

/* Wishlist
------------------------------------------------------------------------------------------------- */

.wishlist__container {
	display: grid;
	grid-template-columns: repeat( 2, 1fr );
	gap: 30px 12px;
}

.wishlist-item {
	position: relative;
	display: grid;
	gap: 15px;
	grid-template-columns: 1fr;
}

.wishlist-item__remove {
	position: absolute;
	top: 0;
	right: 0;
}

.wishlist-item__information {
	display: grid;
	gap: 10px;
}

.wishlist-item__title {
	width: 100%;
	font-size: 1.6rem;
	line-height: 1.5;
	text-align: center;
}

.wishlist__attributes,
.wishlist__price {
	justify-content: center;
}

.wishlist__attributes {
	display: flex;
	align-items: center;
	column-gap: 10px;
	gap: 10px;
	/* to keep similar item cards height id attrs not exist */
	height: calc( 1.3rem * 1.2 );
	font-size: 1.3rem;
	color: var( --ct-color-dark-gray );
}

.wishlist__price {
	display: flex;
	align-items: center;
	row-gap: 10px;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 1.6rem;
	font-weight: 700;
}

.wishlist__price del {
	color: var( --ct-color-dark-gray );
	font-size: 1.4rem;
}

.wishlist-item__add-to-cart .add_to_cart {
	display: block;
	padding-right: 5px;
	padding-left: 5px;
	background-color: var( --ct-color-btn-dark );
	border: 1px solid var( --ct-color-btn-dark );
	color: var( --ct-color-btn-light );
	border-radius: var( --ct-bd-specific-radius );
	line-height: 40px;
	text-align: center;
	font-size: 1.6rem;
}

.wishlist-item__add-to-cart .add_to_cart:hover,
.wishlist-item__add-to-cart .add_to_cart:focus {
	background-color: var( --ct-color-btn-light );
	border: 1px solid var( --ct-color-btn-dark );
	color: var( --ct-color-btn-dark );
}

/* Cart & Checkout
================================================================================================= */

.woocommerce-form-coupon-toggle {
	display: none;
}

.woocommerce-checkout #customer_details {
	margin-bottom: 20px;
}

/* TODO: Remove block if theme NOT use steps on united checkout page. */
/* Checkout steps
------------------------------------------------------------------------------------------------- */

body.woocommerce-checkout {
	counter-reset: checkout-step;
}

.checkout-step__container {
	display: flex;
	column-gap: 10px;
	align-items: center;
	margin-top: 30px;
	margin-bottom: 20px;
}

.checkout-step__number {
	counter-increment: checkout-step;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 27px;
	height: 27px;
	border: 2px solid var( --ct-color-green );
	border-radius: 50%;
	color: var( --ct-color-green );
	line-height: 1;
}

.checkout-step__number::before {
	content: counter( checkout-step );
}

.checkout-step__title {
	font-weight: 500;
	font-size: 2rem;
}

/* Items
------------------------------------------------------------------------------------------------- */

.woocommerce-cart-form__contents {
	display: grid;
	grid-template-columns: 1fr;
}

.cart_item {
	display: grid;
	gap: 15px;
	padding: 15px;
	margin-bottom: -1px;
	border: 1px solid var( --ct-color-middle-gray );
}

.cart_item .product-thumbnail a {
	display: block;
}

.cart_item .product-thumbnail img {
	width: 100%;
}

.cart_item .product-info {
	position: relative;
	display: grid;
	gap: 15px;
}

.cart_item .product-name {
	/* exclude remove button width */
	width: calc( 100% - 1.5rem );
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.5;
}

.cart_item .product-attr {
	display: flex;
	column-gap: 10px;
	gap: 10px;
	align-items: center;
	color: var( --ct-color-dark-gray );
	font-size: 1.3rem;
}

.checkout-product-attr__separator {
	display: block;
	width: 4px;
	height: 4px;
	background-color: var( --ct-color-dark-gray );
	border-radius: 50%;
}

.cart_item .product-price {
	display: flex;
	column-gap: 10px;
	gap: 10px;
	align-items: center;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
}

.cart_item .product-price del {
	color: var( --ct-color-dark-gray );
	font-size: 1.4rem;
}

.cart_item .quantity {
	position: relative;
	display: inline-block;
}

.cart_item .product-quantity .input-text,
.cart_item .product-quantity button {
	display: inline-block;
	width: 22px;
	height: 28px;
	background-color: var( --ct-color-white );
	border: 1px solid var( --ct-color-middle-gray );
	border-radius: var( --ct-bd-radius );
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.cart_item .product-quantity .input-text {
	width: 90px;
	padding-right: 22px;
	padding-left: 22px;
}

.cart_item .product-quantity button {
	position: absolute;
}

.cart_item .product-quantity .plus {
	right: 0;
	z-index: 2;
}

.cart_item .product-quantity .minus {
	left: 0;
}

.cart_item .product-remove {
	position: absolute;
	top: 0;
	right: 0;
}

.woocommerce a.remove:hover {
	background-color: unset;
}

.cart_item .product-remove svg {
	vertical-align: middle;
}

a.remove:hover svg {
	-webkit-animation: spin .35s linear 1;
	-moz-animation: spin .35s linear 1;
	animation: spin .35s linear 1;
}

.cart_item .product-remove svg path {
	stroke: var( --ct-color-dark-gray );
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* User info
------------------------------------------------------------------------------------------------- */

.woocommerce-NoticeGroup,
.woocommerce form .form-row .optional,
.woocommerce-additional-fields,
#billing_country_field,
#shipping_country_field {
	display: none;
}

.block-tumbler h4 {
	margin-bottom: 20px;
}

.block-tumbler .btn.btn_glass,
.custom-register-form--inner .btn.send-password {
	min-width: 70px;
	line-height: 30px;
}

.block-tumbler .btn.btn_glass {
	font-size: 1.6rem;
}

.woocommerce form .custom-register-form--inner .form-row-first,
.woocommerce form .custom-register-form--inner .form-row-last {
	float: unset;
	clear: both;
	width: 100%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.custom-register-form--inner .btn.send-password {
	font-size: 1.4rem;
}

.custom-register-form--inner .lost_password {
	text-align: center;
	font-size: 1rem;
}

#ship-to-different-address span {
	color: var( --ct-color-dark-gray );
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.5;
}

/* TODO: Remove block if theme NOT use gift card. */
/* Giftcard form
------------------------------------------------------------------------------------------------- */

.checkout__giftcard h3 {
	display: none;
}

.checkout__giftcard .clearfix,
.checkout__giftcard .third-col {
	display: grid;
	gap: 20px;
	align-items: start;
}

.form-row-giftcard {
	margin-top: 30px;
	margin-bottom: 0;
}

/* Shipping
------------------------------------------------------------------------------------------------- */

.checkout__shipping-table {
	width: 100%;
}

.checkout__shipping-table th {
	display: none;
}

.woocommerce ul#shipping_method li {
	position: relative;
	margin-bottom: 15px;
}

.woocommerce ul#shipping_method li:last-child {
	margin-bottom: 0;
}

.woocommerce ul#shipping_method li input {
	height: 1.5em;
	margin: 0;
}

.woocommerce ul#shipping_method li label {
	display: block;
	margin-right: 65px;
	margin-left: 24px;
	font-weight: 500;
	line-height: 1.5;
}

.woocommerce ul#shipping_method .amount {
	position: absolute;
	top: 0;
	right: 0;
}

/* TODO: Remove media rule and content if theme NOT use SEPARATED checkout */
@media screen and ( max-width: 768px ) {
	.woocommerce table.shop_table_responsive tr td,
	.woocommerce-page table.shop_table_responsive tr td {
		clear: both;
	}
}

/* TODO: Remove block if theme NOT use departments or local pickup. */
/* Local pickup
------------------------------------------------------------------------------------------------- */

.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(1, 1, 1, 0.7);
	z-index: 100;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s , visibility 0.3s;
	-ms-transition: opacity 0.3s , visibility 0.3s;
	-moz-transition: opacity 0.3s , visibility 0.3s;
	-o-transition: opacity 0.3s , visibility 0.3s;
	-webkit-transition: opacity 0.3s , visibility 0.3s;
}

.popup-overlay.show {
	visibility: visible;
	opacity: 1;
}

.local-pickup-options-container {
	position: absolute;
	top: 50%;
	left: 50%;
	-o-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	max-width: 500px;
	min-height: 480px;
	width: 100%;
	padding: 25px 15px;
	background-color: #fff;
}

.local-pickup-close {
	cursor: pointer;
}

.local-pickup-title {
	display: block;
	max-width: 300px;
	margin: 0 auto 40px;
	font-size: 3rem;
	text-align: center;
}

.local-pickup-select-container {
	display: block;
	max-width: 300px;
	margin: 0 auto;
	width: 100%;
}

#local_pickup {
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

#local_pickup.visible {
	visibility: visible;
	opacity: 1;
}

.local-pickup-options-container .department-container {
	position: relative;
	width: 100%;
	max-width: 300px;
	margin: 30px auto 0;
}

.department-info {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	font-weight: 600;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

.department-info.show {
	visibility: visible;
	opacity: 1;
}

.department-info label:not(:last-child) {
	display: block;
	margin-bottom: 8px;
}

.department-info input.department-radio {
	display: none;
}

.local-pickup-wrap td {
	display: flex;
	justify-content: space-between;
	padding-top: 30px;
}

.local-pickup-wrap .local-pickup-title {
	margin: 0;
	font-size: 1.6rem;
}

/* Coupon
------------------------------------------------------------------------------------------------- */

.coupon_custom {
	margin-bottom: 20px;
}

.woocommerce form .form-row.coupon_custom input.input-text {
	width: 100%;
	margin-bottom: 20px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	outline: none;
}

.coupon_custom .btn {
	width: 100%;
	font-size: 1.6rem;
	line-height: 1.5;
}

/* TODO: Remove block if theme NOT use birthday module. */
/* Clubmember
------------------------------------------------------------------------------------------------- */

.check-if-clubmember .fields {
	margin-bottom: 20px;
}

.check-if-clubmember .form-row {
	display: none;
}

/* Summary
------------------------------------------------------------------------------------------------- */

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
	background-color: var( --ct-color-white );
}

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
	padding: 0;
	border-bottom: none;
}

#add_payment_method #payment ul.payment_methods li input,
.woocommerce-cart #payment ul.payment_methods li input,
.woocommerce-checkout #payment ul.payment_methods li input {
	margin-right: 10px;
}

ul.payment_methods li label {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.5;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
	/* .wrap side paddings ( 10px each ) */
	width: calc( 100% + 20px );
	padding: 3px 30px;
	margin: 10px -10px;
	background-color: var( --ct-color-light-gray );
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
	content: unset;
}

.woocommerce table.shop_table {
	margin-bottom: 15px;
	border: none;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
	border-top: none;
	font-weight: 400;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	padding: 15px 0;
}

.cart-sum__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.cart-sum__title {
	font-size: 1.6rem;
}

.order-total .cart-sum__title {
	font-weight: 500;
	font-size: 2rem;
}

.cart-sum__sum {
	font-size: 1.4rem;
	color: var( --ct-color-dark-gray );
}

.order-total .cart-sum__sum {
	font-size: 2rem;
	text-align: right;
	color: var( --ct-color-black );
}

.order-comments__title {
	margin-bottom: 15px;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.5;
}

.order-comments__text {
	width: 100%;
	height: 1.5em;
	padding: 10px 0;
	border-width: 0 0 1px;
	border-color: var( --ct-color-middle-gray );
	font-size: 1.4rem;
	line-height: 1.5;
	resize: none;
}

.order-comments__subtext {
	font-size: 1rem;
	color: var( --ct-color-dark-gray );
}

#add_payment_method #payment div.form-row,
.woocommerce-cart #payment div.form-row,
.woocommerce-checkout #payment div.form-row {
	padding: 0;
	margin-bottom: 0;
}

.woocommerce-terms-and-conditions-checkbox-text {
	font-size: 1.2rem;
	line-height: 1.5;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
	height: 40px;
	font-size: 1.6rem;
}

/* Thank you page
================================================================================================= */

.woocommerce-order-received .breadcrumb__wrap,
.woocommerce-order-received .entry-header {
	display: none;
}

.thank-you__container {
	margin-top: 50px;
	margin-bottom: 50px;
	text-align: center;
	line-height: 1.5;
}

.thank-you__title {
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 4rem;
}

.thank-you__order {
	margin-bottom: 40px;
	font-size: 2rem;
}

.thank-you__text {
	max-width: 430px;
	margin: 0 auto 30px;
	font-size: 2rem;
}

.thank-you__button-wrap {
	max-width: 300px;
	margin-right: auto;
	margin-left: auto;
}

.thank-you__button-wrap .btn {
	display: block;
	width: 100%;
	line-height: 40px;
	font-size: 1.4rem;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.thank-you__button-wrap .btn ~ .btn {
	margin-top: 20px;
}

.thank-you__hidden {
	display: none;
}

/* Search
================================================================================================= */

/* Search string
------------------------------------------------------------------------------------------------- */

.search-string__container {
	padding-top: 15px;
	padding-bottom: 15px;
	margin-bottom: 60px;
	border: 1px solid var( --ct-color-middle-gray );
	border-right-width: 0;
	border-left-width: 0;
}

.search-string__wrap {
	display: flex;
	column-gap: 20px;
	gap: 20px;
	align-items: center;
}

.search-string__button,
.search-string__input {
	padding: 0;
	border-width: 0;
}

.search-string__button {
	display: flex;
	column-gap: 15px;
	gap: 15px;
	align-items: center;
	line-height: 1;
	background-color: transparent;
}

.search-string__separator::before {
	content: '|';
	color: var( --ct-color-middle-gray );
}

.search-string__input-wrap {
	flex: 1;
}

.search-string__input {
	width: 100%;
}

.search-string__input:focus {
	outline: none;
}

/* Contact us
================================================================================================= */

/* Contact image
------------------------------------------------------------------------------------------------- */

/* force .wrap side paddings */
.contact-us__image-wrap {
	margin-right: -10px;
	margin-left: -10px;
}

.contact-us__image-wrap img {
	width: 100%;
}

/* TODO: Remove block if theme NOT use map on contact page. */
/* Contact map
------------------------------------------------------------------------------------------------- */

.contact-us__google-map-wrap {
	margin-bottom: 20px;
}

.google-map-container {
	padding-top: calc( 100% / 9 * 5 );
}

/* Departments
================================================================================================= */

.page-banner__image {
	width: 100%;
}

.departments-page .entry-header {
	text-align: center;
}

.department {
	display: flex;
	flex-direction: column-reverse;
	padding: 10px;
	margin: 0 -10px 20px;
	border: 1px solid var( --ct-color-middle-gray );
}

.department__map {
	padding-top: 100%;
	margin: 0 -10px 10px;
}

.department .contact-data__wrap {
	grid-template-columns: 1fr;
	gap: 20px;
	padding-top: 25px;
	padding-bottom: 25px;
}

/* FAQ
================================================================================================= */

.faq-page .entry-title {
	margin-top: 60px;
	margin-bottom: 20px;
}

.faq__container {
	margin-top: 60px;
}

.faq__title {
	position: relative;
	padding-top: 30px;
	padding-bottom: 15px;
	margin-top: 15px;
	margin-bottom: 0;
	border-top: 1px solid var( --ct-color-middle-gray );
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.5;
}

.faq__title:first-child {
	padding-top: 0;
	margin-top: 0;
	border-top-width: 0;
}

.faq__title:hover {
	cursor: pointer;
}

.faq__title::after {
	content: url( ../images/icons/cross.svg );
	position: absolute;
	/* plus half of top padding and minus bottom padding */
	top: calc( 50% + 30px / 2 - 15px / 2 );
	right: 0;
	transform: translateY( -50% ) rotate( 45deg );
	transition: transform .3s;
}

.faq__title:first-child::after {
	top: 50%;
}

.faq__title.ui-state-active::after {
	transform: translateY( -50% ) rotate( 0deg );
}

.faq__content {
	font-size: 1.6rem;
	line-height: 1.5;
}

/* Size table
================================================================================================= */

.size-table__image {
	width: 100%;
}

/* 404 page
================================================================================================= */

.page-404__container {
	margin-top: 60px;
	margin-bottom: 60px;
	text-align: center;
}

.page-404__title {
	margin-bottom: 15px;
	font-size: 4rem;
}

.page-404__button-wrap {
	max-width: 440px;
	width: 90%;
	margin-right: auto;
	margin-bottom: 35px;
	margin-left: auto;
}

.page-404__button {
	display: block;
	width: 100%;
	line-height: 40px;
	font-size: 1.6rem;
}

.page-404__text {
	font-size: 2rem;
	line-height: 1.5;
	color: var( --ct-color-dark-gray );
}