@charset 'UTF-8';
.page-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.review {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-basis: auto;
  margin: 50px -15px;
}
.review .info {
  margin: 0 15px;
  width: 200px;
}
.review .info .image {
  width: 200px;
  height: 200px;
}
.review .info .image img {
  width: 100%;
  height: 100%;
  max-width: 200px;
  max-height: 200px;
  object-fit: cover;
  object-position: center;
}
.review .info .name {
  display: block;
  margin-top: 10px;
  font-size: 22px;
  line-height: 1em;
  text-align: center;
}
.review .info .city {
  display: block;
  margin-top: 5px;
  font-size: 16px;
  line-height: 1em;
  text-align: center;
}
.review .body {
  margin: 0 15px;
  flex: 1;
  flex-basis: auto;
  max-width: calc( 100% - 200px - 60px );
}
#review.awmodal {
  background: #ef5d49;
}
#review.awmodal .awclose {
  color: #fff;
  opacity: .5;
  transition: .2s ease-in-out;
}
#review.awmodal .input-label span {
  color: #fff;
}
#review.awmodal .awclose:hover {
  opacity: 1;
}
#review.awmodal .header {
  border-bottom: 0;
}
#review.awmodal .btn:hover {
  background: #eee;
  color: #000;
}