@font-face {
    font-family: Neuropol;
    src: url(../assets/Fonts/Neuropol.otf);
}
@font-face {
    font-family: FiraCode;
    src: url(../assets/Fonts/FiraCode.ttf);
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #001010;
    font-family: FiraCode;
}
:root {
    --dark-green: #001010;
    --soft-green: #093d3e8a;
    --light-green: #63bac1;
    --solid-green: #052829;
    --red: #df003c;
    --wa-green: #25d357;
    --text-shadow: 0 0 6px #63bac1;
}
@keyframes ing {
    from {opacity: 0;transform: scale(0);}
    to {opacity: 1;transform: scale(1);}
}
.fullContainer {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.subContainer {
    width: 70vw;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
    position: relative;
    background: var(--soft-green);
    animation: ing .4s linear both;
    transition: all 1s cubic-bezier(1,0,0,1);
}
.subContainer::before {
    content: "";
    width: 100px;
    height: 100px;
    position: absolute;
    left: -10px;
    top: -10px;
    z-index: 1;
    border-top: 3px solid var(--light-green);
    border-left: 3px solid var(--light-green);
}
.subContainer::after {
    content: "";
    width: 100px;
    height: 100px;
    position: absolute;
    right: -10px;
    bottom: -10px;
    z-index: 1;
    border-bottom: 3px solid var(--light-green);
    border-right: 3px solid var(--light-green);
}
.upShape {
    width: 200px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    padding: 5px;
    position: absolute;
    top: -28px;
    right: -12px;
    z-index: 2;
    border-top: 1px solid var(--light-green);
    border-left: 1px solid var(--light-green);
    transform: skewX(320deg);
    background: var(--soft-green);
}
.chart {
    width: 20px;
    height: 20px;
    display: flex;
    background: var(--light-green);
}
.upRightShape {
    width: 24px;
    height: 200px;
    position: absolute;
    top: -14px;
    right: -24px;
    z-index: 2;
    border-right: 1px solid var(--light-green);
    border-bottom: 1px solid var(--light-green);
    transform: skewY(310deg);
    background: var(--soft-green);
}
.cornerShapeRight {
    width: 150px;
    height: 150px;
    position: absolute;
    right: -30px;
    top: -34px;
    z-index: 1;
    border-top: 3px solid var(--light-green);
    border-right: 3px solid var(--light-green);
}
.cornerShapeLeft {
    width: 150px;
    height: 150px;
    background: var(--dark-green);
    clip-path: polygon(100% 100%, 60% 60%, 0% 0%, 0% 100%);
    position: absolute;
    left: 0;
    bottom: 0;
}
.cornerShapeLeft::before {
    content: "";
    width: 230px;
    height: 100px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 2;
    border-top: 10px solid var(--light-green);
    transform: rotate(45deg) translate(-35px, 61px);
}
.contTitle {
    width: 100%;
    height: 20%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.contTitle::before {
    content: "";
    width: 50%;
    height: 50%;
    border-left: 1px solid var(--light-green);
    border-top: 1px solid var(--light-green);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.contTitle::after {
    content: "";
    width: 50%;
    height: 50%;
    border-right: 1px solid var(--light-green);
    border-bottom: 1px solid var(--light-green);
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.titles {
    font-family: Neuropol;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    color: var(--light-green);
    text-shadow: var(--text-shadow);
}
.secTitle {
    font-family: Neuropol;
    color: var(--light-green);
    position: absolute;
    transform: translate(-80px, 90px) skew(0deg, 50deg) rotate(90deg);
    font-size: 16px;
    letter-spacing: 3px;
}
.sText {
    font-size: 12px;
    letter-spacing: 0px;
    color: var(--wa-green);
}
.passed {
    border: 1px solid var(--wa-green) !important;
    color: var(--wa-green) !important;
    background: url(../assets/images/upload.svg) 8px / 40px no-repeat,url(../assets/images/upload.svg) 99% / 40px no-repeat !important;
}
#usFiles {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    position: relative;
    z-index: 3;
}
@keyframes btn {
    0% {width: 40%;height: 40%;background: var(--light-green);transform: rotate(180deg);}
    20% {width: 80%;height: 80%;background: var(--light-green);}
    40% {width: 100%;height: 100%;background: var(--light-green);}
    80% {width: 80%;height: 80%;background: var(--light-green);}
    100% {width: 20px;height: 20px;background: var(--light-green);transform: rotate(0deg);}
}
.acButton {
    width: 200px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: transparent;
    background-image: url(../assets/images/upload.svg),url(../assets/images/upload.svg);
    background-position: 5px,98%;
    background-size: 20px;
    background-repeat: no-repeat;
    border: 1px solid var(--light-green);
    color: var(--light-green);
    position: relative;
    box-shadow: 0 0 0 0 var(--light-green),0 0 0 0 var(--light-green);
    transition: all 1s cubic-bezier(1, 0, 0, 1);
    z-index: 3;
}
.acButton::before {
    content: "";
    width: 20px;
    height: 20px;
    background: var(--solid-green);
    clip-path: polygon(100% 100%, 60% 60%, 0% 0%, 0% 100%);
    position: absolute;
    bottom: -3px;
    left: -3px;
    border: 3px solid var(--light-green);
    transition: all 1s cubic-bezier(1, 0, 0, 1);
}
.acButton::after {
    content: "";
    width: 20px;
    height: 20px;
    background: var(--solid-green);
    clip-path: polygon(100% 100%, 60% 60%, 0% 0%, 100% 0%);
    position: absolute;
    top: -3px;
    right: -3px;
    border: 3px solid var(--light-green);
    transition: all 1s cubic-bezier(1, 0, 0, 1);
}
.acButton:hover {
    transition: all 1s cubic-bezier(1, 0, 0, 1);
    box-shadow: -3px -3px 8px 0 var(--light-green), 3px 3px 8px 0 var(--light-green);
    background-color: var(--light-green);
    background-image: url(../assets/images/uploaddark.svg),url(../assets/images/uploaddark.svg);
    color: var(--dark-green);
    overflow: hidden;
}
.acButton:hover::after {
    transition: all .3s cubic-bezier(1, 0, 0, 1);
    animation: btn .5s linear normal;
    background: var(--light-green);
}
.acButton:hover::before {
    transition: all .3s cubic-bezier(1, 0, 0, 1);
    animation: btn .5s linear normal;
    background: var(--light-green);
}
#usFiles input[type="file"],
.hiddenElement {
    display: none;
}
#recarc,
.recarc {
    width: 80%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #df003c;
    transform: translateY(50px);
    border: 1px solid;
    background: url(../assets/images/warning.svg) 8px / 40px no-repeat,url(../assets/images/warning.svg) 99% / 40px no-repeat;
}
.myFooter {
    font-size: 11px;
    color: var(--light-green);
    cursor: pointer;
    text-shadow: var(--text-shadow);
    position: relative;
    z-index: 3;
}
.linLoader {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.barThummb {
    width: 300px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--light-green);
    overflow: hidden;
    position: relative;
    background: var(--dark-green);
}
.loadTrack {
    width: 350px;
    height: 38px;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    transform: skewX(-20deg);
    position: absolute;
}
.loadTrack .chart {
    width: 15px;
    height: 30px;
    box-shadow: 0 2px 0 0 var(--light-green);
}  