.redchamps-popup-overlay {
    display: none;
    position: fixed;
    height: 100%!important;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: visible;
    opacity: 1;
    z-index: 999999;
    overflow: auto;
}

.redchamps-popup {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    position: relative;
    transition: all 5s ease-in-out;
    width: 40%;
}

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

.redchamps-popup .close:hover {
    color: #06D85F;
    cursor: pointer;
}

.redchamps-popup .title {
    font-size: 21px;
    margin-bottom: 20px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.redchamps-popup .content {
    max-height: 30%;
    overflow: auto;
}
@media screen and (max-width: 767px) {
    .redchamps-popup {
        width: 70%;
    }
}
