
/* przycisk */
.ucb2c-btn {
    background: #111;
    color: #fff;
    padding: 12px 18px;
    border: none;
    cursor: pointer;
    margin-top: 10px;

}

/* overlay */
.ucb2c-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

/* modal */
.ucb2c-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    width: 400px;
    max-width: 90%;
    z-index: 9999;
}

.ucb2c-box h3 {
    margin-top: 0;
}

.ucb2c-box input,
.ucb2c-box textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
}

.ucb2c-box button[type="submit"] {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px;
    width: 100%;
}

.ucb2c-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}


.ucb2c-modal-phone {
    margin-top: 12px;
}