.UIWeatherForcast {
    position: relative;
    min-width: 180px;
}
.UIWeatherForcast .main {
    height: 40px;
    background-color: #F9F9F9;
    /* line-height: 34px; */
    text-align: left;
    padding: 10px 0;
    margin: 0px;
    cursor: pointer;
}
.UIWeatherForcast .info-name {
    font-size: 13px;
    font-style: normal;
    font-family: Inter;
    line-height: 16px;
    color: #62748D;
    margin-left: 14px;
    font-weight: 700;
}
.UIWeatherForcast .info-temp {
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    font-family: 'Inter';
    color: #62748D;
    margin-left: 10px;
}
.UIWeatherForcast  .info-icon {
    width: 18px;
    height: 18px;
    margin-left: 7px;
    filter: invert(45%) sepia(13%) saturate(767%) hue-rotate(175deg) brightness(95%) contrast(94%);
}
.UIWeatherForcast  .info-icon.dizzle{
    content: url(../../font/images/rainy.png);
}
.UIWeatherForcast  .info-icon.cleansky{
 content: url(../../font/images/clean-sky.png);   
}
.UIWeatherForcast  .info-icon.cloudy{
 content: url(../../font/images/cloud.png);   
}
.UIWeatherForcast  .info-icon.rainny{
    content: url(../../font/images/rainny.png);    
}
.UIWeatherForcast  .info-icon.stormy{
    content: url(../../font/images/thunderstorm.png);    
}
.UIWeatherForcast .info-a:hover {
    text-decoration: none;
}
.UIWeatherForcast  .more-info {
    width: 250px;
    padding: 10px;
    border: 1px solid #EEEEEE;
    border-radius: 5px;
    margin-top: 8px;
    position: absolute;
    background-color: #FFF;
    max-height: 500px;
    z-index: 9999;
    display:none;
}
.UIWeatherForcast .div-more-info {
    max-height: 400px;
    overflow: auto;
    margin-top: 10px;
}
.UIWeatherForcast  .temperature-search {
    font-size: 14px;
    font-weight: 400;
    color: #3B4E68;
    padding: 8px 10px;
    border: 1px solid #D9D9D9;
    width: 100%;
    border-radius: 5px;
    line-height: 16px;
}
.UIWeatherForcast  .list-temperature {
    list-style: none;
    padding: 0;
    margin: 0;
}
.UIWeatherForcast  .list-temperature li {
    padding: 3px 0px;
}
.UIWeatherForcast .list-temperature img.info-icon {
    float: right;
    margin-right: 10px;
    margin-top: 5px;
    background-color: transparent;
}
.UIWeatherForcast  i.fa.fa-caret-down {
    color: #7D92AE;
    /* margin-left: 16px; */
    /* float: right; */
    margin-top: 4px;
    /* margin-right: 5px; */
    margin-left: 5px;
}
@media only screen and (max-width: 768px){
    .UIWeatherForcast {
            order: 1;
            margin-right: 10px;
            margin-left: 10px;
            flex: 1;
            overflow: auto;
            position: static;
            display: none;
            
    }
    .UIWeatherForcast .more-info {
            left: 0;
    }
    .UIWeatherForcast .main {
            width: unset;
            border: none;
            display: inline-flex;
            align-items: center;
            height: unset;
            padding: 0;
    }
    .UIWeatherForcast .info-name {
            margin: 0;
            font-family: Merriweather;
            font-style: normal;
            font-weight: normal;
            font-size: 11px;
            line-height: 16px;
            text-transform: capitalize;
            /* Grey 4 */
            color: #62748D;
    }
    .UIWeatherForcast .info-temp {
            font-family: Roboto;
            font-style: normal;
            font-weight: 500;
            font-size: 11px;
            line-height: 14px;
            text-transform: capitalize;
            color: #62748D;
            margin-left: 3px;
            /*! margin-top: 2px; */
    }
    .UIWeatherForcast .info-icon {
            width: 12px;
            height: 12px;
            margin: 0 5px;
    }
    .UIWeatherForcast i.fa.fa-caret-down {
            color: #7D92AE;
            font-size: 12px;
            margin-left: 5px;
            margin-top: 0;
    }
}
