/* #region Responsive Mixins */
/* #region Responsive */
/* #endregion */
/* #endregion */
html {
  font-size: 100%;
}

html body {
  background-color: #F6F6F6;
  color: #2D2D2D;
  font-family: 'Segoe UI', Arial, Verdana, Helvetica, Sans-Serif;
  overflow-y: scroll;
  padding: 65px 0 0;
}

html body, html body > form {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: calc(100vh - 65px);
}

html body > header, html body > form > header {
  background: linear-gradient(to bottom, #0d4c8b 0%, #1061ad 100%);
  border-bottom: 1px solid #006fda;
  box-sizing: border-box;
  box-shadow: black 0px 2px 3px;
  height: 50px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

html body > header > .container, html body > form > header > .container {
  align-items: stretch;
  background: linear-gradient(to bottom, #0d4c8b 0%, #1061ad 100%);
  box-sizing: border-box;
  display: flex;
  height: 49px;
  flex-direction: row;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1420px;
  min-width: 360px;
  position: relative;
}

@media (max-width: 767px) {
  html body > header > .container label[for='nav-trigger'], html body > form > header > .container label[for='nav-trigger'] {
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    padding: 0 10px;
    z-index: 11;
  }
  html body > header > .container label[for='nav-trigger'] > img, html body > form > header > .container label[for='nav-trigger'] > img {
    height: 30px;
    max-width: none;
    width: 30px;
  }
  html body > header > .container .nav-trigger, html body > form > header > .container .nav-trigger {
    position: absolute;
    clip: rect(0, 0, 0, 0);
  }
  html body > header > .container .nav-trigger:checked + label, html body > form > header > .container .nav-trigger:checked + label {
    left: 215px;
  }
  html body > header > .container .nav-trigger:checked ~ nav, html body > form > header > .container .nav-trigger:checked ~ nav {
    left: 0;
  }
}

@media (min-width: 768px) {
  html body > header > .container, html body > form > header > .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  html body > header > .container .nav-trigger,
html body > header > .container label[for='nav-trigger'],
html body > header > .container .search-trigger,
html body > header > .container label[for='search-trigger'], html body > form > header > .container .nav-trigger,
html body > form > header > .container label[for='nav-trigger'],
html body > form > header > .container .search-trigger,
html body > form > header > .container label[for='search-trigger'] {
    display: none;
  }
}

html body > header > .container > a.logo, html body > form > header > .container > a.logo {
  align-items: center;
  display: flex;
  flex-direction: row;
}

html body > header > .container > a.logo > img, html body > form > header > .container > a.logo > img {
  height: 40px;
}

html body > header > .container > .anniversary, html body > form > header > .container > .anniversary {
  display: inline;
  margin: 10px 10px 0 10px;
  max-width: 90px;
}

html body > header > .container > .anniversary > img, html body > form > header > .container > .anniversary > img {
  width: 90px;
}

@media (min-width: 768px) {
  html body > header > .container > .anniversary > img, html body > form > header > .container > .anniversary > img {
    width: 134px;
  }
}

@media (min-width: 768px) {
  html body > header > .container > .anniversary, html body > form > header > .container > .anniversary {
    margin: 0 10px;
    max-width: 134px;
  }
}

html body > header > .container nav, html body > form > header > .container nav {
  box-sizing: border-box;
  display: flex;
  font-size: .9rem;
}

@media (max-width: 767px) {
  html body > header > .container nav, html body > form > header > .container nav {
    align-items: stretch;
    background: #111;
    border-right: 1px solid #006fda;
    bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    left: -300px;
    max-width: 300px;
    position: fixed;
    right: 0;
    top: 51px;
    transition: all .25s ease-out;
    z-index: 1001;
  }
}

@media (min-width: 768px) {
  html body > header > .container nav, html body > form > header > .container nav {
    flex-direction: row;
    margin-left: 1rem;
    margin-right: auto;
    position: relative;
  }
}

html body > header > .container nav > span, html body > form > header > .container nav > span {
  display: flex;
}

@media (max-width: 767px) {
  html body > header > .container nav > span, html body > form > header > .container nav > span {
    height: 4em;
    padding: 0 1rem;
  }
  html body > header > .container nav > span.active, html body > form > header > .container nav > span.active {
    background-color: rgba(0, 111, 218, 0.9);
  }
  html body > header > .container nav > span:hover:not(.active), html body > form > header > .container nav > span:hover:not(.active) {
    background-color: rgba(0, 111, 218, 0.5);
  }
}

@media (min-width: 768px) {
  html body > header > .container nav > span, html body > form > header > .container nav > span {
    padding: 4px 1rem 0;
    position: relative;
    transition: all .1s ease-out;
    z-index: 1;
  }
  html body > header > .container nav > span::after, html body > form > header > .container nav > span::after {
    bottom: 0;
    content: '';
    height: 100%;
    left: -10px;
    position: absolute;
    right: 0;
    top: 0;
    transform: skew(-15deg);
    transform-origin: bottom left;
    z-index: -1;
  }
  html body > header > .container nav > span:hover:not(.active)::after, html body > form > header > .container nav > span:hover:not(.active)::after {
    background-color: rgba(0, 111, 218, 0.5);
  }
  html body > header > .container nav > span.active::after, html body > form > header > .container nav > span.active::after {
    background-color: rgba(0, 111, 218, 0.9);
  }
  html body > header > .container nav > span.mobileonly, html body > form > header > .container nav > span.mobileonly {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  html body > header > .container nav > span:hover > span.submenu, html body > header > .container nav > span:hover > span.submenu2, html body > header > .container nav > span:hover > span.submenu3, html body > form > header > .container nav > span:hover > span.submenu, html body > form > header > .container nav > span:hover > span.submenu2, html body > form > header > .container nav > span:hover > span.submenu3 {
    opacity: 1;
    visibility: visible;
  }
}

html body > header > .container nav > span > span.submenu, html body > form > header > .container nav > span > span.submenu {
  background-color: #FFF;
  border: 1px solid #2d2d2d;
  border-top-width: 0;
  box-shadow: #666 0px 2px 3px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: .9em;
  left: -20px;
  opacity: 0;
  position: absolute;
  top: 52px;
  transition: all .25s ease-in-out;
  visibility: hidden;
}

@media (min-width: 768px) {
  html body > header > .container nav > span > span.submenu, html body > form > header > .container nav > span > span.submenu {
    min-width: 600px;
    width: fit-content;
  }
}

@media (min-width: 1024px) {
  html body > header > .container nav > span > span.submenu, html body > form > header > .container nav > span > span.submenu {
    width: 800px;
  }
}

html body > header > .container nav > span > span.submenu > span.submenuprod, html body > form > header > .container nav > span > span.submenu > span.submenuprod {
  box-sizing: border-box;
  color: #2d2d2d;
  display: flex;
  flex: 1 1 33%;
  flex-direction: row;
  padding: 1em;
}

html body > header > .container nav > span > span.submenu > span.submenuprod > a, html body > form > header > .container nav > span > span.submenu > span.submenuprod > a {
  background-repeat: no-repeat;
  background-size: 48px 48px;
  height: 48px;
  width: 76px;
  /*width: 48px;
										padding-right: 2em;*/
}

html body > header > .container nav > span > span.submenu > span.submenuprod > span, html body > form > header > .container nav > span > span.submenu > span.submenuprod > span {
  color: #777;
  display: block;
  flex-direction: column;
  font-size: .875em;
  font-weight: 400;
  margin: 0;
  width: 100%;
}

html body > header > .container nav > span > span.submenu > span.submenuprod > span a, html body > form > header > .container nav > span > span.submenu > span.submenuprod > span a {
  color: #007fc7;
  text-decoration: none;
}

html body > header > .container nav > span > span.submenu > span.submenuprod > span a.prodname, html body > form > header > .container nav > span > span.submenu > span.submenuprod > span a.prodname {
  display: block;
  border-bottom: 1px solid #CCC;
  font-size: 1.125em;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

html body > header > .container nav > span > span.submenu > span.submenuprod > span a.prodname strong, html body > form > header > .container nav > span > span.submenu > span.submenuprod > span a.prodname strong {
  color: #2d2d2d;
  font-weight: 500;
}

html body > header > .container nav > span > span.submenu > span.submenuprod:hover, html body > form > header > .container nav > span > span.submenu > span.submenuprod:hover {
  background-color: #EEE;
}

html body > header > .container nav > span > span.submenu > span.submenuprod:nth-last-child(2), html body > header > .container nav > span > span.submenu > span.submenuprod:last-child, html body > form > header > .container nav > span > span.submenu > span.submenuprod:nth-last-child(2), html body > form > header > .container nav > span > span.submenu > span.submenuprod:last-child {
  background-color: #DDD;
  flex: 1 1 50%;
  padding-left: 1em;
}

html body > header > .container nav > span > span.submenu > span.submenuprod:nth-last-child(2):hover, html body > header > .container nav > span > span.submenu > span.submenuprod:last-child:hover, html body > form > header > .container nav > span > span.submenu > span.submenuprod:nth-last-child(2):hover, html body > form > header > .container nav > span > span.submenu > span.submenuprod:last-child:hover {
  background-color: #EEE;
}

html body > header > .container nav > span > span.submenu > span.submenuprod:last-child, html body > form > header > .container nav > span > span.submenu > span.submenuprod:last-child {
  border-left: 1px solid #CCC;
}

html body > header > .container nav > span > span.submenu > a, html body > form > header > .container nav > span > span.submenu > a {
  background-repeat: no-repeat;
  background-position: 1em 1em;
  background-size: 48px 48px;
  box-sizing: border-box;
  color: #2d2d2d;
  display: flex;
  flex: 1 1 33%;
  flex-direction: column;
  padding: 1em 1em 1em calc(2em + 48px);
  text-decoration: none;
}

html body > header > .container nav > span > span.submenu > a > strong, html body > form > header > .container nav > span > span.submenu > a > strong {
  border-bottom: 1px solid #CCC;
  font-weight: 500;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

html body > header > .container nav > span > span.submenu > a > span, html body > form > header > .container nav > span > span.submenu > a > span {
  color: #777;
  display: block;
  font-size: .9em;
  font-weight: normal;
  margin: 0;
}

html body > header > .container nav > span > span.submenu > a:hover, html body > form > header > .container nav > span > span.submenu > a:hover {
  background-color: #EEE;
}

html body > header > .container nav > span > span.submenu > a:nth-last-child(2), html body > header > .container nav > span > span.submenu > a:last-child, html body > form > header > .container nav > span > span.submenu > a:nth-last-child(2), html body > form > header > .container nav > span > span.submenu > a:last-child {
  background-color: #DDD;
  flex: 1 1 50%;
  padding-left: 1em;
}

html body > header > .container nav > span > span.submenu > a:nth-last-child(2):hover, html body > header > .container nav > span > span.submenu > a:last-child:hover, html body > form > header > .container nav > span > span.submenu > a:nth-last-child(2):hover, html body > form > header > .container nav > span > span.submenu > a:last-child:hover {
  background-color: #EEE;
}

html body > header > .container nav > span > span.submenu > a:last-child, html body > form > header > .container nav > span > span.submenu > a:last-child {
  border-left: 1px solid #CCC;
}

html body > header > .container nav > span > span.submenu > span.submenulong, html body > form > header > .container nav > span > span.submenu > span.submenulong {
  background: linear-gradient(45deg, #01a2fd36, #01a2fd0f);
  box-sizing: border-box;
  color: #2d2d2d;
  display: flex;
  flex: 1 1 100%;
  flex-direction: row;
  align-items: center;
  padding: 0.75em 1em;
}

@media (max-width: 767px) {
  html body > header > .container nav > span > span.submenu > span.submenulong, html body > form > header > .container nav > span > span.submenu > span.submenulong {
    background: #f5f5f5;
  }
}

html body > header > .container nav > span > span.submenu > span.submenulong > a:first-child, html body > form > header > .container nav > span > span.submenu > span.submenulong > a:first-child {
  background-repeat: no-repeat;
  background-size: 48px 48px;
  height: 48px;
  width: 58px;
}

html body > header > .container nav > span > span.submenu > span.submenulong > span, html body > form > header > .container nav > span > span.submenu > span.submenulong > span {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin-right: 1.5em;
  min-width: 100px;
}

@media (min-width: 1024px) {
  html body > header > .container nav > span > span.submenu > span.submenulong > span, html body > form > header > .container nav > span > span.submenu > span.submenulong > span {
    margin-right: 8.5em;
  }
}

html body > header > .container nav > span > span.submenu > span.submenulong > span a.prodname, html body > form > header > .container nav > span > span.submenu > span.submenulong > span a.prodname {
  text-decoration: none;
}

html body > header > .container nav > span > span.submenu > span.submenulong > span a.prodname strong, html body > form > header > .container nav > span > span.submenu > span.submenulong > span a.prodname strong {
  color: #2d2d2d;
  font-size: 1em;
  font-weight: 600;
}

@media (max-width: 767px) {
  html body > header > .container nav > span > span.submenu > span.submenulong > span a.prodname, html body > form > header > .container nav > span > span.submenu > span.submenulong > span a.prodname {
    display: block;
    border-bottom: 1px solid #CCC;
    margin-bottom: 5px;
    padding-bottom: 5px;
  }
}

html body > header > .container nav > span > span.submenu > span.submenulong > span .subtitle, html body > form > header > .container nav > span > span.submenu > span.submenulong > span .subtitle {
  color: #007fc7;
  font-size: 0.75em;
  font-weight: 500;
  margin-top: 2px;
}

html body > header > .container nav > span > span.submenu > span.submenulong > span .mobile-subtitle, html body > form > header > .container nav > span > span.submenu > span.submenulong > span .mobile-subtitle {
  display: none;
}

html body > header > .container nav > span > span.submenu > span.submenulong > span .mobile-links, html body > form > header > .container nav > span > span.submenu > span.submenulong > span .mobile-links {
  display: none;
}

html body > header > .container nav > span > span.submenu > span.submenulong > span .mobile-links a, html body > form > header > .container nav > span > span.submenu > span.submenulong > span .mobile-links a {
  color: #007fc7;
  text-decoration: none;
}

@media (max-width: 767px) {
  html body > header > .container nav > span > span.submenu > span.submenulong > span, html body > form > header > .container nav > span > span.submenu > span.submenulong > span {
    margin-right: 0;
    min-width: auto;
    flex: 1;
  }
  html body > header > .container nav > span > span.submenu > span.submenulong > span .subtitle, html body > form > header > .container nav > span > span.submenu > span.submenulong > span .subtitle {
    display: none;
  }
  html body > header > .container nav > span > span.submenu > span.submenulong > span .mobile-subtitle, html body > form > header > .container nav > span > span.submenu > span.submenulong > span .mobile-subtitle {
    display: block;
    color: #777;
    font-size: 0.875em;
    font-weight: 400;
  }
  html body > header > .container nav > span > span.submenu > span.submenulong > span .mobile-links, html body > form > header > .container nav > span > span.submenu > span.submenulong > span .mobile-links {
    display: block;
    color: #777;
    font-size: 0.875em;
  }
}

html body > header > .container nav > span > span.submenu > span.submenulong > .description, html body > form > header > .container nav > span > span.submenu > span.submenulong > .description {
  color: #555;
  flex: 1;
  font-size: 0.875em;
  line-height: 1.4;
  margin-right: 1.5em;
  min-width: 0;
}

html body > header > .container nav > span > span.submenu > span.submenulong > .description .desc-title, html body > form > header > .container nav > span > span.submenu > span.submenulong > .description .desc-title {
  color: #2d2d2d;
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

@media (max-width: 767px) {
  html body > header > .container nav > span > span.submenu > span.submenulong > .description, html body > form > header > .container nav > span > span.submenu > span.submenulong > .description {
    display: none;
  }
}

html body > header > .container nav > span > span.submenu > span.submenulong > .actions, html body > form > header > .container nav > span > span.submenu > span.submenulong > .actions {
  display: block;
  margin-right: 0;
  text-align: center;
}

html body > header > .container nav > span > span.submenu > span.submenulong > .actions .sep, html body > form > header > .container nav > span > span.submenu > span.submenulong > .actions .sep {
  display: none;
}

html body > header > .container nav > span > span.submenu > span.submenulong > .actions a.link, html body > form > header > .container nav > span > span.submenu > span.submenulong > .actions a.link {
  color: #007fc7;
  font-size: 0.875em;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

html body > header > .container nav > span > span.submenu > span.submenulong > .actions a.link:hover, html body > form > header > .container nav > span > span.submenu > span.submenulong > .actions a.link:hover {
  text-decoration: underline;
}

html body > header > .container nav > span > span.submenu > span.submenulong > .actions a.btn, html body > form > header > .container nav > span > span.submenu > span.submenulong > .actions a.btn {
  background-color: #01a2fd;
  border-radius: 4px;
  color: #fff;
  font-size: 0.875em;
  font-weight: 500;
  padding: 0.5em 1em;
  text-decoration: none;
  white-space: nowrap;
}

html body > header > .container nav > span > span.submenu > span.submenulong > .actions a.btn:hover, html body > form > header > .container nav > span > span.submenu > span.submenulong > .actions a.btn:hover {
  filter: brightness(1.1);
}

@media (max-width: 767px) {
  html body > header > .container nav > span > span.submenu > span.submenulong > .actions, html body > form > header > .container nav > span > span.submenu > span.submenulong > .actions {
    display: none;
  }
}

html body > header > .container nav > span > span.submenu > span.submenulong:hover, html body > form > header > .container nav > span > span.submenu > span.submenulong:hover {
  background-color: #ebebeb;
}

html body > header > .container nav > span > span.submenu2, html body > form > header > .container nav > span > span.submenu2 {
  background-color: #FFF;
  border: 1px solid #2d2d2d;
  border-top-width: 0;
  box-shadow: #666 0px 2px 3px;
  display: block;
  font-size: .9em;
  left: -10px;
  opacity: 0;
  position: absolute;
  top: 52px;
  transition: all .25s ease-in-out;
  visibility: hidden;
  width: 118px;
}

html body > header > .container nav > span > span.submenu2 > a, html body > form > header > .container nav > span > span.submenu2 > a {
  background-repeat: no-repeat;
  border-bottom: 1px dashed #bdbdbd;
  box-sizing: border-box;
  color: #2d2d2d;
  display: block;
  padding: 1em;
  text-decoration: none;
  margin-bottom: 5px;
  padding-bottom: 5px;
  /*&:nth-last-child(2) {
                                        background-color: #f1f1f1;

                                        &:hover {
                                            background-color: #d7d7d7;
                                        }
                                    }*/
}

html body > header > .container nav > span > span.submenu2 > a > strong, html body > form > header > .container nav > span > span.submenu2 > a > strong {
  font-weight: 500;
}

html body > header > .container nav > span > span.submenu2 > a:hover, html body > form > header > .container nav > span > span.submenu2 > a:hover {
  background-color: #d7d7d7;
}

html body > header > .container nav > span > span.submenu2 > a:last-child, html body > form > header > .container nav > span > span.submenu2 > a:last-child {
  border-bottom: 0;
}

html body > header > .container nav > span > span.submenu3, html body > form > header > .container nav > span > span.submenu3 {
  background-color: #FFF;
  border: 1px solid #2d2d2d;
  border-top-width: 0;
  box-shadow: #666 0px 2px 3px;
  display: block;
  font-size: .9em;
  left: -10px;
  opacity: 0;
  position: absolute;
  top: 52px;
  transition: all .25s ease-in-out;
  visibility: hidden;
  width: 350px;
}

html body > header > .container nav > span > span.submenu3 > a, html body > form > header > .container nav > span > span.submenu3 > a {
  background-repeat: no-repeat;
  border-bottom: 1px dashed #bdbdbd;
  box-sizing: border-box;
  color: #2d2d2d;
  display: block;
  overflow-x: hidden;
  padding: 1em;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

html body > header > .container nav > span > span.submenu3 > a > strong, html body > form > header > .container nav > span > span.submenu3 > a > strong {
  font-weight: 500;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

html body > header > .container nav > span > span.submenu3 > a:hover, html body > form > header > .container nav > span > span.submenu3 > a:hover {
  background-color: #d7d7d7;
}

html body > header > .container nav > span > span.submenu3 > a:last-child, html body > form > header > .container nav > span > span.submenu3 > a:last-child {
  background-color: #f1f1f1;
  border-bottom: 0;
}

html body > header > .container nav > span > span.submenu3 > a:last-child:hover, html body > form > header > .container nav > span > span.submenu3 > a:last-child:hover {
  background-color: #d7d7d7;
}

html body > header > .container nav > span:nth-child(3) > span.submenu > a:nth-last-child(5), html body > header > .container nav > span:nth-child(3) > span.submenu > a:nth-last-child(4), html body > header > .container nav > span:nth-child(3) > span.submenu > a:nth-last-child(3), html body > form > header > .container nav > span:nth-child(3) > span.submenu > a:nth-last-child(5), html body > form > header > .container nav > span:nth-child(3) > span.submenu > a:nth-last-child(4), html body > form > header > .container nav > span:nth-child(3) > span.submenu > a:nth-last-child(3) {
  background-color: #DDD;
  border-bottom: 1px solid #CCC;
  flex: 1 1 33.33%;
  padding-left: 1em;
}

html body > header > .container nav > span:nth-child(3) > span.submenu > a:nth-last-child(5):hover, html body > header > .container nav > span:nth-child(3) > span.submenu > a:nth-last-child(4):hover, html body > header > .container nav > span:nth-child(3) > span.submenu > a:nth-last-child(3):hover, html body > form > header > .container nav > span:nth-child(3) > span.submenu > a:nth-last-child(5):hover, html body > form > header > .container nav > span:nth-child(3) > span.submenu > a:nth-last-child(4):hover, html body > form > header > .container nav > span:nth-child(3) > span.submenu > a:nth-last-child(3):hover {
  background-color: #EEE;
}

html body > header > .container nav > span:nth-child(3) > span.submenu > a:nth-last-child(4), html body > header > .container nav > span:nth-child(3) > span.submenu > a:nth-last-child(3), html body > form > header > .container nav > span:nth-child(3) > span.submenu > a:nth-last-child(4), html body > form > header > .container nav > span:nth-child(3) > span.submenu > a:nth-last-child(3) {
  border-left: 1px solid #CCC;
}

html body > header > .container nav > span > a, html body > form > header > .container nav > span > a {
  align-items: center;
  color: #FFF;
  display: flex;
  text-decoration: none;
  width: 100%;
}

html body > header > .container nav > span.active, html body > form > header > .container nav > span.active {
  font-weight: 500;
}

@media (min-width: 768px) {
  html body > header > .container nav > span:nth-child(3) > span.submenu, html body > form > header > .container nav > span:nth-child(3) > span.submenu {
    min-width: 500px;
  }
}

@media only screen and (max-width: 767px) {
  html body > header > .container nav .dropdown > .show, html body > form > header > .container nav .dropdown > .show {
    display: block;
    visibility: initial;
    left: 0px;
    width: -webkit-fill-available;
    width: -moz-available;
    opacity: 1;
    min-height: auto;
    max-height: -webkit-fill-available;
    max-height: -moz-available;
  }
}

@media only screen and (max-width: 767px) {
  html body > header > .container nav .dropdown:nth-child(2) > .show, html body > form > header > .container nav .dropdown:nth-child(2) > .show {
    top: 58px;
    overflow-y: scroll;
  }
}

@media only screen and (max-width: 767px) {
  html body > header > .container nav .dropdown:nth-child(3) > .show, html body > form > header > .container nav .dropdown:nth-child(3) > .show {
    top: 116px;
    overflow-y: scroll;
  }
}

@media only screen and (max-width: 767px) {
  html body > header > .container nav .dropdown:nth-child(4) > .show, html body > form > header > .container nav .dropdown:nth-child(4) > .show {
    top: 174px;
  }
}

@media only screen and (max-width: 767px) {
  html body > header > .container nav .dropdown:nth-child(5) > .show, html body > form > header > .container nav .dropdown:nth-child(5) > .show {
    top: 230px;
  }
}

@media only screen and (max-width: 767px) {
  html body > header > .container nav .dropdown:nth-child(6) > .show, html body > form > header > .container nav .dropdown:nth-child(6) > .show {
    top: 288px;
  }
}

@media only screen and (max-width: 767px) {
  html body > header > .container nav .dropdown::after, html body > form > header > .container nav .dropdown::after {
    color: #ffffff;
    content: '\25BC';
    line-height: 52px;
    margin-left: 5px;
    font-size: 12px;
  }
}

html body > header > .container > div.icons, html body > form > header > .container > div.icons {
  align-items: center;
  display: flex;
  flex-direction: row;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1024px) {
  html body > header > .container > div.icons, html body > form > header > .container > div.icons {
    margin-right: 0;
  }
}

html body > header > .container > div.icons > a, html body > form > header > .container > div.icons > a {
  align-items: center;
  display: flex;
  flex-direction: row;
  position: relative;
}

html body > header > .container > div.icons > a > img, html body > form > header > .container > div.icons > a > img {
  height: 20px;
}

html body > header > .container > div.icons > a:not(:first-child), html body > form > header > .container > div.icons > a:not(:first-child) {
  margin-left: 1rem;
}

html body > header > .container > div.icons > a.loggedin, html body > form > header > .container > div.icons > a.loggedin {
  border: 1px solid #FFF;
}

html body > header > .container > div.icons > a.loggedin > img, html body > form > header > .container > div.icons > a.loggedin > img {
  height: 30px;
}

html body > header > .container > div.icons > a > span, html body > form > header > .container > div.icons > a > span {
  background: linear-gradient(#50bf41, #39892f);
  border-radius: 50%;
  color: #FFF;
  display: none;
  font-weight: bold;
  line-height: .75em;
  padding: 4px;
  position: absolute;
  right: 2px;
  top: -10px;
}

html body > header > .container > div.icons > a > span.show, html body > form > header > .container > div.icons > a > span.show {
  display: block;
}

html body > header > .container > div.icons > a > span.new, html body > form > header > .container > div.icons > a > span.new {
  animation: swing 1s ease;
  animation-iteration-count: 1;
}

@keyframes swing {
  15% {
    transform: translateX(5px);
  }
  30% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(3px);
  }
  65% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(0);
  }
}

html body > header > .container > div.icons div.menu, html body > form > header > .container > div.icons div.menu {
  background-color: #1061ad;
  border-bottom: 1px solid #006fda;
  border-left: 1px solid #006fda;
  border-right: 1px solid #006fda;
  box-shadow: black 0px 2px 3px;
  padding: 5px;
  position: absolute;
  opacity: 0;
  right: 0;
  top: 49px;
  transition: all .25s ease-in-out;
  visibility: hidden;
}

html body > header > .container > div.icons div.menu.show, html body > form > header > .container > div.icons div.menu.show {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1426px) {
  html body > header > .container > div.icons div.menu, html body > form > header > .container > div.icons div.menu {
    margin-left: 3px;
    right: 3px;
  }
}

html body > header > .container > div.icons div#account-menu, html body > form > header > .container > div.icons div#account-menu {
  display: flex;
  flex-direction: column;
  font-size: .9rem;
  padding: 0;
  right: 75px;
}

html body > header > .container > div.icons div#account-menu > a, html body > form > header > .container > div.icons div#account-menu > a {
  color: #FFF;
  padding: 5px 10px;
  text-decoration: none;
}

html body > header > .container > div.icons div#account-menu > a:hover, html body > form > header > .container > div.icons div#account-menu > a:hover {
  background-color: rgba(13, 77, 139, 0.9);
}

html body > header > .container > div.icons div#account-menu > hr, html body > form > header > .container > div.icons div#account-menu > hr {
  width: 100%;
  margin: 3px 0 0 0;
  border-color: #6894b5;
}

html body > header > .container > div.icons div#account-menu > span.header, html body > form > header > .container > div.icons div#account-menu > span.header {
  background-color: #1576d3;
  padding: 3px 0px 3px 4px;
  color: white;
  border-color: #6894b5;
  border-style: solid;
  border-width: 1px 0;
}

html body > header > .container > div.icons div#account-menu > span.header:nth-of-type(2n), html body > form > header > .container > div.icons div#account-menu > span.header:nth-of-type(2n) {
  margin-top: 5px;
}

html body > header > .container > div.icons div#search-form, html body > form > header > .container > div.icons div#search-form {
  align-items: stretch;
  display: flex;
  flex-direction: row;
}

html body > header > .container > div.icons div#search-form > input, html body > form > header > .container > div.icons div#search-form > input {
  border-radius: 5px;
  margin-right: 5px;
  padding: 5px;
}

html body > header > .container > div.icons div#search-form > button, html body > form > header > .container > div.icons div#search-form > button {
  background-color: #333;
  border-radius: 5px;
  border-width: 0;
  color: #FFF;
  cursor: pointer;
  padding: 0 10px;
}

html body > header > .container > div.icons div#search-form > button:hover, html body > form > header > .container > div.icons div#search-form > button:hover {
  background-color: #444;
}

html body > header > .container > div.icons div#search-form > button[disabled], html body > form > header > .container > div.icons div#search-form > button[disabled] {
  color: #666;
}

html body > header > .container > div.icons div#cart-menu, html body > form > header > .container > div.icons div#cart-menu {
  left: 0;
}

@media (min-width: 500px) {
  html body > header > .container > div.icons div#cart-menu, html body > form > header > .container > div.icons div#cart-menu {
    left: auto;
  }
}

html body > div.body, html body > form > div.body {
  font-size: .875rem;
  flex-grow: 1;
}

html body > div.body a, html body > form > div.body a {
  color: #004b8d;
  text-decoration: none;
}

html body > div.body a:hover, html body > form > div.body a:hover {
  text-decoration: underline;
}

html body > div.body a.anchor, html body > form > div.body a.anchor {
  display: block;
  position: relative;
  top: -55px;
  visibility: hidden;
}

html body > div.body form.simple > .row, html body > form > div.body form.simple > .row {
  display: flex;
  flex-direction: row;
}

html body > div.body form.simple > .row input[type='email'], html body > form > div.body form.simple > .row input[type='email'] {
  border: 1px solid #004B8d;
  box-sizing: border-box;
  height: 34px;
  margin-right: 1em;
  padding-left: 10px;
  max-width: 300px;
}

html body > div.body form.simple .response, html body > form > div.body form.simple .response {
  margin-top: 1rem;
}

html body > div.body form.simple .response.success h2, html body > form > div.body form.simple .response.success h2 {
  color: green;
}

html body > div.body form.simple .response.error h2, html body > form > div.body form.simple .response.error h2 {
  color: red;
}

html body > div.body div.wrapper main.press-item img.confluence-embedded-image, html body > form > div.body div.wrapper main.press-item img.confluence-embedded-image {
  max-width: 100%;
  max-height: 100%;
}

html body > footer, html body > form > footer {
  background-color: #666;
  color: #FFF;
  font-size: .750rem;
}

html body > footer a, html body > form > footer a {
  color: #FFF;
  text-decoration: none;
}

html body > footer a:hover, html body > form > footer a:hover {
  text-decoration: underline;
}

html body > footer div.container, html body > form > footer div.container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1420px;
  padding: 1em;
}

@media (min-width: 768px) {
  html body > footer div.container, html body > form > footer div.container {
    flex-direction: row;
    justify-content: space-between;
  }
}

html body > footer div.container.columns, html body > form > footer div.container.columns {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (min-width: 768px) {
  html body > footer div.container.columns, html body > form > footer div.container.columns {
    justify-content: space-between;
  }
}

html body > footer div.container.columns > div, html body > form > footer div.container.columns > div {
  align-items: flex-start;
  box-sizing: border-box;
  display: flex;
  flex: 1 1 20%;
  flex-direction: column;
}

@media (max-width: 767px) {
  html body > footer div.container.columns > div:nth-child(odd), html body > form > footer div.container.columns > div:nth-child(odd) {
    flex: 1.5 1 40%;
  }
  html body > footer div.container.columns > div:nth-child(even), html body > form > footer div.container.columns > div:nth-child(even) {
    flex: 1.5 1 60%;
  }
}

@media (max-width: 767px) {
  html body > footer div.container.columns > div:not(:last-child), html body > form > footer div.container.columns > div:not(:last-child) {
    padding-bottom: 2rem;
    padding-right: 1rem;
  }
}

@media (min-width: 768px) {
  html body > footer div.container.columns > div:not(:last-child), html body > form > footer div.container.columns > div:not(:last-child) {
    padding-right: 2rem;
  }
}

html body > footer div.container.columns > div h3, html body > form > footer div.container.columns > div h3 {
  font-weight: normal;
  margin: 0 0 .5em 0;
  text-transform: uppercase;
}

html body > footer div.container.columns > div a, html body > form > footer div.container.columns > div a {
  line-height: 2;
  white-space: nowrap;
}

html body > footer div.container.second, html body > form > footer div.container.second {
  position: relative;
}

html body > footer div.container.second::before, html body > form > footer div.container.second::before {
  background: #FFF;
  content: '';
  height: 1px;
  left: 1em;
  margin-bottom: 1rem;
  position: absolute;
  right: 1em;
  top: 0;
}

@media (max-width: 767px) {
  html body > footer div.container.second > div:not(:last-child), html body > form > footer div.container.second > div:not(:last-child) {
    margin-bottom: 1rem;
  }
}

html body > footer div.container.second div.social, html body > form > footer div.container.second div.social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  html body > footer div.container.second div.social, html body > form > footer div.container.second div.social {
    justify-content: center;
  }
}

html body > footer div.container.second div.social > a:not(:last-child), html body > form > footer div.container.second div.social > a:not(:last-child) {
  margin-right: .5rem;
}

html body > footer div.container.second div.social > a > img, html body > form > footer div.container.second div.social > a > img {
  height: 30px;
  transition: transform .25s ease-in-out;
  width: 30px;
}

html body > footer div.container.second div.social > a:hover > img, html body > form > footer div.container.second div.social > a:hover > img {
  transform: scale(1.3);
}

html body > footer div.container.second div.subscribe, html body > form > footer div.container.second div.subscribe {
  align-items: center;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  html body > footer div.container.second div.subscribe, html body > form > footer div.container.second div.subscribe {
    flex-direction: row;
  }
}

html body > footer div.container.second div.subscribe h3, html body > form > footer div.container.second div.subscribe h3 {
  font-weight: normal;
  margin: 0 0 .5em 0;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  html body > footer div.container.second div.subscribe h3, html body > form > footer div.container.second div.subscribe h3 {
    margin: 0 .5em 0 0;
    text-align: right;
  }
  html body > footer div.container.second div.subscribe h3::after, html body > form > footer div.container.second div.subscribe h3::after {
    content: ':';
  }
}

html body > footer div.container.second div.subscribe > form,
html body > footer div.container.second div.subscribe > div.frmEmailList, html body > form > footer div.container.second div.subscribe > form,
html body > form > footer div.container.second div.subscribe > div.frmEmailList {
  align-items: stretch;
  display: flex;
  flex-direction: row;
}

html body > footer div.container.second div.subscribe > form > input[type='email'],
html body > footer div.container.second div.subscribe > div.frmEmailList > input[type='email'], html body > form > footer div.container.second div.subscribe > form > input[type='email'],
html body > form > footer div.container.second div.subscribe > div.frmEmailList > input[type='email'] {
  border: 1px solid #666;
  margin-right: .5em;
  padding-left: 1em;
  padding-right: 1em;
}

html body > footer div.container.second div.subscribe > form > button,
html body > footer div.container.second div.subscribe > div.frmEmailList > button, html body > form > footer div.container.second div.subscribe > form > button,
html body > form > footer div.container.second div.subscribe > div.frmEmailList > button {
  background: #444;
  border: 0;
  color: #FFF;
  padding: 3px 5px;
  text-transform: uppercase;
}

html body > footer > div.accent, html body > form > footer > div.accent {
  background-color: #444;
  padding: 1rem 0;
}

html body > footer > div.accent > div.container, html body > form > footer > div.accent > div.container {
  align-items: center;
}

@media (max-width: 767px) {
  html body > footer > div.accent > div.container > div:not(:last-child), html body > form > footer > div.accent > div.container > div:not(:last-child) {
    margin-bottom: 1rem;
  }
}

html body > footer > div.accent div.copyright, html body > form > footer > div.accent div.copyright {
  margin-right: 1em;
}

html body > footer > div.accent div.links, html body > form > footer > div.accent div.links {
  display: flex;
  flex-direction: row;
}

html body > footer > div.accent div.links > a:not(:last-child), html body > form > footer > div.accent div.links > a:not(:last-child) {
  border-right: 1px solid #FFF;
  margin-right: 1em;
  padding-right: 1em;
}

html body .cpnbutton {
  border: 1px dashed #000;
  color: #FFF;
  display: inline-block;
  margin: 4px;
  padding: 4px;
  position: relative;
}

html body .cpnbutton > span {
  background-color: #43a840;
  color: #FFF;
  display: inline-block;
  line-height: 1;
  padding: 9px;
}

html body .cpnbutton::after {
  background-image: url("/images/coupon_scissors.png");
  content: '';
  display: block;
  left: -5px;
  height: 9px;
  position: absolute;
  top: -5px;
  width: 8px;
}

html body .cpnbutton:hover > span {
  background-color: #49b03c;
}

html body .bvlbutton {
  color: #fff !important;
  cursor: pointer;
  display: inline-block;
  font-size: 13px;
  height: 34px;
  line-height: 34px;
  margin: 0;
  min-width: 76px;
  padding: 0 24px;
  position: relative;
  text-align: center;
  text-decoration: none;
}

html body .bvlbutton .small {
  font-size: 11px;
  height: 18px;
  line-height: 18px;
  margin: 0;
  min-width: 34px;
  padding: 0px 7px;
  vertical-align: top;
}

html body .bvlbutton.small {
  font-size: 11px;
  height: 22px;
  line-height: 22px;
  margin: 0;
  min-width: 34px;
  padding: 0px 7px;
  vertical-align: top;
}

html body .bvlbutton.large {
  font-size: 16px;
  height: 42px;
  line-height: 42px;
  min-width: 148px;
}

html body .bvlbutton.blue {
  background-color: #0d4d8b;
  background: linear-gradient(#0161c1, #0d4d8b);
  box-shadow: inset 0 0 4px #488ed3;
  border: 1px solid #0d4e8d;
}

html body .bvlbutton.blue:hover {
  background-color: #1061b2;
  background: linear-gradient(#007efb, #1061b2);
  box-shadow: inset 0 0 4px #4798e9;
  border: 1px solid #0d4e8d;
  color: #fff;
  text-decoration: none;
}

html body .bvlbutton.green {
  background-color: #0d4d8b;
  background: linear-gradient(#50bf41, #39892f);
  box-shadow: inset 0 0 4px #afdba9;
  border: 1px solid #39892f;
}

html body .bvlbutton.green:hover {
  background-color: #49b03c;
  background: linear-gradient(#60e54e, #49b03c);
  box-shadow: inset 0 0 4px #b7efb0;
  border: 1px solid #39892f;
  color: #fff;
  text-decoration: none;
}

html body .bvlbutton.green2 {
  border: 1px solid #7ce46e;
  background: #45a538;
  box-shadow: none;
}

html body .bvlbutton.green2:hover {
  filter: brightness(1.1);
  text-decoration: none;
}

html body .bvlbutton.gray {
  background-color: #9a9a9a;
  background: linear-gradient(#bcbcbc, #777777);
  box-shadow: inset 0 0 4px #cacaca;
  border: 1px solid #919191;
}

html body .bvlbutton.gray:hover {
  background-color: #c2c2c2;
  background: linear-gradient(#d6d6d6, #acacac);
  box-shadow: inset 0 0 4px #eeeeee;
  border: 1px solid #919191;
  color: #fff;
  text-decoration: none;
}

html body .bvlbutton.gray.disabled {
  cursor: default;
}

html body .bvlbutton.gray.disabled:hover {
  background-color: #9a9a9a;
  background: linear-gradient(#bcbcbc, #777777);
  box-shadow: inset 0 0 4px #cacaca;
  border: 1px solid #919191;
}

html body .bvlbutton.ltblue {
  background: linear-gradient(to bottom, #86bcef, #3491f7);
  box-shadow: inset 0 0 4px #d6ebfe;
  border: 1px solid #4aa4fe;
}

html body .bvlbutton.ltblue:hover {
  background: linear-gradient(to bottom, #97c2ec, #4e9df4);
}

html .hidden {
  display: none !important;
}

html .offscreen {
  border: 0;
  clip: rect(1px 1px 1px 1px);
  /* for Internet Explorer */
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

html .featherlight.noscroll .featherlight-content {
  overflow: hidden;
}

html .strike {
  color: #F00;
  text-decoration: line-through;
}

.nowrapper .featherlight-content {
  background-color: #FFF;
  border: 0;
  margin: 0;
  padding: 0;
}

.nowrapper .featherlight-content .featherlight-previous {
  left: 0;
  top: 0;
}

.nowrapper .featherlight-content .featherlight-next {
  right: 0;
  top: 0;
}

.formresponse .featherlight-content {
  max-width: 800px;
  border-radius: 6px;
  padding: 1em;
}

/* Media query for screens smaller than 800px */
@media (max-width: 799px) {
  .formresponse .featherlight-content {
    max-width: 96%;
    padding: 1em 1%;
  }
}

.notice {
  background-attachment: scroll;
  background-repeat: no-repeat;
  border-style: solid;
  border-width: 1px;
  line-height: 1.25em;
  margin: 1em 0;
  min-height: calc(48px + 2em);
  padding: 1rem 1rem 1rem 68px;
}

.notice.error {
  background-color: #FCC;
  background-image: url("/images/error.svg");
  background-position: 10px center;
  background-size: 48px 48px;
  border-color: #F00;
  color: #F00;
}

.notice.warning {
  background-color: #FEEFB3;
  background-image: url("/images/warning.svg");
  background-position: 10px center;
  background-size: 48px 48px;
  border-color: #9F6000;
  color: #9F6000;
}

.notice.warning.small {
  background-size: 21px 21px;
  font-size: .9em;
  padding-left: 41px;
}

.notice.success {
  background-color: #DFF2BF;
  border-color: #4F8A10;
  color: #4F8A10;
  padding-left: 1em;
}

.notice.info {
  background-color: #BDE5F8;
  border-color: #00529B;
  color: #00529B;
}

.notice p {
  margin-bottom: 1em;
}

.notice ul {
  margin-left: 25px;
}

.notice ul li:first-child {
  margin-top: 0;
}

aside.goldenkey {
  background: #ffd475;
  box-sizing: border-box;
  color: #000;
  display: none;
  flex-direction: column;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.1em;
  margin: 1rem;
  max-width: 938px;
  padding: 20px 40px 20px 20px;
  position: relative;
}

aside.goldenkey.show {
  display: flex;
}

aside.goldenkey > span {
  margin-right: 3em;
}

aside.goldenkey > span > strong {
  display: block;
}

aside.goldenkey a {
  color: #000 !important;
  font-weight: bold;
  text-decoration: underline !important;
}

aside.goldenkey > a.close {
  position: absolute;
  right: 20px;
  text-decoration: none !important;
  transition: 0.3s;
  top: 20px;
}

aside.goldenkey > a.close:hover {
  color: #000 !important;
  text-decoration: none;
}

@media (min-width: 768px) {
  aside.goldenkey {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  aside.goldenkey {
    margin-left: auto;
    margin-right: auto;
  }
}

.fsbuy > .qty {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 5px;
}

.fsbuy > .qty::before {
  content: 'Qty:';
  font-size: .8em;
  margin-right: 3px;
}

.fsbuy > .qty > input {
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  font-weight: 400;
  margin: 0 3px;
  text-align: center;
  width: 30px;
}

.fsbuy > .qty > input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.fsbuy > .qty > button {
  background: #FFF;
  border: solid 1px #e6e6e6;
  border-radius: 3px;
  color: #757575;
  outline: none;
}

picture {
  display: block;
}

picture > img {
  display: block;
}

.lightspeed-box .lsb-content {
  height: 80%;
}
