//
// Expanded Style
// ------------------------

.style-expanded.weather-widget-wp {
    display: inline-flex;
    flex-flow: column;
    justify-content: flex-end;
    padding: var(--weather-widget-wp-padding-exp);
    min-width: 370px;
    max-width: unset !important;
    width: unset !important;

    .temp-group {

        i {
            display: block;
            margin-bottom: 20px;
            font-size: 92px;
        }

        .weather-temp {
            font-size: 100px;
            line-height: 0.85;

            .temp-units {
                font-size: 42px;
            }
        }

        .current-date {
            display: block;
            margin-bottom: 15px;
        }
    }

    .info-group {

        .weather-title {
            display: block;
            margin-top: 25px;
            font-size: 32px;
        }

        .weather-description {
            display: block;
            margin-top: 10px;
        }

    }

    .temp-group .current-date,
    .info-group .weather-description {
        display: block;
        font-size: 18px;
        font-weight: 200;
        opacity: 0.5;
    }

    .footer-group {
        position: relative;
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
        padding-top: 15px;

        &:before {
            content: '';
            display: block;
            position: absolute;
            top: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--weather-widget-wp-text-color);
            opacity: 0.15;
        }

        figure {
            position: relative;
            display: flex;
            align-items: center;
            margin: 0;

            &:hover,
            &:focus {

                > span { opacity: 1; }

                figcaption {
                    opacity: 0.5;
                    transform: translateY(15px);
                }
            }

            > span {
                display: inline-block;
                margin-left: 5px;
                font-size: 16px;
                font-weight: 200;
                opacity: 0.5;
                transition: all 0.5s ease;
            }

            > i {
                font-size: 26px;
                font-weight: normal;
                color: inherit;
            }

            figcaption {
                display: flex;
                justify-content: center;
                position: absolute;
                bottom: -5px;
                min-width: 70px;
                font-size: 12px;
                font-weight: 500;
                color: inherit;
                opacity: 0;
                transition: all 0.5s ease;
            }
        }
    }
}


.no-icon.style-expanded.weather-widget-wp {

    .temp-group {

        .weather-temp {
            font-size: 120px;

            .temp-units {
                font-size: 62px;
            }
        }
    }
}
