/* default styles */
:root{
	--transition: cubic-bezier(.4,0,.2,1);
}
img{
	border-style: none;
}

body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
#footer{margin-top: auto;}

body.overflow{
	overflow: hidden;
	height: 100vh;
}

.hidden{
	display: none;
}

.centered{text-align: center;}

.headline-wrapper{
	margin-bottom: var(--size-lg);
}
.headline-wrapper h1,.headline-wrapper h2,.headline-wrapper h3{
	font-family: var(--font_secondary);
}
.headline-wrapper.text-center .mx, .headline-wrapper.centered .mx{
    margin: 0 auto;
}

.anchor{
	position: relative;
}
.anchor-hidden{
    position: absolute;
    top: -70px;
    pointer-events: none;
    visibility: hidden;
}

.default-margins > *{margin-bottom: var(--size-sm);}
.default-margins.xs > *{margin-bottom: var(--size-xs);}
.default-margins.md > *{margin-bottom: var(--size-md);}
.default-margins.lg > *{margin-bottom: var(--size-lg);}
.default-margins > *:last-child{
	margin-bottom: 0;
}


.scrollbar-custom{
	padding-right: 10px;
}
.scrollbar-custom{
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--light);
    scrollbar-face-color: var(--primary);
    scrollbar-arrow-color: var(--primary);
    scrollbar-track-color: var(--light);
}
.scrollbar-custom::-webkit-scrollbar{
    width: 8px;
    border-radius: 8px;
}
.scrollbar-custom::-webkit-scrollbar-thumb{
    background-color: var(--primary);
    border-radius: 8px;
    border: 2px solid var(--light);
}
.scrollbar-custom::-webkit-scrollbar-track{
    background: var(--light);
}


.modal-backdrop{
	z-index: 99900;
}
.modal{
	z-index: 99905;
}
.modal .modal-content > div{
	padding: var(--size-sm);
}
.modal .modal-header{
	display: block;
}
.modal .modal-content .modal-body{
	padding-top: 0;
}
.modal .modal-footer{
	border-top: 1px solid var(--gray-100);
}
.modal .modal-footer>*{
	margin:0;
	margin-left: var(--size-xs);
}
.modal-title{font-weight: 600;}

@media (min-width: 576px){
	.modal-sm {--bs-modal-width: 320px;}
}

/* dropdowns */
.dropdown-menu .dropdown-item{
	padding: var(--size-xs) var(--size-sm);
	cursor: pointer;
	transition: background-color .3s;
}
.dropdown-menu .dropdown-item:active{
	background-color: var(--gray-100);
	color: var(--dark);
}
.dropdown-menu .dropdown-item.active{
	background-color: var(--gray-100);
	color: var(--dark);
}

.custom-dropdown .dropdown-menu{
	width: calc(100% - var(--size-xs) - var(--size-xs));
    font-size: var(--f-size-main);
    padding: var(--size-sm) var(--size-md);
    border: 0;
    margin-top: -1px !important;
    box-shadow: 0 3px 20px -5px rgba(0,0,0,0.3);
    border-radius: var(--radius-outside);
    z-index: 850;
    left: var(--size-xs) !important;
    margin-top: var(--size-xs) !important;
    padding: 0;
}
.custom-dropdown .dropdown-menu::after{
    position: absolute;
    display: inline-block;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: "";
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: -6px;
    border-right: 8px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 8px solid transparent;
    width: 8px;
}
.dropdown-menu.list{
	padding: var(--size-xs) 0;
}
/* end */















.parallax-image{
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}
.parallax-image img{
	width: 100%;
	object-fit: cover;
	position: absolute;
    transform: translateY(var(--distance));
    will-change: transform;
}

.button-wrapper{
	margin-top: var(--size-md);
}

.uppertext{
	font-size: var(--f-size-xs);
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.uppertext.as-badge{
	display: inline-block;
	padding: var(--size-xs) var(--size-sm);
	background-color: var(--primary);
	color: #fff;
	line-height: 1;
}
.uppertext.as-badge.secondary{
	background-color: var(--secondary);
}
section.bg{
	background-color: #fff8f8;
	padding-top: var(--block-mb);
	padding-bottom: var(--block-mb);
}



.lang-chooser .button{
	font-weight: 500;
	cursor: pointer;
}
.lang-chooser .button i{
	font-size: 12px;
}
.lang-chooser .list{
	display: none;
}

.img-fill{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.button-group{
	display: flex;
}
.button-group > *{
	margin-right: var(--size-xs);
}
.button-group > *:last-child{
	margin-right: 0;
}

.centered .button-group{justify-content: center;}

.slider-arrow{
	--primary-color: var(--primary);
}
.slider-arrow.white{
	--primary-color: #fff;
}
.slider-arrow{
	position: absolute;
	top: 0;
	bottom:0;
	left: var(--block-padding);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	border-radius: 50%;
	z-index: 5;
	cursor: pointer;
	border: 1px solid var(--primary-color);
	transition: background-color 0.3s, border-color 0.3s;
}
.slider-arrow.next{
	left: initial;
    right: var(--block-padding);
}
.slider-arrow i{
	font-size: 20px;
	color: var(--primary-color);
	transition: color 0.3s;
}
.slider-arrow:hover{
	background-color: var(--primary-color);
}
.slider-arrow:hover i{
	color: #fff;
}


body .slick-dots{
	position: static;
	width: auto;
	display: flex;
	margin: 0 var(--size-xs);
	justify-content: center;
}
body .slick-dots li{
	width: 22px;
	height: 22px;
	display: block;
}
body .slick-dots li button{
	width: 22px;
	height: 22px;
}
body .slick-dots li button:before{
	content: "";
	border-radius: 50%;
	background-color: transparent;
	border: 2px solid var(--dark);;
	width: 14px;
    height: 14px;
    margin: auto;
    right: 0;
    bottom: 0;
    transition: opacity 0.3s, background-color 0.3s;
}
body .slick-dots li button:hover:before, body .slick-dots li button:focus:before{
	opacity: .25;
}
body .slick-dots li.slick-active button:before{
	background-color: var(--dark);
	opacity: 1;
}

/* swiper */
.swiper-pagination{
	bottom: var(--size-sm)!important;
}
body .swiper-pagination-bullet{
	background-color: #fff;
}



.yt-iframe-api iframe{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    z-index: 0;
}



.basic-items-wrapper{
	overflow: hidden;
}
.basic-items-wrapper .list-title{
	font-size: var(--f-size-h6);
	font-weight: 600;
}
.basic-items-wrapper .iconinline .icon i{
	font-size: 32px;
}
.basic-items-wrapper .icongrid .icon i{
	font-size: 42px;
}
.basic-items-wrapper .value{
	font-weight: 700;
    font-size: var(--f-size-h4);
}
/* end */


/* crumbs */
.crumbs{
    font-size: var(--f-size-sm);
}
.crumbs a{
    transition: color 0.2s;
}
.crumbs a:hover {
	color: var(--primary);
}
.crumbs .ti{
    display: inline-block;
    margin: 0 5px;
    vertical-align: middle;
}
/* end */



/* inputs, forms */
*:focus {outline: none;}
.form-floating .form-control{
	border-radius: var(--radius-inside);
	border-color: var(--gray-100);
}
.form-floating .form-control:focus{
	border-color: var(--dark);
	box-shadow: 0 0 0 rgba(0,0,0);
}

.form-floating.error input,.form-floating.error textarea,.form-floating.error select{
	border-color: #eb0000;
}
.form-floating.error input:focus,.form-floating.error textarea:focus,.form-floating.error select:focus{
	border-color: #eb0000;
}
.form-floating .helper {
    font-size: var(--f-size-xs);
    display: none;
    color: #eb0000;
}
.form-floating .helper.active {
    display: block;
    margin-top: 3px;
}

.form-floating > label{line-height: 1.7;}


input[type=checkbox], input[type=radio] {
	--active: var(--primary);
	--active-inner: #fff;
	--focus: 0px var(--primary-lighter);
	--border: var(--primary);
	--border-hover: var(--primary);
	--background: #fff;
	--disabled: var(--gray-100);
	--disabled-inner: var(--gray-200);
	--disabled-border: var(--gray-200);
	position: relative;
	top: 2px;
	-webkit-appearance: none;
	-moz-appearance: none;
	height: 20px;
	padding: 0;
	outline: none;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	border: 1px solid var(--bc, var(--border));
	background: var(--b, var(--background));
	transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
	border-radius: var(--radius-inside);
}
input[type=radio] {
	border-radius: 50%;
}
input[type=checkbox]:after,
input[type=radio]:after {
	content: "";
	display: block;
	left: 0;
	top: 0;
	position: absolute;
	transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
}
input[type=checkbox]:checked,
input[type=radio]:checked {
	--b: var(--active);
	--bc: var(--active);
	--d-o: .3s;
	--d-t: .6s;
	--d-t-e: cubic-bezier(.2, .85, .32, 1.2);
}
input[type=checkbox]:disabled,
input[type=radio]:disabled {
	--b: var(--disabled);
	cursor: not-allowed;
	opacity: 0.9;
	border-color: var(--disabled-border);
}
input[type=checkbox]:disabled:checked,
input[type=radio]:disabled:checked {
	--b: var(--disabled-inner);
	--bc: var(--border);
}
input[type=checkbox]:disabled + label,
input[type=radio]:disabled + label {
	cursor: not-allowed;
}
input[type=checkbox]:hover:not(:checked):not(:disabled),
input[type=radio]:hover:not(:checked):not(:disabled) {
	--bc: var(--border-hover);
}
input[type=checkbox]:focus,
input[type=radio]:focus {
	box-shadow: 0 0 0 var(--focus);
}
input[type=checkbox]:not(.switch),
input[type=radio]:not(.switch) {
	width: 20px;
	min-width: 20px;
}
input[type=checkbox]:not(.switch):after,
input[type=radio]:not(.switch):after {
	opacity: var(--o, 0);
}
input[type=checkbox]:not(.switch):checked,
input[type=radio]:not(.switch):checked {
	--o: 1;
}
input[type=checkbox] + label,
input[type=radio] + label {
	line-height: 21px;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	margin-left: 4px;
}
input[type=checkbox]:not(.switch):after {
	width: 6px;
	height: 12px;
	border: 2px solid var(--active-inner);
	border-top: 0;
	border-left: 0;
	left: 6px;
	top: 2px;
	transform: rotate(var(--r, 20deg));
}
input[type=checkbox]:not(.switch):checked {
	--r: 43deg;
}
input[type=radio] {
	border-radius: 50%;
}
input[type=radio]:after {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--active-inner);
	opacity: 0;
	transform: scale(0);
}
input[type=radio]:checked::after{
	transform: scale(0.35);
}

.submit-form{position: relative;}
.btn-default .spinner-border{
    width: 14px;
    height: 14px;
    line-height: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    bottom: 0;
    display: none;
}
.submit-form.sending{
    opacity: 0.8;
    pointer-events: none;
}
.submit-form.sending .spinner-border{
	display: block;
}
.submit-form.sending span{
	visibility: hidden;
}

.checkbox-item{position: relative;padding-left: calc(var(--size-md) + 5px);padding-top: 1px;user-select: none;}
.checkbox-item input{position: absolute;left: 0;top: 1px;}
.checkbox-item span{line-height: 1.2;}
.checkbox-item span a{color: var(--primary);}
.checkbox-item span a:hover{text-decoration: underline;}

.form .response > *{margin-bottom: 0;margin-top: var(--size-sm);}

.alert{border-radius: var(--radius-inside);padding: var(--size-xs) var(--size-sm);font-weight: 500;}
.alert-danger{
	--bs-alert-color: #fff;
    --bs-alert-bg: var(--error);
    --bs-alert-border-color: var(--error);
}

body .daterangepicker{border-radius: var(--radius-inside);border-color: var(--gray-100);box-shadow: 0 4px 15px -5px rgba(0,0,0,0.15);}
body .daterangepicker:before{border-bottom: 7px solid var(--gray-100);}
body .daterangepicker .calendar-table th, body .daterangepicker .calendar-table td{border-radius: var(--radius-inside);}
body .daterangepicker td.start-date.end-date{border-radius: var(--radius-inside);}
body .daterangepicker td.active, body .daterangepicker td.active:hover{
	background-color: var(--primary);
	color: var(--primary-text-color);
}

.form-footer{
	text-align: center;
}
/* end */









/* icons-grid */
.icons-grid .col-item img{
	height: 60px;
}
.icons-grid .col-item > *{
	margin-bottom: var(--size-sm);
}
.icons-grid .col-item > *:last-child{
	margin-bottom: 0;
}

.icons-grid.icon-size-sm .col-item img{
	height: 40px;
}
.icons-grid.icon-size-md .col-item img{
	height: 80px;
}
/* end */














/* header-1 */
.header-1-pt{height: 0;}

.header-1 header{
	background-color: #fff;
    width: 100%;
    position: relative;
    z-index: 900;
}
.header-1 .top .block{
    display: flex;
    align-items: center;
    position: relative;
    height: 80px;
    max-width: 1920px;
    padding-left: 1rem;
    padding-right: 1rem;
}
.header-1 .top .wrapper-left{
    display: flex;
    align-items: center;
}
.header-1 .top .wrapper-left > a{
    margin-right: var(--size-sm);
    transition: color 0.3s;
}
.header-1 .top .wrapper-left > a:hover{
	color: var(--primary);
}
.header-1 .top .wrapper-left .link-icon i{
	margin-right: 5px;
}
.header-1 .top .wrapper-right{
    margin-left: auto;
    display: flex;
    align-items: center;
}
.header-1 .top .wrapper-right > *{
	margin-left: var(--size-xs);
}
.header-1 .top .wrapper-right > .btn-default{
	margin-left: var(--size-sm);
}
.header-1 .top i{
	font-size: 20px;
	vertical-align: middle;
}


.header-1 .top .wrapper-center{
    display: contents;
}
.header-1 .top .logo{
    position: absolute;
    height: 60px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.header-1 .top .logo.only-hp{
    display: none;
}

.header-1 .top .login a{padding: 5px;transition: color 0.3s;}
.header-1 .top .login a:hover{color: var(--primary);}
.header-1 .top .basket-icon{padding: 5px;transition: color 0.3s;}
.header-1 .top .basket-icon:hover{color: var(--primary);}

.header-1 .nav-holder{
	height: 60px;
}
.header-1 .nav-holder nav {
    padding-bottom: 10px;
}
.header-1 .nav-holder .block {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}
.header-1 .nav-holder .logo{
    display: none;
    height: 32px;
}
.header-1 .header-menu{
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
}
.header-1 .header-menu-item{
    padding: 10px 15px 15px 15px;
    font-size: 16px;
    position: relative;
    margin-bottom: 0;
}
.header-1 .header-menu-item > a{
	transition: color 0.3s;
}
.header-1 .header-menu-item > a:hover{
	color: var(--primary);
}
.header-1 .header-menu-item > a.active{
	color: var(--primary);
}
.header-1 .header-menu-item > span{
	cursor: default;
}
.header-1 .submenu {
    position: absolute;
    left: calc(50% - 130px);
    top: 100%;
    width: 260px;
    background-color: #fff;
    z-index: 2;
    box-shadow: 0px 0px 20px #47525F29;
    opacity: 0;
    visibility: hidden;
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    transition: all 0.1s;
}
.header-1 .header-menu-item:hover .submenu{
    opacity: 1;
    visibility: visible;
    -ms-transform: translateY(0);
    transform: translateY(0);
    transition: all .2s;
}
.header-1 .header-menu-item i {
    display: block;
    text-align: center;
    color: var(--dark);
    opacity: 0.2;
    font-size: 14px;
    margin-top: 3px;
    transition: color 0.3s;
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
}
.header-1 .submenu ul {
    margin: 0;
    padding: 25px;
    list-style-type: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.header-1 .submenu ul li {
    padding: 0;
    width: 100%;
}
.header-1 .submenu-item a {
    padding: 10px;
    display: block;
    text-align: center;
    transition: color 0.3s;
}
.header-1 .submenu-item a:hover{
    color: var(--primary);
}
.header-1 .submenu-item a.active{
    color: var(--primary);
}

#hamburger{
	flex-direction:column;
	width:32px;
	cursor:pointer;
	pointer-events: unset;	
	left: unset;
	padding: 3px 5px;
	display: none;
	margin-bottom: 0;
	margin-left: 10px;
}
#hamburger span{
	background: #000;
	border-radius:10px;
	height:2px;
	margin: 2.5px 0;
	transition: all .4s  ;
}
#hamburger span:nth-of-type(1){
	width:50%;
}
#hamburger span:nth-of-type(2){
	width:100%;
}
#hamburger span:nth-of-type(3){
	width:75%;
}
#hamburger input[type="checkbox"]{
	display:none;
}
#hamburger input[type="checkbox"]:checked ~ span:nth-of-type(1){
	transform-origin:bottom;
	transform:rotatez(45deg) translate(14px,1px)
}
#hamburger input[type="checkbox"]:checked ~ span:nth-of-type(2){
	transform-origin:top;
	transform:rotatez(-45deg)
}
#hamburger input[type="checkbox"]:checked ~ span:nth-of-type(3){
	transform-origin:bottom;
	width:50%;
	transform: translate(2px,-11px) rotatez(45deg);
}


.header-1.sticky .nav-holder nav{
    position: fixed;
    top: 0px;
    z-index: 999;
    -webkit-animation: set_sticky .5s;
    -moz-animation: set_sticky .5s;
    animation: set_sticky .5s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    -moz-animation-timing-function: ease;
    transform: translateY(0);
    transition: transform 500ms ease 0s;
    background-color: #fff;
    width: 100%;
    padding-bottom: 0;
    box-shadow: 0px 15px 20px #47525F0D;
}
.header-1.sticky .nav-holder .logo{
	display: block;
}

.header-1 .only-sticky{display: none;}
.header-1.sticky .only-sticky .basket-icon{font-size: 20px;padding: 5px;transition: color 0.3s;}
.header-1.sticky .only-sticky .basket-icon:hover{color: var(--primary);}
.header-1.sticky .only-sticky .login a{padding:5px;transition: color 0.3s;font-size: 20px;}
.header-1.sticky .only-sticky .login a:hover{color: var(--primary);}
.header-1.sticky .only-sticky{display: flex;margin-left: var(--size-sm);}
.header-1.sticky .header-menu-item{padding: 8px;}
.header-1.sticky .header-menu-item > a{color: var(--dark);font-size: var(--f-size-sm);}
.header-1.sticky .header-menu-item > span{color: var(--dark);font-size: var(--f-size-sm);}
.header-1.sticky .header-menu-item > a:hover{color: var(--primary);}
.header-1.sticky .submenu-item a{color: var(--dark);font-size: var(--f-size-sm);}
.header-1.sticky .submenu-item a:hover{color: var(--primary);}
.header-1.sticky .header-menu-item i{
	display: inline-block;
    text-align: unset;
    margin-left: 4px;
    margin-top: 0px;
    font-size: 9px;
    position: static;
    color: var(--dark);
}
.header-1.sticky .header-menu-item i.open-submenu{display: none;}
.header-1.sticky nav .logo-wrapper{margin-right: auto;}

@keyframes set_sticky{
	from{
		margin-top: -140px;
	}
	to{
		margin-top: 0;
	}
}

.header-1 .wrapper-center .white{display: none;}
.header-1 .wrapper-center .colored{display: block;}

.header-1 .nav-holder-actions{display: none;}



.basic-page-front .header-1.hptransparent header{background: transparent;position: absolute;}
.basic-page-front .header-1.hptransparent .wrapper-center .white{display: block;}
.basic-page-front .header-1.hptransparent .wrapper-center .colored{display: none;}
.basic-page-front .header-1.hptransparent:not(.sticky) .header-menu-item > a{color: #fff;}
.basic-page-front .header-1.hptransparent:not(.sticky) .header-menu-item > span{color: #fff;}
.basic-page-front .header-1.hptransparent:not(.sticky) .header-menu-item > a:hover{color: var(--primary);}

.basic-page-front .header-1.hptransparent:not(.sticky) .top .wrapper-left a{color: #fff;}
.basic-page-front .header-1.hptransparent:not(.sticky) .top .wrapper-left a:hover{color: var(--primary);}

.basic-page-front .header-1.hptransparent:not(.sticky) .top .login a{color: #fff;}
.basic-page-front .header-1.hptransparent:not(.sticky) .top .login a:hover{color: var(--primary);}
.basic-page-front .header-1.hptransparent:not(.sticky) .top .basket-icon{color: #fff;}
.basic-page-front .header-1.hptransparent:not(.sticky) .top .basket-icon:hover{color: var(--primary);}

.basic-page-front .header-1.hptransparent:not(.sticky) .header-menu-item i{color:#fff;}

.header-1.transparent header{background: transparent;position: absolute;}
.header-1.transparent .wrapper-center .white{display: block;}
.header-1.transparent .wrapper-center .colored{display: none;}
.header-1.transparent:not(.sticky) .header-menu-item > a{color: #fff;}
.header-1.transparent:not(.sticky) .header-menu-item > a:hover{color: var(--primary);}

.header-1.transparent:not(.sticky) .top .wrapper-left a{color: #fff;}
.header-1.transparent:not(.sticky) .top .wrapper-left a:hover{color: var(--primary);}

.header-1.transparent:not(.sticky) .top .login a{color: #fff;}
.header-1.transparent:not(.sticky) .top .login a:hover{color: var(--primary);}
.header-1.transparent:not(.sticky) .top .basket-icon{color: #fff;}
.header-1.transparent:not(.sticky) .top .basket-icon:hover{color: var(--primary);}

.header-1.transparent:not(.sticky) .header-menu-item i{color:#fff;}


@media (max-width: 1399.98px){
	.header-1 .header-menu-item{padding: 10px 10px 15px 10px;}
	.header-1 .header-menu-item > a{font-size: var(--f-size-sm);}
	.header-1 .header-menu-item > span{font-size: var(--f-size-sm);}
	.header-1 .submenu-item a{font-size: var(--f-size-sm);}
	.header-1 .submenu ul{padding: 15px;}
	.header-1 .submenu-item a{padding: 8px;}
	.header-1.sticky .header-menu-item > a{font-size: var(--f-size-sm);}
	.header-1.sticky .header-menu-item > span{font-size: var(--f-size-sm);}
}
@media (max-width: 1299.98px){
	.header-1 .header-menu-item{padding: 10px 8px 15px 8px;}
	.header-1.sticky .header-menu-item{padding: 8px 6px;}
	.header-1.sticky .header-menu-item > a{font-size: var(--f-size-xs);}
	.header-1.sticky .header-menu-item > span{font-size: var(--f-size-xs);}
}
@media (max-width: 1199.98px){
	.header-1 .header-menu-item{padding: 10px 6px 15px 6px;}
	.header-1 .header-menu-item > a{font-size: 13px;}
	.header-1 .header-menu-item > span{font-size: 13px;}
	.header-1 .top .logo{height: 50px;}
	.header-1 .nav-holder .logo{height: 28px;}
	.header-1.sticky .header-menu-item{padding: 8px 4px;}
	.header-1.sticky .header-menu-item > a{font-size: 11px;}
	.header-1.sticky .header-menu-item > span{font-size: 11px;}
}
@media (max-width: 1100px){
	.header-1 .header-menu-item > a{font-size: 12px;}
	.header-1 .header-menu-item > span{font-size: 12px;}
}
@media (max-width: 991.98px){
	.header-1-pt{height: 56px;}

	.header-1 .header-menu-item{padding: 8px 0px;}
	.header-1 .nav-holder{
	    overflow: hidden;
	    position: fixed;
	    top: 56px;
	    left: 0;
	    right: 0;
	    background-color: #fff;
	    bottom: 0;
	    height: unset;
	    z-index: 2000;
	    display: none;
	    overflow: auto;
	}
	.header-1 .top{
	    box-shadow: 0px 15px 20px #47525f0d;
	    position: fixed;
	    top: 0;
	    left: 0;
	    right: 0;
	    background-color: #fff;
	    z-index: 2000;
	    transition: unset;
	}
	.header-1 .top .block{height: 56px;}
	#hamburger{display: flex;}
	.header-1 .nav-holder .block{height: auto;}
	.header-1 .header-menu{flex-direction: column;width: 100%;}
	.header-1 .header-menu-item i{display: none;}
	.header-menu-item i.open-submenu {
	    position: absolute;
	    top: 0;
	    right: 0;
	    width: 30px;
	    height: 40px;
	    margin-top: 0;
	    line-height: 40px;
	    display: block;
	    left: auto;
		pointer-events: unset;
	}
	.header-1 .submenu{
	    position: static;
	    left: 0;
	    top: 0%;
	    width: 100%;
	    box-shadow: unset;
	    opacity: 1;
	    visibility: visible;
	    -ms-transform: unset;
	    transform: unset;
	    transition: unset;
	    display: none;
	}
	.header-1 .header-menu-item:hover .submenu{-ms-transform: unset;transform: unset;transition: unset;}
	.header-1 .submenu-item a{text-align: left;}
	.header-1 .header-menu-item > a{font-size: var(--f-size-main);}
	.header-1 .header-menu-item > span{font-size: var(--f-size-main);}
	.header-1 .submenu-item a{font-size: var(--f-size-main);}
	.header-menu-item i::before{display:block;transition: transform 0.3s;}
	.header-menu-item i.active-submenu-i::before {transform: rotate(180deg);}
	.header-menu-item i.open-submenu{opacity: 1;cursor: pointer;}
	.header-1 .submenu ul{padding: 10px;padding-bottom: 0;}
	.header-1 .top .logo{height: 40px;}
	.header-1 .nav-holder .block{padding-left: 1rem;padding-right: 1rem;}
	.header-1 .top .wrapper-right > .btn-default{display: none;}
	.header-1 .top .wrapper-left a:last-child{display: none;}
	.header-1 .nav-holder-actions{display: block;}

	.basic-page-front .header-1.hptransparent .wrapper-center .white{display: none;}
	.basic-page-front .header-1.hptransparent .wrapper-center .colored{display: block;}
	.basic-page-front .header-1.hptransparent:not(.sticky) .top .wrapper-left a{color: var(--dark);}
	.basic-page-front .header-1.hptransparent:not(.sticky) .top .wrapper-left a:hover{color: var(--primary);}
	.basic-page-front .header-1.hptransparent:not(.sticky) .header-menu-item > a{color: var(--dark);}
	.basic-page-front .header-1.hptransparent:not(.sticky) .header-menu-item > span{color: var(--dark);}
	.basic-page-front .header-1.hptransparent:not(.sticky) .header-menu-item > a:hover{color: var(--primary);}
	.basic-page-front .header-1.hptransparent:not(.sticky) .header-menu-item i{color: var(--dark);}
	.basic-page-front .header-1.hptransparent:not(.sticky) .top .login a{color: var(--dark);}
	.basic-page-front .header-1.hptransparent:not(.sticky) .top .login a:hover{color: var(--primary);}
	.basic-page-front .header-1.hptransparent:not(.sticky) .top .basket-icon{color: var(--dark);}
	.basic-page-front .header-1.hptransparent:not(.sticky) .top .basket-icon:hover{color: var(--primary);}

	.header-1.transparent .wrapper-center .white{display: none;}
	.header-1.transparent .wrapper-center .colored{display: block;}
	.header-1.transparent:not(.sticky) .top .wrapper-left a{color: var(--dark);}
	.header-1.transparent:not(.sticky) .top .wrapper-left a:hover{color: var(--primary);}
	.header-1.transparent:not(.sticky) .header-menu-item > a{color: var(--dark);}
	.header-1.transparent:not(.sticky) .header-menu-item > a:hover{color: var(--primary);}
	.header-1.transparent:not(.sticky) .header-menu-item i{color: var(--dark);}
	.header-1.transparent:not(.sticky) .top .login a{color: var(--dark);}
	.header-1.transparent:not(.sticky) .top .login a:hover{color: var(--primary);}
	.header-1.transparent:not(.sticky) .top .basket-icon{color: var(--dark);}
	.header-1.transparent:not(.sticky) .top .basket-icon:hover{color: var(--primary);}
}
@media (max-width: 575.98px){
	.header-1 .header-menu-item{padding: 4px 0;}
}
@media (max-width: 450px){
	.header-1 .top .logo{height: 34px;}
	.header-1 .top .wrapper-left{display: none;}
	.header-1 .top .logo{position: static;margin:0;}
}
/* end */







/* header-2 */
.header-2-pt{height: 56px;}

.header-2{
	background: #ffffff;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 1300;
	box-shadow: 0 0 15px -5px rgba(0,0,0,0.1);
}
.header-2 .block{
	display: flex;
	align-items: center;
	height: 56px;
	padding: 0 var(--size-sm);
}
.header-2.button-active .block{
	padding: 0 0 0 var(--size-sm);
}
.header-2 .logo-wrapper{
	margin-right: auto;
}
.header-2 .logo-wrapper .logo{
	height: 32px;
}
.header-2 .block > ul{
	display: flex;
}
.header-2 ul{
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.header-2 nav > ul{
	display: flex;
}
.header-2 .nav-item{
	position: relative;
	padding: 0 10px;
	line-height: 1;
	text-transform: uppercase;
}
/*.header-2 .nav-item::after{
	content: "";
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 0;
	background-color: var(--primary);
	height: 2px;
	width: 0;
	transition: width 0.3s;
}
.header-2 .nav-item:hover::after{
	width: calc(100% - 20px);
}*/
.header-2 .nav-item > a{
	height: 56px;
	line-height: 56px;
	transition: color 0.3s;
	font-weight: 600;
}
.header-2 .nav-item > a:hover{
	color: var(--primary);
}
.header-2 .nav-item > a.active{
	color: var(--primary);
}
.header-2 .nav-item .open-submenu{display: none;}
.header-2 .nav-item > a i{
	font-size: 16px;
	color: var(--dark);
	opacity: 0.3;
	margin-left: 4px;
}
.header-2 .submenu{
    position: absolute;
    left: 10px;
    top: 100%;
    width: 240px;
    background-color: #fff;
    z-index: 2;
    box-shadow: 0 0 15px -5px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    -ms-transform: translateY(5px);
    transform: translateY(5px);
    transition: all 0.1s;
}
.header-2 .submenu-wrapper:hover .submenu{
	opacity: 1;
    visibility: visible;
    -ms-transform: translateY(0);
    transform: translateY(0);
    transition: all .2s;
}
.header-2 .submenu ul{
    margin: 0;
    padding: 10px;
    list-style-type: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.header-2 .submenu ul a{
	font-size: var(--f-size-sm);
	display: block;
    margin: 0;
    padding: 10px 6px;
    transition: color 0.3s;
    font-weight: 600;
}
.header-2 .submenu ul a:hover{
	color: var(--primary);
}
.header-2 .submenu ul a.active{
	color: var(--primary);
}
.header-2 .submenu-item{
	width: 100%;
}

.header-2 .right{
	display: flex;
	align-items: center;
	margin-left: var(--size-sm);
}
.header-2 .right > * {
    margin-left: var(--size-xs);
}
.header-2 .login a{
	padding: 5px;
	transition: color 0.3s;
}
.header-2 .login a:hover{
	color: var(--primary);
}
.header-2 .basket-icon{
    padding: 5px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}
.header-2 .basket-icon:hover{
	color: var(--primary);
}
.header-2 .right i{
    font-size: 18px;
    vertical-align: middle;
}
.header-2 .right > .btn-default{
	margin-left: var(--size-sm);
	height: 56px;
	display: flex;
	align-items: center;
}

.header-2 .right .contact-link{
	white-space: nowrap;
	transition: color 0.3s;
	display: flex;
	align-items: center;
}
.header-2 .right .contact-link i{
	margin-right: var(--size-xs);
}
.header-2 .right .contact-link:hover{
	color: var(--primary);
}
.header-2 .right .socials{
	display: inline-flex;
}
.header-2 .right .socials a{
    display: inline-block;
    margin-right: var(--size-xs);
    transition: color 0.3s;
}
.header-2 .right .socials a:hover{
    color: var(--primary);
}
.header-2 .right .socials a:last-child{
    margin-right: 0px;
}
.header-2 .right .socials i{
	font-size: 20px;
}

.content-overlay {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 780;
    display: none;
    cursor: pointer;
}

.header-2 .nav-holder .xs-contacts{
	display: none;
	flex-direction: column;
	margin-top: var(--size-sm);
}
.header-2 .nav-holder .xs-contacts a{
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-2 .nav-holder .xs-contacts a > *{
	margin-right: 3px;
}
.header-2 .nav-holder .xs-contacts a i{
	font-size: 20px;
}
.header-2 .nav-holder .xs-contacts .btn-default{
	margin-bottom: var(--size-xs);
}
.header-2 .nav-holder .xs-contacts > *{
	margin-bottom: 5px;
}
.header-2 .nav-holder .xs-contacts > *:last-child{
	margin-bottom: 0px;
}

@media (max-width: 1399.98px){
	.header-2 .nav-item{padding: 0 8px;}
}
@media (max-width: 1299.98px){
	.header-2.button-active .block{padding: 0 var(--size-sm);}
	.header-2 .right .btn-default{display: none;}
	.header-2 .right{margin-left: var(--size-xs);}
}
@media (max-width: 1199.98px){
	
}
@media (max-width: 1100px){

}
@media (max-width: 991.98px){
	.header-2 .block{padding: 0 1rem;height: 56px;}
	.header-2 nav {
	    overflow: hidden;
	    position: fixed;
	    top: 56px;
	    left: 0;
	    right: 0;
	    background-color: #fff;
	    height: unset;
	    z-index: 2000;
	    display: none;
	    overflow: auto;
		padding: 1rem;
		max-height: calc(100vh - 56px);
		overflow: auto;
	}
    .header-2 nav > ul{flex-direction: column;}
    .header-2 .submenu-wrapper:hover .submenu{transition: none;transform: none;}
    .header-2 .submenu-wrapper .submenu{
    	position: static;
	    left: 0;
	    top: 0%;
	    width: 100%;
	    box-shadow: unset;
	    opacity: 1;
	    visibility: visible;
	    -ms-transform: unset;
	    transform: unset;
	    transition: unset;
	    display: none;
	}
	.header-2 .nav-item i.open-submenu{
		font-size: 16px;
	    position: absolute;
	    top: 0;
	    right: 0;
	    width: 30px;
	    height: 40px;
	    margin-top: 0;
	    line-height: 40px;
	    display: block;
	    left: auto;
	    pointer-events: unset;
	    opacity: 1;
    	cursor: pointer;
    	text-align: center;
    	display: block;
	}
	.header-2 i.open-submenu::before {
	    display: block;
	    transition: transform 0.3s;
	}
	.header-2 i.open-submenu.active-submenu-i::before {
	    transform: rotate(180deg);
	}
	.header-2 .nav-item > a{height: auto;line-height: 1;font-size: var(--f-size-main-big);}
	.header-2 .submenu ul a{font-size: var(--f-size-main);}
	.header-2 .nav-item > a i{display: none;}
	.header-2 .nav-item{padding: var(--size-xs) 0;}
	.header-2 .submenu ul{padding-bottom: 0;}

	.header-2 .right .contact-link.email{display: none;}
}
@media (max-width: 575.98px){
	.header-2 .nav-holder .xs-contacts{display: flex;}
	.header-2 .right .contact-link{display: none;}
}
@media (max-width: 450px){

}
/* end */









/* footer-1 */
.footer-1 a{color: var(--footer-text-color);}
.footer-1 a:hover{text-decoration: underline;}
.footer-1 .main{
	background-color: var(--footer);
	color: var(--footer-text-color);
	padding: var(--size-lg) 0;
}
.footer-1 .main .main-bottom{
	margin-top: var(--size-md);
}
.footer-1 .main .main-bottom a{
	font-size: var(--f-size-sm);
	margin-right: var(--size-xs);
}

.footer-1 .logo{
	display: inline-block;
	margin-bottom: var(--size-sm);
}
.footer-1 .logo img{
	height: 50px;
}

.footer-1 .title{
	font-family: var(--font_secondary);
}

.footer-1 .contact a{
	transition: color 0.3s;
}
.footer-1 .contact a i{
	margin-right: 5px;
	font-size: 20px;
}
.footer-1 .contact a:hover{
	color: var(--primary);
	text-decoration: none;
}

.footer-1 .contact .item a{
	display: flex;
	align-items: center;
}

.footer-1 .address{
	margin-top: var(--size-xs);
}
.footer-1 .socials{
	margin-top: var(--size-xs);
}
.footer-1 .socials i{
	font-size: 20px;
}


@media (max-width: 575.98px){
	.footer-1 .main{padding: var(--block-mb) 0;}
}
/* end */


/* footer-bottom-1 */
.footer-bottom-1 .bottom{
	background-color: var(--footer-darker);
	color: var(--footer-text-color);
	padding: var(--size-sm) 0;
}
.footer-bottom-1 .bottom a{
	color: var(--primary);
}
.footer-bottom-1 .bottom *{
	font-size: var(--f-size-sm);
}
.footer-bottom-1 .bottom .pay{
	display: flex;
    align-items: center;
    justify-content: right;
}
.footer-bottom-1 .bottom .pay span{
	margin-right: var(--size-sm);
}
.footer-bottom-1 .bottom .pay img{
	width: 50px;
    margin:2px;
}

@media (max-width: 767.98px){
	.footer-bottom-1 .bottom .pay{justify-content: left;}
}
/* end */


/* footer-2 */
.footer-2{
	--bg: var(--footer);
	--text: var(--footer-text-color);
	--text-light: var(--footer-lighter);
	--line: var(--footer-text-color);
	--primary-replace: var(--primary);
}
.footer-2.color-white{
	--bg: #ffffff;
	--text: var(--dark);
	--text-light: #757575;
	--line: var(--text-light);
	--primary-replace: var(--primary);
}

.footer-2 .main{
	background-color: var(--bg);
    color: var(--text);
    padding: var(--size-lg) 0;
    position: relative;
}

.footer-2.color-white .main::before{
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	height: 1px;
	background-color: var(--line);
	opacity: 0;
}

.footer-2 a{
	transition: color 0.3s;
    color: var(--text);
}
.footer-2 .logo{
	display: inline-block;
}
.footer-2 .logo img{
    height: 50px;
}

.footer-2 .address{
	color: var(--text-light);
}

.footer-2 .col-menus > .row{
	justify-content: right;
}
.footer-2 .footer-menu > div{
	margin-bottom: 6px;
}
.footer-2 .footer-menu a{
	color: var(--text-light);
}
.footer-2 .footer-menu a:hover{
	color: var(--primary-replace);
}
.footer-2 .footer-menu > div:last-child{
	margin-bottom: 0;
}

.footer-2 .contacts{
	font-size: var(--f-size-h5);
}
.footer-2 .contacts a:hover{
	color: var(--primary-replace);
}

.footer-2 .footer-social a{
	display: inline-block;
	margin-right: 5px;
}
.footer-2 .footer-social a:hover{
	color: var(--primary-replace);
}
.footer-2 .footer-social i{
	font-size: 20px;
}

.footer-2 .bottom{
	background-color: var(--bg);
	color: var(--text);
	padding: var(--size-lg) 0;
	position: relative;
}
.footer-2 .bottom::before{
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	height: 1px;
	background-color: var(--line);
	opacity: 0.1;
}
.footer-2 .bottom .copyrights a{
	color: var(--primary-replace);
}
.footer-2 .bottom .copyrights a:hover{
	text-decoration: underline;
}
.footer-2 .bottom *{
	font-size: var(--f-size-sm);
}
.footer-2 .bottom .menu{
	display: flex;
	align-items: center;
	justify-content: right;
	flex-wrap: wrap;
}
.footer-2 .bottom .menu a{
	white-space: nowrap;
	color: var(--text-light);
	margin-left: var(--size-xs);
	margin-right: var(--size-xs);
}
.footer-2 .bottom .menu a:first-child{
	margin-left: 0;
}
.footer-2 .bottom .menu a:last-child{
	margin-right: 0;
}
.footer-2 .bottom .menu a:hover{
	color: var(--primary-replace);
}

.footer-2 .menu-title{
	font-size: var(--f-size-h6);
	margin-bottom: var(--size-md);
	font-weight: 500;
}

@media (max-width: 991.98px){
	.footer-2 .col-menus > .row{justify-content:initial;}
	.footer-2 .bottom .menu{justify-content: center;}
	.footer-2 .bottom .copyrights{text-align: center;}
	.footer-2 .bottom .copyrights{order:2;}
	.footer-2 .bottom .menu{order:1;}
}

@media (max-width: 767.98px){
	.footer-2 .bottom{padding: var(--size-md) 0;}
}

@media (max-width: 575.98px){
	.footer-2 .main{padding: var(--size-lg) 0 var(--size-md) 0;}
	.footer-2 .menu-title{margin-bottom: var(--size-xs);}
	.footer-2 .footer-menu > div{margin-bottom: 4px;}
	.footer-2 .contacts{font-size: var(--f-size-h4);}
	.footer-2 .logo img{height: 40px;}
}
/* end */



















/* booking panel */
.book-panel{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #ffffff;
	z-index: 999;
	height: 70px;
	box-shadow: 0px -10px 15px #0000000F;
}
.book-panel .panel-title{
	font-size: 18.5px;
	text-transform: uppercase;
	line-height: 1;
	font-weight: 700;
	margin-bottom: 5px;
}
.book-panel .panel-subtitle{
	font-size: 14px;
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: 0.2px;
}
.book-panel .row{
	height: 70px;
}
.book-panel .col-title{
	display: flex;
	align-items: center;
	border-right:1px solid var(--gray-100);
	padding-right: 20px;
	padding-left: 0;
}
.book-panel .item{
	display: flex;
	align-items: center;
	width: 50%;
}
.book-panel .item .day{
	font-weight: 600;
	line-height: 1;
}
.book-panel .item .label{
	margin-right: 5px;
	line-height: 1;
}
.book-panel .col-dates{
	padding-right: 20px;
	padding-left: 20px;
	display: flex;
	cursor: pointer;
}
.book-panel .col-dates .item:first-child{
	border-right:1px solid var(--gray-100);
	padding-right: 20px;
}
.book-panel .col-dates .item:last-child{
	padding-left: 20px;
}
.book-panel .col-cta{
	display: flex;
	align-items: center;
	padding:0;
}
.book-panel .book-panel-submit{
	margin-right: 5px;
}
.book-panel .item div{line-height: 1;}
.book-panel-submit-ok{display: none;}
.book-panel .mob-title{
	display: none;
	position: absolute;
	left: 0;
	background-color: var(--dark);
	color: #fff;
	text-transform: uppercase;
	padding:0px 5px;
	line-height: 23px;
	height: 23px;
	font-size: 10px;
	letter-spacing: 2px;
	font-weight: 700;
	top:-23px;
	right: 0;
	text-align: center;
}

:root {
	--litepickerDayWidth: 53px;
	--litepickerMonthWidth: calc(var(--litepickerDayWidth) * 7);

	--litepicker-day-color: var(--dark);
	--litepicker-is-in-range-color: var(--primary-lighter);
	--litepicker-is-start-color-bg: var(--primary);
	--litepicker-is-end-color-bg: var(--primary);
	--litepicker-day-color-hover: var(--primary-lighter);

	--litepicker-button-next-month-color: var(--gray-300);
	--litepicker-button-next-month-color-hover: var(--primary);
}
#dphold{
	padding: 0;
}
#dphold .litepicker{
	width: 100%;
	margin: 0 auto;
	border-radius: 0!important;
	line-height: 43px;
}
#dphold .litepicker .container__main {
	border-radius: 0;
}
#dphold .litepicker .container__months {
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	background-color: var(--litepickerBgColor);
	border-radius: 5px;
	-webkit-box-shadow: 0 0 5px #ddd;
	box-shadow: 0 0 5px #ddd;
	width: calc(var(--litepickerMonthWidth));
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
#dphold .litepicker .container__months {
	margin: 0 auto;
	box-shadow: 0 0;
}
#dphold .litepicker .container__months.columns-2 {
	width: calc((var(--litepickerMonthWidth) * 2) + 20px);
	border-radius: 0!important;
}

#dphold .litepicker .container__months .month-item {
	padding: 0 5px 5px 5px;
	width: var(--litepickerMonthWidth);
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
#dphold .litepicker .container__days>div, #dphold .litepicker .container__days>a {
	padding: 5px 0;
	width: var(--litepickerDayWidth);
}
#dphold .litepicker .container__months .month-item-header div>.month-item-name {
	margin-right: 5px;
	font-size: 24px;
}
#dphold .litepicker .container__months .month-item-header div>.month-item-year {
	padding: 0;
	font-size: 22px;
	color: #969090;
}
#dphold .litepicker .container__months .month-item-header .button-previous-month, #dphold .litepicker .container__months .month-item-header .button-next-month {
	padding: 3px 20px 3px 23px;
	background-color: var(--gray-100);
	line-height: 43px;
	height: 53px;
	color: #fff;
	display: flex;
	align-items: center;
}
.litepicker .container__days .day-item.is-locked {
	background-color: #f7f7f7;
}
#datepicker-modal .modal-dialog{
	max-width: calc(var(--litepickerMonthWidth) * 2 + 20px);
}
#dphold .litepicker .container__days .day-item.is-start-date, #dphold .litepicker .container__days .day-item.is-end-date{
	position: relative;
}
#dphold .litepicker .container__days .day-item.is-start-date:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 0;
	border-left: 10px solid #FFF;
	border-top: 10px solid #FFF;
	border-right: 10px solid transparent;
	border-bottom: 10px solid transparent;
}
#dphold .litepicker .container__days .day-item.is-end-date:before {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	display: block;
	z-index: 0;
	border-right: 10px solid #FFF;
	border-bottom: 10px solid #FFF;
	border-top: 10px solid transparent;
	border-left: 10px solid transparent;
}
#dphold .litepicker .container__days .day-item.is-start-date{
	background-color: var(--litepicker-is-start-color-bg);
}
#dphold .litepicker .container__days .day-item{
	border-radius: var(--radius-inside)!important;
}
#dphold .litepicker .container__tooltip{
	padding: 8px;
	line-height: 1;
	margin-top: -4px;
	border-radius: var(--radius-outside);
	background-color: var(--primary);
	color: #fff;
}
#dphold .litepicker .container__tooltip:before{
	border-top: 5px solid var(--primary);
}
#dphold .litepicker .container__tooltip:after{
	border-top: 4px solid var(--primary);
}
#dphold .litepicker .day-item.is-in-range:hover{
	box-shadow: inset 0 0 0 0px var(--litepicker-day-color-hover);
	color: var(--litepicker-day-color);
}
#dphold .litepicker .day-item.is-start-date:hover{
	box-shadow: inset 0 0 0 0px var(--litepicker-day-color-hover);
}
#dphold .litepicker .day-item.is-end-date:hover{
	box-shadow: inset 0 0 0 0px var(--litepicker-day-color-hover);
}
#dphold .litepicker .container__months .month-item-header .button-next-month, #dphold .litepicker .container__months .month-item-header .button-previous-month{
	cursor: pointer;
	border-radius: var(--radius-outside);
}
#dphold .litepicker .container__months .month-item-header .button-next-month svg,#dphold .litepicker .container__months .month-item-header .button-previous-month svg{
	transition: fill 0.3s;
}

@media (max-width: 1299.98px){
	
}
@media (max-width: 1199.98px){
	.book-panel .btn-default{padding:var(--size-sm) var(--size-md);}
	.book-panel .item{flex-wrap: wrap;flex-direction: column;justify-content: center;}
	.book-panel .item .label{width: 100%;margin-bottom: 3px;margin-right: 0;}
	.book-panel .item div{width: 100%;}
}
@media (max-width: 991.98px){
	.book-panel {height: 60px;}
	.book-panel .gift{display: none;}
	.book-panel .row{height: 60px;}
	.book-panel .item .label{font-size: var(--f-size-xs);}
	.book-panel .panel-title{font-size: 17px;}
	.book-panel .panel-subtitle{font-size:var(--f-size-xs);letter-spacing: 0;}

	#dphold .litepicker{line-height: 26px;}
	:root {--litepickerDayWidth: 36px;}
	#dphold .litepicker .container__days .day-item.is-end-date:before{border-width: 5px;}
	#dphold .litepicker .container__days .day-item.is-start-date:before{border-width: 5px;}
	#dphold .litepicker .container__months .month-item-header div>.month-item-name{font-size: 18px;}
	#dphold .litepicker .container__months .month-item-header div>.month-item-year{font-size: 18px;}
}
@media (max-width: 767.98px){
	.book-panel .col-title{padding-right: 10px;}
	.book-panel .col-dates{padding-left: 10px;padding-right: 10px;}
	.book-panel .col-dates .item:first-child{padding-right: 10px;}
	.book-panel .col-dates .item:last-child{padding-left: 10px;}
	.book-panel button.button-primary{margin-right: 0;}
	.book-panel-submit{display: none;}
	.book-panel .book-panel-submit-ok{display: block;}

	#dphold .litepicker .container__months .month-item-header .button-next-month, #dphold .litepicker .container__months .month-item-header .button-previous-month{padding: 3px 16px 3px 16px;height: 42px;}
}
@media (max-width: 575.98px){
	.book-panel{height: 50px;}
	.book-panel .row{height: 50px;}
	.book-panel .panel-title{font-size: 15px;}
	.book-panel .panel-subtitle{font-size:10.5px;}
	.book-panel .col-title{display: none;}
	.book-panel .mob-title{display: block;}
	.book-panel .col-dates{padding-left: 0;}
	.book-panel .book-panel-submit-ok{padding:10px;}
	.book-panel .item .label{margin-right: 0;}

	#datepicker-modal .modal-dialog{max-width: calc(var(--litepickerMonthWidth) + 20px);margin: auto;}
	#datepicker-modal .modal-content{padding: 10px;}
	#dphold .litepicker .container__months.columns-2{width: calc(var(--litepickerMonthWidth));}
	#dphold .litepicker .container__months .month-item{padding:0;}
}
/* end */






















/* intro-fs-image */
.intro-fs-image {
	height: 100vh;
	background-size:cover;
	position: relative;
	overflow:hidden;
}
.intro-fs-image::before{
	content:"";
	background: rgba(0,0,0,0.3);
	background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 80%, rgba(0,0,0,0.5) 100%);
	position:absolute;
	top:0;right:0;bottom:0;left:0;
	z-index:2;
}
.intro-fs-image .block{
	display:flex;
	align-items:center;
	height:100%;
	text-align:center;
	position:relative;
	z-index:10;
}
.intro-fs-image .block .align{
	width:100%;
	margin-bottom:70px;
}
.intro-fs-image h1{
	text-align:center;
	color:#fff;
	max-width:1050px;
	margin: 0 auto;
	font-size:98px;
	line-height:1.2;
	font-family: var(--font_secondary);
}
.intro-fs-image .block .text{
	color:#fff;
	max-width:400px;
	margin: 20px auto 0 auto;
	font-size:18px;
}

.intro-fs-image.doubleimg h1{
	text-align: left;
	margin-left: 0;
	max-width: 800px;
	line-height: 1.2;
}
.intro-fs-image.doubleimg .block .text{
	margin-left: 0;
	text-align: left;
}
.intro-fs-image.doubleimg::before{
	z-index: 1;
	background: rgba(0,0,0,.5);
}

.intro-fs-image .buttons .btn-default{
	margin: 2px;
}
.intro-fs-image .buttons .blurred{
	backdrop-filter: blur(10px);
}
.intro-fs-image.doubleimg .buttons{
	text-align: left;
}

.intro-fs-image .img-bg{
	position:absolute;
	width:100%;
	height:100%;
	object-fit:cover;
	transform-origin: center;
	transform: scale(1.1);
	animation: zoomIn 3s ease;
	z-index: 0;
}
.intro-fs-image .img-front{
	position: absolute;
	left: 40%;
	right: 0;
	height: 60vh;
	width: 60%;
	object-fit: cover;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: 3;
}

body:not(.basic-page-front) .intro-fs-image{
	height: calc(100vh - 140px);
}

@keyframes zoomIn{
	0% {
		transform: scale(1.01);
	}
	100% {
		transform: scale(1.1);
	}
}
/* end */



/* grid-items-1 */
.grid-items-1 .item{
	height: 100%;
	display: block;
}
.grid-items-1 .img-wrapper{
	margin-bottom: var(--size-sm);
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-inside);
}
.grid-items-1 .img-wrapper img{
	width: 100%;
	transition: transform 0.5s ease;
	transform: scale(1.001);
}
.grid-items-1 .item:hover img{
	transform: scale(1.05);
}
.grid-items-1 .img-wrapper .badge{
	position: absolute;
	left: var(--size-xs);
	top: var(--size-xs);
}
.grid-items-1 .badge-wrapper{
	margin-bottom: var(--size-xs);
}
.grid-items-1 .title{
	font-family: var(--font_secondary);
}

/* style 1 */
.grid-items-1 .item.style-1 .item-content{
	position: relative;
	min-height: 400px;
}
.grid-items-1 .item.style-1 .img-wrapper{
	position: absolute;
	margin: 0;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
.grid-items-1 .item.style-1 .img-wrapper::after{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 20%;
	bottom: 0;
	background: linear-gradient(0deg, var(--primary) 0%, transparent 100%);
	transition: top 0.6s;
}
.grid-items-1 .item.style-1:hover .img-wrapper::after{
	top: 0;
}
.grid-items-1 .item.style-1 .img-wrapper img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.grid-items-1 .item.style-1 .front-desc{
	position: absolute;
	left: var(--size-md);
	right: var(--size-md);
	bottom: var(--size-md);
	color: #fff;
	transition: all .65s cubic-bezier(.05,.2,.1,1);
}

.grid-items-1 .item.style-1 .hover-desc{
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all .2s;
    display: flex;
    align-items: center;
    padding-left: var(--size-sm);
    padding-right: var(--size-sm);
    z-index: 10;
    transform: translateY(20px);
}

.grid-items-1 .item.style-1 .button{
	position: absolute;
	left: var(--size-md);
	right: var(--size-md);
	bottom: var(--size-md);
	transform: translateY(15px);
    opacity: 0;
    transition: opacity .18s cubic-bezier(.05,.2,.1,1),transform .18s cubic-bezier(.05,.2,.1,1);
}

.grid-items-1 .item.style-1 .button > *{margin-top: var(--size-xs);}
.grid-items-1 .item.style-1:hover .button{
	opacity: 1;
    transform: translateY(0%);
	transition: opacity .65s cubic-bezier(.05,.2,.1,1) 0.15s,transform .65s cubic-bezier(.05,.2,.1,1) 0.15s;
}
.grid-items-1 .item.style-1:hover .btn-default{
	transition: all 0.65s;
	background-color: #fff;
	color: var(--dark);
}
.grid-items-1 .item.style-1 .arrow{
	display: none;
	align-items: center;
	line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: var(--f-size-xs);
}
.grid-items-1 .item.style-1 .arrow i{
	font-size: 16px;
	margin-left: calc(var(--size-xs)*.5);
}
/* end */



/* text-main-1 */
.text-main-1.text-center .mx{
	margin:0 auto;
}
.text-main-1.special:not(.text-center) .content-wrapper{
	padding-left: 150px;
    position: relative;
}
.text-main-1.special:not(.text-center) .content-wrapper::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    border-top: 1px solid var(--primary);
    width: 120px;
}
.text-main-1 .content-wrapper .longtext{
	margin-bottom: var(--size-sm);
}
.text-main-1 .title{
	margin-bottom: var(--size-sm);
}
.text-main-1 .content-wrapper .mx > *:last-child{
	margin-bottom: 0;
}
/* end */


/* onscrscroll-image-upsize  */
.onscrscroll-image-upsize{
	overflow: hidden;
	padding: 0;
}
.img-block-upsize{
	margin: 0 auto;
	width: 88%;
	height: 600px;
	transition: all 0.1s ease;
	background-position: center;
}
.img-block-upsize img{
	width: 100%;
	height: 100%;
	object-fit: cover;

}
/* end */


/* cols-text-advantages */
.cols-text-advantages .items .item img{
	margin-bottom: var(--size-sm);
	height: 60px;
}
.cols-text-advantages .blocktitle{
	margin-bottom: var(--size-md);
}
.cols-text-advantages .longtext{
	margin-bottom: var(--size-md);
}
.cols-text-advantages .content-wrapper{
	max-width: 500px;
	padding-right: var(--size-lg);
}
/* end */


/* testimonials-1 */
.testimonials-1 .headline-wrapper{
	position: relative;
}
.testimonials-1 .headline-wrapper::before{
	content: "";
	position: absolute;
	top: -40px;
	left: 0;
	right: 0;
	margin: auto;
	background-image: url('../img/quotes.svg');
	background-size: contain;
	background-repeat: repeat;
	width: 160px;
	height: 160px;
	opacity: 0.05;
}
.testimonials-1 .item{
	margin:0 20px;
	text-align: center;
	display: flex!important;
	align-items: center;
	flex-direction: column;
	height: 100%;
	min-height: 180px;
}
.testimonials-1 .item .rating{
	display: flex;
}
.testimonials-1 .item .show-more{
	cursor: pointer;
	font-weight: 500;
}
.testimonials-1 .item .show-more:hover{
	text-decoration: underline;
}
.testimonials-1 .item .rating i{
	padding: 0 1px;
	font-size: 14px;
}
.testimonials-1 .item .rating .fas{
	color: var(--primary);
}
.testimonials-1 .title{
	font-weight: 500;
	font-family: var(--font_secondary);
}
.testimonials-1 .item > *{
	margin-bottom: var(--size-sm);
}
.testimonials-1 .item > *:last-child{
	margin-bottom: 0;
}
.testimonials-1 .slick-slide{
	opacity: 0.3;
	transform: scale(0.7);
	transform-origin: center;
	transition: all 0.4s;
}
.testimonials-1 .slick-slide.slick-center{
	opacity: 1;
	transform: scale(1);
}

.testimonials-1 .slider-arrow.prev{
	left: 30%;
}
.testimonials-1 .slider-arrow.next{
	right: 30%;
}


.testimonials-1 .slick-track{
	opacity: 0;
}
.testimonials-1 .testimonials.slick-initialized .slick-track{
	opacity: 1;
}

.testimonials-1 .slick-dots{
	margin-top: var(--size-sm);
	display: none!important;
	width: 100%;
}

.testimonials-1 .item .row{
	align-items: center;
}
.testimonials-1 .item .col-logo img{
	height: 30px;
}


#whole-review .modal-body{
	padding: var(--size-md);
}
#whole-review .title{
	font-weight: 500;
	font-family: var(--font_secondary);
}

.testimonials-1 .slick-dotted.slick-slider{
	margin-bottom: 0;
}

#whole-review .uppertext{
	margin-top: var(--size-xs);
}
/* end */


/* items-on-img */
.items-on-img .cta-text-block{
	padding: 0 0;
	background-color: transparent;
}
.items-on-img .custom-row{
	display:flex;
	width:66.66%;
	box-shadow: 0 0 20px -10px rgba(0,0,0,0.2);
	flex-wrap:wrap;
}
.items-on-img .custom-row .item{
	width:50%;
	border-right: 1px solid var(--gray-100);
	border-bottom: 1px solid var(--gray-100);
	text-align:left;
	padding: var(--size-lg);
	background-color: #fff;
}
.items-on-img .custom-row .item > *{
	margin-bottom: var(--size-sm);
}
.items-on-img .custom-row .item > *:last-child{
	margin-bottom: 0;
}

.items-on-img:not(.cols-3) .custom-row .item:nth-child(2n){
	border-right: 0;
}
.items-on-img:not(.cols-3) .custom-row .item:nth-last-child(-n+2){
	border-bottom: 0;
}
.items-on-img:not(.cols-3) .custom-row .item:last-child{
	border-right: 0;
}

.items-on-img.cols-3 .custom-row .item:nth-child(3n){
	border-right: 0;
}
.items-on-img.cols-3 .custom-row .item:nth-last-child(-n+3){
	border-bottom: 0;
}
.items-on-img.cols-3 .custom-row .item:last-child{
	border-right: 0;
}

.items-on-img .content-wrapper{
	margin: 0;
	padding: 0 var(--block-padding);
	width: 100%;
	max-width: unset;
	position: relative;
	z-index: 2;
	margin-top: -20%;
}
.items-on-img .image-block{
    height: 600px;
}
.items-on-img .image-block img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.items-on-img:not(.img-hidden) .headline-wrapper{
	color: #fff;
}

.items-on-img.img-hidden .image-block{
	display: none;
}
.items-on-img.img-hidden .content-wrapper{
	padding: 0;
	margin-top: 0;
}

.items-on-img.cols-3 .custom-row{
	width: 100%;
}
.items-on-img.cols-3 .custom-row .item{
	width: 33.33%;
}

/* end */


/* imggrid text */
.imggrid-text .order-text{
	display: flex;
	align-items: center;
}
.imggrid-text.text-to-right .order-image{
	order:1;
}
.imggrid-text.text-to-right .order-text{
	order:2;
}
.imggrid-text .align{padding-right: var(--size-lg);}
.imggrid-text.text-to-right .align{padding-left: var(--size-lg);padding-right: initial;}

.imggrid-text .align > *{
	margin-bottom: var(--size-sm);
}
.imggrid-text .align > *:last-child{
	margin-bottom: 0;
}
.imggrid-text .img-grid-row{
	display: flex;
	margin: calc(-1 * var(--size-xs));
	height: 600px;
}
.imggrid-text .img-grid-row .img-grid-col{
	width:50%;
	padding:0 var(--size-xs);
	display:flex;
	flex-direction: column;
	transform: translateY(var(--distance));
    will-change: transform;
}
.imggrid-text .img-grid-row .img-grid-col > div{
	padding:var(--size-xs) 0;
}
.imggrid-text .img-grid-row .img-grid-col .img-md{
	height:65%;
}
.imggrid-text .img-grid-row .img-grid-col .img-sm{
	height:35%;
}
.imggrid-text .img-grid-row .img-grid-col img{
	width:100%;
	height:100%;
	object-fit:cover;
}
/* end */



/* roller-item */
.roller-item{
	background-color: #fff;
	transition: background-color 0.5s;
	border-radius: var(--radius-inside);
	border: 1px solid var(--gray-100);
	margin-bottom: var(--size-xs);
}
.roller-item:last-child{
	/*border-bottom: 0;*/
	margin-bottom: 0;
}
.roller-item .button{
	cursor: pointer;
	padding: var(--size-sm) calc(var(--size-sm) + 20px + var(--size-sm)) var(--size-sm) var(--size-sm);
	font-size: var(--f-size-h6);
	font-weight: 500;
	position: relative;
	transition: padding-bottom .5s cubic-bezier(.4,0,.2,1);
	user-select: none;
}
.roller-item .button .symbol{
	position: absolute;
	font-size: 20px;
	line-height: 1;
	font-weight: 600;
	transition: transform .5s cubic-bezier(.4,0,.2,1);
	text-align: center;
	width: 20px;
	height: 20px;
	top: 18px;
	right: var(--size-sm);
	margin: auto;
	color: var(--gray-300);
}
.roller-item .content-wrapper{
	display: grid;
	grid-template-rows: 0fr;
	transition-property: grid-template-rows;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .5s;
}
.roller-item .content-overflow{
	overflow: hidden;
}
.roller-item .content{
	padding: 0 var(--size-sm) var(--size-sm) var(--size-sm);
    transition: transform .5s cubic-bezier(.4,0,.2,1);
    transform: translateY(20px);
}

.roller-item.active{
	/*background-color: var(--light);*/
}
.roller-item.active .content-wrapper{
	grid-template-rows: 1fr;
}
.roller-item.active .content{
	transform: translateY(0px);
}
.roller-item.active .symbol{
	transform: rotate(45deg);
}
.roller-item.active .button{
	padding-bottom: var(--size-xs);
}
/* end */


/* map-google-1 */
.map-google-1 .wrapper{
	height: 500px;
}
/* end */


/* inline-socials */
.inline-socials a{
	padding: 5px;
	font-size: 28px;
	color: var(--primary);
	transition: color 0.3s;
	margin: 0px 3px 3px 3px;
	line-height: 1;
}
.inline-socials a:hover{
	color: var(--primary-darker);
}
/* end */



/* hero-section-1 */
.hero-section-1{
	background-color: var(--light);
	position: relative;
}
.hero-section-1 .block{
	padding-top: var(--size-lg);
	padding-bottom: var(--size-lg);
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
}
.hero-section-1 .img-wrapper{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
.hero-section-1 .img-wrapper::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: var(--dark);
	opacity: 0.5;
}
.hero-section-1.color-white .align .title{color: #fff;}
.hero-section-1.color-white .align .longtext{color: #fff;}

.hero-section-1.height-small .block{min-height: 350px;}
.hero-section-1.height-medium .block{min-height: 600px;}
.hero-section-1.height-large .block{min-height: 800px;}

.hero-section-1.color-white .crumbs{color: #fff;margin-bottom: var(--size-lg);}
.hero-section-1.color-white .crumbs a{color: #fff;}
.hero-section-1.color-white .crumbs a:hover{color: var(--primary);}
/* end */



/* hero-section-2 */
.hero-section-2{
	--color: var(--dark);
	--height: 600px;
	--color-badge: var(--primary);
	--color-badge-text: #fff;
}
.hero-section-2.scheme-primary{
	--color: var(--primary);
	--color-badge: var(--dark);
	--color-badge-text: #fff;
}
.hero-section-2.scheme-secondary{
	--color: var(--secondary);
	--color-badge: var(--primary);
	--color-badge-text: #fff;
}

.hero-section-2 .text-wrapper{
	background-color: var(--color);
}
.hero-section-2 .text-wrapper .block{
	padding-top: var(--size-xxl);
	padding-bottom: var(--block-mb);
}
.hero-section-2{
	color: #fff;
}

.hero-section-2 .uppertext{
	background-color: var(--color-badge);
	color: var(--color-badge-text);
}
.hero-section-2 h1{
	margin-bottom: 0;
	font-size: var(--f-size-h1-big);
}
.hero-section-2 .row{
	align-items: flex-end;
}
.hero-section-2 .img-wide-wrapper{
	background: linear-gradient(180deg, var(--color) 0%, var(--color) 50%, transparent 50%, transparent 100%);
}
.hero-section-2 .img-wrapper{
	background-color: var(--light);
	overflow: hidden;
	height: var(--height);
}
.hero-section-2 .item-wrapper{
	height: var(--height);
}

.hero-section-2 .slick-dotted.slick-slider{
	margin-bottom: 0;
}
.hero-section-2 .slick-dots{
	bottom: var(--size-md);
	left: 0;
	right: 0;
	justify-content: center;
	position: absolute;
}
.hero-section-2 .slick-dots li button:before{
	border: 2px solid #fff;
}
.hero-section-2 .slick-dots li.slick-active button:before {
    background-color: #fff;
}

.hero-section-2 .slick-slider .item-wrapper{
	cursor: grab;
}
.hero-section-2 .slick-slider .item-wrapper:active{
	cursor: grabbing;
}

.hero-section-2-slider{
	opacity: 0;
}
.hero-section-2-slider.slick-initialized{
	opacity: 1;
}
/* end  */


/* hero-section-3 */
.hero-section-3{
	position: relative;
}
.hero-section-3 .img-animation{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
}
.hero-section-3 .img-holder::after{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(90deg, var(--primary) 0%, var(--primary) 60%);
	opacity: .5;
	z-index: 1;
}
.hero-section-3 .img-animation::before{
	content: "";
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #fff;
	z-index: 2;
	animation: rollFromTop 2s var(--transition);
}
@keyframes rollFromTop{
	0% {
		top: 0;
	}
	100% {
		top: 100%;
	}
}
.hero-section-3 .img-animation img{
	transform: scale(1.01);
	animation: zoomOut 2s var(--transition);
}
.hero-section-3 .block{
	position: relative;
	z-index: 2;
	padding-top: var(--block-mb);
    padding-bottom: var(--block-mb);
   	display: flex;
    flex-direction: column;
    min-height: 600px;
}
.hero-section-3 h1{
	letter-spacing: -0.5px;
}
body .hero-section-3 h1 *{
	line-height: 1.3!important;
}
.hero-section-3 h1,.hero-section-3 .longtext{
	color: #fff;
}
.hero-section-3 .longtext{
	font-size: var(--f-size-h5);
}
.hero-section-3 h1 .whitespace{
	width: 14px;
}
.hero-section-3 .as-badge{
	border-radius: 50px;
}
.hero-section-3 .badge-wrapper{
	opacity: 0;
	transform: translateY(10px);
}
.hero-section-3 .badge-wrapper.active{
	opacity: 1;
	transform: translateY(0);
	animation: buttonUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-section-3 .badge-wrapper.visible{
	opacity: 1;
}

.hero-section-3 .btn-default{
	opacity: 0;
	transform: translateY(10px);
}
.hero-section-3 .btn-default.active{
	opacity: 1;
	transform: translateY(0);
	animation: buttonUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-section-3 .btn-default.visible{
	opacity: 1;
	transform: translateY(0);
}

@keyframes zoomOut{
	0% {
		transform: scale(1.3);
	}
	100% {
		transform: scale(1.01);
	}
}
@keyframes buttonUp{
	0% {
		opacity: 0;
		transform: translateY(10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}


.hero-section-3 .swiper-slide{
	position: relative;
	overflow: hidden;
}
.hero-section-3 .parallax-wrapper .swiper-inside{
	position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.hero-section-3 .parallax-wrapper .swiper-inside img{
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}
/* end */









/* promo text image */
.img-text-promo .promo-row{
	position: relative;
}
.img-text-promo .desc{
	position: absolute;
	top:0;
	right: 0;
	width: 50%;
	z-index: 10;
	bottom: 0;
	display: flex;
	align-items: center;
	transition: all .4s var(--transition);
}
.img-text-promo .desc .title{
	font-family: var(--font_secondary);
	font-size: 96px;
	line-height: 1;
	font-weight: 500;
}
.img-text-promo .desc .title.colored{
	color:var(--secondary);
	font-weight: 500;
}
.img-text-promo .desc .text{
	margin-top: 30px;
	padding-left: 250px;
	position: relative;
}


.img-text-promo a{
	color: var(--dark);
}
.img-text-promo a:hover .image-reveal{
	transform: scale(1.04);
}
.img-text-promo a:hover .desc{
	right: 10px;
}

.img-text-promo .image-reveal{
	transition: all .4s var(--transition);
}


.image-reveal{
	position: relative;
	overflow: hidden;
	width: 65%;
}
.image-reveal img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translate(-111%);
}

.img-text-promo.dark-bg{
	background-color: var(--primary);
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 80px;
	padding-bottom: 80px;
}
.img-text-promo.dark-bg .desc .title{
	color: #fff;
}
.img-text-promo.dark-bg .desc .text{
	color: #fff;
}
.img-text-promo.dark-bg .image-reveal img{
	border: 1px solid var(--primary);
}
.img-text-promo.dark-bg .image-reveal::before{
	background-color: transparent;
}
.img-text-promo.dark-bg .image-reveal::after{
	background-color: #fff;
}

.image-reveal.active img{
	transform: translate(0%);
	animation: img_in 1s cubic-bezier(.76,.09,.215,1), img_zoom 1s cubic-bezier(.76,.09,.215,1) 1s;
}
.image-reveal.active::before{
	transform: translate(0%);
}
.image-reveal.active::after{
	animation: in 1s cubic-bezier(.76,.09,.215,1) 0s, out 1s cubic-bezier(.76,.09,.215,1) 1s;
}
.image-reveal::before{
	content:"";
	width: 102%;
	height: 100%;
	background-color: #F4F2EF;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	transform: translate(-101%);
	z-index: -1;
	transition: all 1s cubic-bezier(.76,.09,.215,1);
}
.image-reveal::after{
	content:"";
	width: 110%;
	height: 100%;
	background-color: #F4F2EF;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	transform: translate(-101%);
	z-index: 1;
	transition: all 1s cubic-bezier(.76,.09,.215,1);
}
@keyframes in {
	0% {transform: translate(-100%);}
	100% {transform: translate(0%);}
}
@keyframes out {
	0% {transform: translate(0%);}
	100% {transform: translate(100%);}
}

@keyframes img_in {
	0% {transform: translate(-111%) scale(1.2);}
	100% {transform: translate(0%) scale(1.2);}
}
@keyframes img_zoom {
	0% {transform: scale(1.2);}
	100% {transform: scale(1);}
}
/* end  */




/* fluid-text-img */
.fluid-text-img{
	--bg: initial;
	--basic-text: var(--dark);
	--upper-text: var(--primary);
	--button: var(--primary);
	--button-text: #fff;
	--button-hover: var(--primary-darker);
}
.fluid-text-img.color-scheme-primary{
	--bg: var(--primary);
	--basic-text: #fff;
	--upper-text: #fff;
	--button: #fff;
	--button-text: var(--dark);
	--button-hover: var(--light);
}

.fluid-text-img .content-wrapper .text-content{
	background-color: var(--bg);
	color: var(--basic-text);
}
.fluid-text-img .uppertext{
	color: var(--upper-text);
}
.fluid-text-img .btn-default{
	background-color: var(--button);
	border-color: var(--button);
	color: var(--button-text);
}
.fluid-text-img .btn-default:hover{
	background-color: var(--button-hover);
	border-color: var(--button-hover);
}

.fluid-text-img .content-wrapper{
	display: flex;
}
.fluid-text-img .content-wrapper .img{
	width: calc(50% + 150px);
	position: relative;
	min-height: 500px;
}
.fluid-text-img .content-wrapper .img img{
	position: absolute;
}
.fluid-text-img .content-wrapper .text-content{
	width: calc(50% - 150px);
	padding: var(--size-lg) var(--block-padding) var(--size-lg) var(--size-lg);
	display: flex;
	align-items: center;
}
.fluid-text-img .content-wrapper .text-content .align{
	width: 100%;
	max-width: calc(var(--block)/2 - var(--block-padding) - 150px - var(--block-padding));
}
.fluid-text-img.text-left .img{
	order: 2;
}
.fluid-text-img.text-left .text-content{
	order: 1;
	padding: var(--size-lg) var(--size-lg) var(--size-lg) var(--block-padding);
}
.fluid-text-img.text-left .content-wrapper .text-content .align{
	margin-left: auto;
}
/* end */



/* scale-on-scroll */
.img-overflow{
	overflow: hidden;
}
.scale-on-scroll{
	height: 600px;
	transition: transform 5s cubic-bezier(0, 0, 0.2, 1);
}
.scale-on-scroll img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* end */



/* text-img */
.text-img .col-img > div:not(.parallax-image){min-height: 200px;}
.text-img .col-img > .parallax-image{min-height: 400px;}
.text-img .col-text{display: flex;align-items: center;}
.text-img.to-right .col-text{order: 2;}
.text-img.to-right .col-img{order: 1;}
/* end */


/* video-block */
.video-block .block-wide{
	position: relative;
}
.video-block .yt-iframe-api{
    display: block;
    position: absolute;
    top: -15%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 56.25%;
}
.video-block .media-wrapper{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}
.video-block .media-wrapper::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
}
.video-block .block{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 760px;
	position: relative;
	z-index: 3;
}
.video-block .content-align{
	text-align: center;
	max-width: 600px;
	position: relative;
	z-index: 2;
}
.video-block .content-align img{
	margin-top: var(--size-sm);
}

.video-block.bottom-gradient .media-wrapper::before{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	background: linear-gradient(0deg, var(--green) 0%, transparent 30%);
	z-index: 2;
}

.video-block .triangle{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 400px;
    height: 348px;
    z-index: 10;
    margin: auto;
    z-index: 0;
}
.video-block .triangle .main{
    clip-path: polygon(50% 0%, 0% 100%, 6% 100%,26% 100%, 26% 82%,50% 35%, 75% 82%, 26% 82%, 26% 100%, 100% 100%, 100% 100%, 50% 0%);
    width: 100%;
    height: 100%;
    backdrop-filter: blur(8px) brightness(1.1);
    transform: rotate(90deg);
}
/* end */


/* gallery-masonry-1 */
.gallery-masonry-1:not(.mb-block):not(.mb-block-big):not(.mb-block-sm){
	margin-bottom: 1rem;
}
.gallery-masonry-1 .img-wrapper{
	height: 300px;
	overflow: hidden;
	border-radius: var(--radius-outside);
	display: block;
}
.gallery-masonry-1 .img-wrapper img{
	transform: scale(1.01);
	transition: transform .3s;
}
.gallery-masonry-1 .img-wrapper:hover img{
	transform: scale(1.05);
}
.gallery-masonry-1 .overflow-hidden{
	padding: 0 1rem;
}

.gallery-masonry-1 .row.reverse .second{order:1;}
.gallery-masonry-1 .row.reverse .third{order:2;}
.gallery-masonry-1 .row.reverse .first{order:3;}
/* end */


/* grid-text-img-1 */
.grid-text-img-1{
	--color: var(--dark);
	--min-height: 400px;
}
.grid-text-img-1.color-primary{
	--color: var(--primary);
}
.grid-text-img-1.color-secondary{
	--color: var(--secondary);
}
.grid-text-img-1 .solid-wrapper{
	background-color: var(--color);
	color: #fff;
	padding: var(--size-lg);
	height: 100%;
	display: flex;
	align-items: flex-end;
	min-height: var(--min-height);
	border-radius: calc(var(--radius-outside) * 2);
}
.grid-text-img-1 .img-wrapper{
	min-height: var(--min-height);
	position: relative;
	overflow: hidden;
	border-radius: calc(var(--radius-outside) * 2);
	display: block;
}
.grid-text-img-1 .img-wrapper img{
	position: absolute;
}
.grid-text-img-1 .imgbg-wrapper{
	position: relative;
}
.grid-text-img-1 .content-wrapper{
	position: absolute;
	left: var(--size-lg);
	right: var(--size-lg);
	bottom: var(--size-lg);
}
.grid-text-img-1 .content-wrapper{
	color: #fff;
}
.grid-text-img-1 .img-wrapper.overlay::after{
	content:"";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: linear-gradient(0deg, var(--primary) 0%, transparent 100%);
	opacity: 0.8;
}
/* end */


/* form-cols-1 */
.form-cols-1 .form-footer{
	text-align: right;
}
.form-cols-1 .basic-items-wrapper .icongrid .icon i{
	font-size: 26px;
}
/* end */


/* form-map */
.form-map .map-wrapper{
	height: 100%;
	min-height: 500px;
}
.form-map .col-form{
	display: flex;
	align-items: center;
}
.form-map .col-form .align{
	padding-right: var(--block-mb);
}
.form-map .form-footer{
	text-align: left;
}

.form-map.map-left .col-form{order: 2;}
.form-map.map-left .col-form .align{padding-left: var(--block-mb);padding-right: 0;}

.form-map .fluid-wrapper{
	display: flex;
}
.form-map .fluid-wrapper .col-form{
	width: 50%;
	justify-content: flex-end;
}
.form-map .fluid-wrapper .col-form .col-wrapper{
	max-width: calc(.5 * var(--block));
	padding-left: var(--block-padding);
	padding-right: var(--block-mb);
}
.form-map .fluid-wrapper .col-map{
	width: 50%;
}

.form-map.map-left .fluid-wrapper .col-form{
	justify-content: flex-start;
}
.form-map.map-left .fluid-wrapper .col-wrapper{
	padding-left: var(--block-mb);
	padding-right: var(--block-padding);
}
/* end */


/* filetable */
.filetable .row{
	align-items: center;
}
.filetable .item{
	display: block;
	background-color: var(--light);
	border-radius: var(--radius-outside);
	padding: var(--size-xs) var(--size-sm);
	font-weight: 600;
	margin-bottom: var(--size-xs);
}
.filetable .item:last-child{
	margin-bottom: 0;
}
.filetable .text-left{
	line-height: 1.2;
}
/* end */


/* breadcrumbs-1 */
.breadcrumbs-1{
	padding-top: var(--size-sm);
	padding-bottom: var(--size-sm);
}
/* end */


/* fluid-gallery */
.btn-nav{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	color: var(--dark);
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	cursor: pointer;
	font-size: 20px;
	transition: background-color 0.3s;
}
.btn-nav:hover{
	background-color: var(--light);
}

.fluid-gallery{
	position: relative;
}
.fluid-gallery .slick-slider{overflow: hidden!important;height: 500px;opacity: 0;}
.fluid-gallery .slick-slider.slick-initialized{opacity: 1;}
.fluid-gallery img{
    width: auto!important;
    height: 500px;
    display: block;
    position: relative;
}
.fluid-gallery .item{
	position: relative;
	padding:0 5px;
}

.fluid-gallery .prev{
	left: var(--block-padding);
}
.fluid-gallery .next{
	right: var(--block-padding);
}
/* end */


/* room-detail */
.accomodation-detail .room-title{
	margin-bottom: var(--size-md);
}
.accomodation-detail .main-params{
	margin-bottom: var(--size-lg);
	font-size: var(--f-size-h6);
	font-weight: 500;
}
.accomodation-detail .main-params span{
	display: inline-flex;
	align-items: center;
	margin-right: var(--size-sm);
}
.accomodation-detail .main-params span:last-child{
	margin-right: 0;
}
.accomodation-detail .main-params i{
	font-size: 20px;
	margin-right: 5px;
	color: var(--gray-400);
}

.accomodation-detail .point-list .item{
	position: relative;
	padding-left: 20px;
}
.accomodation-detail .point-list .item span{
	width: 12px;
	min-width: 12px;
	height: 12px;
	border-radius: 3px;
	background-color: var(--primary);
	margin-right: var(--size-xs);
	position: absolute;
	top: 6px;
	left: 0;
	margin: auto;
}
.accomodation-detail .point-list .item b{
	font-weight: 500;
}

.accomodation-detail .section-title{
	margin-bottom: var(--size-sm);
}

.accomodation-detail .page-nav{
	margin-bottom: var(--size-md);
	border-bottom: 1px solid var(--gray-100);
}
.accomodation-detail .page-nav-wrapper{
	display: flex;
	margin-left: calc(-1 * var(--size-xs));
	margin-right: calc(-1 * var(--size-xs));
}
.accomodation-detail .page-nav a{
	font-weight: 500;
	padding: var(--size-xs);
	position: relative;
	transition: color 0.3s;
}
.accomodation-detail .page-nav a:hover{
	color: var(--primary);
}
.accomodation-detail .page-nav a:hover::after{
	background-color: var(--primary);
}

.accomodation-detail .page-nav a::after{
	content:"";
	position: absolute;
	left: var(--size-xs);
	right: var(--size-xs);
	bottom: -1px;
	height: 1px;
	background-color: transparent;
	transition: background-color 0.3s;
}
.accomodation-detail .page-nav a.active{
	color: var(--primary);
}
.accomodation-detail .page-nav a.active::after{
	background-color: var(--primary);
}


.datepicker__inner{
	padding: var(--size-xs);
}

.accomodation-detail .col-content{
	padding-top: var(--block-mb);
}
.accomodation-detail .col-panel{
	padding-top: var(--block-mb);
}


.reservation-panel-wrapper{
	border-radius: var(--radius-outside);
	width: 360px;
	position: sticky;
	top: 110px;
}
.reservation-panel-wrapper > *{
	margin-bottom: var(--size-sm);
}
.reservation-panel-wrapper > *:last-child{
	margin-bottom: 0;
}
.reservation-panel-wrapper .section{
	padding: var(--size-md);
}
.reservation-panel-wrapper .section.blank{
	padding: 0;
	background-color: transparent;
}
.reservation-panel-wrapper .section.title{
	padding: var(--size-md);
}
.reservation-panel-wrapper .section.title h6{
	margin-bottom: 5px;
}
.reservation-panel-wrapper .section.borders{
	border: 1px solid var(--gray-100);
}



.bigeron-reservation-panel{
    --c-bg: transparent;
    --c-text-basic: var(--dark);
    --c-text-light: var(--gray-400);
    --c-btn: var(--primary);
    --c-btn-color: #fff;
    --c-btn-hover: var(--primary-darker);
    --c-btn-color-hover: #fff;
    --border: 1px solid var(--gray-100);
    --border-outline: 1px solid var(--primary);
    --outline: 1px solid var(--primary);
    --c-chooser-hover: var(--light);
    --c-chooser-select: var(--light);
}

.bigeron-reservation-panel{
    background-color: var(--c-bg);
    border: var(--border-outline);
    outline: var(--outline);
    color: var(--c-text-basic);
}

.bigeron-reservation-panel .c-light{
	color: var(--c-text-light);
}

.bigeron-reservation-panel .section.bb{
	border-bottom: var(--border);
}
.bigeron-reservation-panel .section.bt{
	border-top: var(--border);
}

.bigeron-reservation-panel .btn-wrapper{
	padding: var(--size-md);
	border-top: 1px solid #fff;
}
.bigeron-reservation-panel .btn-wrapper .btn-default{
	background-color: var(--c-btn);
	color: var(--c-btn-color);
}
.bigeron-reservation-panel .btn-wrapper .btn-default:hover{
	background-color: var(--c-btn-hover);
	color: var(--c-btn-color-hover);
}

.bigeron-reservation-panel .btn-wrapper.disabled{
	border-top: var(--border);
}
.bigeron-reservation-panel .btn-wrapper.disabled .btn-default{
	opacity: 0.5;
	cursor: not-allowed;
}
.bigeron-reservation-panel .btn-wrapper .btn-default{
	display: block;
}

.reservation-panel{
	border-radius: var(--radius-outside);
	cursor: pointer;
	user-select: none;
	padding: var(--size-sm) var(--size-md);
	position: relative;
	transition: background-color 0.3s;
	color: var(--primary);
	display: flex;
	flex-wrap: wrap;
}
.reservation-panel.show{
	background-color: var(--c-chooser-select)!important;
}
.reservation-panel:hover{
	background-color: var(--c-chooser-hover);
}
.reservation-panel span{
	font-weight: 500;
}
.reservation-panel::after{
	content:"\ea5f";
	font-family: "tabler-icons";
	font-size: 20px;
	height: 20px;
	width: 20px;
	margin: auto;
	top: 0;
	right: calc(var(--size-sm) + 4px);
	bottom: 0;
	position: absolute;
	line-height: 1;
}
.reservation-panel.show::after{
	transform: rotate(180deg);
}
.reservation-panel .label{
	text-transform: uppercase;
	font-size: var(--f-size-xs);
	color: var(--c-text-light);
	width: 100%;
	margin-bottom: 3px;
}
.reservation-panel .outer-row{
	align-items: center;
}
.reservation-panel .outer-row .row{
	align-items: center;
	flex-wrap: nowrap;
}
.reservation-panel .outer-row .icon img{
	width: 26px;
}

.reservation-panel-drop-wrapper .dropdown-menu{
	width: calc(100% - var(--size-xs) - var(--size-xs));
	font-size: var(--f-size-main);
	padding:var(--size-sm) var(--size-md);
	border:0;
	margin-top: -1px!important;
	box-shadow: 0 3px 20px -5px rgba(0,0,0,0.3);
	border-radius: var(--radius-outside);
	z-index: 850;
	left: var(--size-xs)!important;
	margin-top: var(--size-xs)!important;
}
.reservation-panel-drop-wrapper .dropdown-menu.static{
	position: static;
	width: 100%;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    border-top: 1px solid var(--gray-100);
    margin:0!important;
}

.reservation-panel-drop-wrapper .dropdown-menu::after{
	position: absolute;
    display: inline-block;
    border-bottom-color: rgba(0, 0, 0, 0.2);
	content: "";
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
    top: -6px;
    border-right: 8px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 8px solid transparent;
    width: 8px;
}
.reservation-panel-drop-wrapper .dropdown-menu.static::after{
	display: none;
}
.reservation-panel-drop-wrapper .dropdown-menu[data-popper-placement='top-start']::after{
	top: initial;
    bottom: -6px;
    border-top: 6px solid #fff;
    border-bottom: 0;
}

.reservation-panel-drop-wrapper .dropdown-menu label{
	line-height: 1;
	width: 100%;
	display: block;
}
.reservation-panel-drop-wrapper .dropdown-menu .title-text{
	font-weight: 600;
	line-height: 1.1;
}
.reservation-panel-drop-wrapper .dropdown-menu .text-muted{
	margin-top: 3px;
	font-size: var(--f-size-xs);
	color: var(--gray-300)!important;
	font-weight: 400;
}

.reservation-panel-drop-wrapper .dropdown-menu .handle-counter{
	display: flex;
	padding-left: var(--size-xs);
}
.reservation-panel-drop-wrapper .dropdown-menu .age-counter .handle-counter{
	padding-left: 0;
}
.reservation-panel-drop-wrapper .dropdown-menu .handle-counter > *:not(.col-nums){
	width: 36px;
	height: 36px;
}
.reservation-panel-drop-wrapper .dropdown-menu .handle-counter .num-item{
	width: 100%;
	height: 26px;
	position: relative;
	border: 1px solid var(--primary);
	cursor: pointer;
	transition: background-color .3s, color .3s;
}
.reservation-panel-drop-wrapper .dropdown-menu .handle-counter .num-item:hover{
	background-color: var(--primary);
}
.reservation-panel-drop-wrapper .dropdown-menu .handle-counter .num-item:hover span{
	color: #fff;
}
.reservation-panel-drop-wrapper .dropdown-menu .handle-counter input:checked ~ .num-item{
	background-color: var(--primary);
}
.reservation-panel-drop-wrapper .dropdown-menu .handle-counter input:checked ~ .num-item span{
	color: #fff;
}
.reservation-panel-drop-wrapper .dropdown-menu .handle-counter .num-item span{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 20px;
	text-align: center;
	height: 20px;
	line-height: 20px;
	font-weight: 500;
	color: var(--primary);
	font-size: var(--f-size-xs);
}
.reservation-panel-drop-wrapper .dropdown-menu .handle-counter > div:not(.col-nums){
	line-height: 34px;
	padding: 0;
	user-select: none;
	text-align: center;
}
.reservation-panel-drop-wrapper .dropdown-menu .handle-counter > input{
	border:0;
	outline: 0;
	text-align: center;
	pointer-events: none;
}

.reservation-panel-drop-wrapper .dropdown-menu .ages > div:first-child{
	border-top: var(--border);
	padding-top: var(--size-sm);
}

.datepicker-dropdown .dropdown-menu{
	padding: 0;
	margin-top: var(--size-xs)!important;
}

.room-panel-footer{
	padding: var(--size-md);
	padding-bottom: 0;
	border-top: var(--border);
}

.room-panel-footer .datepicked{
	font-size: var(--f-size-sm);
	margin-bottom: var(--size-sm);
}

.room-panel-footer .price i{
	color: var(--c-text-light);
	font-size: var(--f-size-main);
}

.accomodation-detail .help-banner .row{
	margin-top: var(--size-sm);
}
.accomodation-detail .help-banner .btn-default{
	display: block;
	padding-left: 5px;
	padding-right: 5px;
	text-align: center;
}
.accomodation-detail .help-banner .col-phone{
	display: flex;
	align-items: center;
	font-weight: 500;
}
.accomodation-detail .help-banner .col-phone a{
	display: flex;
	align-items: center;
}
.accomodation-detail .help-banner .col-phone i{
	margin-right: 2px;
	font-size: 20px;
}
.accomodation-detail .help-banner .col-phone a:hover span{
	text-decoration: underline;
}

.accomodation-detail .image-banner{
	position: relative;
	display: block;
	border-radius: var(--radius-outside);
	overflow: hidden;
	height: 100%;
	border: 1px solid var(--gray-100);
}
.accomodation-detail .image-banner .img-wrapper{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.accomodation-detail .image-banner .img-wrapper::after{
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,.5);
}
.accomodation-detail .image-banner .content{
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.accomodation-detail .image-banner .content .texts{
	margin-bottom: var(--size-sm);
}
.accomodation-detail .image-banner .content .btn-wrapper{
	margin-top: auto;
}
.accomodation-detail .image-banner .content .btn-default{
	display: inline-flex;
}
.accomodation-detail .image-banner.has-image .content h6{color: #fff;}
.accomodation-detail .image-banner.has-image .content .longtext{color: #fff;margin-bottom: var(--size-sm);}

.accomodation-detail .anchor-hidden{top: -100px;}
/* end */


/* package-detail */
.accomodation-detail.package .main-params .row{
	align-items: center;
}
.accomodation-detail.package .main-params .dates{
	display: flex;
    align-items: center;
}
.accomodation-detail.package .main-params .dates .item{
	font-size: var(--f-size-h6);
    border-right: 1px solid var(--gray-100);
    padding-right: var(--size-sm);
    margin-right: var(--size-sm);
    padding-top: 3px;
    font-weight: 600;
}
.accomodation-detail.package .main-params .dates .item:last-child {
    border-right: 0;
    padding-right: 0px;
    margin-right: 0px;
}
.accomodation-detail.package .main-params .label{
	font-size: var(--f-size-xs);
}

.accomodation-detail.package .checks{
	margin-top: var(--size-sm);
}
.accomodation-detail.package .checks > .row{
	justify-content: center;
}
.accomodation-detail.package .checks i{
	font-size: var(--f-size-h3);
}
.accomodation-detail.package .checks > .row > .col-auto:first-child{
	position: relative;
}
.accomodation-detail.package .checks > .row > .col-auto:first-child::after{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 1px;
	background-color: var(--gray-100);
}

.accomodation-detail.package .reservation-panel-wrapper .price{
	width: 100%;
	margin-bottom: var(--size-sm);
	margin-top: var(--size-md);
	font-size: var(--f-size-h6);
	font-weight: 500;
}
.accomodation-detail.package .reservation-panel-wrapper .price b{
	color: var(--primary);
	font-size: var(--f-size-h5);
}

.accomodation-detail.package .basic-items-wrapper{
	margin-top: var(--size-md);
}
.accomodation-detail.package .basic-items-wrapper .iconinline .icon i{
	font-size: 18px;
}
.accomodation-detail.package .list-title{
	font-size: var(--f-size-main);
	margin-bottom: 0;
	font-weight: 500;
}
/* end */


/* notification-bar */
.notification-bar{
	--bg-color: var(--primary);
	--color: #fff;

	--button-bg: transparent;
	--button-border: #fff;
	--button-color: #fff;

	--button-hover-bg: #fff;
	--button-hover-border: #fff;
	--button-hover-color: var(--primary);

	background-color: var(--bg-color);
	color: var(--color);
}
.notification-bar.c-secondary{
	--bg-color: var(--secondary);
	--button-hover-color: var(--secondary);
}
.notification-bar.c-dark{
	--bg-color: var(--dark);
	--button-hover-color: var(--dark);
}
.notification-bar.c-white{
	--bg-color: #fff;
	--color: var(--dark);

	--button-bg: var(--primary);
	--button-border: var(--primary);

	--button-hover-bg: var(--primary-darker);
	--button-hover-border: var(--primary-darker);
	--button-hover-color: #fff;
}

.notification-bar .btn-default{
	background-color: var(--button-bg);
	border-color: var(--button-border);
	color: var(--button-color);
	font-size: var(--f-size-xs);
	display: block;
	padding: 6px 12px;
}
.notification-bar .btn-default:hover{
	background-color: var(--button-hover-bg);
	border-color: var(--button-hover-border);
	color: var(--button-hover-color);
}

.notification-bar .block-wide{
	position: relative;
	height: 100%;
}
.notification-bar .block-wide .block{
	height: 100%;
}
.notification-bar .block-wide .block .align{
	height: 100%;
}
.notification-bar .close{
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color);
	width: 40px;
	height: 40px;
	cursor: pointer;
	opacity: 0.5;
	transition: opacity .3s;
}
.notification-bar .close:hover{
	opacity: 1;
}

@media (max-width: 991.98px){
	.notification-bar .close{width: 30px;height: 30px;}
	.notification-bar .col-btn{display: none;}
	.notification-bar.c-white{border-bottom: 1px solid var(--light);}
}
@media (max-width: 575.98px){
	.notification-bar .close{display: none;}
}
/* end */



/* notification-1 */
.notification-1{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 40px;
	z-index: 890;
	transition: margin-top 0.3s;
}
.notification-1.disabled{
	display: none;
}
.notification-1.fixed{position: fixed;}
.notification-1 .text-animation{display: flex;}
.notification-1 .text-animation .step{white-space: nowrap;line-height: 1;}
.notification-1 .row.align{
	align-items: center;
	flex-wrap: nowrap;
}
.notification-1 .col-content{
	overflow: hidden;
	margin-right: var(--size-md);
	line-height: 1;
}

.notification-1 .text-animation-wrapper.playing{
	position: relative;
}
.notification-1 .text-animation-wrapper.playing::before{
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: linear-gradient(90deg, var(--bg-color) 0%, rgba(255,255,255,0) 100%);
	width: 10px;
	z-index: 1;
}
.notification-1 .text-animation-wrapper.playing::after{
	content:"";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(270deg, var(--bg-color) 0%, rgba(255,255,255,0) 100%);
	width: 10px;
	z-index: 1;
}

.notification-1 .text-animation.playing{
	white-space: nowrap;
	overflow: hidden;
	display: inline-block;
	animation: text_loop 15s linear infinite;
}
.notification-1 .text-animation.playing .step{
	display: inline-block;
}
@keyframes text_loop{
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-50%, 0, 0);
	}
}

body.notification-1-active.padding-hidden{padding-top:0!important;transition: padding-top .3s;}
body.notification-1-active.padding-hidden .notification-1{margin-top: -40px;}

body.notification-1-active .header-2{top: 40px;}
body.notification-1-active.padding-hidden .header-2{top: 0px;transition: top .3s;}


@media (max-width: 991.98px){
	.notification-1 .block{white-space: nowrap;font-size: var(--f-size-sm);}
	.notification-1 .col-content{margin-right: var(--size-sm);}

	.notification-1{position: fixed;height: 30px;}
	body.notification-1-active .header-1 .top{top: 30px;}
	body.notification-1-active .header-1 .nav-holder{top: 86px;}
	
	body.notification-1-active .header-2{top: 30px;}
	body.notification-1-active .header-2 .nav-holder{top: 86px;}

	/* hiding panel */
	body.notification-1-active.padding-hidden .notification-1{margin-top: -30px;}
	
	body.notification-1-active.padding-hidden .header-1 .top{top: 0px;transition: top .3s;}
	body.notification-1-active.padding-hidden .header-1 .nav-holder{top:56px;}

	body.notification-1-active.padding-hidden .header-2{top: 0px;transition: top .3s;}
}

@media (max-width: 575.98px){
	.notification-1 .col-content{margin-right: 0;}
	.notification-1 .block-wide .block{padding-left: 0;padding-right: 0;}
	.notification-1 .text-animation-wrapper.playing::before{display: none;}
	.notification-1 .text-animation-wrapper.playing::after{display: none;}
}
/* end */



/* announcements */
.announcements{
	position: fixed;
	right: var(--block-padding);
	bottom: var(--block-padding);
	z-index: 1300;
	width:400px;
	transition: all .15s;
	pointer-events: none;
}
.announcements.active{
	pointer-events: initial;
}
.announcement{
	width:100%;
	font-size: var(--f-size-sm);
	position: absolute;
	left: 0;
	right: 0;
	background-color: #fff;
	border-radius: var(--radius-inside);
	box-shadow:0 5px 10px 0px rgba(0,0,0,0.15);
	transition: bottom .3s, transform .2s, opacity .2s;
	transform: translateY(0px);
	pointer-events: none;
	opacity: 0;
}
.announcement.active{
	pointer-events: initial;
}
.announcement.visible{
	opacity: 1;
}
.announcement.closed{
	transform: translateY(20px);
}
.announcement .col-content{
	padding: calc(var(--size-xs) + var(--size-xs)*.5) var(--size-sm);
}
.announcement .col-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-inside) 0 0 var(--radius-inside);
}
.announcement .close{
	position: absolute;
	top:10px;
	right:10px;
	height:22px;
	width:22px;
	margin: auto 0;
	text-align:center;
	cursor:pointer;
	z-index: 10;
}
.announcement .close i{
	line-height: 22px;
	transition: all 0.3s;
}
.announcement .close:hover i{
	color:var(--primary);
}
.announcement span{
	display:block;
	padding-right:20px;
	font-weight:600;
	margin-bottom:5px;
	font-size: var(--f-size-main);
}

@media (max-width: 575.98px){
	.announcements{width: 300px;}
	.announcement .col-image{display: none;}
}
/* end */



/* modal-popup */
.modal.modal-popup .modal-content > .modal-header{
	padding: 0;
}
.modal-popup img{
	width: 100%;
}
.modal.modal-popup .modal-content .modal-body{
	padding:0;
}
.modal.modal-popup .modal-content .modal-body .content{
	padding:var(--size-md);
}
/* end */





/* ecommerce */
.products-list{
	margin-top: var(--size-sm);
	padding-top: var(--size-sm);
	border-top: 1px solid var(--gray-100);
	overflow: hidden;
}
.products-list .image-wrapper{
	display: block;
	height: 200px;
	position: relative;
}
.products-list .image-wrapper .badges{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
}
.products-list .image-wrapper .badges .badge-circular{
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 2.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--f-size-xs);
	font-weight: 600;
	background-color: var(--primary);
	color: #fff;
	margin-bottom: 5px;
}
.products-list .image-wrapper .badges .badge-circular.success{
	background-color: var(--success);
}
.products-list .image-wrapper img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.pagination{
	display: flex;
	margin:0;
	margin-top: var(--size-lg);
	justify-content: center;
}

.pagination a{
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	border-radius: var(--radius-inside);
	transition: background-color .3s;
	cursor: pointer;
}
.pagination a i{
	font-size: 20px;
}
.pagination a:hover{
	background-color: var(--light);
}
.pagination .more{
	display: flex;
	align-items: center;
	padding: 0 var(--size-xs);
	color: var(--gray-300);
}
.pagination .static a{
	margin: 0 var(--size-xs);
}
.pagination .static a{

}
.pagination .active a{
	background-color: var(--primary);
	color: #fff;
}
.pagination a.disabled{
	opacity: .5;
	cursor: not-allowed;
}

.ecommerce-listing input[type=checkbox], .ecommerce-listing input[type=radio]{
	--active: var(--primary);
    --active-inner: #fff;
    --focus: 0px var(--light);
    --border: var(--gray-100);
    --border-hover: var(--gray-100);
}
.ecommerce-listing .filter-item{
	margin-bottom: var(--size-sm);
}
.ecommerce-listing .filter-item:last-child{
	margin-bottom: 0;
}
.ecommerce-listing .filter-item > div{
	margin-bottom: 6px;
}
.ecommerce-listing .filter-item > div:last-child{
	margin-bottom: 0;
}

.ecommerce-listing .actions-panel{
	align-items: center;
}
.ecommerce-listing .actions-panel select{
	padding: 5px 10px;
	font-size: var(--f-size-sm);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-inside);
	outline: 0;
}

.panel-nav{
	list-style-type: none;
	margin:0;
	padding:0;
}
.panel-nav li ul{
	margin: 0;
	list-style-type: none;
	padding-left: var(--size-sm);
	margin-top: var(--size-xs);
}
.panel-nav li:first-child{
	padding-top: 0;
}
.panel-nav li:last-child{
	padding-bottom: 0;
}
.panel-nav li{
	padding: 4px 0;
}
.panel-nav li a{
	font-weight: 500;
	transition: color .3s;
}
.panel-nav li a span{
	color: var(--gray-300);
}
.panel-nav li a:hover{
	color: var(--primary);
}
.panel-nav li a.active{
	color: var(--primary);
}

.filter-section{
	padding-top: var(--size-sm);
	margin-top: var(--size-sm);
	border-top: 1px solid var(--gray-100);
}

.filter-applied{
	display: flex;
	align-items: center;
}
.filter-applied .items{
	margin-left: var(--size-xs);
}
.filter-applied .items .badge{
	margin: 1px;
}
.filter-applied span.close-badge{
	cursor: pointer;
	margin-left: 4px;
	color: var(--gray-300);
	transition: color .3s;
}
.filter-applied span.close-badge:hover{
	color: var(--dark);
}


.listing-panel .title-wrapper{
	display: none;
	margin-bottom: var(--size-md);
	align-items: center;
}
.listing-panel .title-wrapper > *{
	margin-bottom: 0;
}
.listing-panel .title-wrapper h5{
	font-weight: 600;
}
.listing-panel .title-wrapper span{
	font-size: 22px;
	line-height: 1;
	margin-left: auto;
	color: var(--gray-300);
	cursor: pointer;
	transition: color 0.3s;
}
.listing-panel .title-wrapper span:hover{
	color: var(--dark);
}

.listing-panel .apply-wrapper{
	display: none;
}
.listing-panel .apply-wrapper .btn-default{
	width: 100%;
	text-align: center;
	display: block;
}

.content-overlay-listing{
	position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1319;
    display: none;
    cursor: pointer;
}

.ecommerce-listing .listing-title{
	padding-bottom: var(--size-md);
	padding-top: var(--size-md);
}
.ecommerce-listing .listing-title h1{
	margin-bottom: 0;
}
.ecommerce-listing .listing-title-wrapper{
	background-color: var(--light);
	border-bottom: 1px solid var(--gray-100);
	margin-bottom: var(--size-md);
}

.sm-category-nav{display: none;margin-bottom: var(--size-sm);}
.sm-category-nav .btn-default{width: 100%;text-align: center;padding-left: 5px;padding-right: 5px;display: flex;align-items: center;justify-content: center;}
.sm-category-nav .btn-default i{
	font-size: 18px;
	margin-right: 2px;
}




/* ecommerce-listing-1 */
.ecommerce-listing-1 .actions-panel .col{
	display: flex;
	align-items: center;
}
.ecommerce-listing-1 .actions-panel .col > *{
	margin-right: var(--size-xs);
}
.ecommerce-listing-1 .listing-panel{
	display: none;
}
.ecommerce-listing-1 .listing-panel .filter-section{
	display: flex;
}
.ecommerce-listing-1 .listing-panel .filter-section .filter-item{
	width: 20%;
}
.ecommerce-listing-1 .listing-panel .apply-wrapper{
	display: flex;
}
.ecommerce-listing-1 .listing-panel .apply-wrapper .btn-default{
	margin-left: auto;
	width: auto;
}
.ecommerce-listing-1 .listing-panel .eshop-categories{
	padding-top: var(--size-sm);
    margin-top: var(--size-sm);
    border-top: 1px solid var(--gray-100);
}
.ecommerce-listing-1 .filter-applied{
	padding-top: var(--size-sm);
    margin-top: var(--size-sm);
    border-top: 1px solid var(--gray-100);
}
/* end */


@media (max-width: 991.98px){
	.ecommerce-listing-1 .listing-panel .filter-section .filter-item{width: 25%;}
}
@media (max-width: 767.98px){
	.listing-panel{
		position: fixed;
	    top: 0px;
	    left: 0;
	    width: 300px;
	    bottom: 0;
	    background-color: #fff;
	    overflow: auto;
	    z-index: 1320;
	    padding: var(--size-md);
	    transform: translateX(-100%);
    	transition: transform 600ms cubic-bezier(0.645, 0.045, 0.355, 1);
	}
	.listing-panel.active{
		transform: translateX(0);
	}
	.listing-panel .title-wrapper{display: flex;}
	.sm-category-nav{display: flex;}
	.listing-panel .apply-wrapper{display: block;margin-top: var(--size-sm);}
	.listing-panel.panel-filter .filter{height: 100%;overflow: auto;}

	.listing-panel.panel-filter{
		display: flex;
		flex-direction: column;
	}
	.products-list{margin-top: var(--size-sm);}
	.listing-panel.panel-categories .semibold{display: none;}
	.filter-section{border:0;padding:0;margin:0;}

	.ecommerce-listing-1 .listing-panel{display: flex!important;flex-direction: column;}
	.ecommerce-listing-1 .actions-panel .col .btn-default{display: none;}
	.ecommerce-listing-1 .listing-panel .eshop-categories{border-top: 0;margin-top: 0;padding-top: 0;}
	.ecommerce-listing-1 .listing-panel .filter-section{display: block;}
	.ecommerce-listing-1 .listing-panel .filter-section .filter-item{width: 100%;}
	.ecommerce-listing-1 .listing-panel .apply-wrapper .btn-default{width: 100%;}
	.ecommerce-listing-1 .actions-panel{align-items: flex-end;}
}
@media (max-width: 575.98px){
	.sm-category-nav .btn-default{font-size: var(--f-size-xs);padding-top: 10px;padding-bottom: 10px;}
	.products-list .image-wrapper{height: 150px;}

	.pagination a{width: 2rem;height: 2rem;}

	.ecommerce-listing .listing-title h1{font-size: var(--f-size-h3);}

	.products-list{padding-top: var(--size-sm);}
}
/* end */


/* product-dedail-1 */
.product-detail .group .options{
	display: flex;
	margin: -4px;
}
.product-detail .group .options .option{
    height: 40px;
    min-width: 40px;
    line-height: 40px;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 0 var(--size-sm);
    cursor: pointer;
    transition: all 0.3s;
    font-size: var(--f-size-sm);
    border: 1px solid var(--dark);
    margin: 4px;
}
.product-detail .group .options .option.active{
	background-color: var(--dark);
	color: #fff;
}
.product-detail .group .options .option[disabled]{
	cursor: not-allowed;
	opacity: 0.4;
	background-color: var(--light);
}
.product-detail .group{
	margin-bottom: var(--size-xs);
}
.product-detail .group:last-child{
	margin-bottom: 0;
}
.product-detail .group-title{
	font-weight: 500;
}

.variants-reset{
	display: none;
	margin-top: var(--size-xs);
	font-weight: 500;
	padding:  calc(.5*var(--size-xs)) var(--size-xs);
	cursor: pointer;
	vertical-align: middle;
	background-color: var(--primary);
	color: #fff;
	transition: background-color .3s, color .3s;
}
.variants-reset i{margin-right: 3px;}
.variants-reset:hover{
	background-color: var(--primary-darker);
}

.qty-counter{
	display: flex;
	/*border: 1px solid var(--dark);*/
	/*padding: 4px;*/
}
.qty-counter .button{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	color: var(--dark);
	transition: all .3s;
	cursor: pointer;
	background-color: var(--light);
}
.qty-counter .button:hover{
	background-color: var(--gray-200);
}
.qty-counter .button.disabled{
	cursor: not-allowed;
	opacity: .4;
}
.qty-counter .button.disabled:hover{
	background-color: var(--light);
}
.qty-counter input{
	border:0;
	text-align: center;
	outline: 0;
	width: 38px;
	font-weight: 500;
}
.qty-counter input[type=number]::-webkit-inner-spin-button, 
.qty-counter input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}

.product-detail-slider.slick-dotted.slick-slider{
	margin-bottom: 0;
}
.product-detail-slider .slick-dots{
	bottom: var(--size-md);
	left: 0;
	right: 0;
	justify-content: center;
	position: absolute;
}
.product-detail-slider .slick-dots li button:before{
	border: 2px solid #fff;
}
.product-detail-slider .slick-dots li.slick-active button:before {
    background-color: #fff;
}

.product-detail-slider .slider-arrow{
	border-radius: var(--radius-inside);
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--primary);
}
.product-detail-slider .slider-arrow:hover{
	background-color: var(--primary-darker);
	border-color: var(--primary-darker);
}
.product-detail-slider .slider-arrow.prev{left: 0;}
.product-detail-slider .slider-arrow.next{right: 0;}

.product-detail .product-detail-slider{
	background-color: var(--light);
	padding: var(--size-md);
}
.product-detail .product-detail-slider img{
	height: 400px;
	object-fit: contain;
}

.product-detail-slider-nav .item{
	height: 100px;
}
.product-detail-slider-nav .item img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/* end */


/* products-selection */
.products-selection .products-list{
	padding-top: 0;
	border:0;
	margin:0;
}
.products-selection .products-list{
	overflow: initial;
}
.products-selection .slider-arrow{
	background-color: var(--primary);
	border-color: var(--primary);
	border-radius: var(--radius-inslide);
}
.products-selection .slider-arrow:hover{
	background-color: var(--primary-darker);
	border-color: var(--primary-darker);
}
.products-selection .slider-arrow.prev{
	left: -25px;
}
.products-selection .slider-arrow.next{
	right: -25px;
}
.products-selection .products-selection-slider{
	overflow: hidden;
}
.products-selection .slick-list{
	margin: 0 -0.75rem;
}
.products-selection .col-item{
	padding: 0 0.75rem;
}

@media (max-width: 1199.98px){
	.products-selection .slider-arrow.prev{left: -15px;}
	.products-selection .slider-arrow.next{right: -15px;}
}
@media (max-width: 575.98px){
	.products-selection .slider-arrow.prev{left: -10px;}
	.products-selection .slider-arrow.next{right: -10px;}
	.products-selection .slick-list{margin: 0 -0.25rem;padding: 0 1.5rem;}
	.products-selection .col-item{padding: 0 0.25rem;}
	.products-selection .slider-arrow{display: none;}
	.products-selection .products-list .block{padding: 0;}
}
/* end */



/* wellness-reservations */
:host{
	--color-fg-primary: var(--primary);
	--day-width: 100%;
}
.easepick-wrapper{
	width: 100%;
	display: block;
	padding: var(--size-xs);
}
.container.inline{
	width: 100%;
	box-shadow: 0 0 0 0 rgba(0,0,0,0);
	font-family: var(--font_main);
	border-radius: 0;
}
.calendar > .header{
	padding: 0 0 10px 0;
}
.calendar > .days-grid > .day{
	border-radius: var(--radius-inside);
	cursor: pointer;
}
.calendar > .days-grid > .day.not-available{
	border-radius: 0;
}
.calendar{
	padding:0;
}
.calendar > .days-grid > .day{
	font-weight: 700;
	font-size: 12px;
}
.calendar > .days-grid > .day.today{
	color: var(--primary);
}
.calendar > .days-grid > .day.today.selected{
	color: #fff;
}
.container.lock-plugin .calendar > .days-grid > .day.not-available{
	font-style: normal;
}
.calendar > .header .month-name{
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
	padding-left: var(--size-xs);
}

.massages-list .img-cube{
	width: 100px;
	padding-bottom: 100%;
	position: relative;
}
.massages-list .img-cube img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.massages-list .item{
	border-bottom: 1px solid var(--gray-100);
	padding-bottom: var(--size-sm);
	margin-bottom: var(--size-sm);
}
.massages-list .item:last-child{
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0;
}
.massages-list .actions-wrapper{
	align-items: center;
	justify-content: flex-end;
}

.massages-list .show-more{
    cursor: pointer;
    font-weight: 500;
}
.massages-list .show-more:hover{
    text-decoration: underline;
}

#whole-massage .modal-body{
	padding: var(--size-md);
}
#whole-massage .title{
	font-weight: 500;
	font-family: var(--font_secondary);
}

#massage-reservation .modal-body{
	padding: var(--size-md);
}
#massage-reservation .title{
	font-weight: 600;
}
#massage-reservation .actions{
	margin-top: var(--size-sm);
	padding-top: var(--size-sm);
	transition: opacity .3s;
	border-top: 1px solid var(--gray-100);
}
#massage-reservation .actions .btn-default{
	pointer-events: none;
	opacity: .5;
}

#massage-reservation .actions.active .btn-default{
	pointer-events: initial;
	opacity: 1;
}

#massage-reservation .actions .selected{
	margin-bottom: var(--size-xs);
	font-size: var(--f-size-sm);
}

.choose-cards-row .item{
	width: 100%;
}
.choose-cards-row .item .time{
	text-align: center;
	padding: 6px 0px;
	border-radius: 3px;
	background-color: var(--light);
	width: 100%;
	cursor: pointer;
	transition: all .2s;
	font-size: var(--f-size-xs);
	font-weight: 600;
}
.choose-cards-row .item:hover .time{
	background-color: #ebebeb;
}
.choose-cards-row .item input{
	display: none;
}
.choose-cards-row .item input:checked ~ .time{
	background-color: #fff;
	box-shadow: 0 0 0 2px var(--primary) inset;
}
/* end */



/* massages-list */
.massages-list .item img{
	width: 100%;
}
.massages-list .col-content{
	padding-left: var(--size-md);
}
.massages-list .variants{
	border-top: 1px solid var(--gray-100);
	padding-top: var(--size-sm);
	margin-top: var(--size-sm);
	display: flex;
}
.massages-list .variants .variant{
	border-right: 1px solid var(--gray-100);
	padding-right: var(--size-xs);
	margin-right: var(--size-xs);
}
.massages-list .variants .variant:last-child{
	border-right: 0;
	padding-right: 0;
	margin-right: 0;
}
.massages-list .variants .variant span{
	display: block;
	text-transform: uppercase;
}
.massages-list .variants .variant span:first-child{
	font-size: var(--f-size-xs);
}
.massages-list .variants .variant span:last-child{
	font-weight: 700;
}

.wellness-actions{
	margin-top: var(--size-sm);
	pointer-events: none;
	opacity: .5;
	transition: opacity .3s;
}
.wellness-actions.active{
	pointer-events: auto;
	opacity: 1;
}
.wellness-actions .selected{
	margin-bottom: var(--size-xs);
	font-weight: 500;
	font-size: var(--f-size-sm);
}
.modal .easepick-wrapper{
	padding: 0;
}

#wellness-reservation .modal-body{
	padding: var(--size-sm) var(--size-md) var(--size-md) var(--size-md);
}
#wellness-reservation .modal-header{
	padding: var(--size-md) var(--size-md) 0 var(--size-md);
}

.modal .calendar > .header .month-name{
	padding-left: 0;
}

@media (max-width: 991.98px){
	#wellness-reservation .modal-body .row .col-lg-6:first-child{display: none;}
}
@media (max-width: 575.98px){
	#wellness-reservation .modal-body{padding: var(--size-sm);}
	#wellness-reservation .modal-header{padding: var(--size-sm) var(--size-sm) 0 var(--size-sm);}
}
/* end */




/* bike rental */
.basic-page-pozicovna-e-bike{
	background-color: var(--light);
}
.header-reservation-panel{
	display: flex;
	justify-content: center;
	padding-top: var(--block-mb);
	padding-bottom: var(--size-md);
	padding: var(--block-mb) var(--block-padding) var(--size-md) var(--block-padding);
}
.header-reservation-panel .panel{
	display: flex;
	flex-wrap: wrap;
}
.header-reservation-panel .section{
	background-color: #fff;
	height: 60px;
	display: flex;
	align-items: center;
	padding: 0 var(--size-md);
	border-left: 1px solid var(--gray-100);
}
.header-reservation-panel .section.inset-button{
	padding: 0;
}
.header-reservation-panel .section.inset-button .button{
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    padding: 0 calc(var(--size-md) + 22px) 0 var(--size-md);
    transition: background-color 0.3s;
    user-select: none;
    min-width: 190px;
    width: 100%;
}
.header-reservation-panel .section.inset-button .button:hover{
	/*background-color: var(--light);*/
}
.header-reservation-panel .section.inset-button .button::after{
	content: "\ea5f";
    font-family: "tabler-icons";
    font-size: 20px;
    height: 20px;
    width: 20px;
    margin: auto;
    top: 0;
    right: calc(var(--size-sm) + 4px);
    bottom: 0;
    position: absolute;
    line-height: 1;
}
.header-reservation-panel .section.inset-button .button.show::after{
	transform: rotate(180deg);
}

.header-reservation-panel .section .title{
	font-weight: 700;
	text-transform: uppercase;
	color: var(--gray-300);
	font-size: 10px;
}
.header-reservation-panel .section .value{
	font-weight: 600;
	line-height: 1;
	margin-top: 4px;
}

.header-reservation-panel .section.submit{
	background-color: var(--primary);
	padding: 0 var(--size-lg);
	border-left: 0!important;
}
.header-reservation-panel .section.submit:hover{
	background-color: var(--primary-darker);
	border-color: var(--primary-darker);
}
.header-reservation-panel .section.submit i{
	font-size: 18px;
	margin-right: calc(var(--size-xs)*.5);
}
.header-reservation-panel .section:first-child{
	border-left: 0;
}

.header-reservation-panel .custom-dropdown .dropdown-menu{
	width: 260px;
}


#rental-to-cart-panel{
	position: fixed;
	bottom: 0;right: 0;left: 0;
	background-color: #fff;
	z-index: 999;
	width: 100%;
	margin: 0 auto;
	padding: 10px;
	transform: translateY(100%);
	transition: all .3s ease;
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
}
#rental-to-cart-panel.active{
	transform: translateY(0);
}
#rental-to-cart-panel .block{
	display: flex;
	align-items: center;
}
#rental-to-cart-panel .total{
	padding-right: var(--size-sm);
	margin-left: auto;
}
#rental-to-cart-panel .total .price{
	font-size: var(--f-size-h6);
	font-weight: 600;
}
#rental-to-cart-panel .btn-default{
	padding: var(--size-sm);
}

@media (max-width: 991.98px){
	.header-reservation-panel .section.submit{padding: 0 var(--size-md);}
	.header-reservation-panel .section.submit i{margin-right: 0;}
	.header-reservation-panel .section.submit span{display: none;}
}
@media (max-width: 767.98px){

}
@media (max-width: 575.98px){
	.header-reservation-panel .section{height: 50px;}
	.header-reservation-panel .section.xs-w-6{width: 50%;}
	.header-reservation-panel .section.xs-w-12{width: 100%;}
	.header-reservation-panel .section.submit{justify-content: center;}
	.header-reservation-panel .section.submit span{display: block;}
	.header-reservation-panel .section.submit i{margin-right: calc(var(--size-xs)* .5);}
	.header-reservation-panel .section.inset-button .button{min-width: 0;padding: 0 calc(var(--size-sm) + 22px) 0 var(--size-sm);}
	.header-reservation-panel .section.inset-button .button::after{font-size: 18px;width: 18px;height: 18px;right: var(--size-sm);}
	#rental-to-cart-panel{padding-left: 0;padding-right: 0;}
	#rental-to-cart-panel .total .price{font-size: var(--f-size-main);text-align: right;}
	#rental-to-cart-panel .total .price span{display: block;}
}

.selected-badges .spacer{
	border-left: 1px solid var(--gray-200);
    padding-left: var(--size-xs);
    margin-left: var(--size-xs);
    font-size: 15px;
    letter-spacing: 0;
}


#rental-response .filter{
	display: flex;
	justify-content: center;
	margin-bottom: var(--size-md);
	flex-wrap: wrap;
}
#rental-response .filter .item{
	display: flex;
	align-items: center;
	margin-right: var(--size-sm);
	user-select: none;
	cursor: pointer;
	padding: 2px;
}
#rental-response .filter .item:last-child{
	margin-right: 0;
}
#rental-response .filter .item input{
	top: 0;
	margin-right: var(--size-xs);
}

#rental-response .empty{
    text-align: center;
    margin: auto auto;
    padding: var(--size-sm) 0;
    width: 450px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#rental-response .empty .title{
    font-weight: 600;
    font-size: var(--f-size-h5);
    margin-bottom: var(--size-xs);
}
#rental-response .empty i{
	background-color: var(--primary-lighter);
	color: var(--primary);
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--f-size-h4);
	border-radius: 60px;
	margin-bottom: var(--size-sm);
}

.bike-item{
	background-color: #fff;
	position: relative;
	border: 1px solid #fff;
	transition: all .3s;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.bike-item.active{
	border-color: var(--primary);
}
.bike-item .img-wrapper{
	padding: var(--size-sm);
	height: 200px;
	display:flex;
	position: relative;
}
.bike-item .img-wrapper img{
	object-fit:contain;
	margin:auto;
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: 100%;
}

.bike-item .img-wrapper .rental-bikes-slider{
	width: 100%;
	height: calc(200px - 2*(var(--size-sm)));
}
.bike-item .img-wrapper .rental-bikes-slider .rental-slider-img{
	width: 100%;
	height: calc(200px - 2*(var(--size-sm)));
}


.bike-item .img-wrapper .slider-arrow.prev{
	left: var(--size-sm);
}
.bike-item .img-wrapper .slider-arrow.next{
	right: var(--size-sm);
}
.bike-item .img-wrapper .slider-arrow{
	background-color: var(--gray-100);
	border-color: var(--gray-100);
	width: 36px;
    height: 36px;
}
.bike-item .img-wrapper .slider-arrow:hover{
	background-color: var(--gray-200);
	border-color: var(--gray-200);
}
.bike-item .img-wrapper .slider-arrow i{
	color: var(--gray-400);
}

.bike-item .desc-wrapper{
	padding: 0 var(--size-sm) var(--size-sm) var(--size-sm);
	flex: 1;
	display: flex;
    flex-direction: column;
}
.bike-item .desc-wrapper .title{
	margin-bottom: calc(var(--size-xs) * .5);
}
.bike-item .desc-wrapper .title span{
	font-weight: 600;
	font-size: var(--f-size-h6);
	cursor: pointer;
}
.bike-item .desc-wrapper .title span:hover{
	text-decoration: underline;
}

.bike-item .bottom-desc{
	margin-top: var(--size-sm);
	width: 100%;
    display: flex;
    align-items: center;

}
.bike-item .bottom-desc .col-item-price{
	margin-left: auto;
	margin-right: 10px;
}
.bike-item .bottom-desc .col-item-price span{
	font-size:60%;
	font-weight:400;
	padding-left:8px;
	color:#6a6a6a;
}
.bike-item .bottom-desc .btn-default{
	padding: var(--size-xs);
}
.bike-item .price{
	margin-left: auto;
	display: flex;
	align-items: flex-end;
	margin-right: var(--size-xs);
	line-height: 1;
}
.bike-item .price .bold{
	font-size: 16px;
	padding-right: 3px;
}
.bike-item .price .sm{
	font-size: var(--f-size-xs);
}
.bike-item .check-rental-item{
	display: flex;
	align-items: center;
	padding: var(--size-xs);
	user-select: none;
	letter-spacing: .5px;
}

.bike-item .check-rental-item input{
	display: block;
	position: relative;
	top: 0;
}
.bike-item .check-rental-item input:checked{
	background-color: var(--primary-darker);
	border-color: var(--primary-darker);
}
.bike-item .check-rental-item .text{
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
	font-size: var(--f-size-sm);
	font-weight: 500;
	margin-left: calc(.75 * var(--size-xs));
}

#rental-response .bike-modal .modal-header{
	padding: 0;
}
#rental-response .bike-modal .modal-body{
	padding: var(--size-md);
}
.bike-modal .modal-body .img-section > div{
	position: relative;
}
.rental-bikes-slider-detail{
    width: 100%;
}
.bike-modal .img-section{
	margin-bottom: var(--size-sm);
}
.bike-modal .img-section img{
    height: 300px;
    width: 100%;
    object-fit: contain;
    display: block;
}
.bike-modal .slider-arrow{
	width: 42px;
	height: 42px;
	background-color: var(--light);
	border-color: var(--light);
}
.bike-modal .slider-arrow i{
	color: var(--dark);
}
.bike-modal .slider-arrow:hover{
	background-color: var(--gray-100);
	border-color: var(--gray-100);
}

.bike-item .img-wrapper .slider-arrow{opacity:0;transition: all .3s;}
.bike-item:hover .img-wrapper .slider-arrow{opacity:1;}

.bike-modal .slider-arrow.prev{
	left: calc(-1 * var(--size-xs));
}
.bike-modal .slider-arrow.next{
	right: calc(-1 * var(--size-xs));
}
.bike-modal .bike-params{
	margin-bottom: var(--size-sm);
}
.bike-modal .bike-params .row{
	margin-bottom: var(--size-xs);
}
.bike-modal .bike-params .row:last-child{
	margin-bottom: 0;
}
/* end */




/* sly sliders defaults */
.sly-slider-wrapper .follower{
	width: 0px;
	height: 0px;
	background-color: var(--primary);
	border-radius: 80px;
	position: fixed;
	transform: translate(-50%, -50%);
	z-index: 99999;
	cursor: none;
	pointer-events: none;
	transition: width 0.5s ease-out, height 0.5s ease-out, background-color 0.5s, transform 0.5s;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sly-slider-wrapper .follower.above-link{
	background-color: var(--secondary);
}
.sly-slider-wrapper .follower .inner{
	display: flex;
	align-items: center;
	position: relative;
}
.sly-slider-wrapper .follower .inner i{
	padding:8px;
	color: #fff;
}
.follower-wrapper:hover .follower{
	width: 80px;
	height: 80px;
}
.follower-wrapper{
	cursor: none;
}

.sly-slider-block{
	width: 100%;
	margin-bottom: var(--size-lg);
}
.sly-slider-block .sly-slider-list{margin: 0; padding: 0; height: 100%; list-style: none;}
.sly-slider-block .sly-slider-list li{
	float: left;
	margin: 0 var(--size-lg) 0 0;
	height: 100%;
	position: relative;
	width: 400px;
}
.sly-slider-block .sly-slider-list li a.item{
	cursor: none;
	display: block;
}


.sly-slider-wrapper .scrollbar{
	margin: 0 auto;
	width: 50%;
	height: 1px;
	background: var(--gray-100);
	margin-top: 0;
	margin-bottom: 2px;
}
.sly-slider-wrapper .scrollbar .handle{
	width: 100px;
	height: 3px;
	position: relative;
	top: -1px;
	background: var(--primary);
	border-radius: 2px;
	cursor: grab;
}
.sly-slider-wrapper .scrollbar .handle:active{
	cursor: grabbing;
}

.mobile-view{display: none;}
.sly-slider-wrapper.mobile-view .sly-slider-block{
	scrollbar-width: none;
	overflow-x: auto!important;
	width: calc(100% + var(--block-padding));
	cursor: default;
}
.sly-slider-wrapper.mobile-view.style-testimonials .sly-slider-block{
	padding-top: 20px;
	padding-bottom: 20px;
}
.sly-slider-wrapper.mobile-view ul{
    margin: 0;
    padding: 0;
    height: 100%;
    list-style: none;
    display: inline-flex;
    margin: 0 -5px;
    padding-right: 11px;
}
.sly-slider-wrapper.mobile-view .item{
	cursor: pointer!important;
}
.sly-slider-wrapper.mobile-view li{
	float: left;
    margin: 0 var(--size-md) 0 0;
    padding: 0;
    width: initial;
    height: 100%;
    position: relative;
    padding:0 5px;
    margin-right: 0;
}
.mobile-view .sly-slider-block::-webkit-scrollbar {
    display: none;
}
.slider-scroll-indicator{
    position: relative;
    width: 100%;
    outline: none;
    border: 0;
    padding: 0;
    background: rgba(0,0,0,0);
    cursor: default;
    margin-top: var(--size-sm);
	height: 15px;
    padding-top: 5px;
    overflow: hidden;
}
.slider-scroll-indicator:hover .bar{
	height: 5px;
	top:-2px!important;
}
.slider-scroll-indicator .bar-wrapper{
	width: 100%;
    background: var(--gray-100);
    transform: translateX(0);
    height: 1px;
    scrollbar-width: none;
    display: block;
    border-radius: 2px;
}
.slider-scroll-indicator .bar{
	will-change: transform;
    background: var(--primary);
    position: absolute;
    top: -1px!important;
    bottom: 0;
    width: 100%;
    height: 3px;
    transform-origin: 0 0;
    display: block;
    border-radius: 2px;
    cursor: pointer;
    transition: height 0.1s, top 0.1s;
}
.slider-scroll-indicator .bar::after{
	content: " ";
    position: absolute;
    top: -5px;
    bottom: -5px;
    left: 0;
    right: 0;
    display: block;
    cursor: pointer;
}
/* end sly sliders */


/* sly sliders style-bgimg */
.style-bgimg .item{
	position: relative;
}
.style-bgimg .img{
	overflow: hidden;
	width: 100%;
	height: 100%;
	position: relative;
}
.style-bgimg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.001);
	transition: transform .4s ease;
}
.style-bgimg .item:hover img{
	transform: scale(1.05);
}
.style-bgimg .img::after{
	content:"";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(0deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,.8) 100%);
}
.style-bgimg .upper-text-wrapper{
	position: absolute;
	top: var(--size-md);
	left: var(--size-md);
	right: var(--size-md);
}
.style-bgimg .upper-text-wrapper{
	color: #fff;
}
.style-bgimg .upper-text-wrapper .title{
	color: #fff;
	line-height: 1.2;
}
.style-bgimg .lower-text-wrapper{
	position: absolute;
	bottom: var(--size-md);
	left: var(--size-md);
	right: var(--size-md);
}
.style-bgimg .button-wrapper{
	text-align: center;
	position: absolute;
	left: 0;
    right: 0;
    bottom: -25px;
    height: 50px;
}
.style-bgimg .item:hover .btn-default{
	background-color: var(--secondary);
	border-color: var(--secondary);
}
/* end */


/* basic-slider */
.basic-slider .block-wide{
	overflow: hidden;
}
.basic-slider .block{
	position: relative;
}
.basic-slider .title-wrapper{
	margin-bottom: var(--size-lg);
}
.basic-slider .title-wrapper .col-text *{
	max-width: 800px;
}
.basic-slider .title-wrapper .col-auto{
	display: flex;
	align-items: flex-end;
}
.basic-slider .sly-slider-list{
	height: 420px;
}
.basic-slider .sly-slider-list li{
	width: 320px;
}
.basic-slider .sly-slider-list li .item{
	width: 100%;
	height: 420px;
}
.basic-slider .sly-slider-block{
	overflow: visible!important;
}
/* end */


/* banner-1 */
.banner-1 .banner-wrapper{
	position: relative;
}
.banner-1 .banner-wrapper .img-wrapper{
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
.banner-1 .banner-wrapper .img-wrapper img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner-1 .content-wrapper{
	position: relative;
	z-index: 2;
	min-height: 300px;
	display: flex;
	align-items: center;
	padding: var(--block-mb);
}
.banner-1.has-image .content-wrapper{
	color: #fff;
}
.banner-1.has-image .img-wrapper::after{
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, var(--dark) 0%, rgba(0,0,0,0) 100%);
}
.banner-1.has-image.centered .img-wrapper::after{
	background: radial-gradient(circle, var(--dark) 0%, rgba(0,0,0,0) 100%);
	opacity: .6;
}
/* end */


/* simple-img-slider */
.simple-img-slider .item{
	padding: var(--size-md);
	height: 200px;
}
.simple-img-slider .item img{
	object-fit: contain;
	width: 100%;
	height: 100%;
	filter: grayscale(1);
	transition: filter .3s;
}
.simple-img-slider .item img:hover{
	filter: grayscale(0);
}
/* end */


/* rental-bike-availability */
.rental-bike-availability{
	position: relative;
}
.rental-bike-availability .bg-wrapper{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.rental-bike-availability .bg-wrapper img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.rental-bike-availability .bg-wrapper::before{
	content:"";
	position: absolute;
	z-index: 2;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	left: 0;
	right: 0;
	top: 0;
	height: 50px;
}
.rental-bike-availability .bg-wrapper::after{
	content:"";
	position: absolute;
	z-index: 2;
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	left: 0;
	right: 0;
	bottom: 0;
	height: 100px;
}
.rental-bike-availability .block{
	position: relative;
	z-index: 3;
	padding-top: var(--block-mb);
	padding-bottom: var(--block-mb);
}
.rental-bike-availability .panel-title{
	margin-bottom: var(--size-md);
	font-weight: 600;
	color: #fff;
}
.rental-bike-availability .panel{
	width: 500px;
	margin: auto;
	padding: var(--size-lg);
	background-color: var(--primary);
	z-index: 5;
	position: relative;
}
.rental-bike-availability .panel .header-reservation-panel{
	padding: 0;
}
.rental-bike-availability .panel .btn-default{
	height: 60px;
	padding:0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.rental-bike-availability .panel .btn-default span{
	font-weight: 600;
}
.rental-bike-availability .panel .btn-default i{
	font-size: var(--f-size-h5);
	transition: transform .3s;
	margin-left: calc(.5 * var(--size-xs));
}
.rental-bike-availability .panel .btn-default:hover i{
	transform: translateX(5px);
}
.rental-bike-availability .relative > img{
	position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto 0;
    height: 320px;
}
.rental-bike-availability .relative .right{
	right: 0;
	left: initial;
}
/* end */


/* sticky-img-scrollable-text */
.sticky-img-scrollable-text .cols-wrapper{
	display: flex;
}
.sticky-img-scrollable-text .col-img{
	display: flex;
	justify-content: center;
    align-items: center;
    width: 50%;
    height: 100vh;
    position: sticky;
    top: 0;
}
.sticky-img-scrollable-text .col-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sticky-img-scrollable-text .col-content{
	width: 50%;
}
.sticky-img-scrollable-text .col-content .item{
	display: flex;
    align-items: center;
    height: 100vh;
    max-width: calc(var(--block) * .5);
    padding-right: var(--block-padding);
    padding-left: var(--block-padding);
}
/* end */


/* diffscroll-columns */
.diffscroll-columns .scroll-slider-wrap {
    display: flex;
}
.diffscroll-columns .scroll-slider-wrap .scroll-slider{
    width: 60%;
}
.diffscroll-columns .scroll-slider-wrap .scroll-slider .item{
    display: flex;
    align-items: center;
    height: 100vh;
}
.diffscroll-columns .scroll-slider-wrap .scroll-slider .item img{
    width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.diffscroll-columns .scroll-slider-wrap .scroll-slider-fixed{
    width: 40%;
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    padding-left: 100px;
    transition: all .05s;
    transform: translateY(var(--distance));
    will-change: transform;
}
/* end */


/* rooms-1 */
.rooms-1 .item{
	display: block;
	position: relative;
}
.rooms-1 .item .img-wrapper{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.rooms-1 .item .img-wrapper img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
    transform: scale(1.001);
}
.rooms-1 .item .img-wrapper::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(0deg, rgba(var(--dark-rgb),0.8) 0%, rgba(var(--dark-rgb),0.4) 50%, rgba(var(--dark-rgb),0) 100%);
}
.rooms-1 .content-wrapper{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	z-index: 5;
	color: #fff;
	padding: var(--size-lg);
	min-height: 500px;
}
.rooms-1 .content-wrapper .title{
	font-family: var(--font_secondary);
}
.rooms-1 .content-wrapper .spacer{
	width: 50px;
	height: 2px;
	background-color: #fff;
}
.rooms-1 .content-wrapper .bottom{
	padding-right: 110px;
}
.rooms-1 .bottom .longtext{
	display: none;
}
.rooms-1 .content-wrapper .price{
	font-size: var(--f-size-h5);
	font-family: var(--font_secondary);
}
.rooms-1 .content-wrapper .btn-default{
	position: absolute;
	right: var(--size-lg);
	bottom: var(--size-lg);
	margin-bottom: 0;
}
.rooms-1 .item:hover img{
	transform: scale(1.05);
}
.rooms-1 .item:hover .btn-default{
	background-color: #fff;
	color: var(--dark);
}
/* end */


/* promo-img-text */
.promo-img-text{
	position: relative;
	background: linear-gradient(270deg, var(--primary) 0%, var(--primary) 50%, transparent 50%, transparent 100%);
}
.promo-img-text::before{
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	right: 50%;
	bottom: 50%;
	background: var(--secondary);
	z-index: -1;
}
.promo-img-text .img-wrapper{
	position: relative;
    width: 100%;
    padding-bottom: 120%;
    background-color: var(--dark);
}
.promo-img-text .img-wrapper img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.promo-img-text .col-img{position: relative;}
.promo-img-text .col-img .desc{
	position: absolute;
	left: var(--size-lg);
	bottom: var(--size-lg);
	text-transform: uppercase;
	color: var(--gray-100);
}
.promo-img-text .col-text{
	background-color: var(--primary);
	color: #fff;
}
.promo-img-text .col-text .content-wrapper{
	height: 100%;
	padding: var(--block-mb) 0;
	display: flex;
	flex-direction: column;
	position: relative;
}
.promo-img-text .upper{
	width: calc(100% + 200px);
    position: relative;
    top: 0;
    right: 0;
    left: -200px;
    border-bottom: 1px solid rgba(255,255,255,.3);
    padding-bottom: var(--size-sm);
    margin-bottom: var(--size-sm);
}
.promo-img-text .title{
	font-size: 100px;
	font-weight: 700;
	word-break: break-word;
	position: relative;
	left: -200px;
	width: 400px;
	margin-top: auto;
	line-height: 1;
	bottom: var(--block-mb);
	position: absolute;
}
.promo-img-text .title *{
	margin-right: var(--size-xs);
}
.promo-img-text .quote{
	padding: var(--size-lg) 0 0 var(--size-lg);
	display: flex;
    justify-content: flex-end;
}
.promo-img-text .quote .symbol{
	margin-right: var(--size-lg);
}
.promo-img-text .quote .symbol svg{
	width: 40px;
	height: 40px;
}
.promo-img-text .quote .text-wrapper{
	width: 70%;
}
.promo-img-text .quote .text-wrapper .btn-default{
	margin-top: var(--size-md);
}
/* end */


/* halfs-slider */
.halfs-slider{
	position: relative;
}
.halfs-slider .block{
	z-index: 3;
	position: relative;
}
.halfs-slider .bg-wrapper{
	background-color: var(--primary);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.halfs-slider .bg-wrapper .row{
	height: 100%;
}
.halfs-slider .parallax-slider{
	width: 100%;
	height: 100%;
	position: relative;
}
.halfs-slider .parallax-slider .parallax-slider_slide{
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom:0;
	z-index: 1;
}
.halfs-slider .parallax-slider .parallax-slider_content{
	width: 100%;
	height: 100%;

	transition: border-color 3.6s linear,-webkit-clip-path .8s cubic-bezier(.29,.73,.45,1);
    transition: clip-path .8s cubic-bezier(.29,.73,.45,1),border-color 3.6s linear;
    transition: clip-path .8s cubic-bezier(.29,.73,.45,1),border-color 3.6s linear,-webkit-clip-path .8s cubic-bezier(.29,.73,.45,1);
    will-change: clip-path;
    overflow: hidden;
    -webkit-clip-path: polygon(120% 0,100% 0,100% 100%,100% 100%);
    clip-path: polygon(120% 0,100% 0,100% 100%,100% 100%);

}
.halfs-slider .parallax-slider .parallax-slider_slide img{
	object-fit: cover;
	width: 100%;
	height: 100%;
	transform: scale(1.2);
	transition: transform 1.5s cubic-bezier(.29,.73,.45,1);
}

.halfs-slider .parallax-slider_slide.bg{
	z-index: 2;
}
.halfs-slider .parallax-slider_slide.active{
	z-index: 3;
}

.halfs-slider .parallax-slider_slide.active .parallax-slider_content{
	clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
	animation: roll-out .8s;
}
@keyframes roll-out{
	from {clip-path: polygon(120% 0,100% 0,100% 100%,100% 100%);}
	to {clip-path: polygon(0 0,100% 0,100% 100%,0 100%);}
}
.halfs-slider .parallax-slider_slide.bg .parallax-slider_content{
	clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
}
.halfs-slider .parallax-slider_slide.active img{
	transform: scale(1.0);
}

.halfs-slider .content-wrapper{
    padding: var(--block-mb) 0;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 500px;
    color: #fff;
}
.halfs-slider .content-wrapper .upper{
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    padding-bottom: var(--size-sm);
    margin-bottom: var(--size-sm);
}
.halfs-slider .title-wrapper{
	padding-top: var(--size-lg);
}
.halfs-slider .nav-wrapper{
	display: flex;
	margin: 0 calc(0.5 * var(--size-xs) * -1);
}
.halfs-slider .nav-wrapper .slider-arrow{
	background-color: #fff;
	border-color: #fff;
	position: static;
	margin: 0 calc(var(--size-xs) * 0.5);
}
.halfs-slider .nav-wrapper .slider-arrow:hover{
	background-color: var(--secondary);
	border-color: var(--secondary);
}
.halfs-slider .headline-items{
	width: 700px;
	min-height: 350px;
	margin: auto;
	margin-top: -50px;
	margin-bottom: var(--block-mb);
	position: relative;
}
.halfs-slider .headline-items .headline{
	font-size: 90px;
	font-weight: 700;
	line-height: 1;
	transition: opacity .3s;
	opacity: 0;
	background-color: transparent!important;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	opacity: 0;
}
.halfs-slider .headline-items .headline > *{
	margin-right: var(--size-xs);
}
.halfs-slider .headline-items .headline.active{
	opacity: 1;
	position: static;
}


.halfs-slider .headline-items .headline[data-effect="mask-fade-up"].lines span{
	padding-bottom: 11px;
}

.halfs-slider .desc-wrapper{
	width: 50%;
	padding-right: var(--size-lg);
}
.halfs-slider .desc-wrapper .desc-items{
	min-height: 200px;
	display: flex;
	align-items: flex-end;
	position: relative;
}
.halfs-slider .desc-items .desc{
	transition: opacity .3s;
	opacity: 0;
	background-color: transparent!important;
}
.halfs-slider .desc-items .desc{
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
}
.halfs-slider .desc-items .desc.active{
	opacity: 1;
	position: static;
}
/* end */










@media (min-width: 1200px){
	.col-xl-fifth {flex: 0 0 auto;width: 20%;}
}


@media (max-width: 1700px){
	.video-block .yt-iframe-api{height:130%;top: -15%;bottom: 10%;padding:0;width: 130%;left: -15%;right: 15%;}

}
@media (max-width: 1399.98px){

}
@media (max-width: 1299.98px){

}
@media (max-width: 1199.98px){
	.testimonials-1 .slider-arrow.next {right: 0;}
	.testimonials-1 .slider-arrow.prev {left: 0;}
	.testimonials-1 .slick-slide {opacity: 1;transform: scale(1);transform-origin:initial;}
	.testimonials-1 .item{min-height: 0;padding:0 50px;}

	.items-on-img .custom-row {width: 85%;}

	.img-text-promo .desc .title{font-size: 70px;}
	.img-text-promo .desc .text{padding-left: 180px;}

	.video-block .block{height: 650px;}

	.grid-text-img-1 .solid-wrapper{padding: var(--size-md);}
	.grid-text-img-1 .content-wrapper{left: var(--size-md);right: var(--size-md);bottom: var(--size-md);}

	.promo-img-text .upper{margin-bottom: 0;}
	.promo-img-text .title{font-size: 80px;}

	.halfs-slider .headline-items .headline{font-size: 80px;}
}
@media (max-width: 1100px){

}
@media (max-width: 991.98px){
	.headline-wrapper{margin-bottom:var(--size-md);}
	.button-wrapper{margin-top:var(--size-md);}

	.items-on-img .image-block{height: 450px;}
	.items-on-img .custom-row .item{padding: var(--size-md);}
	.items-on-img.cols-3 .custom-row .item{width: 50%;}

	.items-on-img.cols-3 .custom-row .item:nth-child(3n){border-right: 1px solid var(--gray-100);}
	.items-on-img.cols-3 .custom-row .item:nth-last-child(-n+3){border-bottom: 1px solid var(--gray-100);}
	.items-on-img.cols-3 .custom-row .item:nth-child(2n){border-right: 0;}
	.items-on-img.cols-3 .custom-row .item:nth-last-child(-n+2){border-bottom: 0;}

	.img-text-promo .desc .title{font-size: 56px;}

	.fluid-text-img .content-wrapper .img{width: 50%;}
	.fluid-text-img .content-wrapper .text-content{width: 50%;}

	.video-block .block{height: 500px;}

	.gallery-masonry-1 .img-wrapper{height: 260px;}

	.fluid-gallery img{height: 400px;}
	.fluid-gallery .slick-slider{height: 400px;}

	.accomodation-detail .panel{width: 100%;}
	.reservation-panel-wrapper{width: 100%;}

	.rental-bike-availability .relative > img{display: none;}

	.diffscroll-columns .scroll-slider-wrap .scroll-slider{width: 50%;}
	.diffscroll-columns .scroll-slider-wrap .scroll-slider-fixed{width: 50%;padding-left: var(--size-lg);}

	.form-map .fluid-wrapper .col-form .col-wrapper{padding-right: var(--size-md);}
	.form-map .col-form .align{padding-right: var(--size-md);}

	.form-map.map-left .fluid-wrapper .col-form .col-wrapper{padding-left: var(--size-md);}
	.form-map.map-left .col-form .align{padding-left: var(--size-md);}

	.promo-img-text .title{width: 300px;left: -150px;bottom:var(--size-lg);font-size: 45px;}
	.promo-img-text .col-text .content-wrapper{padding: var(--size-lg) 0;}
	.promo-img-text .title *{margin-right: calc(var(--size-xs) * .5);}
	.promo-img-text .quote .symbol{margin-right: var(--size-sm);}
	.promo-img-text .quote{padding: var(--size-md) 0 0 var(--size-lg);}
	.promo-img-text .quote .text-wrapper{width: 84%;}

	.halfs-slider .headline-items .headline{font-size: 60px;}
	.halfs-slider .content-wrapper{padding: var(--size-lg) 0;}
	.halfs-slider .headline-items{margin-top: var(--size-md);}
	.halfs-slider .headline-items .headline > *{margin-right: calc(var(--size-xs) * .5);}
}
@media (max-width: 767.98px){
	.intro-fs-image .img-front{display: none;}
	.intro-fs-image h1 {font-size: 62px;}

	.items-on-img .image-block{height: 400px;}
	.items-on-img .custom-row {width: 100%;}
	.items-on-img .content-wrapper{padding: var(--block-padding);}

	.imggrid-text .order-text{order:2;}
	.imggrid-text .order-image{order:1;}
	.imggrid-text .align{padding:0!important;}

	.map-google-1 .wrapper{height: 400px;}

	.hero-section-2 .text-wrapper .block{padding-top: var(--block-mb);}
	.hero-section-2{--height: 400px;}

	.img-text-promo .image-reveal{width: 100%;}
	.img-text-promo .desc{position: static;width: 100%;margin-top: var(--block-padding);}
	.img-text-promo .desc .title{font-size: 46px;}
	.img-text-promo a:hover .image-reveal{transform: scale(1);}
	.img-text-promo .desc .text{padding-left: 0px;}

	.fluid-text-img .content-wrapper{flex-direction: column;}
	.fluid-text-img .content-wrapper .img{width: 100%;}
	.fluid-text-img .content-wrapper .text-content{width: 100%;padding: var(--block-padding);padding-bottom: 0;}
	.fluid-text-img .content-wrapper .text-content .align{max-width: 100%;}
	.fluid-text-img.text-left .img{order: 1;}
	.fluid-text-img.text-left .text-content{order: 2;}
	.fluid-text-img .content-wrapper .img{min-height: 400px;}
	.fluid-text-img.color-scheme-primary .content-wrapper .text-content{padding-bottom: var(--size-md);}

	.scale-on-scroll{height: 400px;}

	.text-img .col-text{order: 2;margin-top: var(--size-md);}
	.text-img .col-img{order: 1;}
	.text-img .col-img > .parallax-image{min-height: 300px;}

	.video-block .block{height: 450px;}
	.video-block .yt-iframe-api{height:160%;top: -30%;bottom: 30%;width: 160%;left: -30%;right: 30%;}

	.gallery-masonry-1 .img-wrapper{height: 240px;}

	.fluid-gallery img{width: 100%!important;object-fit: cover;}
	.fluid-gallery .btn-nav{display: none;}
	/*.fluid-gallery .prev{left: 5px;}
	.fluid-gallery .next{right: 5px;}*/

	.basic-slider .title-wrapper .col-text{margin-bottom: var(--size-sm);}

	.parallax-image{min-height: 300px;}

	.sticky-img-scrollable-text .cols-wrapper{display: block;}
	.sticky-img-scrollable-text .col-img{
		display: block;
	    width: 100%;
	    height: 400px;
	    position: static;
	    margin-bottom: var(--block-padding);
	}
	.sticky-img-scrollable-text .col-content{width: 100%;}
	.sticky-img-scrollable-text .col-content .item{
		display: block;
		height: auto;
	    padding-right: var(--block-padding);
	    padding-left: var(--block-padding);
	    margin-bottom: var(--block-padding);
	}
	.sticky-img-scrollable-text .col-content .item:last-child{margin-bottom: 0!important;}

	.diffscroll-columns .scroll-slider-wrap{display: block;}
	.diffscroll-columns .scroll-slider-wrap .scroll-slider{width: 100%;}
	.diffscroll-columns .scroll-slider-wrap .scroll-slider .item {height: auto;margin-bottom: var(--block-padding);position: relative;
		padding-bottom: 100%;}
	.diffscroll-columns .scroll-slider-wrap .scroll-slider .item img{position: absolute;top:0;left:0;width: 100%;height: 100%;}
	.diffscroll-columns .scroll-slider-wrap .scroll-slider .item:last-child{margin-bottom: 0;}
	.diffscroll-columns .scroll-slider-wrap .scroll-slider-fixed{width: 100%;position: static;height: auto;padding-left: 0;transform: none;}

	.form-map .map-wrapper{min-height: 400px;}
	.form-map .col-form{margin-bottom: var(--size-md);}
	.form-map .col-form .align{padding-right: 0;}

	.form-map .fluid-wrapper{flex-wrap: wrap;}
	.form-map .fluid-wrapper .col-form{width: 100%; margin-bottom: var(--size-md);}
	.form-map .fluid-wrapper .col-map{width: 100%;}
	.form-map .fluid-wrapper .col-form .col-wrapper{padding-right: var(--block-padding);}

	.form-map.map-left .col-map{order:2;}
	.form-map.map-left .col-form{order:initial;}
	.form-map.map-left .col-form .align{padding:0;}

	.promo-img-text .block{padding:0;}
	.promo-img-text .col-text .content-wrapper{padding: var(--size-md) var(--block-padding) var(--size-lg) var(--block-padding);}
	.promo-img-text .upper{width: 100%;left: 0;position: static;}
	.promo-img-text .quote .text-wrapper{width: 100%;}
	.promo-img-text .quote{order:3;padding-left: 0;padding-top: var(--size-sm);}
	.promo-img-text .quote .symbol svg{width: 32px;height: 32px;}

	.promo-img-text .title{order:1;position: static;width: 100%;max-width: 360px;margin-bottom: var(--size-md);font-size: var(--f-size-h1);
		margin-top: calc(-1*(var(--size-md) + 20px));
	}
	.promo-img-text .upper{order:2;}
	.promo-img-text .col-img .desc{left: var(--block-padding);bottom: var(--size-md);}

	.halfs-slider .bg-wrapper{position: static;}
	.halfs-slider .parallax-slider{padding-bottom: 100%;position: relative;}
	.halfs-slider .block{background-color: var(--primary);}
	.halfs-slider .headline-items{margin-top: var(--size-md);width: 100%;min-height: 120px;}
	.halfs-slider .desc-wrapper{width: 100%;padding-right: 0;}
	.halfs-slider .headline-items .headline{font-size: var(--f-size-h1);}
	.halfs-slider .title-wrapper{padding-top: var(--size-sm);}
	.halfs-slider .desc-wrapper .desc-items{min-height: 150px;}
}

@media (max-width: 575.98px){
	.parallax-image img{transform:initial;top:0;}

	.crumbs .ti{margin:0 2px;}

	.basic-items-wrapper .icongrid .icon i{font-size: 32px;}

	.centered .button-group{justify-content: start;}


	.xs-text-left{text-align: left;}

	.button-wrapper{margin-top:var(--size-sm);}

	.intro-fs-image h1 {font-size: 38px;}

	.grid-items-1 .img-wrapper{margin-bottom: var(--size-sm);}

	.text-main-1.special:not(.text-center) .content-wrapper{padding:0;}
	.text-main-1.special:not(.text-center) .content-wrapper::before{display: none;}

	.img-block-upsize {height: 300px;}

	.cols-text-advantages .content-wrapper{padding:0;max-width: 100%;}
	.cols-text-advantages .items .item img{height: 50px;}

	.testimonials-1{overflow: hidden;}
	.testimonials-1 .item{min-height: 0;padding:0 0px;margin:0 5px;}
	.testimonials-1 .slider-arrow{display: none!important;}
	.testimonials-1 .slick-list{overflow: initial!important;width: 85%;margin:0 auto;}
	.testimonials-1 .slick-slide {opacity: 0.3;}
	.testimonials-1 .slick-slide.slick-center {opacity: 1;}
	.testimonials-1 .headline-wrapper::before{display: none;}
	.testimonials-1 .slick-dots{display: flex!important;}
	.testimonials-1 .item .col-logo img{height: 22px;}

	.items-on-img .content-wrapper{padding: 0;margin:0;}
	.items-on-img .image-block{height: 250px;}
	.items-on-img .custom-row .item{width: 100%;border-right: 0;border-bottom: 1px solid var(--gray-100);}
	.items-on-img .custom-row .item:nth-last-child(-n+2){border-bottom: 1px solid var(--gray-100);}
	.items-on-img .custom-row .item:last-child{border-bottom: 0;}
	.items-on-img .custom-row {width: 100%;flex-direction: column;}
	.items-on-img .cta-text-block{padding: 0;margin: 0;}
	.fluid-text-img .content-wrapper .img{min-height: 250px;height: 250px;}
	.items-on-img:not(.img-hidden) .headline-wrapper{color: var(--dark);margin-top: var(--size-md);}

	.items-on-img.cols-3 .custom-row .item{width: 100%;}
	.items-on-img.cols-3 .custom-row .item{border-right: 0;border-bottom: 1px solid var(--gray-100);}
	.items-on-img.cols-3 .custom-row .item:nth-last-child(-n+2){border-bottom: 1px solid var(--gray-100);}
	.items-on-img.cols-3 .custom-row .item:nth-child(3n){border-right: 0;}
	.items-on-img.cols-3 .custom-row .item:last-child{border-bottom: 0;}

	.imggrid-text .img-grid-row{height: 400px;}

	.roller-wrapper{padding: 0;border: 0;}

	.map-google-1 .wrapper{height: 350px;}

	.hero-section-1 .block{padding-top: var(--block-mb);padding-bottom: var(--block-mb);justify-content: start!important;}
	.hero-section-1.height-small .block{min-height: 0;}
	.hero-section-1.height-medium .block{min-height: 0;}
	.hero-section-1.height-large .block{min-height: 0;}
	.hero-section-1 .img-wrapper{position: relative;}
	.hero-section-1 .img-wrapper::after{display: none;}
	.hero-section-1.color-white .align .title{color: var(--dark);}
	.hero-section-1.color-white .align .longtext{color: var(--dark);}

	.hero-section-2{--height: 250px;}

	.hero-section-3 h1 .whitespace{width: 8px;}
	.hero-section-3 .block{min-height: 400px;}

	.img-text-promo .image-reveal{height: 300px;}
	.img-text-promo .desc .title{font-size: 25px;}
	.img-text-promo .desc{margin-top: var(--size-md);}
	.img-text-promo .desc .text{margin-top: 20px;}

	.fluid-text-img .content-wrapper .text-content{padding: 0 var(--block-padding);margin-top: var(--size-md);}
	.fluid-text-img.color-scheme-primary .content-wrapper .text-content{margin-top: 0;padding: var(--size-md) var(--block-padding);}
	.fluid-text-img.text-left.color-scheme-primary .content-wrapper .text-content{padding: var(--size-md) var(--block-padding);}
	.fluid-text-img.text-left .content-wrapper .text-content{padding: 0 var(--block-padding);}

	.scale-on-scroll{height: 250px;}

	.video-block .block{height: 350px;}
	.video-block .yt-iframe-api{height:200%;top: -50%;bottom: 50%;width: 200%;left: -50%;right: 50%;}
	.video-block .triangle{width: 200px;height: 174px;}

	.gallery-masonry-1 .img-wrapper{height: 180px!important;}
	.gallery-masonry-1 .second{order:3;}
	.gallery-masonry-1 .third{order:2;}

	.imggrid-text .img-grid-row{margin: calc(-.25rem);}
	.imggrid-text .img-grid-row .img-grid-col{padding: 0 .25rem;}
	.imggrid-text .img-grid-row .img-grid-col > div{padding: .25rem 0;}
	
	.grid-text-img-1{--min-height: 250px;}
	.grid-text-img-1 .solid-wrapper .longtext{font-size: var(--f-size-main);}

	.grid-items-1 .item.style-1 .item-content{min-height: 0px;}
	.grid-items-1 .item.style-1 .img-wrapper{position: static;margin-bottom: var(--size-sm);height: auto;padding-bottom: 100%;position: relative;}
	.grid-items-1 .item.style-1 .img-wrapper::after{display: none;}
	.grid-items-1 .item.style-1 .img-wrapper img{position: absolute;}
	.grid-items-1 .item.style-1 .front-desc{position: static;color: initial;}
	.grid-items-1 .item.style-1 .button{display: none;}
	.grid-items-1 .item.style-1 .front-desc{transform:none!important;}
	.grid-items-1 .item.style-1 .arrow{display: flex;}
	.grid-items-1 .item:hover img{transform: scale(1.001);}

	.fluid-gallery img{height: 300px;}
	.fluid-gallery .slick-slider{height: 300px;}

	.accomodation-detail .main-params{margin-bottom: var(--size-md);font-size: var(--f-size-main);}

	.basic-slider .title-wrapper{margin-bottom: var(--size-md);}
	.mobile-view {display: block;}
	.basic-slider .sly-slider-list li .item{height: 300px;}
	.basic-slider .sly-slider-list li{width: 250px;}
	.sly-slider-wrapper.style-bgimg.mobile-view.with-button .sly-slider-block{height: 300px;}
	.sly-slider-block{margin-bottom: var(--size-sm);}
	.style-bgimg .upper-text-wrapper{top: var(--size-sm);left: var(--size-sm);right: var(--size-sm);}
	.style-bgimg .lower-text-wrapper{bottom: var(--size-sm);left: var(--size-sm);right: var(--size-sm);}
	.style-bgimg .lower-text-wrapper .btn-default{text-align: center;display: block;}

	.text-img .col-img > .parallax-image{min-height: 250px;}

	.parallax-image{min-height: 250px;}

	.submit-form{display: block;text-align: center;width: 100%;}

	.banner-1:not(.has-image) .content-wrapper{padding: 0 0;min-height: 0}
	.banner-1 .title{font-size: var(--f-size-h3);}
	.banner-1.has-image .content-wrapper{padding: 0;color: initial;min-height: 0;}
	.banner-1.has-image .banner-wrapper .img-wrapper{position: static;margin-bottom: var(--size-sm);}
	.banner-1.has-image .img-wrapper::after{display: none;}

	.simple-img-slider .item{padding: var(--size-sm);height: 100px;}

	.rental-bike-availability .panel{width: 100%;padding:var(--size-md);}
	.rental-bike-availability .panel .section.xs-w-6{width: 100%;}
	.rental-bike-availability .panel .btn-default{height: 50px;}
	.rental-bike-availability .block{padding-top: 0;padding-bottom: 0;}
	.rental-bike-availability .bg-wrapper{display: none;}
	.rental-bike-availability .panel-title{margin-bottom: var(--size-sm);}
	.rental-bike-availability:not(.mb-block,.mb-block-sm,.mb-block-big){margin-bottom: var(--block-mb);}

	.sticky-img-scrollable-text .col-img{margin-bottom: var(--size-md);}
	.sticky-img-scrollable-text .col-content .item{margin-bottom: var(--size-md);}

	.diffscroll-columns .scroll-slider-wrap .scroll-slider{margin-bottom: var(--size-md);}

	.rooms-1 .content-wrapper{padding: var(--size-md);}
	.rooms-1 .content-wrapper{min-height: 300px;}
	.rooms-1 .content-wrapper .btn-default{right: var(--size-md);bottom: var(--size-md);}

	.form-map .map-wrapper{min-height: 300px;}

	.halfs-slider .headline-items .headline > *{margin-right: calc(var(--size-xs) * .25);}
}
@media (max-width: 450px){
	.imggrid-text .img-grid-row{height: 350px;}

	.gallery-masonry-1 .img-wrapper{height: 150px!important;}

	.fluid-gallery img{height: 250px;}
	.fluid-gallery .slick-slider{height: 250px;}

	.accomodation-detail .panel .section{padding: var(--size-sm);}

}