.overlay-modal-micros {
    display: block;
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    background-color: #00000080;
    z-index: 9999;
}


.modal {
    position: fixed;
    top: 5%;
    left: 0px;
    right: 0px;
    display: block;
    max-width: 600px;
calc(100% - 60px);
    background: white;
    min-height: 300px;
    border-radius: 5px;
    margin: auto;
    padding: 15px;
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, .1);
    z-index: 99991;
}

.modal .close {
    width: 30px;
    height: 30px;
    color: white;
    background-color: white;
    background-image: url("../images/close.png");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 100%;
    display: flex;
    cursor: pointer;
    z-index: 5;
}


.modal .modal-title {
    display: flex;
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    line-height: 30px;
    padding: 10px 0;
    position: relative;
    align-items: center;
    justify-content: center;
}


.hide {
    display: none!important;
}


.loader {
    width:45px;
    height:40px;
    background:
            linear-gradient(#0000 calc(1*100%/6),#2f6cb1 0 calc(3*100%/6),#0000 0),
            linear-gradient(#0000 calc(2*100%/6),#2f6cb1 0 calc(4*100%/6),#0000 0),
            linear-gradient(#0000 calc(3*100%/6),#2f6cb1 0 calc(5*100%/6),#0000 0);
    background-size:10px 400%;
    background-repeat: no-repeat;
    animation:matrix 1s infinite linear;
    margin: auto;
}
@keyframes matrix {
    0% {background-position: 0% 100%, 50% 100%, 100% 100% }
    100% {background-position: 0% 0%, 50% 0%, 100% 0% }
}


@media screen and (max-width: 425px) {
    .modal {
        margin-left: 15px;
        margin-right: 15px;
    }

    .modal .modal-title {
        font-size: 26px;
    }
}