.blocker {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 999;
    padding: 20px;
    box-sizing: border-box;
    background-color: #000;
    background-color: rgba(29, 29, 29, 0.8);
    text-align: center
}

.blocker:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.05em
}

.blocker.behind {
    background-color: transparent
}

.modal {
    display: none;
    vertical-align: middle;
    position: relative;
    z-index: 2;
    max-width: 500px;
    box-sizing: border-box;
    width: 90%;
    background: #fff;
    /*padding: 60px 35px 30px;*/
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 5px;
    text-align: left
}

.modal .modal-content {
    padding: 34px 32px 30px 31px;
}

.modal p#modal_header {
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #69606D;
}

.modal .modal_header {
    margin-bottom: 7px;
}

.modal .modal_text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 15px;
    color: #69606D;
}

.modal a.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    display: block;
    width: 44px;
    height: 44px;
    margin-left: auto;
    text-indent: -9999px;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath id='Vector' d='M24.3336 7.84643L22.4872 6L15.1669 13.3202L7.84667 6L6.00024 7.84643L13.3205 15.1667L6.00024 22.4869L7.84667 24.3333L15.1669 17.0131L22.4872 24.3333L24.3336 22.4869L17.0133 15.1667L24.3336 7.84643Z' fill='black'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-color:#FFF;
    border-radius: 100%;
    border: 1px solid rgba(0,0,0,0.1);
    z-index: 10;
}
.modal a.close-modal:hover { background-color: rgb(0 0 0 / 9%); }
.modal-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    padding: 12px 16px;
    border-radius: 5px;
    background-color: #111;
    height: 20px
}

.modal-spinner > div {
    border-radius: 100px;
    background-color: #fff;
    height: 20px;
    width: 2px;
    margin: 0 1px;
    display: inline-block;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out
}

.modal-spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s
}

.modal-spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s
}

.modal-spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s
}

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.5)
    }
    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.5);
        -webkit-transform: scaleY(0.5)
    }
    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0)
    }
}


.modal_control {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 9px;
}

.modal_control a:first-of-type {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF!important;
    background: #116DEA;
    width: 100%;
    text-align: center;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal_control a:last-of-type {
    font-family: 'Inter';
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #69606D;
    padding: 8px 0;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 100%;
}

@media (max-width: 450px) {
    .modal { width: 98%; }
    .blocker { padding:0; }
}