#rc-listing .overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
}

#rc-listing .overlay.rc-show {
    visibility: visible;
    opacity: 1;
    z-index: 90001;
    overflow: auto;
}

#rc-listing .rc-popup {
    font-size: 16px;
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    max-width: 800px;
    position: relative;
    transition: all 2s ease-in-out;
}

#rc-listing .rc-popup h2 {
    margin-top: 0;
    color: #333;
    font-family: Tahoma, Arial, sans-serif;
}

#rc-listing .rc-popup .close {
    position: absolute;
    top: 0;
    right: 12px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    width: auto;
}

#rc-listing .rc-popup .close:hover {
    color: #06D85F;
}

#rc-listing .rc-popup .content {
    max-height: 30%;
    overflow: auto;
}

@media screen and (max-width: 700px) {
    #rc-listing .box {
        width: 70%;
    }

    #rc-listing .rc-popup {
        width: 80%;
        height: 80%;
    }

    #rc-listing .rc-popup .rc-popup-content {
        overflow: scroll;
        height: 100%;
    }
}
