@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

*,:after,:before {
    border: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

form.questions {
    padding-bottom: 50px;
}

input[type="text"], 
input[type="number"], 
input[type="date"], 
input[type="email"], 
input[type="password"] {
    font-size: 16px;
}

section {
    text-align: center;
    margin-top: 40px;
}

.section-form {
    border: 1px solid;
    border-radius: 12px;
}

img {
    max-width: 225px;
    height: auto;
}

h1 {
    font-size: 28px;
}

.wrapper-select {
    text-align: left;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
} 

.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid;
    padding: 20px 15px;
}

.wrapper:last-child {
    border-bottom: 0px;
}

.p-0 {
    padding: 0;
}

.text {
    width: 50%;
    text-align: left;
    font-size: 14px;
}

.title {
    padding: 20px 15px;
    background: #189fdb;
    color: #fff;
    border-radius: 12px 0px 0px;
}

.response {
    display: flex;
    align-items: center;
    width: 50%;
}

.response-option {
    width: 20%;
    font-size: 14px;
}


input[type=radio] {
    display: none;
}

span {
    font-size: 1.5em;
    margin: 0.5em 0;
    cursor: pointer;
    opacity: 0.3;
    transition: 0.2s;
}

input[type=radio]:checked + span {
    opacity: 1;
}

span:hover,
span:hover span {
    opacity: 1;
}

.response.options .response-option {
    height: 82px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-1 {
    background: #54B435;
}

.color-2 {
    background: #C7F2A4;
}

.color-3 {
    background: #F5EA5A;
}

.color-4 {
    background: #F97B22;
}

.color-5 {
    background: #E76161;
}

.response-option.color-5 {
    border-radius: 0px 12px 0px 0px;
}

select,
.role-input input{
    border: 1px solid #000;
    border-radius: 12px;
    padding: 6px 15px;
    background: #fff;
    color: #000;
}


select:focus-visible,
.role-input input:focus-visible {
    outline: none;
}

.submit-form {
    padding: 10px 20px;
    margin-top: 40px;
    border-radius: 12px;
    text-transform: uppercase;
    background: #262262;
    color: #fff;
    cursor: pointer;
    width: 25%;
    font-size: 18px;
}

.submit-form.filters {
    margin-top: 0;
    width: 100%;
} 

span.statistics {
    opacity: 1;
    cursor: auto;
}

.action-item select {
    margin-left: 5px;
}

@media only screen and (max-width: 767.98px) {
    .section-form {
        border: none;
    }
    
    .wrapper {
        width: 100%;
        display: block;
        box-shadow: 0 4px 8px rgba(0,0,0,.1);
        border-radius: 12px;
        border: none;
        margin-top: 20px;
    }

    .text {
        width: 100%;
    }

    .response {
        width: 100%;
        margin-top: 20px;
    }

    .response.options {
        display: none;
    }
    .title {
        border-radius: 12px;
    }

    .wrapper-select {
        display: block;
    }

    select,
    .role-input input {
        width: 100%;
        height: 35px
    }

    .action-item {
        margin-top: 20px;
    }

    .action-item select {
        margin-left: 0px;
    }

    .submit-form {
        display: block;
        width: 100%;
    }
}
  
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.completion {
    margin: 50px 0px;
}

.completion .text {
    font-size: 16px;
    width: 50%;
}

.completion .wrapper {
    display: flex;
}