#search-toggle {
    width: 32px;
    height: 100%;
    border: 0;
    padding: 0;
    background-color: transparent;
    color: #fff;
    margin-right: auto;
}

#user-dropdown-toggle {
    color: #fff;
}

#menu-toggle {
    width: 32px;
    height: 100%;
    border: 0;
    padding: 0 6px;
    background-color: transparent;
    position: relative;
}

#menu-toggle span,
#menu-toggle span:before,
#menu-toggle span:after {
    position: absolute;
    display: block;
    content: '';
    width: 20px;
    height: 2px;
    background: #fff;
    top: 48%;
    border-radius: 1px;
}

#menu-toggle span:before {
    top: -6px;

}

#menu-toggle span:after {
    top: 6px;

}

#menu-toggle,
#search-toggle,
#user-dropdown-toggle {
    transition: .1s ease-in-out !important;
    outline: none;
}

#menu-toggle:hover,
#search-toggle:hover,
#user-dropdown-toggle:hover {
    opacity: .85;
}

/* ---------------------------------------- */

.search-form {
    position: relative;
    width: 100%;
}

.search-form .form-control,
.search-form .form-control:focus,
.search-form .btn,
.search-form .btn:focus {
    border: none;
    box-shadow: none;
    line-height: 1;
}

.search-form .form-control {
    border-radius: 30px;
    padding: 8px 16px 8px 38px;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}

.search-form .btn {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    height: 100%;
    padding: 0 14px;
    border-radius: 30px 0 0 30px;
}

.search-form .btn svg {
    width: .95em;
    height: .95em;
}

/* fejléc csíkban lévő keresőmező (mobilon nem látszik) */
.header .search-form {
    max-width: 270px;
    margin-left: 1rem;
    display: none;
}

@media (min-width: 992px) {
    .header .search-form {
        display: inline-block;
    }

    .header .search-form .form-control {
        font-size: 15px;
    }
}

/* világos alap */
.search-form.light .form-control {
    background-color: #fff;
    box-shadow: 0 0 0 1px var(--bs-gray-400);

}

.search-form.light .btn {
    color: var(--bs-dark);
}

.search-form.light .form-control::placeholder { /* Chrome, Firefox, Opera, Safari 1.1+ */
    color: var(--bs-gray-600);
    opacity: 1; /* Firefox */
}

.search-form.light .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--bs-gray-600);
}

.search-form.light .form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--bs-gray-600);
}

/* sötét alap */
.search-form.dark .form-control {
    background-color: rgba(0, 0, 0, .25);
    color: #fff;
}

.search-form.dark .btn {
    color: rgba(255, 255, 255, .65);
}

.search-form.dark .form-control:focus + .btn,
.search-form.dark .btn:hover {
    color: #fff;
}

.search-form.dark .form-control::placeholder { /* Chrome, Firefox, Opera, Safari 1.1+ */
    color: rgba(253, 254, 255, .65);
    opacity: 1; /* Firefox */
}

.search-form.dark .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgba(253, 254, 255, .65);
}

.search-form.dark .form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: rgba(253, 254, 255, .65);
}

/* ---------------------------------------- */

#menu-modal .grid-buttons a {
    display: flex;
    align-items: center;
    white-space: nowrap;

    font-weight: 600;
    font-size: calc(1rem + .2vw);
    padding: .5rem 0;
    border-bottom: 2px solid var(--bs-gray-100);
}
