/**********************************************************/
/*	@copyright	VictoryGroup					          */
/*	@support	https://victoryagency.ru/				  */
/**********************************************************/

.map-out {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 50;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: .3s ease;
}

.map-out.hide {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.map-clue,
.map-clue-bottom {
    position: absolute;
    z-index: 9999;
    display: none;
    background: #fff;
    border-radius: 10rem;
    font-size: 12rem;
    color: #000;
    padding: 10rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    text-align: center;
    justify-content: center;
}

.map-clue.show {
    display: block;
}

.map-clue-bottom {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s ease;
    text-align: center;
}

.map-clue-bottom.show {
    bottom: 50rem;
}

@media (max-width:767px) {
    .map-clue-bottom {
        left: 16rem;
        right: 16rem;
        transform: translateX(0);
    }

    .map-clue-bottom.show {
        bottom: 20rem;
    }
}