body{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

header h1, header h2{
    letter-spacing: 0.2em;
}
header h1{
    color: #065280;
    font-size: 1.8em;
}

header h2{
    color: #5cceee;
    font-size: 1.2em;
}

.countries-list{
    /* border: 1px solid #000000; */
}

.countries-list .countries-list-item{
    transition: background-color 0.3s;
    font-size: 0.75em;
    cursor: pointer;
}

.countries-list .countries-list-item h4{
    font-size: 1.25em;
    font-weight: bold;
    text-transform: uppercase;
    color: #007eaa;
}

.countries-list .countries-list-item:hover{
    transition: background-color 0.3s;
    background-color: rgba(92,206,238, 0.2);
}

.countries-list .countries-list-item .countries-list-circle{
    display: inline-block;
    background-color: #065280;
    color: #FFFFFF;
    height: 2em;
    width: 2em;
    line-height: 2em;
    font-size: 1.5em;
    border-radius: 50%;
    text-align: center;
}

.countries-list .countries-list-item ul{
    padding-left: 1em;
}


.map-container{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    overflow: hidden;
}

.map{
    grid-area: 1/2/1/2;
    fill: #C7E5FA;
    stroke: #ffffff;
    stroke-width: 1px;
    width: 100%;
    /* border: 1px solid #000000; */
    scale: 1;
    filter: none;
    transform-box: fill-box;
    transition: all 0.3s;
}

.map.map-reduced{
    scale: 1.25;
    filter: blur(0.1em);
    transition: all 0.3s;
}

.map .mask{
    opacity: 0;
    transition: opacity 0.3s;
}

.map .mask-active{
    opacity: 0.7;
    transition: opacity 0.3s;
}

.map .country-group{
    transition: opacity 0.3s;
}

.map .country-group-enabled{
    scale: 1;
    transition: scale 0.2s;
    transform-origin: center center;
    transform-box: fill-box;
}

.map .country-group-enabled .country{
    fill: #96cbef;
    transition: fill 0.3s;
}

.map .country-group-enabled:hover .country{
    fill: #065280;
    transition: fill 0.3s;
    cursor: pointer;
}

.map .country-group-selected{
    scale: 2.2;
    transition: scale 0.2s;
}

.map .country-group-selected .country{
    fill: #065280;
    transition: fill 0.3s;
}





.map .station-immersion{
    display: inline-block;
    background-color: red;
    min-height: 30px;
    min-width: 30px;
}

.map .station-immersion image{
    stroke: #FFFF00;
    fill: #FFFF00;
}




.map .map-tooltip{
    color: #FFFFFF;
    text-shadow: 2px 2px 2px #000000;
    /* width: 300px; */
    /* height: 100px; */
    opacity: 0;
    font-size: 1em;


    /* transform: translateX(10px) translateZ(1px); */
    transform: translateX(10px);
    transition: all 0.3s;
}

.map .map-tooltip.map-tooltip-selected{
    opacity: 1;
    transform: translateX(0px);
    /* transition: opacity 2.3s; */
    /* transition: transform 2.3s; */
    transition: all 0.3s;
}

