.photoGalleryWithTooltip .hotspot-slider {
    position: relative;
}

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

    .photoGalleryWithTooltip.hotspot-slider .previous-button,
    .photoGalleryWithTooltip .hotspot-slider .next-button,
    .photoGalleryWithTooltip .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) {
    .photoGalleryWithTooltip .hotspot-slider .previous-button,
    .photoGalleryWithTooltip .hotspot-slider .next-button,
    .photoGalleryWithTooltip .hotspot-slider .slick-arrow {
        display: block;
        top: calc(50% - 25px);
        height: 50px;
        width: 50px;
        background-size: 24%;
    }
}

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

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

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

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

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

.photoGalleryWithTooltip .tooltipx-content {
    position: absolute;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 20px #00000020;
    padding: 10px;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    /* left: -50%; */
    z-index: 2;
}

    .photoGalleryWithTooltip .tooltipx-content .content p {
        font-size: 14px;
    }

  /*  .photoGalleryWithTooltip .tooltipx-content .img {
        width: 50%;
        object-fit: cover;
    }*/

    .photoGalleryWithTooltip .tooltipx-content .content {
        /*width: 50%;*/
        padding: 10px;
    }

.photoGalleryWithTooltip .pin {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    height: 15px;
    width: 15px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    cursor: pointer;
}

    .photoGalleryWithTooltip .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;
    }

.photoGalleryWithTooltip .tooltipx.active .tooltipx-content {
    opacity: 1;
    pointer-events: all;
    display: block;
    padding: 10px;
    background-color: #FFFFFF;
    align-items: stretch;
    justify-content: center;
}

@media (min-width: 1024px) {
    .photoGalleryWithTooltip .tooltipx .tooltipx-content .horizontal-layout {
        max-width: 350px;
        display: flex !important;
    }
}

@media (min-width: 1024px) {
    .photoGalleryWithTooltip .tooltipx .tooltipx-content .vertical-layout {
        max-width: 170px;
    }
}

@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;
    }
}

/*.photoGalleryWithTooltip .tooltipx .tooltipx-content .horizontal-layout .img {
    width: 63px;
    height: 95px;
}

.photoGalleryWithTooltip .tooltipx .tooltipx-content .vertical-layout .img {
    width: 63px;
    height: 95px;
}*/

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

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