*,
*:before,
*:after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.faded {
    overflow: hidden;
}

.unfaded {
    overflow: scrolls;
}

.popup_outside_black {
    background-color: rgb(0, 0, 0, 0.75);
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100000000000;
}

.popup_outside_white {
    
}

.popup {
    background-color: transparent;
    
    /* height: fit-content; */
    /* padding: 30px 40px; */
    position: fixed;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    border-radius: 8px;
    /* border: 5px solid #5177a3; */
    font-family: "Poppins", sans-serif;
    display: none;
    text-align: center;
    z-index: 100000000000000;
    /* min-width: 267px; */
    /* box-shadow: 0 0 240px 0 black; */
}


.popup button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 auto;
    background-color: rgba(224, 220, 220, 0.5);
    font-size: 30px;
    width: 30px;
    height: 30px;
    color: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    opacity: 1;
}

.popup img {
    width: 69%;
    border-radius : 5px;
    opacity: 1;
}

.popup p {
    font-size: 14px;
    text-align: justify;
    margin: 20px 0;
    line-height: 25px;
}

.popup .last-button {
    display: block;
    width: fit-content;
    position: relative;
    margin: 10px auto;
    text-align: center;
    background-color: #0f72e5;
    color: #ffffff;
    text-decoration: none;
    padding: 5px 5px;
    border-radius: 5px;
}

@media (max-width: 768px){
    .popup {
        width: 90%;
    }
}