/* --------------------------------------------- */
/* Better Weather Frontend --------------------------------------------------------------------------------- */
/* --------------------------------------------- */

.flex-row {
    display: flex;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.bwp-hidden {
    display: none !important;
}

img {
    max-width: 100%;
}

.bwp-small-icon {
    width: 20px;
    height: 20px;
    margin: auto 5px auto 0;
}

/* Weather Alerts --------------------------------------------------------------------------------- */

.weather-alert {
    background-color: #a91d1d;
    color: white;
    padding: 7px 10px;
}


/* Current Weather Widget --------------------------------------------------------------------------------- */

.bwp-weather-current {
    background-color: #f1e5ff;
    max-width: 400px;
    margin: 20px 0;
}

.bwp-current-inner {
    background-color: rgba(0, 0, 0, 0.65);
    padding: 20px;
}

.bwp-current-inner > div {
    justify-content: space-between;
}

.bwp-weather-current h2, .bwp-weather-current p {
    color: white;
}

.bwp-current-header h2 {
    font-size: 26px;
    font-weight: 600;
    font-family: sans-serif;
}

.bwp-current-header p {
    font-family: sans-serif;
    font-size: 12px;
    position: relative;
    top: -4px;
}

.bwp-current-main {
    margin: 20px 0;
}

.bwp-current-main > div {
    width: 50%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.bwp-current-temperature p:last-of-type {
    font-size: 26px;
    position: relative;
    top: -18px;
}

.bwp-current-icon {
    width: 175px;
}

.bwp-detail-col-2 p, .bwp-detail-col-2 span, .bwp-detail-col-3 p, .bwp-detail-col-3 span {
    font-size: 16px;
}

.bwp-current-temperature p:first-of-type {
    font-size: 85px;
    font-weight: 600;
    font-family: sans-serif;
}

.bwp-current-temperature p:first-of-type span {
    position: relative;
    top: -40px;
    font-size: 26px;
    padding-left: 5px;
}

.bwp-current-footer > div {
    height: 100%;
    margin: auto 0;
}






@media only screen and (max-width: 768px) { 
}