

/* Start:/local/templates/auqa/components/bitrix/news.list/template_index_blog_all/style.css?1779693525150*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}

/* End */


/* Start:/local/components/auqa/feedback/templates/.default/style.css?17796935255103*/
.feedback-form-btn {
    padding: 12px 24px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.feedback-form-btn:hover {
    background-color: #0052a3;
}

/* Модальное окно */
.feedback-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: auto;
}

.feedback-modal-content {
    background: radial-gradient(circle at 0 0, rgba(255,255,255,0.15), transparent 55%),
    linear-gradient(90deg, #0a74c4, #0c8ad3);
    background: #006293;
    margin: 8vh auto;
    padding: 32px 64px 28px;
    border-radius: 18px;
    width: 96%;
    max-width: 1540px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.feedback-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 32px;
    height: 32px;
    background: url("/local/templates/auqa/images/pages/artdom/close.svg") no-repeat;
    background-size: 100%;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    line-height: 1;
}

.feedback-modal-close:hover {
   opacity: 0.8;
}

/* Форма */
.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feedback-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px;
    max-width: 1240px;
    padding-top: 35px;
}
.feedback-bottom {
    max-width: 1240px;
}
.feedback-field input,
.feedback-field textarea {
    width: 100%;
    padding: 0 28px;
    border: none;
    border-radius: 999px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
    color: #333;
    box-sizing: border-box;
    height: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.feedback-field textarea {
    padding: 20px 28px;
}
.feedback-field input::placeholder,
.feedback-field textarea::placeholder {
    color: #999;
}

.feedback-field textarea {
    resize: none;
    line-height: 1.3;
}

.feedback-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.feedback-checkboxes {
    display: flex;
    align-items: center;
    gap: 32px;
}

.feedback-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
}

.feedback-checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    background: transparent;
}

.feedback-checkbox-label input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #ffffff;
}

.feedback-checkbox-label span {
    user-select: none;
}

.feedback-submit-btn {
    padding: 8px 57px;

    background-color:#004E78;
    color: white;
    border: 1px solid #ffffff;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
}

.feedback-submit-btn:hover {
    background-color: #006293;
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.feedback-submit-btn:active {
    transform: translateX(2px);
}

.feedback-success {
    padding: 16px;
    background-color: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    border-radius: 8px;
    color: white;
    text-align: center;
    max-width: 1240px;
    margin-bottom: -20px;
}

.feedback-error {
    padding: 16px;
    background-color: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
    border-radius: 8px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}
.feedback-bottom {

    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .feedback-modal-content {
        margin: 10% auto;
        padding: 28px 20px 24px;
        width: 95%;
    }

    .feedback-modal-close {
        right: 15px;
        top: 15px;
        width: 28px;
        height: 28px;
        font-size: 20px;
    }

    .feedback-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .feedback-form-grid {
        grid-template-columns: 1fr;
        row-gap: 18px;
    }

    .feedback-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .feedback-checkboxes {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
@media (max-width: 405px) {
    .feedback-checkbox-label {
        white-space: normal;
        align-items: flex-start;
    }
}

/* End */
/* /local/templates/auqa/components/bitrix/news.list/template_index_blog_all/style.css?1779693525150 */
/* /local/components/auqa/feedback/templates/.default/style.css?17796935255103 */
