.popup-wrapper {
    display: none;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 50;
    justify-content: center;
    align-items: center;
}
.popup {
    position: relative;
    opacity: 1;
    width: 80%;
    height: 90%;
    background-color: #ffffff;
    overflow-y: scroll;
}
.popup-content {
    display: none;
}
.popup-wrapper .overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    background: #000;
    opacity: 0.2;
}
.popup-title-container {
    text-align: center;
    border: 1px solid #f7f5f2;
}
.popup-text-container {
    text-align: center;
    padding: 20px;
}
.popup-title-container h3 {
    margin: 0;
    padding: 25px;
}
.popup-title-container h3 {
    line-height: 160%;
    color: #4C9EAA;
    font-size: 26px;
}
.popup-text-container h6 {
    font-size: 22px;
    margin: 25px;
}
.popup-text-container p, .popup-text-container li, .popup-text-container h5 {
    text-align: justify;
}
.popup-text-container ul {
    padding-left: 13px;
}
.popup-text-container b {
    font-weight: bold;
}
.popup-close {
    position: absolute;
    border: none;
    background: transparent;
    font-size: 30px;
    color: #4C9EAA;
    right: 5px;
    top: 0;
}
.popup-close:hover {
    color: #f7f5f2;
}