*{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Roboto', sans-serif;
    line-height: 1;
    background: #CCCCCC;
    overflow: hidden;
    box-sizing: border-box;
}

#video{
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}
.main-container{
    position: fixed;
    padding: 0 5vh 5vh;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
}
.info-wrapper,
.park-wrapper,
.wrapper,
.reload{
    height: 87vh;
}

.reload{
    display: flex;
    justify-content: center;
    align-items: center;
}

.reload__img{
    width: 200px;
    height: auto;
}

.wrapper{
    display: grid;
    grid-template-columns: 40% 60%;
    justify-content: space-between;
}

.cart{
    background-color: rgb(250 250 250 / 85%);
    box-shadow: 0 7px 6px rgba(0, 0, 0, 0.22), 0 10px 10px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    box-sizing: border-box;
}


.header{
    display: flex;
    height: 10vh;
    align-items: center;
    justify-content: space-between;
}

.header__logo{
    height: 100%;
}

.header__date-info{
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 30px;
    color: #505050;
    padding: 5px 20px;
    background-color: rgb(250 250 250 / 85%);
    box-shadow: 0 7px 6px rgba(0, 0, 0, 0.22), 0 10px 10px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    box-sizing: border-box;
}


.info-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info{
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
    height: 20%;
    padding: 1vh 3vh;
}

.info__main{
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    height: 25%;
}
.info__title{
    width: 100%;
    padding: 4px;
    box-sizing: border-box;
    font-size: 125%;
    font-weight: 500;
    background-color: #505050;
    color: white;
    letter-spacing: 4px;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: center;
    border-radius: 2px;
}
.info-total{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    box-sizing: border-box;
    color: rgba(0, 0, 0, 0.55);
}
.info-total__sep{
    padding-right: 23px;
}
.info-total__sep:before{
    position: absolute;
    content: ' ';
    display: block;
    right: 0;
    top: 15%;
    width: 8px;
    height: 70%;
    background-color: rgba(0, 0, 0, 0.55);
    animation-name: blinker;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(1.0,2.0,0,1.0);
    animation-duration: 1s;
    -webkit-animation-name: blinker;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(1.0,2.0,0,1.0);
    -webkit-animation-duration: 1s;
}
.info-total__sep+.info-total{
    padding: 0 16px;
}

@keyframes blinker {
    from { opacity: 1.0; }
    to { opacity: 0.0; }
}

@-webkit-keyframes blinker {
    from { opacity: 1.0; }
    to { opacity: 0.0; }
}

.info-total--green{
    color: #009688;
}
.info-total--yellow{
    color: #964800;
}
.info-total--red{
    color: #960000;
}

.info-total__number{
    font-size: 6em;
    letter-spacing: 6px;
}

.info-total__desc{
    font-size: 18px;
    margin-top: -6px;
}

.info-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 5px;
}


.info-room-count{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8vh;
    height: 8vh;
    font-size: 5vh;
    font-weight: 900;
    border-radius: 2px;
    color: white;
}

.info-room-count--green{
    background-color: #009688;
}
.info-room-count--yellow{
    background-color: #964800;
}
.info-room-count--red{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #960000;
    text-align: center;
}

.info-room-count--red i{
    font-size: 2vh;
    width: 40%;
    padding-top: 0.5vh;
}

.info-room-count--red i:first-child{
    border-bottom: 1px solid;
    padding-bottom: 0.5vh;
    padding-top: 0;
}

.info-room{
    list-style: none;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    height: 60px;
    width: max-content;
    min-width: 300px;
    margin-top: 10px;
}

.info-room-item{
    display: flex;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
}

.info-room-item--green{
    color: #009688;
}
.info-room-item--yellow{
    color: #964800;
}
.info-room-item--red{
    color: #960000;
}

.info-room__park-number{
    margin-right: 5px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.55);
}

.park-wrapper{
    display: grid;
    grid-template-columns: repeat(3, 30%);
    grid-template-rows: repeat(3, 30%);
    justify-content: center;
    grid-gap: 20px;
}

.park{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.park__name{
    font-weight: 900;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.55);
}

.park__count{
    margin-right: 10px;
    font-weight: 700;
    font-size: 14px;
    text-align: right;
    color: #009688;
}

.park--qr{
    align-items: center;
}
.park--qr svg{
    height: 200px;
    width: 153px;
    margin-top: 10px;
    border-radius: 2px;
}

.park--qr__name{
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    color: #505050;
    font-weight: 500;
    text-align: center;
    padding: 5px 20px;
    background-color: rgb(250 250 250 / 85%);
    box-shadow: 0 7px 6px rgba(0, 0, 0, 0.22), 0 10px 10px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    box-sizing: border-box;
}

.flat-wrapper{
    height: calc(100% - 34px);
    padding: 7px 0 15px;
    overflow: hidden;
    width: 100%;
    border: none;
}

.flat{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    height: 14.25%;
    font-size: 0.75vw;
    padding-top: 3%;
    box-sizing: border-box;
    color: rgba(0, 0, 0, 0.55);
}

.flat__name{
    width: 35%;
    text-align: left;
}

.flat__room{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2vh;
    height: 2vh;
    font-size: 1vh;
    font-weight: 900;
    border-radius: 2px;
    color: white;
}

.flat__room--green{
    background-color: #009688;
}
.flat__room--yellow{
    background-color: #964800;
}

.flat__room--red{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #960000;
    text-align: center;
}

.flat__room--red i{
    font-size: 0.75vh;
    width: 40%;
}

.flat__room--red i:first-child{
    border-bottom: 1px solid;
}

.flat__area{
    font-weight: 100;
    width: 15%;
}

.flat__price{
    font-weight: 700;
    width: 30%;
}


@media screen and (max-width: 1200px) {

    body{
        overflow: unset;
    }

    #video{
        display: none;
    }
    .info-wrapper, .park-wrapper, .wrapper, .reload,
    .main-container{
        position: relative;
        height: auto;
        overflow: unset;
    }

    .wrapper{
        display: block;
    }

    .header{
        flex-direction: column;
        justify-content: center;
        height: auto;
    }

    .header__logo{
        width: 50%;
    }

    .header__date-info{
        margin: 30px 0;
        text-align: center;
    }
    .park-wrapper{
        display: flex;
        flex-direction: column;
    }

    .info-container{
        flex-direction: column;
    }

    .info{
        margin-bottom: 20px;
    }

    .info-room{
        padding: 20px;
        width: unset;
        height: 60px;
    }
    .info-container{
        padding: 10px;
        box-sizing: border-box;
    }
    .info-total__sep{
        padding-right: unset;
    }
    .info-total__sep:before{
        display: none;
    }
    .flat-wrapper{
        overflow: unset;
    }


    .flat__room {
        width: 4vh;
        height: 5vh;
        font-size: 4vh;
    }

    .flat__room--red i{
        font-size: 2vh;
    }
    .flat{
        font-size: 2.7vw;
    }
}

#noty_layout__topRight {
    width: 350px;
}

.noty_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 20px;
    margin-bottom: 20px;
    border-radius: 2px !important;
    box-shadow: 0 7px 6px rgba(0, 0, 0, 0.22), 0 10px 10px rgba(0, 0, 0, 0.3);
    background-color: #fafafad9;
    color: rgba(0, 0, 0, 0.55);
}
.noty-reply{
    display: flex;
    flex-direction: column;
}
.noty_type__new{
    color: #009688;
}

.noty_type__deposit{
    color: #964800;
}

.noty_type__subscribe{
    color: #960000d9;
}

.noty-date{
    color: rgba(0, 0, 0, 0.55);
    font-size: 12px;
    margin-bottom: 5px;
    font-weight: 400;
}
.noty_bar img {
    width: 55px;
}

.noty_bar p {
    font-size: 25px;
    font-weight: 900;
}

@media screen and (max-width: 600px) {

    .main-container {
        padding: 30px;
    }

    .header__logo {
        width: 100%;
    }

    .header__date-info {
        margin: 20px 0;
    }

    .info-room {
        height: max-content;
    }
}
@media screen and (max-width: 480px) {
    .flat__room {
        width: 3vh;
        height: 3vh;
        font-size: 2vh;
    }
    .flat__room--red i{
        font-size: 1vh;
    }
}
