/* SEARCH */

.dropdown {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-top: auto;
    margin-bottom: 15px;
    position: relative;
}

.dropdown svg {
    display: flex;
    position: absolute;
    left: 15px;
    color: var(--fontcolor5);
    transition: var(--transition);
}

.dropdown-toggle {
    display: flex;
    height: 45px;
    background: var(--element);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    color: var(--fontcolor5);
    grid-gap: 5px;
    transition: var(--transition);
    cursor: pointer;
        font-family: var(--fontfamily3);
    font-weight: 700;
    font-size: 1rem;
    border: 0;
    padding: 0 15px 0 45px;

    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    appearance: none;
}

.dropdown-menu {
    display: none;
}

.dropdown-menu.show {
    display: flex;
    flex-direction: column;
    z-index: 106;
    background: var(--background2);
    padding: 15px;
    width: 100%;
    border-radius: 20px;
    inset: 8px 0 auto auto !important;
    width: fit-content;
}

.dropdown-menu li a {
    height: 45px;
    display: flex;
    align-items: center;
        font-family: var(--fontfamily3);
    font-weight: 700;
    color: var(--fontcolor5);
    transition: var(--transition);
    border-radius: 20px;
    padding: 0 15px;
}

.dropdown-menu li a:hover {
    background: var(--element);
    color: var(--fontcolor2);
}

.dropdown-toggle:hover {
    background: var(--element2);
    color: var(--fontcolor2);
}

.dropdown-toggle:hover svg {
    color: var(--fontcolor1);
}

.button.request {
    margin-left: -45px;
    margin-top: 10px;
    background: var(--element3);
}

.button.request:hover {
    background: var(--element4);
}

main.search .search-form {
    width: 50%;
    margin: 10px 0;
}

.info-block {
    padding: 20px;
    border-radius: 20px;
    background: var(--element);
    color: var(--fontcolor2);
    display: flex;
    align-items: center;
    grid-gap: 10px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.info-block svg {
    min-height: 35px;
    min-width: 35px;
    align-self: baseline;
}

.info-block div {
    display: flex;
    flex-direction: column;
    grid-gap: 4px;
}

.info-block-headline {
        font-family: var(--fontfamily3);
    font-weight: 700;
    font-size: 18px;
    color: var(--fontcolor2);
    font-weight: 500;
}

.info-block-text {
    color: var(--fontcolor5);
    line-height: 1.2;
    font-family: var(--fontfamily2);
}

.search-result {
    color: #e9b611;
        font-family: var(--fontfamily3);
    font-weight: 700;
}
