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: 20px;
  width: 26px;
  margin-left: auto;
}
.burger-wrapper .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}
.burger-wrapper .checkbox:checked ~ .burger-lines .line:nth-child(1) {
  transform: rotate(45deg);
}
.burger-wrapper .checkbox:checked ~ .burger-lines .line:nth-child(2) {
  transform: scaleY(0);
}
.burger-wrapper .checkbox:checked ~ .burger-lines .line:nth-child(3) {
  transform: rotate(-45deg);
}
.burger-wrapper .burger-lines {
  display: block;
  height: 20px;
  width: 26px;
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.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(255, 255, 255, 0.15);
  position: relative;
  margin-bottom: 0;
}
.search-nav .form-group input {
  background-color: transparent;
  width: 100%;
  border: 0;
  color: #fff;
  padding: 20px 85px 20px 20px;
}
.search-nav .form-group input::placeholder {
  color: #fff;
}
.search-nav .form-group button {
  position: absolute;
  z-index: 3;
  width: 65px;
  height: 65px;
  top: 0;
  right: 0;
  color: #fff;
  border: 0;
  background-color: rgba(43, 23, 78, 0.9);
}
.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-top: 10px;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  display: block;
  list-style: none;
  background-color: rgba(255, 255, 255, 0.25);
  display: 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: 12px;
  }
  .right,
.nav-container {
    flex-direction: column;
    margin-left: auto;
  }
  .eyebrow-nav {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-bottom: unset;
    margin-top: unset;
    padding: 10px 15px;
    justify-content: flex-end;
  }
  .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: #613c8f;
  }
  #desktop-nav-new .submenu {
    padding-top: 60px;
    width: 100vw;
    position: absolute;
    top: 139px;
    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 {
    background-color: white;
    height: 65px;
    padding: 20px 105px 20px 20px;
    border-radius: 4px;
    box-shadow: 0 0 0 0 #fff;
    transition: all 0.25s ease-in-out;
    color: #000;
  }
  .search-nav .form-group input::placeholder {
    color: #4f2683;
  }
  .search-nav .form-group input:focus {
    outline: 0;
    box-shadow: 0 0 0 8px #000, 0 0 0 10px #fff;
  }
  .search-nav .form-group button {
    border-radius: 0 4px 4px 0;
  }
  .search-nav .form-group button:focus {
    outline: none;
    background-color: #7d58ad;
  }
  .search-nav form {
    display: none;
    position: absolute;
    left: -50%;
    right: 0;
    top: 141px;
    width: 200%;
    background-color: rgba(33, 33, 33, 0.98);
    z-index: 1;
  }
  .search-nav form .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-nav form button {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 7px 15px;
    border: none;
    background-color: #4f2683;
    -webkit-transition: 0.15s;
    transition: 0.15s;
  }
  .search-nav form button span {
    line-height: 1;
    color: #fff;
    font-size: 2.15rem;
    margin-top: 2px;
  }
  .search-nav form button:hover {
    background-color: rgba(79, 38, 131, 0.9333333333);
  }
  .search-nav form button:focus {
    outline: #4f2683 auto 1px;
  }
  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: 260px;
  }
  #desktop-nav-new .menu a {
    font-size: 13px;
  }
}
@media (min-width: 1030px) {
  #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-family: "Open Sans",sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    color: #222;
  }
}/*# sourceMappingURL=styles.css.map */