/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

body {
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-origin: border-box;
    background: url('../img/background.jpg') no-repeat left top;
    background-size: cover;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
}

.home-title {
    font-size: 2.5rem;
    font-weight: 600
}

.home-subtitle {
    font-size: 2rem;
    font-weight: 500;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem
}

.home-text {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.2;
}

.stepper-container {
    display: none;
    z-index: 100;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.stepper-container-child {
    padding: 1.5rem;
    max-height: 720px;
    width: 100%;
    max-width: 1280px;
    height: 100%;
    overflow: auto;
}

section#section-initial {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section#section-stepper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section#section-initial {
    color: #f1f6f9;
}

button#startBtn {
    width: 270px;
    height: 70px;
    font-size: 28px;
    font-weight: bold;
    background-color: #ffa62b;
    margin-top: 20vh;
}

textarea#textareUseTerm {
    height: 380px;
}
.question{
    background-color: white;
}
.question:nth-child(odd){
    background-color: #ececec;
}
div.question p {
    margin: 0;
    padding: 0;
}

button.btn-resposta {
    background-color: #ebecf1;
}

button.btn-resposta.selected {
    background-color: #005792;
    color: #FFF
}

.resultTag {
    width: 250px;
    height: 55px;
    font-size: 24px;
    color: #545c63;
    font-weight: 500;
}
.comecar-btn {
    margin: auto;
    width: 250px;
    height: 55px;
    font-size: 24px;
    color: #545c63;
    font-weight: 500;
}

form#questions-container {
    background-color: #f8f9fa;
    transition: background-color 3s;
    overflow-y: scroll;
}

@keyframes invalid {
    from {
        background-color: #cccccd;
    }
    to {
        background-color: #f8f9fa;
    }
}

form#questions-container .invalid {
    animation: invalid 1s;
}

.active .bs-stepper-circle {
    background-color: #bd2130;
}

@media (max-width: 992px) {
    div.bs-stepper-header {
        display: none;
    }

    button#startBtn {
        margin-top: 5vh;
    }

    section#section-initial {
        text-align: center;
    }

    p.display-1 {
        font-size: 4rem;
    }

    p.h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .next-btn {
        position: fixed;
        bottom: 10px;
        left: 75vw;
    }
    .text-agradecimento {
        border-top: 1px grey solid;
        padding-top: 25px;
        margin-top: 25px;
    }
    .stepper-container-child {
        max-height: 100%;
        padding: 1rem;
    }
    .home-title {
        font-size: 2rem;

    }

    .home-subtitle {
        font-size: 1.6rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        font-weight: 400;
    }

    .home-text {
        text-align: center;
        font-weight: 350;
        line-height: 1.5;
        font-size: 1.4em;
    }
}
