@import url(https://fonts.googleapis.com/css?family=Rubik);

.imezo-hotels input[type="checkbox"] {
  position: relative;
  width: 20px;
  height: 20px;
  color: white;
  border: 1px solid #6b728c;
  border-radius: 4px;
  appearance: none;
  outline: 0;
  cursor: pointer;
  transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
}
.imezo-hotels input[type="checkbox"]::before {
  position: absolute;
  content: "";
  display: block;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 12px;
  border-style: solid;
  border-color: white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}
.imezo-hotels input[type="checkbox"]:checked {
  color: white;
  border-color: #2563eb;
  background: #2563eb;
}
.imezo-hotels input[type="checkbox"]:checked::before {
  content: "";
  color: inherit;
  opacity: 1;
  width: 6px;
}

.imezo-hotels__main {
  display: flex;
  flex-direction: column;
  font-family: "Rubik";
}

.imezo-hotels__main svg.star {
  width: 16px;
  height: 16px;
  fill: #FC8313;
}

.imezo-hotels__main .star.inactive {
  fill: #9ca3af;
}

.imezo-hotels__main .filters {
  display: flex;
  justify-content: space-between;
  background: white;
  border-radius: 15px;
}
.imezo-hotels__main .filters .filter {
  flex: 1;
  padding: 0 8px;
}

.imezo-hotels__main .filters .filter label {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: #333333;
}

.imezo-hotels__main .filters .filter .select2 .select2-selection {
  height: 30px;
  border: 1px solid #d0d0d0;
  box-sizing: border-box;
  border-radius: 0;
}

.imezo-hotels__main hr {
  margin: 12px 0 !important;
}

.imezo-hotels__main .hotels-wrapper {
  display: flex;
  flex-direction: column;
}

.imezo-hotels__main .hotels-wrapper .hotels {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  grid-gap: 20px;
}

.imezo-hotels__main .hotels-wrapper .hotels .hotel {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.imezo-hotels__main .hotels-wrapper .hotels .hotel .image {
  width: 100%;
}

.imezo-hotels__main .hotels-wrapper .hotels .hotel .image img {
  display: block;
  width: 100%;
  height: 215px;
  object-fit: cover;
  object-position: center;
}

.imezo-hotels__main .hotels-wrapper .hotels .hotel .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 16px;
}

.imezo-hotels__main .hotels-wrapper .hotels .hotel .info .title {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  color: #333333;
  margin-bottom: 5px;
}

.imezo-hotels__main .hotels-wrapper .hotels .hotel .info .rating {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 390;
  font-size: 14px;
  line-height: 22px;
  color: #333333;
}

.imezo-hotels__main .hotels-wrapper .hotels .hotel .info .location {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 390;
  font-size: 14px;
  line-height: 22px;
  color: #333333;
}

.imezo-hotels__main .hotels-wrapper .hotels .hotel .info .location svg {
  margin-right: 3px;
}

.imezo-hotels__main .hotels-wrapper .hotels .hotel .info .stars {
  display: flex;
  color: #333333;
  font-size: 12px;
  height: 18px;
  margin-left: 5px;
}

.imezo-hotels__main .hotels-wrapper .hotels .hotel .info .stars .star:last-child {
  margin-right: 5px;
}

.imezo-hotels__main .hotels-wrapper .hotels .hotel .info .price {
  font-weight: bold;
  font-size: 28px;
  line-height: 39px;
  color: #333333;
}

.imezo-hotels__main .hotels-wrapper .hotels .hotel .info .body {
  display: flex;
  justify-content: space-between;
}

.imezo-hotels__main .hotels-wrapper .hotels .hotel .info .body .btn {
  display: block;
  width: 100px;
  padding: 10px 24px;
  border-radius: 5px;
  text-align: center;
  color: white;
  background: #ff8000;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.imezo-hotels__main
  .hotels-wrapper
  .hotels
  .hotel
  .info
  .hotel__footer
  .btn:hover {
  background: #d97706;
}

.imezo-hotels__main .hotels-wrapper .pagination {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-top: 30px;
}

.imezo-hotels__main .hotels-wrapper .pagination button {
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: #333333;
  background: transparent;
  border: 1px solid #333333;
  box-sizing: border-box;
  border-radius: 5px;
  transition: all .2s ease;
}

.imezo-hotels__main .hotels-wrapper .pagination button:not([disabled]):hover {
  background: #333333;
  color: white;
}

@media only screen and (max-width: 768px) {
  .imezo-hotels__main .hotels-wrapper .hotels {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
  }
}

@media only screen and (max-width: 576px) {
  .imezo-hotels__main .filters {
    flex-direction: column;
  }
  
  .imezo-hotels__main .hotels-wrapper .hotels {
    grid-template-columns: repeat(1, minmax(250px, 1fr));
  }
}

.imezo-vendors table td {
  border: 0;
  background: transparent !important;
  padding: 0 0 10px;
}