/* Marvin Insystech -- 5/5/2023 */

.window-map {
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;

    display: flex;
    align-items: center;
    justify-content: center;
    
    width: 100vw;
    height: 100vh;
    background: transparent;
    overflow: hidden;

    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.window-map .window-map-text {
    position: absolute;
    z-index: -1;
    
    width: 100%;
    max-width: 280px;
    height: auto;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0px 0px 4px 1.5px #2828284f;
    outline: 1px solid #00000037;
    opacity: 0;
    transform: rotate(-60deg) scale(0.4);
    -webkit-transform: rotate(-60deg) scale(0.4);
    -moz-transform: rotate(-60deg) scale(0.4);
    -ms-transform: rotate(-60deg) scale(0.4);
    -o-transform: rotate(-60deg) scale(0.4);

    font-size: 16px;
    color: #121212;

    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    pointer-events: none;
}

.window-map .window-map-text .window-map-title {
    padding: 6px 12px 8px 12px;
    margin-bottom: 0;
    background-color: #002e79;

    text-transform: uppercase;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #ffd200;
}

.window-map .window-map-text .window-map-body {
    padding: 8px 12px 8px 12px;
}

.window-map .window-map-text .window-map-body ul {
    list-style: disc;
}

.window-map .window-map-text .window-map-body ul li {
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
}

.window-map.show {
    z-index: 1;

    background-color: #002e7954;
}

.window-map.show .window-map-text {
    z-index: 2;

    overflow: visible;
    opacity: 1;
    transform: rotate(0deg) scale(1);
    -webkit-transform: rotate(0deg) scale(1);
    -moz-transform: rotate(0deg) scale(1);
    -ms-transform: rotate(0deg) scale(1);
    -o-transform: rotate(0deg) scale(1);
    
    pointer-events: all;
}

.window-map .window-map-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    border: 2px solid #002e79;
    opacity: .8;

    color: #ff3e3e;

    cursor: pointer;
    pointer-events: all;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}

.window-map .window-map-icon:hover {
    opacity: 1;
}

.window-map .window-map-icon i {
    font-size: 18px;
}

.pto-map.falcon {
    left: 18%;
    top: 12px;
}

.pto-map.lara {
    left: 17%;
    top: 28px;
}

.pto-map.yaracuy {
    left: 23%;
    top: 27px;
}

.pto-map.vargas {
    left: 34%;
    top: 17px;
}

.pto-map.miranda {
    left: 35%;
    top: 27px;
}

.pto-map.aragua {
    left: 33.5%;
    top: 35px;
}

.pto-map.federal {
    left: 32.5%;
    top: 24px;
}

.pto-map.zulia {
    left: 4%;
    top: 35px;
}

.pto-map.tachira {
    left: 5.5%;
    top: 64px;
}

.pto-map.apure {
    left: 22%;
    top: 78px;
}

.pto-map.portuguesa {
    left: 20%;
    top: 60px;
}

@media (max-width: 1300px) {
    .pto-map {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 1000px) {
    .pto-map {
        width: 8px;
        height: 8px;
    }
}

@media (min-width: 3000px) {
    .pto-map {
        display: none !important;
    }
}