.replay_upload_form .file-area {
    width: 100%;
    position: relative
}

.replay_upload_form .file-area input[type=file] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer
}

.replay_upload_form .file-area .file-dummy {
    width: 100%;
    padding: 30px;
    background: rgba(255, 255, 255, .2);
    border: 2px dashed rgba(255, 255, 255, .2);
    text-align: center;
    transition: background .3s ease-in-out
}

.replay_upload_form .file-area .file-dummy .success {
    display: none
}

.replay_upload_form .file-area:hover .file-dummy {
    background: rgba(255, 255, 255, .1)
}

.replay_upload_form .file-area input[type=file]:focus+.file-dummy {
    outline: 2px solid rgba(255, 255, 255, .5);
    outline: -webkit-focus-ring-color auto 5px
}

.replay_upload_form .file-area input[type=file]:valid+.file-dummy {
    border-color: rgba(0, 255, 0, .4);
    background-color: rgba(0, 255, 0, .3)
}

.replay_upload_form .file-area input[type=file]:valid+.file-dummy .success {
    display: inline-block
}

.replay_upload_form .file-area input[type=file]:valid+.file-dummy .default {
    display: none
}

.replay_upload_form .file-dummy-active {
    border: 3px dashed rgba(255, 255, 255, .5)!important
}

.replay_upload_form label {
    display: block
}

.replay_upload_form .text-field {
    background-color: #3c3c41;
    border: 1px solid #717171;
    color: #fff;
    padding: .25em;
    margin: .1em;
    transition: background-color .1s
}

.replay_upload_form .text-field:hover {
    background-color: rgba(255, 255, 255, .1)
}

.replay_upload_form .text-field:active {
    border: 1px solid #717171
}

.replay_upload_form button {
    background-color: #3c3c41;
    border: 1px solid #717171;
    padding: 1em;
    letter-spacing: .1em;
    transition: background-color .1s
}

.replay_upload_form button:hover {
    background-color: rgba(255, 255, 255, .1)
}

.replay_upload_form .field-notes {
    font-size: .9em;
    color: #aaa;
    margin-top: .1em;
    margin-bottom: 1em
}

.replay_upload_form .field-notes span {
    font-weight: 900;
    color: #ddd
}

#progress_box {
    margin: 1em auto 0;
    width: 100%;
    text-align: center
}

#error_message {
    text-align: center;
    margin-top: 4em;
    color: #b53939;
    font-size: 1.4em
}

#arena_tabs_tabs {
    margin: 2em auto;
    display: block;
    width: max-content;
    height: 3em
}

.ignite_tabs {
    list-style: none;
    display: flex;
    width: max-content;
    margin: 0 auto;
    height: 4em
}

.ignite_tabs li {
    float: left;
    border-bottom: .1em solid var(--ignite-orange);
    padding: 0;
    margin: .5em;
}

.ignite_tabs li a {
    display: block;
    padding: 1em;
    color: #fff;
    outline: none;
}

.ignite_tabs li:hover {
    border-bottom: .2em solid var(--ignite-orange);
}

.ignite_tabs li a:hover {
    text-decoration: none;
    color: inherit;
}

.ignite_tabs .active {
    border-bottom: .25em solid var(--ignite-orange);
}

.ignite_tabs .active a {
    color: var(--ignite-orange);
    text-shadow: 0 0 1em gray;
    text-decoration: none;
}