#roof {
    background: var(--dark-grey);
    color: var(--white);
    min-width: var(--min-width);
}

#roof .container {
    display: flex;
    gap: 30px;
    padding: 8px 25px;
    line-height: 28px;
}

#roof .languages img {
    width: 18px;
    height: 12px;
    margin-right: 8px;
}

#roof .widget-fontresizer {
    flex: 1;
    text-align: right;
    white-space: nowrap;
}

#roof .widget-fontresizer a {
    cursor: pointer;
}

#roof .widget-search {
    display: flex;
    align-items: center;
    border-radius: 50px;
    width: max-content;
    margin: 0;
    padding: 0;
}

#roof .widget-search input[type="search"] {
    width: 0;
    outline: none;
    transition: width 0.4s ease, padding 0.4s ease;

    border-radius: 3px;
    display: inline-block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: var(--font-size);
    height: 20px;
    line-height: 20px;
    box-sizing: content-box;
    padding: 4px 0px;
    border: 1px solid transparent;

    color: var(--dark-grey);
    margin-right: 7px;
    border: none;
}

#roof .widget-search .search-icon {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

/* Expand input to the left on container hover */
#roof .widget-search.active input[type="search"],
#roof .widget-search:hover input[type="search"],
#roof .widget-search:focus-within input[type="search"] {
    padding: 4px 6px;
    width: 156px;
    border-color: var(--light-grey);
}

#roof .widget-search input[type="search"]:focus {
    outline: none;
}

#roof .menu-toggler {
    display: none;
    color: var(--white);
    text-decoration: none;
}

#roof .menu-toggler.active {
    color: var(--purple);
}


#roof .menu-toggler::after {
  content: "\f0c9";
  font-family: "FontAwesome";
  font-size: 35px;
}

@media screen and (max-width: 980px) {
    #roof .menu-toggler {
        display: block;
    }

    #roof .container {
        padding: 8px 25px;
        line-height: 35px;
    }

    /* Specific adjustment for Phones only */
    @media screen and (max-width: 767px) {
        #roof .date-container {
            display: none;
        }
    }
}