.errors_modal
{
    position: fixed;
    width: 320px;
    max-height: 85vh;
    overflow-y: auto;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    border: solid 1px #e8e8e8;
    background: #ffffff;
    color: black;
    z-index: 50000000;
}
.errors_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 49999999;
}

.errors_overlay_hidden {
    display: none;
}
.errors_modal h1
{
    font-size: 16px;
    font-weight: bold;
    color: black;
}

.errors_modal h2
{
    padding-top: 1.2rem;
    font-size: 14px;
    color: black;
}

.errors_modal p
{
    padding-top: 0.8rem;
    padding-bottom: 0.4rem;
    font-size: 16px;
    color: black;
}
.errors_modal button
{
    position: relative;
    display: block;
    border: none;
    background: linear-gradient(90deg,rgba(87, 199, 133, 1) 0%, rgba(5, 79, 7, 1) 100%);
    border-radius: 5px;
    font-weight: 700;
    max-width: 100%;
    padding: 18px 20px;
    white-space: normal;
    width: 100%;
    font-size: 16px;
    background-size: 100% 100%;
    color: white;;
    text-align: center;
    /*box-shadow: -5px -5px 20px #FFF, 5px 5px 20px #BABECC;*/
    /*text-transform: uppercase;*/
}

.errors_modal_hidden {
    display: none !important;
    visibility: hidden !important;
}
