#weather_module {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: top;
    flex-direction: row;
    justify-items: left;
}

#weather_module .weather_module_info {
    width: 40%;
    margin-right: -2%;
    margin-top: 8%;
    z-index: 2;
}

#weather_module .weather_module_info_container {
    width: 100%;
    aspect-ratio: 12 / 6;
    color: #ffffff;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    background-size: cover;
    background-position: 50% 100%;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

#weather_module .weather_module_info_inner {
    width: 100%;
    height: 100%;
    padding: 36px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 80%, transparent 100%);
    border-radius: 10px;
}

#weather_module .weather_module_icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    vertical-align: middle;
    margin-right: 2px;
    margin-bottom: 1px;
}

#weather_module .weather_module_icon img {
    width: 100%;
    height: auto;
    filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.5));
}

#weather_module .weather_module_current {
    display: inline-block;
    width: calc(49% - 34px);
    vertical-align: top;
    font-size: 24px;
    line-height: 1em;
    vertical-align: middle;
}

#weather_module .weather_module_temp {
    display: inline-block;
    width: 47.5%;
    vertical-align: top;
    text-align: right;
    font-size: 110px;
    font-variant-numeric: lining-nums;
    line-height: 1em;
}

#weather_module .weather_module_data {
    color: #222222 !important;
    background-color: #f2f2f4 !important;
    padding: 42px;
    padding-left: 60px;
    width: 60.8%;
    border-radius: 10px;

    background-color: #f2f2fa;
    min-height: 600px;
}

#weather_module .weather_module_data h2 {
    font-size: 36px;
    margin-bottom: 26px;
}

#weather_module .weather_module_data table {
    width: 100%;
    border: none !important;
}

#weather_module .weather_module_data table tr td {
    padding: 0;
    padding-top: 6px;
    padding-bottom: 6px;
    border: none !important;
}

#weather_module .weather_module_data table tr td img {
    display: block;
    width: 32px;
    height: 32px;
    padding: 4px;
    background-color: #82828a;
    border-radius: 6px;
    min-width: 32px;
}

#weather_module .weather_module_data table tr td:first-child {
    width: 44px;
}

#weather_module .weather_module_data table tr td:last-child {
    text-align: right;
    font-variant-numeric: lining-nums;
}

#weather_module .weather_module_data em {
    display: inline-block;
    margin-top: 30px;
    font-size: 15px;
    color: #555555;
    line-height: 1.4em;
}

#weather_module .weather_module_old_data {
    padding: 16px;
    color: #444444;
    background-color: #ffffff;
    margin-bottom: 26px;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 1px 1px 8px rgba(100, 100, 100, 0.2);
    line-height: 1.6em;
}

@media only screen and (max-width:768px) {

    #weather_module {
        display: block;
    }

    #weather_module .weather_module_info,
    #weather_module .weather_module_data {
        width: 100%;
    }

    #weather_module .weather_module_info_container,
    #weather_module .weather_module_info_inner {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    #weather_module .weather_module_current {
        font-size: 20px;
    }

    #weather_module .weather_module_temp {
        font-size: 80px;
        width: 46%;
    }

    #weather_module .weather_module_data {
        padding: 20px;
        font-size: 16px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    #weather_module .weather_module_data h2 {
        font-size: 26px;
        margin-bottom: 18px;
        margin-top: 8px;
    }

}