/* feature popup */

.modal, .modal-basic, .modal-pro, .modal-proplus {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    border-radius: 0.3rem;
    background-color: #f4f5f6;
    border-radius: 5px;
    box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
    z-index: 10;
    color: #000;
}
.modal-header {
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2rem;
    border-radius: 5px 5px 0 0;
    background-color: #fff;
    font-size: 16px;
    font-weight: 700;
    color: #49545a;
    text-transform: uppercase;
}
p.modal-body {
    background-color: #f4f5f6;
    background-clip: padding-box;
    border-top: 1px solid rgba(55, 63, 67, .2);
    border-bottom: 1px solid rgba(55, 63, 67, .2);
    padding: 2rem;
    color: #000000;
}

.close-modal {
    position: relative;
    right: 2rem;
    font-size: 1.5rem;
    color: #5c6870;
    cursor: pointer;
    background: #fff;
    float: right;
    border-color: #c7cdd1;
    font-weight: 300;
    padding: 8px 15px 8px 15px;
    border-radius: 5px;
    border: 1px solid #c7cdd1;
    margin: 10px 0 20px 0;
}
.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}
.overlay, .overlay-basic, .overlay-pro, .overlay-proplus {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}
.show-modal, .show-modal-basic, .show-modal-pro, .show-modal-proplus {
    cursor: pointer;
}

/* end feature popup */
