.login {
  background-image: url('../../../img/background_1.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

.quote-checkin {
  color: #80cff1;
}

.quote-checkin p {
  margin-top: 0;
}

.quote-border-top {
  border-top: 3px solid #ffac00;
}

.quote-border-left {
  border-left: 3px solid #ffac00;
}

.quote {
  background-color: #ffffff;
  margin-bottom: 2rem;
  transition: all 0.3s;
}

.quote:hover {
  box-shadow: 0 10px 10px -12px rgba(0, 0, 0, 0.2),
    0 4px 15px -5px rgba(0, 0, 0, 0.3);
}

.quote-content {
  display: grid;
  grid-template-columns: 150px 1fr;
  width: 100%;
  transition: all 0.3s;
}

.quote:hover .quote-content {
  background-color: #fffaef;
}

.quote-content:last-child {
  margin-bottom: 3rem;
}

.quote-content:hover .quote-icon i, .fa-star {
  color: #ffac00;
}

.quote-content p {
  margin: 0;
  padding: 0;
}

.quote-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
}

.quote-icon i {
  font-size: 5rem;
  color: #979797;
  transition: 0.3s all;
}

.quote-header,
.quote-details {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.quote-details {
  padding-top: 1rem;
  border-top: 1px solid rgb(221, 221, 221);
}

.quote-details {
  margin-top: 1rem;
}

.quote-details > div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 1rem;
  width: 100%;
}

.quote-body,
.quote-header {
  padding: 1rem;
}

.quote-body > div > div > span:nth-child(2) {
  display: inline-block;
  margin: 0 1.2rem;
}

.quote-header i {
  color: #ffae00;
  font-size: 1.5rem;
}

.hotel-img {
  width: 100%;
}

.room-view-btn {
  color: #03a9f4;
  cursor: pointer;
  user-select: none;
}

.rooms-container {
  display: none;
  border-top: 1px solid gainsboro;
  max-height: 300px;
  overflow-y: auto;
}

.rooms-container::-webkit-scrollbar {
  display: none;
}

.room > span {
  display: block;
}

.room {
  display: grid;
  grid-template-columns: 3fr 1fr 250px;
  align-items: center;
  padding: 1.2rem;
  border-bottom: 1px solid gainsboro;
  transition: all 0.3s;
}

.room > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room:hover {
  background-color: #fff5df;
}

.rooms-container.room-view {
  display: block;
}


.checkbox-nice {
  position: relative;
  padding-left: 15px;
}


/* line 323, Applications/MAMP/htdocs/cube/scss/theme/imports/_forms.scss */

.checkbox-nice input[type=checkbox] {
  visibility: hidden;
}


/* line 326, Applications/MAMP/htdocs/cube/scss/theme/imports/_forms.scss */

.checkbox-nice label {
  padding-top: 3px;
}


/* line 329, Applications/MAMP/htdocs/cube/scss/theme/imports/_forms.scss */

.checkbox-nice.checkbox-inline>label {
  margin-left: 16px;
}


/* line 332, Applications/MAMP/htdocs/cube/scss/theme/imports/_forms.scss */

.checkbox-nice label:before {
  cursor: pointer;
  position: absolute;
  width: 22px;
  height: 22px;
  left: 1px;
  top: 1px;
  background: #ffffff;
  content: "";
  border: 2px solid #e7ebee;
  border-radius: 3px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}


/* line 344, Applications/MAMP/htdocs/cube/scss/theme/imports/_forms.scss */

.checkbox-nice label:after {
  opacity: 0;
  content: '';
  position: absolute;
  width: 12px;
  height: 7px;
  background: transparent;
  top: 7px;
  left: 6px;
  border: 3px solid #03a9f4;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}


/* line 359, Applications/MAMP/htdocs/cube/scss/theme/imports/_forms.scss */

.checkbox-nice label:hover::after {
  opacity: 0.3;
}


/* line 362, Applications/MAMP/htdocs/cube/scss/theme/imports/_forms.scss */

.checkbox-nice input[type=checkbox]:checked+label:after {
  opacity: 1;
}