/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
html.with-featherlight{overflow:hidden}.featherlight{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:2147483647;text-align:center;white-space:nowrap;cursor:pointer;background:#333;background:rgba(0,0,0,0)}.featherlight:last-of-type{background:rgba(0,0,0,.8)}.featherlight:before{content:'';display:inline-block;height:100%;vertical-align:middle}.featherlight .featherlight-content{position:relative;text-align:left;vertical-align:middle;display:inline-block;overflow:auto;padding:25px 25px 0;border-bottom:25px solid transparent;margin-left:5%;margin-right:5%;max-height:95%;background:#fff;cursor:auto;white-space:normal}.featherlight .featherlight-inner{display:block}.featherlight link.featherlight-inner,.featherlight script.featherlight-inner,.featherlight style.featherlight-inner{display:none}.featherlight .featherlight-close-icon{position:absolute;z-index:9999;top:0;right:0;line-height:25px;width:25px;cursor:pointer;text-align:center;font-family:Arial,sans-serif;background:#fff;background:rgba(255,255,255,.3);color:#000;border:0;padding:0}.featherlight .featherlight-close-icon::-moz-focus-inner{border:0;padding:0}.featherlight .featherlight-image{width:100%}.featherlight-iframe .featherlight-content{border-bottom:0;padding:0;-webkit-overflow-scrolling:touch}.featherlight iframe{border:0}.featherlight *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@media only screen and (max-width:1024px){.featherlight .featherlight-content{margin-left:0;margin-right:0;max-height:98%;padding:10px 10px 0;border-bottom:10px solid transparent}}@media print{html.with-featherlight>*>:not(.featherlight){display:none}}

/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
.featherlight-next,.featherlight-previous{display:block;position:absolute;top:25px;right:25px;bottom:0;left:80%;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background:rgba(0,0,0,0)}.featherlight-previous{left:25px;right:80%}.featherlight-next:hover,.featherlight-previous:hover{background:rgba(255,255,255,.25)}.featherlight-next span,.featherlight-previous span{display:none;position:absolute;top:50%;left:5%;width:82%;text-align:center;font-size:80px;line-height:80px;margin-top:-40px;text-shadow:0 0 5px #fff;color:#fff;font-style:normal;font-weight:400}.featherlight-next span{right:5%;left:auto}.featherlight-next:hover span,.featherlight-previous:hover span{display:inline-block}.featherlight-first-slide.featherlight-last-slide .featherlight-next,.featherlight-first-slide.featherlight-last-slide .featherlight-previous,.featherlight-loading .featherlight-next,.featherlight-loading .featherlight-previous,.featherlight-swipe-aware .featherlight-next,.featherlight-swipe-aware .featherlight-previous{display:none}@media only screen and (max-device-width:1024px){.featherlight-next:hover,.featherlight-previous:hover{background:0 0}.featherlight-next span,.featherlight-previous span{display:block}}@media only screen and (max-width:1024px){.featherlight-next,.featherlight-previous{top:10px;right:10px;left:85%}.featherlight-previous{left:10px;right:85%}.featherlight-next span,.featherlight-previous span{margin-top:-30px;font-size:40px}}

.lightspeed-box {
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    margin: auto;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.84);
    z-index: 30;
    -webkit-transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /*-webkit-transform: scale(0);
    transform: scale(0);*/
    -webkit-transform: scale(1);
    transform: scale(1);
}

.lightspeed-box.lsb-active {
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  width: 100%;
  height: 100%;
}

.lightspeed-box .lsb-content {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    margin: auto;
    padding: 20px;
    /*-webkit-transition: all 0.5s;
    transition: all 0.5s;*/
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
    height: 100%;
}

.lightspeed-box .lsb-image-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.lightspeed-box .lsb-noimage {
  opacity: 0;
}

.lightspeed-box img.lsb-image {
  position: relative;
  max-height: 0%;
  max-width: 0%;
  cursor: pointer;
  min-width: 0;
  min-height: 0;
  margin: auto;
  /*-webkit-transition: all 0.95s cubic-bezier(0.12, 0.58, 0.26, 0.99);
  transition: all 0.95s cubic-bezier(0.12, 0.58, 0.26, 0.99);*/
  -webkit-transition: none;
  transition: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

.lightspeed-box img.lsb-image.lsb-image-loaded {
  max-height: 100%;
  max-width: 100%;
  min-height: 1px;
  border-radius: 3px;
}

.lightspeed-box .lsb-no-image-found {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  height: 100%;
  width: 100%;
  padding: 10px;
  margin: auto;
  overflow: visible;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
}

.lightspeed-box .lsb-no-image-found .no-found-msg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  margin: 0 auto;
}

.lightspeed-box .lsb-control-panel {
  position: absolute;
  bottom: 5px;
  right: 50%;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
  z-index: 2;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.64);
  border-radius: 3px;
  opacity: 0.5;
}

.lightspeed-box .lsb-control-panel:hover {
  opacity: 1;
}

.lightspeed-box .lsb-panel-button {
  display: inline-block;
  cursor: pointer;
  width: 21px;
  height: 28px;
  margin: 6px 6px 0 6px;
  position: relative;
}

.lightspeed-box .lsb-panel-button:not(:last-child) {
  margin-right: 10px;
}

.lightspeed-box .lsb-panel-button:hover svg {
  opacity: 1;
}

.lightspeed-box .lsb-panel-button svg {
  position: absolute;
  width: 21px;
  opacity: 0.5;
  top: 0;
  left: 0;
}

.lightspeed-box .lsb-panel-button svg:last-child {
  top: -1px;
}

.lightspeed-box .lsb-pause svg {
  opacity: 1;
}

.lightspeed-box .lsb-download {
  text-decoration: underline;
}

.lightspeed-box .lsb-header {
  position: absolute;
  top: 9px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 32;
  margin: 0;
  padding: 0;
  display: block;
  background: transparent;
}

.lightspeed-box .lsb-image-title {
  display: block;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px;
  text-shadow: 0 1px 4px #000000;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.32);
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  opacity: 0;
}

.lightspeed-box .lsb-image-title:not(:empty) {
  opacity: 1;
}

.lightspeed-box .lsb-image-title.lsb-image-notitle {
  opacity: 0;
}

.lightspeed-box .lsb-image-count {
  display: block;
  margin-right: 5px;
  font-weight: 500;
  color: #ffffff;
  font-size: 11px;
  text-shadow: 0 1px 4px #000000;
  background: transparent;
}

.lightspeed-box .lsb-control {
  cursor: pointer;
  color: #ffffff;
  overflow: visible;
  text-shadow: 0 0 2px #000;
}

.lightspeed-box .lsb-control:hover {
  color: #ffffff;
  text-shadow: 0 0 2px #000, 0 0 20px #ffffff;
}

.lightspeed-box .lsb-control:hover svg {
  opacity: 1;
}

.lightspeed-box .lsb-prev,
.lightspeed-box .lsb-next {
  position: absolute;
  width: 20%;
  height: 100%;
  top: 0;
  z-index: 2;
}

.lightspeed-box .lsb-prev svg,
.lightspeed-box .lsb-next svg {
  width: 21px;
  height: 100%;
  opacity: 0.5;
  position: absolute;
}

.lightspeed-box .lsb-prev {
  left: 0;
}

.lightspeed-box .lsb-prev svg {
  left: 35px;
}

.lightspeed-box .lsb-prev svg:last-child {
  left: 36px;
}

.lightspeed-box .lsb-next {
  right: 0;
}

.lightspeed-box .lsb-next svg {
  right: 35px;
}

.lightspeed-box .lsb-next svg:last-child {
  right: 36px;
}

.lightspeed-box .lsb-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 25%;
  z-index: 3;
  text-align: right;
}

.lightspeed-box .lsb-close svg {
  width: 21px;
  height: 28px;
  opacity: 0.5;
  position: absolute;
  top: 25px;
  right: 35px;
}

.lightspeed-box .lsb-close svg:last-child {
  top: 24px;
}

.waitingicon {
  margin: auto;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.waitingicon .waitingicon-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.waitingicon .waitingicon-circle::before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border-radius: 50%;
  -webkit-animation: waitingiconSicrleDelay 1.2s infinite ease-in-out both;
  animation: waitingiconSicrleDelay 1.2s infinite ease-in-out both;
}

.waitingicon .waitingicon-circle:nth-child(1) {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.waitingicon .waitingicon-circle:nth-child(1)::before {
  -webkit-animation-delay: -1.3s;
  animation-delay: -1.3s;
}

.waitingicon .waitingicon-circle:nth-child(2) {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.waitingicon .waitingicon-circle:nth-child(2)::before {
  -webkit-animation-delay: -1.4s;
  animation-delay: -1.4s;
}

.waitingicon .waitingicon-circle:nth-child(3) {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.waitingicon .waitingicon-circle:nth-child(3)::before {
  -webkit-animation-delay: -1.5s;
  animation-delay: -1.5s;
}

.waitingicon .waitingicon-circle:nth-child(4) {
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}

.waitingicon .waitingicon-circle:nth-child(4)::before {
  -webkit-animation-delay: -1.6s;
  animation-delay: -1.6s;
}

.waitingicon .waitingicon-circle:nth-child(5) {
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg);
}

.waitingicon .waitingicon-circle:nth-child(5)::before {
  -webkit-animation-delay: -1.7s;
  animation-delay: -1.7s;
}

.waitingicon .waitingicon-circle:nth-child(6) {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.waitingicon .waitingicon-circle:nth-child(6)::before {
  -webkit-animation-delay: -1.8s;
  animation-delay: -1.8s;
}

.waitingicon .waitingicon-circle:nth-child(7) {
  -webkit-transform: rotate(210deg);
  transform: rotate(210deg);
}

.waitingicon .waitingicon-circle:nth-child(7)::before {
  -webkit-animation-delay: -1.9s;
  animation-delay: -1.9s;
}

.waitingicon .waitingicon-circle:nth-child(8) {
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
}

.waitingicon .waitingicon-circle:nth-child(8)::before {
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.waitingicon .waitingicon-circle:nth-child(9) {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.waitingicon .waitingicon-circle:nth-child(9)::before {
  -webkit-animation-delay: -2.1s;
  animation-delay: -2.1s;
}

.waitingicon .waitingicon-circle:nth-child(10) {
  -webkit-transform: rotate(300deg);
  transform: rotate(300deg);
}

.waitingicon .waitingicon-circle:nth-child(10)::before {
  -webkit-animation-delay: -2.2s;
  animation-delay: -2.2s;
}

.waitingicon .waitingicon-circle:nth-child(11) {
  -webkit-transform: rotate(330deg);
  transform: rotate(330deg);
}

.waitingicon .waitingicon-circle:nth-child(11)::before {
  -webkit-animation-delay: -2.3s;
  animation-delay: -2.3s;
}

.waitingicon .waitingicon-circle:nth-child(12) {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.waitingicon .waitingicon-circle:nth-child(12)::before {
  -webkit-animation-delay: -2.4s;
  animation-delay: -2.4s;
}

@-webkit-keyframes waitingiconSicrleDelay {
  0%,
  39%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}

@keyframes waitingiconSicrleDelay {
  0%,
  39%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
/*# sourceMappingURL=lsb.css.map */

.qtip{position:absolute;left:-28000px;top:-28000px;display:none;max-width:280px;min-width:50px;font-size:10.5px;line-height:12px;direction:ltr;box-shadow:none;padding:0}.qtip-content,.qtip-titlebar{position:relative;overflow:hidden}.qtip-content{padding:5px 9px;text-align:left;word-wrap:break-word}.qtip-titlebar{padding:5px 35px 5px 10px;border-width:0 0 1px;font-weight:700}.qtip-titlebar+.qtip-content{border-top-width:0!important}.qtip-close{position:absolute;right:-9px;top:-9px;z-index:11;cursor:pointer;outline:0;border:1px solid transparent}.qtip-titlebar .qtip-close{right:4px;top:50%;margin-top:-9px}* html .qtip-titlebar .qtip-close{top:16px}.qtip-icon .ui-icon,.qtip-titlebar .ui-icon{display:block;text-indent:-1000em;direction:ltr}.qtip-icon,.qtip-icon .ui-icon{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;text-decoration:none}.qtip-icon .ui-icon{width:18px;height:14px;line-height:14px;text-align:center;text-indent:0;font:normal 700 10px/13px Tahoma,sans-serif;color:inherit;background:-100em -100em no-repeat}.qtip-default{border:1px solid #F1D031;background-color:#FFFFA3;color:#555}.qtip-default .qtip-titlebar{background-color:#FFEF93}.qtip-default .qtip-icon{border-color:#CCC;background:#F1F1F1;color:#777}.qtip-default .qtip-titlebar .qtip-close{border-color:#AAA;color:#111}.qtip-shadow{-webkit-box-shadow:1px 1px 3px 1px rgba(0,0,0,.15);-moz-box-shadow:1px 1px 3px 1px rgba(0,0,0,.15);box-shadow:1px 1px 3px 1px rgba(0,0,0,.15)}.qtip-bootstrap,.qtip-rounded,.qtip-tipsy{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.qtip-rounded .qtip-titlebar{-moz-border-radius:4px 4px 0 0;-webkit-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.qtip-youtube{-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 0 3px #333;-moz-box-shadow:0 0 3px #333;box-shadow:0 0 3px #333;color:#fff;border:0 solid transparent;background:#4A4A4A;background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,#4A4A4A),color-stop(100%,#000));background-image:-webkit-linear-gradient(top,#4A4A4A 0,#000 100%);background-image:-moz-linear-gradient(top,#4A4A4A 0,#000 100%);background-image:-ms-linear-gradient(top,#4A4A4A 0,#000 100%);background-image:-o-linear-gradient(top,#4A4A4A 0,#000 100%)}.qtip-youtube .qtip-titlebar{background-color:#4A4A4A;background-color:rgba(0,0,0,0)}.qtip-youtube .qtip-content{padding:.75em;font:12px arial,sans-serif;filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr=#4a4a4a, EndColorStr=#000000);-ms-filter:"progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#4a4a4a,EndColorStr=#000000);"}.qtip-youtube .qtip-icon{border-color:#222}.qtip-youtube .qtip-titlebar .ui-state-hover{border-color:#303030}.qtip-jtools{background:#232323;background:rgba(0,0,0,.7);background-image:-webkit-gradient(linear,left top,left bottom,from(#717171),to(#232323));background-image:-moz-linear-gradient(top,#717171,#232323);background-image:-webkit-linear-gradient(top,#717171,#232323);background-image:-ms-linear-gradient(top,#717171,#232323);background-image:-o-linear-gradient(top,#717171,#232323);border:2px solid #ddd;border:2px solid rgba(241,241,241,1);-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 0 12px #333;-moz-box-shadow:0 0 12px #333;box-shadow:0 0 12px #333}.qtip-jtools .qtip-titlebar{background-color:transparent;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171, endColorstr=#4A4A4A);-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171,endColorstr=#4A4A4A)"}.qtip-jtools .qtip-content{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A, endColorstr=#232323);-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A,endColorstr=#232323)"}.qtip-jtools .qtip-content,.qtip-jtools .qtip-titlebar{background:0 0;color:#fff;border:0 dashed transparent}.qtip-jtools .qtip-icon{border-color:#555}.qtip-jtools .qtip-titlebar .ui-state-hover{border-color:#333}.qtip-cluetip{-webkit-box-shadow:4px 4px 5px rgba(0,0,0,.4);-moz-box-shadow:4px 4px 5px rgba(0,0,0,.4);box-shadow:4px 4px 5px rgba(0,0,0,.4);background-color:#D9D9C2;color:#111;border:0 dashed transparent}.qtip-cluetip .qtip-titlebar{background-color:#87876A;color:#fff;border:0 dashed transparent}.qtip-cluetip .qtip-icon{border-color:#808064}.qtip-cluetip .qtip-titlebar .ui-state-hover{border-color:#696952;color:#696952}.qtip-tipsy{background:#000;background:rgba(0,0,0,.87);color:#fff;border:0 solid transparent;font-size:11px;font-family:'Lucida Grande',sans-serif;font-weight:700;line-height:16px;text-shadow:0 1px #000}.qtip-tipsy .qtip-titlebar{padding:6px 35px 0 10px;background-color:transparent}.qtip-tipsy .qtip-content{padding:6px 10px}.qtip-tipsy .qtip-icon{border-color:#222;text-shadow:none}.qtip-tipsy .qtip-titlebar .ui-state-hover{border-color:#303030}.qtip-tipped{border:3px solid #959FA9;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-color:#F9F9F9;color:#454545;font-weight:400;font-family:serif}.qtip-tipped .qtip-titlebar{border-bottom-width:0;color:#fff;background:#3A79B8;background-image:-webkit-gradient(linear,left top,left bottom,from(#3A79B8),to(#2E629D));background-image:-webkit-linear-gradient(top,#3A79B8,#2E629D);background-image:-moz-linear-gradient(top,#3A79B8,#2E629D);background-image:-ms-linear-gradient(top,#3A79B8,#2E629D);background-image:-o-linear-gradient(top,#3A79B8,#2E629D);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8, endColorstr=#2E629D);-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8,endColorstr=#2E629D)"}.qtip-tipped .qtip-icon{border:2px solid #285589;background:#285589}.qtip-tipped .qtip-icon .ui-icon{background-color:#FBFBFB;color:#555}.qtip-bootstrap{font-size:14px;line-height:20px;color:#333;padding:1px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box}.qtip-bootstrap .qtip-titlebar{padding:8px 14px;margin:0;font-size:14px;font-weight:400;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0}.qtip-bootstrap .qtip-titlebar .qtip-close{right:11px;top:45%;border-style:none}.qtip-bootstrap .qtip-content{padding:9px 14px}.qtip-bootstrap .qtip-icon{background:0 0}.qtip-bootstrap .qtip-icon .ui-icon{width:auto;height:auto;float:right;font-size:20px;font-weight:700;line-height:18px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.qtip-bootstrap .qtip-icon .ui-icon:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40)}.qtip:not(.ie9haxors) div.qtip-content,.qtip:not(.ie9haxors) div.qtip-titlebar{filter:none;-ms-filter:none}

/* #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;

  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 {
  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 center;
  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.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(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) {
  background-color: #DDD;
  border-bottom: 1px solid #CCC;
  flex: 1 1 50%;
  padding-left: 1em;
}

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(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(3), 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("../png/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("../svg/error.svg");
  background-position: 10px center;
  background-size: 48px 48px;
  border-color: #F00;
  color: #F00;
}

.notice.warning {
  background-color: #FEEFB3;
  background-image: url("../svg/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%;
}

/* #region Responsive Mixins */
/* #region Responsive */
/* #endregion */
/* #endregion */
.cart_control {
  display: inline-block;
  color: #2d2d2d;
  font-family: "Segoe UI", Arial, Tahoma, Verdana;
  font-size: 13px;
}

.cart_control a {
  color: #004b8d;
  text-decoration: none;
}

.cart_control a:visited {
  color: #004b8d;
  text-decoration: none;
}

.cart_control a:hover {
  color: #1ba5c7;
  text-decoration: underline;
}

.cart_control .action_icon,
.cart_control button.primary,
.cart_control a.primary {
  background-image: url("../png/icon_sprite.png");
  background-repeat: no-repeat;
  display: block;
}

.cart_container {
  background: #FFF;
  max-width: 400px;
}

.cart_container .feedback_message {
  width: auto;
  display: block;
  margin: 5px;
  max-width: 477px;
}

.cart_container input {
  width: 40px;
  border: solid 1px #D9D8DC;
  text-align: center;
  padding: 6px 0 4px 0;
}

.cart_container .cart_list {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.cart_container .cart_list .cart_item {
  align-items: center;
  background: #F1F1F1;
  border-bottom: solid 1px #D9D8DC;
  display: flex;
  justify-content: space-between;
  padding: 5px;
}

.cart_container .cart_list .cart_item .item_column.item_image img {
  display: block;
  height: 32px;
  width: 32px;
}

.cart_container .cart_list .cart_item .item_column.item_title {
  flex-grow: 1;
  padding: 0 10px;
}

.cart_container .cart_list .cart_item .item_column.item_quantity {
  padding: 0;
}

.cart_container .cart_list .cart_item .item_column.item_quantity label {
  display: none;
}

.cart_container .cart_list .cart_item .item_column.item_price {
  flex-basis: 50px;
  padding: 0 10px;
  text-align: right;
}

.cart_container .cart_list .cart_item .item_column.item_price .price .price_label .strikethrough {
  text-decoration: line-through;
}

.cart_container .cart_list .cart_item .item_column.item_actions {
  width: 20px;
}

@media (min-width: 768px) {
  .cart_container .cart_list .cart_item .item_column.item_actions {
    width: 14px;
  }
}

.cart_container .empty_container {
  align-items: center;
  display: flex;
  height: 60px;
  justify-content: center;
  border-bottom: solid 1px #D9D8DC;
}

.cart_container .volumn_discount_notice {
  color: #404041;
  text-decoration: underline;
  display: none;
  position: absolute;
  font-size: 12px;
  bottom: 8px;
  right: 195px;
  height: 13px;
  line-height: 13px;
  font-style: italic;
}

.cart_container .help {
  display: inline-block;
  float: none;
  position: relative;
  top: 14px;
  margin-right: 2px;
  cursor: pointer;
  width: 16px;
  height: 16px;
  background-position: -276px -17px;
}

.cart_container .cart_bottom {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cart_container .cart_bottom .bottom_column {
  display: table-cell;
  vertical-align: middle;
  padding: 10px;
}

.cart_container .cart_bottom .totals {
  text-align: right;
  position: relative;
}

.cart_container .cart_bottom .totals .loading {
  background-position: 260px center !important;
}

.cart_container .cart_bottom .totals label {
  padding-right: 20px;
  vertical-align: sub;
}

.cart_container .cart_bottom .totals .sub_total, .cart_container .cart_bottom .totals .currency_label {
  padding-right: 5px;
  vertical-align: sub;
}

.cart_container .cart_bottom a.checkout {
  width: 122px;
  float: right;
  margin-right: 10px;
  text-decoration: none;
}

.cart_container .cart_bottom .quote_notice {
  padding: 0 0 5px 10px;
  width: 100%;
}

.cart_container .cart_bottom a.bvlbutton.green {
  background: linear-gradient(#50bf41, #39892f);
  box-shadow: inset 0 0 4px #afdba9;
  border: 1px solid #39892f;
}

.cart_container .cart_bottom a.bvlbutton.green:hover {
  background: linear-gradient(#60e54e, #49b03c);
}

.cart_container .cart_bottom a.bvlbutton {
  color: #fff;
  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;
}

.cart_container.empty .cart_bottom .totals {
  display: block !important;
}

.cart_container .ip_spoofing {
  width: 100%;
  padding: 10px 0;
  background: #F1F1F1;
  border-bottom: solid 1px #D9D8DC;
}

.cart_container .ip_spoofing label {
  padding: 0 10px 0 50px;
}

.cart_container .ip_spoofing .dot {
  vertical-align: bottom;
}

.cart_container .ip_spoofing a.submit {
  float: right;
  margin: -3px 65px 0 0;
  width: 81px;
  height: 36px;
  background-position: -224px 0;
}

.cart_container .ip_spoofing a.submit:hover :hover {
  background-position: -306px 0;
}

.cart_container .ip_spoofing a.remove {
  float: right;
  margin: -5px 210px 0 0;
}

.cart_container label {
  padding: 0 10px 0 50px;
}

.cart_container .discount_list {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.cart_container .discount_list .discount_item {
  align-items: center;
  background: #F1F1F1;
  border-bottom: solid 1px #D9D8DC;
  display: flex;
  justify-content: space-between;
  min-height: 32px;
  padding: 5px;
}

.cart_container .discount_list .discount_item .item_column.item_title {
  flex-grow: 1;
  text-align: center;
}

.cart_container .discount_list .discount_item .item_column.item_title a {
  position: relative;
  top: 2px;
}

.cart_container .discount_list .discount_item .item_column.item_price {
  flex-basis: 50px;
  padding: 0 10px;
  text-align: right;
}

.cart_container .discount_list .discount_item .item_column.item_actions {
  width: 20px;
}

@media (min-width: 768px) {
  .cart_container .discount_list .discount_item .item_column.item_actions {
    width: 14px;
  }
}

.cart_container a.remove {
  background-image: url("../svg/exit.svg");
  background-size: cover;
}

.cart_container a.action_icon {
  box-sizing: border-box;
  display: block;
  height: 20px;
  position: relative;
  overflow: hidden;
  width: 20px;
  z-index: 1;
}

@media (min-width: 768px) {
  .cart_container a.action_icon {
    cursor: pointer;
    outline: none;
    height: 14px;
    width: 14px;
  }
}

.cart_container .clear {
  display: none;
}

.odupsellpopup,
.upsellpopup {
  align-items: center;
  display: flex !important;
  font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  text-align: center;
  width: 100%;
}

@media (max-width: 767px) {
  .odupsellpopup,
.upsellpopup {
    font-size: .9em;
  }
}

.odupsellpopup img,
.upsellpopup img {
  display: none;
  max-width: 100%;
}

@media (min-height: 570px) {
  .odupsellpopup img,
.upsellpopup img {
    display: block;
  }
}

.odupsellpopup > header,
.upsellpopup > header {
  margin: 1em 15px;
}

.odupsellpopup > header > h2,
.upsellpopup > header > h2 {
  font-size: 2em;
  font-weight: normal;
  margin-bottom: 0;
  text-transform: uppercase;
}

.odupsellpopup > header > h3,
.upsellpopup > header > h3 {
  font-size: 1.1em;
  font-weight: normal;
  margin-top: 0;
}

.odupsellpopup .discount,
.upsellpopup .discount {
  font-size: 1.75em;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  width: 100%;
}

.odupsellpopup .purchase,
.upsellpopup .purchase {
  font-size: 1.75em;
  height: auto;
  line-height: 2;
}

.odupsellpopup#ObjectDesktopPopup, .odupsellpopup#ObjectDesktopPopupB,
.upsellpopup#ObjectDesktopPopup,
.upsellpopup#ObjectDesktopPopupB {
  background: url("../jpg/upsell_popup_background.jpg") no-repeat;
  background-size: cover;
  border: 2px solid #E03F42;
  box-sizing: border-box;
  max-width: 800px;
}

.odupsellpopup#ObjectDesktopPopup > .border2, .odupsellpopup#ObjectDesktopPopupB > .border2,
.upsellpopup#ObjectDesktopPopup > .border2,
.upsellpopup#ObjectDesktopPopupB > .border2 {
  border: 2px solid #E03F42;
  bottom: 8px;
  box-sizing: border-box;
  left: 8px;
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 1;
}

.odupsellpopup#ObjectDesktopPopup > header, .odupsellpopup#ObjectDesktopPopupB > header,
.upsellpopup#ObjectDesktopPopup > header,
.upsellpopup#ObjectDesktopPopupB > header {
  position: relative;
  z-index: 2;
}

.odupsellpopup#ObjectDesktopPopup .discount, .odupsellpopup#ObjectDesktopPopupB .discount,
.upsellpopup#ObjectDesktopPopup .discount,
.upsellpopup#ObjectDesktopPopupB .discount {
  background-color: rgba(255, 51, 51, 0.9);
  color: #FFF;
  position: relative;
  z-index: 2;
}

.odupsellpopup#ObjectDesktopPopup .price, .odupsellpopup#ObjectDesktopPopupB .price,
.upsellpopup#ObjectDesktopPopup .price,
.upsellpopup#ObjectDesktopPopupB .price {
  margin: 2em 0 1em;
  position: relative;
  z-index: 2;
}

.odupsellpopup#ObjectDesktopPopup .price .was, .odupsellpopup#ObjectDesktopPopupB .price .was,
.upsellpopup#ObjectDesktopPopup .price .was,
.upsellpopup#ObjectDesktopPopupB .price .was {
  color: #999;
  margin-right: 1em;
  text-decoration: line-through;
}

.odupsellpopup#ObjectDesktopPopup .price .now, .odupsellpopup#ObjectDesktopPopupB .price .now,
.upsellpopup#ObjectDesktopPopup .price .now,
.upsellpopup#ObjectDesktopPopupB .price .now {
  color: #393;
  font-size: 24px;
}

.odupsellpopup#ObjectDesktopPopup .purchase, .odupsellpopup#ObjectDesktopPopupB .purchase,
.upsellpopup#ObjectDesktopPopup .purchase,
.upsellpopup#ObjectDesktopPopupB .purchase {
  margin-bottom: 2em;
  position: relative;
  z-index: 2;
}

.odupsellpopup#ObjectDesktopPopup > footer, .odupsellpopup#ObjectDesktopPopupB > footer,
.upsellpopup#ObjectDesktopPopup > footer,
.upsellpopup#ObjectDesktopPopupB > footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 2em 0 2em 0;
  padding: 0 2em;
  position: relative;
  width: 100%;
  z-index: 2;
}

@media (min-width: 768px) {
  .odupsellpopup#ObjectDesktopPopup > footer, .odupsellpopup#ObjectDesktopPopupB > footer,
.upsellpopup#ObjectDesktopPopup > footer,
.upsellpopup#ObjectDesktopPopupB > footer {
    flex-direction: row;
  }
}

.odupsellpopup#ObjectDesktopPopup > footer > span, .odupsellpopup#ObjectDesktopPopupB > footer > span,
.upsellpopup#ObjectDesktopPopup > footer > span,
.upsellpopup#ObjectDesktopPopupB > footer > span {
  margin-bottom: 1em;
}

@media (min-width: 768px) {
  .odupsellpopup#ObjectDesktopPopup > footer > span, .odupsellpopup#ObjectDesktopPopupB > footer > span,
.upsellpopup#ObjectDesktopPopup > footer > span,
.upsellpopup#ObjectDesktopPopupB > footer > span {
    margin-bottom: 0;
  }
}

.odupsellpopup#ObjectDesktopPopup > footer > span > a, .odupsellpopup#ObjectDesktopPopupB > footer > span > a,
.upsellpopup#ObjectDesktopPopup > footer > span > a,
.upsellpopup#ObjectDesktopPopupB > footer > span > a {
  color: #616161;
}

.odupsellpopup#ObjectDesktopPopup > footer > span > a:hover, .odupsellpopup#ObjectDesktopPopupB > footer > span > a:hover,
.upsellpopup#ObjectDesktopPopup > footer > span > a:hover,
.upsellpopup#ObjectDesktopPopupB > footer > span > a:hover {
  color: #0d4d8b;
}

.odupsellpopup#ObjectDesktopPopup > footer .nothankyou, .odupsellpopup#ObjectDesktopPopupB > footer .nothankyou,
.upsellpopup#ObjectDesktopPopup > footer .nothankyou,
.upsellpopup#ObjectDesktopPopupB > footer .nothankyou {
  color: #616161;
  padding-bottom: 2px;
  text-decoration: underline;
}

.odupsellpopup#ObjectDesktopPopup > footer .nothankyou:hover, .odupsellpopup#ObjectDesktopPopupB > footer .nothankyou:hover,
.upsellpopup#ObjectDesktopPopup > footer .nothankyou:hover,
.upsellpopup#ObjectDesktopPopupB > footer .nothankyou:hover {
  color: #0d4d8b;
}

.odupsellpopup#EssentialsPopup,
.upsellpopup#EssentialsPopup {
  background: url("../jpg/upsell_popup_background.jpg") no-repeat;
  background-size: cover;
  border: 2px solid #259cd2;
  box-sizing: border-box;
  max-width: 800px;
}

.odupsellpopup#EssentialsPopup > .border2,
.upsellpopup#EssentialsPopup > .border2 {
  border: 2px solid #259cd2;
  bottom: 8px;
  box-sizing: border-box;
  left: 8px;
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 1;
}

.odupsellpopup#EssentialsPopup > header,
.upsellpopup#EssentialsPopup > header {
  position: relative;
  z-index: 2;
}

.odupsellpopup#EssentialsPopup .discount,
.upsellpopup#EssentialsPopup .discount {
  background-color: rgba(0, 138, 205, 0.9);
  color: #FFF;
  position: relative;
  z-index: 2;
}

.odupsellpopup#EssentialsPopup .price,
.upsellpopup#EssentialsPopup .price {
  margin: 1.25em 0 1em;
  position: relative;
  z-index: 2;
}

.odupsellpopup#EssentialsPopup .price .was,
.upsellpopup#EssentialsPopup .price .was {
  color: #999;
  margin-right: 1em;
  text-decoration: line-through;
}

.odupsellpopup#EssentialsPopup .price .now,
.upsellpopup#EssentialsPopup .price .now {
  color: #393;
  font-size: 24px;
}

.odupsellpopup#EssentialsPopup .purchase,
.upsellpopup#EssentialsPopup .purchase {
  margin-bottom: 1.25em;
  position: relative;
  z-index: 2;
}

.odupsellpopup#EssentialsPopup > footer,
.upsellpopup#EssentialsPopup > footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0.5em 0 2em 0;
  padding: 0 2em;
  position: relative;
  width: 100%;
  z-index: 2;
}

@media (min-width: 768px) {
  .odupsellpopup#EssentialsPopup > footer,
.upsellpopup#EssentialsPopup > footer {
    flex-direction: row;
  }
}

.odupsellpopup#EssentialsPopup > footer > span,
.upsellpopup#EssentialsPopup > footer > span {
  margin-bottom: 1em;
}

@media (min-width: 768px) {
  .odupsellpopup#EssentialsPopup > footer > span,
.upsellpopup#EssentialsPopup > footer > span {
    margin-bottom: 0;
  }
}

.odupsellpopup#EssentialsPopup > footer > span > a,
.upsellpopup#EssentialsPopup > footer > span > a {
  color: #259cd2;
}

.odupsellpopup#EssentialsPopup > footer > span > a:hover,
.upsellpopup#EssentialsPopup > footer > span > a:hover {
  color: #0d4d8b;
}

.odupsellpopup#EssentialsPopup > footer .nothankyou,
.upsellpopup#EssentialsPopup > footer .nothankyou {
  color: #616161;
  padding-bottom: 2px;
  text-decoration: underline;
}

.odupsellpopup#EssentialsPopup > footer .nothankyou:hover,
.upsellpopup#EssentialsPopup > footer .nothankyou:hover {
  color: #0d4d8b;
}

.odupsellpopup#GameBundlePopup,
.upsellpopup#GameBundlePopup {
  background: url("../upsell_popup_ent_background.html") no-repeat;
  background-size: cover;
  border: 2px solid #5CD0F7;
  box-sizing: border-box;
  color: #FFF;
  max-width: 880px;
  width: 100%;
}

.odupsellpopup#GameBundlePopup > header,
.upsellpopup#GameBundlePopup > header {
  font-size: 1.5em;
  max-width: 515px;
  text-shadow: 0 0 10px rgba(19, 81, 138, 0.5);
}

@media (max-width: 767px) {
  .odupsellpopup#GameBundlePopup > header,
.upsellpopup#GameBundlePopup > header {
    font-size: 1.1em;
  }
}

.odupsellpopup#GameBundlePopup .discount,
.upsellpopup#GameBundlePopup .discount {
  background-color: #f6f6f6;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.25);
  color: #036;
  font-weight: 600;
}

.odupsellpopup#GameBundlePopup .price,
.upsellpopup#GameBundlePopup .price {
  font-size: 1.5em;
  margin: 1em 0;
}

.odupsellpopup#GameBundlePopup .price .was,
.upsellpopup#GameBundlePopup .price .was {
  color: #999;
  margin-right: 1em;
  text-decoration: line-through;
}

.odupsellpopup#GameBundlePopup .price .now,
.upsellpopup#GameBundlePopup .price .now {
  color: #62EB50;
  font-weight: 600;
}

.odupsellpopup#GameBundlePopup .purchase,
.upsellpopup#GameBundlePopup .purchase {
  margin: 0;
}

.odupsellpopup#GameBundlePopup img,
.upsellpopup#GameBundlePopup img {
  margin-top: 1em;
}

.odupsellpopup#GameBundlePopup > footer,
.upsellpopup#GameBundlePopup > footer {
  color: #999;
  position: absolute;
  right: 10px;
  top: 10px;
}

.odupsellpopup#GameBundlePopup > footer .nothankyou,
.upsellpopup#GameBundlePopup > footer .nothankyou {
  border-bottom: 1px solid #999;
  color: #999;
  padding-bottom: 2px;
  text-decoration: none;
}

.odupsellpopup#GameBundlePopup > footer .nothankyou:hover,
.upsellpopup#GameBundlePopup > footer .nothankyou:hover {
  color: #CCC;
  border-bottom: 1px solid #CCC;
}

.nowrapper .featherlight-content {
  border: 0;
  margin: 0;
  padding: 0;
}

.nowrapper .featherlight-content .featherlight-previous {
  left: 0;
  top: 0;
}

.nowrapper .featherlight-content .featherlight-next {
  right: 0;
  top: 0;
}
