.cf-gate {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.cf-gate.active {
    display: flex;
}

.cf-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 340px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
    font-family: Arial;
}

.cf-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cf-text {
    font-size: 14px;
    opacity: .7;
    margin-bottom: 20px;
}

#cf-continue {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    border: none;
    background: #f38020;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    opacity: .5;
}

#cf-continue.active {
    opacity: 1;
}