.layout-lighting .layout {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.layout-lighting .header {
    visibility: visible;
}

.layout-lighting .footer {
    display: none;
}

.layout-lighting .main {
    padding: 0 29px;
    overflow: visible;
}

.layout-lighting .lighting {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 0 60px 0;
}

.layout-lighting .lighting_top {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.layout-lighting .lighting_weather {
    display: flex;
    gap: 10px;
}

.layout-lighting .temperature {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 7vw;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    color: #FFFFFF;
}

.layout-lighting .lighting_date {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: flex-end;
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 400;
    font-size: 18px;
    color: #717171;
}

.layout-lighting .lighting_bottom {
    display: flex;
    flex-direction: column;
    gap: 5vh;
}

.layout-lighting .weather_check {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 400;
    font-size: 22px;
    color: #C8C8C8;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 13px;
}

.layout-lighting .lighting_controlbar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.layout-lighting .control_text_wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.layout-lighting .control_text {
    font-family: 'Spoqa Han Sans Neo';
    font-weight: 200;
    font-size: 2vw;
    color: #C8C8C8;
}

.layout-lighting .gage_bar_wrap {
    width: 100%;
    height: 2px;
    background: #424141;
    border-radius: 2px;
}

.layout-lighting .gage_bar1 {
    width: 60%;
    height: 2px;
    background: linear-gradient(180deg, #EBCFB0 0%, #E5AF9F 100%);
    border-radius: 2px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.layout-lighting .gage_bar2 {
    width: 10%;
    height: 2px;
    background: linear-gradient(180deg, #EBCFB0 0%, #E5AF9F 100%);
    border-radius: 2px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.layout-lighting .gage_scroll {
    width: 22px;
    height: 22px;
    background: #0d0d0d;
    border: 1.5px solid #fff;
    border-radius: 50%;
}


.layout-lighting .control_icon_wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.control_icon_wrap >  div {
    height: 3vh;
}

.control_icon_wrap >  div > img {
    height: 100%;
}

.layout-lighting input[type="checkbox"] {
    display: none;
}

.layout-lighting input[type="checkbox"] + label {
    width: 28px;
    height: 28px;
    padding: 3px;
    border: 1.4px solid #989898;
    border-radius: 2px;
    background: transparent;
}

.layout-lighting input[type="checkbox"]:checked + label {
    content: url("../img/checked_dark.svg");
}

/* range 바 부분 */

.lighting_controlbar input[type="range"] {
    -webkit-appearance: none;
}

.lighting_controlbar input[type="range"]:focus {
    outline: none;
}

.lighting_controlbar input[type="range"]::-webkit-slider-thumb {
    border: 1.5px solid #fff;
    height: 22px;
    width: 22px;
    background: #000;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -2px;
    border-radius: 50%;

}
