/* Weather Widget */
/* Top */
.weather-widget {
    font-family: "Nunito Sans";
    display: flex;
    justify-content: space-evenly;
}

.weather-icon img {
    height: 20px;
    width: 20px;
}

.weather-desc {
    font-size: 14px;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.weather-status {
    font-size: 16px;
    font-weight: bolder;
}

.weather-desc,
.weather-status {
    line-height: 28px;
    color: #b1c5d1;
}

/* Top End */

/* Card */
.grey {
    color: #788184;
}

.card-weather-widget {
    font-family: 'Nunito Sans';
    color: #1E1D1D;
    background-color: #ECF3F7;
    padding: 36px;
    border-radius: 8px;
}

.card-weather-widget .weather-card-top {
    padding-bottom: 24px;
    border-bottom: 1px solid rgb(151 151 151 / 25%);
}

.weather-card-top .weather-icon {
    padding-right: 10px;
}

.weather-card-top .left,
.weather-card-top .left .container {
    padding: 0;
}

.card-heading {
    font-size: 28px;
    padding-bottom: 20px;
    line-height: 25px;
}

.weather-card-top .inner-left {
    display: flex;
    align-items: center;
    font-weight: 800;
}

.weather-card-top .weather-icon img {
    width: 42px;
}

.weather-card-top .tempC {
    font-size: 26px;
    line-height: 25px;
}

.weather-card-top .weatherDesc {
    font-size: 16px;
    line-height: 19px;
    text-transform: capitalize;
}

.weather-card-top .left .inner-right {
    font-weight: bold;
    font-size: 16px;
}

.weather-card-top .right {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 28px;
}

.weather-card-bottom .daily img {
    height: 26px;
}

.weather-card-top .right img,
.weather-card-bottom .grey img {
    height: 18px;
}

.weather-card-bottom div:first-child {
    padding-top: 16px;
}

.weather-card-bottom div:not(:last-child) {
    padding-bottom: 16px;
}

.weather-card-bottom .daily div {
    padding: 0;
    font-size: 16px;
    line-height: 25px;
    position: relative;

    &.desc {
        text-transform: capitalize;
    }
}

.weather-card-bottom .daily div:not(:first-child) {
    font-weight: bold;
}

.weather-card-bottom .desc img {
    padding-right: 10px;
}

/* Card End */

@media screen and (max-width: 1440px) and (min-width: 1200px) {
    .top_header>div {
        padding: 0 40px;
    }
}

@media screen and (max-width: 1200px) {
    .top_info {
        width: 55% !important;
    }

    .card-weather-widget {
        padding: 20px;
    }
}

@media screen and (max-width: 1200px) and (min-width: 768px) {
    .weather-card-top .left {
        padding-bottom: 20px;
    }

    .weather-card-top .right {
        align-content: flex-start;
    }
}

@media screen and (max-width: 1024px) {
    .top_buttons {
        width: 80% !important;
    }

    .weather_info {
        width: 20% !important;
    }

    .header-logo {
        width: 72% !important;
    }

    .site-logo {
        width: 30% !important;
    }

    /* .curve-menu {
        width: 28% !important;
    } */
}

@media screen and (max-width: 900px) and (min-width: 768px) {
    .weather-card-bottom .daily div:not(:first-child) {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 768px) {
    .top_buttons {
        width: 75% !important;
    }

    .weather_info {
        width: 25% !important;
    }

    .site-logo {
        width: 40% !important;
    }
}

@media screen and (max-width: 767px) {
    .curve-menu>div {
        background-color: white !important;
    }
}

@media screen and (max-width: 640px) {
    .top_buttons {
        width: 70% !important;
    }

    .weather_info {
        width: 30% !important;
    }

    .site-logo {
        width: 45% !important;
    }
}

@media screen and (max-width: 600px) {
    .weather-card-top .right {
        align-content: start;
        padding-top: 20px;
    }
}

@media screen and (max-width: 500px) {
    .top_buttons {
        width: 50% !important;
    }

    .header-logo {
        width: 60% !important;
    }

    /* .weather_info,
    .curve-menu {
        width: 40% !important;
    } */

    .site-logo {
        width: 55% !important;
    }

    .weather-card-bottom .daily div:not(:first-child) {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 375px) {
    .weather_info {
        width: 50% !important;
    }

    .site-logo {
        width: 60% !important;
    }
}

/* End Weather Widget */