* {
  margin: 0;
  padding: 0;
}
*,
:after,
:before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}
@media only screen and (max-width: 68.75em) {
  html {
    font-size: 50%;
  }
}
body {
  font-family: "Open Sans", sans-serif;
  color: #777;
  font-weight: 400;
  line-height: 1.6;
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#f36),
    to(#ba265d)
  );
  background-image: linear-gradient(to right bottom, #f36, #ba265d);
  background-size: cover;
  background-repeat: no-repeat;
}
.logo {
  height: 3.25rem;
  margin-left: 2rem;
}
.search {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 31.25em) {
  .search {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    background: #f4f2f2;
  }
}
.search__input {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: #f4f2f2;
  border: none;
  padding: 0.7rem 2rem;
  border-radius: 100px;
  width: 90%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-right: -3.5rem;
}
.search__input:focus {
  width: 100%;
  outline: 0;
  background: #f0eeee;
}
.search__input::-webkit-input-placeholder {
  font-weight: 100;
  color: #ccc;
}
.search__button {
  border: none;
  background: #f4f2f2;
  border-radius: 100px;
  cursor: pointer;
}
.search__button:focus {
  outline: 0;
  background: #f0eeee;
}
.search__button:active {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.search__icon {
  height: 2rem;
  width: 2rem;
  fill: #999;
}
.user-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  height: 6rem;
}
.user-nav > * {
  padding: 0 2rem;
  cursor: pointer;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.user-nav > :hover {
  background-color: #f4f2f2;
}
.user-nav > :active {
  background-color: #f0eeee;
}
.user-nav__icon-box {
  position: relative;
}
.user-nav__icon {
  height: 2.25rem;
  width: 2.25rem;
  fill: #777;
}
.user-nav__notification {
  font-size: 0.8rem;
  height: 1.75rem;
  width: 1.75rem;
  border-radius: 50%;
  background-color: #eb2f64;
  color: #fff;
  text-align: center;
  line-height: 1.75rem;
  position: absolute;
  top: 1.5rem;
  right: 1.1rem;
}
.user-nav__user-photo {
  height: 3.75rem;
  border-radius: 50%;
  margin-right: 1rem;
}
@media only screen and (max-width: 31.25em) {
  .user-nav {
    height: 5rem;
  }
}
.side-nav {
  text-align: center;
  font-size: 1.4rem;
  list-style: none;
  margin-top: 3.5rem;
}
@media only screen and (max-width: 58.75em) {
  .side-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
  }
}
.side-nav__item {
  position: relative;
}
.side-nav__item:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 58.75em) {
  .side-nav__item:not(:last-child) {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 58.75em) {
  .side-nav__item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.side-nav__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  background-color: #eb2f64;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: width 0.4s cubic-bezier(1, 0, 0, 1), background-color 0.1s,
    -webkit-transform 0.2s;
  transition: width 0.4s cubic-bezier(1, 0, 0, 1), background-color 0.1s,
    -webkit-transform 0.2s;
  transition: transform 0.2s, width 0.4s cubic-bezier(1, 0, 0, 1),
    background-color 0.1s;
  transition: transform 0.2s, width 0.4s cubic-bezier(1, 0, 0, 1),
    background-color 0.1s, -webkit-transform 0.2s;
}
.side-nav__item--active:before,
.side-nav__item:hover:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  width: 100%;
}
.side-nav__item:active:before {
  background-color: #f36;
}
.side-nav__link:link,
.side-nav__link:visited {
  position: relative;
  color: #faf9f9;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  padding: 1.5rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 10;
}
@media only screen and (max-width: 58.75em) {
  .side-nav__link:link,
  .side-nav__link:visited {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .side-nav__link:link,
  .side-nav__link:visited {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.5rem 1;
  }
}
.side-nav__icon {
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 2rem;
  fill: currentColor;
}
@media only screen and (max-width: 37.5em) {
  .side-nav__icon {
    margin-right: 0;
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: 0.7rem;
  }
}
.legal {
  font-size: 1.2rem;
  color: #ccc;
  text-align: center;
  padding: 2.5rem;
}
@media only screen and (max-width: 58.75em) {
  .legal {
    display: none;
  }
}
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gallery__photo {
  width: 100%;
  display: block;
}
.overview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #f4f2f2;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.overview__heading {
  font-size: 2.25rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1.5rem 3rem;
}
@media only screen and (max-width: 37.5em) {
  .overview__heading {
    font-size: 1.8rem;
    padding: 1.25rem 2rem;
  }
}
.overview__stars {
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.overview__icon-location,
.overview__icon-star {
  width: 1.75rem;
  height: 1.75rem;
  fill: #eb2f64;
}
.overview__location {
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.overview__icon-location {
  margin-right: 0.5rem;
}
.overview__rating {
  background-color: #eb2f64;
  color: #fff;
  margin-left: 3rem;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  padding: 0 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 37.5em) {
  .overview__rating {
    padding: 0 1.5rem;
  }
}
.overview__rating-average {
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: -3px;
}
@media only screen and (max-width: 37.5em) {
  .overview__rating-average {
    font-size: 1.8rem;
  }
}
.overview__rating-count {
  font-size: 0.9rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 37.5em) {
  .overview__rating-count {
    font-size: 0.7rem;
  }
}
.btn-inline {
  border: none;
  background: 0 0;
  color: #eb2f64;
  font-size: inherit;
  border-bottom: 1px solid currentColor;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  padding-bottom: 2px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.btn-inline span {
  position: absolute;
  top: 0;
  right: -2rem;
}
.btn-inline:hover {
  color: #333;
}
.btn-inline:hover span {
  -webkit-animation: arrow 0.5s infinite;
  animation: arrow 0.5s infinite;
}
.btn-inline:focus {
  outline: 0;
  -webkit-animation: pulsate 1s infinite;
  animation: pulsate 1s infinite;
}
@-webkit-keyframes arrow {
  0% {
    right: -2rem;
  }
  50% {
    right: -2.5rem;
  }
  100% {
    right: -2rem;
  }
}
@keyframes arrow {
  0% {
    right: -2rem;
  }
  50% {
    right: -2.5rem;
  }
  100% {
    right: -2rem;
  }
}
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.25);
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.25);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
@keyframes pulsate {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.25);
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.25);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.paragraph:not(:last-of-type) {
  margin-bottom: 1rem;
}
.list {
  list-style: none;
  margin: 3rem 0;
  padding: 3rem 0;
  border-top: 1px solid #f4f2f2;
  border-bottom: 1px solid #f4f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.list__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  margin-bottom: 0.7rem;
}
.list__item:before {
  content: "";
  display: inline-block;
  height: 1rem;
  width: 1rem;
  background-color: #eb2f64;
  -webkit-mask-image: url(../img/chevron-thin-right.svg);
  -webkit-mask-size: cover;
  mask-image: url(../img/chevron-thin-right.svg);
  mask-size: cover;
  margin-right: 0.6rem;
  border-radius: 50%;
}
.recommend {
  font-size: 1.3rem;
  color: #999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.recommend__friends {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recommend__photo {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  border: 3px solid #fff;
}
.recommend__photo:not(:last-child) {
  margin-right: -1.5rem;
}
.review {
  background-color: #fff;
  -webkit-box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.06);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.06);
  padding: 3rem;
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 58.75em) {
  .review {
    padding: 2rem;
    margin-bottom: 2.5rem;
  }
}
.review__text {
  margin-bottom: 2rem;
  z-index: 10;
  position: relative;
}
.review__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.review__photo {
  height: 4.5rem;
  width: 4.5rem;
  border-radius: 50%;
  margin-right: 1.5rem;
}
.review__user-box {
  margin-right: auto;
}
.review__user-name {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.review__user-date {
  font-size: 1rem;
  color: #999;
}
.review__rating {
  color: #eb2f64;
  font-size: 2.25rem;
  font-weight: 300;
}
.review:before {
  content: "\201c";
  position: absolute;
  top: -2.75rem;
  left: -1rem;
  font-size: 20rem;
  color: #f4f2f2;
  font-family: sans-serif;
  line-height: 1;
  z-index: 1;
}
.cta {
  padding: 3.5rem 0;
  text-align: center;
}
.cta__heading {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 37.5em) {
  .cta__heading {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 31.25em) {
  .cta__heading {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 58.75em) {
  .cta {
    padding: 2.5rem 0;
  }
}
.btn {
  border: none;
  font-size: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
  border-radius: 100px;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#eb2f64),
    to(#ba265d)
  );
  background-image: linear-gradient(to right, #eb2f64, #ba265d);
  color: #fff;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn > * {
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.btn__visible {
  padding: 2rem 7.5rem;
}
@media only screen and (max-width: 31.25em) {
  .btn__visible {
    padding: 1.5rem 5.5rem;
  }
}
.btn__invisible {
  position: absolute;
  left: 0;
  top: -100%;
  padding: 2rem 0;
}
@media only screen and (max-width: 31.25em) {
  .btn__invisible {
    padding: 1.5rem 0;
  }
}
.btn:hover {
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(#eb2f64),
    to(#ba265d)
  );
  background-image: linear-gradient(to left, #eb2f64, #ba265d);
}
.btn:focus {
  outline: 0;
  -webkit-animation: pulsate 1s infinite;
  animation: pulsate 1s infinite;
}
.btn:hover .btn__visible {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.btn:hover .btn__invisible {
  top: 0;
}
@media only screen and (max-width: 37.5em) {
  .btn {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 31.25em) {
  .btn {
    font-size: 1.2rem;
  }
}
.container {
  max-width: 120rem;
  margin: 8rem auto;
  background-color: #faf9f9;
  -webkit-box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.3);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 75em) {
  .container {
    margin: 0;
    max-width: 100%;
    width: 100%;
  }
}
.header {
  background-color: #fff;
  font-size: 1.4rem;
  border-bottom: 1px solid #f4f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 31.25em) {
  .header {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px;
    -ms-flex-line-pack: distribute;
    align-content: space-around;
  }
}
.content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 58.75em) {
  .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.sidebar {
  background-color: #333;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 18%;
  flex: 0 0 18%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.hotel-view {
  background-color: #fff;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.detail {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4.5rem;
  background: #faf9f9;
  border-bottom: 1px solid #f4f2f2;
}
@media only screen and (max-width: 58.75em) {
  .detail {
    padding: 2.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.description {
  background: #fff;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  margin-right: 4.5rem;
  -webkit-box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.06);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.06);
  padding: 3rem;
}
@media only screen and (max-width: 58.75em) {
  .description {
    padding: 2rem;
    margin-right: 2.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .description {
    margin-right: 0;
    margin-bottom: 2.5rem;
  }
}
.user-reviews {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/*# sourceMappingURL=style.css.map */
