:root {
    scroll-behavior: auto;
}

@keyframes spin {
    100% {
        transform: rotate( 360deg );
    }
}

.blockUI.blockOverlay {
    z-index: 99 !important;
}

.blockUI.blockOverlay::before {
    height: 34px !important;
    width: 34px !important;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -17px;
    margin-top: -17px;
    content: '';
    -webkit-animation: spin 1s ease-in-out infinite;
    animation: spin 1s ease-in-out infinite;
    background: url(../img/loader.svg) center center;
    background-size: cover;
    line-height: 1;
    text-align: center;
    font-size: 2em;
    color: rgba(0,0,0,.75);
    z-index: 99 !important;
}

.hotel-search > .blockUI.blockOverlay::before {
    top: 120px;
    margin-top: 0;
}

.not-found {
    text-align: center;
    padding: 15px;
}

.selected-categories {
    display: none;
}

.custom-clustericon {
    background: #000;
    color: #fff;
    border-radius: 100%;
    font-weight: bold;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.custom-clustericon:before,
.custom-clustericon:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    background: #000;
    border-radius: 100%;
}

.custom-clustericon:before {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    opacity: 0.6;
}

.custom-clustericon:after {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    opacity: 0.3;
}

.custom-clustericon-1 {
   --cluster-color: hsl(#000);
}

.custom-clustericon-2 {
    --cluster-color: hsl(#000);
}

.custom-clustericon-3 {
    --cluster-color: hsl(#000);
}

.content-map-wrap {
    margin-top: 75px;
}

@media only screen and (max-width: 1440px) {
    .content-map-wrap {
        margin-top: 55px;
    }
}