.popup {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.90);
    transition: all 0.8s ease 0s;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 2000;
}
.popup.open {
    opacity: 1;
    visibility: visible;
}
.popup.mini-radius .popup__content {
    border-radius: 8px;
}
.popup.mini .popup__content {
    max-width: 400px;
}
.popup__area {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: auto;
}
.popup__body {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
}
.popup__content {
    background-color: #fff;
    padding: 10px;
    max-width: 800px;
    min-width: 200px;
    color: #000;
    position: relative;
    border-radius: 20px;
    transition: all 0.8s ease 0s;
}
.popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: #000;
    text-decoration: none;
}
.close__img {
    height: 40px;
    width: 40px;
    border-radius: 15px;
}
.popup__title {
    font-size: 40px;
    font-weight: 700;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    background-color: #445162;
    margin-left: 30px;
    margin-right: 30px;
    border: 3px solid #fff;
    box-shadow: 0 0 40px #445162;
    text-shadow: 0 0 40px #fff;
    border-radius: 20px;
}
.popup__text {
    height: 100%;
    text-align: justify;
}
@media (max-width: 550px) {
    .popup__content {
        width: 90%;
    }
}