.popin {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    width: 100%;
    height: 100%;
}
.popin.active {
    display: flex;
}
.popin_content {
    position: relative;
    z-index: 2;
    width: 580px;
    margin: auto;
    padding: 40px;
    background: #FFFFFF;
    box-shadow: 0px 10px 0px rgba(10, 45, 130, 0.25);
    border-radius: 8px;
    text-align: center;
    -webkit-animation: bottom .5s cubic-bezier(0.43, 0.195, 0.02, 1);
    animation: bottom .5s cubic-bezier(0.43, 0.195, 0.02, 1);
}
@media only screen and (max-width: 1025px) {
    .popin_content {
        width: 320px;
        padding: 20px;
    }
}

@media only screen and (max-width: 640px) {
    .popin_content {
        padding: 20px;
    }
}

.popin_content p {
    position: relative;
    z-index: 1;
    font-family: 'Nunito', sans-serif;
    margin-bottom: .75rem;
}

.popin_content > p > strong {
    display: block;
    line-height: 1.15;
    font-family: inherit;
    font-size: 1.8rem;
    font-weight: bold;
}
.popin_content svg {
    display: inline-block;
    margin-bottom: 20px;
}
.popin_close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.popin_close::before, .popin_close::after {
    position: absolute;
    left: 9px;
    content: "";
    height: 16px;
    width: 3px;
    background-color: #0A2D82;
    border-radius: 2px;
}
.popin_close::before {
    transform: rotate(45deg);
}
.popin_close::after {
    transform: rotate(-45deg);
}
.popin_shadow {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: #0A2D82;
    opacity: .2;
    animation: .6s appear;
    -webkit-animation: .6s appear;
}
@keyframes bottom {
    0% {
        -webkit-transform: translate3d(0, 200%, 0);
        transform: translate3d(0, 200%, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes appear {
    0% {
        opacity: 0;
    }
}