/*! HTML5 Boilerplate v7.3.0 | MIT License | https://html5boilerplate.com/ */

/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #747474;
  font-size: 16px;
  font-family:'Open Sans', sans-serif;
  line-height: 2;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */


/* Global */

.bg-turquoise, .btn-turquoise{
  background-color: #26A69A !important;
  color:white;
}

h1,h2,h3,h4,h5,h6{
  font-family: 'Raleway', sans-serif;
  color:#333333;
}

h1{
  font-weight: bolder;
}
h2{
  font-size: 40px;
}

/* Page Header */

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover; 
    background-attachment: fixed;
    height:100vh;   
}

.hero h1 {
  font-size: 4em;
  color: white;
  text-shadow: 1px 2px 4px #333333;
}

.hero h2{
  color: white;
  font-size: 2em;
  text-shadow: 1px 2px 4px #333333;
  font-weight: bolder;
}



.longbox{
  height: 550px;
  background-size: cover; 
  align-self: flex-end;
  border: 3px solid #ffffff;
  overflow: hidden; 
}

.longbox p{
  color: white;
  text-shadow: 1px 2px 4px #333333;
}
.longbox h2{
  font-size: 40px;
  color: white;
  text-shadow: 1px 2px 4px #333333;
  font-weight: light;
}

.inner-div
{
     height: 100%;
     width: 100%;
     background-size: cover;
     background-position: center;
     transition: all 0.5s ease;
}


.inner-div:hover
{
     transform: scale(1.2);
}

.divider{
  width:50px; 
  margin: 15px auto;
  background-color:#00BCD4;
}

.divider-light{
  width:50px; 
  margin: 15px auto;
  background-color:#ffffff;
}


section{
  padding-top: 60px; 
}
/* Images */
.img-responsive{
  width:100%;
}

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

.form-style input{
  padding: 0.3rem;
  width: 100%;
}


.aligner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.aligner-item {
  max-width: 50%;
}

.aligner-item--top {
  align-self: flex-start;
}

.aligner-item--bottom {
  align-self: flex-end;
}

/* The search field */
#search_input {
  box-sizing: border-box;
  background-image: url('/static/img/search-location-solid.svg');
  background-position: 18px 18px;
  background-repeat: no-repeat;
  background-size: 1em;
  font-size: 16px;
  padding: 14px 20px 12px 45px;
  border: none;
  border-bottom: 1px solid #ddd;
  
}

/* The search field when it gets focus/clicked on */
#search_input:focus {outline: 3px solid #ddd;}

.fa-play:before {
  margin-left: .3rem;
}

/* Steps */
.step {
  list-style: none;
  margin: 0;
}

.step-element {
  display: flex;
  padding: 1rem 0;
}

.step-number {
  position: relative;
  width: 7rem;
  flex-shrink: 0;
  text-align: center;
}

.step-number .number {
  color: #bfc5ca;
  background-color: #eaeff4;
  font-size: 1.5rem;
}

.step-number .number {
  width: 48px;
  height: 48px;
  line-height: 48px;
}

.number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  border-radius: 10rem;
}

.step-number::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 48px;
  bottom: -2rem;
  margin-left: -1px;
  border-left: 2px dashed #eaeff4;
}

.step .step-element:last-child .step-number::before {
  bottom: 1rem;
}


.d-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 100px;
  grid-gap: 7px;
}

.item {
  position: relative;
}

.item:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 4;
}

.item:nth-child(2) {
  grid-column: 2;
  grid-row: 0 / 3;
}

.item:nth-child(3) {
  grid-column: 2;
  grid-row: 2 / 3;
}

.item:nth-child(4) {
  grid-column: 2;
  grid-row: 3 / 3;
}

.item a {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  overflow: hidden;
}

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



.photo-gallery {
  color:#313437;
  background-color:#fff;
}

.photo-gallery p {
  color:#7d8285;
}

.photo-gallery h2 {
  font-weight:bold;
  margin-bottom:40px;
  padding-top:40px;
  color:inherit;
}

@media (max-width:767px) {
  .photo-gallery h2 {
    margin-bottom:25px;
    padding-top:25px;
    font-size:24px;
  }
}

.photo-gallery .intro {
  font-size:16px;
  max-width:500px;
  margin:0 auto 40px;
}

.photo-gallery .intro p {
  margin-bottom:0;
}

.photo-gallery .photos {
  padding-bottom:20px;
}

.photo-gallery .item {
  padding-bottom:30px;
}





.roomsdetails-name{
  background-color: #F0F1F2;
}

.mbsc-datepicker .md-book-rental-bg-off.vacation-check-in.mbsc-ltr {
  background: linear-gradient( to left top, #ffbaba80 50%, #ffffff80 50%) no-repeat;
  padding: 0;
}

.mbsc-datepicker .md-book-rental-bg-pre.vacation-check-in.mbsc-ltr {
  background: linear-gradient( to left top, #ffbaba80 50%, #ffffff80 50%) no-repeat;
  padding: 0;
}

.mbsc-datepicker .md-book-rental-bg-in.vacation-check-in.mbsc-ltr {
  background: linear-gradient( to left top, #ffbaba80 50%, #ffffff80 50%) no-repeat;
  padding: 0;
}

.mbsc-datepicker .md-book-rental-bg-off.vacation-check-out.mbsc-ltr {
  background: linear-gradient( to left top, #ffffff80 50%, #ffbaba80 50%) no-repeat;
  padding: 0;
}

.mbsc-datepicker .md-book-rental-bg-pre.vacation-check-out.mbsc-ltr {
  background: linear-gradient( to left top, #ffffff80 50%, #ffbaba80 50%) no-repeat;
  padding: 0;
}

.mbsc-datepicker .md-book-rental-bg-in.vacation-check-out.mbsc-ltr {
  background: linear-gradient( to left top, #ffffff80 50%, #ffbaba80 50%) no-repeat;
  padding: 0;
}

.mbsc-datepicker .md-book-rental-bg-off.vacation-check-in.mbsc-rtl {
  background: linear-gradient( to right bottom, #ffbaba80 50%, #ffffff80 50%) no-repeat;
  padding: 0;
}

.mbsc-datepicker .md-book-rental-bg-pre.vacation-check-in.mbsc-rtl {
  background: linear-gradient( to right bottom, #ffbaba80 50%, #ffffff80 50%) no-repeat;
  padding: 0;
}

.mbsc-datepicker .md-book-rental-bg-in.vacation-check-in.mbsc-rtl {
  background: linear-gradient( to right bottom, #ffbaba80 50%, #ffffff80 50%) no-repeat;
  padding: 0;
}

.mbsc-datepicker .md-book-rental-bg-off.vacation-check-out.mbsc-rtl {
  background: linear-gradient( to right bottom, #ffffff80 50%, #ffbaba80 50%) no-repeat;
  padding: 0;
}

.mbsc-datepicker .md-book-rental-bg-pre.vacation-check-out.mbsc-rtl {
  background: linear-gradient( to right bottom, #ffffff80 50%, #ffbaba80 50%) no-repeat;
  padding: 0;
}

.mbsc-datepicker .md-book-rental-bg-in.vacation-check-out.mbsc-rtl {
  background: linear-gradient( to right bottom, #ffffff80 50%, #ffbaba80 50%) no-repeat;
  padding: 0;
}

.mbsc-datepicker .vacation-check-out,
.mbsc-datepicker .vacation-check-in {
  color: initial;
}

.mbsc-datepicker .vacation-check-in.mbsc-calendar-cell.mbsc-calendar-day-empty,
.mbsc-datepicker .vacation-check-out.mbsc-calendar-cell.mbsc-calendar-day-empty {
  background: transparent;
}

.md-book-rental-header {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-left: auto;
  flex: 1 1;
  overflow: hidden;
}

.md-book-rental-zone {
  font-size: 12px;
  padding: 3px 6px;
  margin: 0 5px;
  border-radius: 16px;
  color: #1e1e1ecc;
}

.md-book-rental .mbsc-calendar-label-text {
  text-align: center;
  font-weight: bold;
}

.md-book-rental-in {
  background: #f7f7bb80;
}

.md-book-rental-pre {
  background: #a3cdff80;
}

.md-book-rental-off {
  background: #b2f1c080;
}

.md-book-rental-booked {
  background: #ffbaba80;
}

select.cico-input {
  padding-left: 50px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-clip: padding-box;
}

.cico-bg{
  background-image: url('/static/img/calendar-alt-regular.svg');
  background-position: 18px 14px;
  background-repeat: no-repeat;
  background-size: 1em;
  background-color: white;
}


.cico-bg-building{
  background-image: url('/static/img/hotel-solid.svg');
  background-position: 18px 16px;
  background-repeat: no-repeat;
  background-size: 1em;
  background-color: white;
  color:#808080;
}

.cico-bg-flex{
  background-image: url('/static/img/calendar-check-regular.svg');
  background-position: 18px 14px;
  background-repeat: no-repeat;
  background-size: 1em;
  background-color: white;
  color:#808080;
}

.cico-bg-user{
  background-image: url('/static/img/users-solid.svg');
  background-position: 18px 16px;
  background-repeat: no-repeat;
  background-size: 1.1em;
  background-color: white;
  margin-top: 6px; 
  color:#808080;
}

.cico-bg-type{
  background-image: url('/static/img/bed-solid.svg');
  background-position: 18px 16px;
  background-repeat: no-repeat;
  background-size: 1.1em;
  background-color: white;
  margin-top: 6px; 
  color:#808080;
}

.cico-bg-sort{
  background-image: url('/static/img/sort-solid.svg');
  background-position: 18px 9px;
  background-repeat: no-repeat;
  background-size: 1.1em;
  background-color: white;
  color:#808080;
 
}
.cico-bg-coupon{
  background-image: url('/static/img/tag-solid.svg');
  background-position: 18px 16px;
  background-repeat: no-repeat;
  background-size: 1.1em;
  background-color: white;
  margin-top: 6px; 
}

.cico-input{
  box-sizing: border-box;
  font-size: 16px;
  padding: 14px 20px 12px 45px;
  border: none;
  

}

.cico-submit{
  font-size: 16px;
  padding: 14px 20px 12px 45px;
  color: white;
  background-color: #1266F1;
  width: 100%;
  height: 100%;

}

#unit .cico-input{

  border-bottom: 1px solid #ddd !important;

}

#unit .info h2{
  font-size: 26px;
  padding-left: 10px; 
  color: #474747;
}

#unit .info p, #unit .info h3{
  padding: 5px;
}
#unit .info i{
  color: #1ace41;
}
#unit .info .title{
  font-size: 16px;
  font-weight: bold;
  color: #474747;
  text-align: left;
}



#unit .booking{
  background-color: #fff;
  padding: 10px;
  margin: 0 auto;
  border-radius: 4px;
  border: 1px solid #eee;}

/*
@media only screen and (min-width: 1200px) {
  #bookingCard {
    position: relative;
    bottom: 11em; 
    z-index: 3;

  }
}
*/
#unit .booking h2{
  color: #474747;
  font-size: 30px;
}

#unit .booking button{
  width: 100%;
  margin: 5px;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

/* Grid */ 

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
  display: none !important;
}

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
* Extends the .sr-only class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
* Hide visually and from screen readers, but maintain layout
*/

.invisible {
  visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/

.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
     * Printing Tables:
     * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
     */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

.post-header {
  background: transparent;
  border-bottom: 0;
}

.post-header h6 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 0;
}

.post-text {
  font-size: .875rem;
}


.post-actions {
  background: transparent;
  border-top: 0;
}

.header {
  display: block;
  width: 100%;
  height: 48px;
  background-color: #4267b2;
  color: #fff;
}

.header > span {
  display: block;
  padding: 12px 15px;
}

.d-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 100px;
  grid-gap: 5px;
}

.item {
  position: relative;
}

.item:nth-child(2) {
  grid-column: 3;
  grid-row: 2 / 4;
}

.item:nth-child(5) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.item a {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  overflow: hidden;
}

.item img {
  height: 100%;
  width: auto;
}


.actions-menu {
  flex-wrap: nowrap;
  display: flex;
}

.slider-header{
  padding: 0 0 0 0; 
  margin: 0 0 0 0; 
  max-height:600px; 
  overflow:hidden; 
}
