.dt-header .dt-search-clear {
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #edf4fa;
    color: #53708a;
    cursor: pointer;
}

    .dt-header .dt-search-clear[hidden], .dt-header #search-result[hidden], .dt-header #search-result [hidden] {
        display: none !important;
    }

.dt-header__container.search-result-content {
    position: relative;
}

.dt-header #search-result.dt-search-results {
    display: block;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    transform: none;
    width: min(900px,calc(100% - 48px));
    max-height: min(72vh,660px);
    margin: 0;
    padding: 0;
    overflow: auto;
    overscroll-behavior: contain;
    border: 1px solid #dceaf5;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 20px 55px #133c6530;
    color: #173c60;
    font: 16px/1.6 'Montserrat-Regular',Arial,sans-serif;
    z-index: 50;
    animation: dt-search-enter .16s ease-out;
    scrollbar-width: thin;
    scrollbar-color: #b8d1e7 transparent;
}

.dt-search-top {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 2;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px 10px;
    background: linear-gradient(120deg,#f0f8ff,#fffdf3);
}

    .dt-search-top strong {
        display: block;
        font: 22px/1.5 'Montserrat-Bold',Arial,sans-serif;
        color: #0755a5;
    }

.dt-search-eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #28815f;
    margin-bottom: 3px;
}

.dt-search-close {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 1px solid #dceaf5;
    border-radius: 13px;
    background: #fff;
    color: #38607f;
    cursor: pointer;
}

.dt-search-status {
    margin: 0;
    padding: 12px 24px;
    color: #647a8e;
    font-size: 16px;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.dt-search-groups {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 20px;
    padding: 0 24px 20px;
}

.dt-search-group {
    min-width: 0;
}

    .dt-search-group:last-child {
        grid-column: 1 / -1;
    }

    .dt-search-group h3 {
        display: flex;
        gap: 8px;
        align-items: center;
        margin: 0 0 7px;
        padding: 0 0 8px;
        border-bottom: 1px solid #e8f0f6;
        color: #1c526d;
        font: 16px/1.5 'Montserrat-SemiBold',Arial,sans-serif;
    }

        .dt-search-group h3 i {
            color: #25855e;
        }

        .dt-search-group h3 > span {
            display: inline-grid;
            place-items: center;
            min-width: 23px;
            height: 23px;
            margin-left: auto;
            border-radius: 8px;
            background: #edf5fc;
            color: #0755a5;
            font-size: 14px;
        }

.dt-header #search-result a.dt-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    margin: 0;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: #274760;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    transition: background .15s,border-color .15s;
}

    .dt-header #search-result a.dt-search-item:hover, .dt-header #search-result a.dt-search-item:focus-visible {
        background: #f0f7ff;
        border-color: #dcebf8;
        color: #0755a5;
    }

.dt-search-item > span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.dt-search-item img {
    display: block;
    flex: 0 0 72px;
    width: 72px;
    height: 52px;
    object-fit: cover;
    border-radius: 9px;
    background: #edf5fc;
}

.dt-search-item mark {
    padding: 1px 0;
    background: #fff0ab;
    color: inherit;
    border-radius: 3px;
}

.dt-search-bottom {
    display: flex;
    position: sticky;
    bottom: 0;
    z-index: 2;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-top: 1px solid #e8f0f6;
    background: #f8fbfe;
}

    .dt-search-bottom > span {
        font-size: 15px;
        color: #718699;
    }

.dt-header #search-result .dt-search-all, .dt-search-retry {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 40px;
    padding: 8px 14px;
    border: 0;
    border-radius: 12px;
    background: #0755a5;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
}

.dt-search-loading {
    padding: 0 24px 20px;
}

    .dt-search-loading span {
        display: block;
        height: 42px;
        margin: 8px 0;
        border-radius: 12px;
        background: linear-gradient(90deg,#eef4f9,#fafcfe,#eef4f9);
        background-size: 200% 100%;
        animation: dt-search-shimmer 1.3s linear infinite;
    }

        .dt-search-loading span:nth-child(2) {
            width: 85%;
        }

        .dt-search-loading span:nth-child(3) {
            width: 65%;
        }

@keyframes dt-search-enter {
    from {
        opacity: 0;
        translate: 0 -5px;
    }

    to {
        opacity: 1;
        translate: 0 0;
    }
}

@keyframes dt-search-shimmer {
    to {
        background-position: -200% 0;
    }
}

@media(min-width: 1200px) {
    .dt-header__search:focus-within {
    }
}

@media(max-width: 599px) {
    .dt-header #search-result.dt-search-results {
        right: 12px;
        width: calc(100% - 24px);
        border-radius: 17px;
        max-height: calc(100dvh - 175px);
    }

    .dt-search-top {
        padding: 16px 16px 8px;
    }

        .dt-search-top strong {
            font-size: 17px;
        }

    .dt-search-status {
        padding: 10px 16px;
    }

    .dt-search-groups {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0 12px 16px;
    }

    .dt-search-bottom {
        padding: 12px 16px;
    }

        .dt-search-bottom > span {
            display: none;
        }

    .dt-search-bottom {
        justify-content: flex-end;
    }

    .dt-search-item img {
        flex-basis: 60px;
        width: 60px;
        height: 48px;
    }
}

@media(prefers-reduced-motion:reduce) {
    .dt-header #search-result, .dt-search-loading span {
        animation: none !important;
    }

        .dt-header #search-result a {
            transition: none !important;
        }
}