.global-header-row-searchbar {
    display: none;
    padding-top: 20px;
    padding-bottom: 20px;
    background: #052147;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.global-header-row-searchbar.active {
    display: block;
}

.global-header-container-searchbar {
}

.global-header-container-searchbar-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: relative;
}

.global-header-container-searchbar-wrapper:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\F002';
    display: block;
    position: absolute;
    left: 9px;
    top: 7px;
    z-index: 1;
    font-size: 1.3em;
    color: #052147;
}

.global-header-container-searchbar input {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    border: 1px solid #EFB51C;
    -webkit-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
    padding: 7px 0 7px 41px;
    font-size: 1em;
}

.global-header-container-searchbar button.button {
    font-family: VisueltBold, Arial, Helvetica, sans-serif;
    -webkit-border-radius: 0 100px 100px 0;
    border-radius: 0 100px 100px 0;
    background: #EFB51C;
    border: none;
    padding: 0 35px 0 30px;
    font-size: 0.9em;
    text-transform: uppercase;
    height: auto;
    line-height: 1.43;
    letter-spacing: 2.1px;
    outline: none;
    overflow: hidden;
    color: #1a1a1a;
}

.global-header-container-searchbar button.button:after {
    font-family: "Font Awesome 5 Free";
    content: "\F061";
    font-weight: 900;
    display: inline-block;
    margin-left: 5px;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    position: relative;
    left: 1px;
}
.global-header-container-searchbar button.button:hover:after {
    left: 7px;
}

