#wrapper {
    margin: 0 auto;
    padding: 20px 40px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.300);
    border-radius: 30px;
    background-color: #fff;

    width: 30vw;

    font-family: Arial, Helvetica, sans-serif;
}

.question {
    display: flex;
    justify-content: space-around;
    align-items: center;

    margin-bottom: 3em;
    padding: 1em 0;
    border-bottom: 0.5px solid #cecece;
}

.question * {
    width: 50%;
    transition: .3s;
}

.question span {
    font-size: 20px;
    line-height: 30px;
}

.question input {
    border: none;
    border-bottom: 2px solid #a5a5a5;
    outline: none;
    width: 30%;
    border-radius: 4px;
    padding: 12px 16px;
    cursor: text;
}

.question input:focus {
    border: none;
    border-bottom: 2px solid #99f664;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.24);
}

#wrapper button{
    display: block;
    cursor: pointer;
    width: 40%;
    margin: auto;
    background: #007bff;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
}

.nextStepBtn {
    display: flex;
    text-align: center;
    justify-content: center;
    width: 40%;
    margin: 20px auto;
    background: transparent;
    color: #007bff !important;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    border: 2px solid #007bff;
    font-weight: 600;
    text-decoration: none;
    
    transition: .3s;
}
.nextStepBtn:hover {
    background: #007bff;
    color: #fff !important;
}
.SliderTop__content-link {
    color: #000;   
}
}
.exercise {
    width: 90%;
    margin: 10vmax auto 2vmax;
    text-align: center;
    font-size: 18px;
    line-height: 28px;
}

.result {
    margin: 0 auto;
    min-width: 30vw;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
}

.result__item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    
    margin-bottom: 1vmin;
    padding-bottom: 20px;
    border-bottom: 0.6px solid rgba(0, 0, 0, 0.2);
    
    color: white;
    font-size: 32px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
}

.result__item_text {
    white-space: nowrap;
    width: 80%;
    text-align: left;
}
.result__item_number {
    width: 20%;
    margin-left: 20px;
    text-align: right;
}
        
@media screen and (max-width: 1226px) {
    #wrapper {
        width: 60vw;
    }
}
@media screen and (max-width: 769px) {
    #wrapper {
        width: 72vw;
        padding: 2vh 2vw;
    }
    .question {
        justify-content: space-around;
    }
    .question span {
        font-size: 18px;
        line-height: 26px;
    }
    .result__item {
        margin-bottom: 2vmin;
    }
}
@media screen and (max-width: 426px) {
    #wrapper {
        width: 90vw;
        padding: 2vh 3vw;
    }
    .question {
        justify-content: center;
        flex-wrap:wrap;
    }
    .question span {
        line-height: 22px;
        font-size: 18px;
        width: 100%;
        text-align: center;
    }
    .result__item {
        margin-bottom: 4vmin;
    }
}