.nt-search-document__form {
    display: flex;
    flex-direction: row;
    gap: 18px;
    justify-content: end;
    align-items: center;
    position: relative;
}
.nt-search-document__form-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 0 4px;
}
.nt-search-document__form-keyword {
    display: flex;
}
.nt-search-document__form-keyword input {
    height: 40px;
    font-family: inherit;
    font-size: 1rem;
    padding-inline: 8px;
    border-radius: 0;
    border: 1px solid #BDBDBD;
    border-right: none;
    outline: none;
    width: 280px;
    padding-right: 40px;
}
.nt-search-document__form-keyword input:focus {
    border-color: var(--e-global-color-secondary);
}
.nt-search-document__form-keyword .loader {
    display: flex;
    background-color: white;
    padding: 7px;
    position: absolute;
    top: 1px;
    right: 40px;
    bottom: 1px;
    opacity: 0;
    transition: .3s;
}
.nt-search-document__form.loading .nt-search-document__form-keyword .loader {
    opacity: 1;
}
.nt-search-document__form-keyword .loader img {
    width: 100%;
}
.nt-search-document__form-keyword button {
    width: 40px;
    height: 40px;
    padding: 8px;
}
.nt-search-document__form-keyword button svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.nt-search-document__response-container .nt-search-document__response-title {
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 12px;
}
.nt-search-document__response-container .nt-search-document__response-grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 24px;
    margin-bottom: 48px;
}


@media (max-width: 767px) {
    .nt-search-document__form-title {
        font-size: 1rem;
    }
    .nt-search-document__form-keyword input {
        width: 200px;
    }
}