.search-tools-alert {
    align-items: center;
    background-color: #ffe3cc;
    border-radius: 5px;
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    width: 100%;
}

.search-tools-alert__content {
    display: flex;
    flex-flow: column nowrap;
    gap: 7px;
}

.search-tools-alert__title {
    color: var(--color-neutral-700);
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: bold;
    line-height: 100%;
    margin: 0;
    text-align: left;
}

.search-tools-alert__description {
    color: var(--color-neutral-600);
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 100%;
    margin: 0;
    text-align: left;
}

.search-tools-alert__close {
    background-color: rgba(0,0,0,0.1);
    border-radius: 5px;
    border: none;
    cursor: pointer;
    display: flex;
    flex-flow: row nowrap;
    gap: 5px;
    padding: 10px;
    margin-left: auto;
    transition: all 0.4s ease;
}

.search-tools-alert__close:hover {
    background-color: rgba(0,0,0,0.2);
}
