﻿/* offset-x | offset-y | blur-radius | spread-radius | color */
/*@card-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);*/
.icon-parking {
  background: url(/res/img/sn.sprite.vert.png?sv=20171102) 0 -1439px no-repeat;
  height: 16px;
}
.icon-wifi {
  background: url(/res/img/sn.sprite.vert.png?sv=20171102) 0 -1458px no-repeat;
  height: 16px;
}
.icon-braai {
  background: url(/res/img/sn.sprite.vert.png?sv=20171102) 0 -1477px no-repeat;
  height: 16px;
}
.icon-pool {
  background: url(/res/img/sn.sprite.vert.png?sv=20171102) 0 -1503px no-repeat;
  height: 16px;
}
.icon-pet-friendly {
  background: url(/res/img/sn.sprite.vert.png?sv=20171102) 0 -1523px no-repeat;
  height: 16px;
}
/*ref: https://codepen.io/ndeniche/pen/ljbDL*/
.ico-close {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  overflow: hidden;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .ico-close {
    width: 35px;
    height: 35px;
  }
}
.ico-close:before,
.ico-close:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #000;
}
.ico-close:before {
  transform: rotate(45deg);
}
.ico-close:after {
  transform: rotate(-45deg);
}
.ico-close.hairline::before,
.ico-close.hairline::after {
  height: 1px;
}
.ico-close.rounded:before,
.ico-close.rounded:after {
  border-radius: 5px;
}