.layout-weather .layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.layout-weather .header {
    visibility: visible;
}

.layout-weather .footer {
    display: none;
}

.layout-weather .main {
    width: 100%;
    padding: 30px 29px;
    overflow: visible;
}

.layout-weather .weather {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 62px;
}

.layout-weather .weather_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 27px;
}

.layout-weather .weather_today {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 400;
    font-size: 3vw;
    color: #717171;
}

.layout-weather .weather_sky img {
    width: 109px;
    object-fit: cover;
}

.layout-weather .weather_temp_now {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 50px;
    color: #FFFFFF;
}

.layout-weather .weather_temp_minmax {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 4vw;
    color: #FFFFFF;
    display: flex;
    gap: 31px;
}

.layout-weather .weather_content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.layout-weather .air_quality {
    width: 100%;
    height: fit-content;
    background: #191919;
    border-radius: 8px;
    padding: 32px 25px;
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.layout-weather .air_quality_title {
    width: 100%;
    display: flex;
    justify-content: space-between;

}

.layout-weather .air_quality_name {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 300;
    font-size: 2vw;
    color: #AAAAAA;
}

.layout-weather .air_quality_now {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 400;
    font-size: 2vw;
    color: #E7E7E7;
}


.layout-weather .forecast_time_wrap {
    width: 100%;
    height: fit-content ;
    background: #191919;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.layout-weather .forecast_title {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 300;
    font-size: 2vw;
    color: #AAAAAA;
}

.layout-weather .forecast_time {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.forecast_info0, .forecast_info1, .forecast_info2, .forecast_info3, .forecast_info4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.forecast_day0, .forecast_day1, .forecast_day2, .forecast_day3, .forecast_day4 {
    font-family: 'Noto Sans KR';
    font-weight: 400;
    font-size: 1vw;
    color: #C2C2C2;
}

.forecast_weather0, .forecast_weather1, .forecast_weather2, .forecast_weather3, .forecast_weather4 {
    width: 7vw;
}

.forecast_weather0 > img,
.forecast_weather1 > img,
.forecast_weather2 > img,
.forecast_weather3 > img,
.forecast_weather4 > img {
    width: 100%;
}

.forecast_temp, .forecast_temp0, .forecast_temp1, .forecast_temp2, .forecast_temp3, .forecast_temp4 {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
}

.forecast_percent, .forecast_percent0, .forecast_percent1, .forecast_percent2, .forecast_percent3, .forecast_percent4 {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 11px;
    color: #DBDBDB;
}

.layout-weather .air_quality_map_wrap {
    width: 100%;
    height: 348px;
    background: #191919;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.layout-weather .air_quality_map_title {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 300;
    font-size: 20px;
    color: #AAAAAA;
}

.layout-weather .air_quality_map {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.layout-weather .UV_wrap {
    width: 100%;
    height: fit-content;
    padding: 32px 25px;
    background: #191919;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.layout-weather .UV_title {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.layout-weather .UV_name {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 300;
    font-size: 2vw;
    color: #AAAAAA;
}

.layout-weather .UV_now {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 400;
    font-size: 2vw;
    color: #E7E7E7;
}


.layout-weather .weather_bottom {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.layout-weather .weather_bottom > div {
    width: 100%;
}

@media (max-width: 700px) {
    .layout-weather .weather_bottom {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .layout-weather .weather_bottom {
        margin-bottom: 3rem;
    }
}

.layout-weather .humidity_wrap {
    height: 310px;
    background: #191919;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.layout-weather .humidity_title {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 300;
    font-size: 20px;
    color: #AAAAAA;
}

.layout-weather .humidity_nums {
    display: flex;
    flex-direction: column;
    gap: 99px;
}

.layout-weather .humidity_now {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 50px;
    color: #FFFFFF;
}

.layout-weather .humidity_info {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 400;
    font-size: 20px;
    color: #888888;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.layout-weather .wind_wrap {
    height: 310px;
    background: #191919;
    border-radius: 8px;
    padding: 24px;
}

.layout-weather .wind_title {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 300;
    font-size: 20px;
    color: #AAAAAA;
}

.layout-weather .wind_info_wrap {
    width: 100%;
    height: 100%;
}

.layout-weather .compass {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: url(../img/compass.svg) no-repeat center center;
    color: #fff;
}

.layout-weather .wind_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

}

.layout-weather .wind_speed {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 24px;
    color: #FFFFFF;
}

.layout-weather .wind_direction {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 14px;
    color: #FFFFFF;
}


.layout-weather input[type="range"].air_quality_gage::-webkit-slider-runnable-track {
    background: linear-gradient(90deg, #0445EE 0.36%, #36C756 21.58%, #E4E828 41.76%, #F27807 63.5%, #F10E0E 83.17%, #780B0B 99.73%);
    position: relative;
    width: 100%;
    height: 12px;
    border: none;
    border-radius: 2px;
}

.layout-weather input[type="range"].UV_gage::-webkit-slider-runnable-track {
    background: linear-gradient(90deg, #41EE04 0.36%, #36C756 13.81%, #E4E828 31.93%, #F27807 50.56%, #F10E0E 70.23%, #D514CD 96.11%);
    position: relative;
    width: 100%;
    height: 12px;
    border: none;
    border-radius: 2px;
}

.layout-weather input[type=range] {
    -webkit-appearance: none;
    width: 100%;
}

.layout-weather input[type=range]::-ms-track {
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    border-width: 16px 0;
    color: transparent;
}

.layout-weather input[type=range]::-webkit-slider-thumb {
    background: #ffffff;
    cursor: pointer;
    -webkit-appearance: none;
    width: 10px;
    height: 12px;
    background: #d9d9d9;
    border: 1px solid #000;
    border-radius: 2px;
}

.layout-weather .compass_pole {
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(../img/compass_pole.svg) no-repeat center center;
}

body > div.layout-con > div.layout > header > div.header_left {
    width: 0;
    z-index: 9;
}


