.modal {height: 100vh;width: 360px;position: fixed;top: 50%;left: 50%;transform:translate(-50%, -50%);display: flex;align-items: center;justify-content: center;flex-direction: column;}
.modal img {margin-bottom: 3rem;width: 60%;margin-bottom: 15rem;}
.modal .link {width: 100%;}
.modal .link-a{
    display: block;

    width: 80%;
    margin: 0 auto;

    font-size: 1.8rem;
    border-radius: .3rem; 
    padding: 1rem 2rem;
    background-color: #0075cc;
    color: #fff;
    text-align: center;

}
.modal .link-a a {background:#0075cc;color: #fff;}
.modal .link-b a {background: #fff;color: #000;}
.modal .link-c a {background: #fff;color: #000;}

.loader_wrap {top: 0;left: 0;right: 0;bottom: 0;position: fixed;background: rgba(0, 0, 0, 0.5);display: none;}
.loader {border: 7px solid #f3f3f3;border-top: 7px solid #3170e2;border-radius: 50%;width: 36px;height: 36px;animation: spin 1.3s linear infinite;position: absolute;top: 46%;left: 50%;transform: translate(-50%, -50%);}
.loader_text{position: absolute;top: 53%;width: 100%;text-align: center;color: #fff;font-size: 1.5rem;}
@keyframes spin {
    0% {transform: translate(-50%, -50%) rotate(0deg);}
    100% {transform: translate(-50%, -50%) rotate(360deg);}
}