:root {
  --spacingbase: 0.9em;
}

@media (min-width: 992px) {
  :root {
    --spacingbase: 1em;
  }
}
@media (min-width: 1200px) {
  :root {
    --spacingbase: 1.1em;
  }
}
/*2*/
/*4*/
/*8*/
/*12*/
/*20*/
/*32*/
/*52*/
/*84*/
/* component spacing */
/*Spacing used for container columns layouts*/
:root {
  /* set base values */
  --text-base-size: 1em;
  --text-scale-ratio: 1.1;
  /* type scale */
  --text-xs: calc(1em / (var(--text-scale-ratio) * var(--text-scale-ratio)));
  --text-sm: calc(1em / var(--text-scale-ratio));
  --text-md: calc(1.01em * var(--text-scale-ratio));
  --text-lg: calc(1em * var(--text-scale-ratio) * var(--text-scale-ratio));
  --text-xl: calc(1em * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio));
  --text-xxl: calc(1em * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio));
  --text-xxxl: calc(1em * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio));
  /* line-height */
  --heading-line-height: 1;
  --text-lineheight: 1.4;
  --text-lineheight-sm: 1.3;
  --text-lineheight-md: 1.45;
  --text-lineheight-lrg: 1.5;
}

@media (min-width: 992px) {
  :root {
    --text-scale-ratio: 1.15;
    --text-lineheight: 1.45;
  }
}
@media (min-width: 1200px) {
  :root {
    --text-scale-ratio: 1.2;
    --text-lineheight: 1.5;
  }
}
.orange-border-bottom {
  border-bottom: 2px solid #ff6633 !important;
  padding: 5px 0px !important;
}

.white-border-bottom, .navcontainer .navlist-container h3 {
  border-bottom: 1px solid #fff !important;
}

.light-grey-border {
  border: 1px solid #b3b3b3 !important;
}

.light-grey-border-top {
  border-top: 1px solid #b3b3b3 !important;
}

.lighter-grey-border {
  border: 1px solid #cbd0d1 !important;
}

.lighter-grey-border-bottom, .navcontainer .navlist-container h3 {
  border-bottom: 1px solid #cbd0d1 !important;
}

.border-bottom-grey {
  border-bottom: 1px solid #999 !important;
}

.border-top-grey {
  border-top: 1px solid #999 !important;
}

.border-bottom-light-grey {
  border-bottom: 1px solid #b3b3b3 !important;
}

.border-top-light-grey {
  border-top: 1px solid #b3b3b3 !important;
}

.border-bottom-x-light-grey {
  border-bottom: 1px solid #e6e6e6 !important;
}

.border-top-x-light-grey {
  border-top: 1px solid #e6e6e6 !important;
}

div.border-bottom-x-light-grey {
  margin: 1em 0 !important;
}

.white-border-dashed-offset {
  outline: 1px dashed #fff;
  outline-offset: -6px;
}

.x-light-grey-border {
  border: 1px solid #e6e6e6 !important;
}

.maincontainer h1,
.maincontainer h2,
.maincontainer h3,
.maincontainer h4 {
  color: #333332;
}
.maincontainer h1 a,
.maincontainer h2 a,
.maincontainer h3 a,
.maincontainer h4 a {
  color: #333332;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 290px;
  min-height: 100vh;
}

.is-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.is-flex .maincontainer {
  -moz-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100vh;
  min-width: 0;
}
.is-flex.flexdirection-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.container {
  height: calc(100% - 7.5em);
}

hr {
  border: 1px solid #e6e6e6;
  margin: 1.8em 0;
}

hr:last-of-type {
  margin-top: 0;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.container-list-tiles {
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin: 1em 0;
}
.container-list-tiles > div {
  padding: 1em 0 2em 0;
  -moz-flex: 1 0 24%;
  -webkit-flex: 1 0 24%;
  -ms-flex: 1 0 24%;
  flex: 1 0 24%;
  max-width: 24%;
}
.container-list-tiles > div img:first-of-type {
  border: 1px solid #e6e6e6;
  width: 270px;
  height: 200px;
  border-radius: 5px;
  opacity: 0.9;
  padding: 0;
}
.container-list-tiles > div img:nth-of-type(2) {
  border: none;
}
.container-list-tiles > div h3 {
  font-size: 0.8em;
  font-weight: bold;
}
.container-list-tiles > div .button {
  float: unset;
  margin: 0.7em auto 0 auto;
  display: block;
  border-radius: 0;
}

@media screen and (max-width: 1024px) {
  .maincontainer {
    min-height: 360px;
  }
}
@media screen and (max-width: 991px) {
  .is-flex {
    flex-direction: column;
  }
  .is-flex .rightcol {
    margin-left: 0px;
    max-width: 100%;
  }
}
.container {
  width: 1140px;
  background: #fff;
  margin: 0 auto;
  padding: 0;
}
.container.is-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.container.is-flex .leftcol {
  margin-right: 1.8em;
}
.container.is-flex .maincol {
  -moz-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
  min-width: 0;
}
.container.is-flex .rightcol {
  margin-left: 1.8em;
  max-width: 31.8em;
}

.maincontainer .container {
  padding: 1.8em 0;
}
.maincontainer .container .information {
  background: #ebf0f2;
  padding: 1em;
  border-radius: 15px;
}
.maincontainer .container .information p:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 1190px) {
  .container {
    padding: 0 1em;
    width: 100%;
    max-width: 1140px;
  }

  .maincontainer .container {
    padding: 1.8em 1em;
  }
}
@media screen and (max-width: 1024px) {
  .maincontainer {
    min-height: 360px;
  }
}
@media screen and (max-width: 991px) {
  .container.is-flex {
    flex-direction: column;
  }
  .container.is-flex .rightcol {
    margin-left: 0px;
    max-width: 100%;
  }
}
a {
  color: #0071bc;
  text-decoration: none;
}
a:hover, a:active {
  color: #094c72;
  text-decoration: underline;
}
a.white {
  color: #fff;
}

.is-linkback {
  text-align: right;
}
.is-linkback:before {
  content: "<";
  color: #0071bc;
}
.is-linkback:before:hover, .is-linkback:before:active {
  color: #094c72;
  text-decoration: underline;
}
.is-linkback a:hover {
  text-decoration: none;
}

.margin-none {
  margin: 0px !important;
}

.short-content-spacing {
  margin: 4% 0 6% 0 !important;
}

.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.margin-s {
  margin: 5px !important;
}

.margin-m {
  margin: 1em !important;
}

.margin-l {
  margin: 1.8em !important;
}

.margin-left-s {
  margin-left: 5px !important;
}

.margin-left-m {
  margin-left: 1em !important;
}

.margin-left-l {
  margin-left: 1.8em !important;
}

.margin-right-s {
  margin-right: 5px !important;
}

.margin-right-m {
  margin-right: 1em !important;
}

.margin-right-l {
  margin-right: 1.8em !important;
}

.margin-top-s {
  margin-top: 10px !important;
}

.margin-top-m {
  margin-top: 1.8em !important;
}

.margin-top-l {
  margin-top: 50px !important;
}

.margin-bottom-s {
  margin-bottom: 10px !important;
}

.margin-bottom-m {
  margin-bottom: 1.8em !important;
}

.margin-bottom-l {
  margin-bottom: 50px !important;
}

.margin-bottom-40 {
  margin-bottom: 40%;
}

.navcontainer {
  min-height: 100vh;
  min-width: 400px;
  max-width: 400px;
  background-color: #0071bc;
  padding: 1em;
  position: fixed;
}
.navcontainer h1, .navcontainer h2, .navcontainer h3, .navcontainer h4, .navcontainer li, .navcontainer a {
  color: #fff;
}
.navcontainer h2 {
  font-size: var(--text-xl);
}
.navcontainer .navlist-container {
  overflow: scroll;
  max-height: calc(100vh - 100px);
}
.navcontainer .navlist-container h3 {
  margin: 16px 0 8px 0;
  display: block;
  font-size: 1em;
  font-weight: bold;
  width: 100%;
  color: #fff;
}
.navcontainer .navlist-container h3:first-of-type {
  margin: 0 0 8px 0;
}
.navcontainer .navlist-container a {
  text-decoration: none;
}
.navcontainer .navlist-container a:hover {
  background-color: #094c72;
}
.navcontainer .navlist-container ul {
  padding: 0;
  margin: 0;
}
.navcontainer .navlist-container ul li {
  list-style: none;
  line-height: 1.5em;
  background: none;
  padding: 0;
  margin: 5px;
  position: relative;
  right: 5px;
}
.navcontainer .navlist-container ul li a {
  width: 100%;
  height: 100%;
  display: block;
  padding-left: 5px;
}
.navcontainer .navlist-container ul li.is-dropdown {
  font-weight: 600;
  right: 0;
}
.navcontainer .navlist-container ul li.is-dropdown label {
  display: inline-block;
  -webkit-transform: rotate(90deg) scale(1, 1.5);
  -moz-transform: rotate(90deg) scale(1, 1.5);
  -ms-transform: rotate(90deg) scale(1, 1.5);
  -o-transform: rotate(90deg) scale(1, 1.5);
  transform: rotate(90deg) scale(1, 1.5);
  font-size: 18px;
  margin-right: 5px;
  font-weight: 400;
  color: white;
}
.navcontainer .navlist-container ul li.is-dropdown label + ul li {
  display: none;
  font-weight: 400;
}
.navcontainer .navlist-container ul li.is-dropdown input[type=checkbox]:checked + label {
  -webkit-transform: rotate(270deg) scale(1, 1.5);
  -moz-transform: rotate(270deg) scale(1, 1.5);
  -ms-transform: rotate(270deg) scale(1, 1.5);
  -o-transform: rotate(270deg) scale(1, 1.5);
  transform: rotate(270deg) scale(1, 1.5);
}
.navcontainer .navlist-container ul li.is-dropdown input[type=checkbox]:checked + label + ul {
  margin: 0 0 0 15px;
}
.navcontainer .navlist-container ul li.is-dropdown input[type=checkbox]:checked + label + ul li {
  display: block;
}

.section-padding {
  padding: 1.8em 0;
}

.section-padding-lrg {
  padding: 40px 0px;
}

@media only screen and (max-width: 767px) {
  .section-padding, .section-padding-lrg {
    padding: 1em 0;
  }
}
.padding-s {
  padding: 5px !important;
}

.padding-m {
  padding: 1em !important;
}

.padding-l {
  padding: 1.8em !important;
}

.padding-left-s, .navcontainer .navlist-container h3 {
  padding-left: 5px !important;
}

.padding-left-m {
  padding-left: 1em !important;
}

.padding-left-l {
  padding-left: 1.8em !important;
}

.padding-right-s {
  padding-right: 5px !important;
}

.padding-right-m {
  padding-right: 1em !important;
}

.padding-right-l {
  padding-right: 1.8em !important;
}

.padding-top-s {
  padding-top: 10px !important;
}

.padding-top-m {
  padding-top: 1.8em !important;
}

.padding-top-l {
  padding-top: 50px !important;
}

.padding-bottom-s {
  padding-bottom: 10px !important;
}

.padding-bottom-m {
  padding-bottom: 1.8em !important;
}

.padding-bottom-l {
  padding-bottom: 50px !important;
}

body {
  background: #fff !important;
  color: #333332;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

p {
  margin: 0 0 10px;
}
p.is-warning {
  color: #b50000;
  display: inline;
  margin-left: calc(0.25 * var(--spacingbase));
}
p.is-warning:first-child {
  margin-left: 0;
}

.smaller-text {
  font-size: 0.9em;
}

h1, h2, h3, h4, h5, .h2, .h3, .h4, h5, .h5 {
  font-family: inherit;
  font-weight: 500;
  line-height: var(--heading-line-height);
  margin: calc(0.75 * var(--spacingbase)) 0 calc(0.5 * var(--spacingbase)) 0;
  color: #ff6633;
}
h1.is-underlined, h2.is-underlined, h3.is-underlined, h4.is-underlined, h5.is-underlined, .h2.is-underlined, .h3.is-underlined, .h4.is-underlined, h5.is-underlined, .h5.is-underlined {
  border-bottom: 1px solid #ff6633;
  padding-bottom: calc(0.1125 * var(--spacingbase));
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, .h2:first-child, .h3:first-child, .h4:first-child, h5:first-child, .h5:first-child {
  margin-top: 0;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, .h2:last-child, .h3:last-child, .h4:last-child, h5:last-child, .h5:last-child {
  margin-bottom: 0;
}

h1, .h1 {
  font-size: var(--text-xxxl);
}

h2, .h2 {
  font-size: var(--text-xxl);
}

h3, .h3 {
  font-size: var(--text-xl);
}

h4, .h4 {
  font-size: var(--text-lg);
}

h5, .h5 {
  font-size: var(--text-md);
  line-height: var(--text-lineheight);
}

cite {
  margin: 1em 2em;
  font-style: italic;
  display: inline-block;
  border-left: 2px solid #ff6633;
  padding: 0 1.6em;
  color: rgba(51, 51, 51, 0.3);
}

.smallprint {
  font-size: 12px;
}

.nowrap, .text-nowrap {
  white-space: nowrap !important;
}

.pre-wrap {
  white-space: pre-wrap !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.navcontainer .navlist-container h3 {
  text-transform: uppercase;
}

.text-highlight {
  font-weight: 600;
}

.iefix-word-break {
  -ms-word-break: break-all;
}

.light-grey-text {
  color: #b3b3b3;
}

.is-dark input, .is-dark textarea {
  font-family: Courier, monospace;
}

.block {
  display: block;
}

.is-initiallyhidden {
  display: none;
}

input[type=submit], input[type=button], input[type=reset], button {
  font-family: inherit;
  font-size: inherit;
}

.button {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #115f82;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 7px 1em;
  text-align: center;
  text-decoration: none !important;
  white-space: nowrap;
  min-width: 120px;
}
.button.disabled {
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
}
.button:hover:enabled, .button:active:enabled {
  cursor: pointer;
  color: #fff;
}
.button:hover:enabled {
  -o-transition: background-color 0.3s ease, color 0.3s ease;
  -moz-transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: #324d5c;
}
.button:active:enabled {
  -o-transition: none;
  -moz-transition: none;
  -webkit-transition: none;
  transition: none;
  background-color: #283e49;
}
.button.is-large {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  padding: 5px 25px;
  min-width: 200px;
  font-size: 24px;
}
.button.is-small {
  padding: 5px 12px;
  min-width: 100px;
  font-size: 14px;
  line-height: 15px;
}
.button.is-warning {
  background-color: #d60000;
}
.button.is-warning:hover:enabled, .button.is-warning:active:enabled {
  background-color: #b50000;
}
.button.is-positiveaction {
  background-color: #70d16d;
}
.button.is-positiveaction:hover:enabled, .button.is-positiveaction:active:enabled {
  background-color: #089800;
}
.button a:hover {
  text-decoration: none;
}

button.button {
  border: none;
}

input[type=submit], input[type=button], input[type=reset] {
  text-size-adjust: 100%;
  -webkit-appearance: button;
}

@media only screen and (max-width: 767px) {
  input[type=submit], input[type=button], input[type=reset], button, .btn {
    margin: 1em 0;
  }
}
@media screen and (max-width: 480px) {
  input[type=submit], input[type=button], input[type=reset], button, .btn {
    margin: 2em auto;
    display: block;
    width: 100%;
  }
}
.top-links {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  flex: 0 1 100%;
}
.top-links .user-level-administrator {
  font-weight: bold;
}

.top-links p {
  padding: 0 10px;
}

.top-links p:last-child {
  display: none;
}

.shipping-info {
  display: flex;
  color: #0071bc;
  flex: 1 0 auto;
}

.shipping-info img {
  padding-right: 11px;
}

.navigation-header {
  display: flex;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

input, select, textarea {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  width: 100%;
  min-height: 1.5em;
  border: 1px solid #e6e6e6;
  padding: 0.4em;
  background-color: #fff;
  color: #333332;
  margin-bottom: 1em;
  max-width: 100%;
}
input:hover, select:hover, textarea:hover {
  border: 1px solid #cbd0d1;
}
input:focus, select:focus, textarea:focus {
  border: 1px solid #333332;
  outline: 1px solid #333332;
}

textarea {
  width: 100%;
}

form {
  max-width: 700px;
}
form input[type=username], form input[type=password] {
  max-width: 50%;
  display: block;
}
form button {
  display: inline-block;
  margin: 1em 0;
}

select {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin: 4px 0px;
  height: 30px;
  border: 1px solid #e6e6e6;
  padding: 4px;
  background-color: white !important;
  color: #333332;
  font-family: inherit;
  font-size: inherit;
  min-width: 120px;
  max-width: 320px;
}
select::-ms-expand {
  display: none;
}
select:hover {
  border: 1px solid #cbd0d1;
}
select:focus {
  border: 1px solid #333332;
}

.confirmation {
  display: flex;
  flex-direction: column;
  align-items: center;
}

label {
  color: #999;
  display: block;
  line-height: 25px;
}

.notification-labsolved-hidden {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
}
.notification-labsolved-hidden .container {
  max-height: 0;
}

.notification-labsolved {
  -o-transition: max-height 0.5s ease-in 0s, opacity 0.5s ease-in 0.2s, transition 0.5s ease-in 0.2s;
  -moz-transition: max-height 0.5s ease-in 0s, opacity 0.5s ease-in 0.2s, transition 0.5s ease-in 0.2s;
  -webkit-transition: max-height 0.5s ease-in 0s, opacity 0.5s ease-in 0.2s, transition 0.5s ease-in 0.2s;
  transition: max-height 0.5s ease-in 0s, opacity 0.5s ease-in 0.2s, transition 0.5s ease-in 0.2s;
  background-color: #ff6633;
  opacity: 1;
  max-height: 100px;
  visibility: visible;
}
.notification-labsolved .container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -o-transition: max-height 0.5s ease-in 0s, padding 0.5s ease-in 0s;
  -moz-transition: max-height 0.5s ease-in 0s, padding 0.5s ease-in 0s;
  -webkit-transition: max-height 0.5s ease-in 0s, padding 0.5s ease-in 0s;
  transition: max-height 0.5s ease-in 0s, padding 0.5s ease-in 0s;
  background-color: #ff6633;
  margin: 0 auto;
  max-height: 100px;
  padding: calc(calc(1 * var(--spacingbase)) - 3px) 0 calc(1 * var(--spacingbase)) 0;
}
.notification-labsolved .container h4 {
  flex: 1;
  margin: 0;
  padding-right: 10px;
}
.notification-labsolved .container span {
  padding-right: 10px;
  font-weight: bold;
}
.notification-labsolved .container h4, .notification-labsolved .container a, .notification-labsolved .container span {
  color: #fff;
}
.notification-labsolved .container a {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  vertical-align: middle;
}
.notification-labsolved .container a.button {
  background-color: #333332;
  border-radius: 0;
  min-width: 0;
  padding: 0 5px;
  background-color: transparent;
}
.notification-labsolved .container a.button:hover {
  color: #333332;
}
.notification-labsolved .container a.button svg {
  fill: currentColor;
  padding-right: 5px;
}
.notification-labsolved .container a:last-child {
  -o-transition: color 0.2s, fill 0.2s;
  -moz-transition: color 0.2s, fill 0.2s;
  -webkit-transition: color 0.2s, fill 0.2s;
  transition: color 0.2s, fill 0.2s;
  padding-left: 20px;
}
.notification-labsolved .container a:last-child svg {
  fill: currentColor;
  padding-left: 5px;
  height: 12px;
}
.notification-labsolved .container a:last-child:hover {
  text-decoration: none;
  color: #333332;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
  overflow-x: auto;
  display: block;
  position: relative;
  margin: calc(1.25 * var(--spacingbase)) 0;
}
table:first-child {
  margin: 0 0 calc(1.25 * var(--spacingbase)) 0;
}
table:first-child:last-child {
  margin: 0;
}
table tr {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  min-height: 31px;
}
table tr:first-child {
  border-top: none;
}
table tr td, table tr th {
  vertical-align: middle;
  padding: 4px 16px 4px 0;
  text-align: left;
}
table tr td:last-child, table tr th:last-child {
  padding: 4px 0;
}
table.is-fullybordered tr {
  border: none;
}
table.is-fullybordered tr td, table.is-fullybordered tr th {
  border: 1px solid #e6e6e6;
  padding: 4px 8px;
}
table.is-fullwidth {
  width: 100%;
  display: table;
}
table.is-fullwidth-list {
  width: 100%;
  display: table;
}
table.is-fullwidth-list tr td:first-child, table.is-fullwidth-list tr th:first-child {
  width: 65%;
}
table.is-table-list {
  width: 100%;
  display: table;
}
table.is-table-list tr {
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-top: none;
  border-bottom: 1px solid #e6e6e6;
}
table.is-table-list tr td, table.is-table-list tr th {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
table.is-table-list tr td:first-child, table.is-table-list tr th:first-child {
  -moz-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
table.is-table-list tr td:last-child, table.is-table-list tr th:last-child {
  white-space: nowrap;
}
table.is-table-list tr td:last-child {
  color: #b3b3b3;
}
table.is-table-numbers tr {
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-top: none;
  border-bottom: 1px solid #e6e6e6;
}
table.is-table-numbers tr th, table.is-table-numbers tr td {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  min-width: 110px;
}
table.is-table-numbers tr th:first-child, table.is-table-numbers tr td:first-child {
  -moz-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
table.is-table-numbers tr td {
  text-align: right;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}
table.is-table-information tr {
  border: none;
  white-space: pre-wrap;
}
table.is-table-information tr th {
  text-align: right;
  white-space: nowrap;
  vertical-align: top;
}
table.is-table-information tr.typing td {
  animation: typing 8s linear infinite;
}
table.is-table-multidirection tr th:first-child {
  text-align: right;
}
table.is-table-longdescription tr th, table.is-table-longdescription tr td {
  display: block;
}

@keyframes typing {
  85% {
    opacity: 1;
  }
  86% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  96% {
    opacity: 1;
  }
}
.search, .search-filters, .login-form {
  background: #ebf0f2;
  padding: 1em;
}
.search input, .search textarea, .search-filters input, .search-filters textarea, .login-form input, .login-form textarea {
  background: white;
}
.search input::-webkit-input-placeholder, .search textarea::-webkit-input-placeholder, .search-filters input::-webkit-input-placeholder, .search-filters textarea::-webkit-input-placeholder, .login-form input::-webkit-input-placeholder, .login-form textarea::-webkit-input-placeholder {
  color: #999;
}
.search input:-moz-placeholder, .search textarea:-moz-placeholder, .search-filters input:-moz-placeholder, .search-filters textarea:-moz-placeholder, .login-form input:-moz-placeholder, .login-form textarea:-moz-placeholder {
  color: #999;
}
.search input::-moz-placeholder, .search textarea::-moz-placeholder, .search-filters input::-moz-placeholder, .search-filters textarea::-moz-placeholder, .login-form input::-moz-placeholder, .login-form textarea::-moz-placeholder {
  color: #999;
}
.search input:-ms-input-placeholder, .search textarea:-ms-input-placeholder, .search-filters input:-ms-input-placeholder, .search-filters textarea:-ms-input-placeholder, .login-form input:-ms-input-placeholder, .login-form textarea:-ms-input-placeholder {
  color: #999;
}

.login-form img {
  margin-right: 1em;
  width: 5em;
}

.search {
  color: white;
}
.search form {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0 auto;
}
.search form input {
  -moz-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-bottom: 0;
}
.search form input:hover {
  border: 1px solid #cbd0d1;
}
.search form input:focus {
  border: 1px solid #333332;
  outline: 1px solid #333332;
}
.search form button {
  margin: 0 0 0 0.6em;
}

.search-filters {
  color: white;
}
.search-filters a {
  border: 1px solid white;
  padding: 4px 5px;
  margin: 3px 0;
  display: inline-block;
}
.search-filters a:hover {
  -o-transition: background 0.2s linear;
  -moz-transition: background 0.2s linear;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
  background: #fff;
  border: 1px solid #cbd0d1;
  text-decoration: none;
}
.search-filters a:focus {
  border: 1px solid #333332;
}

#mysteryObjective {
  margin-top: 0.5em;
}

#mysteryObjective.revealed {
  font-size: 0.8em;
}

#mysteryReveal, #mysteryLink {
  cursor: pointer;
}

@font-face {
  font-family: "Josefin Sans";
  src: url("/resources/fonts/JosefinSans/JosefinSans-Bold.eot");
  src: url("/resources/fonts/JosefinSans/JosefinSans-Bold.eot?#iefix") format("embedded-opentype"), url("/resources/fonts/JosefinSans/JosefinSans-Bold.woff") format("woff"), url("/resources/fonts/JosefinSans/JosefinSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "poppinsregular";
  src: url("/resources/fonts/Poppins/poppins.woff") format("woff");
}
@font-face {
  font-family: "poppinsbold";
  src: url("/resources/fonts/Poppins/poppins-bold.woff") format("woff");
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  70% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
body {
  font-family: poppinsregular, Arial, "Helvetica Neue", Helvetica, sans-serif;
}
body h1, body h2, body h3, body h4, body h5 {
  font-family: "Josefin Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
}

input, textarea {
  padding-left: 20px;
  padding-right: 20px;
}

[theme=scanme] .maincontainer {
  background: #001350;
}
[theme=scanme] .scanme-image {
  text-align: center;
  margin: 2.5em 0 2em 0;
  font-size: 13px;
}
[theme=scanme] .scanme-image img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

[theme=home] .productsDescription {
  display: flex;
  align-items: center;
  justify-content: center;
}
[theme=home] .productsDescription p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #000023;
}
[theme=home] .productsDescription p .link {
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (min-width: 550px) {
  [theme=home] .productsDescription p {
    font-size: 20px;
  }
}
[theme=home] .productsPreviewList {
  margin: 0 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
[theme=home] .productsPreviewList .container-list-wrapper {
  flex: 1;
  overflow: hidden;
}
[theme=home] .productsPreviewList .container-list-wrapper .container-list-tiles {
  display: flex;
  flex-direction: row;
}
[theme=home] .productsPreviewList .container-list-wrapper .container-list-tiles.has-carousel {
  flex-wrap: nowrap;
  transition: 250ms transform ease-in;
}
[theme=home] .productsPreviewList .container-list-wrapper .container-list-tiles.has-carousel > a {
  min-width: 100%;
  height: auto;
}
[theme=home] .productsPreviewList .container-list-wrapper .container-list-tiles > a {
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  max-width: 30%;
}
[theme=home] .productsPreviewList .container-list-wrapper .container-list-tiles > a:hover {
  text-decoration: none;
}
[theme=home] .productsPreviewList .container-list-wrapper .container-list-tiles > a > img:first-of-type {
  width: 100%;
  height: auto;
  border: none;
}
[theme=home] .productsPreviewList .container-list-wrapper .container-list-tiles > a > img:nth-of-type(2) {
  width: 100px;
  margin-bottom: 30px;
}
[theme=home] .productsPreviewList .container-list-wrapper .container-list-tiles > a h3 {
  text-transform: uppercase;
  font-size: 22px;
  line-height: 25px;
  color: #000023;
  text-align: center;
}
[theme=home] .productsPreviewList .container-list-wrapper .container-list-tiles > a .button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  height: 44px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: #001350;
  color: #CE9400;
}
[theme=home] .productsPreviewList .container-list-wrapper .container-list-tiles > a .button:hover, [theme=home] .productsPreviewList .container-list-wrapper .container-list-tiles > a .button:active {
  background: #1A2461;
}
[theme=home] .productsPreviewList .container-list-wrapper .container-list-tiles > a .price {
  color: #000023;
  font-family: poppinsbold, Arial, "Helvetica Neue", Helvetica, sans-serif;
  display: block;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  [theme=home] .productsPreviewList {
    margin: 24px 0 12px;
  }
  [theme=home] .productsPreviewList .container-list-tiles > a {
    display: flex;
    flex-direction: column;
  }
}
[theme=home] .productsPreviewList + a {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-decoration-line: underline;
  display: block;
  margin: 30px auto 50px;
  color: #000023;
  text-transform: uppercase;
}
[theme=home] .productsPreviewList .prev-arrow,
[theme=home] .productsPreviewList .next-arrow {
  z-index: 10;
  position: relative;
  height: 24px;
  width: 24px;
  margin: 0 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: 150ms all ease-in;
}
@media screen and (min-width: 768px) {
  [theme=home] .productsPreviewList .prev-arrow,
[theme=home] .productsPreviewList .next-arrow {
    display: none;
  }
}
[theme=home] .productsPreviewList .prev-arrow:hover,
[theme=home] .productsPreviewList .next-arrow:hover {
  -webkit-box-shadow: 0 2px 13px 0 gray;
  -moz-box-shadow: 0 2px 13px 0 gray;
  box-shadow: 0 2px 13px 0 gray;
}
[theme=home] .productsPreviewList .prev-arrow:after,
[theme=home] .productsPreviewList .prev-arrow:before,
[theme=home] .productsPreviewList .next-arrow:after,
[theme=home] .productsPreviewList .next-arrow:before {
  content: "";
  height: 10px;
  width: 2px;
  border-radius: 10px;
  position: absolute;
  left: 10px;
  background-color: #000023;
}
[theme=home] .productsPreviewList .next-arrow:after,
[theme=home] .productsPreviewList .next-arrow:before {
  left: 12px;
}
[theme=home] .productsPreviewList .prev-arrow:after {
  top: 4px;
  transform: rotate(45deg);
}
[theme=home] .productsPreviewList .prev-arrow:before {
  top: 10px;
  transform: rotate(-45deg);
}
[theme=home] .productsPreviewList .next-arrow:after {
  top: 4px;
  transform: rotate(-45deg);
}
[theme=home] .productsPreviewList .next-arrow:before {
  top: 10px;
  transform: rotate(45deg);
}
[theme=home] .titleBanner {
  position: relative;
  height: 350px;
  background: url("/resources/images/hero_banner_background1.jpg") scroll center center no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 720px) {
  [theme=home] .titleBanner {
    height: 616px;
  }
}
[theme=home] .titleBanner a {
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  height: 44px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: #CE9400;
  color: #001350;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 15;
  text-decoration: none;
}
[theme=home] .titleBanner a:hover, [theme=home] .titleBanner a:active {
  background: #FEB907;
}
[theme=home] .titleBanner .glow {
  background: url("/resources/images/hero_banner_background2.png") scroll center center no-repeat;
  background-size: auto 100%;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
[theme=home] .titleBanner .glow .bottleOne,
[theme=home] .titleBanner .glow .bottleTwo,
[theme=home] .titleBanner .glow .bottleThree {
  max-height: 100%;
  transition: all ease-in-out 300ms;
}
[theme=home] .titleBanner .glow .bottleOne {
  transform: translate(105px, 0);
}
[theme=home] .titleBanner .glow .bottleTwo {
  transform: translate(-105px, 0);
}
[theme=home] .titleBanner .glow .bottleThree {
  position: relative;
  z-index: 5;
  transform: scale(1.1);
}
@media screen and (min-width: 768px) {
  [theme=home] .titleBanner .glow .bottleThree {
    transform: scale(1);
  }
}
[theme=home] .blogPostList {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 20px 40px;
}
@media screen and (min-width: 720px) {
  [theme=home] .blogPostList {
    grid-template-columns: 1fr 1fr;
  }
}
[theme=home] .blogPostList .blog-post {
  position: relative;
  background: #001350;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
[theme=home] .blogPostList .blog-post a:first-of-type {
  display: block;
}
[theme=home] .blogPostList .blog-post img {
  max-width: 100%;
  display: block;
  opacity: 0.4;
  transition: opacity ease-in-out 300ms;
}
[theme=home] .blogPostList .blog-post h2 {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -140%);
  color: #fff;
  text-transform: uppercase;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
[theme=home] .blogPostList .blog-post .button {
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  height: 44px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: #CE9400;
  color: #001350;
}
[theme=home] .blogPostList .blog-post .button:hover, [theme=home] .blogPostList .blog-post .button:active {
  background: #FEB907;
}
[theme=home] .blogPostList + a {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-decoration-line: underline;
  display: block;
  margin: 50px auto 50px;
  color: #000023;
  text-transform: uppercase;
}

[theme=about] .maincontainer {
  background: #001350;
}
[theme=about] .maincontainer .container {
  background: transparent;
  color: #fff;
}
[theme=about] .maincontainer .container h3 {
  color: #fff;
}
[theme=about] h1 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  [theme=about] h1 {
    font-size: 50px;
  }
}
[theme=about] .titleBanner {
  position: relative;
  height: 350px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
[theme=about] .titleBanner:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to top right, #FFB299 50%, #5B4FFF 50%);
}
@media screen and (min-width: 720px) {
  [theme=about] .titleBanner {
    height: 616px;
  }
}
[theme=about] .titleBanner a {
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  height: 44px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: #CE9400;
  color: #001350;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 15;
  text-decoration: none;
}
[theme=about] .titleBanner a:hover, [theme=about] .titleBanner a:active {
  background: #FEB907;
}
[theme=about] .titleBanner .glow {
  background: url("/resources/images/hero_banner_background2.png") scroll center center no-repeat;
  background-size: auto 100%;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
[theme=about] .titleBanner .glow .bottleOne,
[theme=about] .titleBanner .glow .bottleTwo,
[theme=about] .titleBanner .glow .bottleThree {
  max-height: 100%;
  height: 100%;
  transition: all ease-in-out 300ms;
}
[theme=about] .titleBanner .glow .bottleOne {
  transform: translate(120px, 0) scale(0.9);
}
[theme=about] .titleBanner .glow .bottleTwo {
  transform: translate(-120px, 0) scale(0.9);
}
[theme=about] .titleBanner .glow .bottleThree {
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 930px) {
  [theme=about] .titleBanner .glow .bottleOne {
    transform: translate(65px, 0) scale(1);
  }
  [theme=about] .titleBanner .glow .bottleTwo {
    transform: translate(-65px, 0) scale(1);
  }
}
[theme=about] .about-content h3 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}
[theme=about] .about-content p {
  font-size: 14px;
}
[theme=about] .about-content a {
  color: #fff;
  text-decoration: underline;
}
@media screen and (min-width: 1024px) {
  [theme=about] .about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }
}
[theme=about] .about-video-wrapper {
  display: none;
}
@media screen and (min-width: 1024px) {
  [theme=about] .about-video-wrapper {
    display: initial;
  }
  [theme=about] .about-video-wrapper .about-video {
    margin-bottom: 35px;
  }
  [theme=about] .about-video-wrapper video {
    width: 100%;
    object-fit: contain;
  }
  [theme=about] .about-video-wrapper img {
    width: 100%;
  }
}
[theme=about] .about-description .about-text {
  margin-bottom: 30px;
}
[theme=about] .about-description h3 {
  font-family: "poppinsregular", sans-serif;
  font-weight: bold;
}
[theme=about] .about-description video {
  width: 100%;
  object-fit: contain;
  margin-bottom: 20px;
}
[theme=about] .about-description img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  [theme=about] .about-description .about-video,
[theme=about] .about-description .about-image {
    display: none;
  }
}

[theme=missing] .maincontainer {
  background: #001350;
}
[theme=missing] .maincontainer .container {
  background: transparent;
  color: #fff;
  text-align: center;
}
[theme=missing] object {
  max-width: 840px;
  margin: 0 auto;
}
[theme=missing] .missing-content {
  text-align: center;
  margin-bottom: -316px;
  position: relative;
  z-index: 3;
}
[theme=missing] .missing-content h2 {
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 30px;
  margin-top: 80px;
  color: #fff;
}
@media screen and (min-width: 598px) {
  [theme=missing] .missing-content h2 {
    font-size: 40px;
  }
}
[theme=missing] .missing-content p {
  max-width: 780px;
  text-align: center;
  margin: 0 auto 40px;
}
[theme=missing] .missing-content .button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  height: 44px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: #CE9400;
  color: #001350;
}
[theme=missing] .missing-content .button:hover, [theme=missing] .missing-content .button:active {
  background: #FEB907;
}
[theme=missing] .footer .footer-center {
  display: none;
}

[theme=blog] .maincontainer {
  background: #001350;
}
[theme=blog] .container {
  background: transparent;
}
[theme=blog] .container.is-page {
  max-width: 1440px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
[theme=blog] h1 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  [theme=blog] h1 {
    font-size: 50px;
  }
}
[theme=blog] .blog-list {
  max-width: 1140px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}
[theme=blog] .blog-list.no-results {
  grid-template-columns: 1fr;
  text-align: center;
  color: #fff;
}
[theme=blog] .blog-list.no-results .no-results-icon {
  width: 110px;
  height: 60px;
  margin: 0 auto;
}
[theme=blog] .blog-list.no-results .no-results-icon svg {
  height: 100%;
  width: 100%;
}
[theme=blog] .blog-list.no-results h2 {
  color: #fff;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 26px;
}
@media screen and (min-width: 768px) {
  [theme=blog] .blog-list.no-results h2 {
    font-size: 30px;
  }
}
[theme=blog] .blog-list.no-results > div:not(.no-results-icon) {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  [theme=blog] .blog-list.no-results > div:not(.no-results-icon) {
    font-size: 20px;
  }
}
[theme=blog] .blog-list.no-results .is-linkback {
  text-align: center;
}
[theme=blog] .blog-list.no-results .is-linkback:before {
  display: none;
}
[theme=blog] .blog-list.no-results .is-linkback a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  height: 44px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: #CE9400;
  color: #001350;
}
[theme=blog] .blog-list.no-results .is-linkback a:hover, [theme=blog] .blog-list.no-results .is-linkback a:active {
  background: #FEB907;
}
[theme=blog] .blog-post {
  color: #fff;
  text-align: center;
}
[theme=blog] .blog-post img {
  display: block;
  width: 100%;
  margin-bottom: 40px;
  opacity: 0.4;
  transition: opacity ease-in-out 300ms;
}
[theme=blog] .blog-post h2 {
  color: inherit;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 22px;
}
[theme=blog] .blog-post p {
  margin-bottom: 30px;
}
[theme=blog] .blog-post a.button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  height: 44px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: #CE9400;
  color: #001350;
}
[theme=blog] .blog-post a.button:hover, [theme=blog] .blog-post a.button:active {
  background: #FEB907;
}
[theme=blog] .blog-post:hover img {
  opacity: 1;
}

[theme=blog-article] .blog-post h1 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
  color: #001350;
}
@media screen and (min-width: 768px) {
  [theme=blog-article] .blog-post h1 {
    font-size: 50px;
  }
}
[theme=blog-article] .blog-post .created-by {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
[theme=blog-article] .blog-post .created-by span {
  margin: 0 4px;
  color: #000023;
}
[theme=blog-article] .blog-post img {
  margin-top: 30px;
  margin-bottom: 50px;
  max-width: 1140px;
  width: 100%;
  object-fit: cover;
}
[theme=blog-article] .blog-post hr {
  display: none;
}
[theme=blog-article] .blog-post p {
  max-width: 740px;
  margin: 0 auto 20px;
  color: #000023;
}
[theme=blog-article] .blog-post > div h1 {
  text-align: left;
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
  text-transform: uppercase;
  max-width: 740px;
  margin: 60px auto 40px;
}
[theme=blog-article] .blog-post > div .comment P {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
[theme=blog-article] .blog-post > div .comment P:first-child {
  margin-bottom: 5px;
}
[theme=blog-article] .blog-post > div .comment P:nth-child(2) {
  padding-left: 38px;
}
[theme=blog-article] .blog-post > div .comment P:last-child {
  border-top: 1px solid #cbd0d1;
}
[theme=blog-article] .blog-post > div .comment img {
  max-width: 28px;
  width: 100%;
  margin: 0 10px 0 0;
}
[theme=blog-article] .blog-post > div .is-linkback {
  display: none;
}

[theme=ecommerce] .maincontainer {
  background: #001350;
}
[theme=ecommerce] .maincontainer .container {
  background: transparent;
}
[theme=ecommerce] .is-page h1 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  [theme=ecommerce] .is-page h1 {
    font-size: 50px;
  }
}
[theme=ecommerce] .is-page .ecoms-pageheader {
  display: none;
}
[theme=ecommerce] .is-page .search-filters {
  background: transparent;
}
[theme=ecommerce] .is-page .search-filters > div {
  font-size: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
[theme=ecommerce] .is-page .search-filters > div::-webkit-scrollbar {
  width: 0 !important;
}
@media screen and (min-width: 630px) {
  [theme=ecommerce] .is-page .search-filters > div {
    justify-content: center;
  }
}
[theme=ecommerce] .is-page .search-filters > div > label {
  display: none;
}
[theme=ecommerce] .is-page .search-filters > div a {
  height: 25px;
  border-radius: 13px;
  margin-right: 8px;
  padding: 0 15px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
[theme=ecommerce] .is-page .search-filters > div a:last-child {
  margin-right: 0;
}
[theme=ecommerce] .is-page .search-filters > div a:hover, [theme=ecommerce] .is-page .search-filters > div a.selected {
  background: #fff;
  color: #000023;
}
[theme=ecommerce] .is-page .container-list-tiles {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 80px;
  margin-top: 50px;
}
@media screen and (min-width: 640px) {
  [theme=ecommerce] .is-page .container-list-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  [theme=ecommerce] .is-page .container-list-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}
[theme=ecommerce] .is-page .container-list-tiles > a {
  padding: 0;
  flex: 1 1 auto;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: #fff;
  position: relative;
}
[theme=ecommerce] .is-page .container-list-tiles > a:after {
  content: "";
  display: block;
  height: 1px;
  width: 80%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 55px);
  background: #7F85A7;
}
[theme=ecommerce] .is-page .container-list-tiles > a:last-child:after {
  display: none;
}
@media screen and (min-width: 640px) {
  [theme=ecommerce] .is-page .container-list-tiles > a:after {
    display: none;
  }
}
[theme=ecommerce] .is-page .container-list-tiles > a:hover {
  text-decoration: none;
}
[theme=ecommerce] .is-page .container-list-tiles > a img:first-of-type {
  width: 100%;
  max-width: 240px;
  height: auto;
  border: none;
  margin: 0;
}
[theme=ecommerce] .is-page .container-list-tiles > a img:nth-of-type(2) {
  border: none;
  margin-top: 0;
  max-width: 80px;
  margin-bottom: 20px;
}
[theme=ecommerce] .is-page .container-list-tiles > a h3 {
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  line-height: 25px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
}
[theme=ecommerce] .is-page .container-list-tiles > a .price {
  color: #000023;
  font-family: poppinsbold, Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #fff;
}
[theme=ecommerce] .is-page .container-list-tiles > a .button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  height: 44px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: #CE9400;
  color: #001350;
  margin-top: 25px;
}
[theme=ecommerce] .is-page .container-list-tiles > a .button:hover, [theme=ecommerce] .is-page .container-list-tiles > a .button:active {
  background: #FEB907;
}
[theme=ecommerce] .is-page .no-results {
  grid-template-columns: 1fr;
  text-align: center;
  color: #fff;
}
[theme=ecommerce] .is-page .no-results .no-results-icon {
  width: 110px;
  height: 60px;
  margin: 0 auto;
}
[theme=ecommerce] .is-page .no-results .no-results-icon svg {
  height: 100%;
  width: 100%;
}
[theme=ecommerce] .is-page .no-results h2 {
  color: #fff;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 26px;
}
@media screen and (min-width: 768px) {
  [theme=ecommerce] .is-page .no-results h2 {
    font-size: 30px;
  }
}
[theme=ecommerce] .is-page .no-results > div:not(.no-results-icon) {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  [theme=ecommerce] .is-page .no-results > div:not(.no-results-icon) {
    font-size: 20px;
  }
}
[theme=ecommerce] .is-page .no-results + .is-linkback {
  text-align: center;
}
[theme=ecommerce] .is-page .no-results + .is-linkback:before {
  display: none;
}
[theme=ecommerce] .is-page .no-results + .is-linkback a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  height: 44px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: #CE9400;
  color: #001350;
  margin-top: 60px;
}
[theme=ecommerce] .is-page .no-results + .is-linkback a:hover, [theme=ecommerce] .is-page .no-results + .is-linkback a:active {
  background: #FEB907;
}

[theme=ecommerce-product] .product {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
[theme=ecommerce-product] .product > div h3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #001350;
}
@media screen and (min-width: 768px) {
  [theme=ecommerce-product] .product > div h3 {
    font-size: 40px;
    line-height: 40px;
    text-align: left;
    margin-top: 30px;
  }
}
[theme=ecommerce-product] .product > div .product-image {
  width: 100%;
  max-width: 570px;
  margin: 0 auto;
  display: block;
}
[theme=ecommerce-product] .product > div .price-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
[theme=ecommerce-product] .product > div .price-rating .price {
  color: #000023;
  font-family: poppinsbold, Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 22px;
  line-height: 33px;
  color: #000023;
}
@media screen and (min-width: 768px) {
  [theme=ecommerce-product] .product > div .price-rating {
    flex-direction: column;
    align-items: flex-start;
  }
  [theme=ecommerce-product] .product > div .price-rating .price {
    order: 1;
  }
  [theme=ecommerce-product] .product > div .price-rating img {
    order: 0;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
[theme=ecommerce-product] .product > div .description {
  display: block;
  margin-bottom: 80px;
  color: #000023;
}
[theme=ecommerce-product] .product > div .description label {
  color: #000023;
  margin-bottom: 20px;
  font-weight: bold;
}
[theme=ecommerce-product] .product > div .stock-check,
[theme=ecommerce-product] .product > div .cart-button {
  display: block;
}
[theme=ecommerce-product] .product > div .stock-check select,
[theme=ecommerce-product] .product > div .cart-button select {
  height: 48px;
  margin-right: 15px;
  box-sizing: border-box;
  border: 2px solid #000023;
  max-width: 390px;
}
[theme=ecommerce-product] .product > div .stock-check form,
[theme=ecommerce-product] .product > div .cart-button form {
  display: flex;
  align-items: center;
}
[theme=ecommerce-product] .product > div .stock-check .button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  height: 44px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: #001350;
  color: #CE9400;
  width: 165px;
}
[theme=ecommerce-product] .product > div .stock-check .button:hover, [theme=ecommerce-product] .product > div .stock-check .button:active {
  background: #1A2461;
}
[theme=ecommerce-product] .product > div .stock-check #stockCheckResult {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #00A2B9;
}
[theme=ecommerce-product] .product > div .cart-button .button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  height: 44px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: #CE9400;
  color: #001350;
  width: 165px;
}
[theme=ecommerce-product] .product > div .cart-button .button:hover, [theme=ecommerce-product] .product > div .cart-button .button:active {
  background: #FEB907;
}
[theme=ecommerce-product] .product > div .view-cart-button {
  height: 80px;
  display: flex;
  align-items: center;
}
[theme=ecommerce-product] .product > div .view-cart-button .button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  height: 44px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: #001350;
  color: #CE9400;
  width: 100%;
}
[theme=ecommerce-product] .product > div .view-cart-button .button:hover, [theme=ecommerce-product] .product > div .view-cart-button .button:active {
  background: #1A2461;
}
[theme=ecommerce-product] .product > div:first-child .product-image {
  display: none;
}
@media screen and (min-width: 768px) {
  [theme=ecommerce-product] .product {
    flex-direction: row;
  }
  [theme=ecommerce-product] .product > div:first-child {
    flex: 0 0 50%;
  }
  [theme=ecommerce-product] .product > div:first-child .product-image {
    display: block;
  }
  [theme=ecommerce-product] .product > div:last-child .product-image {
    display: none;
  }
}

[theme=login] .maincontainer {
  min-height: calc(100vh - 588px - 147px);
}
[theme=login] h1 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
  color: #001350;
}
@media screen and (min-width: 768px) {
  [theme=login] h1 {
    font-size: 50px;
  }
}
[theme=login] .login-form {
  background: transparent;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
[theme=login] .login-form span {
  margin-bottom: 60px;
  color: #000023;
}
[theme=login] .login-form input {
  border: 1px solid #000023;
  height: 52px;
  max-width: 548px;
  width: 100%;
}
[theme=login] .login-form .button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  height: 44px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: #001350;
  color: #CE9400;
  width: 170px;
}
[theme=login] .login-form .button:hover, [theme=login] .login-form .button:active {
  background: #1A2461;
}

[theme=login-modal] {
  background: url("/resources/images/dark-blue-squiggle-pattern-tile.jpg") scroll center center repeat;
  min-height: 100vh;
  display: flex;
  align-content: flex-start;
  align-items: center;
  justify-content: space-around;
}
[theme=login-modal] h1 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
  color: #001350;
}
@media screen and (min-width: 768px) {
  [theme=login-modal] h1 {
    font-size: 50px;
  }
}
[theme=login-modal] .maincontainer {
  width: 100%;
  padding: 20px;
}
[theme=login-modal] .maincontainer .container {
  max-width: 742px;
  width: 100%;
  padding: 20px;
}
@media screen and (max-width: 1190px) {
  [theme=login-modal] .maincontainer .container {
    width: auto;
  }
}
[theme=login-modal] .login-form {
  background: transparent;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
[theme=login-modal] .login-form span {
  margin-bottom: 60px;
}
[theme=login-modal] .login-form input {
  border: 1px solid #000023;
}
[theme=login-modal] .login-form .button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  height: 44px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: #001350;
  color: #CE9400;
  width: 170px;
}
[theme=login-modal] .login-form .button:hover, [theme=login-modal] .login-form .button:active {
  background: #1A2461;
}

[theme=cart] {
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  [theme=cart] {
    min-height: calc(100vh - 157px);
  }
}
[theme=cart] .maincontainer {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
}
[theme=cart] .maincontainer .container {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
}
[theme=cart] .maincontainer .container .empty-cart-wrapper {
  flex: 1 1 100%;
  align-items: center;
  justify-content: center;
}
[theme=cart] h1 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
  color: #001350;
}
@media screen and (min-width: 768px) {
  [theme=cart] h1 {
    font-size: 50px;
  }
}
[theme=cart] .cart-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
@media screen and (min-width: 1024px) {
  [theme=cart] .cart-wrapper {
    display: grid;
    grid-template-columns: 643px 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 44px;
    grid-row-gap: 30px;
  }
}
[theme=cart] .cart-wrapper .cart-wrapper-left {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-row-gap: 30px;
}
[theme=cart] .cart-wrapper .cart-wrapper-right .cart-order-section {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  background: #F2F3F6;
  padding: 30px;
}
[theme=cart] .cart-wrapper .cart-wrapper-right .cart-order-section h3 {
  text-transform: uppercase;
  color: #001350;
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 20px;
}
[theme=cart] .cart-wrapper .cart-wrapper-right .cart-order-section strong {
  color: #000023;
  font-family: poppinsbold, Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 40px;
  display: block;
  color: #001350;
}
[theme=cart] .cart-wrapper .cart-wrapper-right .cart-order-section form {
  padding: 0;
  background: transparent;
}
[theme=cart] .cart-wrapper .cart-wrapper-right .cart-order-section form:first-of-type {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
[theme=cart] .cart-wrapper .cart-wrapper-right .cart-order-section form:first-of-type label {
  display: none;
}
[theme=cart] .cart-wrapper .cart-wrapper-right .cart-order-section form:first-of-type input {
  height: 48px;
  box-sizing: border-box;
  margin-right: 20px;
  margin-bottom: 0;
}
[theme=cart] .cart-wrapper .cart-wrapper-right .cart-order-section form:first-of-type .button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  height: 44px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: #001350;
  color: #CE9400;
  margin: 0;
}
[theme=cart] .cart-wrapper .cart-wrapper-right .cart-order-section form:first-of-type .button:hover, [theme=cart] .cart-wrapper .cart-wrapper-right .cart-order-section form:first-of-type .button:active {
  background: #1A2461;
}
[theme=cart] .cart-wrapper .cart-wrapper-right .cart-order-section form:last-of-type .button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  height: 44px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: #CE9400;
  color: #001350;
  margin: 20px 0 0 0;
  width: 100%;
}
[theme=cart] .cart-wrapper .cart-wrapper-right .cart-order-section form:last-of-type .button:hover, [theme=cart] .cart-wrapper .cart-wrapper-right .cart-order-section form:last-of-type .button:active {
  background: #FEB907;
}
[theme=cart] .cart-wrapper .cart-wrapper-right .cart-order-section .is-warning {
  margin: 5px 0 0 0;
}
[theme=cart] .cart-wrapper .cart-wrapper-right .applied-coupon-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  background-color: white;
  height: 48px;
  box-sizing: border-box;
  margin-bottom: 0;
  border: 1px solid #e6e6e6;
  min-height: 1.5em;
  padding: 0.4em;
  color: #333332;
  max-width: 100%;
}
[theme=cart] .cart-wrapper .cart-wrapper-right .applied-coupon-wrapper .applied-coupon-tick {
  height: 1.2rem;
  margin: 0 1rem;
  align-self: center;
  white-space: nowrap;
  background: url("/resources/images/check-circle.svg") no-repeat;
  vertical-align: top;
  background-size: contain;
}
@media screen and (min-width: 1024px) {
  [theme=cart] .cart-wrapper .cart-wrapper-right .applied-coupon-wrapper .applied-coupon-tick {
    height: 1.6rem;
    width: 1.6rem;
  }
}
[theme=cart] .cart-wrapper .cart-wrapper-right .applied-coupon-wrapper .applied-coupon-tick p {
  margin: 0.1rem 0 0rem 2.3rem;
  font-size: 1.1rem;
}
[theme=cart] .cart-wrapper .cart-wrapper-right .applied-coupon-wrapper button {
  display: block;
  margin: 0.1rem 1rem 0;
  background: white;
  text-transform: uppercase;
  border: none;
  color: #000023;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
}
[theme=cart] .cart-wrapper .cart-item {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  background: #F2F3F6;
  padding: 15px;
  display: grid;
  grid-template-columns: 100px auto;
  grid-template-rows: repeat(2, auto);
  grid-column-gap: 0;
  grid-row-gap: 0;
}
@media screen and (min-width: 768px) {
  [theme=cart] .cart-wrapper .cart-item {
    padding: 30px;
    grid-template-columns: 180px 1fr 50px;
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
  }
}
[theme=cart] .cart-wrapper .cart-item button {
  margin: 0;
}
[theme=cart] .cart-wrapper .cart-item > span {
  margin-right: 15px;
}
[theme=cart] .cart-wrapper .cart-item > span:last-child {
  margin-right: 0;
}
[theme=cart] .cart-wrapper .cart-item .item-image {
  grid-area: 1/1/3/2;
}
[theme=cart] .cart-wrapper .cart-item .item-image img {
  max-width: 156px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  [theme=cart] .cart-wrapper .cart-item .item-image {
    grid-area: 1/1/2/2;
  }
}
[theme=cart] .cart-wrapper .cart-item .item-data {
  grid-area: 1/2/2/3;
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
}
@media screen and (min-width: 768px) {
  [theme=cart] .cart-wrapper .cart-item .item-data {
    grid-area: 1/2/2/3;
  }
}
[theme=cart] .cart-wrapper .cart-item .item-title {
  font-family: "Josefin Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
  color: #001350;
  text-transform: uppercase;
  margin-bottom: 20px;
}
[theme=cart] .cart-wrapper .cart-item .item-title a {
  color: inherit;
}
[theme=cart] .cart-wrapper .cart-item .item-price {
  color: #000023;
  font-family: poppinsbold, Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #000023;
}
[theme=cart] .cart-wrapper .cart-item .item-quantity {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #000023;
}
[theme=cart] .cart-wrapper .cart-item .item-quantity select {
  box-sizing: border-box;
  border: none;
  min-width: 60px;
  text-align: right;
  background: transparent !important;
  color: #000023;
}
[theme=cart] .cart-wrapper .cart-item .item-quantity > span {
  margin-right: 15px;
}
[theme=cart] .cart-wrapper .cart-item .remove-icon {
  grid-area: 2/2/3/3;
  text-align: right;
}
[theme=cart] .cart-wrapper .cart-item .remove-icon button {
  background: none;
  height: 24px;
  width: 24px;
  text-indent: -99999999999999999px;
  max-width: 24px;
  min-width: 24px;
  position: relative;
  border: none;
  cursor: pointer;
}
[theme=cart] .cart-wrapper .cart-item .remove-icon button:after {
  content: "";
  height: 24px;
  width: 24px;
  background: url("/resources/images/icon-trash.svg") no-repeat;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (min-width: 768px) {
  [theme=cart] .cart-wrapper .cart-item .remove-icon {
    grid-area: 1/3/2/4;
  }
}
[theme=cart] .empty-cart-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
[theme=cart] .empty-cart-wrapper .empty-cart-icon {
  height: 4rem;
  width: 100%;
  white-space: nowrap;
  background: url("/resources/images/shopping-cart.svg") no-repeat center;
  background-size: contain;
}
[theme=cart] .empty-cart-wrapper h2 {
  text-transform: uppercase;
  text-align: center;
  color: #001350;
}
[theme=cart] .empty-cart-wrapper p {
  font-size: 1.2rem;
  color: #001350;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  [theme=cart] .empty-cart-wrapper p {
    font-size: 1.4rem;
  }
}
[theme=cart] .empty-cart-wrapper .button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  height: 44px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: #CE9400;
  color: #001350;
  width: fit-content;
  height: 44px;
  margin: 1rem;
}
[theme=cart] .empty-cart-wrapper .button:hover, [theme=cart] .empty-cart-wrapper .button:active {
  background: #FEB907;
}

[theme=my-account] h1 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
  color: #001350;
}
@media screen and (min-width: 768px) {
  [theme=my-account] h1 {
    font-size: 50px;
  }
}
[theme=my-account] .order-history {
  display: flex;
  flex-direction: column;
  max-width: 940px;
  margin: 0 auto;
}
[theme=my-account] .order-history .order-item {
  padding: 30px;
  display: flex;
  flex-direction: row;
  background: #F2F3F6;
  margin-bottom: 30px;
  gap: 30px;
}
[theme=my-account] .order-history .order-item .order-status {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
[theme=my-account] .order-history .order-item .order-status img {
  max-width: 100%;
  min-width: 130px;
}
[theme=my-account] .order-history .order-item .order-status a {
  align-self: center;
}
[theme=my-account] .order-history .order-item .order-image {
  max-width: 156px;
  max-height: 156px;
}
@media screen and (max-width: 640px) {
  [theme=my-account] .order-history .order-item .order-status {
    display: none;
  }
  [theme=my-account] .order-history .order-item .order-image {
    max-width: 100px;
    max-height: 100px;
  }
}
[theme=my-account] .order-history .order-item .order-info {
  flex: 1 1 100%;
}
[theme=my-account] .order-history .order-item .order-info h3 {
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
}
[theme=my-account] .order-history .order-item .order-info .order-price {
  color: #000023;
  font-family: poppinsbold, Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 30px;
  display: block;
}
[theme=my-account] .order-history .order-item .order-info .order-details span {
  display: inline-block;
}
[theme=my-account] .order-history .order-item .order-info .order-details span:first-child {
  margin-right: 30px;
}
[theme=my-account] .order-history .order-item .order-info .order-details .mobile-order-status {
  display: none;
}
[theme=my-account] .order-history .order-item .order-info .order-details .mobile-order-status img {
  width: 130px;
  margin-top: 10px;
}
@media screen and (max-width: 640px) {
  [theme=my-account] .order-history .order-item .order-info .order-details .mobile-order-status {
    display: block;
  }
}
[theme=my-account] .promise-link {
  display: flex;
  justify-content: center;
  font-size: 20px;
}

ul.breadcrumbs {
  display: flex;
  padding: 0;
  margin-top: 0;
  margin-bottom: 30px;
}
ul.breadcrumbs li {
  list-style-type: none;
}
ul.breadcrumbs li:after {
  content: ">";
  display: inline-flex;
  width: 25px;
  align-items: center;
  justify-content: center;
  color: #000023;
}
ul.breadcrumbs li:last-of-type {
  color: #7F85A7;
}
ul.breadcrumbs li:last-of-type:after {
  display: none;
}
ul.breadcrumbs li a {
  color: #000023;
  text-decoration: none;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  ul.breadcrumbs li a {
    font-size: inherit;
  }
}

.search {
  background: transparent;
}
.search form {
  max-width: 340px;
  position: relative;
}
.search form input[type=text] {
  border-radius: 100px;
  height: 38px;
}
.search form button {
  background: none;
  height: 38px;
  width: 38px;
  text-indent: -99999999999999999px;
  max-width: 38px;
  min-width: 38px;
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  padding: 0;
}
.search form button:after {
  content: "";
  height: 18px;
  width: 18px;
  background: url("/resources/images/icon-search.svg") no-repeat;
  position: absolute;
  right: 10px;
  top: 10px;
}
.search form button:hover {
  background: none;
}

.footer {
  max-height: 618px;
  height: 100vh;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 0 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer {
    max-height: 528px;
  }
}
.footer .footer-center {
  position: relative;
  z-index: 15;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer .footer-center p {
  font-size: 20px;
}
.footer .footer-center dialog {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .footer .footer-center dialog {
    max-width: 33rem;
  }
}
.footer .footer-center dialog .coupon-wrapper {
  display: inline-flex;
  flex-direction: column;
}
.footer .footer-center dialog .coupon-info {
  display: flex;
  padding: 1rem 0;
  flex-direction: column;
  width: 90%;
  align-self: center;
}
.footer .footer-center dialog .coupon-info h1 {
  text-transform: uppercase;
  font-size: 2.5rem;
  color: #000023;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .footer .footer-center dialog .coupon-info h1 {
    font-size: 3.5rem;
  }
}
.footer .footer-center dialog .coupon-info p {
  margin: 0 0 1rem 0;
}
.footer .footer-center dialog button {
  display: inline-flex;
  align-self: flex-end;
  height: 1.6rem;
  width: 1.6rem;
  transition: all ease-in-out 300ms;
  border: none;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: url("/resources/images/close-button.svg") no-repeat;
  margin: 0;
}
.footer .footer-center dialog .coupon-input {
  display: flex;
  justify-content: center;
  margin: 1.5rem;
  border-style: dashed;
  border-width: thin;
  border-color: #00A2B9;
  width: 80%;
  align-self: center;
  padding: 1.1rem 0 0.75rem;
}
.footer .footer-center dialog .coupon-input h3 {
  color: #00A2B9;
  font-size: 1.3rem;
  margin: 0 1rem 0 0;
}
@media screen and (min-width: 1024px) {
  .footer .footer-center dialog .coupon-input h3 {
    font-size: 1.8rem;
  }
}
.footer .footer-center dialog .coupon-input button {
  display: inline-flex;
  flex-direction: column;
  align-self: flex-end;
  justify-content: flex-end;
  height: 1.2rem;
  width: 1.2rem;
  transition: all ease-in-out 300ms;
  border: none;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  vertical-align: top;
  background: url("/resources/images/copy-to-clipboard.svg") no-repeat;
  background-size: contain;
  margin: 0 0 0.1em 0;
}
@media screen and (min-width: 1024px) {
  .footer .footer-center dialog .coupon-input button {
    height: 1.6rem;
    width: 1.6rem;
    background-size: auto;
  }
}
.footer .footer-center dialog .coupon-input .coupon-copied-tick {
  height: 1.2rem;
  width: 1.2rem;
  margin: 0 0 0.1em 0;
  white-space: nowrap;
  background: url("/resources/images/check-circle.svg") no-repeat;
  vertical-align: top;
  background-size: contain;
}
@media screen and (min-width: 1024px) {
  .footer .footer-center dialog .coupon-input .coupon-copied-tick {
    height: 1.6rem;
    width: 1.6rem;
  }
}
.footer .footer-center .form, .footer .footer-center form {
  padding-top: 50px;
  max-width: 350px;
  width: 100%;
}
.footer .footer-center .form input[type=email], .footer .footer-center form input[type=email] {
  width: 100%;
  height: 44px;
}
.footer .footer-center .form .button, .footer .footer-center form .button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  height: 44px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: #CE9400;
  color: #001350;
  width: 100%;
  height: 44px;
}
.footer .footer-center .form .button:hover, .footer .footer-center .form .button:active, .footer .footer-center form .button:hover, .footer .footer-center form .button:active {
  background: #FEB907;
}
@media screen and (min-width: 1024px) {
  .footer .footer-center .form, .footer .footer-center form {
    display: grid;
    grid-template-columns: 1fr 148px;
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 0;
    max-width: 580px;
  }
  .footer .footer-center .form .button, .footer .footer-center form .button {
    margin-top: 0;
  }
}
.footer .footer-center .portswigger-logo {
  background: url("/resources/images/Portswigger.png") scroll center center no-repeat #001350;
  background-size: contain;
  height: 40px;
  margin-top: 20px;
  margin-bottom: 0;
}
.footer .footer-left,
.footer .footer-right {
  background: url("/resources/images/footer_graphic.jpg") scroll bottom left no-repeat #001350;
  background-size: contain;
}
.footer .footer-right {
  grid-area: 1/3/2/5;
  transform: rotateY(180deg);
}
.footer .footer-left {
  grid-area: 1/1/2/3;
}
.footer .footer-center {
  grid-area: 1/1/2/5;
}
.footer .footer-copyright {
  font-size: 14px;
}
.footer h2 {
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 30px;
  color: #fff;
}
@media screen and (min-width: 598px) {
  .footer h2 {
    font-size: 40px;
  }
}
.footer p {
  max-width: 780px;
}
.footer .newsletter-signup-response {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer .newsletter-signup-response .email-signup-confirm {
  display: flex;
}
.footer .newsletter-signup-response .email-signup-confirm:before {
  content: "";
  background: url("/resources/images/check-circle.svg") no-repeat;
  height: 30px;
  width: 30px;
  background-size: cover;
  margin-right: 15px;
  display: block;
}
.footer .newsletter-signup-response h3 {
  color: #fff;
  font-size: 22px;
  line-height: 22px;
  font-weight: bold;
  font-family: "Josefin Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
  text-transform: uppercase;
  color: inherit;
}
.footer .newsletter-signup-response.error {
  color: #d60000;
}
.footer .newsletter-signup-response.error:before {
  display: none;
}
.footer .newsletter-signup-response h4 {
  display: none;
}

.footer-lower {
  height: 60px;
  background: #000023;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer-lower .footerNavigation {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  background: transparent;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  box-sizing: content-box;
}
@media screen and (min-width: 768px) {
  .footer-lower .footerNavigation {
    justify-content: space-between;
  }
}
.footer-lower .footerNavigation .socialLinks {
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-lower .footerNavigation .socialLinks a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  height: 44px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: transparent;
  color: #7F85A7;
  padding-left: 0;
  padding-right: 0;
  min-width: 0;
  height: 24px;
  width: 24px;
  position: relative;
}
.footer-lower .footerNavigation .socialLinks a:hover, .footer-lower .footerNavigation .socialLinks a:active, .footer-lower .footerNavigation .socialLinks a.selected {
  color: #CE9400;
}
.footer-lower .footerNavigation .socialLinks a svg {
  height: 24px;
  width: 24px;
}
.footer-lower .footerNavigation nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer-lower .footerNavigation nav {
    display: contents;
  }
}
.footer-lower .footerNavigation nav .button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  height: 44px;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all ease-in-out 300ms;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  background: transparent;
  color: #7F85A7;
  padding-left: 0;
  padding-right: 0;
  min-width: 0;
}
.footer-lower .footerNavigation nav .button:hover, .footer-lower .footerNavigation nav .button:active, .footer-lower .footerNavigation nav .button.selected {
  color: #CE9400;
}
.footer-lower .footerNavigation nav ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  margin: 0;
}
.footer-lower .footerNavigation nav ul li {
  margin-left: 40px;
}
.footer-lower .footerNavigation nav ul li:first-child {
  margin-left: 0;
}

.is-login {
  background: url("/resources/images/dark-blue-squiggle-pattern-tile.jpg") scroll center center repeat !important;
}
.is-login [theme=login] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.is-login [theme=login] .maincontainer {
  width: 80%;
  max-width: 742px;
}
.is-login [theme=login] .maincontainer .container {
  width: 100%;
  height: auto;
}
.is-login #scanMeHeader,
.is-login .footer-wrapper {
  display: none;
}

#vulnerabilities-content {
  font-size: 12pt;
}

#vulnerabilities-header {
  text-align: center;
  display: flex;
  flex-direction: column;
}
#vulnerabilities-header h1 {
  color: #001350;
  font-size: 50px;
}
#vulnerabilities-header p {
  width: 80%;
  align-self: center;
  font-size: 20px;
  color: #000023;
  margin-bottom: 10px;
}
#vulnerabilities-header a {
  color: #000023;
  text-decoration: underline;
}
#vulnerabilities-header a:hover {
  color: #00A2B9;
}

#vulnerabilities-login-details {
  display: flex;
  align-items: center;
  flex-direction: column;
}
#vulnerabilities-login-details h1 {
  color: #001350;
  font-size: 22px;
  margin-bottom: 0;
  margin-top: 30px;
}
#vulnerabilities-login-details tr {
  color: #000023;
  font-size: 20px;
  border-bottom: none;
}
#vulnerabilities-login-details #separator {
  border-right: 2px solid #F2F3F6;
  height: 15px;
  width: 2px;
}
#vulnerabilities-login-details th, #vulnerabilities-login-details td {
  padding: 0 4px 0 4px;
}

#vulnerabilities-path-details th, #vulnerabilities-path-details td {
  padding: 8px 8px 4px 8px;
}
#vulnerabilities-path-details th {
  background: #F2F3F6;
}

/*# sourceMappingURL=labsScanme.css.map */
