/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-container {
  overflow: hidden;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}

/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}

.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom;
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none;
}

.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}

.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}

.leaflet-tile {
  -webkit-filter: inherit;
  filter: inherit;
  visibility: hidden;
}

.leaflet-tile-loaded {
  visibility: inherit;
}

.leaflet-zoom-box {
  width: 0;
  height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 800;
}

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}

.leaflet-pane {
  z-index: 400;
}

.leaflet-tile-pane {
  z-index: 200;
}

.leaflet-overlay-pane {
  z-index: 400;
}

.leaflet-shadow-pane {
  z-index: 500;
}

.leaflet-marker-pane {
  z-index: 600;
}

.leaflet-tooltip-pane {
  z-index: 650;
}

.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-map-pane canvas {
  z-index: 100;
}

.leaflet-map-pane svg {
  z-index: 200;
}

.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}

/* control positioning */
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-control {
  float: left;
  clear: both;
}

.leaflet-right .leaflet-control {
  float: right;
}

.leaflet-top .leaflet-control {
  margin-top: 10px;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}

.leaflet-left .leaflet-control {
  margin-left: 10px;
}

.leaflet-right .leaflet-control {
  margin-right: 10px;
}

/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile {
  will-change: opacity;
}

.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}

.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1), -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
  transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

/* cursors */
.leaflet-interactive {
  cursor: pointer;
}

.leaflet-grab {
  cursor: -webkit-grab;
  cursor: grab;
}

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive {
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline: 0;
}

.leaflet-container a {
  color: #0078A8;
}

.leaflet-container a.leaflet-active {
  outline: 2px solid orange;
}

.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}

/* general typography */
.leaflet-container {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}

/* general toolbar styles */
.leaflet-bar {
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}

.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}

.leaflet-bar a:hover {
  background-color: #f4f4f4;
}

.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px 'Lucida Console', Monaco, monospace;
  text-indent: 1px;
}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}

/* layers control */
.leaflet-control-layers {
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}

.leaflet-control-layers-toggle {
  background-image: url(/images/leaflet/layers.png);
  width: 36px;
  height: 36px;
}

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(/images/leaflet/layers-2x.png);
  background-size: 26px 26px;
}

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}

.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}

.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}

.leaflet-control-layers label {
  display: block;
}

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}

/* Default icon URLs */
.leaflet-default-icon-path {
  background-image: url(/images/leaflet/marker-icon.png);
}

/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
}

.leaflet-control-attribution a {
  text-decoration: none;
}

.leaflet-control-attribution a:hover {
  text-decoration: underline;
}

.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px;
}

.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}

.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}

.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}

/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}

.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4;
}

.leaflet-popup-content p {
  margin: 18px 0;
}

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  -webkit-box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  border: none;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent;
}

.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999;
}

.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
  zoom: 1;
}

.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}

.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px;
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}

/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}

/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.leaflet-tooltip.leaflet-clickable {
  cursor: pointer;
  pointer-events: auto;
}

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Directions */
.leaflet-tooltip-bottom {
  margin-top: 6px;
}

.leaflet-tooltip-top {
  margin-top: -6px;
}

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}

.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}

.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}

.leaflet-tooltip-left {
  margin-left: -6px;
}

.leaflet-tooltip-right {
  margin-left: 6px;
}

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}

.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}

.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}

/*************************************
\\\\  room
**************************************/
.cover_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  width: 100%;
  height: 50px;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cover_buttons_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 46px;
  position: relative;
  z-index: 3;
}

.room .cover_buttons {
  padding: 12px;
}

.room .cover_buttons_container {
  height: 32px;
}

.cover_buttons .shadow_side {
  position: absolute;
  z-index: 1;
  top: 0;
  height: 70px;
  width: 100%;
  max-width: 100% !important;
  right: 0;
  opacity: 0.5;
  pointer-events: none;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjUiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -webkit-gradient(linear, left top, left bottom, from(black), color-stop(9.5%, rgba(0, 0, 0, 0.978)), color-stop(17.7%, rgba(0, 0, 0, 0.925)), color-stop(24.7%, rgba(0, 0, 0, 0.857)), color-stop(31%, rgba(0, 0, 0, 0.781)), color-stop(36.8%, rgba(0, 0, 0, 0.701)), color-stop(42.3%, rgba(0, 0, 0, 0.62)), color-stop(47.6%, rgba(0, 0, 0, 0.538)), color-stop(52.9%, rgba(0, 0, 0, 0.455)), color-stop(58.2%, rgba(0, 0, 0, 0.373)), color-stop(63.7%, rgba(0, 0, 0, 0.291)), color-stop(69.5%, rgba(0, 0, 0, 0.212)), color-stop(75.8%, rgba(0, 0, 0, 0.138)), color-stop(82.9%, rgba(0, 0, 0, 0.07)), color-stop(91.2%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.978) 9.5%, rgba(0, 0, 0, 0.925) 17.7%, rgba(0, 0, 0, 0.857) 24.7%, rgba(0, 0, 0, 0.781) 31%, rgba(0, 0, 0, 0.701) 36.8%, rgba(0, 0, 0, 0.62) 42.3%, rgba(0, 0, 0, 0.538) 47.6%, rgba(0, 0, 0, 0.455) 52.9%, rgba(0, 0, 0, 0.373) 58.2%, rgba(0, 0, 0, 0.291) 63.7%, rgba(0, 0, 0, 0.212) 69.5%, rgba(0, 0, 0, 0.138) 75.8%, rgba(0, 0, 0, 0.07) 82.9%, rgba(0, 0, 0, 0.019) 91.2%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=1);
}

.room .cover_buttons .shadow_side {
  height: 50px;
}

.cover_button {
  height: 100%;
  width: 70px;
  font-size: 42px;
  line-height: 42px;
  position: relative;
  cursor: pointer;
  z-index: 2;
  text-align: center;
  pointer-events: auto;
  border-radius: 8px;
  background-color: transparent;
  padding: 0 1rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 400ms ease-in-out, width 300ms cubic-bezier(0.6, -0.28, 0, 1.24);
  transition: 400ms ease-in-out, width 300ms cubic-bezier(0.6, -0.28, 0, 1.24);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.cover_button:after {
  content: "";
  position: absolute;
  bottom: -1rem;
  border: 0.25rem solid transparent;
  border-bottom: 0.25rem solid white;
  width: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  -webkit-transition: 200ms;
  transition: 200ms;
  opacity: 0;
}

.cover_button.hovered:after {
  bottom: -0.5rem;
  opacity: 1;
}

.cover_buttons_container div:first-of-type {
  padding-right: 0;
}

.cover_buttons_container div:last-of-type {
  padding-left: 0;
}

.cover_buttons_container div:first-of-type:after {
  right: -1rem;
}

.room .cover_buttons_container div:first-of-type:after {
  right: -0.5rem;
}

.cover_buttons_container div:last-of-type:after {
  right: 1rem;
}

.room .cover_buttons_container div:last-of-type:after {
  right: 0.5rem;
}

.cover_button_caption {
  position: absolute;
  bottom: 0;
  right: -0.25rem;
  z-index: 2;
  height: 2.5em;
  width: 100%;
  min-width: 160px;
  -webkit-transition: 200ms;
  transition: 200ms;
  -webkit-transform: translateY(calc(100% + 1rem));
  transform: translateY(calc(100% + 1rem));
  background-color: white;
  -webkit-box-shadow: 0px 6px 6px 0px rgba(50, 50, 50, 0.3);
  box-shadow: 0px 6px 6px 0px rgba(50, 50, 50, 0.3);
  border-radius: 0.5rem;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.75em;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
}

.room .cover_button_caption {
  font-size: 12px;
  border-radius: 4px;
  min-width: 130px;
}

.room .cover_button.spray_button .cover_button_caption {
  min-width: 120px;
}

.cover_button.hovered .cover_button_caption {
  -webkit-transform: translateY(calc(100% + 0.5rem));
  transform: translateY(calc(100% + 0.5rem));
  opacity: 1;
}

.cover_button_caption span {
  opacity: 1;
  -webkit-transition: 100ms;
  transition: 100ms;
}

.room .cover_button {
  width: 38px;
  height: 34px;
  font-size: 28px;
  line-height: 26px;
  padding: 0 6px;
}

.cover_button .icon_placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cover_button i {
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: inherit;
  line-height: inherit;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0;
  top: 0;
  bottom: 0;
  color: white;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.cover_button.wish_button.waitForLikeUnLike i:first-child {
  -webkit-animation: fadeColor 800ms infinite;
  animation: fadeColor 800ms infinite;
}

.discountmark {
  position: absolute;
  z-index: 2;
  left: 20px;
  top: 0px;
  font-size: 1.5rem;
  width: 2.5em;
  height: calc(2.5em + 0.25em);
  background: var(--firstColor);
}

.discountmark * {
  pointer-events: none;
}

.discountmark:before, .discountmark:after {
  content: "";
  position: absolute;
  bottom: -0.75em;
  width: 0;
  height: 0;
  border-top: 0.75em solid var(--firstColor);
}

.discountmark:after {
  right: 0;
  border-left: 1.25em solid transparent;
}

.discountmark:before {
  left: 0px;
  border-right: 1.25em solid transparent;
}

.discountmark strong {
  width: 100%;
  display: block;
  text-align: center;
  line-height: 1em;
  font-size: 1.5em;
  color: #fff;
  margin-top: 0.25em;
}

.discountmark strong span {
  font-size: 0.75em;
}

.discountmark small {
  font-size: 0.625em;
  color: #fbff00;
  line-height: 0.625em;
  width: 100%;
  display: block;
  text-align: center;
}

.discountmark .cover_button_caption {
  left: calc(60px + 8px);
  right: auto;
  top: 4px;
  bottom: 0;
  margin: auto 0;
  -webkit-transform: none;
  transform: none;
  min-width: 160px;
}

.discountmark .cover_button_caption:after {
  content: "";
  position: absolute;
  border: 0.25rem solid transparent;
  border-right: 0.25rem solid white;
  width: 0;
  right: auto;
  left: -0.5rem;
  margin: 0 auto;
  -webkit-transition: 200ms;
  transition: 200ms;
}

.room .discountmark .cover_button_caption {
  left: calc(40px + 8px);
}

.discountmark.hovered .cover_button_caption {
  opacity: 1;
}

.room .discountmark {
  font-size: 14px;
  left: 1rem;
}

.room .discountmark .cover_button_caption {
  min-width: 110px;
}

.is_new {
  display: block;
  text-align: center;
  font-size: 11px;
  color: #000;
  padding: 3px 5px 2px;
  position: absolute;
  background-color: #f0c807;
  z-index: 2;
  border-top: 0;
  position: absolute;
  width: auto;
  left: 12px;
  top: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 30px;
}

.rm_photos .is_new {
  font-size: 12px;
  padding: 3px 6px 4px;
  left: 16px;
  top: 16px;
}

@media (min-width: 501px) {
  .rm_photos .is_new {
    font-size: 14px;
    height: 32px;
    top: 20px;
    padding: 8px 14px 8px 12px;
  }
}

.yaldamark {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 45px;
  height: 30px;
  background: transparent;
  pointer-events: none;
  background-image: url(/images/room/yalda_mark.png?v2);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  -webkit-transform: rotate(-25deg);
  transform: rotate(-25deg);
  z-index: 1;
}

.discountmark + .yaldamark {
  left: 90px;
}

@-webkit-keyframes fadeColor {
  0% {
    color: rgba(255, 0, 0, 0.6);
  }
  50% {
    color: transparent;
  }
  100% {
    color: rgba(255, 0, 0, 0.6);
  }
}

@keyframes fadeColor {
  0% {
    color: rgba(255, 0, 0, 0.6);
  }
  50% {
    color: transparent;
  }
  100% {
    color: rgba(255, 0, 0, 0.6);
  }
}

.cover_button.wish_button i {
  color: transparent;
}

.cover_button.wish_button.liked i:first-child {
  color: red;
}

.cover_button.wish_button i:last-child {
  color: white;
}

.cover_button.room_count .count {
  position: absolute;
  display: block;
  top: 0;
  right: -6%;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 2.7;
  font-size: 50%;
  color: #fff;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 200ms;
  transition: 200ms;
}

.cover_button.wish_button.liked:hover i {
  color: red;
}

.cover_button.wish_button.liked:hover i:last-child {
  color: white;
}

@media (max-width: 500px) {
  .cover_buttons {
    padding: 16px;
  }
  .cover_buttons_container {
    height: 38px;
  }
  .cover_button_caption {
    font-size: 12px;
    border-radius: 4px;
    min-width: 130px;
  }
  .cover_button {
    width: 40px;
    height: 34px;
    font-size: 28px;
    line-height: 26px;
    padding: 0 0.5rem;
  }
  .cover_button.share_button:after, .cover_button.wish_button:after {
    content: none;
  }
  .cover_button.share_button .cover_button_caption, .cover_button.wish_button .cover_button_caption {
    display: none;
  }
  .discountmark {
    font-size: 1rem;
    left: 1rem;
  }
  .discountmark .cover_button_caption {
    left: calc(40px + 8px);
    min-width: 120px;
  }
}

.room {
  position: relative;
  width: 48%;
  max-width: 450px;
  float: right;
  border: 1px solid #dce0e0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 10px 1% 20px 1%;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 5px 0px #e6e6e6;
  box-shadow: 0px 0px 5px 0px #e6e6e6;
  direction: rtl;
}

.room .ready-for-nowruz {
  width: 90px;
  height: 36px;
  position: absolute;
  background-color: var(--firstColor);
  border-radius: 0 3px 3px 0;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  top: 4px;
  left: -2px;
  z-index: 1;
}

.room .ready-for-nowruz div {
  width: 100%;
  height: 100%;
  padding: 4px 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.room .ready-for-nowruz div .nrz_price_lable {
  display: block;
  color: #fff;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
  text-shadow: 0px 0px 1px #333;
}

.room .ready-for-nowruz div .nrz_price {
  display: block;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  text-shadow: 0px 0px 1px #333;
}

.room .ready-for-nowruz div .nrz_price span {
  font-size: 8px;
}

.room .nowruz-instant {
  width: 41px;
  height: 38px;
  position: absolute;
  left: 8px;
  top: 8px;
  background: url(/images/room/nowruz-instant.png) no-repeat;
  background-size: contain;
  z-index: 1;
}

.room .full-in-nowruz {
  width: 70px;
  height: 36px;
  position: absolute;
  background-color: var(--firstColor);
  border-radius: 0 3px 3px 0;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  top: 4px;
  left: -2px;
  z-index: 1;
  color: #fff;
  padding: 4px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.room .full-in-nowruz small {
  display: block;
  font-size: 10px;
  line-height: 10px;
}

.room .full-in-nowruz strong {
  font-size: 16px;
  line-height: 20px;
}

.room .room_photo {
  width: 100%;
  padding-bottom: 67%;
  overflow: hidden;
  position: relative;
}

.room .room_photo a {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #ccc;
  background-size: cover;
  background-repeat: no-repeat;
}

.room .room_photo a:before {
  content: " ";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0;
  -webkit-animation: opacityloading 3s linear infinite;
  animation: opacityloading 3s linear infinite;
}

.room .room_photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.room .room_price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  bottom: 8px;
  right: 0;
  background-color: rgba(43, 45, 46, 0.7);
  color: #fff;
  font-size: 16px;
  padding: 6px 0px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  line-height: 1;
  text-align: center;
  width: auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.room .room_price .room_price_container {
  min-width: 90px;
  padding: 0 6px;
}

.room .room_price .room_discprice {
  display: block;
  position: relative;
  bottom: 0;
  right: 0;
  height: 20px;
  color: black;
  font-size: 11px;
  line-height: 22px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  width: 100%;
  text-align: center;
  background-color: #f0c807;
  z-index: 1;
  padding: 0 6px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 4px;
  margin-bottom: -6px;
}

.room .room_price .room_discprice small {
  font-size: 10px;
}

.room .room_price.period_discount {
  padding: 6px 0 0;
}

.room .room_price .old_price_container {
  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;
  margin-bottom: 4px;
}

.room .room_price .old_price_container .old_price {
  text-decoration: line-through;
  font-size: 14px;
  color: #cacaca;
}

.room .room_price .old_price_container .discount_rate {
  background-color: #f0c807;
  color: black;
  border-radius: 1rem;
  padding: 3px 6px 0px;
  text-align: center;
  font-size: 13px;
  line-height: 1;
  min-width: 16px;
  direction: ltr;
}

.room .room_price .old_price_container .discount_rate small {
  font-size: 12px;
}

.room .room_price small {
  font-size: 11px;
}

.room .room_summ {
  width: 100%;
  height: 70px;
  position: relative;
}

.room .room_user {
  width: 60px;
  height: 60px;
  position: absolute;
  top: -35px;
  left: 8px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 1;
}

.room .room_user a {
  width: 100%;
  height: 100%;
  display: block;
}

.room .room_user img {
  width: 100%;
  height: 100%;
}

.room .room_title {
  width: 80%;
  height: 40px;
  display: block;
  font-size: 16px;
  color: #484848;
  overflow: hidden;
  padding-right: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.search_result .room .room_title {
  line-height: 50px;
}

.room .room_info {
  width: 100%;
  height: 26px;
  overflow: hidden;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  white-space: nowrap;
}

.room .room_address,
.room .room_reviw {
  font-size: 13px;
  line-height: 20px;
  margin-left: 0.25rem;
  float: right;
}

.room .room_address {
  background-color: #f4f4f4;
  border-radius: 5px;
  border: 1px solid #f4f4f4;
  font-size: 12px;
}

.room .room_address a {
  color: #000;
  padding: 6px;
}

.room .room_address a i {
  font-size: 13px;
  vertical-align: middle;
  font-weight: bold;
  margin-left: 0.25rem;
}

.room .rm_meta_res_success {
  text-align: center;
  line-height: 1;
  background: #f4f4f4;
  border: 1px solid #f4f4f4;
  padding: 6px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
}

.room .rm_meta_res_success span {
  direction: ltr;
  unicode-bidi: embed;
  font-size: 120%;
  line-height: 13px;
  background: #f4f4f4;
  padding: 0 4px;
  margin-right: -6px;
  color: black;
}

.room .room_rate {
  overflow: hidden;
  float: right;
  margin-right: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.room .room_rate .rate_star {
  float: right;
  width: 14px;
  font-size: 12px;
  line-height: 16px;
}

.room .room_rate .rate_num {
  float: right;
  font-size: 13px;
  line-height: 20px;
  color: #484848;
  margin-right: 4px;
}

.room .icon_star.active,
.room .icon_starhalf.active {
  color: #efce4a;
}

.room .icon_star.deactive,
.room .icon_starhalf.deactive {
  color: #ddd;
}

.room .room_comp {
  width: 100%;
  height: 60px;
  border-top: 1px solid #dce0e0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.room .room_comp_items {
  width: 25%;
  height: 100%;
  float: right;
  border-left: 1px solid #dce0e0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.room .room_comp_items:last-of-type {
  border-left: none;
}

.room .room_comp_items span {
  width: 100%;
  height: 20px;
  display: block;
  position: absolute;
  bottom: 0;
  text-align: center;
  font-size: 12px;
}

.room .room_comp_items i {
  width: 100%;
  height: 40px;
  display: block;
  position: absolute;
  top: 0;
  text-align: center;
  line-height: 40px;
  font-size: 24px;
  color: #484848;
}

.room_slider .room_comp,
#wishes_sec .room_comp {
  display: inherit;
  width: 100%;
  height: 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 30px;
  border: 0;
}

.room_slider .room_comp_items span a,
#wishes_sec .room_comp_items span a {
  color: inherit;
}

.room_slider .room_photo,
#wishes_sec .room_photo {
  overflow: unset;
}

.room_slider .room_photo .room_title,
#wishes_sec .room_photo .room_title {
  position: absolute;
  z-index: 9;
  color: black;
  font-size: 14px;
  width: 100%;
  bottom: -30px;
  padding: 0.5em;
  border-bottom: 1px solid #ddd;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 30px;
  line-height: 1;
  background: white;
  white-space: nowrap;
  overflow: hidden;
}

body {
  background-color: #fff;
  padding-top: 0 !important;
}

header {
  position: fixed !important;
}

header .open_search_box,
header .search_box {
  display: none;
}

header .sm_srch_buttons {
  height: 32px;
  display: none;
  overflow: visibility;
  border: 1px solid #dbdbdb;
  border-radius: 20px;
  background-color: #fff;
  margin-top: 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.08);
  position: relative;
}

header .sm_srch_divider {
  width: 1px;
  height: 16px;
  background-color: #6d6d6d;
  margin: 7px 0;
  float: left;
  overflow: hidden;
}

header .sm_srch_butt {
  background-color: transparent;
  color: #6d6d6d;
  font-size: 13px;
  margin: 0;
  border: none;
}

header .sm_srch_butt i {
  font-weight: 600;
  line-height: 13px;
}

header .sm_srch_butt.hide {
  display: none;
}

header .sm_srch_map {
  padding: 5px 10px 5px 12px;
}

header .sm_srch_result {
  padding: 5px 10px 5px 12px;
}

header .sm_srch_filters {
  padding: 5px 12px 5px 10px;
}

/**************************
** map
***************************/
.map_sec {
  width: 40%;
  height: 100%;
  height: calc(100% - 60px);
  display: block;
  position: fixed !important;
  top: 60px;
  right: 0;
  border-left: 1px solid #ccc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #ccc;
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

.leaflet-overlay-pane .leaflet-interactive, .location-finder-marker {
  -webkit-transition: .3s;
  transition: .3s;
}

.location-finder-marker.dragging {
  -webkit-transition-duration: 1ms;
  transition-duration: 1ms;
}

.leaflet-interactive.animated {
  -webkit-transition-duration: 0ms;
  transition-duration: 0ms;
}

.leaflet-center {
  text-align: center;
  width: 100%;
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: none;
}

.leaflet-control-zoom {
  border-radius: 16px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2) !important;
}

.leaflet-control-zoom-in {
  border-radius: 16px 16px 0 0 !important;
}

.leaflet-control-zoom-out {
  border-radius: 0 0 16px 16px !important;
}

.leaflet-control-switch {
  background-color: #fff;
  border-radius: 100%;

  display: block;
  color: #333 !important;
  font-size: 13px;
  font-weight: bold;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  padding: 10px;
  cursor: pointer;
}
.leaflet-control-switch svg{
  width: 30px;
  height: 30px;
}

.leaflet-control-switch .check-box {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 2px solid #333;
  position: absolute;
  top: 6px;
  right: 12px;
}

.leaflet-control-switch .check-box svg {
  display: none;
}

.leaflet-control-switch.active .check-box {
  background-color: #efce4a;
}

.leaflet-control-switch.active .check-box svg {
  display: block;
  position: absolute;
  left: 2px;
  width: 105%;
}

#search-controls-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
}

#leaflet-control-search-location,
#leaflet-control-accept-location {
  display: none;
  opacity: 0;
  position: absolute;
  z-index: 800;
  pointer-events: visiblePainted;
  pointer-events: auto;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
  -webkit-transition: all 200ms;
  transition: all 200ms;
}

#leaflet-control-search-location.show,
#leaflet-control-accept-location.show {
  display: block;
}

#leaflet-control-search-location.in,
#leaflet-control-accept-location.in {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

#leaflet-control-search-location-btn,
#leaflet-control-accept-location-btn {
  background: #f0c807;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  direction: rtl;
  font-family: "JIS", sans-serif, "OpenSansRegular", Helvetica, Arial;
  color: black !important;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: inline-block;
  min-width: 120px;
  outline: none;
}

#leaflet-control-search-location-btn svg {
  width: 8px;
  margin: 0 10px -3px 0;
}

#leaflet-control-accept-location-btn svg {
  width: 14px;
  margin: 0 0 -5px 8px;
}

.leaflet-container-loading {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.leaflet-loading {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  background: #f0c807;
  border-radius: 50%;
  margin-left: -35px;
  margin-top: -35px;
  padding: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.leaflet-loading svg {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 25%;
  left: 25%;
}

.leaflet-loading .bounce1,
.leaflet-loading .bounce2 {
  width: 200%;
  height: 200%;
  border-radius: 50%;
  background-color: #f0c807;
  opacity: 0.6;
  position: absolute;
  -webkit-animation: leaflet-bounce-animation 2s infinite ease-in-out;
  animation: leaflet-bounce-animation 2s infinite ease-in-out;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  margin: -50%;
}

.leaflet-loading .bounce1 {
  background-color: #f0c807;
  opacity: 0.8;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.leaflet-loading .bounce2 {
  background-color: #e2bf11;
  opacity: 0.8;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.leaflet-loading .loading-spinner * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.leaflet-loading .loading-spinner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: inline-block;
  -webkit-animation-name: leaflet-spinner-animation;
  animation-name: leaflet-spinner-animation;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.leaflet-loading .loading-spinner .load {
  width: 100%;
  height: 50%;
  overflow: hidden;
}

.leaflet-loading .loading-spinner .circle-inner {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 50%;
  border: 3px solid white;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  width: 100%;
  height: 200%;
  -webkit-animation-name: leaflet-circle1-animation;
  animation-name: leaflet-circle1-animation;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-timing-function: cubic-bezier(0.25, 0.1, 0.5, 1);
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.5, 1);
}

.leaflet-loading .loading-spinner .circle-2 {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.leaflet-loading .loading-spinner .circle-2 .circle-inner {
  -webkit-animation-name: leaflet-circle2-animation;
  animation-name: leaflet-circle2-animation;
}

@-webkit-keyframes leaflet-circle1-animation {
  from {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
  }
  to {
    -webkit-transform: rotate(205deg);
    transform: rotate(205deg);
  }
}

@keyframes leaflet-circle1-animation {
  from {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
  }
  to {
    -webkit-transform: rotate(205deg);
    transform: rotate(205deg);
  }
}

@-webkit-keyframes leaflet-circle2-animation {
  from {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  to {
    -webkit-transform: rotate(-115deg);
    transform: rotate(-115deg);
  }
}

@keyframes leaflet-circle2-animation {
  from {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  to {
    -webkit-transform: rotate(-115deg);
    transform: rotate(-115deg);
  }
}

@-webkit-keyframes leaflet-spinner-animation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes leaflet-spinner-animation {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes leaflet-bounce-animation {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
    opacity: 100%;
  }
  20% {
    transform: scale(0);
    -webkit-transform: scale(0);
    opacity: 100%;
  }
  100% {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    opacity: 0%;
  }
}

@keyframes leaflet-bounce-animation {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
    opacity: 100%;
  }
  20% {
    transform: scale(0);
    -webkit-transform: scale(0);
    opacity: 100%;
  }
  100% {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    opacity: 0%;
  }
}

.room-marker-icon {
  background: #f0c807;
  width: 24px !important;
  height: 24px !important;
  border-radius: 50%;
  padding: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.7);
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.7);
}

.room-point-icon {
  background: #f0c807;
  border-radius: 50%;
}

.map_room_popup .leaflet-popup-content-wrapper {
  padding: 0px;
  text-align: right;
  border-radius: 16px;
}

.map_room_popup .leaflet-popup-content {
  width: 300px !important;
  margin: 0;
}

.map_room_popup a.leaflet-popup-close-button {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 32px;
  color: #fff;
  text-shadow: 0 0 2px black;
}

.map_room_popup_wrapper {
  position: relative;
  width: 300px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  direction: rtl;
  font-family: "JIS", sans-serif, "OpenSansRegular", Helvetica, Arial;
}

.map_room_popup_wrapper.loading {
  padding-bottom: 1px;
}

.map_room_skeleton_img {
  width: 100%;
  padding-bottom: 200px;
  border-radius: 16px 16px 0 0;
}

.map_room_skeleton_title {
  width: 90%;
  height: 22px;
  margin: 8px;
}

.map_room_skeleton_meta {
  width: 70%;
  height: 22px;
  margin: 8px;
}

.skeleton_box {
  position: relative;
  overflow: hidden;
  background-color: #DDDBDD;
}

.skeleton_box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(20%, rgba(255, 255, 255, 0.2)), color-stop(60%, rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
  -webkit-animation: shimmer 4s infinite;
  animation: shimmer 4s infinite;
  content: '';
}

@-webkit-keyframes shimmer {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes shimmer {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.map_room_img_sec {
  width: 100%;
  padding-bottom: 200px;
  overflow: hidden;
  position: relative;
  border-radius: 16px 16px 0 0;
  background: #f4f4f4;
}

.map_room_img_sec img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.map_room_price {
  position: absolute;
  bottom: 8px;
  right: 0;
  background-color: rgba(43, 45, 46, 0.7);
  color: #fff;
  font-size: 16px;
  padding: 6px 10px;
  border-radius: 10px 0 0 10px;
  line-height: 1;
}

.map_room_price span {
  margin: 0 4px;
}

.map_room_price small {
  font-size: 14px;
}

.map_room_title {
  width: 100%;
  height: 32px;
  line-height: 36px;
  display: block;
  color: #484848;
  overflow: hidden;
  padding-right: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
}

.map_room_meta {
  padding: 0 10px 10px 0;
}

.map_room_meta > div {
  display: inline-block;
  line-height: 20px;
  margin-left: 4px;
  overflow: hidden;
}

.map_room_city {
  max-width: 80px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.map_room_city,
.map_room_books {
  padding: 1px 10px;
  color: #333;
  background-color: #f4f4f4;
  border-radius: 10px;
  font-size: 12px;
}

.map_room_city .icon {
  font-size: smaller;
  vertical-align: middle;
  font-weight: bold;
  margin-left: 4px;
}

.map_room_rate .rate_star {
  margin: 0 1px;
  width: 14px;
}

.map_room_rate .rate_num {
  color: #484848;
  margin-right: 2px;
}

.map_room_rate .icon_star.active,
.map_room_rate .icon_starhalf.active {
  color: #efce4a;
}

.map_room_rate .icon_star.deactive,
.map_room_rate .icon_starhalf.deactive {
  color: #ddd;
}

.continer {
  width: 60%;
  height: 100%;
  height: calc(100% - 60px);
  display: block;
  position: fixed !important;
  top: 60px;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.search_popup .popup_close_div {
  direction: rtl;
}

.search_popup .popup_close_div button {
  cursor: pointer;
  background-color: transparent;
  padding: 15px 0;
  border: 0px;
  display: block;
}

.search_popup .popup_innerContainer {
  display: unset;
  height: unset;
  width: unset;
  direction: unset;
  background-color: unset;
}

.search_popup .popup_wrapper {
  display: unset;
  vertical-align: unset;
  padding: unset;
}

.search_popup .popup_content_container {
  position: unset;
  overflow: unset;
  margin: unset;
  height: unset;
  max-width: unset;
  max-height: unset;
  display: inherit;
}

.search_popup .popup_body {
  padding-top: 0;
}

.search_popup .search_formgroup hr {
  display: block;
  width: 100%;
  margin: 2px 0;
  border-bottom: 1px dashed #dce0e0;
  background-color: transparent;
}

@media (min-width: 500px) {
  .search_popup .search_formgroup.npr {
    padding-right: 120px;
  }
}

.search_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  padding-top: 225px;
  background-color: #f7f7f7;
  direction: ltr;
  overflow-y: scroll;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.search_popup .popup_content {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  position: relative !important;
  max-width: unset !important;
  margin: unset !important;
  padding: 0 20px !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#search_priceSlider:not(.noUi-state-drag) .noUi-connect,
#search_priceSlider:not(.noUi-state-drag) .noUi-origin {
  -webkit-transition: -webkit-transform 700ms ease-out;
  transition: -webkit-transform 700ms ease-out;
  transition: transform 700ms ease-out;
  transition: transform 700ms ease-out, -webkit-transform 700ms ease-out;
}

.search_result {
  direction: ltr;
}

.search_result.loding {
  opacity: 0.2;
  cursor: default;
}

.search_result.hide {
  display: none;
}

.search_result .room .room_address,
.search_result .room .room_reviw {
  margin-left: 0.5rem;
}

.search_result .room .room_rate {
  margin-right: 0.5rem;
}

.resulthead {
  width: 100%;
  padding: 0 0.25rem;
  position: relative;
  margin-bottom: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.resulthead h1 {
  float: right;
  width: 100%;
  display: block;
  direction: rtl;
  font-size: 16px;
  color: #6d6d6d;
  line-height: 28px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.resulthead h1 .share-container {
  display: inline-block;
  margin-right: 1rem;
  vertical-align: middle;
}

.resulthead h1 .share-container .icon_shareto {
  font-size: 21px;
  background: #efefef;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 34px;
  height: 34px;
  line-height: 1;
  padding: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #444;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: 200ms;
  transition: 200ms;
}

.resulthead h1 .share-container .icon_shareto:hover {
  color: #c30001;
}

.resulthead h1 .share-container .icon_shareto::before {
  margin-top: -2px;
  margin-left: -2px;
}

.resulthead .result_count {
  float: right;
  width: 100%;
  display: block;
  direction: rtl;
  font-size: 12px;
  color: #6d6d6d;
  line-height: 20px;
}

.resulthead .search_note {
  float: right;
  width: 100%;
  display: block;
  direction: rtl;
  font-size: 9px;
  color: #6d6d6d;
  line-height: 10px;
}

.resulthead.islandingpage .result_count {
  font-size: 11px;
}

.resulthead.islandingpage .search_note {
  display: none;
}

@media screen and (max-width: 500px) {
  .resulthead .share-container {
    float: left;
  }
}

.result_order {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.result_order select {
  direction: rtl;
  background-color: white;
  height: 38px;
  padding: 0 8px 0 14px;
  border: 1px solid #dbdbdb;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.result_order .order_icon {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 0;
  left: 5px;
  background: #fff;
  bottom: 0;
  margin: auto 0;
}

.result_order .order_icon svg {
  fill: #333;
}

.result_order .order_loading {
  display: none;
}

.result_order .order_loading.active {
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  top: 50%;
  right: -37px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top: 3px solid #bdbdbd;
  border-bottom: 3px solid #bdbdbd;
  -webkit-animation: spin 600ms linear infinite;
  animation: spin 600ms linear infinite;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*************************************
\\\\  search block
**************************************/
.search_block {
  position: absolute;
  width: 100%;
  background-color: #fff;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 0 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid #dce0e0;
  -webkit-transition: top 1s;
  transition: top 1s;
}

.isDesktop .search_block {
  width: 100%;
  width: calc(100% - 20px);
  right: 20px;
}

.search_block.close {
  top: -250px;
}

.desktop_search {
  display: block;
}

.mobile_search {
  height: 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 12px 0 12px 100px;
  display: none;
}

.search_block .search_group {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 12px 0;
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #dce0e0;
}

.search_block .btn_group {
  direction: ltr;
  padding-left: 250px;
  height: 70px;
  border-bottom: none;
}

.btn_group.switch-options {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.search_block .btn_sec {
  position: absolute;
  width: 250px;
  height: 100%;
  left: 0;
  top: 0;
  padding-top: 14px;
}

.search_block .mobile_search .btn_sec {
  width: 110px;
}

.search_block .btn_sec button {
  border: 1px solid;
  border-radius: 3px;
  padding: 6px 14px;
  font-size: 15px;
  margin-left: 6px;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.08);
}

.search_block .btn_sec button i {
  line-height: 0;
  margin-right: 2px;
  font-weight: bold;
}

.search_block button.do_search_btn {
  border-color: var(--firstColor);
  background-color: var(--firstColor);
  color: var(--colorFF);
}

.search_block button.moor_filter_btn {
  border-color: #c4c4c4;
  background-color: #fff;
  color: #484848;
  position: relative;
}

.search_block button.moor_filter_btn .badge-count,
.sm_srch_buttons .badge-count {
  background-color: var(--firstColor);
  color: var(--colorFF);
  padding: 2px;
  font-size: 12px;
  border-radius: 100%;
  line-height: 14px;
  height: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 16px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.25);
  -webkit-transform: translate(calc(50% - 2px), -50%);
  transform: translate(calc(50% - 2px), -50%);
}

.sm_srch_buttons .badge-count {
  right: 0;
  -webkit-transform: translate(2px, -50%);
  transform: translate(2px, -50%);
}

.search_block button.do_search_btn:hover {
  border-color: var(--hoverF);
  background-color: var(--hoverF);
}

.search_block button.moor_filter_btn:hover {
  border-color: #aaa;
}

.search_block .srch_input {
  width: 33.33%;
  padding: 0 6px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: right;
}

.search_block .srch_tags {
  width: 100%;
  height: 100%;
  direction: rtl;
}

.search_block .tag {
  position: relative;
  display: inline-block;
  float: right;
  padding: 1px 6px 1px 22px;
  font-size: 12px;
  line-height: 20px;
  border-radius: 4px;
  color: #6d6d6d;
  background-color: #efefef;
  margin-right: 6px;
  margin-bottom: 3px;
  cursor: pointer;
}

.search_block .tag:before {
  content: "\F1CB";
  font-family: "icon";
  position: absolute;
  left: 4px;
  top: 50%;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 50%;
  font-size: 5px;
  font-weight: 900;
  line-height: 10px;
  text-align: center;
  color: #fff;
}

.search_block .srch_field {
  position: relative;
  width: 100%;
  height: 40px;
  padding: 0 30px 0 4px;
  border: 1px solid #dbdbdb;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.search_block .srch_field i {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  font-size: 18px;
  line-height: 14px;
  color: #767676;
  top: 50%;
  right: 5px;
}

.search_block .srch_field select {
  width: 100%;
  height: 100%;
  border: none;
  font-size: 14px;
  background-color: white;
  color: #484848;
}

.search_block .srch_field option {
  background-color: #fff;
  color: #484848;
  font-size: 14px;
}

.search_block .city.inprocess ~ .loding,
.search_block .state.inprocess ~ .loding {
  position: absolute;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  top: 50%;
  right: 0px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top: 2px solid #bdbdbd;
  border-bottom: 2px solid #bdbdbd;
  -webkit-animation: spin 600ms linear infinite;
  animation: spin 600ms linear infinite;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.search_block .gsnum_field {
  width: 100%;
  height: 100%;
  position: relative;
}

.search_block .gs_txt {
  position: absolute;
  top: 50%;
  right: 5px;
  font-size: 14px;
  line-height: 20px;
  height: 20px;
  margin-top: -10px;
  color: #484848;
}

.search_block .gs_action {
  width: 62px;
  height: 26px;
  margin-top: -13px;
  position: absolute;
  top: 50%;
  left: 6px;
}

.search_block .gs_up,
.search_block .gs_down {
  width: 24px;
  height: 24px;
  display: block;
  fill: #6d6d6d;
  position: absolute;
  top: 0;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #6d6d6d;
  padding: 0 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.search_block .gs_up {
  left: 0;
}

.search_block .gs_down {
  right: 0;
}

.switch-control {
  width: 100%;
  max-width: 180px;
  direction: rtl;
  font-size: 14px;
}

.switch-control span {
  color: #333;
}

.switch-control span .tip {
  color: #60beff;
}

.switch-control .switch {
  display: inline-block;
  position: relative;
  width: 3.5em;
  height: 1.75em;
  border-radius: 20px;
  background: #dfd9ea;
  -webkit-transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  vertical-align: middle;
  cursor: pointer;
}

.switch-control .switch::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(1.75em - 4px);
  height: calc(1.75em - 4px);
  background: #fafafa;
  border-radius: 50%;
  -webkit-transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.switch-control .switch:active::before {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 calc(1.75em - 4px) rgba(128, 128, 128, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 calc(1.75em - 4px) rgba(128, 128, 128, 0.1);
}

.switch-control input:checked + .switch {
  background: #60beff;
}

.switch-control input:checked + .switch::before {
  left: calc(1.75em + 2px);
  background: #fff;
}

.switch-control input:checked + .switch:active::before {
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 150, 136, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 150, 136, 0.2);
}

@media (max-width: 550px) {
  .switch-control {
    margin-bottom: .5rem;
    font-size: 13px;
  }
}

/*************************************
\\\\  nstSlider
**************************************/
.price_range {
  float: right;
  width: 100%;
  padding: 10px 15px 0 15px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.is_clickable {
  cursor: hand;
  cursor: pointer;
}

.nstSlider {
  cursor: hand;
  cursor: pointer;
  border-radius: 10px;
  position: relative;
  width: 97%;
  float: right;
  margin-right: 1.5%;
  height: 12px;
  background: #ececec;
}

.nstSlider .leftGrip.gripHighlighted {
  background: #ececec;
}

.nstSlider .rightGrip.gripHighlighted {
  background: #ececec;
}

.nstSlider .rightGrip,
.nstSlider .leftGrip {
  position: absolute;
  top: -6px;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  background: #ffffff;
  border: 1px solid #9c9c9c;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.08);
}

.nstSlider .bar {
  border-radius: 10px;
  position: absolute;
  background: #9c9c9c;
  height: 4px;
  top: 4px;
}

.nstSlider .highlightPanel {
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  border-radius: 10px;
  position: absolute;
  background: #e87722;
  height: 20px;
  top: 0;
}

.leftLabel,
.rightLabel {
  width: 50%;
  float: right;
  height: 30px;
  line-height: 40px;
  font-size: 13px;
  color: #4c4c4c;
  padding: 0 10px;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.leftLabel {
  text-align: left;
}

/*************************************
\\\\  no result
**************************************/
.no_result {
  width: 88%;
  float: right;
  margin: 10px 0 60px 0;
  padding: 0 6%;
  direction: rtl;
}

.no_result h2 {
  line-height: 60px;
  font-size: 22px;
  color: #484848;
}

.no_result p {
  line-height: 26px;
  font-size: 14px;
  color: #484848;
}

.no_result ul {
  list-style: disc;
  padding-right: 20px;
}

.no_result li {
  font-size: 14px;
  margin: 10px 0;
}

.no_result button {
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #fff;
  font-size: 13px;
  background-color: #6e69d2;
  padding: 4px 15px;
  margin: 5px 0px;
}

/*************************************
\\ pagination
**************************************/
.pagination_sec {
  width: 100%;
  float: right;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  direction: rtl;
}

.pagination li {
  background-color: #fff;
}

.pagination li.disabled {
  background-color: unset;
}

/*************************************
\\\\  map marker
**************************************/
.marker {
  position: absolute;
  cursor: pointer;
  color: #fff;
  font-size: 13px;
  line-height: 22px;
  text-align: center;
  background-color: #f95359;
  min-width: 30px;
  padding: 0 3px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #f44336;
  -webkit-box-shadow: 1px 1px 1px #b30c00;
  box-shadow: 1px 1px 1px #b30c00;
}

.marker::after {
  content: " ";
  position: absolute;
  top: 100%;
  right: 50%;
  margin-right: -4px;
  background-color: #f95359;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border: 1px solid;
  border-color: transparent #ce1103 #e21304 transparent;
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Safari */
  transform: rotate(45deg);
}

.location-finder-marker {
  position: relative;
}

.location-finder-marker-icon {
  position: absolute;
  bottom: 0;
  left: 0;
}

.location-finder-marker-shadow {
  opacity: 0.1;
  -webkit-transform: rotateX(50deg) rotate(20deg) translate(20px, 17px);
  transform: rotateX(50deg) rotate(20deg) translate(20px, 17px);
  position: absolute;
  bottom: 0;
  left: 0;
}

.sm_sc_buttons {
  display: none;
}

.refinement_paths {
  width: 100%;
  float: right;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  direction: rtl;
  padding: 10px 7px;
}

.refinement_paths h3 {
  line-height: 20px;
  font-size: 14px;
  color: #484848;
  margin-bottom: 10px;
}

.refinement_paths li {
  display: inline-block;
  float: right;
  margin: 0 0 7px 7px;
}

.refinement_paths li i {
  line-height: 1;
  margin-left: 7px;
}

.refinement_paths li a {
  display: block;
  line-height: 20px;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
  padding: 5px 15px;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.08);
}

.refinement_paths li a:hover {
  border-color: #afafaf;
}

.refinement_paths li a small {
  margin-right: 5px;
  font-size: 12px;
  color: #484848;
}

/*************************************
\\\\  responsive for lower 980px
**************************************/
@media (min-width: 980px) {
  .search_popup .popup_content {
    width: 60% !important;
  }
  .search_popup .actions {
    width: 60%;
  }
  .isDesktop .search_popup .actions {
    width: 60%;
    width: calc(60% - 20px);
  }
}

.search_popup .actions {
  left: 0;
  right: auto;
  position: fixed;
}

@media (max-width: 980px) {
  header .sm_srch_buttons {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .map_sec {
    width: 100%;
    border-left: none;
    z-index: 0;
    opacity: 0;
  }
  .map_sec.show {
    opacity: 1;
    z-index: 200;
  }
  .continer {
    width: 100%;
  }
  .search_result {
    padding-bottom: 40px;
  }
}

/*************************************
\\\\  responsive for lower 1000px
**************************************/
@media (max-width: 600px) {
  .room {
    float: none;
    width: 98%;
    margin: 15px auto;
  }
}

/*************************************
\\\\  responsive for lower 500px
**************************************/
@media (max-width: 500px) {
  header .sm_srch_buttons {
    margin: 14px auto;
  }
  .search_content {
    padding-top: 84px;
  }
  .search_block.close {
    top: -80px;
  }
  .desktop_search {
    display: none;
  }
  .mobile_search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .search_block button.do_search_btn {
    display: none;
  }
  .result_order {
    top: 18px;
    left: 10px;
    z-index: 1;
    -webkit-transition: top 1s;
    transition: top 1s;
  }
  .result_order.desktop {
    display: none;
  }
  .result_order select {
    height: 44px;
  }
}

.nearby-banner {
  position: relative;
  width: 100%;
  height: 40px;
  background-color: #ffffff;
  font-size: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 6px 5px #00000014;
  box-shadow: 0px 0px 6px 5px #00000014;
  margin: 10px 0;
}

.nearby-banner a {
  width: 100%;
  height: 100%;
  display: block;
}

.nearby-banner .nearby-banner-title {
  color: black;
  margin-right: 8px;
  display: block;
  font-size: 16px;
  text-align: right;
  direction: rtl;
  line-height: 40px;
}

.nearby-banner .nearby-banner-title strong {
  font-weight: 700;
}

.nearby-banner .nearby-banner-map {
  position: absolute;
  background-image: url("data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAAAeAAD/4QMdaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzE0NSA3OS4xNjM0OTksIDIwMTgvMDgvMTMtMTY6NDA6MjIgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkY4Qjg2NkMxM0Q0NjExRUI5MjgwOTJCRDBEODlFQzkxIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkY4Qjg2NkMwM0Q0NjExRUI5MjgwOTJCRDBEODlFQzkxIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE5IFdpbmRvd3MiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0iRjNGQThFRDI0NjhCNDAxMjA2M0NFNUNEQkNGOUI5RjciIHN0UmVmOmRvY3VtZW50SUQ9IkYzRkE4RUQyNDY4QjQwMTIwNjNDRTVDREJDRjlCOUY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+/+4ADkFkb2JlAGTAAAAAAf/bAIQAEAsLCwwLEAwMEBcPDQ8XGxQQEBQbHxcXFxcXHx4XGhoa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");
  height: 100%;
  width: 60%;
  overflow: hidden;
  border-radius: 8px 30px 30px 8px;
  left: 0;
  top: 0;
}

.nearby-banner .nearby-banner-map::before {
  content: ' ';
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
}

.nearby-banner Button {
  position: absolute;
  left: 50%;
  margin-left: -42px;
  width: 84px;
  height: 24px;
  background-color: #f0c807;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  border: none;
  outline: none;
  margin-top: 8px;
  margin-bottom: 8px;
}

.nearby-banner .nearby-banner-close {
  width: 40px;
  height: 40px;
  color: white;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 13px;
  line-height: 10px;
}
