#wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

#buttonWrapper {
    width: 100%;
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 14px auto;
    background-color: white;
    height: 90px;
    padding: 0 50px;
}

#surveyLibrary {
    height: 30px;
    box-sizing: border-box;
}

.button {
    font-size: 15px;
    color: white;
    background-color: #ffffff;
    padding: 8px 16px;
    box-sizing: border-box;
    border-radius: 6px;
    border: none;
}

.button:hover {
    cursor: pointer;
    background-color: #3B7D5C;
}

#app-wrapper {
    width: 100%;
    box-sizing: border-box;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
}


#app {
    max-width: 1700px;
    width: 100%;
    box-sizing: border-box;
}


@media only screen and (max-width: 1100px) {
    #surveyLibrary {
        display: none;
    }
}

@media only screen and (max-width: 800px) {
    #sidebar, #sidebarFiller {
        display: none;
    }

    #buttonWrapper {
        padding: 0 15px;
    }

    .button {
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 599px) {
    #app {
        width: 100%;
    }
}

.MuiInputLabel-formControl{
    z-index: 0 !important;
}