html {
    .scroll::-webkit-scrollbar {
        display: none;
    }

    -ms-overflow-style: none; /* 인터넷 익스플로러 */
    scrollbar-width: none; /* 파이어폭스 */
}

.titleWrap1 {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.titleWrap1 span {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(50vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

.swiper-container {
    height: 100%;
    position: relative;
    top: 50%;
    transform: translate(0px, -50%);
}

.swiper-wrapper {
    height: 100%;
}

.swiper-slide {
    width: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
}

.standByRoom {
    width: 100%;
    height: 100%;
    z-index: 10;
    position: absolute;
    background-color: #494949;
    display: none
}

.standByRoom .topArea {
    position: absolute;
    display: flex;
    z-index: 11;
    width: 100%;
    justify-content: space-between;
    background-color: RGB(0, 0, 0, 0.3);
}

.standByRoom .leftArea {
    display: flex;
    padding: 50px;
}

.standByRoom .mainLogo {
    margin-right: 30px;
    object-fit: contain;
    width: 385px;
}

.standByRoom .leftChildArea {
    padding: 5px;
    font-size: 42px;
}

.standByRoom .dateTime {
    width: max-content;
    color: white;
    height: max-content;
    line-height: 1;
    text-shadow: 1px 3px 3px black;
}

.standByRoom .weather {
    display: flex;
    margin-top: 30px;
    color: white;
    line-height: 1;
    text-shadow: 1px 3px 3px black;
}

.standByRoom .weather i {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60px;
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.standByRoom .weather i.NB01 {
    background-image: url("/images/seongnam/NB01.png");
}

.standByRoom .weather i.NB03 {
    background-image: url("/images/seongnam/NB03.png");
}

.standByRoom .weather i.NB04 {
    background-image: url("/images/seongnam/NB04.png");
}

.standByRoom .weather i.NB08 {
    background-image: url("/images/seongnam/NB08.png");
}

.standByRoom .weather i.NB11 {
    background-image: url("/images/seongnam/NB11.png");
}

.standByRoom .weather i.NB13 {
    background-image: url("/images/seongnam/NB13.png");
}

.standByRoom .rightArea {
    width: fit-content;
    padding: 50px;
}

.standByRoom .mainTitle {
    font-size: 50px;
    color: white;
    text-shadow: 1px 3px 3px black;
    line-height: 1.2;
    letter-spacing: 2px;
}

.standByRoom .mainTitle b {
    text-shadow: none;
    letter-spacing: unset;
    margin-right: 10px;
    font-size: 36px;
    line-height: 55px;
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 55px;
    color: #fff;
    padding: 0 15px;
    padding-bottom: 4px;
}

.standByRoom .titleWrap {
    margin-top: 15px;
    float: right
}

.standByRoom .subTitle {
    font-size: 42px;
    color: white;
    letter-spacing: 2px;
    text-shadow: 1px 3px 3px black;
    line-height: 1;
}

.standByRoom .subTitle b {
    text-shadow: none;
    letter-spacing: unset;
    background-color: #f00;
    color: #fff;
    border-radius: 50px;
    padding: 0 7.5px;
    font-size: 32px;
    line-height: 50px;
    padding: 0 13px;
    padding-bottom: 2px;
    font-weight: 500;
    margin-right: 15px;
}

.standByRoom .noticeArea {
    display: none;
    width: 100%;
    height: 100%;
    background-color: #393939;
    color: white;
    font-size: 60px;
    position: absolute;
    z-index: 10;
}

.standByRoom .bottomArea {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.standByRoom .bottomArea .version {
    color: white;
    height: max-content;
    line-height: 1;
    text-shadow: 1px 1px 4px black;
    font-weight: bold;
}

#customBtn {
    background-color: #898989;
    width: 1000px;
    height: 250px;
    position: absolute;
    right: 3%;
    border: 3px white solid;
    bottom: 10%;
    color: white;
    font-size: 35px;
    font-weight: bold;
}

.setting .roomType {
    display: flex;
}

.setting .roomType input,
.setting .password input,
.setting .hostConfirm input {
    appearance: auto;
}

.setting .roomType label {
    margin-left: 9px;
}

.setting .password {
    margin-top: 10px;
}

#webinarType {
    margin-left: 80px;
}

.adminLogo {
    display: none;
    position: absolute;
    align-content: center;
    background: rgba(0, 0, 0, 0.65);
    z-index: 11;
    text-align: center;
    top: 3%;
    left: 3%;
    color: white;
    font-weight: bold;
    border: 5px solid white;
    font-size: 60px;
    height: 80px;
    width: 350px;
}

.adminPasswordPopup{
    max-width: 92%;
    max-height: 80%;
    border: 1px solid;
    width: 450px;
    height: 270px;
    background-color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    align-content: center;
    text-align: -webkit-center;
    border-radius: 10px;
}

.adminPasswordPopup .popTitle,.passwordChangePopup .popTitle{
    color: #000000;font-size: 18px;font-weight: bold;
}
.adminPasswordPopup .adminPasswordInput{
    text-align: center;border: solid 0;width: 215px;font-size: 16px;margin-bottom: 5px;
}
.adminPasswordPopup .buttonArea{
    display: flex;justify-content: center;width: 100%;
}
.adminPasswordPopup .buttonArea .confirmButton, .passwordChangePopup .confirmButton{
    width: 100px;
    text-align: center;
    height: 35px;
    border-radius: 18px;
    font-weight: 500;
    font-size: 15px;
    background: #000;
    color: #fff;
    margin-right: 40px
}
.adminPasswordPopup .buttonArea .cancelButton, .passwordChangePopup .cancelButton{
    width: 100px;
    text-align: center;
    height: 35px;
    border-radius: 18px;
    font-weight: 500;
    font-size: 15px;
    border: solid 1px #0d0408;
    background: #fff;
    color: #000;
}
.adminPasswordPopup .passwordArea{
    width: 300px;margin-bottom: 50px;border-bottom: solid 1.5px #e0e0e0;color: gray; font-weight: 500;
}
.passwordAlertPopup{
    max-width: 92%;
    max-height: 80%;
    width: 420px;
    height: 180px;
    font-weight: 500;
    font-size: 15px;
    border: solid 1px #0d0408;
    background: #000;
    background-color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    align-content: center;
    border-radius: 10px;
}
.passwordAlertPopup .popContent{
    color: black;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}
.passwordAlertPopup .confirmButton{
    width: 100px;
    text-align: center;
    height: 35px;
    border-radius: 18px;
    font-weight: 500;
    font-size: 15px;
    background: #000;
    color: #fff;
}
.passwordChangePopup {
    max-width: 92%;
    max-height: 80%;
    border: 1px solid;
    width: 550px;
    height: 270px;
    background-color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    align-content: center;
    text-align: -webkit-center;
    border-radius: 10px;
}
.passwordChangePopup .content{
    width: 300px;height: 350px;
}
.passwordChangePopup .inputLabel{
    text-align: left;
    color: gray;
    margin-bottom: 10px;
    font-weight: bold;
}
.passwordChangePopup .inputGroup{
    margin-bottom: 30px;
    border-bottom: 1.5px solid;
    display: flex;
}
.passwordChangePopup input{
    border: 0px solid;
    width: 100%;
    text-align: center;
    font-size: 15px;
}
.reservation,.reservationInfo{
    margin-top: 10px;
}
.reservation input{
    appearance: auto;
}
.reservationInfo input{
    width: calc(50% - 10px);
    border-top: unset;
    border-left: unset;
    border-right: unset;
    border-bottom: 1px solid gray;
    text-align: center;
}
.reservationInfo input:nth-child(1){
    margin-right: 15px;
}