body {
	background-color: #f6f6f6;
	
}




/*mobile white pane */

.mobile-white-pane {
	background-color: #ffffff;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	align-items: center;
	align-content: center;
	padding: 0 16px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	transition: all 0.4s ease-out, background 1s ease-out;
}


.mobile-white-pane--logo img {
	vertical-align: baseline !important; /*overwritten bootstrap css*/
	width: 263px !important;
}



@media (min-width: 996px) {
	.mobile-white-pane {
		display: none;

	}
}

.homepage-top {
	width: 100%;
	height: 96vh;
	background: url('../images/homepage/top.png') no-repeat center;
	background-size: cover;
	position: relative;
}

.homepage-top__logo {
	padding: 50px 0 0 50px;
	display: none;
}


.homepage-top__logo img {
	width: 330px;
	display: block;
}

.homepage-top__content {
	display: flex;
	padding-bottom: 13vh;
	position: absolute;
	bottom: 0;
	width: 100%;
	background: rgb(255, 255, 255);
	background: -moz-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
}

.homepage-top__content__text {
	width: 100%;
	box-sizing: border-box;
	padding: 0 20px;
	text-align: center;

}

.homepage-top__content__text strong {
	font-size: 30px;
	display: block;
	font-weight: 700;
	font-family: "Syncopate", Sans-serif;
}

.homepage-top__content__text span {
	font-size: 30px;
	display: block;
	font-weight: 300;
	font-family: "Syncopate", Sans-serif;
	padding: 15px 0;
}

.homepage-top__content__text b {
	font-size: 25px;
	display: block;
	font-weight: 700;
	font-family: "Syncopate", Sans-serif;
}

.homepage-top__content__menu {
	width: 20%;
	display: none;
}

.homepage-top__content__menu ul {
	display: block;
	width: 100%;
	padding: 0;
	padding-bottom: 30px;
}

.homepage-top__content__menu ul li {
	display: block;
	width: 100%;
}

.homepage-top__content__menu ul li a {
	display: block;
	height: 40px;
	width: 100%;
	text-align: right;
	padding-right: 50px;
	box-sizing: border-box;
	color: black;
	font-size: 14px;
	font-family: "Gotham", Sans-serif;
	font-weight: 400;
}

@media (min-width: 768px) {
	.homepage-top {
		background-position: 20%;
	}

	.homepage-top__content__text {
		max-width: 50%;
		min-width: 50%;
		box-sizing: border-box;
		padding: 0 0 0 50px;
		text-align: left;
		align-self: flex-end;
		margin-bottom: 7vh;
	}

	.homepage-top__content__text strong {
		font-size: 64px;
		display: block;
		font-weight: 700;
		font-family: "Syncopate", Sans-serif;
	}

	.homepage-top__content__text span {
		font-size: 40px;
		display: block;
		font-weight: 300;
		font-family: "Syncopate", Sans-serif;
		padding: 15px 0;
	}

	.homepage-top__content__text b {
		font-size: 30px;
		display: block;
		font-weight: 700;
		font-family: "Syncopate", Sans-serif;
	}

}

@media (min-width: 996px){

	.homepage-top__content {
		padding-bottom: 0;
		justify-content: space-between;
		align-items: center;
		align-content: center;
	}

	.homepage-top__logo {
		display: block;
	}

	.homepage-top__content__menu {
		display: block;
		width: initial;
		align-self: center;
	}

	.homepage-top__content__menu ul li a {
		font-weight: 600;
		padding-bottom: 16px;
	}

	.homepage-top__content__menu ul li a:hover,
	.homepage-top__content__menu ul li a:focus {
		opacity: .5;
	}
}

/* CUSTOM HAMBURGER MENU */

.custom-hamburger-menu {
	display: block;
	position: absolute;
	top: 25px;
	right: 5%;
	z-index: 9999;
}

.custom-hamburger-menu__toggle {
	border: 0 !important;
	background: none !important;
	color: white !important;
	font-size: 24px !important;
	padding: 10px !important;
	/*margin-left: auto;
margin-right: 50px;*/
	outline: none;
}

.custom-hamburger-menu__toggle--close {
	border: 0 !important;
	background-color: transparent !important;
	color: white !important;
	margin-left: auto !important;
	display: block !important;
	padding: 10px !important;
	padding-top: 50px !important;
	padding-right: 30px !important;
	font-size: 24px !important;
	outline: none;
}

.custom-hamburger-menu__toggle--close:hover {
	background: rgba(0, 0, 0, .2);
}

.custom-hamburger-menu__content {
	-webkit-transition: all .5s linear;
	-moz-transition: all .5s linear;
	-o-transition: all .5s linear;
	transition: all .5s linear;
	/*height: 500px;*/
	height: 100vh;
	width: 80%;
	position: fixed;
	top: 0;
	/*top: 50px;*/
	right: -80%;
	background: rgba(0, 0, 0, .7);
	color: white;
	z-index: 9999;
	visibility: hidden;
}

.custom-hamburger-menu__content ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.custom-hamburger-menu__content ul li a {
	font-family: "Gotham", Sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 20px;
	text-align: right;
	color: white;
	display: block;
	padding: 10px 30px;
	-webkit-transition: all .15s linear;
	-moz-transition: all .15s linear;
	-o-transition: all .15s linear;
	transition: all .15s linear;
}

.custom-hamburger-menu__content ul li a:hover {
	opacity: .5;
}

.custom-hamburger-menu__content--visible {
	right: 0 !important;
	visibility: visible;
}

.custom-mobile-logo {
	position: absolute;
	top: 25px;
	left: 50px;
	z-index: 9998;
	width: 70%;
	display: block;
}

.custom-mobile-logo img {
	padding: 10px 0;
	width: 100%;
}

@media (min-width: 768px) {
	.custom-mobile-logo,
	.custom-hamburger-menu,
	.custom-hamburger-menu__content {
		display: none;
	}
}

/* hotove obleky */

.hotove-obleky {
	padding: 0;
}

.hotove-obleky__title {
	text-align: center;
	display: none;
}

@media (min-width: 992px) {
	.hotove-obleky__title {
		display: block;
	}
}

.hotove-obleky__title strong {
	color: #262626;
	font-family: "Syncopate", Sans-serif;
	font-size: 36px;
	font-weight: bold;
	text-transform: uppercase;
}

.hotove-obleky__title span {
	display: block;
	color: #262626;
	font-family: "Syncopate", Sans-serif;
	font-size: 36px;
	font-weight: 300;
	text-transform: uppercase;
}

.hotove-obleky__boxes {
	display: flex;
	justify-content: center;
	margin-bottom: 0;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 64px;
}
@media all and (max-width: 768px){
	.hotove-obleky__boxes{
		margin-top: 30px;
	}
}

.hotove-obleky__boxes__container {
	max-width: 950px;
	margin: 0 auto;
}

.hotove-obleky__boxes__box {
	width: 100%;
	margin-bottom: 40px;
}

@media (min-width: 340px) {
	.hotove-obleky__boxes__box {
		width: 50%;
	}
}

@media (min-width: 768px) {
	.hotove-obleky__boxes__box {
		width: 25%;
	}
}

@media (min-width: 900px) {
	.hotove-obleky__boxes__box {
		width: 20%;
	}
}

.hotove-obleky__boxes__box__image {
	margin: 0 auto;
	display: block;
	position: relative;
	z-index: 1;
}

.hotove-obleky__boxes__box__image img {
	border-radius: 15px 15px 15px 15px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
	display: block;
	margin: 0 auto;
}

.hotove-obleky__boxes__box__image span {
	display: block;
	position: absolute;
	width: 155px;
	left: calc(50% - 78px);
	color: #ffffff;
	font-family: "Gotham", Sans-serif;
	font-size: 17px;
	font-weight: 500;
	padding: 0 15px;
	bottom: 50px;
	text-align: center;
}

.hotove-obleky__boxes__box__image span b {
	display: block;
}

.hotove-obleky__boxes__box__button {
	font-family: "Gotham", Sans-serif;
	font-size: 14px;
	font-weight: 600;
	fill: #111111;
	color: #111111;
	background-color: #ffffff;
	border-style: solid;
	border-width: 0.5px 0.5px 0.5px 0.5px;
	border-radius: 5px 5px 5px 5px;
	display: block;
	width: 110px;
	text-align: center;
	height: 50px;
	line-height: 50px;
	vertical-align: middle;
	margin: -27px auto 0;
	position: relative;
	z-index: 2;
}

.hotove-obleky__boxes__box__button:hover,
.hotove-obleky__boxes__box__button:focus {

	color: #5959599d;
}


.hotove-obleky__boxes__box--news {
	margin-bottom: 58px;
}

.hotove-obleky__boxes__box--news img {
	width: 330px;
}

@media (min-width: 900px) {
	.hotove-obleky__boxes__box--news img {
		width: 155px;
	}
}

.hotove-obleky__boxes__box--news span b {
	color: #ffffff;
	font-family: "Syncopate", Sans-serif;
	font-size: 19px;
	font-weight: bold;
	text-transform: uppercase;
}

.hotove-obleky__boxes__box--news .hotove-obleky__boxes__box__button {
	width: 220px;
}

@media (min-width: 900px) {
	.hotove-obleky__boxes__box--news .hotove-obleky__boxes__box__button {
		width: 130px;
	}
}

.hotove-obleky__boxes__box--news .hotove-obleky__boxes__box__image span {
	font-size: 24px;
	line-height: 30px;
	width: 300px;
	left: calc(50% - 150px);
}

.hotove-obleky__boxes__box--news .hotove-obleky__boxes__box__image span b {
	font-size: 30px;
}

@media (min-width: 900px) {
	.hotove-obleky__boxes__box--news .hotove-obleky__boxes__box__image span b{
		font-size: 24px!important;
	}

	.hotove-obleky__boxes__box--news .hotove-obleky__boxes__box__image span b {
		font-size: 17px;
	}
}

/* pocitadlo */

.pocitadlo {
	display: flex;
	max-width: 330px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: white;
	margin: 0 auto;
	border-radius: 15px;
	position: relative;
	margin-bottom: 100px;
}

.pocitadlo .text_block {
	background: #fafafa;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	width: 100%;
	margin-left: 0;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-right: 0;
	margin-bottom: 0;
}

.pocitadlo .text_block span {
	font-style: normal;
	font-weight: 600;
	font-size: 17px;
	line-height: 28px;
	text-align: center;
	color: #262626;
	margin-bottom: 10px;
}

.pocitadlo .num_block {
	background: #ffffff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 100%;
	padding: 10px 0;
	margin-top: -10px;
	padding-bottom: 55px;
}

.pocitadlo .num_block span {
	font-style: normal;
	font-weight: bold;
	font-size: 48px;
	line-height: 56px;
	display: flex;
	align-items: center;
	text-align: center;
	color: #262626;
}

.pocitadlo .num_block h3 {
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
	text-align: center;
	color: #262626;
	text-transform: none;
}

.pocitadlo .pocitadlo__button {
	position: absolute;
	bottom: 0;
	font-family: "Gotham", Sans-serif;
	font-size: 14px;
	font-weight: 600;
	fill: #111111;
	color: #111111;
	background-color: #ffffff;
	border-style: solid;
	border-width: 0.5px 0.5px 0.5px 0.5px;
	border-radius: 5px 5px 5px 5px;
	padding: 10px 20px;
	max-width: 70%;
	text-align: center;
	margin-bottom: -30px;
}

.pocitadlo .pocitadlo__button:hover {
	text-decoration: none;
}

/* reserve block */

.reservation {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 30px 16px 0;
	margin-bottom: 25px;
	background: #fafafa;
	height: auto;
}

.reserve_block {
	width: 350px;
}

.reserve_block p {
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 32px;
	text-align: center;
	color: #262626;
	margin-bottom: 0;
}

.celebrity img {
	margin: 0 40px;
}

.mansonry-gallery-grid a img {
	border-radius: 25px;
}

/* advice box */

.advice_box_wrapper {
	background-color: white;
	padding-bottom: 10px;
	padding-top: 10px;
}

.advice_box {
	width: 80%;
	max-width: 400px;
	height: auto;
	margin: 30px auto 50px;
	background: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 42px 0 0;
}

.advice_box h2 {
	text-align: center;
}

.advice_box h3 {
	max-width: 200px;
	font-style: normal;
	font-weight: 400;
	font-size: 24px;
	line-height: 32px;
	text-align: center;
	color: #262626;
	text-transform: none;
}

.advice_box .photo_box {
	width: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;

}

.advice_box .photo_box .photo {
	width: 100px;
	height: 100px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border: 1px solid #bfbfbf;
	box-sizing: border-box;
}

.advice_box .photo_box .image--arrow {
	width: 75px;
	margin: auto 15px;
}

.paris {
	background-image: url('https://sedryk.madelo.co/wp-content/themes/sedryk-le-blanc/assets/images/homepage/paris-opacity-filter.png') !important;
	background-position: 25%;
	background-repeat: no-repeat;
	background-size: cover;
	margin-bottom: 60px;
}

@media (min-width: 768px) {

	.paris {
		background-position: top;
		min-height: 65vh;
	}


}


.section_tipy {
	margin-top: 80px !important;
}

.tipy {
	width: 330px;
	margin: 0 auto 35px;
}

.tipy .tipy__logo {
	margin-bottom: 20px;
}

.tipy h3 {
	margin-bottom: 25px;
	font-size: 30px;
	text-align: center;
}

.tipy p {
	color: #7e7f7e8c;
	font-size: 20px;
	text-align: center;
	line-height: 26px;
}

.tipy img {
	margin: 48px 0 64px;
}

.tipy .tipy__big-image {
	width: auto !important;
	height: 330px;
	background-position: center !important;
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 15px;
	margin-bottom: 10px;
}

@media (max-width: 400px) {
	.tipy .tipy__big-image {
		display: none !important;
	}
}

.tipy .tipy__small-images {
	display: flex;
	width: 330px;
	height: 110px;
}

.tipy .tipy__small-images .tipy__small-images__small-image {
	min-width: calc(33% - 5px);
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 15px;
	margin-right: 10px;
}

.tipy .tipy__small-images .tipy__small-images__small-image:last-child {
	margin-right: 0;
}

.tipy .button {
	position: relative;
	margin: 0 auto;
	display: block;
	width: auto;
	text-align: center;
	padding: 18px 24px;
}

/* custom slider*/

.slider_section {
	width: 100%;
	position: relative;
}

.custom_slider {
	width: 100%;
	display: flex;
}

.custom_slide {
	display: flex !important;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 500px;
	margin: 50px auto 0;
}

.custom_slide__image {
	width: 180px;
	height: 180px;
}

.custom_slide__author {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.custom_slide__author .label,
.custom_slide__author .name {
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
	text-align: center;
	color: black;
	margin-top: 15px;
}

.custom_slide__author .name {
	color: #4b535b;
	display: block;
	text-align: center;
	text-transform: uppercase;
	margin-top: 0;
}

.custom_slide .text {
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 28px;
	text-align: center;
	color: #333333;
	margin-top: 25px;
	margin-bottom: 50px;
	padding: 0 10%;
}

h3 {
	font-style: normal;
	font-weight: normal;
	font-size: 27px;
	line-height: 33px;
	text-align: center;
	text-transform: uppercase;
	color: #333333;
	max-width: 80%;
	margin: 0 auto;
}


.slick-next,
.slick-prev {
	display: none !important;
}
.inspiracia .slick-next,
.inspiracia .slick-prev {
	display: inline-block !important;
}
.inspiracia .slick-next{

    right: -15px;
	transform: rotate(180deg);
}
.inspiracia .slick-prev {

    left: -15px;
}

.inspiracia .slick-next:before,
.inspiracia .slick-prev:before {
	/*color: black;*/

    color: #8c8c8c;

    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}
.inspiracia .slick-next:before {
    content: "\e902";
}
.inspiracia .slick-prev:before {
    content: "\e902";
}


@font-face {
	font-family: 'icomoon';
	src: url("fonts/icomoon.eot?ypwg3s");
	src: url("fonts/icomoon.eot?ypwg3s#iefix") format("embedded-opentype"),
	url("fonts/icomoon.ttf?ypwg3s") format("truetype"), url("fonts/icomoon.woff?ypwg3s") format("woff"),
	url("fonts/icomoon.svg?ypwg3s#icomoon") format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icomoon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/*
.icon-arrow:before {
    content: "\e900";
}*/

.btn--prev,
.btn--next {
	position: absolute;
	left: 5%;
	font-size: 23px;
	color: black;
	top: 50%;
	margin-top: -20px;
	cursor: pointer;
}

.btn--next {
	transform: rotate(180deg);
	right: 5%;
	left: auto;
}

/* services section */

.services {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 50px 0 50px;
	height: auto;
}

.text_block {
	margin-right: auto;
	margin-bottom: 25px;
	display: block;
	margin-left: 5%;
	padding-right: 5%;
}

.text_block h2 {
	font-style: normal;
	font-weight: 300;
	font-size: 35px;
	line-height: 40px;
	text-transform: uppercase;
	color: #262626;
}

.text_block p {
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 28px;
	color: #262626;
}

.zaruky {
	margin-top: 20px;
	padding: 0 16px;
}

.zaruky h2 {
	font-size: 36px;
}

.zaruky p {
	font-size: 20px;
}

.zaruky img {
	width: 100%;
	margin: 0 auto 32px auto;
}

.poradime-na-jeden-klik {
	max-width: 300px;
	/*
  height: 70px;
  margin-top: 50px;
  min-width: 230px;*/
}

.poradime-na-jeden-klik span {
	padding: 21px 20px;
	display: flex !important;
	justify-content: center;
	align-items: center;
}

.poradime-na-jeden-klik span p {
	margin: 0;
	text-align: left;
}

.poradime-na-jeden-klik span i {
	padding-right: 13px;
	font-size: 19px;
}

/* sales start*/

.sales {
	display: flex;
	flex-wrap: wrap;
	background: #f6f6f6;
	padding: 20px 0 0;
	width: 100%;
}

/* colors */

.sales .blue {
	color: #0050b3;
}

.sales .blue-bg {
	background-color: #f0f3f8;
}

.sales .blue-top-border {
	border-style: solid;
	border-width: 3px 0px 0px 0px;
	border-color: #096dd9;
}

.sales .silver {
	color: #505a5e;
}

.sales .silver-bg {
	background-color: #eff1f3;
}

.sales .silver-top-border {
	border-style: solid;
	border-width: 3px 0px 0px 0px;
	border-color: #505a5e;
}

.sales .gold {
	color: #b79233;
}

.sales .gold-bg {
	background-color: #f7f5e7;
}

.sales .gold-top-border {
	border-style: solid;
	border-width: 3px 0px 0px 0px;
	border-color: #c6a03f;
}

.sales .diamond {
	color: #aa8686;
}

.sales .diamond-bg {
	background-color: #f3f0e8;
}

.sales .diamond-top-border {
	border-style: solid;
	border-width: 3px 0px 0px 0px;
	border-color: #aa8686;
}

.sales .extravagant {
	color: #531dab;
}

.sales .extravagant-bg {
	background-color: #f2edf4;
}

.sales .extravagant-top-border {
	border-style: solid;
	border-width: 3px 0px 0px 0px;
	border-color: #531dab;
}

/* end colors */

.sales .sales-col {
	padding: 0;
	width: 100%;
}

@media (min-width: 360px) {
	.sales .sales-col {
		/*width: 50%;*/
		width: 100%;
	}
}

@media (min-width: 768px) {
	.sales .sales-col {
		width: 50%;
	}

	.sales .sales-col.margined {
		/*padding-top: 143px !important;*/
	}

	.flip-clock-container-basic [class|=flip-item]::before {
		margin: 0;
		width: 3px;
		margin: 0 2.5vw !important;
	}
}

@media (min-width: 992px) {
	.sales .sales-col {
		width: 20%;
	}

	.sales .sales-col.margined {
		padding-top: 160px !important;
	}

	.flip-clock-container-basic [class|=flip-item]::before {
		margin: 0 !important;
	}
}

@media (min-width: 1200px) {
	.sales .sales-col.margined {
		padding-top: 135px !important;
	}
}

/*.sales .sales-col:first-child {
	padding: 0 10px 0 20px;
}*/

/*.sales .sales-col:last-child {
	padding: 0 20px 0 10px;
}*/

.sales .sales-col .sales-block {
	position: relative;
	z-index: 50;
	border-radius: 20px;
	min-height: 800px;
	background-color: #ffffff;
	border-style: solid;
	border-width: 1px 1px 1px 1px;
	border-color: #bfbfbf;
	border-radius: 20px 20px 20px 20px;
	box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
}

.sales .sales-col h2.sales-block__heading {
	text-align: center;
	padding: 10px 0;
}

.sales .sales-col h2.sales-block__heading span.sales-block__heading--first-line {
	font-family: "Syncopate", Sans-serif;
	font-size: 21px;
	font-weight: bold;
	text-transform: uppercase;
}

.sales .sales-col h2.sales-block__heading span.sales-block__heading--second-line {
	display: block;
	font-family: "Syncopate", Sans-serif;
	font-size: 21px;
	font-weight: normal;
	text-transform: uppercase;
}

.sales .sales-col a.sales-block__image {
	display: block;
	background-size: cover;
	background-position: center center;
	height: 400px;
	width: 100%;
	margin: 0;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	position: relative;
}

.sales .sales-col a.sales-block__image .sales-block__image__overlay {
	display: flex;
	height: 400px;
	width: 100%;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	background: rgba(0,0,0, 0);
	transition: all 1s;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.sales .sales-col a.sales-block__image .sales-block__image__overlay--soldout {
	display: none;
}

.sales .sales-col a.sales-block__image .sales-block__image__overlay--soldout.active {
	position: absolute;
	top: 0;
	display: flex;
	height: 300px;
	width: 100%;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	background: rgb(255 255 255 / 80%);
	justify-content: center;
	align-items: center;
}

.sales .sales-col a.sales-block__image .sales-block__image__overlay--soldout.active span {
	color: black;
}

.sales .sales-col a.sales-block__image .sales-block__image__overlay--soldout.active span b {
	color: red;
}

.sales .sales-col a.sales-block__image .sales-block__image__overlay span {
	color: rgb(0 0 0 / 0);
	transition: all 1s;
	display: block;
}

.sales .sales-col a.sales-block__image .sales-block__image__overlay i {
	color: rgb(255 255 255 / 0);
	transition: all 1s;
	display: block;
	font-size: 70px;
	margin-bottom: 15px;
}

.sales .sales-col a.sales-block__image .sales-block__image__overlay:hover i {
	color: rgb(255 255 255 / 100%);
	transition: all 1s;
}

.sales .sales-col a.sales-block__image .sales-block__image__overlay:hover span {
	color: white;
}

.sales .sales-col a.sales-block__image .sales-block__image__overlay:hover {
	background: rgb(0 0 0 / 50%);
}

.sales .sales-col a.sales-block__image .sales-block__image__image-count {
	background: white;
	border-radius: 20px;
	position: absolute;
	bottom: 10px;
	right: 10px;
	padding: 4px 10px;
	color: black;
	box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
}

.image-count {
	background: white;
	border-radius: 20px;
	position: absolute;
	bottom: 10px;
	right: 10px;
	padding: 4px 10px;
	color: black;
	box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
}

.sales .sales-col a.sales-block__image .sales-block__image__tag {
	background: rgb(0 0 0 / 80%);
	border-radius: 20px;
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 4px 10px;
	color: white;
}

.sales .sales-col .sales-block__news {
	height: 80px;
	width: calc(100% - 20px);
	margin: 0 10px;
	padding-top: 20px;
}

.sales .sales-col .sales-block__news .sales-block__news__new {
	font-family: "Gotham", Sans-serif;
	font-weight: normal;
	text-align: center;
}

.sales .sales-col .sales-block__news .sales-block__news__new b {
	font-weight: bold;
	text-transform: uppercase;
}

.sales .sales-col .sales-block__info-box {
	margin-bottom: 20px;
	text-align: center;
	font-size: 15px;
	padding: 0 20px;
}

.sales .sales-col .sales-block__info-box.special {
	margin-bottom: 0;
	font-size: 10px;
	padding: 10px 8px;
}

.sales .sales-col .sales-block__info-box small {
	color: #8c8c8c;
	font-family: "Gotham", Sans-serif;
	font-weight: 300;
	font-size: 15px;
}

.sales .sales-col .sales-block__info-box b {
	display: block;
	color: #262626;
	font-family: "Gotham", Sans-serif;
	font-weight: 500;
	font-size: 15px;
}

.sales .sales-col .sales-block__info-box .fa-circle {
	color: #8cba3c;
	font-size: 10px;
	line-height: 26px;
	vertical-align: top;
}

.sales .sales-col .sales-block__info-box .fa-circle.vypredane {
	color: #d73c1c;
}

.sales .sales-col .sales-block__info-box .fa-info-circle {
	font-size: 15px;
	line-height: 28px;
	vertical-align: top;
}

.sales .sales-col .sales-block__recommendation {
	font-family: "Syncopate L", Sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	text-align: center;
	padding: 15px 5px 3px;
}

.sales .sales-col .sales-block__recommendation b {
	font-weight: bold;
	display: block;
}

.sales .sales-col .sales-block__accordions__accordion {
	width: 100%;
	border-bottom: 1px solid #e8e8e8;
	padding: 20px 10px;
	background: white;
	color: black;
	text-align: left;
}

.sales .sales-col .sales-block__accordions__accordion i {
	margin-left: 10px;
	margin-right: 15px;
}

.sales .sales-col .sales-block__accordions__accordion.active {
	background-color: #f1f1f1;
}

.sales .sales-col .sales-block__accordions__accordion:first-child {
	border-top: 1px solid #e8e8e8;
}

.sales .sales-col .sales-block__accordions__accordion__content {
	display: none;
	min-height: 20px;
	width: 100%;
	background: white;
	padding: 20px;
}

.sales .sales-col .sales-block__show-more {
	margin: 0 auto;
	display: block;
	text-align: center;
	text-decoration: underline;
	padding: 10px 0;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	color: #087fd8;
	background: none;
}

.sales .sales-col .sales-block__accordions-2 {
	display: none;
}

.sales .sales-col .sales-block__accordions-2__accordion {
	width: 100%;
	padding: 20px 10px;
	background: white;
	color: black;
	text-align: left;
}

.sales .sales-col .sales-block__accordions-2__accordion span {
	width: 55%;
	display: inline-block;
}

.sales .sales-col .sales-block__accordions-2__accordion i {
	margin-left: 10px;
	margin-right: 15px;
}

.sales .sales-col .sales-block__accordions-2__accordion i:last-child {
	margin-left: 15px;
	margin-right: 10px;
	color: rgb(56, 158, 13);
}

.sales .sales-col .sales-block__accordions-2__accordion.active {
}

.sales .sales-col .sales-block__accordions-2__accordion__content {
	display: none;
	min-height: 20px;
	width: 100%;
	background: white;
	padding: 20px;
	color: #8c8c8c;
	font-family: "Gotham", Sans-serif;
	font-weight: 300;
}

.sales .sales-col .sales-block__price {
	height: 80px;
	width: 100%;
	position: relative;
	margin: 0 0 10px;
}

.sales .sales-col .sales-block__price .sales-block__price__button {
	position: absolute;
	font-family: "Gotham", Sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #000000;
	background-color: #ffffff;
	border-style: solid;
	border-width: 0.5px 0.5px 0.5px 0.5px;
	border-color: #000000;
	border-radius: 5px 5px 5px 5px;
	width: 80%;
	margin: 0 auto;
	display: block;
	left: 10%;
	top: 18px;
	padding: 15px;
}

.sales .sales-col .sales-block__price__text {
	display: none;
	text-align: center;
}

.sales .sales-col .sales-block__price__text small {
	display: block;
}

.sales .sales-col .sales-block__price__text strike {
	display: block;
	color: #ee2957;
	font-weight: bold;
}

.sales .sales-col .sales-block__price__text b {
	display: block;
	font-size: 18px;
}

.sales .sales-col .sales__check-price, .sales__check-price-alone {
	cursor: pointer;
	font-family: "Gotham", Sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #000000;
	background-color: #ffffff;
	border-style: solid;
	border-width: 0.5px 0.5px 0.5px 0.5px;
	border-color: #000000;
	border-radius: 5px 5px 5px 5px;
	width: auto;
	margin-top: 64px;
	margin-bottom: 64px;
	display: block;
	padding: 16px 10px;
	text-align: center;
}

.sales .sales-col .sales__check-price.red-button, .sales__check-price-alone.red-button {
	color: #fff;
	background-color: #c34e38;
}

.sales__check-price-alone{
	width: 300px;
	margin-left: -150px;
	position: relative;
	left: 50%;
	margin-top: 0;
	margin-bottom: 36px;
}

.sales-block__top-timer {
	background: #b41f0f;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	padding: 20px 5px;
	color: white;
	text-align: center;
	min-height: 100px;
	font-size: 14px;
	padding-bottom: 40px;
	margin-bottom: -20px;
}

.sales-block__bottom-timer {
	background: #b41f0f;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	padding: 20px;
	color: white;
	text-align: center;
	padding-top: 40px;
	margin-top: -20px;
}

.flip-clock-container-basic {
	direction: ltr;
	font-family: Arial;
	padding: 0;
	margin: 0;
	list-style: none;
	box-sizing: border-box;
	--flip-bg-color: #fff;
	--flip-text-color: #000;
	--flip-dots-color: #000;
	display: flex;
	justify-content: center;
	flex-direction: row-reverse;
}

.flip-clock-container-basic * {
	padding: 0;
	margin: 0;
	list-style: none;
	box-sizing: border-box;
}

.flip-clock-container-basic *::before,
.flip-clock-container-basic *::after {
	box-sizing: border-box;
}

.flip-clock-container-basic [class|=flip-item] {
	display: flex;
	flex-direction: row-reverse;
}

.flip-clock-container-basic [class|=flip-item]::before {
	content: ":";
	font-family: Consolas;
	font-size: 30px;
	color: transparent;
	line-height: 50px;
	margin: 0 5vw;
}

.flip-clock-container-basic [class|=flip-item]:first-child::before {
	content: none;
}

.flip-clock-container-basic [class|=flip-item] .flip-digit {
	width: 20px;
	height: 35px;
	position: relative;
	margin: 0 2px;
}

.flip-clock-container-basic [class|=flip-item] .flip-digit > span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	perspective: 300px;
}

.flip-clock-container-basic [class|=flip-item] .flip-digit > span::after,
.flip-clock-container-basic [class|=flip-item] .flip-digit > span::before {
	content: attr(data-digit);
	position: absolute;
	left: 0;
	width: 100%;
	height: 50%;
	font-size: 20px;
	font-weight: bolder;
	text-align: center;
	color: var(--flip-text-color);
	background-color: var(--flip-bg-color);
	overflow: hidden;
	transform-style: preserve-3d;
}

.flip-clock-container-basic [class|=flip-item] .flip-digit > span::before {
	top: 0;
	line-height: 38px;
	border-radius: 5px 5px 0 0;
	-webkit-transform-origin: bottom;
	transform-origin: bottom;
}

.flip-clock-container-basic [class|=flip-item] .flip-digit > span::after {
	bottom: 0;
	line-height: 0px;
	border-radius: 0 0 5px 5px;
	-webkit-transform-origin: top;
	transform-origin: top;
}

.flip-clock-container-basic [class|=flip-item] .flip-digit.flipping .flip-digit-next {
	z-index: 0;
	animation: afterZIndexAnim 0.9s linear forwards;
}

.flip-clock-container-basic [class|=flip-item] .flip-digit.flipping .flip-digit-next::before {
	animation: afterUpShadowAnim 0.9s linear forwards;
}

.flip-clock-container-basic [class|=flip-item] .flip-digit.flipping .flip-digit-next::after {
	animation: afterFlipAnim 0.9s linear forwards, afterDownShadowAnim 0.9s linear forwards;
}

.flip-clock-container-basic [class|=flip-item] .flip-digit.flipping .flip-digit-current {
	z-index: 1;
	animation: currentZIndexAnim 0.9s linear forwards;
}

.flip-clock-container-basic [class|=flip-item] .flip-digit.flipping .flip-digit-current::before {
	animation: currentFlipAnim 0.9s linear forwards, currentUpShadowAnim 0.9s linear forwards;
}

.flip-clock-container-basic [class|=flip-item] .flip-digit.flipping .flip-digit-current::after {
	animation: currentDownShadowAnim 0.9s linear forwards;
}

@keyframes afterZIndexAnim {
	0% {
		z-index: 0;
	}
	100% {
		z-index: 1;
	}
}

@keyframes currentZIndexAnim {
	0% {
		z-index: 1;
	}
	100% {
		z-index: 0;
	}
}

@keyframes afterFlipAnim {
	0% {
		transform: rotateX(180deg);
	}
	100% {
		transform: rotateX(0);
	}
}

@keyframes afterUpShadowAnim {
	0% {
		box-shadow: inset 0 -100px 20px -10px black;
	}
	100% {
		box-shadow: inset 0 0 20px -10px rgba(0, 0, 0, 0);
	}
}

@keyframes afterDownShadowAnim {
	0% {
		box-shadow: inset 0 100px 20px -10px black;
	}
	100% {
		box-shadow: inset 0 0 20px -10px rgba(0, 0, 0, 0);
	}
}

@keyframes currentFlipAnim {
	0% {
		transform: rotateX(0deg);
	}
	100% {
		transform: rotateX(-180deg);
	}
}

@keyframes currentUpShadowAnim {
	0% {
		box-shadow: inset 0 0 15px -10px rgba(0, 0, 0, 0);
	}
	50% {
		box-shadow: inset 0 -50px 25px -10px black;
	}
	100% {
		box-shadow: inset 0 -100px 25px -10px black;
	}
}

@keyframes currentDownShadowAnim {
	0% {
		box-shadow: inset 0 0 15px -10px rgba(0, 0, 0, 0);
	}
	50% {
		box-shadow: inset 0 50px 25px -10px black;
	}
	100% {
		box-shadow: inset 0 100px 25px -10px black;
	}
}

.sales-block__top-timer__timer {
	margin-top: 10px;
}

.sales-block__top-timer__timer__markers {
	display: flex;
	list-style: none;
	text-transform: uppercase;
	color: #f5f5f5;
	font-family: "Gotham", sans-serif;
	padding: 0;
	justify-content: center;
	font-size: 14px;
	margin: -7px 0 0 0;
	line-height: 22px;
	color: #cf6d5c;
}

.sales-block__top-timer__timer__markers li {
	margin: 0 10%;
}

/**************************\
Basic Modal Styles
\**************************/

.modal {
	font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto,
	segoe ui, arial, sans-serif;
}

.modal__overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
}

.modal__container {
	border-style: solid;
	border-width: 0 1px 0 1px;
	border-color: #1b1b1b;
	background-color: #000;
	padding: 30px;
	max-width: 70vw;
	max-height: 100vh;
	border-radius: 0;
	overflow-y: auto;
	box-sizing: border-box;
	background-color: rgba(2, 1, 1, 0.62);
	box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.2);
	color: white;
	height: 100vh;
}

.modal__content__text {
	color: #ffffff;
	font-family: "Gotham", Sans-serif;
	font-size: 14px;
	text-align: center;
}

.modal__content__text--cez-internet {
	color: #a3b2c4;
	font-family: "Gotham", Sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	text-align: center;
}

.modal__header {
	/*display: flex;
justify-content: space-between;
align-items: right;*/
	display: block;
	text-align: right;
}

.modal__title {
	margin-top: 0;
	margin-bottom: 0;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.25;
	color: #00449e;
	box-sizing: border-box;
}

.modal__close {
	display: inline-block;
	background: transparent;
	border: 0;
	color: #808285;
	padding: 0;
}

.modal__header .modal__close:before {
	content: "\2715";
}

.modal__content {
	margin-top: 2rem;
	margin-bottom: 2rem;
	line-height: 1.5;
	color: white;
}

.modal__content__logo {
	vertical-align: middle;
	margin: 0 auto;
	display: block;
	width: 50%;
}

.modal__content__heading1 {
	display: block;
	color: #ffffff;
	font-family: "Syncopate L", Sans-serif;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	margin-top: 30px;
}

.modal__content__heading2 {
	margin-bottom: 30px;
	display: block;
	color: #ffffff;
	font-family: "Gotham", Sans-serif;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
}

.modal__content__strike {
	display: block;
	color: #eb5757;
	font-family: "Gotham", Sans-serif;
	font-size: 24px;
	font-weight: normal;
	text-transform: uppercase;
	text-decoration: line-through;
	text-align: center;
}

.modal__content__now {
	display: block;
	color: #ffffff;
	font-family: "Gotham", Sans-serif;
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
}

.modal__content__text--cez-internet {
	margin-top: 20px;
}

.modal__content__collection {
	vertical-align: middle;
	margin: 20px auto 0;
	display: block;
	width: 50%;
}

.modal__content__btn {
	display: inline-block;
	margin: 0 auto;
	line-height: 1;
	background-color: #818a91;
	font-size: 15px;
	padding: 12px 24px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: #fff;
	fill: #fff;
	text-align: center;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	font-family: "Gotham", Sans-serif;
	font-size: 14px;
	font-weight: 500;
	fill: #000000;
	color: #000000;
	background-color: #ffffff;
	box-shadow: 0px 0px 20px 0px rgba(255, 255, 255, 0.63);
	padding: 15px 25px 15px 25px;
}

.modal__btn {
	font-size: .875rem;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: .5rem;
	padding-bottom: .5rem;
	background-color: #e6e6e6;
	color: rgba(0, 0, 0, .8);
	border-radius: .25rem;
	border-style: none;
	border-width: 0;
	cursor: pointer;
	-webkit-appearance: button;
	text-transform: none;
	overflow: visible;
	line-height: 1.15;
	margin: 0;
	will-change: transform;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	transition: -webkit-transform .25s ease-out;
	transition: transform .25s ease-out;
	transition: transform .25s ease-out, -webkit-transform .25s ease-out;
}

.modal__btn:focus,
.modal__btn:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.modal__btn-primary {
	background-color: #00449e;
	color: #fff;
}

/**************************\
Demo Animation Style
\**************************/

@keyframes mmfadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes mmfadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes mmslideIn {
	from {
		transform: translateY(15%);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes mmslideOut {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-10%);
	}
}

.micromodal-slide {
	display: none;
}

.micromodal-slide.is-open {
	display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
	animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
	animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
	animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
	animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
	will-change: transform;
}

.modal__time-box {
	min-height: 150px;
	background: #262626;
}

.modal__time-box--text {
	display: block;
	padding: 20px 0 15px;
	font-family: "Gotham", sans-serif;
	text-align: center;
	color: #8c8c8c;
	font-size: 16px;
	line-height: 22px;
}

.modal__time-box--markers {
	display: flex !important;
	list-style: none;
	text-transform: uppercase;
	color: #f5f5f5;
	font-family: "Gotham", sans-serif;
	padding: 0;
	justify-content: center;
	font-size: 14px;
	margin: 5px 0 0 0;
	line-height: 22px;
}

.modal__time-box--markers li {
	margin: 0 10%;
}

@media (min-width: 430px) {
	.modal__time-box--markers li {
		margin: 0 18px;
	}
}

.modal__time-box--markers li:first-child {
	margin-right: 28px;
}

.fancybox-container img {
	max-height: 85vh !important;
}

/*sales end*/

.limit-kosele {
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	color: white !important;
}

.limit-kosele .pp-first-text {
	color: white !important;
}

.limit-kosele .pp-second-text {
	color: white !important;
}

.limit-kosele .button {
	position: relative;
	margin: auto auto 0;
	bottom: -35px;
	display: block;
	width: 233px;
	text-align: center;
}

.limit-kosele .image_logo {
	width: 80%;
	max-width: 300px;
}

.koho-obliekame {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.koho-obliekame__scroll {
	overflow: scroll;
	width: 100%;
	position: relative;
	padding-bottom: 10px;
}

@media all and (min-width: 768px){
	.koho-obliekame__scroll{
		overflow: unset;
	}
	.koho-obliekame__loga{
		width: auto !important;
	}
}

.koho-obliekame__overlay {
	display: none;
	width: 50px;
	height: 200px;
	position: absolute;
	right: 0;
	z-index: 99;
	background: -webkit-gradient(linear, right top, left top, color-stop(0, #f6f6f6), to(rgba(10, 66, 91, 0)));
	background: -o-linear-gradient(right, #f6f6f6 0, rgba(10, 66, 91, 0) 100%);
	background: linear-gradient(270deg, #f6f6f6 0, rgba(10, 66, 91, 0) 100%);
	transform: translateY(-100%);
}

.koho-obliekame div {
	width: 50%;
	max-width: 200px;
}

.koho-obliekame .koho-obliekame__image {
	width: 100%;
	object-fit: contain;
	padding: 10px;
}

@media (max-width: 450px) {
	.koho-obliekame div {
		width: 80%;
		margin: 0 auto;
	}

	.koho-obliekame img.koho-obliekame__image {
	}
}


