.pop-up {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100vw;
    height: 100vh;
    z-index: 120;
}

.more__pop-up__background {
    background-color: rgba(0, 0, 0, .4);
    width: 100%;
    height: 100%;
}

.pop-up__content {
    padding: 35px;
    border-radius: 8px;
    position: absolute;
    background-color: #26c3ca;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(50% - 60px);
    font-family: Poppins;
}

.pop-up__content .title {
    font-size: 38px;
}

.pop-up__content .title,
.pop-up__content h2,
.pop-up__content h3 {
    font-family: Comfortaa;

}

.pop-up__content p {
    font-size: 16px;
}

.pop-up__content::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: calc(100% - 60px);
    height: 100%;
    z-index: -1;
    background-color: #2CCCD3;
    border-radius: 8px 0 100% 8px;
}

.pop-up__close {
    margin-left: auto;
    cursor: pointer;
    width: max-content;
    font-size: 25px;
    padding-bottom: 10px;
}

.pop-up__text {
    overflow: auto;
    max-height: 60vh;
    padding-right: 10px;
}

.pop-up__text::-webkit-scrollbar {
    width: 6px;
}

.pop-up__text::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 5px;
}

.more__pop-up__content__subtitle {
    margin-block: 10px;
    font-family: Poppins;
}

.whitePopUpContent,
.whitePopUpContent::after {
    background-color: white;
}

.whitePopUpContent h2,
.whitePopUpContent h3,
.whitePopUpContent .pop-up__close {
    color: #2CCCD3;
}

.pop-up__content h2,
.pop-up__content h3 {
    font-size: 24px;
}

.whitePopUpContent .more__pop-up__content__subtitle,
.whitePopUpContent p {
    color: #97999B;
}

.whitePopUpContent .pop-up__text::-webkit-scrollbar-thumb,
.pop-up__content__facilities {
    background-color: #2CCCD3;
}
@media (max-width: 1024px) {
    .pop-up__content {
        width: calc(70% - 60px);
    }

    .pop-up__text {
        max-height: 76vh;
    }
}

@media (max-width: 992px) {
    .pop-up__content {
        width: calc(100% - 60px);
        border-radius: 25px;
        padding: 24px;
    }

    .pop-up__content::after {
        border-radius: 25px 0 100% 25px;
    }
}