@CHARSET "UTF-8";
*, html, body {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	color: #4c4c4c;
}
html, body { height: 100%; }
form { height: 100%; display: block; position: relative; }
body { background-color: #f2f2f2; }
a, a:hover, a:visited, a:active, a:focus { color: #4c4c4c; }

/* bootstrap-ext */

.popover { background-color: #49505b; border-color: #49505b; box-shadow: none; border-radius: 5px; }
.popover-content { font-family: 'Lato', sans-serif; background-color: #49505b; padding: 10px; color: #ffffff; border-color: #49505b; }
.popover.bottom > .arrow::after  { border-bottom-color: #49505b; }
.popover.left > .arrow::after  { border-left-color: #49505b; }
.popover.right > .arrow::after  { border-right-color: #49505b; }

.open > ul.dropdown-menu {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	opacity: 1;
}
ul.dropdown-menu {
	-webkit-transform-origin: top;
	transform-origin: top;
	-webkit-animation-fill-mode: forwards;  
	animation-fill-mode: forwards; 
	-webkit-transform: scale(1, 0);
	display: block;
	transition: all 0.1s linear;
	-webkit-transition: all 0.1s linear;
	opacity: .3;
	margin: 0;
	border-radius: 5px;
	border: none;
	background-color: #f2f2f2;
	box-shadow: 0px 5px 9px 1px rgba(0, 0, 0, 0.1);
	min-width: auto !important;
	width: 100%;
}
ul.dropdown-menu li a { font-weight: 300; font-size: 14px; color: #4c4c4c; }
ul.dropdown-menu li:hover a { background: #e8e8e8; }
ul.dropdown-menu li.selected a { font-weight: bold; color: #ff982f; }
ul.dropdown-menu li.separator { height: 1px; background-color: #e8e8e8; margin: 5px 0 5px 0; }

.app-shadow { box-shadow: 0px 2px 2.97px 0.03px rgba(0, 0, 0, 0.04); }

.app-wait { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 9999; display: flex; align-items: center; justify-content: center; -webkit-perspective: 400px; perspective: 400px; background: transparent; }
.spinner {
	position: relative;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-animation: wobble 3.99s ease-in-out infinite;
	animation: wobble 3.99s ease-in-out infinite;
}
.spinner:before, .spinner:after {
	display: block;
	content: "";
	width: 10vmin;
	height: 10vmin;
	border: 2.5vmin solid;
	border-radius: 50%;
	animation: spin 1.5s ease-in-out infinite both reverse;
}
.spinner:before {
	position: absolute;
	border-color: #448aff;
}
.spinner:after {
	border-color: #ff9a30;
	-webkit-animation-delay: -0.75s;
	animation-delay: -0.75s;
}
@-webkit-keyframes wobble {
  	0%, 100% {
		-webkit-transform: rotateX(7.5deg) rotateY(30deg);
		transform: rotateX(7.5deg) rotateY(30deg);
	}
	50% {
		-webkit-transform: rotateX(30deg) rotateY(-30deg) rotate(180deg);
		transform: rotateX(30deg) rotateY(-30deg) rotate(180deg);
	}
}
@keyframes wobble {
	0%, 100% {
		-webkit-transform: rotateX(7.5deg) rotateY(30deg);
		transform: rotateX(7.5deg) rotateY(30deg);
	}
	50% {
		-webkit-transform: rotateX(30deg) rotateY(-30deg) rotate(180deg);
		transform: rotateX(30deg) rotateY(-30deg) rotate(180deg);
	}
}
@-webkit-keyframes spin {
	0%, 100% {
		-webkit-transform: translateZ(50px) rotateX(12deg);
		transform: translateZ(50px) rotateX(12deg);
	}
	33% {
		-webkit-transform: translateZ(-50px) scale(0.4);
		transform: translateZ(-50px) scale(0.4);
	}
	66% {
		-webkit-transform: translateZ(-50px);
		transform: translateZ(-50px);
	}
}
@keyframes spin {
	0%, 100% {
		-webkit-transform: translateZ(50px) rotateX(12deg);
		transform: translateZ(50px) rotateX(12deg);
	}
	33% {
		-webkit-transform: translateZ(-50px) scale(0.4);
		transform: translateZ(-50px) scale(0.4);
	}
	66% {
		-webkit-transform: translateZ(-50px);
		transform: translateZ(-50px);
	}
}

.app-top { background-color: #ff9a31; position: relative; z-index: 100; }
.app-foot-1 { background-color: #4d4d4d; height: 70px; display: flex; align-items: center; }
.app-foot-2 { background-color: #333333; height: 45px; display: flex; align-items: center; }
.app-foot-2 * { color: #ffffff; }
.app-foot-menu { margin: 0 0 0 auto; list-style-type: none; padding: 0; display: table; }
.app-foot-menu li { margin-left: 25px; display: inline-block; }
.app-foot-menu a { color: #ffffff; font-size: 13px; line-height: 30px; }

.app-cookie { position: fixed; bottom: 55px; right: 35px; background-color: rgba(0,0,0,0.79); display: flex; align-items: center; padding: 25px 15px 25px 15px; border-radius: 5px; max-width: 650px; box-shadow: 0px 2px 2.97px 0.03px rgba(0, 0, 0, 0.04); z-index: 33333; }
.app-cookie span, .app-cookie br { display: none; }
.app-cookie div { margin: 0 40px 0 25px; opacity: 1; }
.app-cookie p { margin: 0 25px 0 0 ; font-size: 14px; line-height: 19px; color: #ffffff; opacity: 1; }
.app-cookie .fa, .app-cookie .fas { align-self: flex-start; cursor: pointer; font-size: 24px; margin-top: -10px; opacity: 1; color: #ffffff; }

.app-top-3 { display: flex; align-items: center; justify-content: flex-end; height: 38px; }
.app-head-currency { margin-right: 30px; }
.app-head-currency .dropdown-toggle { cursor: pointer; }
.app-head-currency .dropdown-toggle * { color: #ffffff; font-size: 13px; }
.app-head-currency .dropdown-menu { margin-top: 9px; box-shadow: none; background-color: #4d4d4d; border-radius: 2px; width: 60px; }
.app-head-currency .dropdown-menu a { padding: 3px 15px 3px 15px; color: #ffffff; }
.app-head-currency .dropdown-menu li.selected a { font-weight: bold; color: #ffffff; }
.app-head-currency .dropdown-menu li a { padding: 2px 10px 2px 15px; width: 60px; display: block; }
.app-head-currency .dropdown-menu li a:hover { background: none; font-weight: bold; color: #ffffff; }
.app-head-currency .dropdown-menu li.separator { height: 1px; background-color: rgba(255, 255, 255, 0.6); margin: 10px 0 10px 0; }

.app-dropdown-lang { margin-right: 35px; }
.app-dropdown-lang .dropdown-toggle { cursor: pointer; }
.app-dropdown-lang .dropdown-toggle * { color: #ffffff; font-size: 13px; }
.app-dropdown-lang .dropdown-toggle .fa { margin-left: 5px; }
.app-dropdown-lang ul.dropdown-menu { min-width: 140px !important; width: auto; padding: 0; margin-top: 9px; box-shadow: none; background-color: #4d4d4d; border-radius: 2px; }
.app-dropdown-lang .dropdown-menu li a { font-size: 14px; font-weight: 300; color: #ffffff; white-space: nowrap; }
.app-dropdown-lang .dropdown-menu li.selected a { font-weight: bold; }
.app-dropdown-lang .dropdown-menu li a:hover { background: none; font-weight: bold; }
.app-dropdown-lang .dropdown-menu li:first-of-type { margin-top: 5px; }
.app-dropdown-lang .dropdown-menu li:last-of-type { margin-bottom: 5px; }

.app-head-nav-ctl { padding: 0; }
.app-head-nav { display: flex; height: 70px; align-items: center; background-color: #ffffff; margin-bottom: -58px; position: relative; z-index: 10; padding-left: 30px; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; }
.app-head-nav-1 { height: 40px; line-height: 40px; margin-left: 20px; padding-left: 20px; border-left: 1px solid #1760ab; font-size: 18px; color: #1760ab; }

.app-top-menu { list-style-type: none; margin: 0 0 0 auto; padding: 0; display: flex; align-items: center; }
.app-top-menu li { padding-right: 30px; }
.app-top-menu li > a { font-size: 14px; color: #4c4c4c; }
.app-top-menu li > a:hover, .app-top-menu li > a:active { color: #ff9131; text-decoration: none; }
.app-top-menu li.sep { border-left: 1px solid #cccccc; height: 40px; width: 1px; }
.app-top-menu li.app-menu-page-inv a { color: #ff9131; }
.app-top-menu li.app-menu-page-inv:hover a, .app-top-menu li.app-menu-page-inv:active a { color: #4c4c4c !important; }

.app-head-bread-ctl { background-color: #ffffff; }
.app-head-bread { height: 45px; display: flex; align-items: center; padding-left: 15px; }
.app-head-bread img { width: auto; height: 16px; margin-right: 15px; }
.app-head-bread .fa-home { font-size: 19px; }
.app-head-bread .fa-angle-right { margin: 0 10px 0 10px; font-size: 14px; color: #4d4d4d; }
.app-head-bread p, .app-head-bread a { margin: 0; padding: 0; font-weight: 300; color: #4d4d4d; font-size: 12px; }

/* form */

.textbox { background-color: #f7f7f7; border: 1px solid #f7f7f7; border-radius: 2px; width: 100%; padding: 0 22px 0 22px; font-size: 14px; color: #4c4c4c; outline: none; }
input.textbox { height: 50px; line-height: 50px; }
textarea.textbox { height: 160px; padding: 22px; }
.inpErr, .ui-state-error { border: 1px solid #E50000 !important; }
.lblErr, .lblErr a { color: #E50000 !important; }
.ui-state-error .checkbox-label { color: #E50000 !important; }

/* btn */

.app-btn-1 { display: flex; height: 50px; min-height: 50px; align-items: center; justify-content: center; color: #ffffff; font-weight: bold; font-size: 15px; line-height: 18px; text-transform: uppercase; cursor: pointer; background-color: #ff982f; border-radius: 5px; }

/* page */

.app-page { border-radius: 5px; background-color: #ffffff; }
.app-page-head { width: 100%; height: 100%; background-repeat: no-repeat; background-size: cover; background-position: top left; position: absolute; z-index: 1; }
.app-page-head-wrp { width: 100%; max-height: 300px; height: 300px; position: relative; overflow: hidden; }
.app-page-title { font-size: 25px; font-weight: bold; color: #4d4d4d; padding-left: 30px; display: flex; align-items: center; height: 60px; }
.app-page-content { background-color: #f2f2f2; padding: 25px 0 30px 0; }

.app-page-h1, .app-terms > h4 { font-size: 18px; font-weight: bold; margin: 0; text-transform: uppercase; background: url(https://web.archive.org/web/20191230015932im_/https://www.eurorest-hotels.com/images/imge09.png) bottom left no-repeat; padding-bottom: 5px; margin-bottom: 30px; margin-top: 40px; }
.app-page .app-page-txt1, .app-hotel-content .app-page-txt1 { font-size: 14px; line-height: 20px; text-align: justify; }
.app-page .app-page-txt1 a, .app-hotel-content .app-page-txt1 a { text-decoration: underline; }
.app-hotel-content .app-page-txt1 a.app-page-txt1-a1 { text-decoration: none; text-transform: uppercase; font-weight: bold; }
.app-hotel-content .app-page-txt1 a.app-page-txt1-a1:hover { text-decoration: underline; }
.app-page .app-page-h1:first-of-type, .app-terms > h4 { margin-top: 0; }

/* anim */

.zoomIn, .fadeInUp, .slideInRight, .slideOutLeft, .slideOutRight, .fadeOut, .fadeIn {
	-webkit-animation-duration: 150ms;
	animation-duration: 150ms;
	-webkit-animation-delay: 0;
	animation-delay: 0;
}

/* search */

.app-hotel-search { position: relative; }
.app-hotel-search-inp { display: flex; align-items: center; }
.app-hotel-search .textbox { height: 40px; border-radius: 0; padding-right: 40px; }
.app-hotel-search .fa { font-size: 20px; margin-left: -19px; cursor: pointer; z-index: 2; }
.app-hotel-search .fa:hover { color: #ff9a31; }
.app-hotel-search-visible .textbox { position: absolute; width: 0; top: -10px; right: -10px; z-index: 1; padding-left: 20px; }
.app-hotel-search-hidden .textbox { display: none; }
.app-hotel-search-hidden .fa { margin-left: 0; }
.app-hotel-search-results { 
	display: none;
	position: absolute; 
	top: 35px; 
	right: -10px; 
	border-radius: 2px;
	border: none;
	background-color: #f7f7f7;
	z-index: 101;
	padding: 20px;
}
.app-hotel-search-results ul { padding: 0; margin: 0; list-style-type: none; position: relative; max-height: 300px; }
.app-hotel-search-results ul li { padding: 2px 0 2px 0; }
.app-hotel-search-results ul a { color: #808080; font-size: 15px; font-weight: 300; display: block; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
.app-hotel-search-results ul a span, .app-hotel-search-results ul li { color: #808080; font-size: 15px; font-weight: 300; }
.app-hotel-search-results ul a span .fa { color: #808080; font-size: 13px; padding-left: 8px; padding-right: 8px; }
.app-hotel-search-results ul a b { color: #808080; font-size: 15px; font-weight: bold; }
.app-hotel-search-results ul a:hover *, .app-hotel-search-results ul a span:hover * { color: #ff9a31; }
.app-hotel-search-loader { position: absolute; width: 100%; height: 2px; top: 0; left: 0; display: none; }
.load-bar {
	position: relative;
	width: 100%;
	height: 2px;
	background-color: #ff9a32;
}
.bar {
	content: "";
	display: inline;
	position: absolute;
	width: 0;
	height: 100%;
	left: 50%;
	text-align: center;
}
.bar:nth-child(1) {
	background-color: #ff9a32;
	animation: loading 1s linear infinite;
}
.bar:nth-child(2) {
	background-color: #1661a5;
	animation: loading 1s linear 1s infinite;
}
@keyframes loading {
	from { left: 50%; width: 0; z-index:100; }
	33.3333% { left: 0; width: 100%; z-index: 10; }
	to { left: 0; width: 100%; }
}

/* xs menu */

.app-top-menu-xs { display: table; margin: 20px 0 0 auto; }
.app-top-menu-xs .fa, .app-top-menu-xs .fas { color: #ffffff; font-size: 15px; cursor: pointer; }
.app-menu-xs-bck { background-color: #000000; opacity: 0.75; position: fixed; left: 0; right: 0; width: 100vw; height: 100vh; z-index: 99; display: none; }
.app-menu-xs { width: 320px; position: absolute; right: 0; top: 0; background-color: #ffffff; display: none; z-index: 100; box-shadow: 0px 0px 15px 2px rgba(77, 77, 77, 0.5); -moz-box-shadow: 0px 0px 15px 2px rgba(77, 77, 77, 0.5); -webkit-box-shadow: 0px 0px 15px 2px rgba(77, 77, 77, 0.5); }
.app-mxs-1 { height: 60px; display: flex; align-items: center; padding: 0 20px 0 0; cursor: pointer; }
.app-mxs-1a { width: 50px; height: 60px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.app-mxs-1 > span { margin: 0 0 0 auto; display: flex; align-items: center; }
.app-mxs-1 .dropdown-toggle * { color: #4d4d4d; }
.app-mxs-1 .app-head-currency { margin-right: 0; }
.app-mxs-2 { list-style-type: none; margin: 5px 20px 20px 40px; padding: 0; }
.app-mxs-2 li { padding: 5px 0 5px 0; }
.app-mxs-2 li a { font-size: 14px; color: #4c4c4c; }
.app-mxs-2 li.app-menu-page-inv a { color: #ff9131; }
.app-mxs-3 { background-color: #e6e6e6; padding: 20px; }
.app-mxs-3 > span { display: block; margin-bottom: 10px; }
.app-mxs-3 > span:last-of-type { margin-bottom: 0; background-color: #ffffff; cursor: pointer; }
.app-mxs-3 > span:last-of-type .dropdown-toggle { display: flex; align-items: center; width: 100%; height: 55px; padding: 0 23px 0 23px; }
.app-mxs-3 > span:last-of-type .dropdown-toggle .fa, .app-mxs-3 > span:last-of-type .dropdown-toggle .fas { margin: 0 0 0 auto; }
.app-mxs-search { padding: 0 20px 0 20px; }
.app-mxs-search .app-hotel-search-visible .textbox { position: static; width: 100%; }
.app-mxs-search .app-hotel-search-hidden .textbox { display: inline; }
.app-mxs-search .fa, .app-mxs-search .fas { margin: 0; cursor: auto; position: absolute; right: 15px; }
.app-mxs-search .app-hotel-search-results { width: 100%; top: 45px; right: 0; }
.app-mxs-search .app-hotel-search-results ul a span { display: none; }
.app-mxs-fav .app-hotel-fav-toggle { padding: 20px 0 0 40px; }
.app-mxs-fav .app-hotel-fav-list { width: 100%; top: 30px; right: auto; left: 0; }
.app-mxs-fav .app-hotel-fav-item-1 { display: none; }
.app-mxs-fav .app-hotel-fav-item-3 h2 { font-size: 16px; }

/* hotel iten on list */

.app-hotel-item-l { 
	margin-bottom: 15px; 
	background-color: #ffffff; 
	border-radius: 5px; 
	padding: 20px 30px 25px 30px; 
}
.app-hotel-item-l1 { display: flex; margin-bottom: 20px; }
.app-hotel-item-l1 a { display: flex; align-items: flex-start; }
.app-hotel-item-l1 a:hover, .app-hotel-item-l1 a:active, .app-hotel-item-l1 a:focus, .app-hotel-item-l1 a:visited { text-decoration: none; }
.app-hotel-item-l1 a h2 { margin: 0 5px 0 0; font-size: 23px; font-weight: 600; color: #4d4d4d; }
.app-hotel-item-l1 a h2:hover { text-decoration: underline; }
.app-hotel-item-l1 a .fa, .app-hotel-item-l1 a .far { margin-left: 2px; font-size: 13px; color: #ff9a31; }
.app-hotel-item-l11 { margin: 0 0 0 auto; position: relative; white-space: nowrap; }
.app-hotel-item-l11 > .fa { font-size: 16px; color: #4d4d4d; cursor: pointer; margin-left: 20px; }
.app-hotel-item-l11 > .fa-times-circle { font-size: 18px; }
.app-hotel-item-l11 > .fa-times-circle:hover { color: #d50000; }
.app-hotel-item-l11 > .fa-comments:hover, .app-hotel-item-l11 > .fa-comments:active, .app-hotel-item-l11 > .fa-comments:focus { color: #ff9a31; }
.app-hotel-item-l11 .app-hotel-item-addr-toggle { font-size: 18px; }
.app-hotel-item-l2 { display: flex; align-items: stretch; margin-right: 20px; }
.app-hotel-item-l21 { position: relative; width: 230px; padding-right: 30px; min-height: 170px; }
.app-hotel-item-l21 .app-hotel-item-img1 { max-width: 200px; height: auto; border-radius: 3px; } 
.app-hotel-item-l21 .app-hotel-item-img2 { position: absolute; top: 10px; left: 10px; }
.app-hotel-item-l22 { display: flex; flex-direction: column; justify-content: space-between; }
.app-hotel-item-l24 { display: flex; align-items: center; }
.app-hotel-item-l24 div, .app-hotel-filter-info div { display: flex; align-items: center; height: 37px; border-width: 2px; border-style: solid; border-radius: 3px; padding: 0 10px 0 10px; font-size: 13px; font-weight: 600; margin-right: 8px; text-transform: uppercase; }
.app-hotel-item-l24 div img, .app-hotel-filter-info div img { margin-right: 10px; }
.app-htl-lake { border-color: #08c568; color: #08c568; }
.app-htl-mnt { border-color: #ff982f; color: #ff982f; }
.app-htl-sea { border-color: #44b7ed; color: #44b7ed; }
.app-hotel-item-l24 div img { margin-right: 10px; }
.app-hotel-item-l25, .app-hotel-item-l25 a { font-size: 13px; font-weight: 300; color: #4d4d4d; }
.app-hotel-item-l25 img { width: 25px; height: auto; margin-right: 10px; }
.app-hotel-item-l26 .fa, .app-hotel-item-l26 .fas { font-size: 15px; color: #4d4d4d; margin-right: 8px; }
.app-hotel-item-l26 > b { font-size: 15px; font-weight: bold; line-height: 25px; color: #4d4d4d; }
.app-hotel-item-l26 > span { font-size: 14px; font-weight: 300; line-height: 19px; color: #4d4d4d; }
.app-hotel-item-l26 > span span { font-size: 14px; font-weight: bold; color: #4d4d4d; }

.app-hotel-item-s { margin-bottom: 10px; background-color: #ffffff; border-radius: 5px; padding: 15px; }
.app-hotel-item-s1 { margin-bottom: 10px; }
.app-hotel-item-s1 a { display: flex; align-items: center; }
.app-hotel-item-s1 a h2 { margin: 0; font-size: 14px; font-weight: bold; color: #4d4d4d; line-height: 18px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: calc(100% - 20px); }
.app-hotel-item-s1 a:hover, .app-hotel-item-s22 a:active, .app-hotel-item-s22 a:focus, .app-hotel-item-s22 a:visited { text-decoration: none; }
.app-hotel-item-s1 a:hover { text-decoration: underline; }
.app-hotel-item-s1 span { white-space: nowrap; }
.app-hotel-item-s1 span:hover { text-decoration: none; }
.app-hotel-item-s1 a .fa, .app-hotel-item-s1 a .far { margin-left: 2px; font-size: 11px; color: #ff9a31; }
.app-hotel-item-s1 a .fa:first-of-type, .app-hotel-item-s1 a .far:first-of-type { margin-left: 8px; }
div.app-hotel-item-f { font-size: 10px; color: #ffffff; display: flex; align-items: center; padding: 0 8px 0 8px; height: 23px; border-radius: 3px; margin-right: 6px; line-height: 1em; }
.app-hotel-s11 { background-color: #43bbf7; }
.app-hotel-s12 { background-color: #a9d13b; }
.app-hotel-s13 { background-color: #fdca34; }
.app-hotel-s1 img { margin: 0 0 0 auto; width: 35px; height: auto; }
.app-hotel-item-s11 { margin: 0 0 0 auto; position: relative; white-space: nowrap; }
.app-hotel-item-s11 > .fa { font-size: 16px; color: #4d4d4d; cursor: pointer; margin-left: 12px; }
.app-hotel-item-s11 .app-hotel-item-addr-toggle { font-size: 18px; }
.app-hotel-item-s11 .fa-chevron-up { display: none; }
.app-hotel-item-s2 { display: flex; align-items: stretch; }
.app-hotel-item-s21 { width: 150px; min-width: 150px; padding-right: 15px; }
.app-hotel-item-s21 .app-hotel-item-img1 { max-width: 100%; height: auto; border-radius: 3px; } 
.app-hotel-item-s21 .app-hotel-item-img2 { position: absolute; top: 3px; left: 3px; width: 24px; height: auto; }
.app-hotel-item-s22 { display: flex; flex-direction: column; justify-content: flex-start; }
.app-hotel-item-s22l { margin: 0; display: flex; align-items: center; }
.app-hotel-item-s22l div { font-size: 11px; font-weight: 300; color: #4d4d4d; margin: 0 0 0 28px; }
.app-hotel-item-s22 .app-hotel-item-s22l:first-of-type div { margin-left: 0; }
.app-hotel-item-s22 img { width: 18px; height: auto; margin-right: 10px; }
.app-hotel-item-s23 { align-self: flex-start; margin-top: auto; display: flex; align-items: center; flex-wrap: wrap; }
.app-hotel-item-s23 .app-hotel-item-f { margin-bottom: 3px; }
 .app-hotel-item-s23 .app-hotel-item-f:last-of-type { margin-bottom: 0; }
.app-hotel-item-s3 { margin-top: 10px; }
.app-hotel-item-s31 .fa, .app-hotel-item-s31 .fas { font-size: 11px; color: #4d4d4d; margin-right: 4px; }
.app-hotel-item-s31 > b { font-size: 12px; font-weight: bold; line-height: 16px; color: #4d4d4d; }
.app-hotel-item-s31 > span { font-size: 12px; font-weight: 300; line-height: 14px; color: #4d4d4d; display: block; }
.app-hotel-item-s31 > span span { font-size: 12px; font-weight: bold; color: #4d4d4d; }
.app-hotel-item-s31 br:last-of-type { display: none; }

/* about */

.app-abt-1 { margin-top: 50px; }
.app-abt-2 img { margin-bottom: 20px; }
.app-abt-3 { font-size: 16px; font-weight: bold; line-height: 22px; color: #4d4d4d; padding-bottom: 30px; }
.app-abt-4 { font-size: 14px; line-height: 22px; }
.app-abt-5 { display: flex; border-radius: 5px; background-color: #ff982f; height: 50px; align-items: center; justify-content: center; }
.app-abt-5 a { font-size: 15px; font-weight: bold; color: #ffffff; text-transform: uppercase; }
.app-abt-5 a:hover, .app-abt-5 a:focus, .app-abt-5 a:active, .app-abt-5 a:visited { text-decoration: none; }

/* terms */

.app-terms-1 {
	counter-reset: item;
	margin-left: 0;
	padding-left: 0;
}
.app-terms-1 li {
	position: relative;
	margin: 20px 0 0 50px;
	padding: 0;
	list-style: none;
	color: #4d4d4d;
	font-size: 15px;
	line-height: 20px; 
	text-align: justify; 
}
.app-terms-1 li:before {
	content: counter(item) ". ";
	counter-increment: item;
	position: absolute;
	top: -3px;
	left: -50px;
	box-sizing: border-box;
	margin-right: 8px;
	padding: 4px;
	font-weight: bold;
	text-align:center;
}
.app-terms-1 li a { text-decoration: underline; }
.app-terms-2 { counter-reset: item 8; }
.app-terms-3 { counter-reset: item 9; }
.app-terms-4 { counter-reset: item 13; }
.app-terms-1a, .app-terms-1b { padding-left: 0; counter-reset: item; }
.app-terms-1a > li:first-of-type, .app-terms-1b > li:first-of-type { margin-top: 20px; }
.app-terms-1a li:before { content: "9." counter(item) ". "; }
.app-terms-1b li:before { content: "9.3." counter(item) ". "; }

/* privacy */

#privacy .app-page-txt1 { padding-bottom: 15px; }
.app-prv-1 { font-size: 15px; font-weight: bold; line-height: 20px; color: #4d4d4d; margin-bottom: 30px; text-align: justify; }

/* contact */

#ctcForm { padding-top: 20px; }
#ctcInfo { padding-top: 20px; display: none; font-size: 15px; line-height: 22px; }
#ctcForm .row { margin-bottom: 10px; }
#ctcForm .app-btn-1 { min-width: 220px; width: 220px; margin: 20px 0 0 auto; }
.app-ctc-hint { text-transform: uppercase; }
.app-ctc-1 { font-weight: bold; font-size: 16px; line-height: 22px; color: #4d4d4d; padding-bottom: 25px; }

/* lightbox */

.lcl_thumbs_toggle { display: none !important; }

/* info */

#info .app-page-txt1 { text-align: left; }
.app-info-1 { display: flex; height: 70px; align-items: center; justify-content: center; margin-bottom: 10px; }
.app-info-2 { font-size: 18px; line-height: 20px; font-weight: bold; text-align: center; text-transform: uppercase; }
.app-info-3 { height: 3px; width: 100px; background-color: #ff8f00; margin: 10px auto 25px auto; }

/* get */

#get .app-page-txt1 { text-align: left; }
.app-info-4 { color: #4d4d4d; font-size: 18px; line-height: 20px; text-align: center; margin: -10px 0 30px 0; }
.app-get-1 { display: flex; align-items: center; justify-content: center; border-radius: 5px; background-color: #ff982f; height: 60px; min-width: 270px; width: 270px; margin: 35px auto 0 auto; color: #ffffff; font-size: 22px; font-weight: bold; }
.app-get-1:hover, .app-get-1:active, .app-get-1:visited, .app-get-1:focus { text-decoration: none; color: #ffffff; }

/* ************************************************************************************************************************ */

/* xs */
@media (max-width: 767px) {
	.app-top { height: 60px; }
	.app-top-1 { padding-top: 20px; }
	.app-top-1 img { width: 108px; }
	.app-foot-2 * { font-size: 12px; text-align: center; }
	.app-page-head-wrp { min-height: 250px; height: 250px; display: none; }
	.app-page { padding: 15px; }
	.app-page-h1, .app-terms > h4 { margin-left: -15px; padding-left: 15px; }
	.app-abt-1 { margin-top: 30px; }
	.app-abt-5 { min-width: 200px; width: 200px; margin: 30px auto 30px auto; }
	.app-ctc-2 { margin-bottom: 10px; }
	.app-info { margin-top: 15px; }
	.app-cookie { bottom: 0; left: 0; width: 100%; }
}

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

/* sm */
@media (min-width: 768px) {
	.app-top { height: 60px; }
	.app-top-1 { padding-top: 20px; }
	.app-top-1 img { width: 108px; }
	.app-foot-2 * { font-size: 12px; text-align: center; }
	.app-page { padding: 25px; }
	.app-page-h1, .app-terms > h4 { margin-left: -25px; padding-left: 25px; }
	.app-abt-5 { min-width: 320px; width: 320px;  margin: 50px 30px 0 auto; }
	.app-ctc-2 { padding-right: 0; }
	.app-ctc-3 { padding-left: 10px; }
	.app-hotel-item-s1 > span { font-size: 13px; }
	.app-hotel-item-s22 a h2 { font-size: 20px; }
	.app-hotel-item-s22 p { font-size: 14px }
	.app-hotel-item-s31 .fa { font-size: 14px; }
	.app-hotel-item-s31 > b { font-size: 14px; }
	.app-hotel-item-s31 > span { font-size: 12px; line-height: 16px; }
	.app-hotel-item-s31 > span span { font-size: 12px; }
}

/* xs i sm */
@media (max-width: 991px) {
	.app-page { margin-top: 10px; }
	.app-page-content { padding-top: 15px; padding-bottom: 15px; }
	.app-terms-1 li { margin-left: 30px; }
	.app-terms-1 li:before { left: -30px; }
}

/* md */
@media (min-width: 992px) {
	.container { width: 1230px; }
	.app-top { height: 67px; }
	.app-foot-2 * { font-size: 12px; text-align: left; }
	.app-page { padding: 30px 25px 30px 30px; }
	.app-page-h1, .app-terms > h4 { margin-left: -30px; padding-left: 30px; }
	.app-page-content { padding: 25px 0 30px 0; }
	.app-page-content-ctl { display: flex; }
	.app-hotel-search { width: 19px; }
	.app-hotel-search-visible .fa { margin-left: 0; }
}

/* lg */
@media (min-width: 1200px) {
}

/*
     FILE ARCHIVED ON 01:59:32 Dec 30, 2019 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 21:03:41 Apr 01, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.874
  exclusion.robots: 0.026
  exclusion.robots.policy: 0.011
  esindex: 0.016
  cdx.remote: 17.185
  LoadShardBlock: 183.754 (3)
  PetaboxLoader3.datanode: 150.357 (4)
  PetaboxLoader3.resolve: 85.237 (2)
  load_resource: 118.11
*/