*{
    font-family: "Open Sans";
}
#navbar img{
    height:95px;
}
#survey{
    min-height: 100vh;
    background-color: #ea5228;
   
}
.btn.mainBtn{
    
    background-color: #eee;
    width: 300px;;
}
.btn.mainBtn i{
    color:#b2b5b4;
    font-size:6em;
}
.btn.mainBtn:hover{
    background-color: #b2b5b4;
}
.btn.mainBtn:hover i{
    color:#eee;
}
.form-text.text-muted{
    font-size:0.8em;
}
label{
    color:#777;
    font-size:0.9em;
}
.invalid{
    border-color: red;;
}
.dropdown-menu.inner li{
    padding:5px 15px;
    display: flex;
}
.dropdown-menu.inner li a{
    width: 100%;
}
.dropdown-menu.inner li:hover{
    background-color: #eaeaea;
}
.file-drop-area {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color:#eee;
    max-width: 100%;
    padding: 25px;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    transition: 0.2s
}
.choose-file-button {
    flex-shrink: 0;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    padding: 8px 15px;
    margin-right: 10px;
    font-size: 12px;
    text-transform: uppercase
}
.file-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0
}
#fileList{
    list-style: none;
}
#fileList li{
    display:flex;
    align-items: center;
}
#fileList li span{
    overflow: hidden;
    padding-left:10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.8em;
    width:250px
}
.thanks{
    width: 100%;
    background-color:#eee;
    display:flex;
    flex-direction: column;
    height:300px;
    align-items: center;
    justify-content: space-around;
}
#footer{
     background-color:#222;
     width:100%;
     font-size:0.9em;
     min-height:150px;
}
#footer a{
    color:#ea5228;
   
}
@media screen  and (max-width: 768px){
    .thanks{
        height:500px;
    }
}