*, *::after, *::before {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(180deg, #282828 0%, #030303 107.61%);
}

.container {
    margin: 0 auto;
    max-width: 500px;
    
    background: linear-gradient(180deg, #282828 0%, #030303 107.61%);
}

.header {
    background: linear-gradient(180deg, #3D3C3C 0%, #040404 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    padding: 12px 0 12px;
}

.main-container {
    padding: 50px 14px 14px;
}

.container-text {
    text-align: center;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 26px;
}

/*.container-green {
    max-width: 500px;
    height: 37px;
    background: #1AA419;
    border: 1px solid #FFFFFF;
    box-sizing: border-box;
    border-radius: 7px;
    margin-top: 12px;
    margin-bottom: 25px;

}*/
#progressbar {
    display: flex;
    align-items: center;
    height: 2em;
    width: 100%;
    min-width: 4em;

    border: 1px solid #FFFFFF;
    position: relative;
    border-radius: 7px;
    margin-top: 12px;
    margin-bottom: 25px;
  

}

#progressbar > div {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to top, #090, #0a0, #0c0, #0a0);
    border-radius: 7px;
    /*background: #1AA419;*/
    transition: width .5s linear;
    z-index: 3;
}

#progressbar:after {
    content: attr(data-progress) '%';
    display: block;
    margin: auto;
}

.container-text2 {
    text-align: center;
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 500;
}

.container-warning {
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    color: #FF0000;
    line-height: 30px;
}

.container-info {
    text-align: center;
    font-weight: 600;
    line-height: 22px;
    color: #FFFFFF;
    font-size: 23px;
}

.container-info__time {
    font-weight: 600;
    line-height: 27px;
    color: #FFFFFF;
    font-size: 23px;
    padding-top: 26px;
}

.order-4 {
    color: #F2D905;
    margin: 0;
}

#a6 {
    padding-left: 5px;
}

.container-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 32px;
    padding-bottom: 30px;

}

.btn {
    width: 345px;
    height: 56px;
    background-color: #1AA419;
    color: #FFFFFF;
    text-transform: uppercase;
    border: 0;
    font-weight: 800;
    font-size: 24px;
    border-radius: 5px;
    cursor: pointer;
}

@media screen and (max-width: 300px) and (orientation: portrait) {
    .container {
        max-width: 300px;
    }

    .btn {
        width: 260px;
        height: 53px;
        font-size: 16px;
    }

}