
.pop-up {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 180;
}
.pop-up .m-container {
    top: 60px;
    position: relative;
    width: 100%;
    background-color: #ffffff;
    overflow-y: scroll;
    max-height: 90vh;
    border-radius: 8px;
}

@media (min-width: 1025px) {
    .pop-up .m-container {
        width: unset;
        min-width: 420px;
        max-width: 800px;
        overflow: unset;
        color: #111;
    }
}


.close-me {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: bold;
    color: #111;
    padding: 0 0.6rem;
}


.animation-slide-down {
    animation: slide-down 1s;
}

@keyframes slide-down {
    0% {
        top: -200px;
    }
    100% {
        top: 60px;
    }
}

.animation-fade-in-bg {
    animation: fade-in-bg 1.2s;
}
@keyframes fade-in-bg {
    0% {
        background-color: rgba(0,0,0,0);
    }
    100% {
        background-color: rgba(0,0,0,0.6);
    }
}