.hotels-list {
  padding-bottom: 45px;
  background: url(../images/hotels-list-bg.png) top repeat;
  background-size: 100%; }

.product-item {
  width: 350px;
  height: 420px;
  margin: 55px auto 0px auto;
  background-color: #ffffff;
  -webkit-transition: -webkit-box-shadow ease-in 0.5s;
  transition: -webkit-box-shadow ease-in 0.5s;
  transition: box-shadow ease-in 0.5s;
  transition: box-shadow ease-in 0.5s, -webkit-box-shadow ease-in 0.5s;
  -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1); }
  .product-item:hover {
    -webkit-box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.2); }

.product-image {
  width: 100%;
  height: 200px;
  background: url(../images/hotel.png) center no-repeat;
  background-size: cover; }

.product-item-name {
  width: 100%;
  padding-top: 15px;
  padding-left: 20px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }
  .product-item-name a {
    display: inline-block;
    width: 100%;
    height: 22px;
    overflow: hidden;
    color: #5A5A5A;
    white-space: nowrap;
    text-overflow: ellipsis; }
    .product-item-name a:hover {
      text-decoration: none;
      color: #1BBEF2; }
  .product-item-name small {
    float: left; }

.accessibilities-items {
  height: 75px;
  padding-top: 10px;
  padding-left: 20px; }

.accessibility {
  width: auto;
  position: relative;
  margin-bottom: 10px;
  padding: 0px 10px 0px 20px;
  font-size: 15px;
  color: #858585; }
  .accessibility::before {
    content: url(../images/tick.svg);
    position: absolute;
    width: 15px;
    height: 15px;
    left: 0px;
    top: 2px; }

.link-item {
  position: relative;
  font-size: 18px;
  text-transform: uppercase;
  margin-top: 33px; }
  .link-item::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 1px;
    top: -15px;
    left: 20px;
    background-color: #E3E3E3; }
  .link-item a {
    display: block;
    margin: auto;
    color: #1BBEF2; }
