/* Загальні відступи між блоками */
.telegram-contact-form .control-group {
    margin-bottom: 10px;
}

/* Контейнер елементів */
.telegram-contact-form .controls {
    margin: 0;
}

/* Стилі для input та textarea */
.telegram-contact-form input[type="text"],
.telegram-contact-form input[type="email"],
.telegram-contact-form textarea {
    width: 100%;
    color: #555;
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: 6px 8px;
    font-size: 14px;
    font-weight: 400;
    transition: border 0.2s, box-shadow 0.2s;
}

.telegram-contact-form input[type="text"]:hover,
.telegram-contact-form input[type="email"]:hover,
.telegram-contact-form textarea:hover,
.telegram-contact-form input[type="text"]:focus,
.telegram-contact-form input[type="email"]:focus,
.telegram-contact-form textarea:focus {
    background-color: #ffffe0;
}

/* Висота текстового поля */
.telegram-contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Кнопки */
.telegram-contact-form .btn {
    display: inline-block;
    padding: 6px 12px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: #333;
    background-color: #f5f5f5;
    background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
    border: 1px solid #bbb;
    border-radius: 4px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 2px rgba(0,0,0,0.05);
    text-shadow: 0 1px 1px rgba(255,255,255,0.75);
    cursor: pointer;
    margin-right: 10px;
}

/* Обмеження ширини, якщо треба для бокової панелі */
.left_sidebar .telegram-contact-form {
    max-width: 270px;
}

@media (max-width: 768px) {
    .popup-content{
        width: 80%;
    }
}
@media (max-width: 575px) {
    .popup-content{
        width: 90%;
    }
}
