.site-header {
    height: 80px;
    padding: 0 1rem;
    background: #eeeeee;
    border-bottom: solid 2px #8325e5;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#block-groot-branding {
    display: flex;
    align-items: center;
}

#block-groot-branding a {
    font-size: 2rem;
    color: #8325e5;
    margin-right: 1rem;
    display: inline-block;
}

/*MENU TOGGLE*/
.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
    margin: 0;
    padding: 15px;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity,filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
}
.hamburger-box {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 24px;
}
.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
    position: absolute;
    width: 36px;
    height: 4px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    border-radius: 4px;
    background-color: #000;
}

.hamburger-inner::after, .hamburger-inner::before {
    display: block;
    content: "";
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger--arrow.is-active .hamburger-inner::before {
    transform: translate3d(-8px,0,0) rotate(-45deg) scaleX(.7);
}

.hamburger--arrow.is-active .hamburger-inner::after {
    transform: translate3d(-8px,0,0) rotate(45deg) scaleX(.7);
}

/*EXPOSED FORM*/
.site-header .views-exposed-form {
    margin: 1rem;
}
.site-header .views-exposed-form label {
    display: none;
}

/*SEARCH*/

.block-great-search-block #my-autocomplete-form .form-item {
    margin: 0 1rem;
}

.block-great-search-block #my-autocomplete-form input.form-text{
    border-radius: 30px;
    padding: .6rem 1rem;
}

.block-great-search-block .content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.block-great-search-block .icon-search{
    font-size: 1.5rem;
}