* {
    margin: 0;
    padding: 0;
    font-family: "Roboto";
}

body {
    width: 100%;

}

.core {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.header {
    width: 100%;
    height: 230px;
    line-height: 230px;
    background-color: rgb(230, 0, 40);
    color: rgb(255, 255, 255);
    text-align: center;
    vertical-align: middle;
    font-size: 155px;
    font-weight: 500;
}

.message {
    color: rgb(0, 0, 0);
    font-size: 400px;
    font-weight: 500;
}

.ticket {
    height: 320px;
    line-height: 320px;
    vertical-align: middle;
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 200px;
    font-weight: bold;
}

.arrow {
    text-align: center;
}

.call-mode {
    display: none;
    flex-direction: column;
}

.screensaver-mode {
    display: none;
    flex-direction: column;
    justify-content: center;

    text-align: center;
    width: 100%;
    height: 100%;
}

.show {
    display: flex;
}

@keyframes _opacity {
    0% {
        opacity: 0.3;
    }

    17% {
        opacity: 0.9;
    }

    66% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.3;
    }
}

@keyframes _blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.animate {
    animation: _opacity 1.5s linear infinite;
}

.blink {
    animation: _blink 1.5s linear infinite;
}

.arrow-1 {
    opacity: 0.9;
    animation-delay: 1s;
}

.arrow-2 {
    opacity: 0.6;
    animation-delay: 0.5s;
}

.arrow-3 {
    opacity: 0.3;
    animation-delay: 0s;
}

.content {
    width: 768px;
    height: 800px;
    overflow: hidden;
}

.window-number {
    font-family: "Bebas Neue";
    font-size: 800px;
    width: 512px;
    line-height: 800px;
    vertical-align: middle;
    text-align: center;
    background-color: rgb(230, 0, 40);
    color: white;
}

.window-text {
    position: absolute;
    width: 768px;
    font-size: 150px;
    font-weight: bold;
    text-align: center;
    top: 137px;
    color: rgb(30, 30, 30);
}

.arrows {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 50px;
    width: 768px;
}

.ticket-text {
    top: 800px;
    width: 768px;
    position: absolute;
    color: rgb(0, 0, 0);
    font-size: 245px;
    font-weight: bold;
    text-align: center;
    opacity: 0;
}

.call-container {
    display: flex;
}

.survey-container {
    width: 100%;

}

.title {
    margin-top: 150px;
    width: 100%;
    font-size: 60px;
    font-weight: bold;
    text-align: center;
    color: rgb(30, 30, 30);
}



.emo {
    width: 200px;
    height: 200px;
}

.survey-message {
    margin-top: 200px;
    width: 100%;
    font-size: 60px;
    font-weight: bold;
    text-align: center;
    color: rgb(230, 0, 40);
}

.hidden {
    display: none;
}

.text_bloc {
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
    border-color: #2e2e2e;
    width: 250px;
    height: 180px;
    text-align: center;
    line-height: 90px;
    vertical-align: middle;
    font-weight: bold;
    font-size: 28px;
}

.input_bloc {
    width: 75%;
    height: 300px;
    font-size: 40px;

}


.number_bloc {
    width: 1000px;
    height: 150px;
    font-size: 40px;
    text-align: center;

}


.input_container {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
}

.survey_button {
    margin-top: 50px;
    width: 400px;
    height: 100px;
    line-height: 100px;
    font-size: 30px;
    border-style: none;
    background-color: darkgray;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    margin-left: auto;
    margin-right: auto;
}

