.WeatherWidget {
    height: 50px !important;
    width: 50px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    pointer-events: all !important;
    overflow: visible;
    z-index: 0;
}

.WeatherWidget::after {
    content: "";
    position: absolute;
    inset: 0;
    /* border-radius: 50%; */
    border-radius: 6px;
    border: 2px solid #ffffff;
    background: #00000033;
    backdrop-filter: blur(25px);
}

.windInfo .windSpeed {
    width: max-content;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    padding: 5px;
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.windSpeed span {
    line-height: 1;
}

.windDirectionArrow {
    width: max-content;
    height: max-content;
    display: flex;
    z-index: 1;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.windInfo {
    /* display: none; */
    position: absolute;
    width: max-content;
    height: 40px;
    /* left: calc(100% - 30px); */
    left: calc(100% - 25px);
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to left, #00000085, transparent);
    backdrop-filter: blur(25px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px;
    border: 2px solid #ffffff;
    /* border-radius: 25px; */
    border-radius: 6px;
}

.windLabel {
    position: absolute;
    width: 115px;
    height: 40px;
    top: 65px;
    left: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    padding: 6px;
    background: #ffffff;
    color: #454545;
    border-radius: 6px;
    font-weight: 600;
}

.windLabel .windIcon {
    width: max-content;
    height: max-content;
    display: flex;
}

.windLabel .windText {
    max-width: 90px;
    text-align: center;
}

.infoLabel.iconLabel,
.infoLabelWindSpeedLabel.iconLabel {
    position: absolute;
    bottom: -40px;
    left: 0px;
    width: max-content;
    opacity: 0;
    transition: opacity 400ms;
}

.infoLabelWindSpeedLabel.iconLabel {
    bottom: 50%;
    left: 120px;
    transform: translateY(50%);
}

/* only for hover support */
/* @media (hover:hover) {
    .windDirectionArrow:hover ~ .infoLabel.iconLabel {
        opacity: 1;
    }

    .windInfo:hover ~ .infoLabelWindSpeedLabel.iconLabel {
        opacity: 1;
    }
} */