.content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    max-width: 375px;

    .step {
        &.active {
            display: flex;
        }

        &.hidden {
            display: none;
        }

        flex-direction: column;
        justify-content: center;
        align-items: center;

        .logo {
            width: 50%;

            img {
                width: 155px;
            }
        }

        .answers {
            margin-top: 20px;

            .answer-with-icon {
                background: #F1F5F9;
                border: 1px solid #F1F5F9;
                border-radius: 5px;
                cursor: pointer;
                display: flex;
                flex-direction: row;
                align-items: center;
                margin: 10px;
                padding: 10px;
                width: 329px;

                .icon {
                    font-family: Inter;
                    font-size: 34px;
                    font-weight: 500;
                    margin: 0 10px;
                    width: 43px;
                }

                .answer-text {
                    font-family: Inter;
                    font-size: 20px;
                    font-weight: 500;
                    display: flex;
                    align-items: center;
                    line-height: 24px;
                }
            }
        }

        .inputs {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            margin-top: 20px;

            .phone {
                font-family: Inter;
                font-size: 24px;
            }

            .input-field {
                border: 1px solid #6F3CE9;
                border-radius: 10px;
                width: 323px;
                height: 60px;
                font-size: 20px;
                margin-top: 20px;
                padding: 0 10px;
            }

            .btn {
                border: 1px solid #6536D6;
                border-radius: 10px;
                background: #6536D6;
                cursor: pointer;
                color: #FFFFFF;
                font-family: Inter;
                font-size: 20px;
                font-weight: 700;
                line-height: 24.2px;
                text-align: center;
                width: 329px;
                height: 55px;
                margin-top: 20px;
            }
        }

        .error {
            width: 80%;
            background: #fff9f9;
            border: 1px solid #c02b0a;
            font-family: Inter;
            font-size: 14px;
            margin: 16px;
            padding: 12px 24px;

            &.hidden {
                display: none;
            }

            &.active {
                display: block;
            }
        }

        .header-first {
            padding-top: 10px;
            font-family: Inter;
            font-size: 32px;
            font-weight: 700;
            line-height: 38.73px;
            text-align: center;
        }

        .header-second {
            padding-top: 20px;
            font-family: Inter;
            font-size: 18px;
            font-weight: 600;
            line-height: 21.78px;
            text-align: center;
        }

        .question {
            padding-top: 30px;
            font-family: Inter;
            font-size: 22px;
            font-weight: 600;
            line-height: 26.63px;
            text-align: center;
        }

        .accent {
            color: #6F3CE9;
        }

        .grades {
            display: flex;
            justify-content: space-evenly;
            flex-wrap: wrap;
            max-width: 375px;
            margin: 0 20px;

            .grade {
                width: 86px;
                height: 50px;
                margin: 10px;
                border-radius: 50px;
                border: 1px solid #D0D0D0;
                font-family: Inter;
                font-size: 20px;
                font-weight: 400;
                line-height: 24.2px;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;

                /* &.active {
                    background: #6F3CE9;
                    color: #FFFFFF;
                } */
            }
        }
    }

    .header {
        width: 100%;
        display: none;

        .first-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: Inter;
            font-size: 24px;
            padding: 0 10px;

        }

        .progress-bar {
            background: #eee;
            height: 3px;
            position: relative;
            border-radius: 10.5px;
            margin: 12px;

            .progress-bar-active {
                background-color: #6536D6;
                height: 3px;
                border-radius: 10.5px;
                overflow: hidden;
            }
        }
    }

    .success {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        .success-picture {
            width: 80px;
            height: 80px;
            padding: 50px 20px 10px 20px;
        }

        .success-header {
            font-family: Inter;
            font-size: 24px;
            font-weight: 600;
            line-height: 29.05px;
            padding: 20px 0;
            text-align: center;
        }

        .success-details {
            font-family: Inter;
            font-size: 16px;
            font-weight: 500;
            line-height: 19.36px;
            text-align: center;
        }
    }

    .small-logo {
        width: 75px;
    }
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    margin: auto;

    &.hidden {
        display: none;
    }

    &.active {
        display: block;
    }
}

.loader:before,
.loader:after {
    content: '';
    border-radius: 50%;
    position: absolute;
    inset: 0;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3) inset;
}

.loader:after {
    box-shadow: 0 2px 0 #6536D6 inset;
    animation: rotate 2s linear infinite;
}

.btn {
    border: 1px solid #6536D6;
    border-radius: 10px;
    background: #6536D6;
    cursor: pointer;
    color: #FFFFFF;
    font-family: Inter;
    font-size: 20px;
    font-weight: 700;
    line-height: 24.2px;
    text-align: center;
    width: 329px;
    height: 55px;
    margin-top: 20px;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #E0E0E0;
    margin: 16px 0;
}

@keyframes rotate {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}
