/* custom bis */

.caption-image-box.terzo{
	width: calc(33% - 1%);
}

div.col.box-2 span.title-menu-folder-list{
	margin-bottom: 40px;
	display: block;
	text-transform: uppercase;
	font-weight: 400;
    color: #817374;
    font-size: 1.5em;
}

/* modificare su custom */

#header-logo{
  float: left;
}

#lang-selector{
	cursor: pointer;
}

ul.lang-select{
	top:34px;
	left: -10px;
	z-index: 2;
	background: #eaebf3;
}

ul.lang-select li{
	padding: 0px 25px 0 10px;
	margin:5px 0;
}

.topmenu .button-book-you-stay{
	/*padding: 11px 7px;*/
  padding: 9px 7px;
  cursor: pointer;
}

.topmenu ul li {
    display: inline-block;
}

.hotel-top-address{
  float: right;
  position: absolute;
  right: 0;
  top: 10px;
}

.hotel-top-address p{
  margin:0;
}

.hotel-top-address a{
  text-decoration: none;
}
.hotel-top-address a:hover{
  text-decoration: underline;
}

footer{
	margin-top: 80px;
}

/* modal bootstrap start */

.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  /*width: auto;*/
  margin: 30px auto;
  width: 70%;
}
.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  /*border-radius: 6px;*/
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  display: none;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 10px;
}

.modal-body video{
	width: 100%;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
  display: none;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    /*width: 600px;*/
    /*margin: 30px auto;*/
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.clearfix:before,
.clearfix:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}
.clearfix:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}

/* modale hotel camere start */

.modal-rooms .modal-header{
  display: inherit;
  padding: 10px 15px;
}

.modal-rooms .modal-header .close{
  float: right;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: #fff;
  border:none;
  font-size: 20px;
  padding: 0;
  cursor: pointer;
}

/* modale hotel camere end */

/* modal bootstrap end */

/* menu folder e folder-list start */

.menu li a{
 text-decoration: none;
 padding-bottom: 0;
 position: relative;
 cursor: pointer;
}
.menu li a:after{
 display: block;
 position: absolute;
 left: 0;
 bottom: -5px;
 width: 0;
 height: 2px;
 background-color: #e2c9ab;
 content: "";
 -webkit-transition: width 0.5s;
 -moz-transition: width 0.5s;
 -ms-transition: width 0.5s;
 -o-transition: width 0.5s;
 transition: width 0.5s;
}

.menu li a:hover:after{
 width: 100%;
}
.menu li a.current:after{
 display: block;
 position: absolute;
 left: 0;
 bottom: -5px;
 width: 100%;
 height: 2px;
 background-color: #e2c9ab;
 content: "";
 -webkit-transition: width 0.5s;
 -moz-transition: width 0.5s;
 -ms-transition: width 0.5s;
 -o-transition: width 0.5s;
 transition: width 0.5s;
}

/* menu folder e folder-list start */

/* contact us start */

.folder-contact-us h2{
	border-bottom: 1px solid #e2c9ab;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.visit-the-website a{
	text-decoration: none;
	font-weight: bold;
}
.visit-the-website a:hover{
	text-decoration: underline;
}

.button-book.box-book a{
	text-transform: uppercase;
	font-weight: bold;
}

.folder-contact-us .box-3{
  margin-bottom: 30px;
}

/* contact us end */

/* folder hotel start */

.folder-hotels .caption-image-box{
  width: 60%;
}

.box-3.block-hotel,
.box-3.block-offer{
  position: relative;
  padding-bottom: 55px;
  margin-bottom: 30px;
  height: 345px;
}
.box-3.block-offer{
	height:380px;
}

.box-3.block-hotel div.image-box:hover img,
.box-3.block-offer div.image-box:hover img,
.offer div.image-box:hover img{
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.box-3.block-hotel .link-hotel,
.box-3.block-offer .discover-offer{
  position: absolute;
  left: 0;
  bottom: -10px;
}

.box\-3.block-hotel .link-hotel a,
.box-3.block-offer .discover-offer a,
.offer .link-offer a{
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
}
.box-3.block-hotel .link-hotel a:hover,
.box-3.block-offer .discover-offer a:hover,
.offer .link-offer a:hover{
  text-decoration: underline;
}

.box-3.block-hotel .button-book,
.box-3.block-offer .button-book{
  position: absolute;
  right: 0;
  bottom: -10px;
	/*display:none; /* -------------------- in attesa di implementare il nuovo booking */
}

.box-3.block-hotel .button-book a,
.box-3.block-offer .button-book a,
.offer .button-book a{
  color: #fff;
  background: #6d5f60;
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px 5px;
}

/* folder hotel end */

/* offerta - experience start */

.offer h1{
  font-size: 16px;
}

.offer .image-box{
  margin-bottom: 30px;
}

.description-box .offer-overview h2{
  font-weight: bold;
  margin-bottom: 25px;
}
.description-box .offer-amenities h2{
  margin-bottom: 25px;
}

.description-box .offer-overview,
.description-box .offer-amenities{
  margin-bottom: 40px;
}

.offer .link-offer{
  float: left;
}

.offer .link-offer i{
  font-size: 18px;
}

.offer .button-book{
  float: right;
	/*display:none; /* -------------------- in attesa di implementare il nuovo booking */
}

.layout-offerta{
	margin-top: 40px;
}
.offer-amenities ul{
  -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
    -webkit-column-gap: 60px; /* Chrome, Safari, Opera */
    -moz-column-gap: 60px; /* Firefox */
    column-gap: 60px;
    margin-bottom: 20px;
    padding: 0 20px;
}
.offer-amenities ul li{
  list-style-image: url(../images/list_bullet.png);
  line-height: 1.5;
}
.offer .caption-image-box.terzo{
  width: calc(65% - 1%)
}
.offer .image-box{
  margin-bottom: 0;
}
.overview{
  position: relative;
}
.wrapper_link{
  position: absolute;
  bottom: 15px;
  width: 48.85%;
}
@media (max-width:639px){
  .wrapper_link{
    position: relative;
    margin: 30px 0;
    width: 100%;
  }
  .offer-amenities ul{
    -webkit-column-count: 1; /* Chrome, Safari, Opera */
      -moz-column-count: 1; /* Firefox */
      column-count: 1;
  }
}
/* offerta - experience end */

/* folder gallery start */

.all-galleries .box-2 a{
  display: block;
  background: #817374;
  color: #fff;
  text-decoration: none;
}

.all-galleries .box-2 a span.title{
  color: #fff;
  padding:5px 10px 9px 10px;
  text-transform: none;
}

/* folder gallery end */

/* slideshow hotel start */

/*.slideshow-home-hotel{
  position: relative;
}

.slideshow-hotel-caption{
  position: absolute;
  left: 0;
  bottom: 50px;
  z-index: 2;
  background:
}*/

.slideshow-hotel .owl-item .item p{
  position: absolute;
  top: calc(50% - 40px);
  left: 0;
  color: #fff;
  background:rgba(129, 115, 116, 0.7);
  padding: 40px;
  font-size: 20px;
  line-height: normal;
  margin: 0;
  max-width: 25%;
}

.slideshow-corporate .owl-item .item p{
  position: absolute;
  bottom:20%;
  left: 5%;
  color: #fff;
  background:rgba(0, 0, 0, 0.5);
  padding: 40px;
  font-size: 26px;
  line-height: normal;
  text-transform: uppercase;
  margin: 0;
  max-width: 25%;

  /*color: lime;
  font-family: "Courier";
  font-size: 20px;
  margin: 10px 0 0 10px;
  white-space: nowrap;
  overflow: hidden;
  width: 30em;
  animation: type 4s steps(60, end);*/
}
.slideshow-corporate .owl-item .item p span{
	text-transform: none;
	font-size: 20px;
	padding-top: 10px;
}
/*.slideshow-corporate .owl-item .item p:nth-child(2){
  animation: type2 8s steps(60, end);
}

@keyframes type{
  from { width: 0; }
}

@keyframes type2{
  0%{width: 0;}
  50%{width: 0;}
  100%{ width: 100; }
}

@keyframes blink{
  to{opacity: .0;}
}

::selection{
  background: black;
}*/

.box-anchor-arrow.container{
  position: relative;
}

/* slideshow hotel end */

/* footer hotel start */

#main-footer.footer-hotel{
  margin-top: 20px;
}

#page .logo-bottom-hotel{
  text-align: center;
  margin-top: 80px;
}

#page .logo-bottom-hotel a{
	text-decoration: none;
}

#page .logo-bottom-hotel img{
  width: auto;
  height: 75px;
}

/* footer hotel end */

/* breadcrumbs start */

ul.breadcrumb{
  float: left;
  /*margin:22px 0 15px 0;*/
  margin:22px 0;
  max-width: 520px;
  padding: 0;
  text-align: left;
  list-style: none;
  text-transform: uppercase;
}

ul.breadcrumb li a{
  text-decoration: none;
}
ul.breadcrumb li a:hover{
  text-decoration: underline;
}

/* breadcrumbs end */

/* feedback-form e error start */

.message-warning{
  border:3px solid #e2c9ab;
  margin-bottom: 30px;
  padding: 20px;
}

.error-page ul{
  margin-bottom: 30px;
}

.error-page ul li{
  margin:10px 0;
}

a.back-to-home{
  background: #6d5f60;
  color: #fff;
  display: inline-block;
  padding: 10px;
  text-decoration: none;
  text-transform: uppercase;
}

.error-1 form{
  text-align: center;
}

.error-1 form label{
  text-align: left;
  text-transform: uppercase;
}

.error-1 .user-login{
  margin-top: 20px;
}

/* feedback-form e error end */

/* cookie bar start */

/*#cookie-bar {background:rgba(234, 235, 243, 1); height:auto; line-height:24px; color:#eeeeee; text-align:center; padding:18px 0; position: fixed; width: 100%; bottom: 80px; z-index: 999;}*/
#cookie-bar {background:rgba(234, 235, 243, 1); height:auto; line-height:24px; color:#eeeeee; text-align:center; padding:18px 0; position: fixed; width: 400px; bottom: 80px; right:0; z-index: 999;}
/*#cookie-bar.fixed {position:fixed; top:0; left:0; width:100%;}
#cookie-bar.fixed.bottom {bottom:0; top:auto;}*/
#cookie-bar p {margin: 0 0 10px 0; text-align: center; padding: 0 10px;}
#cookie-bar a {color:#ffffff; display:inline-block; text-decoration:none; padding:5px 8px 3px 8px; margin-left:8px;}
#cookie-bar .cb-enable {background:#6d5f60;border:1px solid #6d5f60;text-transform: uppercase;}
#cookie-bar .cb-enable:hover {background:none;color:#6d5f60;}
#cookie-bar .cb-disable {background:#990000;text-transform: uppercase;}
#cookie-bar .cb-disable:hover {background:#bb0000;}
#cookie-bar .cb-policy {background:#6d5f60;text-transform: uppercase;border:1px solid #6d5f60;color:#fff;}
#cookie-bar .cb-policy:hover {background:none;color:#6d5f60;}

/* cookie bar end */

/* sitemap start */

.content-view-sitemap tr{
  vertical-align: top;
}

.content-view-sitemap tr td{
  padding: 0;
}

.content-view-sitemap tr ul{
  padding: 0;
  list-style: none;
}

.content-view-sitemap tr ul li{
  margin:5px 0;
}

.content-view-sitemap tr h2 a,
.content-view-sitemap tr ul li a{
  text-decoration: none;
}
.content-view-sitemap tr h2 a:hover,
.content-view-sitemap tr ul li a:hover{
  text-decoration: underline;
}

/* sitemap end */
.rewards-menu {
	float: left;
	padding: 9px 0;
	cursor: pointer;
	/*display: none;*/
}
ul.list-menu-rewards {
	position: absolute;
	background-color: #eaebf3;
	width: 80px;
	display: block;
	padding: 8px;
	text-align: center;
}


ul.list-menu-rewards a:hover{
	text-decoration: underline;
	margin: 2px 0;
}

/* modale newsletter subscribe start */

#modal-subscribe .modal-dialog{
  width: 80%;
  max-width: 650px;
  color: #fff;
  margin-top: 60px;
}

#modal-subscribe .modal-content{
  background-image: url('../images/modal_subscribe_background.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border: 5px solid #fff;
  text-align: center;
}

#modal-subscribe .modal-body{
  padding-bottom: 30px;
}

#modal-subscribe h2,
#modal-subscribe p{
  color:#fff;
}

#modal-subscribe h2{
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  padding: 14px 0;
}

#modal-subscribe .modal-header{
  display: block;
  padding: 0;
  text-align: right;
  border-bottom: none;
}

#modal-subscribe .modal-header .close{
  margin:5px 5px 0 0;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  color: #fff;
  background: #353432;
  border: none;
  font-size: 14px;
}

#modal-subscribe .email input{
  border:none;
  width: 50%;
  color:#817374;
  padding: 10px;
  font-size: 13px;
}
#modal-subscribe .email input::-webkit-input-placeholder{
  color: #817374;
  text-transform: none;
}
#modal-subscribe .email input:-moz-placeholder { /* Firefox 18- */
   color: #817374;
   text-transform: none;
}
#modal-subscribe .email input::-moz-placeholder {  /* Firefox 19+ */
   color: #817374;
   text-transform: none;
}
#modal-subscribe .email input:-ms-input-placeholder {
   color: #817374;
   text-transform: none;
}

#modal-subscribe .privacy input{
  padding: 5px;
  margin: 0 10px 0 0;
}
#modal-subscribe .privacy input:checked{
  background:#fff;
}

#modal-subscribe .privacy{
    font-size: 12px;
}

#modal-subscribe .privacy a{
  color: #fff;
}

#modal-subscribe input.btn-newsletter{
  width: 50%;
  max-width: 170px;
  margin-top: 15px;
  background-color: rgba(255,255,255,0.9);
  color: #817374;
}
#modal-subscribe input.btn-newsletter:hover{
  color:#fff;
  background-color: rgba(0,0,0,0.5);
}

#modal-subscribe a.btn-newsletter{
  display: block;
  width: 50%;
  /*max-width: 170px;*/
  margin: 15px auto 0 auto;
  padding: 12px 0;
  text-transform: uppercase;
  background-color: rgba(255,255,255,0.9);
  color: #817374;
}
#modal-subscribe a.btn-newsletter:hover{
  color:#fff;
  background-color: rgba(0,0,0,0.5);
  cursor: pointer;
}

/* modale newsletter subscribe end */

/* modale booking 20170214 start */
/*body, html, input, textarea,
h1, h2, h3, h4, h5{
	font-family: 'Lora', serif !important;
}
.hermes-modal{
	font-family: 'Lora', serif;
}
.eh-header .container .hotel-brand .name[data-v-9c5cfd32],
.el-button--text,
.el-dropdown{
	font-family: 'Lora', serif;
}*/
/* modale booking 20170214 end */

/* modale booking 20170426 start */
.hermes-modal .back-to-site{
	text-align: center;
}
.hermes-modal .back-to-site a{
	text-transform: uppercase;
	text-decoration: none;
	display: block;
	padding: 12px 0;
	background-color: #f5f5f5;
	font-size: 14px;
	line-height: normal;
	font-weight: bold;
}
.hermes-modal .back-to-site a:hover{
	background-color: #ddd;
}
/* modale booking 20170426 end */
