.club-weather-widget {
}

.club-weather__forecasts {
    margin-top: 8px;
}

.club-weather__item {
    display: flex;
    flex-direction: row;
    height: 50px;
    width: 100%;
    font-size: 12px;
    background-color: #E6F4FF;
    border-bottom: 1px solid #DEDEDE;
}

.club-weather__item:last-child {
    border-bottom: none;
}

.club-weather__item * {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.club-weather__item > div::after {
    content: ' ';
    width: 1px;
    height: 20px;
    position: absolute;
    background-color: #DEDEDE;
    top: 15px;
    right: 0;
}

.club-weather__item > div:last-child::after {
    content: none;
}

.club-weather__day--text {
    flex-direction: column;
    align-items: start;
    line-height: 1.2;
}

.club-weather__item > div {
    height: 100%;
}

.club-weather__day {
    width: 36%;
    display: flex;
    flex-direction: row;
}

.club-weather__day--image {
    padding: 5px;
}

.club-weather__day img {
    width: 60%;
}

.club-weather__day > div {
    width: 50%;
}

.club-weather__temp {
    width: 32%;
}

.club-weather__temp i {
    margin-right: 5px;
}

.club-weather__temp .max-temp {
    color: maroon;
}

.club-weather__temp .min-temp {
    color: darkblue;
}