

/* Start:/local/components/sections/check.objects.list/templates/.default/style.css?17647589298410*/
/* Check Objects Component Styles */

:root {
    --color-blue-light: #E8F6FF;
    --color-bright-blue: #3D61F3;
}

.check-objects__title {
    background: #FFFFFF !important;
}

.check-objects {
    padding: 0 0 80px;
}

.check-objects__container {
    padding: 0 16px;
}

@media screen and (min-width: 1280px) {
    .check-objects {
        padding: 0 0 120px;
    }
    
    .check-objects__container {
        padding: 0 24px;
    }
}

@media screen and (min-width: 1600px) {
    .check-objects__container {
        padding: 0 32px;
    }
}

@media screen and (min-width: 1920px) {
    .check-objects__container {
        max-width: 1920px;
        margin: 0 auto;
    }
}

.check-objects__search {
    margin-bottom: 32px;
}

@media screen and (min-width: 1024px) {
    .check-objects__search {
        margin-bottom: 64px;
    }
}

@media screen and (min-width: 1280px) {
    .check-objects__search {
        margin-bottom: 80px;
    }
}

.check-objects__search-form {
    width: 100%;
}

.check-objects__search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 6px;
    background: #F3F2F5;
    border-radius: 6px;
    transition: background 0.3s ease;
}

@media screen and (min-width: 768px) {
    .check-objects__search-input-wrapper {
        padding: 24px;
        gap: 12px;
    }
}

.check-objects__search-input-wrapper:hover,
.check-objects__search-input-wrapper:focus-within {
    background: rgba(70, 108, 242, 0.1);
}

.check-objects__search-input {
    flex: 1;
    padding: 0;
    padding-right: 0;
    border: none;
    background: transparent;
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.22px;
    text-transform: uppercase;
    color: #161333;
    min-width: 0;
}

@media screen and (min-width: 768px) {
    .check-objects__search-input {
        font-weight: 520;
        font-size: 15px;
        line-height: 22px;
        letter-spacing: 0.3px;
    }
}

.check-objects__search-input::placeholder {
    color: rgba(22, 19, 51, 0.4);
    opacity: 1;
}

.check-objects__search-input:focus::placeholder,
.check-objects__search-input:not(:placeholder-shown)::placeholder {
    opacity: 0;
}

.check-objects__search-input:focus {
    outline: none;
}

.check-objects__clear-button,
.check-objects__search-button {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

@media screen and (min-width: 768px) {
    .check-objects__clear-button,
    .check-objects__search-button {
        width: 20px;
        height: 20px;
    }
}

.check-objects__clear-button:hover,
.check-objects__search-button:hover {
    opacity: 0.7;
}

.check-objects__clear-button svg,
.check-objects__search-button svg {
    display: block;
    width: 16px;
    height: 16px;
}

@media screen and (min-width: 768px) {
    .check-objects__clear-button svg,
    .check-objects__search-button svg {
        width: 20px;
        height: 20px;
    }
}


/* Sections */
.check-objects__sections {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

@media screen and (min-width: 768px) {
    .check-objects__sections {
        gap: 100px;
    }
}

@media screen and (min-width: 1280px) {
    .check-objects__sections {
        gap: 120px;
    }
}

.check-objects__section {
    width: 100%;
    padding-top: 16px;
    border-top: 1.5px solid rgba(22, 19, 51, 0.16);
}

@media screen and (min-width: 768px) {
    .check-objects__section {
        padding-top: 24px;
    }
}

.check-objects__section-title {
    margin: 0 0 48px 0;
    font-family: "Trola", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.22px;
    color: #161333;
}

@media screen and (min-width: 768px) {
    .check-objects__section-title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -0.32px;
        margin-bottom: 64px;
    }
}

/* List */
.check-objects__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

@media screen and (min-width: 768px) {
    .check-objects__list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media screen and (min-width: 1024px) {
    .check-objects__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media screen and (min-width: 1280px) {
    .check-objects__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

.check-objects__card {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--color-blue-light, #E8F6FF);
    text-decoration: none;
}

@media screen and (min-width: 768px) {
    .check-objects__card {
        gap: 40px;
        padding: 32px;
    }
}

.check-objects__card-text {
    flex: 1 1 auto;
    height: 100%;
    letter-spacing: -0.3px;
    line-height: 24px;
    font-weight: 400;
    font-size: 15px;
    color: #161333;
    transition: color 200ms linear;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

@media screen and (min-width: 768px) {
    .check-objects__card-text {
        letter-spacing: -0.36px;
        line-height: 24px;
        font-size: 18px;
        gap: 12px;
    }

    .check-objects__card:hover .check-objects__card-text {
        color: var(--color-bright-blue, #3D61F3);
    }
}

.check-objects__card-text-description {
    font-weight: 500;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.22px;
    text-transform: uppercase;
    color: rgba(22, 19, 51, 0.4);
}

@media screen and (min-width: 768px) {
    .check-objects__card-text-description {
        font-weight: 520;
        font-size: 15px;
        line-height: 22px;
        letter-spacing: 0.3px;
    }
}

.check-objects__card-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@media screen and (min-width: 768px) {
    .check-objects__card-box {
        width: 20px;
        height: 20px;
    }
}

.check-objects__card-icon {
    flex: 0 0 auto;
    display: block;
    width: 10px;
    height: 8px;
    stroke: none;
    fill: #161333;
    margin-top: 6px;
    transition: fill 200ms linear;
}

@media screen and (min-width: 768px) {
    .check-objects__card-icon {
        width: 14px;
        height: 12px;
    }
}

@media screen and (min-width: 1280px) {
    .check-objects__card:hover .check-objects__card-icon {
        fill: var(--color-bright-blue, #3D61F3);
    }
}

/* Empty state */
.check-objects__empty {
    padding: 0;
    text-align: left;
    display: none; /* Скрыто по умолчанию, показывается через JS */
}

.check-objects__empty-text {
    font-family: "Trola", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.22px;
    color: #161333;
    margin: 0;
}

.check-objects__empty-query {
    font-weight: 400;
    color: #161333;
}

.check-objects__empty-text br {
    display: none;
}

@media screen and (min-width: 768px) {
    .check-objects__empty-text br {
        display: block;
    }
    
    .check-objects__empty {
        padding: 80px 40px;
        text-align: center;
    }
    
    .check-objects__empty-text {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -0.32px;
        margin: 0 auto;
    }
}

/* Плавные переходы для карточек */
.check-objects__card {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.check-objects__section {
    transition: opacity 0.2s ease;
}

/* Подсветка найденных фрагментов */
.search-result {
    background-color: #CCEFFF;
    padding: 0;
    font-weight: inherit;
}


/* End */
/* /local/components/sections/check.objects.list/templates/.default/style.css?17647589298410 */
