.cie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    display: none;
}

.cie-modal .modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.cie-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
    width: 720px;
}

.cie-modal .modal-body {
    position: relative;
}

.cie-modal .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    display: block;
    z-index: 999;
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: #ffffff;
}

.cie-modal .controls {
    margin-top: 15px;
    text-align: center;
}

.cie-modal .controls button {
    margin: 0 5px;
    padding: 5px 10px;
    cursor: pointer;
}