
/* map
-------------------------------------------------------------- */
.map {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    z-index: 100;
}
.map.active {
    display: block !important;
}
    .map .close {
        position: absolute;
        top: 10px;
        right: 20px;
        border-radius: 50%;
        color: #fff !important;
        background-color: var(--department-color-3);
        width: 60px;
        height: 60px;
        line-height: 64px;
        text-align: center;
        opacity: 0;
        transition: all 1s;
        font-size: 40px;
        z-index: 100;
    }
    .map .close.active {
        opacity: .9;
    }
        
    .map .map-content {
        position: relative;
        width: 100%;
        height: 100%;
    }
        .map .map-content iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

