.rel {
	position: relative;
}

.cafe-desktop {
	display: block;
}

.cafe-mobile {
	display: none;
}

@media (max-width: 640px) {
	.cafe-desktop {
		display: none;
	}

	.cafe-mobile {
		display: block;
	}
}

.cafe-container-grey {
	background: #F4F4F3;
}

.cafe-container {
	position: relative;
	max-width: 1300px;
	padding-left: 20px;
	padding-right: 20px;
}

.cafe-container-no-pad {
	padding-left: 0;
	padding-right: 0;
}

.cafe-container sup,
.cafe-container-no-pad sup {
	font-size: 50%;
	top: -0.6em;
}

.cafe-container p,
.cafe-container-no-pad p {
	font-size: clamp(18px, 3vw, 22px);
	line-height: 1.5;
}

.cafe-container .legal,
.cafe-container-no-pad .legal {
	font-size: clamp(15px, 3vw, 18px);
	line-height: 1.5;
}

.cafe-container-grey h1,
.cafe-container-grey h2,
.cafe-container h1,
.cafe-container h2,
.cafe-container-no-pad h1,
.cafe-container-no-pad h2 {
	font-size: clamp(34px, 3vw, 52px);
	line-height: 1.1;
	margin: 0;
	padding: 0;
}

.cafe-container h1,
.cafe-container h2,
.cafe-container-grey h1,
.cafe-container-grey h2 {
	text-align: center;
}

.cafe-container h1 {
	line-height: 1.1;
}

.cafe-container h2,
.cafe-container-grey h2 {
	margin-bottom: 60px;
}

.cafe-container h2 img,
.cafe-container-grey h2 img {
	position: relative;
	top: -8px;
}

.cafe-container-grey h3,
.cafe-container h3,
.cafe-container-no-pad h3 {
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.1;
	margin: 0;
	padding: 0;
}

.cafe-img {
	max-width: 100%;
}

.cafe-divider {
	width: 100%;
	height: 12px;
	background: linear-gradient(270deg, #94463B 0%, #FFBD87 50%, #9E655A 75%, #863230 100%);
	transform: rotate(-180deg);
}



/* hero Section */
.cafe-hero {
    width: 100%;
    height: 94vh;
    position: relative;
    color: #ffffff;
	border-bottom: 12px solid #004B3D;
}

.cafe-hero > div {
    position: relative;
    height: 100%;
}

.cafe-hero video {
    object-fit: cover;
    min-height: 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.cafe-hero .hero-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    padding: 0 20px;
    text-align: center;
    z-index: 2;
    transition: opacity 0.6s ease;
    opacity: 1;
}

.cafe-hero.is-playing .hero-content {
    opacity: 0;
}

.cafe-hero .hero-content-on {
    position: absolute;
    bottom: 40px;
    right: 80px;
    z-index: 2;
    transition: opacity 0.6s ease;
    opacity: 0;
}

.cafe-hero.is-playing .hero-content-on {
    opacity: 1;
}

.cafe-hero .hero-content-on button.icon-sound {
    position: relative;
    top: -15px;
    background: transparent url('https://legendarydurability.ca/images/icon-sound-off.svg') no-repeat center center;
    width: 35px;
    height: 35px;
    border: none;
    text-indent: -9999px;
    display: inline-block;
    font-size: 0;
    padding-block: 0;
    padding-inline: 0;
}

.cafe-hero .hero-content-on button.icon-sound.active {
    background: transparent url('https://legendarydurability.ca/images/icon-sound.svg') no-repeat center center;
}

.cafe-hero .hero-content-on button.pause {
    position: relative;
    top: -15px;
    background: transparent url('https://legendarydurability.ca/images/icon-pause.svg') no-repeat center center;
    width: 35px;
    height: 35px;
    border: none;
    text-indent: -9999px;
    display: inline-block;
    font-size: 0;
    padding-block: 0;
    padding-inline: 0;
    margin-left: 10px;
    display: none;
}

.cafe-hero .mobile-play {
    display: none;
    background: transparent url('https://legendarydurability.ca/images/icon-play-main.svg') no-repeat center center;
    width: 48px;
    height: 48px;
    border: none;
    text-indent: -9999px;
    font-size: 0;
    margin-top: 10px;
    z-index: 2;
}

.cafe-hero .video-desktop {
    display: block;
}

.cafe-hero .video-mobile {
    display: none;
}

@media (max-width: 768px) {
    .cafe-hero .hero-content-on {
        bottom: 30px;
        right: 40px;
    }

    .cafe-hero .hero-content-on button.pause {
        display: inline-block;
    }

    .cafe-hero .mobile-play {
        display: block;
    }

    .cafe-hero .video-desktop {
        display: none;
    }

    .cafe-hero .video-mobile {
        display: block;
    }
}

.cafe-hero .cafe-img {
	position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
	z-index: 1;
}

.cafe-hero .cafe-hero-link {
	transform: scale(1);
	transition: transform 0.3s ease;
	display: block;
}

.cafe-hero a.cafe-hero-link:hover {
	transform: scale(1.01);
}

@media (max-width: 1280px) {
	.cafe-hero .cafe-img {
		width: 400px;
	}
}

@media (max-width: 640px) {
	.cafe-hero .cafe-img {
		width: 340px;
	}
}
/* end hero Section */


/* cafe customize */
.cafe-custom {
	background: #004B3D;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 0;
}

.cafe-custom > div {
	flex: 0 0 50%;
}

.cafe-custom > div:first-child div {
	width: 500px;
	margin: 0 auto;
}

.cafe-custom > div:first-child div p {
	padding: 0 40px;
}

.cafe-custom h2 {
	position: relative;
	color: #ffffff;
	padding: 0 20px;
	margin-bottom: 80px;
}

.cafe-custom h2 span {
	position: absolute;
	bottom: -16px;
	left: 0;
	right: 0;

	font-family: proxima-nova, 'adobe-garamond-pro', Arial, Helvetica, sans-serif;
	font-size: clamp(16px, 3vw, 20px);
	line-height: 1.5;
}

.cafe-page-fr .cafe-custom h2 img {
	position: relative;
	top: -15px;
}

.cafe-page-fr .cafe-custom h2 span {
	bottom: -28px;
}

.cafe-custom .button {
	background-color: transparent;
	color: #ffffff;
	border-color: #ffffff;
	margin: 40px 0 0 0 !important;
	display: block;
}

.cafe-custom .button:hover {
	background-color: #ffffff;
	color: #004B3D;
}

@media (max-width: 1279px) {
	.cafe-custom > div:first-child {
		padding: 40px 0;
	}
	
	.cafe-custom > div:first-child div {
		width: 100%;
		padding: 0 40px;
	}

	.cafe-custom > div:first-child div p {
		padding: 0 40px;
	}
}

@media (max-width: 1279px) and (min-width: 991px) {
	.cafe-custom {
		align-items: stretch;
	}

	.cafe-custom > div:last-child img {
		display: none;
	}

	.cafe-custom > div:last-child {
		background: url('https://cafeappliances.ca/medias/Cafe-Customization.gif?context=bWFzdGVyfGltYWdlc3wzNzAyNjcwMHxpbWFnZS9naWZ8YUdKbEwyZzNZUzh4TWpJek1EY3dPVEl4TlRJMk1pOURZV1psTFVOMWMzUnZiV2w2WVhScGIyNHVaMmxtfDk5MGVjMjJmOWRkZmI3OWEwZTU5M2Q4Zjg1ZjEyNWY5MzdhOWZjYjQ3MGViYTA4ZGI4YTgxZTYzOWI0YWVhOTQ') center center / cover no-repeat;
	}
}

@media (max-width: 990px) {
	.cafe-custom {
		border: 20px solid #F4F4F3;
		border-bottom-width: 40px;
		flex-direction: column-reverse;
	}
}

@media (max-width: 640px) {
	.cafe-custom h2 img {
		margin: 0 auto;
		display: block;
	}

	.cafe-custom h2 span {
		bottom: -26px;
	}

	.cafe-custom > div:first-child div p {
		padding: 0;
	}
}
/* end cafe customize */


/* quote */
.cafe-quote {
	position: relative;
	padding: 80px 0;
}

.cafe-quote .the-baeumlers {
	max-width: 700px;
}

.cafe-quote-content {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	width: 48%;
	background: #ffffff;
	text-align: center;
}

.cafe-quote-text {
	color: #004B3D;
	padding: 40px 60px;
}

.cafe-quote-text p {
	margin: 0 0 25px 0;
}

.cafe-quote .button {
	width: 100%;
	background-color: #004B3D;
	color: #ffffff;
	display: block;
}

.cafe-quote .button:hover {
	background-color: #ffffff;
	color: #004B3D;
	border-color: #004B3D;
}

@media (max-width: 1399px) {
	.cafe-quote .the-baeumlers {
		max-width: 550px;
	}
}

@media (max-width: 990px) and (min-width: 569px) {
	.cafe-quote .cafe-container {
		display: flex;
	}

	.cafe-quote .cafe-container > div {
		flex: 1;
	}

	.cafe-quote .cafe-container > div:first-child {
		background: url('https://cafeappliances.ca/medias/cafe-baeumlers.png?context=bWFzdGVyfGltYWdlc3wxNDc1MzQ5fGltYWdlL3BuZ3xhR1UwTDJneE55OHhNakl6TURjd09EUXlPRGd6TUM5allXWmxMV0poWlhWdGJHVnljeTV3Ym1jfDRlZDE2NjQwNTBiYTVlMWIxMTUzYTA3OTc5MGJjN2Q3NjVmZjI3MThlODVmODBhOTZiMjg0OTI4ZDA4MjkzYTk') center center / cover no-repeat;
	}

	.cafe-quote .the-baeumlers {
		display: none;
	}

	.cafe-quote-content {
		position: relative;
		top: auto;
		right: auto;
		transform: none;
	}

	.cafe-quote-text {
		padding: 40px 40px;
	}
}

@media (max-width: 568px) {
	.cafe-quote {
		padding: 40px 0;
	}

	.cafe-quote .the-baeumlers {
		max-width: 100%;
	}

	.cafe-quote-content {
		position: relative;
		top: auto;
		right: auto;
		transform: none;
		background: transparent;
		width: 100%;
	}

	.cafe-quote-text {
		padding: 40px 0;
	}
}
/* end quote */


/* category slider */
.cafe-category-container {
	padding: 160px 0 80px 0;
}

.cafe-category-container .item {
	padding: 40px;
}

.cafe-category-container .item:focus-visible {
	outline: none;
}

.cafe-category-container a {
	text-align: center;
	display: block;
}

.cafe-category-container a:hover,
.cafe-category-container a:focus {
	outline: none;
}

.cafe-category-container a img {
	transform: scale(0.96);
	transition: transform 0.3s ease;
}

.cafe-category-container a:hover img {
	transform: scale(1);
}

.cafe-category-container a span {
	color: #004B3D;
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 25px;
	display: block;
}

.cafe-category-slider .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -80px;
	z-index: 1;

	background: url('https://cafeappliances.ca/medias/baeumlers-icon-prev.svg?context=bWFzdGVyfGltYWdlc3w1MzN8aW1hZ2Uvc3ZnK3htbHxhRFpsTDJobE55OHhNakU0TWpNeU9UWXlNalUxT0M5aVlXVjFiV3hsY25NdGFXTnZiaTF3Y21WMkxuTjJad3xhN2I2MGZjNTU0YTNjMmI0ZTg1MTQ3MTc1MGIxM2JmNTRmMzI2OGNlMDUzNGE3M2MyOTJmMjk2ODU1MTAyYzY4') center center no-repeat;
	background-size: 28px 28px;
	width: 28px;
	height: 28px;

	border: none;
	text-indent: -9999px;
	margin: 0;
	padding: 0;
}

.cafe-category-slider .slick-next.slick-arrow {
	left: auto;
	right: -80px;

	background: url('https://cafeappliances.ca/medias/baeumlers-icon-next.svg?context=bWFzdGVyfGltYWdlc3w1NDZ8aW1hZ2Uvc3ZnK3htbHxhRGRrTDJobFpDOHhNakU0TWpNeU9UUTVNVFE0Tmk5aVlXVjFiV3hsY25NdGFXTnZiaTF1WlhoMExuTjJad3w3ODBiMzU2Y2QzOTc2MGE0MWNmZGU2OTRkOTcxMWU4N2NmYTNjOTIwY2ZjYjhiNjUxYWM0YTNjOTJkNjEyMGU1') center center no-repeat;
}

@media (max-width: 640px) {
	.cafe-category-container {
		padding: 80px 0 40px 0;
	}

	.cafe-category-container .item {
		padding: 20px;
	}
}
/* end category slider */


/* collections slider */
.cafe-collections-container {
	position: relative;
    width: 100%;
    height: 100vh;
	padding: 0;
}

.cafe-collections-container .cafe-container-no-pad,
.cafe-collections-container .cafe-collections-slider,
.cafe-collections-container .item,
.cafe-collections-container .cafe-collections-slider-box,
.cafe-collections-container .slick-list,
.cafe-collections-container .slick-track {
	height: 100%;
}

.cafe-collections-slider-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.cafe-collections-slider-box > div:first-child {
	background-size: cover;
	background-position: center;
	height: 100%;
}

.cafe-collections-slider-box.cafe-collections-slider-box-white > div:first-child { background-image: url('https://cafeappliances.ca/medias/collections-finishes-matte-white.png?context=bWFzdGVyfGltYWdlc3wyNTI5MjMzfGltYWdlL3BuZ3xhRE5qTDJnNE1pOHhNakl6TURjd09UUTNOelF3Tmk5amIyeHNaV04wYVc5dWN5MW1hVzVwYzJobGN5MXRZWFIwWlMxM2FHbDBaUzV3Ym1jfGZhZjFjNDAxNzUyMTExNTVkZDYxOWJkNGE5MTNkZWUxMDFhODJiMGVhZGY0ZDI0MDVmYTFlOGQyZjU5MWZkMjk'); }
.cafe-collections-slider-box.cafe-collections-slider-box-black > div:first-child { background-image: url('https://cafeappliances.ca/medias/collections-finishes-matte-black.png?context=bWFzdGVyfGltYWdlc3wxNzg5NzA3fGltYWdlL3BuZ3xhRGRrTDJnM1pTOHhNakl6TURjd09UTTBOak16TkM5amIyeHNaV04wYVc5dWN5MW1hVzVwYzJobGN5MXRZWFIwWlMxaWJHRmpheTV3Ym1jfDhiM2Q2YWVhNmM3OTI0NGI5NTkxOGY4OTg5MGU0ZWQwMWJkMjc2NDQyMzNkZTU3M2EwMzBkOGVhM2I2MzBhMDc'); }
.cafe-collections-slider-box.cafe-collections-slider-box-steel > div:first-child { background-image: url('https://cafeappliances.ca/medias/collections-finishes-stainless-steel.png?context=bWFzdGVyfGltYWdlc3wxMDUyMjc2fGltYWdlL3BuZ3xhREZqTDJnNFppOHhNakl6TURjd09UZ3dOVEE0Tmk5amIyeHNaV04wYVc5dWN5MW1hVzVwYzJobGN5MXpkR0ZwYm14bGMzTXRjM1JsWld3dWNHNW58ZTRkNTgxZTUyNmUyYWYxZmNkYzU4OGVmNzUzMTg0MjE4YTMxNWMxYThkNjhiYTJjNmY5OGNjOTRkMTVkZWVlZg'); }
.cafe-collections-slider-box.cafe-collections-slider-box-glass > div:first-child { background-image: url('https://cafeappliances.ca/medias/collections-finishes-modern-glass.png?context=bWFzdGVyfGltYWdlc3wxMTM0ODc4fGltYWdlL3BuZ3xhRFJpTDJnNE9DOHhNakl6TURjd09UWXdPRFEzT0M5amIyeHNaV04wYVc5dWN5MW1hVzVwYzJobGN5MXRiMlJsY200dFoyeGhjM011Y0c1bnw1YTc1OWY4YzQ4Mjg5M2RhYWZlYzEwOTZhNzFmMTFlOTgzYzNlYmE2OTlmZWM1YTFkN2M3NzE3YTA3NDNiYzZk'); }

.cafe-collections-slider-box > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	text-align: center;
	color: #004B3D;
	padding: 0 12%;
}

.cafe-collections-slider-box h2 {
	margin-bottom: 20px;
}

.cafe-collections-slider-box p {
	margin-bottom: 65%;
}

.cafe-collections-slider-box .button {
	width: 100%;
	background-color: #004B3D;
	color: #ffffff;
	display: block;
}

.cafe-collections-slider-box .button:hover {
	background-color: #ffffff;
	color: #004B3D;
	border-color: #004B3D;
}

.cafe-collections-slider-nav {
	position: absolute;
	bottom: 33%;
	right: 0;
	width: 50%;
	padding: 0 6%;
}

.cafe-collections-slider-nav .item {
	margin: 0;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

.cafe-collections-slider-nav .item img {
	border: 3px solid #ffffff;
	transform: scale(0.7);
	transition: transform 0.3s ease;
}

.cafe-collections-slider-nav .item.slick-current img {
    transform: scale(1);
}

.cafe-collections-slider-nav .item:hover {
	opacity: 0.8;
}

@media (max-width: 1440px) {
	.cafe-collections-slider-nav {
		bottom: 36%;
	}
}

@media (max-width: 1279px) {
	.cafe-collections-slider-nav {
		bottom: 40%;
		padding: 0 4%;
	}
}

@media (max-width: 990px) {
	.cafe-collections-slider-nav {
		padding: 0;
	}
}

@media (max-width: 640px) {
	.cafe-collections-slider-box {
		position: relative;
		display: block;
	}

	.cafe-collections-slider-box.cafe-collections-slider-box-white > div:first-child { background-image: url('https://cafeappliances.ca/medias/collections-finishes-matte-white-mobile.png?context=bWFzdGVyfGltYWdlc3wzNTU1NjQ0fGltYWdlL3BuZ3xhRFJrTDJnNE5TOHhNakl6TURjd09UVTBNamswTWk5amIyeHNaV04wYVc5dWN5MW1hVzVwYzJobGN5MXRZWFIwWlMxM2FHbDBaUzF0YjJKcGJHVXVjRzVufDJmZjJhOGEzNWNiODViMDhjZWE0M2IwZWQxMmY4ZGE2YjIyMTE4YWEzZDVkY2I3MzViZWRiMmQ3ZTM5Mjk3NWQ'); }
	.cafe-collections-slider-box.cafe-collections-slider-box-black > div:first-child { background-image: url('https://cafeappliances.ca/medias/collections-finishes-matte-black-mobile.png?context=bWFzdGVyfGltYWdlc3wzMTUwNTk0fGltYWdlL3BuZ3xhRGhsTDJnNE1TOHhNakl6TURjd09UUXhNVGczTUM5amIyeHNaV04wYVc5dWN5MW1hVzVwYzJobGN5MXRZWFIwWlMxaWJHRmpheTF0YjJKcGJHVXVjRzVufGE4ZmE1ZjFmYTBiNGZjZTUxZmYzZGM3ODUzZWVjOGIyMWZmYTc5N2YwODQ2MTM4NDc0YWU4MDU5ODliODg4MDk'); }
	.cafe-collections-slider-box.cafe-collections-slider-box-steel > div:first-child { background-image: url('https://cafeappliances.ca/medias/collections-finishes-stainless-steel-mobile.png?context=bWFzdGVyfGltYWdlc3wyNjY1NjY1fGltYWdlL3BuZ3xhREJoTDJnNFl5OHhNakl6TURjd09UY3pPVFUxTUM5amIyeHNaV04wYVc5dWN5MW1hVzVwYzJobGN5MXpkR0ZwYm14bGMzTXRjM1JsWld3dGJXOWlhV3hsTG5CdVp3fGI4ODFjY2Q1Yzc4NTgxNjRlYjQ1ZWEyZDZkMTAyYzUyM2VhMTA3ZDAwMjUzNmIzNDM3OGIxNDM3YmJmZDE2ODI'); }
	.cafe-collections-slider-box.cafe-collections-slider-box-glass > div:first-child { background-image: url('https://cafeappliances.ca/medias/collections-finishes-modern-glass-mobile.png?context=bWFzdGVyfGltYWdlc3wyMzAyOTI0fGltYWdlL3BuZ3xhREJrTDJnNE9TOHhNakl6TURjd09UWTNOREF4TkM5amIyeHNaV04wYVc5dWN5MW1hVzVwYzJobGN5MXRiMlJsY200dFoyeGhjM010Ylc5aWFXeGxMbkJ1Wnd8ODhlOTNiMDNlYzBlNTQxMWI2ZTFiM2RhNGUzMzAzYzVmMWNiNTNlOTYyN2NmOGM4MDg0NTE4YjU4Y2UwZDIzMg'); }

	.cafe-collections-slider-box > div:last-child {
		position: absolute;
		top: 40px; bottom: 0;
		left: 0; right: 0;
		color: #ffffff;
		padding: 0 30px;
		display: block;
	}

	.cafe-collections-slider-box h2 {
		color: #ffffff;
	}

	.cafe-collections-slider-box .button {
		position: absolute;
		width: auto;
		bottom: 30px;
		left: 40px; right: 40px;
	}

	.cafe-collections-slider-nav {
		bottom: 130px;
		width: 100%;
		padding: 0 10%;
	}
}
/* end collections slider */


/* cafe edit */
.cafe-edit {
	background: transparent url('https://cafeappliances.ca/medias/bg.png?context=bWFzdGVyfGltYWdlc3wyMDk3NjA2fGltYWdlL3BuZ3xhR1ExTDJneE1TOHhNakl6TURjd09ESTVOemMxT0M5aVp5NXdibWN8YmY0YTk4NWVhNjMzZDQwNjQ0YTY0NzE1MTgzYjc2NTNiNjljYjkyNzg2YWE2YWRiNmZkY2E1MjBmN2I3ZWUxMA') top center repeat-y;
	padding: 80px 0;
	text-align: center;
}

.cafe-edit a.cafe-edit-banner {
	margin-bottom: 60px;
	transition: transform 0.3s ease;
	display: block;
}

.cafe-edit a.cafe-edit-banner:hover {
	transform: scale(1.01);
}

.cafe-edit-extras {
	display: flex;
	justify-content: center;
	gap: 60px;
	margin-bottom: 80px;
}

.cafe-edit-extras > div {
	flex: 1;
	background: #ffffff;
	padding: 40px;
}

.cafe-edit-extras h3 {
	margin-bottom: 20px;
}

.cafe-edit-extras a {
	font-size: clamp(18px, 3vw, 22px);
	line-height: 1.5;
	text-decoration: underline !important;
}

@media (max-width: 768px) {
    .cafe-edit-extras {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 640px) {
	.cafe-edit .cafe-divider {
		margin-bottom: 40px;
	}
}
/* end cafe edit */



.cafe-hotspot {
	background: url('https://cafeappliances.ca/medias/baeumlers-icon-hotspot.svg?context=bWFzdGVyfGltYWdlc3wxMjYyfGltYWdlL3N2Zyt4bWx8YURObUwyaGxaUzh4TWpFNE1qTXlPVFF5TlRrMU1DOWlZV1YxYld4bGNuTXRhV052Ymkxb2IzUnpjRzkwTG5OMlp3fGEzMTY1YzMzNjgyZWNkMjZmNzQyNGRjMDgzYTJiYWFiYTM3ZmJmMDBiMjhkNzBmN2JkYzc2OTgyNDJlMzQ1Mjk') center center / cover no-repeat;
	width: 40px;
	height: 40px;
	background-size: 40px 40px;
	animation: pulse 1.8s ease-in-out infinite;
	will-change: transform;
}

@keyframes pulse {
	0%   { transform: scale(1); }
	50%  { transform: scale(1.12); }
	100% { transform: scale(1); }
}


.cafe-page .slick-dots {
    margin: 40px 0 0 0;
    list-style: none;
    text-align: center;
}

.cafe-category-slider .slick-dots {
	margin: 0 0 0 0;
}

.cafe-page .slick-dots li {
    margin: 0 10px;
    padding: 0;
    display: inline-block;
}

.cafe-page .slick-dots li button {
    background: transparent;
    border: 1px solid #004b3d !important;
    width: 18px;
    height: 18px;
    padding: 0;
    text-indent: -9999px;
    font-size: 0;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    min-width: auto;
    transition: all 0.2s ease;
}

.cafe-page .slick-dots li button:hover,
.cafe-page .slick-dots li button:focus,
.cafe-page .slick-dots li.slick-active button {
    background: #004b3d;
    border-color: #004b3d !important;
}


/* hack for equal height columns */
.cafe-video-slider .slick-track {
	display: flex;
	align-items: stretch;
}

.cafe-video-slider .slick-slide {
	height: auto;
}

.cafe-video-slider .slick-slide > div {
	display: flex;
	flex-direction: column;
	height: 100%;
}
/* hack for equal height columns */