html,
body {
    overflow: hidden;
}

#wrapper {
    height: 100vh;
    transition: ease-in-out 0.2s;
}

.steps {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#floatButtons {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

#progressBarTop {
    border-radius: 0rem !important;
    height: 8px;
}

.row {
    margin: 0 !important;
}

#step1 .description {
    font-size: 1.5rem;
}

#step1 .helpText {
    position: absolute;
    right: 21%;
}

.helpText {
    display: none;
}

.logo {
    max-width: 65%;
}

#toast {
    transform: translateX(105%);
    transition: ease-in-out 0.3s;
    width: 75%;
    max-width: 350px;
    opacity: 0;
}

.starRating {
    width: 100%;
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    cursor: pointer;
    transition: ease-in-out 0.3s;
}

.starRating.bi-star {
    color: #d6d6d6;
}

.starRating.bi-star-fill {
    color: #ffc600;
}

.textarea {
    max-height: 213px;
    min-height: 50px;
}

.no-click {
    pointer-events: none;
}

.wrapper-step {
    min-width: 100%;
    max-width: 100%;
}

.cursor-pointer {
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .logo {
        max-width: 85%;
    }
    .wrapper-step {
        min-width: 450px;
        max-width: 550px;
    }
}

@media screen and (min-width: 1024px) {
    .helpText {
        display: block;
    }
}