@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500;1,700;1,900&display=swap');

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    background-color: #062131;
    line-height: 1;
    font-family: 'Roboto', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.waiting-wrapper {
    color: #fff;
    width: 350px;
    text-align: center;
}

.waiting-wrapper .wating-loading-image {
    background-image: url(../images/loading.gif);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
    margin-bottom: 40px;
}

.waiting-wrapper .waiting-percent {
    font-size: 30px;
    margin-bottom: 10px;
}

.waiting-wrapper .waiting-progress {
    width: 100%;
    background-color: transparent;
    border-radius: 40px;
    border: 4px solid #fff;
    margin-bottom: 10px;
}

.waiting-wrapper .waiting-bar {
    width: 7%;
    height: 45px;
    background-color: #ef1b21;
    border-radius: 40px 0 0 40px;
}

.waiting-wrapper .waiting-loading-text {
    font-size: 30px;
}