.Header__NavContainer {
  margin: 12px 0 0;
}

.Header__DesktopWrapper {
  align-items: center;
  display: none;
  height: 50px;
  justify-content: space-between;
}

.Header__LeftWrapper {
  align-items: center;
  display: flex;
  height: 100%;
}

.Header__Logo {
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 16px;
  width: 134px;
}

.Header__Link {
  align-items: center;
  color: #000000;
  display: flex;
  font-size: 20px;
  font-weight: 700;
  margin: 15px 0px 15px 50px;
  text-decoration: none;
  text-transform: uppercase;
}

.Header__MobileWrapper {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 360px;
  position: relative;
}

.Header__MobileWrapper a {
  display: flex;
}

.Header__RightWrapper {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.Header__Icon {
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 25px;
  width: 25px;  
          transition: opacity 0.2s linear;
       -o-transition: opacity 0.2s linear;
     -moz-transition: opacity 0.2s linear;
  -webkit-transition: opacity 0.2s linear;
}

.Header__Faded {
  opacity: 0.2;
}

.Header__MenuBarWrapper {
  background-color: #ffffff;
  border: 2px solid #000000;
  display: block;
  height: auto;
  position: absolute;
  right: 0;
  transition: all 0.1s linear;
  top: calc(100% + 12px);
  width: 100%;
  z-index: 100;
}

.Header__MenuBarWrapper.Header__Hidden {
  display: none;
  opacity: 0;
  visibility: none;
}

.Header__Announcement__Wrapper {
  align-items: center;
  border: 2px solid #000000;
  border-left-width: 0;
  border-right-width: 0;
  display: flex;
  font-weight: 700;
  justify-content: center;
  margin: 10px 0 0;
}

.Header__Incident__Wrapper {
  align-items: center;
  background-color: #757575;
  border: 2px solid #000000;
  border-left-width: 0;
  border-right-width: 0;
  color: #ffffff;
  display: flex;
  font-weight: 700;
  justify-content: center;
  margin: 10px 0 0;
}

.Header__Announcement, .Header__Incident {
  margin: 10px 10px;
  text-align: center;
}

.Header__Announcement a {
  color: #ff5500;
  text-decoration: none;
}

.Header__Incident a, .Header__Incident a:visited {
  border-bottom: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
}

.Header__Announcement a:hover {
  color: #000000;
}

.Header__Incident a:hover {
  border-bottom: none;
}

@media (min-width: 960px) {
  .Header__DesktopWrapper {
    display: flex;
    height: 100%;
    margin: 0 auto;
    max-width: 875px;
  }
  
  .Header__Icon {
    display: none;
  }
  
  .Header__Logo {
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    height: 21px;
    width: 48px;
  }
  
  .Header__Link {
    color: #757575;
    font-size: 14px;
    font-weight: 700;
    height: 100%;
    margin: 0 0 0 30px;
    text-transform: none;
  }
  
  .Header__Link:hover, .Header__Link:focus {
    border-bottom: 2px solid black;
    color: #000000;
    height: calc(100% - 2px);
  }
  
  .Header__MobileWrapper {
    display: none;
  }
  
  .Header__NavContainer {
    border-bottom: 1px solid rgba(117, 117, 117, 0.25);
    height: 66px;
    margin: 0 0 12px;
  }
  
  .Header__Announcement__Wrapper, .Header__Incident__Wrapper {
    align-items: center;
    border: 2px solid #000000;
    border-left-width: 0;
    border-right-width: 0;
    display: flex;
    font-weight: 700;
    height: 40px;
    justify-content: center;
    margin: 0;
  }
}

@media (min-width: 1080px) {
  .Header__DesktopWrapper {
    max-width: 1240px;
  }
}
