ul.daysWeather {
    padding: 15px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin: 50px 0;
    text-align: center;
    box-shadow: 0 0.125rem 0.5625rem 0 hsla(0,0%,80%,.5);
}

ul.daysWeather li {
    display: block;
    flex: 1;
}

._wTemp {
    display: flex;
    align-items: center;
    justify-content: center;
}

._wTemp ._temp {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

._wTemp ._temp svg {
    transform: scale(0.75);
}

._wTemp ._temp._min {
    color: #6c757d;
}

._wTemp ._temp._min svg {fill: #6c757d;}

._wTemp ._temp sup {
    font-size: 10px;
    margin-left: 3px;
}

ul.daysWeather li ._date ._day {
    text-transform: uppercase;
    color: #6c757d;
    font-size: 14px;
    padding-bottom: 2px;
    margin-right: 7px;
}

ul.daysWeather li ._date  {
    font-weight:600
}

ul.daysWeather li:not(:last-child) {
    border-right: 1px solid #f2f2f2;
}

._wCondition {
    display: block;
    text-align: center;
    padding-bottom: 10px;
}
h2._w_Heading {
    font-size: 24px;
    font-weight: 700;
}

._cwInfo {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

._cwInfo ._currentWeather {
    font-size: 24px;
    font-weight: 700;
    margin-right: 10px;
}

._cwInfo ._cwtext {
    font-weight: 700;
}

.todayWeather {
    padding: 25px 25px 0;
    margin-top: 25px;
}

ul._cwStats {
    display: block;
    padding: 0;
}

ul._cwStats li {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

ul._cwStats li ._icon {
    width: 36px;
    height: 36px;
    border: 1px solid #DDD;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

ul._cwStats li span {
    margin-right: 15px;
    font-weight: 600;
}

ul._cwStats li ._good {
    color: #007b05;
}

ul._cwStats li ._moderate {
    color: #ffb703;
}

ul._cwStats li ._dangerous {
    color: #a4161a;
}
.divheading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.TemperatureGraph {
    margin-bottom: 50px;
}
ul.monthsChart {
    display: flex;
    flex-wrap: wrap;
}

ul.monthsChart li {
    padding: 20px 10px;
    border: 2px solid #eaeaea;
    border-radius: 5px;
    display: block;
    text-decoration: none;
    font-weight: 500;
    color: #212427;
    text-align: center;
    align-items: center;
    width: calc((100% / 6) - 10px);
    margin: 10px 0 0;
}

ul.monthsChart {
    padding: 0;
    justify-content: space-between;
}

@media screen and (max-width:991px) {
    ul.daysWeather {
        flex-wrap: wrap;
    }
    
    ul.daysWeather li {
        display: block;
        width: 100%;
        flex: 0 0 100%;
        border-bottom: 1px solid #f2f2f2;
        padding: 20px;
    }
    
ul.monthsChart li {
    width: calc((100% / 3) - 10px);
  }
}

@media screen and (max-width:480px) {
    ul.monthsChart li {
        width: calc((100% / 2) - 10px);
      }
}