#map {
    height: 100vh;
    width: 100vw;
    background: rgb(95, 159, 255);
}

.map-wrapper {
    width: 100%;
}

.meteo {
    width: 100%;
    height: 100vh;
    display: block;
    box-shadow: 0px 0px 3px #919191;
}

.meteo-container {
    padding: 0px !important;
    height: 100vh;
}

.meteo-sidebar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1111;
    padding: 15px;
}

.leaflet-container {
    height: 80vh;
    width: 100%;
    margin: 0 auto;
}

.meteo_marker_icon img{
    border: none;
    background: none;
}

.wind_speed {
    text-align: center;
    border-radius: 100%;
    font-weight: bolder;
    width: 50px;
    padding: 5px;
}

.meteo_infobox_icon {
    font-size: 42px;
    color: rgb(12, 12, 12);
}

.meteo_infobox_icon svg {
    width: 40px;
}

.meteo_infobox_text > p {
    margin: 0 !important;
    font-size: 24px;
    color: rgb(12, 12, 12);
}

.rotor img{
    position: absolute;
    top: -21%;
    left: 35%;
    animation: rotate 5s linear infinite;
    transform-origin: center;
}

.ground_station img{
    position: absolute;
    top: -21%;
    left: 35%;
}

.infobox-title {
    text-align: center;
    padding: 15px;
    border-radius: 5px;
}

.infobox-title > p {
    margin: 2px !important;
}

.infobox-title.warning {
    color: orange;
    background: #ffe0a5;
}

.infobox-title.ok {
    color: green;
    background: #a5ffa5;
}

.wind_direction img {
    position: absolute;
    top: 0;
    top: -54px;
    left: 14px;
    transform-origin: bottom;
}

.wind_direction_small_windsock img {
    position: absolute;
    top: 0;
    top: -39px;
    left: 17px;
    transform-origin: bottom;
}

.wind_speed {
    position: absolute;
    left: -12px;
}

.leaflet-marker-icon {
    margin-left: 0px !important;
    margin-top: 0px !important;
}

.leaflet-popup-content {
    margin: 10px 10px !important;
}

.meteo-card img {
    width: 22px;
    height: 20px;
    margin-right: 10px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
