
/*load_screen*/
.black_screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    z-index: 1031;
}

.load_screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    color: #00a3dc;
    font-size: 100px;
    text-align: center;
    padding-top: calc(20% - 50px);
    width: 100%;
    height: 100%;
    z-index: 1042;
}

/*feedback*/
.feedback {
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.5);
    height: auto;
    text-align: center;
    color: #eeeeec;
    border-radius: 4px;
    padding: 15px;
    opacity: 1;
    position: fixed;
    left: 50%;
    top: 30%;
    text-shadow: 0 0 .4px rgba(255, 255, 255, 0.6);
    transform: translateX(-50%);
    font-size: 1.65rem !important;
    width: auto;
    z-index: 999999999999999999999999999999999999999;
    display: none;
    align-items: center;
    margin: 0 auto;
}

/*end load_screen*/