.ci-pop-layer {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,.2);
}

.ci-pop-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFF;
    width: 400px;
    height: 200px;
    max-width: 100vw;
    border-radius: 2px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}

.ci-pop-message {
    text-align: center;
    font-size: 20px;
    padding: 10px;
}

.ci-pop-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.ci-pop-close-button {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: rgba(255, 0, 0, .6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ci-pop-button {
    background: #537CD9;
    color: #FFF;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px 25px;
    border-radius: 2px;
}