body {
    touch-action: pan-x pan-y;
}
h1 {
    font-size: 30px;
    text-align: center;
}
.register-button {
    display: inline-block;
    width: 160px;
    margin-right: 20px;
}
.ui-autocomplete {
    background: #fff;
    border: 1px solid var(--accent);
    border-top: none;
    width: 549px;
    padding: 0;
    list-style-type: none;
}
.ui-autocomplete li {
    margin: 0;
    padding: 4px 16px;
    height: 24px;
    font-size: 12px;
    line-height: 24px;
    white-space: nowrap;
    width: calc(100% - 32px);
}
.ui-menu-item-wrapper {
    overflow-x: hidden;
    text-overflow: ellipsis;
}
.ui-autocomplete li:hover {
    background: #f6f6f6;
    cursor: pointer;
}
.ui-helper-hidden-accessible {
    display: none !important;
}
@media screen and (max-width: 624px) {
    .form-container {
        left: 12px;
    }
}
@media screen and (max-width: 500px) {
    .register-button {
        width: 100%;
    }
    .comment {
        display: block;
        width: 100%;
        text-align: center;
    }
}
.large-error {
    font-weight: 500;
    color: #f40;
}
.image-editor {
    width: 320px;
    text-align: center;
    margin: auto;
}
.cropit-preview {
    background-color: #f8f8f8;
    background-size: cover;
    border: none;
    border-radius: 240px;
    margin: 8px 40px;
    width: 240px;
    height: 240px;
    mask-image: radial-gradient(white, black);
    /*noinspection CssInvalidPropertyValue*/
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cropit-preview-image-container {
    cursor: move;
}
.image-size-label {
    margin-top: 10px;
}
.cropit-image-zoom-input {
    display: inline-block;
}
.fas.large {
    font-size: 20px;
    line-height: 20px;
    padding: 8px;
}
.fas.small {
    font-size: 12px;
    line-height: 12px;
    padding: 8px;
}
.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0007;
    z-index: 20;
}
.candidate-response-dialog {
    width: 520px;
    margin: calc(50vh - 200px) auto auto;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 22px 44px 0 rgba(0, 0, 0, 0.4);
    max-height: calc(100vh - 40px);
    overflow-y: scroll;
}
.candidate-response-dialog.calendar {
    width: 400px;
}
.candidate-response-dialog .title {
    font-size: 16px;
    line-height: 40px;
    background: #f6f6f6;
    border-bottom: 1px solid #e2e2e2;
    border-radius: 6px 6px 0 0;
    padding-left: 24px;
    font-weight: 500;
}
.candidate-response-dialog .candidate-info {
    position: relative;
    padding: 24px 24px 24px 120px;
}
.candidate-response-dialog .candidate-info img {
    position: absolute;
    left: 24px;
    top: 24px;
    width: 72px;
    height: 72px;
    border-radius: 36px;
}
.candidate-response-dialog .candidate-info .name {
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    padding-top: 12px;
    color: #171717;
}
.candidate-response-dialog .candidate-info .school {
    font-size: 14px;
    color: #777;
    line-height: 16px;
    padding-top: 8px;
}
.candidate-response-dialog form {
    display: block;
    padding: 24px;
}
.candidate-response-dialog form .label {
    font-size: 12px;
    font-weight: 500;
}
.candidate-response-dialog form .label.warning {
    padding-bottom: 24px;
    color: #f40;
}
.candidate-response-dialog form textarea {
    background: #f6f6f6;
}
.candidate-response-dialog .button {
    margin: 8px 0 0 24px;
}
.button {
    display: inline-block;
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
    padding: 12px;
    margin: 8px 0;
    border-radius: 4px;
    font-size: 12px;
    line-height: 16px;
    width: 100%;
    font-weight: 500;
    cursor: pointer;
}
.button:hover {
    border: 1px solid #aaa;
}
.button .brand-icon {
    height: 16px;
    margin-bottom: -4px;
}
.button.accent {
    background: var(--accent);
    border: none;
}
.button.accent:hover {
    background: var(--accent-hover);
}
.input-label {
    padding: 8px 0 8px 2px;
    font-size: 14px;
    color: #000;
    font-weight: 400;
}
input, select, textarea {
    border-radius: 2px;
    margin: 8px 0;
    display: block;
    width: 100%;
    -webkit-appearance: none;
    background: #f6f6f6;
    border: 1px solid #E2E2E2;
    box-sizing: border-box;
    font-size: 16px;
    padding: 8px 8px 10px 10px;
    line-height: 20px
}
input[type=range] {
    background: unset;
    border: unset !important;
    border-radius: unset;
    padding: unset;
    margin: unset;
    display: unset;
    width: unset;
    font-size: unset;
    background: linear-gradient(to bottom, #fff 45%, #ccc 50%, #fff 55%) !important;
    height: 16px;
}
input, textarea {
    cursor: text;
}
input:not(:placeholder-shown), textarea:not(:placeholder-shown) {
    background: #fff;
}
input:focus, textarea:focus {
    border: 1px solid var(--accent);
    background: #fff;
}
input.error, textarea.error {
    border: 1px solid #f80;
}
@media screen and (max-width: 400px) {
    .image-editor {
        margin-left: calc(50vw - 204px);
    }
}
