﻿.hotspot-slider {
    position: relative;
}

/* these styles will work with the custom buttons
   and the default slick buttons */
.hotspot-slider .slick-prev:before, 
.hotspot-slider .slick-next:before {
    content: none;
}

.hotspot-slider .previous-button,
.hotspot-slider .next-button,
.hotspot-slider .slick-arrow {
    display: block;
    position: absolute;
    top: calc(50% - 15px);
    height: 30px;
    width: 30px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.2);
    background-image: url(https://www.omnihotels.com/assets/css/img/slick-nav-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30%;
    border: 1px solid white;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

@media screen and (min-width: 768px) {
    .hotspot-slider .previous-button, 
    .hotspot-slider .next-button,
    .hotspot-slider .slick-arrow {
        display: block;
        top: calc(50% - 25px);
        height: 50px;
        width: 50px;
        background-size: 24%;
    }
}

.hotspot-slider .previous-button,
.hotspot-slider .slick-arrow.slick-prev {
    left: 0;
    left: 15px;
    transform: rotate(180deg);
}

.hotspot-slider .next-button,
.hotspot-slider .slick-arrow.slick-next {
    right: 0;
    right: 15px;
    transform: rotate(0deg);
}
/* end prev/next button styles */

.containerX {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.XXcontainerX img {
    width: 100%;
    height: auto;
}

.all-tooltipx {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.tooltipx-content {
    position: absolute;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 20px #00000020;
    padding: 10px;
    border-radius: 8px;
    width: 90vw;
    max-width: 300px;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}

.tooltipx-content .content p {
    font-size: 14px;
}
.tooltipx-content .img {
    width: 50%;
    object-fit: cover;
}
.tooltipx-content .content {
    padding: 10px;
}
.pin {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    height: 15px;
    width: 15px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    cursor: pointer;
}

    .pin:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgb(255, 255, 255);
        border-radius: 50%;
        animation: puls-effect 1s ease infinite;
    }

.tooltipx.active .tooltipx-content {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    display: block;
    padding: 10px;
    background-color: #FFFFFF;
    align-items: stretch;
    justify-content: center;
}
/* for screen readers */
.tooltipx-content .content * {
    opacity: 0;
    transition: 0.3s ease-in-out;
}
.tooltipx.active .tooltipx-content .content * {
    opacity: 1;
}

/* Custom Style for tooltipx-1 */

.tooltipx-1 .pin {
    top: 82%;
    left: 49%;
}
.tooltipx-1 .tooltipx-content {
    top: 13%;
    left: 28%;
    max-width: 170px;
}

.tooltipx-2 .pin {
    top: 88%;
    left: 73%;
}

.tooltipx-2 .tooltipx-content {
    top: 22%;
    left: 50%;
    max-width: 170px;
    display: block;
}

.tooltipx-2 .tooltipx-content .content {
    width:100%;
}


.tooltipx-3 .pin {
    top: 11%;
    left: 92%;
}

.tooltipx-3 .tooltipx-content {
    top: 5%;
    left: 75%;
    max-width: 170px;
}

.tooltipx-4 .pin {
    top: 79%;
    left: 32%;
}

.tooltipx-4 .tooltipx-content {
    top: 55%;
    left: 14%;
    max-width: 170px;
}

.tooltipx-5 .pin {
    top: 60%;
    left: 70%;
}

.tooltipx-5 .tooltipx-content {
    top: 25%;
    left: 47%;
    max-width: 170px;
}

.tooltipx-2-2 .pin {
    top: 25%;
    left: 83%;
}
.tooltipx-2-2 .tooltipx-content {
    top: 10%;
    left: 35%;
    display: flex !important;
    max-width: 350px;
}

.tooltipx-2-3 .pin {
    top: 84%;
    left: 82%;
}
.tooltipx-2-3 .tooltipx-content {
    top: 44%;
    left: 39%;
    max-width: 350px;
    display: flex !important;
}

.tooltipx-2-4 .pin {
    top: 94%;
    left: 62%;
}

.tooltipx-2-4 .tooltipx-content {
    top: 34%;
    left: 39%;
    max-width: 175px;
}

/* Puls Effect For Pins */
@keyframes puls-effect {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Media Query */

@media (max-width: 558px) {
    .tooltipx-content {
       
        /*max-width: 175px !important;*/
        padding: 3px !important;
    }
        .tooltipx-content .content {
            padding: 3px !important;
        }
}

@media (max-width: 768px) {
    .tooltipx-content .img {
       display: none;
    }
    .tooltipx-content {
        top: 5% !important;
        left: 13% !important;
        max-width: 175px !important;
    }
}

.tooltipx {
    /* display: none;*/
}

@media (min-width: 992px) {
    .tooltipx {
        display: block;
    }
}

