.map-marker-dialog {
    color:black
}

.d-none {
    display: none !important;
}

.c-wait {
    cursor: wait !important;
}

.map-for-guest {
    cursor: pointer;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

.video-foreground > img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    z-index: 2;
    display: block;
    transition: opacity 0.75s ease;
}
/* .video-foreground iframe {
    transition: opacity .75 ease;
} */
@media (max-width: 767px) {
    .visible-xs {
      display: block !important;
    }
}

@media (max-width: 767px) {
    .hidden-xs {
      display: none !important;
    }
}

.swiper-slide.videos-item,
.video-thumb {
    position: relative;
}
.swiper-slide.videos-item img.play-video-thumb-btn,
.video-thumb img.play-video-thumb-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10%;
    transition: opacity 0.2s ease, transform 0.3s ease;
}

.swiper-slide.videos-item img.play-video-thumb-btn,
.video-thumb img.play-video-thumb-btn:hover {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.05);
}

.hero-subtitle .read_more,
.hero-subtitle .read_less {
    cursor: pointer;
}

.blank-swiper-block {
    width: 100%;
    height: 100%;
    background-color: #dddd;
}
.border-red {
    border: 2px solid red;
}
.input-error {
    color: red;
    font-size: 90%;
}
.cursor-wait {
    cursor: wait;
}

.modal__body iframe{
    height: 18px;
}

.sm-loader {
    width: 1em;
    height: 1em;
    border: 3px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 
.with-animation .sm-loader {
    display: none;
}
.with-animation.cursor-wait .sm-loader {
    display: inline-block;
} 