/*----------------------------------------------------- Psuedo --------------------------------------------*/
* {
  font-family: Open Sans;
  box-sizing: border-box;
  font-weight: 300;
  font-size: 16px;
  outline: none;
}
html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  height: 100%;
  background-color: #e5e5e5;
}
a {
  text-decoration: none;
  cursor: pointer;
  color: #5796a5;
}
a:hover {
  text-decoration: none;
  color: #d38726;
}
h1, h1 span {
  font-family: 'Roboto', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}
h2, h2 span {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
h3, h3 span {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
h4, h4 span {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}
h5, h5 span {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}
strong {
  font-weight: 400;
}
/*----------------------------------------------------- General Containers --------------------------------------------*/
.MainContainer {
  width: 100%;
  margin: auto;
  position: relative;
  background-color: #e5e5e5;
  min-height: 100%;
}
.ContentContainer {
  max-width: 100%;
  margin: auto;
  background-color: #ffffff;
  position: relative;
}
.PageContentContainer {
  flex: 1;
  min-width: 250px;
}
.PanelContainer {
  position: relative;
}
.SectionContainer {
  position: relative;
}
.SectionContainer_VerticalPadding_Condensed {
  padding-top: 15px;
  padding-bottom: 15px;
}
.SectionContainer_VerticalPadding {
  padding-top: 30px;
  padding-bottom: 30px;
}
.SectionContainer_VerticalPadding_Expanded {
  padding-top: 60px;
  padding-bottom: 60px;
}
.SectionContainer_VerticalTopPadding {
  padding-top: 30px;
}
.SectionContainer_VerticalTopPadding_Condensed {
  padding-top: 15px;
}
.SectionContainer_VerticalTopPadding_Expanded {
  padding-top: 60px;
}
.SectionContainer_VerticalBottomPadding {
  padding-bottom: 30px;
}
.SectionContainer_VerticalBottomPadding_Condensed {
  padding-bottom: 15px;
}
.SectionContainer_VerticalBottomPadding_Expanded {
  padding-bottom: 60px;
}
.SectionContainer_VerticalPadding_Grid {
  padding-top: 30px;
  padding-bottom: 30px;
}
.SectionContainer_HorizontalPadding {
  padding-left: 50px;
  padding-right: 50px;
}
.FixedWidthSection {
  max-width: 1280px;
  margin: auto;
}
.PageMask {
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}
.PageMask.Active {
  display: inline;
}
/*----------------------------------------------------- General --------------------------------------------*/
.MainColor {
  color: #22252e;
}
.AccentColor {
  color: #d38726;
}
.Clear {
  clear: both;
}
.ClearLeft {
  clear: left;
}
.FloatRight {
  float: right;
}
.Divider {
  border-top: 1px solid #e2e2e2;
}
.DividerArrow {
  position: relative;
}
.DividerArrow::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #e2e2e2;
  top: -7px;
  left: 30px;
  transform: rotate(-45deg);
  background-color: #ffffff;
}
.HoverEffect:hover {
  cursor: pointer;
}
.Link {
  text-decoration: none;
  color: #5796a5;
  cursor: pointer;
}
.Link:hover {
  text-decoration: none;
  color: #22252e;
}
.ParagraphHeader {
  margin-bottom: 15px;
}
.Flex {
  display: flex;
  flex-wrap: wrap;
}
.Hidden {
  display: none !important
}
.DisableInput input[type=text], .DisableInput select, .DisableInput textarea {
  pointer-events: none;
  background-color: #f5f5f5;
}
/*----------------------------------------------------- Page Loader --------------------------------------------*/
.PageLoadContainer {
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 5000;
}
.PageLoadContainer::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -40px;
  background-image: url(../images/global/loader.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin .7s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*----------------------------------------------------- Notification Banner --------------------------------------------*/
.NotificationBannerContainer {
  padding: 10px 50px;
  color: #ffffff;
}
.NotificationBannerContainer.Good {
  background-color: #9cad3c;
}
.NotificationBannerContainer.Caution {
  background-color: #ffc107;
}
.NotificationBannerContainer.Warning {
  background-color: #da4b4b;
}
.NotificationBannerContainer.Misc {
  background-color: #22252e;
}
/*----------------------------------------------------- Header --------------------------------------------*/
.HeaderContainer {
  position: fixed;
  top: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  z-index: 200;
  height: 120px;
  transition: height 0.3s;
  left: 0;
  right: 0;
}
.StickyHeader {
  height: 76px;
  transition: height 0.3s;
  background: rgb(37, 58, 75);
  background: linear-gradient(90deg, rgba(37, 58, 75, 1) 30%, rgba(80, 125, 160, 1) 70%);
}
.LogoContainer {
  position: absolute;
  left: 0px;
  top: 0px;
  margin-left: 0px;
  padding-left: 50px;
  z-index: 300;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: left;
  margin: auto;
  transition: height 0.3s;
}
.LogoContainer a {
  display: block;
  z-index: 200;
}
.LogoContainer img {
  display: block;
  width: 160px;
  transition: width 0.3s;
}
.StickyLogo {
  height: 75px;
  transition: height 0.3s;
}
.StickyLogo img {
  width: 160px;
  transition: width 0.3s;
}
/*----------------------------------------------------- Sub Header --------------------------------------------*/
.SubHeaderContainer {
  display: flex;
  flex-wrap: wrap;
}
.SubHeaderContainer h1, .SubHeaderContainer h2 {
  margin-right: 30px;
  align-self: center;
}
.SubHeaderContainer .Button {
  align-self: center;
}
.SubHeaderIcon img {
  height: 42px;
}
/*----------------------------------------------------- Main Menu --------------------------------------------*/
.MainMenuContainer {
  position: absolute;
  z-index: 300;
  right: 0;
  top: 0;
}
.MainMenu {
  margin: 0px;
  padding: 0px;
}
.MainMenu > li {
  list-style: none;
  float: right;
  margin: 0px;
  padding: 0px;
}
.MainMenu > li.Active {
  position: relative;
}
.MainMenu > li.Active::before {
  content: '';
  position: absolute;
  width: calc(100% - 50px);
  height: 5px;
  top: 0px;
  left: 25px;
  background-color: #d38726;
}
.MainMenu > li > a {
  display: block;
  padding: 0px 30px;
  height: 100px;
  line-height: 100px;
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  transition: line-height 0.3s;
}
.MainMenu > li:hover > a {
  color: #d38726;
  cursor: pointer;
}
.StickyMenu > li > a {
  height: 76px;
  line-height: 76px;
  transition: height 0.3s;
  transition: line-height 0.3s;
}
/*----------------------------------------------------- Main Menu - Dropdown Menu --------------------------------------------*/
.HasDropdown {
  position: relative;
  min-width: 165px;
}
.HasDropdown:hover {
  background-color: #ffffff;
}
.HasDropdown > a {
  padding-right: 50px !important;
}
.HasDropdown > a > span::after {
  border-style: solid;
  border-color: #000000;
  border-width: 1px 1px 0 0;
  content: '';
  display: inline-block;
  height: 5px;
  position: relative;
  width: 5px;
  top: -4px;
  left: 15px;
  transform: rotate(135deg);
}
.HasDropdown:hover > a > span::after {
  border-color: #e70000;
}
.DropdownMenuContainer {
  display: none;
  position: absolute;
  top: 100%;
  margin-top: -30px;
  z-index: 100;
  width: 100%;
  padding: 0px 0px 15px;
  background-color: #ffffff;
}
.StickyDropdown {
  margin-top: 0px;
  padding-top: 15px;
  box-shadow: 0 0 0 1px rgba(111, 119, 130, .15), 0 5px 20px 0 rgba(21, 27, 38, .08);
}
.RightDropdownMenuContainer {
  right: 0px;
}
.HasDropdown:hover .DropdownMenuContainer {
  display: inline;
}
.DropdownMenu {
  padding: 0;
  margin: 0;
}
.DropdownMenu li {
  list-style: none;
  float: none;
  width: 100%;
}
.DropdownMenu li a {
  padding: 7px 20px 7px 25px;
  color: #000000;
  background-color: #ffffff;
  width: 100%;
  display: block;
  font-size: 13px;
}
.DropdownMenu li:hover a {
  color: #000000;
  background-color: #f5f5f5;
}
/*------------------------------------------------------ Mobile Menu ----------------------------------------------------- */
.MobileMenuIconContainer {
  position: relative;
  z-index: 200;
  display: none;
}
.MobileMenuIcon {
  position: absolute;
  top: 40px;
  padding: 5px 20px;
  cursor: pointer;
  z-index: 200;
  right: 0px;
  transition: top 0.3s;
}
.StickyMobileMenuIcon {
  top: 20px;
  transition: top 0.3s;
}
.MobileMenuIcon img {
  width: 26px;
}
.MobileMenuContainer {
  background: rgb(37, 58, 75);
  background: linear-gradient(70deg, rgba(37, 58, 75, 1) 30%, rgba(80, 125, 160, 1) 70%);
  position: absolute;
  overflow-y: auto;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 260px;
  background-repeat: repeat-y;
  background-position: left;
  display: none;
}
.MobileMenu {
  padding: 0;
  margin: 0;
  margin-top: 30px;
}
.MobileMenu li {
  list-style: none;
  text-align: right;
  padding-top: 7px;
  padding-bottom: 7px;
}
.MobileMenu li h1 {
  width: 100%;
  font-size: 18px;
  color: #ffffff !important;
  position: relative;
  text-decoration: none;
  font-weight: 300;
  padding-right: 50px;
  padding-left: 20px;
  display: block;
}
.MobileMenu li a {
  width: 100%;
  font-size: 14px;
  color: #ffffff !important;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  font-weight: 300;
  padding-right: 50px;
  padding-left: 20px;
  display: block;
}
/*------------------------------------------------------ Footer ----------------------------------------------------- */
.FooterContainer {
  display: flex;
  flex-wrap: wrap;
}
.FooterTile {
  max-width: 250px;
  margin-right: 70px;
  margin-bottom: 50px;
}
.FooterTile h4 {
  font-size: 14px;
}
.FooterTileBreak {
  flex-basis: 100%;
  height: 0;
}
.FooterContainer ul {
  margin: 0;
  padding: 0;
}
.FooterContainer li {
  list-style: none;
  margin: 0;
}
.FooterContainer a {
  color: #000000;
  font-size: 14px;
}
.FooterContainer a:hover {
  color: #d38726;
}
.FooterDisclaimer {
  font-size: 12px;
  max-width: inherit;
}
.FooterNmvtislogo {
  margin-right: 20px;
}
/*------------------------------------------------------ Misc ----------------------------------------------------- */
.Hover:hover {
  cursor: pointer;
}
.HasBackArrow {
  position: relative
}
.HasBackArrow::before {
  position: absolute;
  left: -10px;
  border-style: solid;
  border-color: #1f92c2;
  border-width: 1px 1px 0 0;
  content: '';
  display: inline-block;
  height: 5px;
  width: 5px;
  top: 50%;
  margin-top: -3px;
  transform: rotate(-135deg);
}
.HasBackArrow:hover:before {
  border-color: #000000;
}
.HasForwardArrow {
  position: relative
}
.HasForwardArrow::before {
  position: absolute;
  right: -10px;
  border-style: solid;
  border-color: #1f92c2;
  border-width: 1px 1px 0 0;
  content: '';
  display: inline-block;
  height: 5px;
  width: 5px;
  top: 50%;
  margin-top: -3px;
  transform: rotate(45deg);
}
.HasForwardArrow:hover:before {
  border-color: #000000;
}
.PointerCursor {
  cursor: pointer;
}