input.form-control, select.form-control, textarea.form-control{
    color: #333;
}
.styled-select {
    border: 0;
    background: none;
    border-radius: 0;
}
.styled-select select{
    width: 100%;
}
.select2-container{
    width: 100%!important;
}
.select2-container--default .select2-selection--single{
    width: 100%;
    overflow: hidden;
    height: 44px;
    border: 1px solid #c7c7c7;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333;
    line-height: 41px;
    padding-left: 12px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 41px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 40px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #d6d6d6 transparent transparent transparent;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #d6d6d6 transparent;
}

.select2-dropdown{
    border-color: #c7c7c7;
    border-width: 1px;
    border-radius: 5px;
}

.select2-results__option{
    padding: 6px 12px;
}

.select2-container--default .select2-results__option[aria-selected=true]{
    background-color: #c7c7c7;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #409fff;
    color: white;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ddd;
    border-radius: 4px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus-visible {
    outline: none
}



.cover-welcome {
    background: #f8f8f8;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.cover-card{
    margin: 15px 0;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 7px #eee;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 30px);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cover-card .backdrop::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0.2) 100%);
}

.cover-content{
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cover-content img{
    width: 100px;
}
.cover-content h3{
    color: #fff;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.cover-content p{
    font-size: 18px;
    max-width: 400px;
    margin-bottom: 100px;
}

.header{
    padding-top: 30px;
}

.header .logo img{
    height: 70px;
}
.header .logo h3{
    margin: 0;
    font-size: 20px;
    line-height: 20px;
    margin-top: 10px;
    text-transform: uppercase;
}

#loading-container{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
    background: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loading-container .loader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.survey-success{
    padding: 20px;
    flex-direction: column;
    display: flex;
    align-items: center;
}

.survey-success h4{
    margin: 10px 0 20px;
}

.survey-success p{
    font-size: 18px;
    max-width: 450px;
    margin-bottom: 15px;
}

@media (max-width:767px) {
    .header .logo img{
        height: 50px;
    }
    .header .logo h3{
        font-size: 16px;
        line-height: 16px;
    }
    #wizard_container{
        margin-top: 30px;
    }
}

@media (max-width:575px) {
    .cover-card{
        margin:  0;
        min-height: 100vh;
        border-radius: 0;
    }
    .cover-content img{
        width: 80px;
    }
    .cover-content h3{
        font-size: 22px;
    }
    .cover-content p{
        font-size: 16px;
    }
    .header{
        padding-top: 15px;
    }
    .header .logo img{
        height: 35px;
    }
    .header .logo h3{
        font-size: 12px;
        line-height: 12px;
    }
    #wizard_container{
        margin-top: 15px;
    }
}