/* КНОПКА */
.widget-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    background: #2b7cff;
    color: #fff;
    padding: 14px 18px;
    border-radius: 50px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
}

/* ОКНО */
.widget-modal {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,.3);
    z-index: 9999;
    display: none;
    font-family: Arial, sans-serif;
}

.widget-modal.active {
    display: block;
}

/* ЗАГОЛОВОК */
.widget-header {
    padding: 14px;
    font-weight: bold;
    border-bottom: 1px solid #eee;
}

/* ТЕЛО */
.widget-body {
    padding: 14px;
}

.widget-body input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* КНОПКА ОТПРАВКИ */
.widget-submit {
    width: 100%;
    padding: 10px;
    background: #2b7cff;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* ЗАКРЫТЬ */
.widget-close {
    position: absolute;
    right: 10px;
    top: 8px;
    cursor: pointer;
    font-size: 18px;
}
