@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;
}

*:focus {
    outline: none;
}

.clear {
    clear: both;
}

.hidden {
    display: none;
}

.bold {
    font-weight: 700;
}
.overtime-embed {
    width: 100%;
    height: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.overtime-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    overflow: hidden;
}

body {
    background: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon points="0,100 100,0 100,100" style="fill:%23004d00;"/></svg>') no-repeat center center fixed,
        radial-gradient(circle, rgba(0,252,42,0.3) 0%, rgba(0,0,0,1) 100%),
        repeating-linear-gradient(45deg, rgba(0,0,0,0.1) 0px, rgba(0,0,0,0.1) 2px, transparent 2px, transparent 4px);
    background-blend-mode: overlay;
    background-size: cover, cover, auto;
    background-attachment: fixed;
}

.container-outer {
    box-sizing: border-box;
    margin: 20px auto;
    width: 90%;
    max-width: 1000px;
}

.container-inner {
    box-sizing: border-box;
    margin: 20px;
    padding: 15px;
    background-color: rgba(22, 22, 22, 0.85);
    border: 2px solid #00fc2a;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 252, 42, 0.3);
}

.container-content {
    background-color: rgba(22, 22, 22, 0.94);
    border: 2px solid #00fc2a;
    border-radius: 8px;
}

.centered {
    text-align: center;
}

.header-logo {
    width: 25%;
    border-radius: 15px;
    margin-bottom: -25px;
    filter: drop-shadow(0 0 10px rgba(0, 252, 42, 0.5));
}

@media(max-width:959px) {
    .container-outer {
        width: 95%;
    }
    .container-content {
        border-left: none;
        border-right: none;
        border-radius: 0;
    }
}

.container-heading {
    background-image: linear-gradient(45deg, #004d00, #00fc2a);
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    text-align: center;
    line-height: 48px;
    height: 48px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(0, 252, 42, 0.7);
}

.container-heading2 {
    background-image: linear-gradient(45deg, #004d00, #00fc2a);
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    text-align: center;
    line-height: 48px;
    height: 48px;
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 252, 42, 0.7);
}

.activity-row {
    display: inline-block;
    margin: 10px 0;
}

.activity-text-block {
    height: 24px;
    padding: 0 0 0 4px;
    display: inline-block;
}

.flag {
    vertical-align: middle;
    width: 20px;
    height: 11px;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.7));
}

.activity-text-country {
    float: left;
    height: 24px;
    width: 32px;
    padding: 0;
    margin: 0 10px 0 0;
    display: inline-block;
}

.field-container {
    margin: 20px 0;
}

.field-container1 {
    margin: 20px 0;
}

.field-text-pre {
    font-size: 13px;
    color: #00fc2a;
    text-transform: uppercase;
    vertical-align: baseline;
    padding: 0 0 11px 5px;
    font-weight: 700;
    text-shadow: 0 0 3px rgba(0, 252, 42, 0.5);
}

.form-field {
    background-color: rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    position: relative;
    transition: all 0.15s linear;
    width: 100%;
    border: 1px solid #00fc2a;
    border-radius: 5px;
}

.form-field-focused {
    border: 2px solid #00fc2a;
    box-shadow: 0 0 10px rgba(0, 252, 42, 0.5);
}

.form-field-label {
    background-color: rgba(255, 255, 255, 0.1);
    height: 42px;
    position: absolute;
    width: 42px;
}

.form-field-label > img {
    height: 100%;
    width: 100%;
    filter: invert(1) hue-rotate(100deg);
}

.form-field-input {
    box-sizing: border-box;
    height: 42px;
    margin: 0 12px 0 32px;
    padding: 5px;
}

.form-field-input > input {
    border: 0;
    font-size: 15px;
    height: 20px;
    margin: 0;
    padding: 6px;
    width: 100%;
    background-color: transparent;
    color: #00fc2a;
}

.form-field-select {
    background-color: rgba(221, 221, 221, 0.1);
    box-sizing: border-box;
    height: 42px;
}

.form-field-select > select {
    border: 0;
    font-size: 15px;
    height: 42px;
    margin: 0;
    width: 100%;
    background-color: transparent;
    color: #00fc2a;
}

.form-field-select option {
    background-color: #262626;
    border: 0;
    font-size: 15px;
    height: 42px;
}

.form-button-container {
    text-align: center;
    padding-top: 20px;
}

.form-button {
    background: linear-gradient(45deg, #004d00, #00fc2a);
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    width: 190px;
    font-size: 18px;
    height: 54px;
    line-height: 54px;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 12px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 252, 42, 0.3);
    position: relative;
    overflow: hidden;
}

.form-button:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    z-index: 1;
    transition: all 0.3s ease;
}

.form-button:hover:before {
    left: 100%;
}

.form-button:hover {
    background: linear-gradient(45deg, #00fc2a, #004d00);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 252, 42, 0.4);
}

.glitch {
    color: #00fc2a;
    font-family: 'Orbitron', monospace;
    position: relative;
    display: inline-block;
    text-shadow: 
        0.05em 0 0 rgba(255, 0, 0, 0.75),
        -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
        0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    animation: glitch 500ms infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00de;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch {
    0% {
        text-shadow: 
        0.05em 0 0 rgba(255, 0, 0, 0.75),
        -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
        -0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    14% {
        text-shadow: 
        0.05em 0 0 rgba(255, 0, 0, 0.75),
        -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
        -0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    15% {
        text-shadow: 
        -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
        0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
        -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    49% {
        text-shadow: 
        -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
        0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
        -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    50% {
        text-shadow: 
        0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
        0.05em 0 0 rgba(0, 255, 0, 0.75),
        0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    99% {
        text-shadow: 
        0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
        0.05em 0 0 rgba(0, 255, 0, 0.75),
        0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    100% {
        text-shadow: 
        -0.025em 0 0 rgba(255, 0, 0, 0.75),
        -0.025em -0.025em 0 rgba(0, 255, 0, 0.75),
        -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 31px, 0); }
    5% { clip: rect(86px, 9999px, 94px, 0); }
    10% { clip: rect(54px, 9999px, 62px, 0); }
    15% { clip: rect(37px, 9999px, 45px, 0); }
    20% { clip: rect(73px, 9999px, 81px, 0); }
    25% { clip: rect(19px, 9999px, 27px, 0); }
    30% { clip: rect(68px, 9999px, 76px, 0); }
    35% { clip: rect(5px, 9999px, 13px, 0); }
    40% { clip: rect(91px, 9999px, 99px, 0); }
    45% { clip: rect(24px, 9999px, 32px, 0); }
    50% { clip: rect(50px, 9999px, 58px, 0); }
    55% { clip: rect(82px, 9999px, 90px, 0); }
    60% { clip: rect(41px, 9999px, 49px, 0); }
    65% { clip: rect(7px, 9999px, 15px, 0); }
    70% { clip: rect(63px, 9999px, 71px, 0); }
    75% { clip: rect(96px, 9999px, 104px, 0); }
    80% { clip: rect(29px, 9999px, 37px, 0); }
    85% { clip: rect(78px, 9999px, 86px, 0); }
    90% { clip: rect(13px, 9999px, 21px, 0); }
    95% { clip: rect(59px, 9999px, 67px, 0); }
    100% { clip: rect(46px, 9999px, 54px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 73px, 0); }
    5% { clip: rect(32px, 9999px, 40px, 0); }
    10% { clip: rect(87px, 9999px, 95px, 0); }
    15% { clip: rect(9px, 9999px, 17px, 0); }
    20% { clip: rect(54px, 9999px, 62px, 0); }
    25% { clip: rect(76px, 9999px, 84px, 0); }
    30% { clip: rect(21px, 9999px, 29px, 0); }
    35% { clip: rect(98px, 9999px, 106px, 0); }
    40% { clip: rect(43px, 9999px, 51px, 0); }
    45% { clip: rect(7px, 9999px, 15px, 0); }
    50% { clip: rect(69px, 9999px, 77px, 0); }
    55% { clip: rect(35px, 9999px, 43px, 0); }
    60% { clip: rect(90px, 9999px, 98px, 0); }
    65% { clip: rect(12px, 9999px, 20px, 0); }
    70% { clip: rect(57px, 9999px, 65px, 0); }
    75% { clip: rect(79px, 9999px, 87px, 0); }
    80% { clip: rect(24px, 9999px, 32px, 0); }
    85% { clip: rect(101px, 9999px, 109px, 0); }
    90% { clip: rect(46px, 9999px, 54px, 0); }
    95% { clip: rect(3px, 9999px, 11px, 0); }
    100% { clip: rect(72px, 9999px, 80px, 0); }
}
@keyframes type {
    from { width: 0; }
    to { width: 100%; }
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.matrix-code {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #00ff00;
    animation: type 4s steps(50, end) 1s 1 normal both,
               blink-caret 0.5s step-end infinite;
}
.blink {
    animation: blink 0.7s infinite;
}
.form-delimeter {
    width: 100%;
    border-top: 2px solid #ddd;
    margin: 10px 0;
}

.form-error-list-row {
    background-color: #fdd;
    border-left: 3px solid #a00;
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
    color: #bf0000;
    font-size: 14px;
    margin: 0 0 15px;
    padding: 8px
}

.recent-activity {
    overflow: auto
}

.recent-activity-row {
    color: #fff;
    background-repeat: no-repeat;
    font-size: 13px;
    line-height: 20px;
    margin: 10px 0;
    overflow: auto;
    text-align: center;
    vertical-align: baseline;
    width: 100%;
    box-sizing: border-box
}

.recent-activity-timer {
    font-weight: 700;
    white-space: nowrap
}

.generator-console {
    background-color: #111;
    color: rgb(0, 255, 21);
    height: 160px;
    overflow-y: hidden;
    padding: 10px;
    vertical-align: base
}

.generator-console-row {
    font-size: 12px;
    line-height: 1.25;
    padding: 2px
}

.generator-console * {
    font-family: roboto condensed
}

@-moz-keyframes blue-circle-anim {
    0% {
        background-position-y: 0
    }
    100% {
        background-position-y: -3686px
    }
}

@-webkit-keyframes blue-circle-anim {
    0% {
        background-position-y: 0
    }
    100% {
        background-position-y: -3686px
    }
}

@keyframes blue-circle-anim {
    0% {
        background-position-y: 0
    }
    100% {
        background-position-y: -3686px
    }
}

@-moz-keyframes blue-circle-loading-anim {
    0% {
        background-position-y: 0
    }
    100% {
        background-position-y: -2844px
    }
}

@-webkit-keyframes blue-circle-loading-anim {
    0% {
        background-position-y: 0
    }
    100% {
        background-position-y: -2844px
    }
}

@keyframes blue-circle-loading-anim {
    0% {
        background-position-y: 0
    }
    100% {
        background-position-y: -2844px
    }
}

@-moz-keyframes green-checkmark-anim {
    0% {
        background-position-y: 0
    }
    100% {
        background-position-y: -630px
    }
}

@-webkit-keyframes green-checkmark-anim {
    0% {
        background-position-y: 0
    }
    100% {
        background-position-y: -630px
    }
}

@keyframes green-checkmark-anim {
    0% {
        background-position-y: 0
    }
    100% {
        background-position-y: -630px
    }
}

#recaptcha-container {
    background-color: #f9f9f9;
    border: 1px solid #d3d3d3;
    -moz-box-shadow: 0 0 4px 1px rgba(0, 0, 0, .08);
    -webkit-box-shadow: 0 0 4px 1px rgba(0, 0, 0, .08);
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, .08);
    border-radius: 3px;
    color: #000;
    height: 74px;
    margin: 10px;
    max-width: 300px;
    min-width: 220px;
    position: relative
}

#recaptcha-wrapper-inner {
    float: left;
    height: 74px;
    position: relative;
    width: 52px
}

#recaptcha-checkbox {
    background-color: #fff;
    border: 2px solid #c1c1c1;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 1px;
    height: 24px;
    left: 12px;
    position: absolute;
    top: 22px;
    width: 24px
}

#recaptcha-checkbox:hover {
    border: 2px solid #b1b1b1
}

#recaptcha-maintext {
    cursor: pointer;
    font-family: roboto condensed, sans-serif;
    font-size: 14px;
    font-weight: 400;
    left: 52px;
    line-height: 17px;
    position: absolute;
    top: 29px;
    width: 100px
}

#recaptcha-spinfast {
    -moz-animation: blue-circle-anim .8s steps(97);
    -webkit-animation: blue-circle-anim .8s steps(97);
    animation: blue-circle-anim .8s steps(97);
    background-image: url(images/recaptcha_blue-circle-anim.html);
    background-repeat: no-repeat;
    border: none;
    display: none;
    height: 36px;
    left: 8px;
    outline: 0;
    position: absolute;
    top: 18px;
    width: 36px
}

#recaptcha-spinlong {
    -moz-animation: blue-circle-loading-anim 1.7s steps(79) infinite;
    -webkit-animation: blue-circle-loading-anim 1.7s steps(79) infinite;
    animation: blue-circle-loading-anim 1.7s steps(79) infinite;
    background-image: url(images/recaptcha_blue-circle-loading-anim.html);
    background-repeat: no-repeat;
    border: none;
    display: none;
    height: 36px;
    left: 8px;
    outline: 0;
    position: absolute;
    top: 18px;
    width: 36px
}

#recaptcha-checkmark {
    -moz-animation: green-checkmark-anim .8s steps(21);
    -webkit-animation: green-checkmark-anim .8s steps(21);
    animation: green-checkmark-anim .8s steps(21);
    animation-fill-mode: both;
    background-image: url(images/recaptcha_checkmark.html);
    background-repeat: no-repeat;
    border: none;
    display: none;
    height: 30px;
    left: 7px;
    outline: 0;
    position: absolute;
    top: 24px;
    width: 38px
}

#recaptcha-logo {
    background-image: url(data:image/png;base64,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);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 32px 32px;
    height: 32px;
    position: absolute;
    right: 24px;
    top: 10px;
    width: 32px
}

#recaptcha-text {
    background-size: 32px 32px;
    color: #9b9b9b;
    cursor: default;
    font-family: roboto condensed, sans-serif;
    font-size: 10px;
    font-weight: 400;
    height: 32px;
    line-height: 10px;
    margin-top: 5px;
    position: absolute;
    right: 12px;
    text-align: center;
    top: 42px;
    width: 58px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    text-align: center
}

#recaptcha-footer {
    bottom: 0;
    margin: 4px 13px 0 0;
    padding-right: 2px;
    position: absolute;
    right: 0;
    text-align: right
}

#recaptcha-footer-text {
    color: #9b9b9b;
    font-family: roboto condensed, sans-serif;
    font-size: 8px;
    font-weight: 400
}

.fullscreen-wrapper {
    background-color: #000;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0
}

.fullscreen-wrapper-inner {
    position: relative;
    width: 100%;
    height: 100%
}

.mydialog-outer {
    box-sizing: content-box;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    overflow: auto;
    border-radius: 3px
}

.mydialog-inner {
    background-color: #fff;
    box-sizing: content-box;
    width: 100%
}

.mydialog-inner-header {
    background-image: url(../images/navbg.html);
    background-size: 2px;
    text-transform: uppercase;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.23;
    padding: 12px;
    text-align: center
}

.mydialog-inner-body {
    font-size: 14px;
    line-height: 1.38;
    margin: 15px 10px 5px;
    text-align: center
}

.mydialog-inner-footer {
    margin: 0 auto;
    overflow: hidden
}

.recaptcha-done-outer {
    color: #333;
    font-size: 15px;
    height: 96px;
    line-height: 1.23;
    overflow: hidden;
    text-align: center;
    width: 100%
}

.recaptcha-done-inner {
    display: table-cell;
    padding: 0 10px;
    text-align: center;
    vertical-align: middle;
    width: 100%
}

.onoff {
    margin-left: 0;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    zoom: 1;
    *display: inline;
    position: relative;
    cursor: pointer;
    width: 55px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    font-family: roboto condensed, sans-serif
}

.onoff label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: #fc1f1f;
    font-weight: 700;
    color: #fff;
    -webkit-transition: background .3s, text-indent .3s;
    -moz-transition: background .3s, text-indent .3s;
    -o-transition: background .3s, text-indent .3s;
    transition: background .3s, text-indent .3s;
    text-indent: 27px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .4) inset;
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, .4) inset;
    box-shadow: 0 0 5px rgba(0, 0, 0, .4) inset
}

.onoff label:after {
    content: "NO";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 12px;
    color: #fc1f1f;
    color: #fff
}

.onoff label:before {
    content: "";
    width: 15px;
    height: 24px;
    background: #fff;
    position: absolute;
    top: 3px;
    left: 3px;
    display: block;
    -webkit-transition: left .3s;
    -moz-transition: left .3s;
    -o-transition: left .3s;
    transition: left .3s;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .4);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, .4);
    box-shadow: 0 0 5px rgba(0, 0, 0, .4)
}

.onoff input:checked+label {
    background: #28b815;
    text-indent: 8px
}

.onoff input:checked+label:after {
    content: "YES";
    color: #fff
}

.onoff input:checked+label:before {
    left: 37px
}

.wrapper {
    display: flex
}

.left {
    font-size: 17px;
    margin-left: 10px
}

.right {
    flex: 1
}

.version-text {
    font-size: 12px;
    line-height: 17px;
    text-align: right;
    color: rgb(0, 255, 21);
    margin: 8px 8px 0 0
}

.typewriter-text {
    overflow: hidden;
    color: rgb(0, 255, 21);
    animation: typing 3s steps(18, end), blink .3s step-end infinite;
    white-space: nowrap;
    border-right: 4px solid rgb(0, 255, 21);
    line-height: 17px;
    margin-top: 15px
}

@keyframes typing {
    from {
        width: 0%
    }
    to {
        width: 100%
    }
}

@keyframes blink {
    from,
    to {
        border-color: transparent
    }
    50% {
        border-color: rgb(0, 255, 21)
    }
}

.rounded {
    border-radius: .5rem !important
}

.header-logo2 {
    height: auto;
    max-width: 90px;
    border-radius: 15px;
    filter: drop-shadow(0px 5px 3px #7e6565);
    animation: drop 1.5s ease
}

.text-white-title {
    color: #fff !important;
    margin: auto;
    text-align: center;
    animation: drop 1.5s ease
}

@keyframes drop {
    0% {
        opacity: 0;
        transform: translateY(-80px)
    }
    100% {
        opacity: 1;
        transform: translateY(0px)
    }
}

h1 {
    font-size: 1.5rem
}

.proof {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%
}

.prooftext {
    margin-top: 30px;
    margin-bottom: 15px
}

.verifytxt {
    margin-top: 30px;
    line-height: 1.3
}

    {
    margin: 0;
    padding: 0;
    background: #262626
}