.overlayPopUp {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 50%);
    z-index: 999;
}

.popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white-color);
    text-align: left;
    display: flex;
    flex-direction: row;
    width: 55%;
    height: 65%;
}

.popup * input {
    width: 80%;
}

.popupText {
    padding: 10% 6%;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popupText>.buttonBlue {
    width: 100%;
}

.popupImg {
    width: 60%;
    background-image: url("../Images/Meditation2.jpg");
    background-size: cover;
    background-position-x: right;
}

.closeBtn {
    top: 10%;
    right: 6%;
    position: absolute;
    height: 50px;
    width: 50px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.closeBtn i {
    font-size: 24px;
    color: var(--dark-grey-color);
}

@media (max-width: 900px) {

    .popup {
        flex-direction: column;
        width: 90vw;
    }

    .popupImg{
        width: auto;
        height: 50%;
    }

    .popupText {
        width: unset;
    }

    .closeBtn {
        top: 5%;
        right: 5%;
    }

    .closeBtn i {
        color: var(--white-color);
    }
}