/* =========================================================
   WEATHER TOPBAR
========================================================= */

.topbar {
    background: #075c3b;
    color: #ffffff;

    font-size: 13px;
}

.topbar-inner {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.weather-bar {
    display: flex;
    align-items: center;

    gap: 22px;
}

.weather-location,
.weather-main,
.weather-extra {
    display: flex;
    align-items: center;
}

.weather-location {
    gap: 7px;
}

.weather-location i {
    color: #fff;
}

.weather-main {
    gap: 8px;
}

.weather-main > i {
    width: 18px;

    color: #fffabf;

    font-size: 17px;

    text-align: center;
}

.weather-main strong {
    font-size: 14px;
}

.weather-main span {
    color: rgba(255, 255, 255, .78);
}

.weather-extra {
    gap: 20px;

    color: rgba(255, 255, 255, .72);

    font-size: 11px;
}

.weather-extra span {
    display: flex;
    align-items: center;

    gap: 6px;
}

.weather-extra span strong {
    color: #ffffff;

    font-weight: 600;
}

.weather-extra i {
    color: #bfe5ff;
}

.topbar-right {
    display: flex;
    align-items: center;

    gap: 14px;
}

.topbar-right a {
    color: rgba(255, 255, 255, .8);

    transition: .2s;
}

.topbar-right a:hover {
    color: #f9bd00;
}

#weather-temp {
    color:#fff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .weather-extra {
        display: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .topbar-inner {
        min-height: 40px;

        justify-content: center;
    }

    .weather-main span {
        display: none;
    }

    .topbar-right {
        display: none;
    }

    .weather-bar {
        width: 100%;

        justify-content: space-between;

        gap: 10px;
    }

}