* {
    box-sizing: border-box
}

body, html {
    font-family: "Lato", sans-serif;
    overflow-y: hidden;
    height: 100%;
}

button, span, label, input[type=checkbox] {
    outline: none !important;
}

@font-face {
    font-family: "Roboto Light";
    src: url("/lib/fonts/Roboto-Light.ttf");
}

.no-select, br {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#title, #searchInput {
    margin-bottom: 10px;
    margin-left: 100px;
    display: inline-block;
    outline: none;
    background-color: transparent;
    border-bottom-width: 2px;
    font-size: 25px;
}

#title {
    width: 500px;
}

#searchInput {
    width: 400px;
}

#searchInput::placeholder {
    font-size: 16px;
}

#sections {
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    z-index: 1;
}

#questions {
    padding-left: 100px;
    padding-bottom: 100px;
}

.panel {
    float: left;
    padding: 0 50px;
    width: 70%;
}

.topnav {
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.topnav label {
    float: left;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav label:hover {
    background-color: #ddd;
    cursor: pointer;
}

#autosave:hover {
    background-color: transparent;
    cursor: default;
}

hr {
    position: absolute;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: lightgray;
}

.se-pre-con {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: white;
}

.se-pre-con-content {
    top: 50%;
    position: relative;
    transform: translateY(-50%);
}

.se-pre-con-label {
    font-size: 35px;
    font-family: 'Roboto Light';
}