﻿a {
  text-decoration: none; }

body {
  background-color: #000000; }
  body.modal-open {
    overflow: hidden; }

#MainContainer {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  opacity: 1.0;
  background: white; }
  #MainContainer.Darken {
    animation: fade-out 0.5s forwards;
    -ms-animation: fade-out 0.5s forwards;
    -webkit-animation: fade-out 0.5s forwards; }
  #MainContainer.Lighten {
    animation: fade-in 0.5s forwards;
    -ms-animation: fade-in 0.5s forwards;
    -webkit-animation: fade-in 0.5s forwards; }

@-webkit-keyframes fade-out {
  100% {
    opacity: 0.3; } }

@-webkit-keyframes fade-in {
  0% {
    opacity: 0.3; }
  100% {
    opacity: 1.0; } }

#MasterHeader {
  width: 100%;
  margin: 0 auto;
  position: sticky;
  top: 0px;
  z-index: 210; }
  #MasterHeader #HeaderLogo {
    display: flex;
    justify-content: space-between;
    height: 100px;
    background-color: #1A72B6; }
    #MasterHeader #HeaderLogo #MasterLogo {
      display: flex;
      width: auto;
      float: left;
      cursor: pointer;
      text-decoration: none; }
      #MasterHeader #HeaderLogo #MasterLogo img {
        height: 70px;
        margin: 20px 20px 0 30px;
        -webkit-filter: drop-shadow(5px 5px 5px #222);
        filter: drop-shadow(5px 5px 5px #222); }
      #MasterHeader #HeaderLogo #MasterLogo h1 {
        color: white;
        font-size: 50px;
        margin: auto;
        font-weight: 200;
        font-family: 'Dosis', sans-serif; }
      #MasterHeader #HeaderLogo #MasterLogo img.LogoSmall {
        display: none; }
    #MasterHeader #HeaderLogo #HeaderRight {
      margin-right: 0;
      height: 100px;
      display: flex;
      background: #245882;
      padding-right: 60px;
      box-sizing: border-box; }
      #MasterHeader #HeaderLogo #HeaderRight #DiagonalBackground {
        background: linear-gradient(60deg, #1A72B6 50%, transparent 51%);
        width: 60px;
        height: 100px;
        margin-right: 70px; }
      #MasterHeader #HeaderLogo #HeaderRight #LogInNameContainer {
        display: block;
        text-align: center;
        box-sizing: border-box;
        color: #202020; }
        #MasterHeader #HeaderLogo #HeaderRight #LogInNameContainer #UserActionsContainer {
          width: 120%;
          background: #0086C0;
          z-index: 205;
          position: relative;
          display: flex;
          flex-direction: column;
          border-top: 2px solid white;
          border-left: 2px solid white;
          border-right: 2px solid white;
          margin-top: -6px;
          margin-left: -10px;
          -webkit-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.75);
          -moz-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.75);
          box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.75);
          box-sizing: border-box; }
          #MasterHeader #HeaderLogo #HeaderRight #LogInNameContainer #UserActionsContainer a {
            color: white;
            font-size: 15px;
            text-align: center;
            padding: 7px 0px;
            border-bottom: 2px solid white; }
          #MasterHeader #HeaderLogo #HeaderRight #LogInNameContainer #UserActionsContainer a:hover {
            background-color: #0864A1; }
      #MasterHeader #HeaderLogo #HeaderRight .TopIconLink.Cart {
        position: relative; }
      #MasterHeader #HeaderLogo #HeaderRight #HeaderSearchWrapper .HeaderSearchInputWrapper {
        display: flex;
        align-items: center; }
        #MasterHeader #HeaderLogo #HeaderRight #HeaderSearchWrapper .HeaderSearchInputWrapper input {
          display: none; }
      #MasterHeader #HeaderLogo #HeaderRight #HeaderSearchWrapper.Active {
        min-width: unset;
        max-width: unset;
        display: flex; }
        #MasterHeader #HeaderLogo #HeaderRight #HeaderSearchWrapper.Active span {
          width: unset;
          float: right; }
        #MasterHeader #HeaderLogo #HeaderRight #HeaderSearchWrapper.Active input {
          display: inline-block;
          width: 400px;
          height: 40px;
          font-size: 22px; }
      #MasterHeader #HeaderLogo #HeaderRight .TopIconLink {
        width: 100px;
        min-width: 100px;
        max-width: 100px;
        background-repeat: no-repeat;
        background-position: center 20px;
        background-size: 35px;
        text-decoration: none;
        cursor: pointer;
        transition: all .4s ease; }
        #MasterHeader #HeaderLogo #HeaderRight .TopIconLink > span {
          display: block;
          width: 100%;
          height: 100%;
          text-align: center;
          box-sizing: border-box;
          font-size: 14px;
          text-decoration: none;
          color: white;
          cursor: pointer;
          transition: all .4s ease;
          font-weight: 400;
          text-transform: uppercase;
          font-family: 'Dosis', sans-serif;
          padding-top: 70px; }
      #MasterHeader #HeaderLogo #HeaderRight .TopIconLink.Search {
        display: flex;
        flex-direction: column; }
      #MasterHeader #HeaderLogo #HeaderRight #CartCount {
        position: absolute;
        left: 40px;
        top: 12px;
        width: 50px;
        text-align: center;
        opacity: 1;
        transition: all .4s ease;
        color: white; }
        @supports (-ms-ime-align: auto) {
          #MasterHeader #HeaderLogo #HeaderRight #CartCount {
            left: 55px;
            width: 15px; } }
        #MasterHeader #HeaderLogo #HeaderRight #CartCount .odometer-inside {
          background-color: #E79B18;
          box-sizing: border-box;
          border-radius: 18px;
          display: unset;
          font-size: 20px;
          font-weight: 500;
          width: 20px;
          height: 20px;
          line-height: 20px;
          padding: 0 7px 4px 7px;
          color: white; }
          #MasterHeader #HeaderLogo #HeaderRight #CartCount .odometer-inside * {
            font-size: 22px;
            font-weight: 600;
            text-align: center;
            min-width: 11px; }
  #MasterHeader #HeaderSearchWrapperMobile {
    display: none; }

#MasterNav {
  width: 100%;
  background: black;
  margin: 0px auto;
  position: sticky;
  top: 101px;
  z-index: 200;
  display: flex; }

#ShopMenuNav {
  padding-bottom: 1px;
  margin: 0 auto; }

#MasterPageAndFooter {
  width: 100%;
  margin: 0 auto;
  flex: 1 0 auto;
  background: white;
  font-family: "Dosis", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center; }
  #MasterPageAndFooter #MasterPage {
    width: 100%;
    min-height: calc(100% - 120px); }
    #MasterPageAndFooter #MasterPage .IllustrationImageContainer {
      display: none; }
    #MasterPageAndFooter #MasterPage #MasterMenu {
      background-color: #0080B5;
      width: 100%;
      display: block;
      border-bottom: 0;
      padding-bottom: 0;
      margin-right: 0; }
      #MasterPageAndFooter #MasterPage #MasterMenu #nav {
        line-height: 1;
        width: 100%; }
        #MasterPageAndFooter #MasterPage #MasterMenu #nav li {
          float: left;
          display: block;
          position: relative; }
          #MasterPageAndFooter #MasterPage #MasterMenu #nav li a {
            display: block;
            color: white;
            text-align: center;
            padding: 14px 26px;
            text-decoration: none;
            font-size: 15px; }
            #MasterPageAndFooter #MasterPage #MasterMenu #nav li a:hover {
              color: white; }
            #MasterPageAndFooter #MasterPage #MasterMenu #nav li a:hover:after {
              content: "";
              position: absolute;
              top: 75%;
              left: 40%;
              width: 0px;
              height: 0px;
              margin: 0px auto;
              border-left: 15px solid transparent;
              border-right: 15px solid transparent;
              border-bottom: 15px solid white; }
    #MasterPageAndFooter #MasterPage #PageContent .BanricHeader {
      padding: 10px;
      margin: 0px 0px 10px 0px;
      border: 2px solid #C8C8C8;
      border-radius: 5px; }

#MasterFooter {
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0px;
  flex-shrink: 0;
  color: white;
  clear: both;
  border-top: 1px solid white;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5); }
  #MasterFooter div.FooterSection {
    width: 300px;
    text-align: center; }
  #MasterFooter div.Wrapper {
    color: #E6BF02;
    width: 200px;
    margin: 0 auto;
    padding-bottom: 10px; }
    #MasterFooter div.Wrapper h3 {
      font-size: 14px;
      font-weight: normal;
      color: white; }
  #MasterFooter div.FastDelivery {
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 40px; }
  #MasterFooter div.PaymentMethods {
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 40px; }
  #MasterFooter div.FooterLink {
    width: 90%;
    margin-top: 40px;
    margin-left: 20px;
    color: white; }
    #MasterFooter div.FooterLink ul {
      background-color: transparent; }
    #MasterFooter div.FooterLink a {
      text-decoration: none;
      color: white; }
      #MasterFooter div.FooterLink a li {
        font-size: 14px;
        height: 20px;
        line-height: 20px;
        text-decoration: underline; }
    #MasterFooter div.FooterLink h3 {
      margin-bottom: 10px;
      font-weight: bold; }

#NotFound {
  margin: 10px; }
  #NotFound h2 {
    font-weight: normal; }

.MobileOnly, .OnlyOnMobile, .OnlyOnMobileFlex {
  display: none; }

.GsExpandable .Details {
  height: 0;
  overflow: hidden; }
  .GsExpandable .Details.Active {
    height: auto; }

.NormalButton {
  background-color: #0864A1;
  border: 1px solid black;
  color: #ffffff;
  cursor: pointer;
  font-size: 20px;
  height: 40px;
  text-align: center;
  border-radius: 5px;
  line-height: 40px;
  text-decoration: none;
  box-sizing: border-box;
  width: 100px; }

button.NormalButton::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin-top: -2px;
  margin-bottom: -2px; }

.NormalButton.EditPart {
  cursor: pointer;
  position: absolute;
  right: 3px;
  top: 3px;
  height: 28px;
  line-height: 28px;
  width: 28px;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  color: #ff0033;
  border: none;
  background-color: white; }

.NormalButton.Faded {
  border-color: #0070a5;
  background-color: #ffffff;
  color: #747474; }

.NormalButton.Discrete {
  background: none;
  border-color: #0070a5;
  background-color: #ffffff;
  color: #747474; }

.NormalButton.Highlight {
  background: #0864A1;
  color: white;
  border-color: white; }

.NormalButton.WarningButton {
  background-color: white;
  background-image: none;
  color: #b0061b;
  border-color: #b0061b; }

.NormalButton.DisabledButton {
  background-color: #EFEFEF;
  color: #C8C8C8;
  border-color: #C8C8C8;
  cursor: progress; }

.NormalButton.SmallButton {
  height: 30px;
  line-height: 25px;
  font-size: 15px;
  color: black; }

.CampaginCorner {
  background-color: #00D221;
  color: white;
  position: absolute;
  right: -76px;
  transform: rotate(45deg);
  padding: 4px;
  width: 200px;
  text-align: center;
  top: 9px;
  z-index: 200;
  font-size: 24px;
  font-weight: bold;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  box-shadow: 0px 1px 8px 0px #000000;
  -webkit-box-shadow: 0px 1px 8px 0px #000000;
  -moz-box-shadow: 0px 1px 8px 0px #000000; }
  .CampaginCorner.Red {
    background-color: red; }

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden; }

.NoTextSelect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome and Opera */ }

.CenterText {
  text-align: center; }

.Left {
  float: left; }

.Right {
  float: right; }

.ArrowRight {
  width: 0;
  height: 0;
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent;
  border-left: 60px solid green; }

.MobileOnly, .OnlyOnMobile {
  display: none; }

/*.DesktopOnly, .OnlyOnDesktop {
    display: block;
}*/
/* =============== Fieldset =========================== */
.fieldset,
fieldset {
  border: 0 none;
  clear: both;
  width: auto; }

.fieldset {
  overflow: hidden; }

.fieldset legend,
fieldset legend {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 15px; }

.fieldset legend.small,
fieldset legend.small {
  font-size: 10px; }

.fieldset label,
fieldset label {
  clear: both;
  float: left;
  line-height: 22px;
  height: 22px;
  margin-top: 10px;
  padding-right: 10px;
  text-align: left;
  width: 130px;
  vertical-align: middle;
  display: block;
  font-size: 15px; }

.fieldset label.Error,
fieldset label.Error {
  clear: none;
  color: Red;
  float: left;
  padding-left: 10px;
  white-space: nowrap; }

.fieldset input,
fieldset input {
  float: left;
  margin-top: 10px;
  width: 200px;
  border: 1px solid #999999;
  display: block;
  font-size: 15px; }

.fieldset input.valid,
fieldset input.valid {
  background-color: #ccffcc; }

.fieldset input.Error,
fieldset input.Error {
  background-color: #ffcccc; }

.fieldset input[type=submit],
fieldset input[type=submit] {
  clear: both;
  margin: 10px 0 10px 135px; }

.fieldset input[type=checkbox],
fieldset input[type=checkbox] {
  width: auto; }

.fieldset select,
fieldset select {
  border: 1px solid #999999;
  display: block;
  float: left;
  margin-top: 10px;
  width: 200px; }

.fieldset > span,
fieldset > span,
.fieldset .Field,
fieldset .Field {
  float: left;
  margin-top: 10px;
  width: 200px;
  display: block; }

.fieldset button,
fieldset button {
  float: left;
  margin-top: 0;
  width: 208px;
  display: block;
  clear: both;
  margin-bottom: 10px;
  margin-left: 140px; }

.fieldset a,
fieldset a {
  clear: both;
  display: block;
  float: left;
  margin-bottom: 10px;
  margin-left: 140px;
  margin-top: 0; }

.fieldset a.NormalButton,
fieldset a.NormalButton {
  width: 208px; }

.fieldset img,
fieldset img {
  float: left;
  margin-top: 0;
  margin-left: 140px;
  width: 200px;
  display: block;
  clear: both;
  margin-bottom: 10px; }

.fieldset textarea,
fieldset textarea {
  border: 1px solid #999999;
  display: block;
  float: left;
  margin-top: 10px;
  width: 720px; }

.fieldset .mceEditor,
fieldset .mceEditor {
  display: block;
  float: left;
  margin-top: 10px;
  width: 720px; }

.fieldset div.Spacer,
fieldset div.Spacer {
  float: left;
  margin-top: 0;
  width: 202px;
  display: block;
  clear: both;
  margin-top: 20px; }

.fieldset div.Heading,
fieldset div.Heading {
  border-bottom: 1px solid #0070A5;
  clear: both;
  display: block;
  float: left;
  font-weight: bold;
  margin-top: 10px;
  width: 350px; }

.fieldset.validationGroup .fake,
fieldset.validationGroup .fake {
  float: left;
  margin-top: 5px;
  width: 200px; }

fieldset.Explain,
fieldset.LogIn,
fieldset.NewUser {
  margin-top: 20px;
  width: 400px;
  margin-bottom: 20px;
  border: 0; }

fieldset.Explain,
fieldset.LogIn {
  margin-bottom: 40px; }

fieldset.Explain legend, fieldset.LogIn legend, fieldset.NewUser legend {
  font-weight: bold;
  margin-bottom: 5px; }

fieldset .Explanation {
  float: left;
  width: 100%;
  font-size: 12px;
  font-style: italic;
  height: 12px;
  font-weight: normal;
  color: black;
  line-height: 1;
  margin-left: 130px; }

fieldset .ui-progressbar {
  clear: both;
  float: left;
  margin-left: 140px;
  margin-top: 0;
  width: 208px;
  margin-bottom: 10px; }

fieldset .ReadOnly {
  background-color: lightgray;
  color: darkgray; }

.Hidden {
  display: none; }

/* ================= Sliding basket ===================== */
#BasketOverlay {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  min-height: 100%;
  top: 0;
  width: 100%;
  z-index: 1200;
  opacity: 0.0; }

#BasketWindow {
  height: 100%;
  right: 0;
  position: fixed;
  top: 0;
  min-height: 100%;
  width: 500px;
  z-index: 1300;
  background-color: white;
  transform: translateX(100%);
  -ms-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  will-change: transform;
  padding: 0 10px 0 10px;
  max-width: 480px;
  box-sizing: border-box;
  overflow-y: scroll; }
  #BasketWindow.SlideIn {
    animation: slide-in .5s forwards;
    -ms-animation: slide-in .5s forwards;
    -webkit-animation: slide-in .5s forwards; }
  #BasketWindow.SlideOut {
    animation: slide-out .5s forwards;
    -ms-animation: slide-out .5s forwards;
    -webkit-animation: slide-out .5s forwards; }

@-webkit-keyframes slide-in {
  100% {
    -webkit-transform: translateX(0%); } }

@-webkit-keyframes slide-out {
  0% {
    -webkit-transform: translateX(0%); }
  100% {
    -webkit-transform: translateX(100%); } }
  #BasketWindow .BasketWindowWaitContainer {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column; }
    #BasketWindow .BasketWindowWaitContainer .BasketWindowWaitIcon {
      margin: 0 auto;
      width: 100px;
      height: 100px;
      background-position: center center;
      background-repeat: no-repeat;
      background-size: contain; }

/* =============== PleaseWaitOverlay =========================== */
#PleaseWaitOverlay {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  min-height: 100%;
  top: 0;
  width: 100%;
  z-index: 1200;
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0.4); }

#PleaseWaitFloater {
  float: left;
  height: 50%;
  width: 100%;
  margin-bottom: -50px; }

#PleaseWait {
  clear: both;
  background: #000000;
  width: 200px;
  height: 200px;
  border-radius: 5px;
  background-position: center center;
  background-repeat: no-repeat;
  margin-left: auto;
  margin-right: auto; }

/* =============== SuccessOverlay =========================== */
#SuccessOverlay {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  min-height: 100%;
  top: 0;
  width: 100%;
  z-index: 1200;
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0.4); }

#SuccessFloater {
  float: left;
  height: 50%;
  width: 100%;
  margin-bottom: -50px; }

#SuccessImage {
  clear: both;
  background: transparent;
  width: 200px;
  height: 200px;
  border-radius: 5px;
  background-position: center center;
  background-repeat: no-repeat;
  margin-left: auto;
  margin-right: auto; }

/* =============== Modal Dialog Overlay =========================== */
#ModalDialogOverlay {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  min-height: 100%;
  top: 0;
  width: 100%;
  z-index: 300;
  background-color: rgba(0, 0, 0, 0.4); }

h1 {
  font-weight: bold;
  font-size: 30px; }

h2 {
  font-weight: bold;
  font-size: 20px; }

h3 {
  font-weight: bold;
  font-size: 15px; }

small {
  display: block;
  font-size: 10px;
  font-weight: normal;
  margin-bottom: 3px; }

.modal-backdrop {
  opacity: 0.6 !important; }

div.Separator {
  display: block;
  height: 1px;
  background: white; }

/* =============== row / column =========================== */
/*div.container {
    width: $PageWidth;
    margin: 0 auto;
}*/
.row {
  float: left;
  width: 100%;
  display: flex;
  margin: 5px 10px 0px 10px; }
  .row .column {
    width: 100%; }
  .row .columns-2 {
    width: 50%; }
  .row .column.center {
    text-align: center; }

.row.relative {
  position: relative; }

.row.center {
  width: auto; }

.row.small {
  margin: 0; }

.row.large {
  margin: 5px 10px 15px 10px; }

[class*=column] + [class*=column]:last-child {
  float: right; }

/* =============== row / column =========================== */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 250;
  /* Sit on top */
  background-color: white;
  border: 1px solid black; }
  .modal .modal-content {
    background-color: white;
    width: 99%;
    height: 99%;
    color: black; }
    .modal .modal-content .close {
      display: initial;
      float: right;
      font-size: 20px;
      margin-right: 5px; }
    .modal .modal-content .close:hover,
    .modal .modal-content .close:focus {
      color: black;
      text-decoration: none;
      cursor: pointer; }

#MasterPage #LandingPage .Component .Heading {
  margin-top: 0px; }

.BuyZoom {
  margin-top: 25px;
  transform: scale(2); }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #MasterHeader #HeaderLogo #MasterLogo {
    align-items: center; } }
