/*
//----------------------------------------------------------------------
// Spacer
//----------------------------------------------------------------------
*/

.templates-section .spacer-template .line {
	display: flex;
	justify-content: center;
	align-items: center;
}

.templates-section .spacer-template .line:before,
.templates-section .spacer-template .line:after {
	background-color: #ebebeb;
	background-color: var(--gray5, #ebebeb);

	content: '';
	flex-grow: 1;
	height: 1px;
}

.templates-section .spacer-template .line .text {
	font-weight: 700;
	font-weight: var(--fw700, 700);
	color: #333;
	color: var(--gray3, #333);

	margin: 0 30px;
	text-align: center;
}

/*
//----------------------------------------------------------------------
// Spacer - end
//----------------------------------------------------------------------
*/

/*
//----------------------------------------------------------------------
// Circles
//----------------------------------------------------------------------
*/

.templates-section .circles-template ul {
	margin: 0 auto;
}

.templates-section .circles-template ul li {
	padding: 0 20px;
	outline: unset;
}

.templates-section .circles-template ul li a {
	display: block;
	padding: 20px 10px;
	outline: unset;
}

.templates-section .circles-template ul li .image {
	border-radius: 100%;
	margin: 0 auto;
}

.templates-section .circles-template ul li .text {
	font-weight: 500;
	font-weight: var(--fw500, 500);
	color: #333;
	color: var(--gray3, #333);

	display: block;
	margin-top: 15px;
	text-align: center;
}

/*
//----------------------------------------------------------------------
// Circles - end
//----------------------------------------------------------------------
*/

/*
//----------------------------------------------------------------------
// Squares 
//----------------------------------------------------------------------
*/

.templates-section .squares-template ul {
	margin: 0 auto;
}

.templates-section .squares-template ul .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	z-index: 1;
	display: flex;

	align-items: center;
	justify-content: center;
	border-radius: 100%;
	/*background-color: var(--pink);*/
	font-size: 30px;
}

.templates-section .squares-template ul .slick-arrow span[class^="icon-"] {
	font-weight: var(--fw600);
}

.templates-section .squares-template ul .slick-arrow.slick-prev {
	left: 30px;
}

.templates-section .squares-template ul .slick-arrow.slick-next {
	right: 30px;
}

.templates-section .squares-template ul li {
	padding: 0 20px;
	outline: unset;
}

.templates-section .squares-template ul li a {
	display: block;
	/* 	padding: 20px 10px; */
	outline: unset;
	position: relative;
}

.templates-section .squares-template ul li .image {
	margin: 0 auto;
}

.templates-section .squares-template ul li .text {
	font-weight: 500;
	font-weight: var(--fw500, 500);
	color: #333;
	color: var(--gray3, #333);

	display: block;
	margin-top: 15px;
	text-align: center;
}

.templates-section .squares-template ul li button {
	display: block;
	margin: 12px auto;
	font-size: var(--font15px);
	max-width: 200px;
	width: 100%;
	padding: 10px;
	background-color: var(--pink1);
	border-radius: 50px;
}

.squares-template .sale-strip {
	color: #d80f5e;
	color: var(--pink2, #d80f5e);
	font-weight: 600;
	font-weight: var(--fw600, 600);

	position: absolute;
	z-index: 2;
	display: grid;
	top: 10px;
	left: 10px;
}

.squares-template .sale-strip > * {
	grid-area: 1 / 1 / -1 / -1;
}

.squares-template .sale-strip .pick {
	width: 60px;
	height: 60px;
	display: block;
	display: flex;
	align-items: center;
	justify-content: center;
}

.squares-template .sale-strip.single.and-up-to .pick {
	width: 60px;
	height: 60px;
}

.squares-template .sale-strip .label {
	position: relative;
	z-index: 1;
	justify-self: center;
	align-self: center;
	display: flex;
	font-size: 1.12rem;
	margin-right: -8px;
}

.squares-template .sale-strip .label > *:not(:last-child) {
	margin-left: 3px;
}

.squares-template .sale-strip .label .max {
	display: flex;
}

.squares-template .sale-strip .label .max .symbol {
	order: -1;
}

@media (max-width: 1023px) {
	.squares-template .sale-strip {
		top: 3px !important;
		left: 2px !important;
	}

	.squares-template .sale-strip .pick, .squares-template .sale-strip .pick {
		width: 40px;
		height: 40px;
	}

	.squares-template .sale-strip .label {
		font-size: .9rem;
	}

	.templates-section .squares-template ul .slick-arrow{
		font-size:21px;
	}
	.templates-section .squares-template ul .slick-arrow.slick-prev {
		left: 0px;
	}
	.templates-section .squares-template ul .slick-arrow.slick-next {
		right: 0px;
	}

}

/*
//----------------------------------------------------------------------
// Squares - end
//----------------------------------------------------------------------
*/

/*
//----------------------------------------------------------------------
// Banners
//----------------------------------------------------------------------
*/

.templates-section .banners-template > ul {
	margin: 0 auto;
	position: relative;
}

.templates-section .banners-template > ul li,
.templates-section .banners-template > ul li a {
	outline: unset;
}

.templates-section .banners-template > ul li a {
	display: block;
}

.templates-section .banners-template > ul .slick-dots {
	position: absolute;
	bottom: -20px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	display: flex;
}

.templates-section .banners-template > ul .slick-dots li:not(:last-child) {
	margin-left: 10px;
}

.templates-section .banners-template > ul .slick-dots button {
	width: 11px;
	height: 11px;
	border-radius: 100%;
	font-size: 0;
	line-height: 0;
	display: block;
	border: 2px solid #ccc;
	background-color: #fff;
	transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.templates-section .banners-template > ul .slick-dots .slick-active button {
	border-color: #333;
	border-color: var(--gray3, #333);
	background-color: #333;
	background-color: var(--gray3, #333);
}

.templates-section .banners-template > ul .slick-dots .slick-active button[aria-label="1 of 1"] {
	display: none;
}

.templates-section .banners-template > ul .slick-arrow {
	font-size: 0;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	border: none;
	z-index: 1;
}

.templates-section .banners-template > ul .slick-arrow.slick-prev {
	/* 	right: 30px; */
	right: 8px;
	border-top: 2px solid;
	border-right: 2px solid;
	-webkit-transform: translate(0, -50%) rotate(45deg);
	-ms-transform: translate(0, -50%) rotate(45deg);
	transform: translate(0, -50%) rotate(45deg);

	border-color: #333;
	border-color: var(--gray3, #333);
}

.templates-section .banners-template > ul .slick-arrow.slick-next {
	/* 	left: 30px; */
	left: 8px;
	border-bottom: 2px solid;
	border-left: 2px solid;
	-webkit-transform: translate(0, -50%) rotate(45deg);
	-ms-transform: translate(0, -50%) rotate(45deg);
	transform: translate(0, -50%) rotate(45deg);

	border-color: #333;
	border-color: var(--gray3, #333);
}

.banners-template .slick-slide img{
	margin:0 auto;
}

/*
//----------------------------------------------------------------------
// Banners - end
//----------------------------------------------------------------------
*/

/*
//----------------------------------------------------------------------
// Title
//----------------------------------------------------------------------
*/

.templates-section .title-template {
	display: flex;
	justify-content: center;
}

.templates-section .title-template .lines {
	display: flex;
	align-items: center;
	justify-content: center;
}

.templates-section .title-template .lines:before {
	content: '';
	height: 1px;
}

.templates-section .title-template .lines:after {
	display:none;
}

.templates-section .title-template .text {
	font-weight: 500;
	font-weight: var(--fw500, 500);
	color: #333;
	color: var(--gray3, #333);

	padding: 0 15px;
	text-align: center;
}

/*
//----------------------------------------------------------------------
// Title - end
//----------------------------------------------------------------------
*/

/*
//----------------------------------------------------------------------
// Two to six links
//----------------------------------------------------------------------
*/

.templates-section .two-to-six-links-template ul {
	margin: 0 auto;
	display: grid;
}

.templates-section .two-to-six-links-template li {
	color: #333;
	color: var(--gray3, #333);
}

.templates-section .two-to-six-links-template .title {
	font-weight: 700;
	font-weight: var(--fw700, 700);

	margin-top: 15px;
	text-align: center;
}

.templates-section .two-to-six-links-template .sub-title {
	margin-top: 15px;
	text-align: center;
}

.templates-section .two-to-six-links-template .link {
	margin-top: 15px;
	display: flex;
	justify-content: center;
}

.templates-section .two-to-six-links-template .link a {
	color: #333;
	color: var(--gray3, #333);
	font-weight: 700;
	font-weight: var(--fw700, 700);

	display: block;
	padding: 10px 40px;
	border: 2px solid;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;

	border-color: #333;
	border-color: var(--gray3, #333);
}

.templates-section .two-to-six-links-template .link a:hover {
	color: #fff;
	color: var(--white, #fff);
	background-color: #333;
	background-color: var(--gray3, #333);
}

/*
//----------------------------------------------------------------------
// Two to six links - end
//----------------------------------------------------------------------
*/

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

.templates-section .products-template ul.products {
	margin: 0 auto;
	display: block;
	grid-gap: unset;
	grid-template-columns: unset;
	position: relative;
	visibility: hidden;
}

.templates-section .products-template ul.products.slick-initialized {
	visibility: unset;
}

.templates-section .products-template ul.products li,
.templates-section .products-template ul.products li a {
	outline: unset;
}

.templates-section .products-template ul.products .slick-arrow {
	font-size: 0;
	width: 30px;
	height: 30px;
	position: absolute;
	border: none;
	z-index: 1;
}

.templates-section .products-template ul.products .slick-arrow.slick-prev {
	right: 15px;
	border-top: 2px solid;
	border-right: 2px solid;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);

	border-color: #333;
	border-color: var(--gray3, #333);
}

.templates-section .products-template ul.products .slick-arrow.slick-next {
	left: 15px;
	border-bottom: 2px solid;
	border-left: 2px solid;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);

	border-color: #333;
	border-color: var(--gray3, #333);
}

/*
//----------------------------------------------------------------------
// Products - end
//----------------------------------------------------------------------
*/

/*
//----------------------------------------------------------------------
// Your size
//----------------------------------------------------------------------
*/

.templates-section .your-size-template .wrap {
	margin: 0 auto;
	padding: 50px;
	display: flex;
}

.templates-section .your-size-template .wrap .content {
	margin: auto;
	width: 100%;
	max-width: 600px;
	text-align: center;
}

.templates-section .your-size-template .wrap .content.text-color-black {
	color: #333;
	color: var(--gray3, #333);
}

.templates-section .your-size-template .wrap .content.text-color-white {
	color: #fff;
	color: var(--white, #fff);
}

.templates-section .your-size-template .wrap .content .small-title {
	letter-spacing: 0.3px;
	margin-bottom: 10px;
}

.templates-section .your-size-template .wrap .content .large-title {
	font-weight: 500;
	font-weight: var(--fw500, 500);

	margin-bottom: 10px;
}

.templates-section .your-size-template .wrap .content .description {
	line-height: 1.6;
	margin-bottom: 20px;
}

.templates-section .your-size-template .wrap .content .link {
	display: flex;
	justify-content: center;
}

.templates-section .your-size-template .wrap .content .link a {
	font-weight: 700;
	font-weight: var(--fw700, 700);

	display: inline-block;
	padding: 15px 40px;
}

.templates-section .your-size-template .wrap .content.text-color-white .link a {
	background-color: #fff;
	background-color: var(--white, #fff);
	color: #333;
	color: var(--gray3, #333);
}

.templates-section .your-size-template .wrap .content.text-color-black .link a {
	background-color: #333;
	background-color: var(--gray3, #333);
	color: #fff;
	color: var(--white, #fff);
}

/*
//----------------------------------------------------------------------
// Your size - end
//----------------------------------------------------------------------
*/

/*
//----------------------------------------------------------------------
// Banner cubes
//----------------------------------------------------------------------
*/

.templates-section .banner-cubes-template ul {
	display: grid;
	margin: 0 auto;
}

.templates-section .banner-cubes-template li{
		overflow: hidden;
}
.templates-section .banner-cubes-template ul li a {
	display: block;
	position:relative;
	overflow: hidden;

}

.templates-section .banner-cubes-template ul li a.text-cube
.templates-section .banner-cubes-template ul li a.text-cube img{

	
}


.templates-section .banner-cubes-template ul li a.text-cube:hover,
.templates-section .banner-cubes-template ul li a.text-cube:hover img{
	    transform: scale(1.03);
    transition: all .8s ease;
}

.templates-section .banner-cubes-template ul li a .cover-bg{
	background-color: rgb(0 0 0 / 28%);
	position: absolute;
	width: 100%;
	height: 100%;
	z-index:2;
}
.templates-section .banner-cubes-template ul li a .cube-text{
	color:#fff;
	text-shadow: 0 0 50px #000;
	position: absolute;
	top: 50%;  
	left: 50%; 
	transform: translate(-50%, -50%); 
	font-size: 1.4em;
	z-index:3;
}

/*
//----------------------------------------------------------------------
// Banner cubes - end
//----------------------------------------------------------------------
*/

/*
//----------------------------------------------------------------------
// Text block
//----------------------------------------------------------------------
*/

.templates-section .text-block-template .wrap {
	margin: 0 auto;
}

.templates-section .text-block-template .wrap .title {
	color: #333;
	color: var(--gray3, #333);

	margin-bottom: 15px;
	text-align: center;
}

.templates-section .text-block-template .wrap .description {
	line-height: 1.6;
	margin-bottom: 15px;
}

.templates-section .text-block-template .wrap .link {
	display: flex;
	justify-content: center;
}

.templates-section .text-block-template .wrap .link a {
	color: #333;
	color: var(--gray3, #333);
	font-weight: 700;
	font-weight: var(--fw700, 700);

	display: block;
	padding: 10px 40px;
	border: 2px solid;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;

	border-color: #333;
	border-color: var(--gray3, #333);
}

.templates-section .text-block-template .wrap .link a:hover {
	color: #fff;
	color: var(--white, #fff);
	background-color: #333;
	background-color: var(--gray3, #333);
}

/*
//----------------------------------------------------------------------
// Text block - end
//----------------------------------------------------------------------
*/

/*
//----------------------------------------------------------------------
// Video
//----------------------------------------------------------------------
*/

.templates-section .video-template + .template-section{
	margin-bottom: 50px auto;
}
.templates-section .video-template {
	display: grid;
	grid-template-columns: 1fr;
	margin-bottom: 50px;
}

.templates-section .video-template > * {
	grid-area: 1/1/2/2;
}

.templates-section .video-template .vimeo {
	display: flex;
	justify-content: center;
}

.templates-section .video-template .vimeo iframe {
	max-width: 100%;
}

.templates-section .video-template .overlay-text {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.templates-section .video-template .overlay-text > *:not(:last-child) {
	margin-bottom: 15px;
}

.templates-section .video-template .overlay-text .link {
	padding: 15px 40px;
}

/*
//----------------------------------------------------------------------
// Video - end
//----------------------------------------------------------------------
*/
