.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: 90px;
    height: 34px;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
}

.windSpeed .windSpeedValue {
    line-height: 1;
    position: relative;
    width: 100%;
    height: 100%;
}

.animate-direction-up {
    animation: animate-direction-up 500ms linear;
}

.animate-direction-down {
    animation: animate-direction-down 500ms linear;
}

@keyframes animate-direction-up {
    to {
        transform: translateY(35px);
    }
}

@keyframes animate-direction-down {
    to {
        transform: translateY(-35px);
    }
}

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

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

.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;
    }
} */