﻿#map-control-box #map {
    width: 100%;
    height: 100%;
    touch-action: none;
}

#map-control-box #map-loading {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .8);
}

    #map-control-box #map-loading > span {
        position: absolute;
        top: 50%;
        font-weight: 600;
        font-size: 25px;
        transform: translateY(-50%);
    }

#map-control-box #map-error {
    display: none;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .8);
}

    #map-control-box #map-error > span {
        color: #e6032e;
        position: absolute;
        top: 50%;
        font-weight: 600;
        font-size: 25px;
        transform: translateY(-50%);
    }
