/* =========================================================
   PLEACH WEATHER - VARIATION 6
   FINAL HORIZONTAL WEATHER CARD
   ========================================================= */
/* =========================================================
   MAIN WEATHER CARD
   ========================================================= */
.pleach-weather-v6 {
    width: 100% !important;
    max-width: 900px !important;
    min-height: 76px !important;
    display: grid !important;
    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(100px, .72fr)
        minmax(100px, .72fr) !important;
    align-items: stretch !important;
    position: relative !important;
    box-sizing: border-box !important;
    margin: 15px 0 !important;
    padding: 0 !important;
    background: #f4f3f7 !important;
    border: 2px solid #ff8a00 !important;
    border-radius: 8px !important;
    overflow: visible !important;
    box-shadow:
        0 5px 16px rgba(0, 0, 0, .08) !important;
    font-family: inherit !important;
    clear: both !important;
}
/* =========================================================
   ANIMATED ORANGE BORDER
   ========================================================= */
.pleach-weather-v6::before {
    content: "" !important;
    position: absolute !important;
    inset: -2px !important;
    border-radius: 9px !important;
    padding: 2px !important;
    background:
        linear-gradient(
            90deg,
            #ff7900,
            #ffad42,
            #ff7900,
            #ffad42,
            #ff7900
        ) !important;
    background-size: 300% 100% !important;
    animation:
        pleach-weather-border
        4s linear infinite !important;
    pointer-events: none !important;
    z-index: 0 !important;
    -webkit-mask:
        linear-gradient(#fff 0 0)
        content-box,
        linear-gradient(#fff 0 0) !important;
    -webkit-mask-composite: xor !important;
    mask-composite: exclude !important;
}
@keyframes pleach-weather-border {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/* =========================================================
   COMMON WEATHER ITEM
   ========================================================= */
.pleach-weather-v6
.pwv6-item {
    position: relative !important;
    z-index: 2 !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    background: #f4f3f7 !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}
/* =========================================================
   TODAY SECTION
   ========================================================= */
.pleach-weather-v6
.pwv6-today {
    min-height: 76px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 8px 16px !important;
    border-radius:
        6px 0 0 6px !important;
}
/* =========================================================
   TODAY LEFT AREA
   ========================================================= */
.pleach-weather-v6
.pwv6-left {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 9px !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* =========================================================
   TODAY WEATHER ICON
   ORANGE CLOUD
   ========================================================= */
.pleach-weather-v6
.pwv6-icon {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;
    object-fit: contain !important;
    display: block !important;
    flex: 0 0 46px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    /*
     * Convert the white/light OpenWeather
     * cloud into Pleach orange.
     */
    filter:
        brightness(0)
        saturate(100%)
        invert(55%)
        sepia(96%)
        saturate(2600%)
        hue-rotate(358deg)
        brightness(103%)
        contrast(105%) !important;
}
/* =========================================================
   TODAY INFORMATION
   ========================================================= */
.pleach-weather-v6
.pwv6-info {
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* =========================================================
   SITE NAME
   ========================================================= */
.pleach-weather-v6
.pwv6-site {
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* =========================================================
   TODAY LABEL
   ========================================================= */
.pleach-weather-v6
.pwv6-label {
    font-size: 10px !important;
    line-height: 14px !important;
    color: #666666 !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* =========================================================
   TODAY TEMPERATURE
   ========================================================= */
.pleach-weather-v6
.pwv6-temperature {
    font-size: 26px !important;
    line-height: 30px !important;
    font-weight: 600 !important;
    color: #111111 !important;
    white-space: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* =========================================================
   TOMORROW / NEXT DAY
   ========================================================= */
.pleach-weather-v6
.pwv6-day {
    min-height: 76px !important;
    display: grid !important;
    grid-template-columns:
        auto 42px auto !important;
    align-items: center !important;
    justify-content: center !important;
    column-gap: 8px !important;
    padding: 8px 12px !important;
    border-left:
        1px solid #d8d7dc !important;
    box-sizing: border-box !important;
}
/* =========================================================
   FORECAST DAY NAME
   ========================================================= */
.pleach-weather-v6
.pwv6-day-name {
    font-size: 10px !important;
    line-height: 14px !important;
    font-weight: 700 !important;
    color: #555555 !important;
    white-space: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* =========================================================
   FORECAST WEATHER ICON
   ORANGE CLOUD
   ========================================================= */
.pleach-weather-v6
.pwv6-day-icon {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    /*
     * Convert the white/light OpenWeather
     * forecast cloud into Pleach orange.
     */
    filter:
        brightness(0)
        saturate(100%)
        invert(55%)
        sepia(96%)
        saturate(2600%)
        hue-rotate(358deg)
        brightness(103%)
        contrast(105%) !important;
}
/* =========================================================
   FORECAST TEMPERATURE
   ========================================================= */
.pleach-weather-v6
.pwv6-day-temp {
    font-size: 12px !important;
    line-height: 15px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    white-space: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* =========================================================
   HOVER POPUP
   ========================================================= */
.pleach-weather-v6
.pwv6-popup {
    position: absolute !important;
    left: 50% !important;
    bottom:
        calc(100% + 10px) !important;
    transform:
        translateX(-50%)
        translateY(7px) !important;
    width: 220px !important;
    max-width: 220px !important;
    box-sizing: border-box !important;
    padding: 13px !important;
    background: #ffffff !important;
    border:
        1px solid #e5e5e5 !important;
    border-top:
        3px solid #ff8a00 !important;
    border-radius: 8px !important;
    box-shadow:
        0 12px 28px
        rgba(0, 0, 0, .16) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 999999 !important;
    transition:
        opacity .18s ease,
        transform .18s ease,
        visibility .18s ease !important;
}
/* =========================================================
   POPUP VISIBLE
   ========================================================= */
.pleach-weather-v6
.pwv6-popup.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform:
        translateX(-50%)
        translateY(0) !important;
}
/* =========================================================
   POPUP TITLE
   ========================================================= */
.pleach-weather-v6
.pwv6-popup-title {
    font-size: 13px !important;
    line-height: 17px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin: 0 0 4px 0 !important;
    padding: 0 !important;
}
/* =========================================================
   POPUP LOCATION
   ========================================================= */
.pleach-weather-v6
.pwv6-popup-location {
    font-size: 10px !important;
    line-height: 14px !important;
    color: #777777 !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
}
/* =========================================================
   POPUP TEMPERATURE
   ========================================================= */
.pleach-weather-v6
.pwv6-popup-temperature {
    font-size: 28px !important;
    line-height: 31px !important;
    font-weight: 500 !important;
    color: #111111 !important;
    margin: 0 0 4px 0 !important;
    padding: 0 !important;
}
/* =========================================================
   POPUP DESCRIPTION
   ========================================================= */
.pleach-weather-v6
.pwv6-popup-description {
    font-size: 11px !important;
    line-height: 15px !important;
    color: #555555 !important;
    text-transform: capitalize !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
}
/* =========================================================
   POPUP DETAILS
   ========================================================= */
.pleach-weather-v6
.pwv6-popup-details {
    display: grid !important;
    grid-template-columns:
        repeat(3, 1fr) !important;
    gap: 7px !important;
    padding-top: 9px !important;
    border-top:
        1px solid #eeeeee !important;
    margin: 0 !important;
}
/* =========================================================
   POPUP DETAIL
   ========================================================= */
.pleach-weather-v6
.pwv6-popup-details div {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    margin: 0 !important;
    padding: 0 !important;
}
.pleach-weather-v6
.pwv6-popup-details span {
    font-size: 9px !important;
    line-height: 12px !important;
    color: #888888 !important;
    margin: 0 !important;
    padding: 0 !important;
}
.pleach-weather-v6
.pwv6-popup-details strong {
    font-size: 10px !important;
    line-height: 13px !important;
    color: #222222 !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* =========================================================
   IMAGE PROTECTION
   ========================================================= */
.pleach-weather-v6 img {
    display: block !important;
    object-fit: contain !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}
/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 700px) {
    .pleach-weather-v6 {
        max-width: 100% !important;
        grid-template-columns:
            minmax(0, 1.35fr)
            minmax(75px, .8fr)
            minmax(75px, .8fr) !important;
        min-height: 68px !important;
    }
    .pleach-weather-v6
    .pwv6-today {
        min-height: 68px !important;
        padding: 7px 9px !important;
    }
    .pleach-weather-v6
    .pwv6-icon {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        max-width: 32px !important;
        max-height: 32px !important;
        flex-basis: 32px !important;
    }
    .pleach-weather-v6
    .pwv6-site {
        font-size: 11px !important;
        line-height: 15px !important;
    }
    .pleach-weather-v6
    .pwv6-label {
        font-size: 9px !important;
        line-height: 12px !important;
    }
    .pleach-weather-v6
    .pwv6-temperature {
        font-size: 20px !important;
        line-height: 24px !important;
    }
    .pleach-weather-v6
    .pwv6-day {
        min-height: 68px !important;
        grid-template-columns:
            1fr !important;
        justify-items: center !important;
        gap: 1px !important;
        padding: 5px 4px !important;
    }
    .pleach-weather-v6
    .pwv6-day-icon {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        min-height: 30px !important;
        max-width: 30px !important;
        max-height: 30px !important;
    }
    .pleach-weather-v6
    .pwv6-day-temp {
        font-size: 10px !important;
        line-height: 13px !important;
    }
    .pleach-weather-v6
    .pwv6-popup {
        width: 200px !important;
        max-width: 200px !important;
    }
}
/* =========================================================
   WEATHER WRAPPER
   ========================================================= */
.pleach-weather-v6-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
    clear: both !important;
    position: relative !important;
    margin: 14px 0 20px 0 !important;
    padding: 0 !important;
    z-index: 10 !important;
}
/* =========================================================
   WEATHER CARD WIDTH
   ========================================================= */
.pleach-weather-v6-wrapper
.pleach-weather-v6 {
    width: 100% !important;
    max-width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}



/* =========================================================
   WEATHER WRAPPER - FULL WIDTH
   ========================================================= */
.pleach-weather-v6-wrapper {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    display: block !important;
    box-sizing: border-box !important;
    clear: both !important;
    position: relative !important;
    margin: 14px 0 20px 0 !important;
    padding: 0 !important;
    z-index: 10 !important;
}
/* =========================================================
   WEATHER CARD - FULL WIDTH INSIDE WRAPPER
   ========================================================= */
.pleach-weather-v6-wrapper
.pleach-weather-v6 {
    width: 100% !important;
    min-width: 500px !important;
    max-width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
