.gsc-search-box {
    border-collapse: inherit !important;
}

input[type=text],
input[type=button] {
    -webkit-appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0;
}

.header-nav {
    padding: 20px;
}

.header-nav .uww-header {
    display: flex;
    align-items: center;
}

.header-nav .uww-header .block {
    width: 65%;
    max-width: 230px;
}

.header-nav .uww-header .uww-logo {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

.burger-wrapper {
	z-index: 2;
	height: 40px;
	width: 50px;
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: none;
	background: transparent;
	padding: 10px
}

.burger-wrapper .burger-lines {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 20px;
	width: 30px;
}

.burger-wrapper .burger-lines .line {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 10px;
    background: #fff;
}

.burger-wrapper .burger-lines .line:nth-child(1) {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
}

.burger-wrapper .burger-lines .line:nth-child(2) {
    transition: transform 0.2s ease-in-out;
}

.burger-wrapper .burger-lines .line:nth-child(3) {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
}

#desktop-nav-new {
    color: #fff;
    display: none;
    padding-top: 30px;
}

#desktop-nav-new .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

#desktop-nav-new .menu a {
    color: #fff;
    padding: 20px 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    text-transform: uppercase;
}

#desktop-nav-new .menu .menu-item {
    margin-bottom: 30px;
}

#desktop-nav-new .menu .menu-item:last-of-type {
    margin-bottom: 0;
}

#desktop-nav-new .menu .menu-item .submenu-trigger {
    background-color: transparent;
    border: 0;
    color: #fff;
    transition: all 0.3s;
}

#desktop-nav-new .menu .menu-item .submenu-trigger.active {
    transform: rotate(180deg);
}

#desktop-nav-new .menu .menu-item,
#desktop-nav-new .menu .submenu-item {
    position: relative;
}

#desktop-nav-new .menu .menu-item button,
#desktop-nav-new .menu .submenu-item button {
    position: absolute;
    right: 0;
    top: 0;
}

#desktop-nav-new .submenu,
#desktop-nav-new .submenu-item-list {
    display: none;
}

#desktop-nav-new .submenu,
#desktop-nav-new .submenu-item-list {
    width: calc(100% + 40px);
    margin-left: -20px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

#desktop-nav-new .submenu li,
#desktop-nav-new .submenu-item-list li {
    list-style: none;
    margin-bottom: 10px;
}

#desktop-nav-new .submenu li:last-of-type,
#desktop-nav-new .submenu-item-list li:last-of-type {
    margin-bottom: 0;
}

.search-nav {
    margin-top: 20px;
}

.search-nav .form-group {
    background-color: rgba(79, 38, 131, 0.9333333333);
    position: relative;
    margin-bottom: 0;
}

.search-nav #glyphicon-container {
    display: none;
}

.right,
.nav-container {
    display: flex;
    flex-direction: column-reverse;
    flex: 1;
}

.eyebrow-nav-container {
    background-color: rgba(43, 23, 78, 0.9);
    position: relative;
}

.eyebrow-nav-container::before, .eyebrow-nav-container::after {
    content: "";
    position: absolute;
    width: 1000em;
    height: 100%;
    background-color: rgba(43, 23, 78, 0.9);
    left: -50%;
    top: 0;
    z-index: -1;
}

.eyebrow-nav-container::after {
    left: unset;
    right: -50%;
}

.eyebrow-nav {
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    list-style: none;
    background-color: rgba(43, 23, 78, 0.9);
}

.eyebrow-nav li {
    position: relative;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    padding-right: 30px;
    align-items: center;
    color: #fff;
    font-size: 1.4rem;
}

.eyebrow-nav li a {
    color: inherit;
    font-size: inherit;
}

.eyebrow-nav li .eyebrow-sub-trigger {
    display: block;
    background-color: transparent;
    border: 0;
    position: absolute;
    top: 7px;
    right: 20px;
    color: #fff;
    transition: all 0.3s;
}

.eyebrow-nav li .eyebrow-sub-trigger.active {
    transform: rotate(180deg);
}

.eyebrow-nav__sub {
    display: none;
    position: relative;
    padding-left: 10px;
    padding-top: 15px;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.eyebrow-nav__sub::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
    .nav-container .content-container {
        max-width: 71.25em;
        margin: 0 auto;
        width: 100%;
        padding-left: 7px;
        padding-right: 7px;
        display: flex;
    }

    .burger-wrapper {
        display: none;
    }

    .header-nav {
        display: flex;
        flex: 1;
        padding: 0 15px;
    }

    .header-nav .uww-header {
        display: flex;
        align-items: center;
    }

    .header-nav .uww-header .block {
        width: 100%;
        max-width: 180px;
    }

    #desktop-nav-new .menu a {
        font-size: 11px;
    }

    .right,
    .nav-container {
        flex-direction: column;
        margin-left: auto;
    }

    .eyebrow-nav li {
        position: unset;
        display: flex;
        align-items: center;
        margin-bottom: 0;
        width: unset;
        padding-right: unset;
        margin-left: 20px;
    }

    .eyebrow-nav li .eyebrow-sub-trigger {
        display: none;
    }

    .eyebrow-nav li.trigger-enter .eyebrow-nav__sub {
        display: block;
    }

    .eyebrow-nav li.trigger-enter-active .eyebrow-nav__sub {
        opacity: 1;
    }

    .eyebrow-nav li.hasDrop::after {
        --size: 3px;
        content: "";
        margin-left: 5px;
        width: 0;
        height: 0;
        border-left: var(--size) solid transparent;
        border-right: var(--size) solid transparent;
        border-top: var(--size) solid #fff;
    }

    .eyebrow-nav__sub {
        position: absolute;
        z-index: 1000;
        opacity: 0;
        position: absolute;
        overflow: hidden;
        padding: 20px;
        top: 35px;
        max-width: 200px;
        width: auto;
        margin-left: -20px;
        border-radius: 2px;
        transition: all 0.5s;
        will-change: opacity;
        display: none;
        background-color: rgba(33, 33, 33, 0.98);
    }

    .eyebrow-nav__sub--right {
        left: unset;
        right: 0;
    }

    .eyebrow-nav__sub li {
        position: relative;
        margin-left: 0;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .eyebrow-nav__sub li::after {
        display: none;
    }

    .eyebrow-nav__sub li a {
        display: block;
    }

    .eyebrow-nav__sub li:last-of-type {
        margin-bottom: 0;
    }

    span.menu-triangle {
        display: none;
        position: relative;
    }

    span.menu-triangle:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -10px;
        margin: auto;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 15px 10px 15px;
        border-color: transparent transparent rgba(35, 35, 35, 0.98) transparent;
    }

    #desktop-nav-new {
        width: 100%;
        display: flex !important;
        justify-content: flex-end;
        align-items: center;
        padding-top: 0;
    }

    #desktop-nav-new .menu {
        list-style-type: none;
        display: inline-flex;
        align-items: center;
        text-align: center;
        width: 80%;
        background-color: #4f2683;
        align-self: flex-end;
        justify-content: flex-end;
        margin-bottom: 0;
    }

    #desktop-nav-new .menu .submenu-trigger {
        display: none;
    }

    #desktop-nav-new .menu .menu-item {
        flex: 1;
        margin-bottom: 0;
        position: unset;
    }

    #desktop-nav-new .menu .menu-item > a {
        display: block;
        color: white;
        text-decoration: none;
        padding: 35px 0;
        width: 100%;
        transition: 0.15s;
        text-transform: uppercase;
        text-shadow: 0 1px #111;
        border-bottom: 0;
    }

    #desktop-nav-new .menu .menu-item > a:hover {
        background: #222;
    }

    #desktop-nav-new .submenu {
        padding-top: 60px;
        width: 100vw;
        position: absolute;
        top: 140px;
        left: -100%;
        right: -100%;
        margin: auto;
        text-align: left;
        display: none;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        background-color: rgba(33, 33, 33, 0.98);
        z-index: 100;
    }

    #desktop-nav-new .submenu .submenu-item {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        align-content: flex-start;
        align-self: flex-start;
        width: 25%;
    }

    #desktop-nav-new .submenu .submenu-item a {
        color: #fff;
        text-shadow: 0 1px #111;
        text-decoration: none;
        padding: 0 10px;
    }

    #desktop-nav-new .submenu .submenu-item > a {
        display: flex;
        align-self: flex-start;
        margin-bottom: 1rem;
        font-size: 18px;
        text-transform: uppercase;
    }

    #desktop-nav-new .submenu .submenu-item-list {
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
        align-items: flex-start;
        align-self: flex-start;
        padding-left: 0;
        background-color: transparent;
        margin-left: 0;
        margin-top: 0;
    }

    #desktop-nav-new .submenu .submenu-item-list .submenu-item-list-item {
        display: flex;
        width: 100%;
        padding: 1px 0;
    }

    #desktop-nav-new .submenu .submenu-item-list .submenu-item-list-item > a {
        color: #cfcfcf;
        font-size: 16px;
        text-transform: none;
    }

    #desktop-nav-new .submenu .submenu-item-list .submenu-item-list-item > a:hover {
        color: #fff;
        text-decoration: none;
    }

    #desktop-nav-new .submenu .submenu-item-list .submenu .content-container {
        display: flex;
        flex-wrap: wrap;
        padding: 30px 0;
    }

    .search-nav #glyphicon-container {
        display: flex;
        background-color: rgba(43, 23, 78, 0.9);
        text-decoration: none;
        transition: 0.15s;
        border-radius: 5%;
        width: 65px;
        height: 65px;
        align-items: center;
        justify-content: center;
    }

    .search-nav #glyphicon-container:hover {
        background-color: rgba(43, 23, 78, 0.6);
    }

    .search-nav #glyphicon-container .glyphicon-search {
        color: #fff;
        font-size: 2.15rem;
        line-height: 1;
        margin-top: -5px;
    }

    .search-nav {
        margin-top: 0;
        width: 65px;
        height: 65px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .search-nav .form-group {
        background-color: transparent;
    }

    .search-nav .form-group input {
        border-radius: 4px;
        transition: all 0.25s ease-in-out;
    }

    .search-nav .form-group input::placeholder {
        color: #4f2683;
    }

    .search-nav .form-group input:focus {
        outline:revert !important;
        
    }

    .search-nav .form-group button {
        border-radius: 0 4px 4px 0;
        height:auto !important;
    }

    .search-nav .form-group button:focus {
        outline: none;
        background-color: #7d58ad;
    }

    #search {
        display: none;
        position: absolute;
        left: -50%;
        right: 0;
        top: 140px;
        width: 200%;
        background-color: rgba(33, 33, 33, 0.98);
        z-index: 1;
    }

    #search .search-container {
        position: relative;
        display: block;
        margin: 4rem auto;
        width: 100%;
        max-width: 60rem;
    }

    .search-nav form #terms {
        display: block;
        width: 100%;
        border: none;
        padding: 10px;
        font-size: 1.85rem;
    }

    #search button:hover {
        background-color: rgba(79, 38, 131, 0.9333333333);
    }

    .search-nav form button:focus {
        outline: #4f2683 auto 1px !important;
    }

    button.uww-btn--open {
        display: none;
    }

    .UWWhomepage .content-header {
        padding-top: 0;
    }

    #desktop-nav-new {
        display: block;
    }

    #div-nav {
        display: block;
    }

    .header-nav--wide .uww-header {
        max-width: 100px;
    }

    .header-nav--wide #desktop-nav-new .menu {
        width: 90%;
    }

    .header-nav--wide #desktop-nav-new .menu a {
        font-size: 11px;
    }

    .header-nav--wide .search-nav,
    .header-nav--wide .search-nav #glyphicon-container {
        width: 40px;
        height: 40px;
    }

    .header-nav--wide .search-nav #glyphicon-container .glyphicon-search {
        font-size: 1.5rem;
    }
}

@media (min-width: 870px) {
    .header-nav .uww-header .block {
        max-width: 180px;
    }

    #desktop-nav-new .menu a {
        font-size: 12px;
    }
}

@media(max-width: 760px) {
    .svg-chevron-down {
        display: none;
    }
}

@media (min-width: 1120px) {
    #desktop-nav-new .menu a {
        font-size: 17px;
    }

    .header-nav--wide #desktop-nav-new .menu {
        width: 90%;
    }

    .header-nav--wide .uww-header {
        max-width: 150px;
    }

    .header-nav--wide #desktop-nav-new .menu a {
        font-size: 14px;
    }

    body {
        font-weight: 400;
        line-height: 25px;
        color: #222;
    }
}
/*# sourceMappingURL=styles.css.map */

/* Flip navigations based on screen size - eyebrow-nav above header-nav unless screen size is < 768px */
/* Javascript in header-nav.js handles flipping the elements, this handles displaying it on screen */
.nav-container {
    display: flex;
    flex-direction: column;
}

/* Google Site Search */
#search table {
    border: none !important;
    border-collapse: unset;
    margin: 0 !important;
    }    
        #search td .gsc-input {
            padding-right: 0;
        }
    
        table.gsc-search-box td.gsc-input {
            padding-right: 0 !important;
            border: 1px solid rgba(43, 23, 78, 0.9);
        }
    
        .gsc-search-button .gsc-search-button-v2 {
            margin: 0 !important;
            height: 57px !important;
            display: flex;
            align-items: center !important;
            justify-content: center !important;
            width: 55px !important;
            padding: 6px 10px !important;
        }
    
        #search .gsc-search-button-v2 {
            height: 56px !important;
            border-color: rgba(43, 23, 78, 0.9) !important;
        }
    
        #search svg {
            height: 20px !important;
            width: 20px !important;
        }

        .gsc-input-box {
            border: none !important;
            padding: 0 !important;
        }
    
        #search .gsc-input-box {
        border-top-left-radius: 4px !important;
        border-bottom-left-radius: 4px !important;
        }
    
        #search input {
            height: 45px !important;
            font-size: 22px !important;
            padding: 0px 0px 0px 10px !important;
            color: black !important;
            font-size: 18px !important;
        }
        
        .gsib_a {
        padding-right: 3px !important;
        }

        #___gcse_1 input.gsc-input[type="text"][name="search"] {
            height: 30px !important;
        }        
    
        #___gcse_0 {
        max-width: 500px;
        margin: 0 auto;
        }
    
        .search-nav form button {
            background-color: rgba(69, 42, 117, 0.9) !important;
            z-index: 1 !important;
        }
    
        .search-nav form button:hover {
            background-color: rgba(80, 45, 127, .8) !important;
        }

        .gsc-search-button .gsc-search-button-v2:hover {
            background-color: rgba(80, 45, 127, .9) !important;
        }

@media (max-width: 920px) {
    #search .gsc-search-button-v2 {
        position: inherit;
    }
}

@media (max-width: 767px) {
    .eyebrow-nav-container {
        order: 2;
    }

    .header-nav {
        order: 1;
    }

    .eyebrow-nav {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .eyebrow-nav li {
        margin-left: 0;
        display: block;
    }

    #search {
        display: block !important;
        }

        #search .gsc-search-button-v2 {
        background-color: rgba(43, 23, 78, 0.9) !important;
        }

        #search .gsc-search-button {
        background-color: rgba(43, 23, 78, 0.9) !important;
        }

        #search .gsc-search-button-v2:hover, #search .gsc-search-button:hover {
            background-color: #3f2b62 !important;
        }
        
    .search-container table.gsc-search-box td.gsc-input {
        border: none !important;
    }
}

@media (min-width: 768px) {
    .eyebrow-nav-container {
        order: 1;
    }

    .eyebrow-nav {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        margin-left: auto;
        padding: 10px 15px;
    }

    .eyebrow-nav li {
        display: flex;
        align-items: center;
        margin-left: 20px;
    }

    .header-nav {
        order: 2;
    }
    .search-nav form button {
        position: unset !important;
    }
}

.cookie-bar {
    display: flex;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    padding: 20px 20px;
    color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    /* You might be wondering why this value is set.  Olark's chat bot sets it's button at z-index 2147483646 */
    z-index: 2147483647;
    flex-direction: column;
    opacity: 80;
    transform: translateY(100%);
    transition: all 1s ease-in-out;
}

    .cookie-bar p {
        width: 100%;
        font-size: 14px;
        line-height: 22px;
        font-family: "Open Sans", sans-serif;
        flex-direction: row;
    }

        .cookie-bar p:last-of-type {
            margin-bottom: 0;
        }

    .cookie-bar.active {
        transform: translateY(0%);
        opacity: 1;
        margin-left: 0;
    }

    .cookie-bar.disable {
        display: none;
    }

    .cookie-bar .button-group {
        margin-top: 30px;
        margin-left: auto;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        align-items: center;
        min-width: 125px;
    }

        .cookie-bar .button-group button, .cookie-bar .button-group a {
            border: 0;
            color: #fff;
            text-decoration: none;
        }

            .cookie-bar .button-group button.cookie-bar--accept, .cookie-bar .button-group a.cookie-bar--accept {
                background-color: #4f2683;
                border: 2px solid white;
                font-size: 14px;
                padding: 5px 35px 5px 35px;
                white-space: nowrap;
            }

                .cookie-bar .button-group button.cookie-bar--accept:hover, .cookie-bar .button-group a.cookie-bar--accept:hover {
                    color: #4f2683;
                    background-color: #fff;
                    border: 3px solid #4f2683;
                    font-weight: 700;
                }

@media (min-width: 768px) {
    .cookie-bar {
        flex-direction: row;
        padding: 30px 50px;
    }

        .cookie-bar p {
            width: 100%;
            padding-right: 20px;
        }

        .cookie-bar .button-group {
            margin-top: 0;
        }
}

@media (max-width: 1119px) {
    #desktop-nav-new .submenu {
        top: 137px;
    }
}