.modal {
    min-height: 100vh;
    width: 100%;
    padding: 2rem;
    display: flex;
    box-sizing: border-box;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    background: url('../img/index_background.png') no-repeat center/cover;
}
.modal > p {
    font-size: 1.5rem;
    font-weight: 100;
    color: #fff;
    opacity: .5;
    line-height: 1.3;
}
.modal > p em {
    font-size: inherit;
    font-weight: 500;
    color: inherit;
}
.modal img {
    width: 80%;
    margin-bottom: 3rem;
}
.modal .link {width: 100%;}
.modal .link a {
    display: block;
    text-align: center;
    height: 4.2rem;
    width: 100%;
    margin: 0 auto;
    margin-top: 4rem;
    line-height: 4.2rem;
    background: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: .3rem;
}
.modal .link-a a {background-color: #fff;color:#0075cc;box-shadow: 0 0 .3rem rgba(0, 0, 0, .1);}
.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 #3498db;border-radius: 50%;width: 36px;height: 36px;animation: spin 2s 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);}
}