@-moz-keyframes opening {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes opening {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes opening {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opening {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.dev-tools {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: 2px solid #000;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  user-select: none;
  z-index: 9876;
}
@media screen and (max-width: 1063px) {
  .dev-tools {
    position: relative;
    display: table;
    right: auto;
    bottom: auto;
    margin: 20px auto 80px auto;
  }
}
.dev-tools * {
  transition: none;
}
.dev-tools,
.dev-tools select {
  color: #000;
  font-family: Arial, sans-serif;
  font-size: 13px;
}
.dev-tools > strong {
  display: block;
  padding: 5px;
  background: #000;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}
.dev-tools > div {
  padding: 10px;
}
.dev-tools > div > div {
  display: flex;
  flex-direction: column;
  border: 2px solid #000;
}
.dev-tools > div > div > span {
  display: block;
  padding: 5px;
  background: #eee;
  border-bottom: 1px dashed #000;
}
.dev-tools > div > div > select {
  width: 100%;
  padding: 2px;
  background: #fff;
  border: none;
  border-radius: 0;
  outline: none;
  cursor: pointer;
}
.dev-tools > div > div > select:hover {
  background: #eee;
}
#dev-mockup-selected {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9998;
}
#dev-mockup-selected,
#dev-mockup-selected *,
#dev-mockup-selected:before {
  pointer-events: none;
  user-select: none;
  transition: none;
}
#dev-mockup-selected > div {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
#dev-mockup-selected > div > strong {
  display: block;
  padding: 10px;
  background: #0f0;
  color: #000;
  border-radius: 8px;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
#dev-mockup-selected > img {
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  box-shadow: 0 0 1px 10px rgba(0,255,0,0.5);
  z-index: 1;
}
#dev-mockup-selected.mode-0,
#dev-mockup-selected.mode-1,
#dev-mockup-selected.mode-2 {
  height: 200vh;
}
#dev-mockup-selected.mode-0 {
  display: block;
  opacity: 1;
  cursor: not-allowed;
}
#dev-mockup-selected.mode-0,
#dev-mockup-selected.mode-0 *,
#dev-mockup-selected.mode-0:before {
  pointer-events: all;
}
#dev-mockup-selected.mode-1 {
  display: block;
  opacity: 0.5;
}
#dev-mockup-selected.mode-2 {
  display: block;
  opacity: 0.5;
  filter: invert(100%);
}
#dev-mockup-selected.dev-mockup-selected-preview {
  left: 50%;
  right: auto;
  top: 50%;
  bottom: auto;
  height: auto;
  transform: translate(-50%, -50%);
}
#dev-mockup-selected.dev-mockup-selected-preview > div {
  display: block;
}
#dev-mockup-selected.dev-mockup-selected-preview > img {
  position: relative;
  left: auto;
  top: auto;
  max-width: 75vw;
  max-height: 75vh;
  transform: none;
  border: 10px solid #0f0;
  border-radius: 20px;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
}
#dev-mockup {
  display: none;
  position: absolute;
  align-items: start;
  left: 0;
  top: 0;
  padding: 0 15px 15px 0;
  z-index: 9999;
  user-select: none;
}
#dev-mockup,
#dev-mockup * {
  color: #000;
  font-family: Arial, sans-serif;
  font-size: 13px;
}
#dev-mockup.on {
  display: flex;
}
#dev-mockup > div {
  display: none;
  margin: -10px 0 0 5px;
  padding: 8px 5px 5px 5px;
  background: #fff;
  border: 2px solid #000;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}
#dev-mockup > div > span {
  display: block;
  margin: 5px 0 0 0;
  padding: 5px;
  border: 2px solid #000;
  color: #000;
  cursor: pointer;
}
#dev-mockup > div > span:hover:not(.active) {
  background: #c0c0c0;
}
#dev-mockup > div > span.active {
  background: #000;
  color: #fff;
}
#dev-mockup > ul {
  margin: -10px 0 0 5px;
  padding: 8px 0 0 0;
  width: 100px;
  height: 40px;
  background: #fff;
  border: 2px solid #000;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  user-select: none;
  transition: all 0.125s;
}
#dev-mockup > ul > li {
  display: none;
}
#dev-mockup > ul > li > strong {
  display: table;
  margin: 5px 0 0 5px;
  padding: 3px 4px 2px 4px;
  background: #000;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 10px;
}
#dev-mockup > ul > li > div {
  display: flex;
}
#dev-mockup > ul > li > div > div {
  position: relative;
  padding: 5px 0 0 5px;
  cursor: pointer;
}
#dev-mockup > ul > li > div > div:last-child {
  padding-right: 5px;
}
#dev-mockup > ul > li > div > div > span {
  display: none;
}
#dev-mockup > ul > li > div > div > div {
  position: relative;
  width: 100px;
  height: 75px;
  border: 2px solid #000;
}
#dev-mockup > ul > li > div > div > div > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.5;
}
#dev-mockup > ul > li > div > div.active > div {
  border-color: #0f0;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.75);
}
#dev-mockup > ul > li > div > div.active > div > img {
  opacity: 1 !important;
}
#dev-mockup > ul > li > div:hover > div > div > img {
  opacity: 0.75;
}
#dev-mockup > ul > li > div:hover > div > div:hover > img {
  opacity: 1;
}
#dev-mockup > ul > li:last-child > div {
  padding-bottom: 5px;
}
#dev-mockup:hover {
  background: rgba(255,255,255,0.5);
  box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
}
#dev-mockup:hover > div {
  display: block;
}
#dev-mockup:hover > ul {
  margin: -10px 0 0 5px;
  width: auto;
  height: auto;
  transform: none;
}
#dev-mockup:hover > ul > li {
  display: block;
}
#dev-autofill {
  position: fixed;
  right: 5px;
  top: 5px;
  padding: 5px;
  background: rgba(0,255,0,0.5);
  border: 5px solid #0f0;
  line-height: 1;
  z-index: 9999;
}
#dev-autofill:before {
  text-transform: uppercase;
  font-family: monospace;
  font-weight: bold;
  font-size: 15px;
  content: "Autofill";
}
#dev-autofill:hover {
  background: #0f0;
}
#rgpd {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255,255,255,0.6);
  user-select: none;
  z-index: 9999;
}
#rgpd,
#rgpd * {
  color: #000;
  font-family: Arial, sans-serif;
  font-size: 14px;
}
@media screen and (max-width: 1200px) {
  #rgpd,
  #rgpd * {
    font-size: 13px;
  }
}
#rgpd ::selection {
  background: #000;
  color: #fff;
}
#rgpd #rgpd-box {
  position: absolute;
  left: 0;
  right: 0;
  padding: 1.2vw;
  background: #fff;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
  border: 0 solid #000;
  line-height: 1.25;
  bottom: 0;
  border-top-width: 1px;
}
#rgpd #rgpd-box > strong {
  display: block;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  font-size: 1.7em;
}
#rgpd #rgpd-box #rgpd-box-details {
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 20px 0 0 0;
  max-height: 33vh;
}
#rgpd #rgpd-box #rgpd-box-details > p {
  margin: 0;
}
#rgpd #rgpd-box #rgpd-box-details > p.rgpd-box-details-customize {
  margin-top: 15px;
}
#rgpd #rgpd-box #rgpd-box-details > ul {
  margin: 20px 0 0 0;
}
#rgpd #rgpd-box #rgpd-box-details > ul,
#rgpd #rgpd-box #rgpd-box-details > ul > li {
  display: block;
  padding: 0;
  list-style: none;
}
#rgpd #rgpd-box #rgpd-box-details > ul > li {
  margin: 5px -5px 0 -5px;
  line-height: 20px;
}
#rgpd #rgpd-box #rgpd-box-details > ul > li > label {
  display: flex;
  padding: 5px;
  background: rgba(238,238,238,0.3);
  border-radius: 20px;
  cursor: pointer;
}
#rgpd #rgpd-box #rgpd-box-details > ul > li > label > em {
  display: block;
  position: relative;
  flex: 0 0 55px;
  padding: 5px 0;
  background: #eee;
  border: 2px solid #000;
  border-radius: 40px;
}
#rgpd #rgpd-box #rgpd-box-details > ul > li > label > em:before {
  display: block;
  position: absolute;
  left: 16px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 40px;
  content: "";
  transition: left 0.25s;
}
#rgpd #rgpd-box #rgpd-box-details > ul > li > label > em > input {
  display: none;
}
#rgpd #rgpd-box #rgpd-box-details > ul > li > label > strong {
  margin: 0 0 0 -20px;
  padding: 5px 15px 5px 30px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 0 40px 40px 0;
  font-weight: normal;
}
#rgpd #rgpd-box #rgpd-box-details > ul > li > label:hover {
  background: rgba(238,238,238,0.6);
}
#rgpd #rgpd-box #rgpd-box-details > ul > li.allowed > label > em,
#rgpd #rgpd-box #rgpd-box-details > ul > li.allowed > label > strong {
  border-color: #6ab547;
}
#rgpd #rgpd-box #rgpd-box-details > ul > li.allowed > label > em:before {
  left: 26px;
  background: #6ab547;
  border-color: transparent;
}
#rgpd #rgpd-box #rgpd-box-details > ul > li.disallowed > label > em,
#rgpd #rgpd-box #rgpd-box-details > ul > li.disallowed > label > strong {
  border-color: #d63230;
}
#rgpd #rgpd-box #rgpd-box-details > ul > li.disallowed > label > em:before {
  left: 5px;
  background: #d63230;
  border-color: transparent;
}
#rgpd #rgpd-box #rgpd-box-summary > p {
  margin: 0;
  color: rgba(0,0,0,0.8);
}
#rgpd #rgpd-box #rgpd-action {
  display: flex;
  margin: 1.2vw -1.2vw -1.2vw -1.2vw;
  padding: 1.2vw;
  background: #eee;
  border-top: 1px solid #ff6950;
}
#rgpd #rgpd-box #rgpd-action > div {
  flex: 0 0 auto;
}
#rgpd #rgpd-box #rgpd-action > span {
  flex: 1;
}
#rgpd #rgpd-box #rgpd-action button {
  display: inline-block;
  padding: 10px 20px;
  background: #eee;
  border: 2px solid #000;
  border-radius: 4px;
  color: #000;
  font-size: 1.2em;
}
@media screen and (max-width: 1200px) {
  #rgpd #rgpd-box #rgpd-action button {
    padding: 5px 10px;
    border-width: 1px;
    font-size: 1em;
  }
}
#rgpd #rgpd-box #rgpd-action button:hover {
  background: #e2e2e2;
  border-color: #000;
  color: #000;
  font-weight: normal;
}
#rgpd #rgpd-box #rgpd-action button.disabled {
  filter: grayscale(100%);
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
}
#rgpd #rgpd-box #rgpd-action button[data-rgpd-none] {
  display: inline-block;
  padding: 10px 20px;
  background: #eee;
  border: 2px solid #000;
  border-radius: 4px;
  color: #000;
  font-size: 1.2em;
  background: #eee;
  border-color: #ff6950;
  color: #ff6950;
  font-weight: normal;
}
@media screen and (max-width: 1200px) {
  #rgpd #rgpd-box #rgpd-action button[data-rgpd-none] {
    padding: 5px 10px;
    border-width: 1px;
    font-size: 1em;
  }
}
#rgpd #rgpd-box #rgpd-action button[data-rgpd-none]:hover {
  background: #e2e2e2;
  border-color: #000;
  color: #000;
  font-weight: normal;
}
#rgpd #rgpd-box #rgpd-action button[data-rgpd-none].disabled {
  filter: grayscale(100%);
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
}
#rgpd #rgpd-box #rgpd-action button[data-rgpd-none]:hover {
  background: #e2e2e2;
  border-color: #eb2100;
  color: #eb2100;
  font-weight: normal;
}
#rgpd #rgpd-box #rgpd-action button[data-rgpd-all] {
  display: inline-block;
  padding: 10px 20px;
  background: #eee;
  border: 2px solid #000;
  border-radius: 4px;
  color: #000;
  font-size: 1.2em;
  background: #ff6950;
  border-color: #ff6950;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  #rgpd #rgpd-box #rgpd-action button[data-rgpd-all] {
    padding: 5px 10px;
    border-width: 1px;
    font-size: 1em;
  }
}
#rgpd #rgpd-box #rgpd-action button[data-rgpd-all]:hover {
  background: #e2e2e2;
  border-color: #000;
  color: #000;
  font-weight: normal;
}
#rgpd #rgpd-box #rgpd-action button[data-rgpd-all].disabled {
  filter: grayscale(100%);
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
}
#rgpd #rgpd-box #rgpd-action button[data-rgpd-all]:hover {
  background: #eb2100;
  border-color: #eb2100;
  color: #fff;
  font-weight: bold;
}
#rgpd #rgpd-box #rgpd-action button[data-rgpd-apply] {
  display: inline-block;
  padding: 10px 20px;
  background: #eee;
  border: 2px solid #000;
  border-radius: 4px;
  color: #000;
  font-size: 1.2em;
  background: #ff6950;
  border-color: #ff6950;
  color: #fff;
  font-weight: bold;
  display: none;
}
@media screen and (max-width: 1200px) {
  #rgpd #rgpd-box #rgpd-action button[data-rgpd-apply] {
    padding: 5px 10px;
    border-width: 1px;
    font-size: 1em;
  }
}
#rgpd #rgpd-box #rgpd-action button[data-rgpd-apply]:hover {
  background: #e2e2e2;
  border-color: #000;
  color: #000;
  font-weight: normal;
}
#rgpd #rgpd-box #rgpd-action button[data-rgpd-apply].disabled {
  filter: grayscale(100%);
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
}
#rgpd #rgpd-box #rgpd-action button[data-rgpd-apply]:hover {
  background: #eb2100;
  border-color: #eb2100;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 850px) {
  #rgpd #rgpd-box #rgpd-action {
    display: block;
  }
  #rgpd #rgpd-box #rgpd-action button {
    display: block !important;
    margin: 0 auto 5px auto;
  }
  #rgpd #rgpd-box #rgpd-action button:first-child {
    margin-top: 5px;
  }
  #rgpd #rgpd-box #rgpd-action button[data-rgpd-apply] {
    display: none !important;
  }
}
#rgpd.rgpd-toggled #rgpd-box #rgpd-box-details {
  display: block;
}
#rgpd.rgpd-toggled #rgpd-box #rgpd-box-summary {
  display: none;
}
#rgpd.rgpd-toggled #rgpd-box #rgpd-action button[data-rgpd-all] {
  display: inline-block;
  padding: 10px 20px;
  background: #eee;
  border: 2px solid #000;
  border-radius: 4px;
  color: #000;
  font-size: 1.2em;
  background: #eee;
  border-color: #ff6950;
  color: #ff6950;
  font-weight: normal;
}
@media screen and (max-width: 1200px) {
  #rgpd.rgpd-toggled #rgpd-box #rgpd-action button[data-rgpd-all] {
    padding: 5px 10px;
    border-width: 1px;
    font-size: 1em;
  }
}
#rgpd.rgpd-toggled #rgpd-box #rgpd-action button[data-rgpd-all]:hover {
  background: #e2e2e2;
  border-color: #000;
  color: #000;
  font-weight: normal;
}
#rgpd.rgpd-toggled #rgpd-box #rgpd-action button[data-rgpd-all].disabled {
  filter: grayscale(100%);
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
}
#rgpd.rgpd-toggled #rgpd-box #rgpd-action button[data-rgpd-all]:hover {
  background: #e2e2e2;
  border-color: #eb2100;
  color: #eb2100;
  font-weight: normal;
}
#rgpd.rgpd-toggled #rgpd-box #rgpd-action button[data-rgpd-apply] {
  display: inline-block;
}
@media screen and (max-width: 850px) {
  #rgpd.rgpd-toggled #rgpd-box #rgpd-action button[data-rgpd-apply] {
    display: block !important;
  }
}
#rgpd.rgpd-locked #rgpd-box {
  filter: grayscale(100%);
  pointer-events: none;
  cursor: default;
}
#rgpd.rgpd-locked #rgpd-box > * {
  opacity: 0.3;
}
.container {
  width: 100%;
  margin: 0 auto;
}
.under-sm {
  display: block;
}
.above-sm {
  display: none;
}
@media screen and (min-width: 576px) {
  .under-sm {
    display: none;
  }
  .above-sm {
    display: block;
  }
  .container {
    max-width: 540px;
  }
}
.under-md {
  display: block;
}
.above-md {
  display: none;
}
@media screen and (min-width: 768px) {
  .under-md {
    display: none;
  }
  .above-md {
    display: block;
  }
  .container {
    max-width: 720px;
  }
}
.under-lg {
  display: block;
}
.above-lg {
  display: none;
}
@media screen and (min-width: 992px) {
  .under-lg {
    display: none;
  }
  .above-lg {
    display: block;
  }
  .container {
    max-width: 960px;
  }
}
.under-xl {
  display: block;
}
.above-xl {
  display: none;
}
@media screen and (min-width: 1064px) {
  .under-xl {
    display: none;
  }
  .above-xl {
    display: block;
  }
  .container {
    max-width: 1087px;
  }
}
@media screen and (max-width: 576px) {
  .only-above-sm {
    display: none !important;
  }
}
@media screen and (min-width: 576px) {
  .only-below-sm {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .only-above-md {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .only-below-md {
    display: none !important;
  }
}
@media screen and (max-width: 992px) {
  .only-above-lg {
    display: none !important;
  }
}
@media screen and (min-width: 992px) {
  .only-below-lg {
    display: none !important;
  }
}
@media screen and (max-width: 1064px) {
  .only-above-xl {
    display: none !important;
  }
}
@media screen and (min-width: 1064px) {
  .only-below-xl {
    display: none !important;
  }
}
body:before,
body:after {
  font-family: monospace;
}
body:before {
  display: block;
  position: fixed;
  left: 50%;
  top: 0;
  padding: 10px 15px;
  transform: translateX(-50%);
  background: rgba(255,255,0,0.25);
  border: 1px solid rgba(0,255,0,0.25);
  border-top: none;
  color: #000;
  content: ' Less than <sm> = 576px \0000a Container Max Width = none ';
  white-space: pre;
  text-align: center;
  line-height: 1.3;
  font-size: 14px;
  z-index: 1001;
  pointer-events: none;
}
body:after {
  display: block;
  position: fixed;
  box-sizing: border-box;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100%;
  transform: translateX(-50%);
  border: var(--bs-gutter-x, 0.75rem) solid rgba(0,255,0,0.5);
  border-top: none;
  border-bottom: none;
  box-shadow: 0 0 20vw rgba(0,255,0,0.5);
  content: "";
  z-index: 1002;
  pointer-events: none;
}
@media screen and (min-width: 576px) {
  body:before {
    content: ' Between <sm> = 576px and <md> = 768px \0000a Container Max Width = 540px ';
  }
  body:after {
    width: 540px;
  }
}
@media screen and (min-width: 768px) {
  body:before {
    content: ' Between <md> = 768px and <lg> = 992px \0000a Container Max Width = 720px ';
  }
  body:after {
    width: 720px;
  }
}
@media screen and (min-width: 992px) {
  body:before {
    content: ' Between <lg> = 992px and <xl> = 1064px \0000a Container Max Width = 960px ';
  }
  body:after {
    width: 960px;
  }
}
@media screen and (max-width: 320px) {
  body:before {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 25vh 0 0 0;
    transform: none;
    background: rgba(255,0,0,0.75);
    color: #fff;
    content: " We apologize, \0000a but this website \0000a is not compatible \0000a with a Minitel ";
    font-weight: bold;
  }
}
body:before,
body:after {
  display: none;
}
body.breakpoint-helper:before,
body.breakpoint-helper:after {
  display: block;
}
:root,
html {
  font-size: 15px;
}
html,
body {
  overflow-x: hidden;
  height: 100%;
}
body {
  position: relative;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background-color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  font-size: 1rem;
}
body,
input,
textarea,
select,
button {
  color: #fff;
  font-family: "Source Sans 3";
}
::selection {
  background: #ff6950;
  color: #fff;
}
.untouchable {
  pointer-events: none !important;
  user-select: none !important;
}
.disabled {
  pointer-events: none !important;
  filter: grayscale(100%);
  opacity: 0.5;
}
em,
i {
  font-style: inherit;
}
strong,
b {
  font-weight: inherit;
}
small,
big {
  font-size: 1em;
}
ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.text-transform-none {
  text-transform: none !important;
}
.mobile-only {
  display: none !important;
}
@media (max-width: 1063px) {
  .mobile-only {
    display: block !important;
  }
}
@media (max-width: 1063px) {
  .desktop-only {
    display: none !important;
  }
}
br.m {
  display: none;
}
p {
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  color: #fff;
  text-decoration: none;
}
button {
  cursor: pointer;
}
a,
button,
input,
textarea,
select {
  transition: all 0.25s;
}
#bg {
  display: none;
}
#bg {
  display: block;
  position: fixed;
  overflow: hidden;
  left: 0;
  right: 0;
  top: 0;
  min-height: 100vh;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
#bg:before,
#bg > div:before,
#bg:after,
#bg > div:after {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
}
#bg > div {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: url('../img/ui/custom/bg.jpg?v=0.238');
  background-size: cover;
  background-position: center center;
}
#g {
  display: flex;
  position: relative;
  flex-direction: column;
  margin-bottom: 0;
  min-height: 100%;
  z-index: 2;
}
@media (max-width: 991px) {
  #g {
    margin-bottom: 2rem;
  }
}
@media (max-width: 575px) {
  #g {
    margin-bottom: 0;
  }
}
#g #head {
  margin: 0;
}
#g #head #header {
  display: flex;
  position: relative;
  margin: 0;
  padding: 0;
  z-index: 20;
}
#g #head #header #nav-toggler {
  display: none;
  position: absolute;
  right: -7px;
  top: -16px;
  padding: 20px;
  background: none;
  border: none;
  outline: none;
}
#g #head #header #nav-toggler > span {
  display: block;
  width: 3.3rem;
  height: 3.3rem;
  background-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"%3e%3cpath stroke="rgba%28255, 105, 80, 1%29" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"/%3e%3c/svg%3e');
  background-size: 100%;
}
#g #head #header #nav-toggler:hover > span {
  width: 3.3rem;
  height: 3.3rem;
  background-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"%3e%3cpath stroke="rgba%280, 0, 0, 1%29" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"/%3e%3c/svg%3e');
  background-size: 100%;
}
#g #head #header ul#nav {
  display: flex;
  margin: 0.4rem 0 0.4rem auto;
}
#g #head #header ul#nav > li {
  margin: 0 0.4rem 0 0;
  padding: 0;
}
#g #head #header ul#nav > li > a {
  display: block;
  padding: 0.6rem 0.7rem 0.55rem 0.7rem;
  border: 2px solid rgba(255,105,80,0.2);
  border-radius: 0px;
  color: #ff6950;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.1rem;
}
#g #head #header ul#nav > li > a:hover {
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
#g #head #header ul#nav > li.active > a,
#g #head #header ul#nav > li.active > a a:hover {
  border-color: #ff6950;
  color: #ff6950;
}
#g #head #header ul#nav > li > a:active,
#g #head #header ul#nav > li.active > a:active {
  border-color: #fff;
  color: #fff;
}
@media (max-width: 1063px) {
  #g #head #header #nav-toggler {
    display: block;
  }
  #g #head #header ul#nav {
    display: none;
  }
}
#g #banner > div > img {
  display: block;
  position: relative;
  width: 100%;
}
#g #footer {
  position: relative;
  margin: 0;
  padding: 2rem;
  background: transparent;
  z-index: 2;
}
#g #footer > ul#footer-links {
  display: flex;
  position: relative;
  justify-content: center;
}
#g #footer > ul#footer-links > li {
  position: relative;
  margin: 0 1rem;
}
#g #footer > ul#footer-links > li > a {
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  opacity: 0.85;
}
#g #footer > ul#footer-links > li > a:hover {
  text-decoration: underline;
  opacity: 1;
}
#g #footer > ul#footer-links > li > a:hover:active {
  color: #ff6950;
}
#g #footer > ul#footer-links > li.active > a {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 991px) {
  #g #footer > ul#footer-links {
    display: block;
  }
  #g #footer > ul#footer-links > li > a {
    display: block;
    padding: 0.5rem;
    text-align: center;
  }
}
#g #footer > p#footer-terms {
  margin: 2.5rem 0 0 0;
  padding: 0;
  text-align: center;
  line-height: 1.25;
  font-size: 0.9rem;
  opacity: 0.75;
}
#g > #g-ctx {
  position: relative;
  padding: 0;
  z-index: 10;
}
#g > #g-ctx > p#ctx-terms {
  margin: 0;
  padding: 2rem 0 0.5rem 0;
  background: transparent;
  text-align: center;
  line-height: 1.25;
  font-size: 0.9rem;
  opacity: 0.75;
}
#g > #g-ctx .max-playings-reached {
  margin: 3rem 0;
  color: #ff6950;
  text-align: center;
  text-transform: uppercase;
  font-size: 2rem;
}
#g > #g-ctx .ctx-wrap {
  position: relative;
  margin: 0;
  padding: 0;
  margin: 0;
  padding: 0;
  z-index: 10;
}
#g > #g-ctx .ctx-wrap > .ctx {
  position: relative;
  background: transparent;
  z-index: 2;
}
#g > #g-ctx .ctx-wrap > .ctx .illustr {
  display: none;
}
#g > #g-ctx .ctx-wrap > .ctx .ctx-boxed {
  margin: 0;
  background: transparent;
}
#g > #g-ctx .ctx-wrap > .ctx .ctx-title {
  padding: 1.8rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
}
#g > #g-ctx .ctx-wrap > .ctx .ctx-title.ctx-title-spacer {
  margin-top: 2rem;
}
#g > #g-ctx .ctx-wrap > .ctx .ctx-action {
  padding: 2rem;
  text-align: center;
}
#g > #g-ctx .ctx-wrap > .ctx .ctx-action > a,
#g > #g-ctx .ctx-wrap > .ctx .ctx-action > button {
  display: inline-block;
  appearance: none;
  padding: 1.75rem 2.5rem;
  background: #ff6950;
  border: 3px solid #ff6950;
  border-radius: 100px;
  color: #191919;
  outline: none;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2.35rem;
}
#g > #g-ctx .ctx-wrap > .ctx .ctx-action > a:hover,
#g > #g-ctx .ctx-wrap > .ctx .ctx-action > button:hover {
  padding-left: 3rem;
  padding-right: 3rem;
  background: transparent;
  border-color: #ff6950;
  color: #ff6950;
}
@media (max-width: 767px) {
  #g > #g-ctx .ctx-wrap > .ctx .ctx-action > a:hover,
  #g > #g-ctx .ctx-wrap > .ctx .ctx-action > button:hover {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}
#g > #g-ctx .ctx-wrap > .ctx .ctx-action > a:hover:active,
#g > #g-ctx .ctx-wrap > .ctx .ctx-action > button:hover:active {
  background: #fff;
  border-color: #fff;
  color: #191919;
}
.modal {
  display: block;
  position: fixed;
  overflow-y: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  transition: all 0.25s;
  z-index: 999;
}
.modal > .modal-box {
  position: absolute;
  top: 30px;
  left: 50%;
  padding-bottom: 30px;
  max-width: 90vw;
  transform: translateX(-50%);
}
.modal > .modal-box > .modal-close {
  display: block;
  position: absolute;
  overflow: hidden;
  right: 0;
  top: 0;
  width: 7%;
  height: 13%;
  text-indent: -100vw;
  cursor: pointer;
}
.modal > .modal-box > .modal-body {
  display: block;
}
.modal > .modal-box > .modal-body > img {
  display: block;
  max-width: 100%;
}
@media (max-width: 1063px) {
  .modal > .modal-box > .modal-body {
    width: min(447px, 90vw);
    aspect-ratio: 447/738;
    background-size: 100%;
    background-repeat: no-repeat;
  }
  .modal > .modal-box > .modal-body > img {
    display: none;
  }
  .modal[data-modal-src*="dialog-proofs"] > .modal-box > .modal-body {
    background-image: url("../img/ui/custom/dialog-proofs-sm.png");
  }
  .modal[data-modal-src*="dialog-barcode"] > .modal-box > .modal-body {
    background-image: url("../img/ui/custom/dialog-barcode-sm.png");
  }
}
body.footer-fixed #g > #g-ctx {
  flex: 1;
}
body.hamburger-on #g > #g-ctx,
body.hamburger-on #g > #footer {
  opacity: 0;
  pointer-events: none;
}
body.hamburger-on #g #head #header #nav-toggler > span {
  width: 3.3rem;
  height: 3.3rem;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cg id="close"%3E%3Cpath id="x" d="M18.717 6.697l-1.414-1.414-5.303 5.303-5.303-5.303-1.414 1.414 5.303 5.303-5.303 5.303 1.414 1.414 5.303-5.303 5.303 5.303 1.414-1.414-5.303-5.303z" fill="rgba%28255, 105, 80, 1%29"/%3E%3C/g%3E%3C/svg%3E');
  background-size: 100%;
}
body.hamburger-on #g #head #header #nav-toggler:hover > span {
  width: 3.3rem;
  height: 3.3rem;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cg id="close"%3E%3Cpath id="x" d="M18.717 6.697l-1.414-1.414-5.303 5.303-5.303-5.303-1.414 1.414 5.303 5.303-5.303 5.303 1.414 1.414 5.303-5.303 5.303 5.303 1.414-1.414-5.303-5.303z" fill="rgba%280, 0, 0, 1%29"/%3E%3C/g%3E%3C/svg%3E');
  background-size: 100%;
}
body.hamburger-on #g #head #header ul#nav {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 100px);
  flex: 1;
  margin: 0;
}
body.hamburger-on #g #head #header ul#nav > li {
  padding: 0;
  margin: 0;
}
body.hamburger-on #g #head #header ul#nav > li > a {
  flex: 1;
  padding: 20px;
  border-left: none;
  text-align: center;
}
body.hamburger-on #g #head #header ul#nav > li:before {
  display: none;
}
#page-loader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255,105,80,0.7);
  animation: fade-in 0.5s 1 forwards;
  z-index: 3333;
}
#page-loader > div {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
}
#page-loader > div:before,
#page-loader > div:after {
  display: block;
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  animation: page-loader-circles 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  content: "";
}
#page-loader > div:after {
  animation-delay: -0.5s;
}
@-moz-keyframes page-loader-circles {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
@-webkit-keyframes page-loader-circles {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
@-o-keyframes page-loader-circles {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
@keyframes page-loader-circles {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
@media screen and (min-width: ) and (min-width: 1064px) {
  body:before {
    content: ' More than <xxl> = null \0000a Container Max Width = null ';
  }
  body:after {
    width: ;
  }
}
.grecaptcha-badge {
  z-index: 20;
}
.form-text {
  color: #fff;
}
.form-disabled {
  filter: grayscale(100%);
  opacity: 0.5;
  cursor: progress !important;
}
.form-disabled > *,
.form-disabled .form-element-disabled {
  pointer-events: none !important;
  user-select: none !important;
  cursor: progress !important;
}
.ctx-wrap > .ctx.ctx-form form {
  display: block;
  padding: 0;
  transition: all 0.25s;
}
.ctx-wrap > .ctx.ctx-form .field {
  position: relative;
  margin: 0 0 0.5rem 0;
  width: 100%;
}
.ctx-wrap > .ctx.ctx-form .field .field-label {
  display: none;
}
.ctx-wrap > .ctx.ctx-form .field .field-text,
.ctx-wrap > .ctx.ctx-form .field .field-counter,
.ctx-wrap > .ctx.ctx-form .field .form-error {
  margin: 0.5rem 0 1rem 0;
  padding: 0.75rem 1rem 0.8rem 1rem;
  border-radius: 0px;
  font-size: 0.95rem;
}
.ctx-wrap > .ctx.ctx-form .field .field-text,
.ctx-wrap > .ctx.ctx-form .field .field-counter {
  border: 1px solid rgba(255,255,255,0.2);
}
.ctx-wrap > .ctx.ctx-form .field .form-error {
  background: #c1331c;
  border-radius: 0px;
  color: #fff;
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"],
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"],
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"],
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"],
.ctx-wrap > .ctx.ctx-form .field .field-ctrl select,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl textarea {
  display: block;
  position: relative;
  box-sizing: border-box;
  margin: 0;
  padding: 0.75rem 1rem 0.8rem 1rem;
  width: 100%;
  background-color: #191919;
  border: 1px solid #fff;
  border-radius: 0px;
  outline: none;
  box-shadow: 0 0.125rem 0.25rem rgba(255,255,255,0.25);
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"]::placeholder,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"]::placeholder,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"]::placeholder,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"]::placeholder,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl select::placeholder,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl textarea::placeholder {
  color: rgba(255,255,255,0.8);
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"]:hover,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"]:hover,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"]:hover,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"]:hover,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl select:hover,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl textarea:hover {
  background-color: rgba(255,255,255,0.05);
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"]:focus,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"]:focus,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"]:focus,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"]:focus,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl select:focus,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl textarea:focus {
  background-color: rgba(255,255,255,0.075);
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"].has-error,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"].has-error,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"].has-error,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"].has-error,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl select.has-error,
.ctx-wrap > .ctx.ctx-form .field .field-ctrl textarea.has-error {
  border-color: #c1331c;
  box-shadow: 0 0.125rem 0.25rem rgba(193,51,28,0.5);
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"][disabled],
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"][disabled],
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"][disabled],
.ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"][disabled],
.ctx-wrap > .ctx.ctx-form .field .field-ctrl select[disabled],
.ctx-wrap > .ctx.ctx-form .field .field-ctrl textarea[disabled] {
  opacity: 0.35;
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg fill='rgb%28255,255,255%29' width='800px' height='800px' viewBox='0 0 256 256' id='Flat' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M128,188a11.96187,11.96187,0,0,1-8.48535-3.51465l-80-80a12.0001,12.0001,0,0,1,16.9707-16.9707L128,159.0293l71.51465-71.51465a12.0001,12.0001,0,0,1,16.9707,16.9707l-80,80A11.96187,11.96187,0,0,1,128,188Z'/%3E%3C/svg%3E");
  background-size: 1rem auto;
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) center;
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl select option {
  background: #191919;
  color: #fff;
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-checkbox {
  margin: 1.5rem 0 0 0;
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-checkbox > label {
  display: flex;
  cursor: pointer;
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-checkbox > label > input[type="checkbox"] {
  position: relative;
  height: 1.1rem;
  flex: 0 0 1.1rem;
  appearance: none;
  margin: 0 0.5rem 0 0;
  background: #191919;
  border: 1px solid #ff6950;
  border-radius: 0;
  cursor: pointer;
  height: 19px;
  flex: 0 0 19px;
  border-radius: 0.15rem;
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-checkbox > label > input[type="checkbox"]:before {
  display: block;
  position: absolute;
  left: 3px;
  right: 3px;
  top: 3px;
  bottom: 3px;
  background: transparent;
  content: "";
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover:before {
  background: rgba(255,255,255,0.25);
  border-color: #ff6950;
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked:before {
  background: #ff6950;
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-checkbox > label > input[type="checkbox"][type="radio"],
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-checkbox > label > input[type="checkbox"][type="radio"]:before {
  border-radius: 10rem !important;
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-checkbox > label > input[type="checkbox"]:before {
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  border-radius: 0.1rem;
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-checkbox > label > input[type="radio"] {
  position: relative;
  height: 1.1rem;
  flex: 0 0 1.1rem;
  appearance: none;
  margin: 0 0.5rem 0 0;
  background: #191919;
  border: 1px solid #ff6950;
  border-radius: 0;
  cursor: pointer;
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-checkbox > label > input[type="radio"]:before {
  display: block;
  position: absolute;
  left: 3px;
  right: 3px;
  top: 3px;
  bottom: 3px;
  background: transparent;
  content: "";
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-checkbox > label > input[type="radio"]:hover:before {
  background: rgba(255,255,255,0.25);
  border-color: #ff6950;
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-checkbox > label > input[type="radio"]:checked:before {
  background: #ff6950;
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-checkbox > label > input[type="radio"][type="radio"],
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-checkbox > label > input[type="radio"][type="radio"]:before {
  border-radius: 10rem !important;
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-checkbox > label > .field-check-label {
  line-height: 1.2;
  font-size: 0.9rem;
  user-select: none;
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-counter {
  margin-bottom: 0.5rem;
}
.ctx-wrap > .ctx.ctx-form .field.field-hidden {
  display: none !important;
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl {
  display: flex;
  flex-wrap: wrap;
  background: #191919;
  border: 1px solid #fff;
  border-radius: 0px;
  box-shadow: 0 0.125rem 0.25rem rgba(255,255,255,0.35);
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check {
  flex: 1;
  border-left: 1px solid rgba(255,255,255,0.25);
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check:first-child {
  border-left: none;
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label {
  display: flex;
  padding: 0 0.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem 0.8rem 1rem;
  cursor: pointer;
  user-select: none;
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="checkbox"] {
  position: relative;
  height: 1.1rem;
  flex: 0 0 1.1rem;
  appearance: none;
  margin: 0 0.5rem 0 0;
  background: #191919;
  border: 1px solid #ff6950;
  border-radius: 0;
  cursor: pointer;
  height: 19px;
  flex: 0 0 19px;
  border-radius: 0.15rem;
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="checkbox"]:before {
  display: block;
  position: absolute;
  left: 3px;
  right: 3px;
  top: 3px;
  bottom: 3px;
  background: transparent;
  content: "";
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="checkbox"]:hover:before {
  background: rgba(255,255,255,0.25);
  border-color: #ff6950;
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="checkbox"]:checked:before {
  background: #ff6950;
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="checkbox"][type="radio"],
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="checkbox"][type="radio"]:before {
  border-radius: 10rem !important;
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="checkbox"]:before {
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  border-radius: 0.1rem;
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="radio"] {
  position: relative;
  height: 1.1rem;
  flex: 0 0 1.1rem;
  appearance: none;
  margin: 0 0.5rem 0 0;
  background: #191919;
  border: 1px solid #ff6950;
  border-radius: 0;
  cursor: pointer;
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="radio"]:before {
  display: block;
  position: absolute;
  left: 3px;
  right: 3px;
  top: 3px;
  bottom: 3px;
  background: transparent;
  content: "";
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="radio"]:hover:before {
  background: rgba(255,255,255,0.25);
  border-color: #ff6950;
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="radio"]:checked:before {
  background: #ff6950;
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="radio"][type="radio"],
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="radio"][type="radio"]:before {
  border-radius: 10rem !important;
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label:hover {
  background: rgba(255,255,255,0.05);
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .form-error {
  margin: 0 0.25rem;
  width: 100%;
}
@media (max-width: 575px) {
  .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl {
    display: block;
  }
  .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.25);
  }
  .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check:first-child {
    border-top: none;
  }
}
.ctx-wrap > .ctx.ctx-form .field.field-file {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  margin: 2rem auto;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 0px;
}
.ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-label {
  padding: 0.75rem 1rem 0.8rem 1rem;
  background: #191919;
  border-bottom: 1px solid #fff;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-label > div:after {
  margin-left: 0.125rem;
}
.ctx-wrap > .ctx.ctx-form .field.field-file > .field-attached-file {
  display: flex;
  padding: 0;
  border-bottom: 1px solid #fff;
}
.ctx-wrap > .ctx.ctx-form .field.field-file > .field-attached-file > strong,
.ctx-wrap > .ctx.ctx-form .field.field-file > .field-attached-file > span {
  padding: 0.75rem;
}
.ctx-wrap > .ctx.ctx-form .field.field-file > .field-attached-file > strong {
  flex: 1;
  color: #fff;
}
.ctx-wrap > .ctx.ctx-form .field.field-file > .field-attached-file > span {
  border-left: 1px solid #fff;
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}
.ctx-wrap > .ctx.ctx-form .field.field-file > .field-attached-file > span:hover {
  background: #fff;
  color: #191919;
  text-decoration: none;
}
.ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-ctrl-container > div {
  position: relative;
}
.ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-ctrl-container > div > input[type="file"] {
  display: block;
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 4.5rem;
  background: #f00;
  font-family: "Source Sans 3";
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}
.ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-ctrl-container > div > button {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 0.5rem 1rem 0.6rem 1rem;
  max-width: calc(100% - 2rem);
  transform: translate(-50%, -50%);
  background: #191919;
  border: 1px solid #fff;
  border-radius: 0px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  pointer-events: none;
  z-index: 1;
}
.ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-ctrl-container > div > button > span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-ctrl-container > div:hover > button {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-ctrl-container > div:active > button {
  background: #fff;
  color: #191919;
}
.ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-ctrl-container > div.field-file-selected > button {
  border-color: #95c11f;
  text-transform: none;
  font-weight: 400;
}
.ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description {
  margin: 0;
  padding: 1rem;
  border-top: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  line-height: 1.25;
  text-align: center;
  font-size: 0.7rem;
}
.ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description > div > strong {
  font-weight: 700;
}
.ctx-wrap > .ctx.ctx-form .field.field--Gender {
  margin-bottom: 2rem;
}
.ctx-wrap > .ctx.ctx-form .form-layout {
  position: relative;
  margin: 2rem auto;
  padding: 0;
  max-width: 600px;
}
.ctx-wrap > .ctx.ctx-form .form-layout > div {
  padding: 0 2rem;
}
.ctx-wrap > .ctx.ctx-form .form-layout > div > div {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1064px) {
  .ctx-wrap > .ctx.ctx-form .form-layout > div > div .field.field-half {
    width: calc(50% - 0.25rem);
  }
  .ctx-wrap > .ctx.ctx-form .form-layout > div > div .field.field-half.field-half-1 {
    margin-right: 0.5rem;
  }
}
@media (min-width: 1064px) {
  .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop .field {
    display: flex;
  }
  .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop .field .field-label {
    display: block;
    align-self: center;
  }
  .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop .field .field-ctrl {
    flex: 1;
  }
  .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop .field .field-ctrl input[type="text"]::placeholder,
  .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop .field .field-ctrl input[type="email"]::placeholder,
  .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop .field .field-ctrl input[type="password"]::placeholder,
  .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop .field .field-ctrl input[type="number"]::placeholder,
  .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop .field .field-ctrl select::placeholder,
  .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop .field .field-ctrl textarea::placeholder {
    color: transparent !important;
  }
}
@media (max-width: 1063px) {
  .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile .field {
    display: flex;
  }
  .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile .field .field-label {
    display: block;
    align-self: center;
  }
  .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile .field .field-ctrl {
    flex: 1;
  }
  .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile .field .field-ctrl input[type="text"]::placeholder,
  .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile .field .field-ctrl input[type="email"]::placeholder,
  .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile .field .field-ctrl input[type="password"]::placeholder,
  .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile .field .field-ctrl input[type="number"]::placeholder,
  .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile .field .field-ctrl select::placeholder,
  .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile .field .field-ctrl textarea::placeholder {
    color: transparent !important;
  }
}
.code-force-case-upper {
  text-transform: uppercase;
}
.code-force-case-upper::placeholder {
  text-transform: none;
}
.code-force-case-lower {
  text-transform: lowercase;
}
.field-tooltip {
  position: absolute;
  margin: -1px 0 0 0;
  padding: 0.5rem;
  background: #fff;
  border-radius: 0 0 0px 0px;
  color: #191919;
  box-shadow: 0 0.125rem 0.125rem rgba(255,255,255,0.25);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  pointer-events: none;
}
.form-terms {
  position: relative;
  margin: 0;
  padding: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  line-height: 1.2;
  font-weight: 400;
  font-size: 0.75rem;
  opacity: 0.5;
  transition: all 0.25s;
}
.form-terms:hover {
  opacity: 1;
}
.form-terms p {
  margin: 0 0 0.75rem 0;
}
.form-terms p:last-child {
  margin-bottom: 0;
}
.form-terms p > strong {
  font-weight: normal;
}
.form-terms-text {
  margin: 0 0 10px 0;
}
.form-terms-accept > .form-error {
  margin: 0.5rem 0 1rem 0;
  padding: 0.75rem 1rem 0.8rem 1rem;
  background: #c1331c;
  border-radius: 0px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: bold;
}
.form-terms-accept > label {
  display: flex;
  cursor: pointer;
}
.form-terms-accept > label > input[type="checkbox"] {
  position: relative;
  height: 1.1rem;
  flex: 0 0 1.1rem;
  appearance: none;
  margin: 0 0.5rem 0 0;
  background: #191919;
  border: 1px solid #ff6950;
  border-radius: 0;
  cursor: pointer;
  height: 19px;
  flex: 0 0 19px;
  border-radius: 0.15rem;
}
.form-terms-accept > label > input[type="checkbox"]:before {
  display: block;
  position: absolute;
  left: 3px;
  right: 3px;
  top: 3px;
  bottom: 3px;
  background: transparent;
  content: "";
}
.form-terms-accept > label > input[type="checkbox"]:hover:before {
  background: rgba(255,255,255,0.25);
  border-color: #ff6950;
}
.form-terms-accept > label > input[type="checkbox"]:checked:before {
  background: #ff6950;
}
.form-terms-accept > label > input[type="checkbox"][type="radio"],
.form-terms-accept > label > input[type="checkbox"][type="radio"]:before {
  border-radius: 10rem !important;
}
.form-terms-accept > label > input[type="checkbox"]:before {
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  border-radius: 0.1rem;
}
.form-terms-accept > label > span {
  flex: 1;
}
.popup {
  display: block;
  position: fixed;
  overflow: hidden;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  opacity: 0;
  z-index: 2000;
  transition: all 0.25s;
}
.popup > div {
  position: absolute;
  left: 50%;
  top: 180px;
  width: 1007px;
  height: 594px;
  max-width: 100%;
  transform: translateX(-50%);
  background: url("../img/ui/popup-bg.png") no-repeat;
  background-size: 100%;
  transition: top 0.5s;
}
.popup > div > [data-popup-close] {
  display: block;
  position: absolute;
  right: 20px;
  top: 4px;
  width: calc(22px + 15px);
  height: calc(22px + 15px);
  background: url("../img/ui/popup-close.png") no-repeat center;
  cursor: pointer;
}
.popup > div > [data-popup-close]:hover {
  filter: invert(100%);
}
.popup > div > div {
  position: absolute;
  left: 69.30000000000001px;
  top: 56.650000000000006px;
  width: calc(100% - (2 * 69.30000000000001px));
  height: 480.7px;
  max-height: 100%;
}
.popup > div > div > img {
  display: block;
  width: 100%;
  background: #eee;
  color: #999;
}
@media screen and (max-width: 1007px) {
  .popup > div > [data-popup-close] {
    right: 5px;
    top: -37px;
  }
  .popup > div > div {
    left: 6vw;
    right: 6vw;
    top: 5.25vw;
    width: calc(100% - (2 * 6vw));
  }
}
.popup.visible {
  top: 0;
  bottom: 0;
  height: auto;
  opacity: 1;
}
.popup.visible > div {
  top: 200px;
}
#ctx-code p {
  margin: 0.5rem 0 0 1rem;
  line-height: 1;
  text-align: center;
}
#ctx-code p strong {
  display: block;
  text-transform: uppercase;
  font-size: 2.5em;
  font-weight: 800;
}
#ctx-code p:last-child:after {
  display: block;
  position: relative;
  margin: 1rem 0 0 1.5rem;
  width: 105px;
  height: 65.5px;
  background: url("../img/ui/pages/game/animation-arrow.png") no-repeat 0 0;
  background-size: 100%;
  content: "";
}
#ctx-upcoming > .ctx-disabled-keep-in-touch,
#ctx-ended > .ctx-disabled-keep-in-touch {
  margin: 0;
  padding: 3rem 1rem 5rem 1rem;
  color: #fff;
  line-height: 1.43;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
}
#ctx-ended > .ctx-disabled-keep-in-touch {
  margin-top: 42px;
}
.countdown {
  display: flex;
  justify-content: center;
  margin: 5rem 0 0 0;
}
@media (max-width: 575px) {
  .countdown {
    transform: scale(0.75);
  }
}
.countdown > div > .countdown-el-digits {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  margin: 0 0.8rem;
  border: 3px solid #ff6950;
  border-radius: 10rem;
  color: #fff;
  font-weight: 900;
  font-size: 2rem;
}
.countdown > div > .countdown-el-label {
  margin: 19px 0 0 0;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
}
#ctx-home ul.ctx-home-prizes {
  display: flex;
  margin: 1.5rem auto;
}
#ctx-home ul.ctx-home-prizes.ctx-home-prizes-nb-2 {
  max-width: 675px;
}
#ctx-home ul.ctx-home-prizes.ctx-home-prizes-nb-3 {
  max-width: 775px;
}
#ctx-home ul.ctx-home-prizes > li {
  flex: 1;
  margin: 0 2rem;
}
#ctx-home ul.ctx-home-prizes > li:first-child {
  margin-left: 0;
}
#ctx-home ul.ctx-home-prizes > li:last-child {
  margin-right: 0;
}
#ctx-home ul.ctx-home-prizes > li > img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
#ctx-home ul.ctx-home-prizes > li > p {
  margin: 0;
  padding: 0;
}
#ctx-home ul.ctx-home-prizes > li > p.ctx-home-prize-name {
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
  text-align: center;
  font-weight: 800;
  font-size: 1.2rem;
}
#ctx-home ul.ctx-home-prizes > li > p.ctx-home-prize-desc {
  color: #ff6950;
  text-align: center;
  line-height: 1.2;
  font-size: 0.85rem;
}
@media (max-width: 991px) {
  #ctx-home ul.ctx-home-prizes {
    display: block;
  }
  #ctx-home ul.ctx-home-prizes > li,
  #ctx-home ul.ctx-home-prizes > li:first-child,
  #ctx-home ul.ctx-home-prizes > li:last-child {
    margin: 0 1rem 2rem 1rem;
  }
  #ctx-home ul.ctx-home-prizes > li > img {
    max-width: min(calc(100% - 1rem), 300px);
  }
}
#ctx-home ol.ctx-home-steps {
  display: flex;
  margin: 1.5rem auto;
  counter-reset: home-game-steps;
}
#ctx-home ol.ctx-home-steps.ctx-home-steps-nb-2 {
  max-width: 575px;
}
#ctx-home ol.ctx-home-steps.ctx-home-steps-nb-3 {
  max-width: 675px;
}
#ctx-home ol.ctx-home-steps.ctx-home-steps-nb-4 {
  max-width: 775px;
}
#ctx-home ol.ctx-home-steps > li {
  flex: 1;
  margin: 0 1rem;
  counter-increment: home-game-steps;
}
#ctx-home ol.ctx-home-steps > li:first-child {
  margin-left: 0;
}
#ctx-home ol.ctx-home-steps > li:last-child {
  margin-right: 0;
}
#ctx-home ol.ctx-home-steps > li:before {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 3.5rem;
  height: 3.5rem;
  border: 3px solid #ff6950;
  border-radius: 10rem;
  color: #ff6950;
  content: counter(home-game-steps);
  line-height: 0.9;
  font-weight: bold;
  font-size: 1.75rem;
}
#ctx-home ol.ctx-home-steps > li > p {
  margin: 0.75rem 0 0 0;
  padding: 0;
  line-height: 1.2;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
}
#ctx-home ol.ctx-home-steps > li > p > strong {
  display: block;
  color: #ff6950;
}
@media (max-width: 991px) {
  #ctx-home ol.ctx-home-steps {
    display: block;
    max-width: none !important;
  }
  #ctx-home ol.ctx-home-steps > li,
  #ctx-home ol.ctx-home-steps > li:first-child,
  #ctx-home ol.ctx-home-steps > li:last-child {
    margin: 0 1rem 2rem 1rem;
  }
  #ctx-home ol.ctx-home-steps > li:last-child,
  #ctx-home ol.ctx-home-steps > li:first-child:last-child,
  #ctx-home ol.ctx-home-steps > li:last-child:last-child {
    margin-bottom: 0;
  }
}
#ctx-endowments .op-endowments {
  display: flex;
  justify-content: center;
  margin: 40px 70px 0 70px;
}
#ctx-endowments .op-endowments > div {
  display: flex;
  position: relative;
  flex-direction: column;
}
#ctx-endowments .op-endowments > div > strong,
#ctx-endowments .op-endowments > div > em,
#ctx-endowments .op-endowments > div > span,
#ctx-endowments .op-endowments > div > small {
  display: block;
  margin: 0 10px;
  text-align: center;
}
#ctx-endowments .op-endowments > div > strong {
  margin-top: 6px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
}
#ctx-endowments .op-endowments > div > em {
  margin-top: 6px;
  line-height: 1.25;
  font-size: 0.8rem;
  font-weight: 600;
}
#ctx-endowments .op-endowments > div > span {
  margin-top: 4px;
  line-height: 1.24;
  font-size: 0.76rem;
}
#ctx-endowments .op-endowments > div > small {
  margin-top: 8px;
  line-height: 1.25;
  font-size: 0.64rem;
}
#ctx-endowments .op-endowments > div:before {
  display: block;
  margin: 0 auto;
  height: 210px;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  content: "";
}
#ctx-endowments .op-endowments > div:after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ff6950;
  content: "";
}
#ctx-endowments .op-endowments > div:nth-child(1) {
  flex: 1;
}
#ctx-endowments .op-endowments > div:nth-child(1):before {
  width: 157px;
  background-image: url("../img/ui/custom/prize-scooter.png");
}
#ctx-endowments .op-endowments > div:nth-child(1):after {
  display: none;
}
#ctx-endowments .op-endowments > div:nth-child(2) {
  width: 353px;
}
#ctx-endowments .op-endowments > div:nth-child(2):before {
  width: 325px;
  background-image: url("../img/ui/custom/prize-bike.png");
}
#ctx-endowments .op-endowments > div:nth-child(3) {
  flex: 1;
}
#ctx-endowments .op-endowments > div:nth-child(3):before {
  width: 164px;
  background-image: url("../img/ui/custom/prize-card.png");
}
#ctx-endowments .bt-container {
  margin: 26px 0 0 0;
  text-align: center;
}
#reset-session {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  color: #000;
  z-index: 1000;
}
#reset-session,
#reset-session button {
  font-family: Arial, sans-serif;
}
#reset-session:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(153,153,153,0.6);
  content: "";
  z-index: 1;
  opacity: 0;
  animation-name: opening;
  animation-delay: 0.07s;
  animation-duration: 0.3s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
#reset-session #reset-session-box {
  position: absolute;
  overflow-y: auto;
  left: 50%;
  top: 50%;
  padding: 30px 35px 55px 35px;
  max-width: 800px;
  max-height: 100%;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 1px 3px 10px rgba(0,0,0,0.2);
  line-height: 1.4;
  z-index: 2;
  opacity: 0;
  animation-name: opening;
  animation-delay: 0.14s;
  animation-duration: 0.3s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 1380px) {
  #reset-session #reset-session-box {
    max-width: none;
    width: 90%;
  }
}
#reset-session #reset-session-box > strong {
  display: block;
  margin: 0 0 1rem 0;
  padding: 0;
  color: #000;
  text-align: center;
  text-transform: none;
  font-weight: bold;
  font-size: 1.9rem;
}
#reset-session #reset-session-box p {
  text-align: center;
}
#reset-session #reset-session-box p.reset-session-timer > strong,
#reset-session #reset-session-box p.reset-session-timer > em {
  font-weight: normal;
  font-style: normal;
}
#reset-session #reset-session-box #reset-session-action {
  margin: 1rem 0 0 0;
  text-align: center;
}
#reset-session #reset-session-box #reset-session-action > button {
  display: inline-block;
  position: relative;
  margin: 0 5px;
  padding: 10px 25px;
  background: #eee;
  border: none;
  outline: none;
  box-shadow: 3px 3px 0 #ccc;
  color: #333;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  transition: padding 0.125s, background-color 0.125s, color 0.125s;
}
#reset-session #reset-session-box #reset-session-action > button:not(.disabled):hover {
  background: #e5e5e5;
  color: #000;
}
#reset-session #reset-session-box #reset-session-action > button:not(.disabled):hover:active {
  background: #ddd;
}
#reset-session #reset-session-box #reset-session-action > button.disabled {
  background: #f5f5f5;
  box-shadow: 3px 3px 0 #eee;
  color: #999;
  cursor: not-allowed;
}
#ctx-how-to-play {
  padding-top: 3rem;
}
#ctx-how-to-play > div {
  margin: 0 auto;
  width: 655px;
  background: #fff;
  border: 6px solid #cba430;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
}
#ctx-how-to-play > div > p {
  margin: 25px 20px 0 0;
  padding: 0;
  line-height: 1;
  text-align: center;
  font-family: "Source Sans 3";
  font-size: 1.85rem;
}
#ctx-how-to-play > div > p > strong {
  color: #ff6950;
  font-weight: normal;
}
#ctx-how-to-play > div > div {
  display: flex;
  margin: -65px 0 8px 0;
}
#ctx-how-to-play > div > div > div > img {
  display: block;
}
#ctx-how-to-play > div > div > div > strong {
  display: block;
  text-align: center;
  line-height: 1;
  font-family: "Source Sans 3";
  font-size: 1rem;
}
#ctx-how-to-play > div > div > div > strong,
#ctx-how-to-play > div > div > div > strong em {
  font-weight: normal;
  font-style: normal;
}
#ctx-how-to-play > div > div > div > strong > em {
  display: block;
  color: #ff6950;
}
#ctx-how-to-play > div > div > div > strong > span > em {
  color: #ff6950;
}
#ctx-how-to-play > div > div > div:nth-child(1) > img {
  margin: 0 0 0 -50px;
}
#ctx-how-to-play > div > div > div:nth-child(1) > strong {
  margin: -5px 0 0 10px;
}
#ctx-how-to-play > div > div > div:nth-child(3) > img {
  margin: 95px 0 0 17px;
}
#ctx-how-to-play > div > div > div:nth-child(3) > strong {
  margin: 10px 0 0 0;
}
#ctx-how-to-play > div > div > div:nth-child(5) > img {
  margin: -15px 0 0 8px;
}
#ctx-how-to-play > div > div > div:nth-child(5) > strong {
  margin: 10px 0 0 -50px;
}
#ctx-how-to-play > div > div > span {
  display: block;
  color: #ff6950;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
}
#ctx-how-to-play > div > div > span > big,
#ctx-how-to-play > div > div > span > small {
  display: block;
}
#ctx-how-to-play > div > div > span > big {
  margin: 105px 0 0 -10px;
  font-size: 6rem;
}
#ctx-how-to-play > div > div > span > small {
  margin: 130px 0 0 5px;
  font-size: 2rem;
}
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-wheel > .ctx-reveal-animation-content {
  padding: 0.5rem 0;
}
@media (max-width: 767px) {
  #ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-wheel > .ctx-reveal-animation-content {
    overflow: hidden;
  }
}
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-wheel > .ctx-reveal-animation-content .ctx-boxed.ctx-title > div > strong {
  display: block;
  color: #ff6950;
}
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-wheel > .ctx-reveal-animation-content .ctx-boxed.ctx-action {
  padding: 0 0 1.5rem 0 !important;
}
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-wheel > .ctx-reveal-animation-content .ctx-boxed.ctx-action > button {
  padding: 0.9rem 1.5rem 1rem 1.5rem !important;
}
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-wheel > .ctx-reveal-animation-content .reveal-wheel {
  position: relative;
  margin: 0 auto;
  max-width: 600px;
  opacity: 0;
  transition: opacity 4s 0.5s;
  pointer-events: none;
}
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-wheel > .ctx-reveal-animation-content .reveal-wheel.ready {
  opacity: 1;
}
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-wheel > .ctx-reveal-animation-content .reveal-wheel > div {
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 100% 0 0 0;
}
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-wheel > .ctx-reveal-animation-content .reveal-wheel > div > .reveal-wheel-img,
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-wheel > .ctx-reveal-animation-content .reveal-wheel > div > .reveal-wheel-cursor {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-wheel > .ctx-reveal-animation-content .reveal-wheel > div > .reveal-wheel-img {
  background-image: url('../img/ui/custom/wheel.png?v=0.238');
  z-index: 1;
}
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-wheel > .ctx-reveal-animation-content .reveal-wheel > div > .reveal-wheel-cursor {
  background-image: url('../img/ui/custom/wheel-cursor.png?v=0.238');
  z-index: 2;
}
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-wheel > .ctx-reveal-animation-content .ctx-action {
  transition: opacity 0.5s 0.5s;
}
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-wheel > .ctx-reveal-animation-content .ctx-action button {
  transition: all 0.5s;
}
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-wheel > .ctx-reveal-animation-content .ctx-action button.running {
  pointer-events: none;
  opacity: 0;
}
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-wheel.animation-running > .ctx-reveal-animation-content .ctx-action,
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-wheel.animation-ended > .ctx-reveal-animation-content .ctx-action {
  opacity: 0;
}
#ctx-reveal > .ctx-reveal-result {
  margin: 0 auto;
}
#ctx-reveal > .ctx-reveal-result.ctx-reveal-result-with-animation {
  display: none;
  opacity: 0;
}
#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-won-title {
  margin: 1rem 1rem 1.25rem 1rem;
  text-align: center;
  font-size: 1.75rem;
  font-weight: bold;
  opacity: 0.75;
}
#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-won-prize {
  position: relative;
  margin: 0 auto;
  max-width: calc(100% - 2rem);
  width: 600px;
  background: #191919;
  border-radius: 0px;
}
#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-won-prize .prize-name {
  position: relative;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
}
#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-won-prize .prize-img img {
  display: block;
  margin: 2rem auto;
  width: calc(80% - 2rem);
}
#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-won-prize .prize-button > a {
  display: table;
  margin: 0 auto;
  appearance: none;
  padding: 0.75rem 1rem;
  background: #ff6950;
  border: 3px solid #ff6950;
  border-radius: 100px;
  color: #191919;
  outline: none;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
}
#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-won-prize .prize-button > a:hover {
  background: transparent;
  border-color: #ff6950;
  color: #ff6950;
}
#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-won-prize .prize-button > a:hover:active {
  background: #fff;
  border-color: #fff;
  color: #191919;
}
#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-won-prize .prize-button > span {
  display: block;
  color: #c1331c;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}
#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-won-prize .prize-button > span > a {
  display: block;
}
#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-won-prize .prize-description {
  position: relative;
  padding: 1rem;
  color: #ff6950;
  text-align: center;
  line-height: 1.2;
  font-size: 0.85rem;
}
#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-text {
  position: relative;
  margin: 0 auto;
  padding: 2rem 0;
  max-width: calc(100% - 2rem);
  width: 600px;
  line-height: 1.2;
  text-align: center;
  font-size: 0.95rem;
}
#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-text p {
  margin: 0 0 0.5rem 0;
}
#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-text p:last-child {
  margin-bottom: 0;
}
.ctx-boring {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
}
.ctx-boring .ctx-boring-content {
  margin: 0 auto;
  max-width: calc(100% - 2rem);
  width: 750px;
  line-height: 1.45;
  font-weight: 400;
  counter-reset: boring-section-1;
}
.ctx-boring .ctx-boring-content .boring-cookies {
  margin: 0 0 2rem 0;
}
.ctx-boring .ctx-boring-content .boring-cookies > dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0.75rem 0;
  padding: 0.75rem 0;
  background: #191919;
  border: 1px solid #fff;
  border-radius: 0px;
  line-height: 1.2;
  font-size: 0.9rem;
}
.ctx-boring .ctx-boring-content .boring-cookies > dl > dt,
.ctx-boring .ctx-boring-content .boring-cookies > dl > dd {
  position: relative;
  box-sizing: border-box;
  margin: 0 0 0.25rem 0;
  padding: 0 0 0.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.125);
}
.ctx-boring .ctx-boring-content .boring-cookies > dl > dt:last-child,
.ctx-boring .ctx-boring-content .boring-cookies > dl > dd:last-child,
.ctx-boring .ctx-boring-content .boring-cookies > dl > dt:nth-last-child(2),
.ctx-boring .ctx-boring-content .boring-cookies > dl > dd:nth-last-child(2) {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.ctx-boring .ctx-boring-content .boring-cookies > dl > dt {
  flex: 0 0 30%;
  margin-top: 0.2rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  color: #ff6950;
  text-align: right;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.75rem;
}
.ctx-boring .ctx-boring-content .boring-cookies > dl > dd {
  flex: 0 0 70%;
  padding-right: 0.75rem;
}
.ctx-boring .ctx-boring-content .boring-btn {
  display: table;
  margin: 0 auto 2rem auto;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 0px;
  text-decoration: none;
  text-align: center;
}
.ctx-boring .ctx-boring-content .boring-btn > strong,
.ctx-boring .ctx-boring-content .boring-btn > span {
  display: block;
}
.ctx-boring .ctx-boring-content .boring-btn > strong {
  font-size: 1.25rem;
}
.ctx-boring .ctx-boring-content .boring-btn > span {
  font-size: 0.95rem;
  opacity: 0.5;
}
.ctx-boring .ctx-boring-content .boring-btn:hover {
  padding-left: 3rem;
  padding-right: 3rem;
  border-color: #ff6950;
  color: #ff6950;
}
.ctx-boring .ctx-boring-content .boring-btn:hover:active {
  border-color: #fff;
  background: #fff;
  color: #191919;
}
.ctx-boring .ctx-boring-content h1,
.ctx-boring .ctx-boring-content h2,
.ctx-boring .ctx-boring-content h3,
.ctx-boring .ctx-boring-content h4,
.ctx-boring .ctx-boring-content h5,
.ctx-boring .ctx-boring-content h6 {
  font-family: "Source Sans 3";
  font-weight: normal;
}
.ctx-boring .ctx-boring-content a {
  word-wrap: break-word;
}
.ctx-boring .ctx-boring-content h3 {
  display: block;
  overflow-wrap: break-word;
  margin: 2rem 0;
  padding: 1rem;
  border: 2px solid #ff6950;
  border-radius: 0px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  font-size: 1.5rem;
  font-family: "Source Sans 3";
  font-weight: bold;
  counter-increment: boring-section-1;
  counter-reset: boring-section-2;
}
.ctx-boring .ctx-boring-content h3:before {
  display: table;
  margin: 0 auto 0.5rem auto;
  color: #ff6950;
  font-style: normal;
  font-weight: bold;
  font-size: 0.55em;
  content: "Article " counter(boring-section-1);
}
.ctx-boring .ctx-boring-content h3 > a {
  color: #fff;
  text-decoration: underline;
}
.ctx-boring .ctx-boring-content h3 > a:hover {
  color: #fff;
  text-decoration: none;
}
.ctx-boring .ctx-boring-content h4 {
  margin: 2rem 0;
  padding: 1rem;
  border: 1px solid #ff6950;
  border-radius: 0px;
  text-transform: uppercase;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  counter-increment: boring-section-2;
  counter-reset: boring-section-3;
}
.ctx-boring .ctx-boring-content h4:before {
  margin: 0 0.5rem 0 0;
  font-style: normal;
  content: counter(boring-section-1) "." counter(boring-section-2);
}
.ctx-boring .ctx-boring-content h5 {
  margin: 2rem 0;
  text-transform: uppercase;
  text-align: center;
  font-family: "Source Sans 3";
  font-size: 0.85rem;
  font-weight: bold;
  counter-increment: boring-section-3;
}
.ctx-boring .ctx-boring-content h5:before {
  margin: 0 0.5rem 0 0;
  font-style: normal;
  content: counter(boring-section-1) "." counter(boring-section-2) "." counter(boring-section-3);
}
.ctx-boring .ctx-boring-content p {
  margin: 0 0 18px 0;
}
.ctx-boring .ctx-boring-content p:last-child {
  margin-bottom: 0;
}
.ctx-boring .ctx-boring-content ul,
.ctx-boring .ctx-boring-content ol {
  padding: 0 0 0 0.75rem;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.ctx-boring .ctx-boring-content ul > li,
.ctx-boring .ctx-boring-content ol > li {
  position: relative;
  margin: 0 0 0.75rem 0;
  padding-left: 1.5rem;
}
.ctx-boring .ctx-boring-content ul > li:before,
.ctx-boring .ctx-boring-content ol > li:before {
  position: absolute;
  left: 0;
  top: 0;
  color: #ff6950;
  content: "\2014";
  font-weight: bold;
}
.ctx-boring .ctx-boring-content ul > li > ul,
.ctx-boring .ctx-boring-content ol > li > ul,
.ctx-boring .ctx-boring-content ul > li > ol,
.ctx-boring .ctx-boring-content ol > li > ol {
  margin-top: 0.75rem;
}
.ctx-boring .ctx-boring-content ol {
  counter-reset: std-ol;
}
.ctx-boring .ctx-boring-content ol > li {
  counter-increment: std-ol;
}
.ctx-boring .ctx-boring-content ol > li:before {
  content: counter(std-ol) ".";
}
.ctx-boring .ctx-boring-content em,
.ctx-boring .ctx-boring-content i {
  font-style: italic;
}
.ctx-boring .ctx-boring-content strong,
.ctx-boring .ctx-boring-content b {
  font-weight: 700;
}
.ctx-boring .ctx-boring-content small {
  font-size: 0.8em;
}
.ctx-boring .ctx-boring-content big {
  font-size: 1.2em;
}
.ctx-boring .ctx-boring-content address {
  display: table;
  margin: 2rem auto;
  padding: 1rem 2rem;
  border: 1px dashed rgba(255,255,255,0.5);
  border-radius: 0px;
  text-align: center;
  font-style: normal;
  font-weight: normal;
}
.ctx-boring .ctx-boring-content address:last-child {
  margin-bottom: 0;
}
.ctx-boring .ctx-boring-content hr {
  margin: 0;
  background: none;
  border: none;
  outline: none;
  opacity: 1;
}
.ctx-boring .ctx-boring-content .boring-ax {
  padding: 1rem;
  background: #fff;
}
.ctx-boring .ctx-boring-content .boring-ax table {
  margin: 0.5rem 0;
  width: 100%;
}
.ctx-boring .ctx-boring-content .boring-ax table tbody th,
.ctx-boring .ctx-boring-content .boring-ax table tbody tr {
  padding: 0.25rem 0.35rem;
  width: 25%;
  border: 1px solid #eee;
}
.ctx-boring .ctx-boring-content .boring-ax table tbody th[colspan],
.ctx-boring .ctx-boring-content .boring-ax table tbody tr[colspan] {
  width: 75%;
}
.ctx-boring .ctx-boring-content .boring-ax table tbody th {
  background: #f5f5f5;
  text-align: right;
}
.ctx-boring .ctx-boring-content .boring-ax table tbody th:not(:first-child) {
  width: 1%;
  white-space: nowrap;
}
.ctx-boring .ctx-boring-content .boring-ax table tbody td {
  position: relative;
}
.ctx-boring .ctx-boring-content .boring-ax table tbody td:after {
  display: block;
  position: absolute;
  left: 1.5px;
  right: 1.5px;
  bottom: 1.5px;
  border-bottom: 1px dashed #c0c0c0;
  content: "";
}
.ctx-boring .ctx-boring-content .boring-ax .ax-r {
  margin: 0 0 0 50%;
  width: 50%;
  text-align: right;
}
.ctx-boring .ctx-boxed.ctx-title + .ctx-boring-content {
  margin-top: 2rem;
}
.ctx-boring#ctx-boring-credit .ctx-boring-content {
  max-width: calc(100% - 2rem);
}
.ctx-boring#ctx-boring-credit .ctx-boring-content a {
  display: table;
  position: relative;
  box-sizing: content-box;
  margin: 4.5rem auto 2rem auto;
  max-width: calc(100% - 8rem);
  background: #fff;
  border: 3rem solid #fff;
  border-radius: 0px;
  transition: transform 0.25s;
}
.ctx-boring#ctx-boring-credit .ctx-boring-content a img {
  display: block;
  width: 295px;
  max-width: 100%;
}
.ctx-boring#ctx-boring-credit .ctx-boring-content a:hover {
  transform: scale(105%);
}
.ctx-boring#ctx-boring-credit .ctx-boring-content a:hover:active {
  transform: scale(102%);
}
.ctx-boring#ctx-boring-privacy .ctx-boring-content h3:before {
  padding: 0.35rem 0.5rem;
  background: #ff6950;
  color: #fff;
  content: counter(boring-section-1);
}
.ctx-boring#ctx-boring-privacy .ctx-boring-content hr {
  margin: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.ctx-boring#ctx-boring-privacy .ctx-boring-content .ctx-boring-content-inner-cookies h3 {
  padding: 1.2rem 1rem 1rem 1rem;
}
.ctx-boring#ctx-boring-privacy .ctx-boring-content .ctx-boring-content-inner-cookies h3:before {
  display: none;
}
#ctx-store-login {
  position: relative;
}
#ctx-store-login .form-label {
  text-transform: uppercase;
  font-weight: bold;
}
#ctx-store-login .form-label,
#ctx-store-login .form-control,
#ctx-store-login .form-select {
  font-size: 0.75rem;
}
.contact-form-sent {
  margin: 1rem 0;
  text-align: center;
  font-size: 1.5rem;
}
.contact-feed {
  position: relative;
  overflow: hidden;
  margin: 30px 30px 2rem 30px;
  padding: 0;
  background: #fff;
  border: 1px solid #000;
  color: #000;
  text-shadow: none;
  line-height: 1.3;
  font-family: "Source Sans 3";
  font-size: 0.9rem;
}
.contact-feed .contact-feed-title {
  padding: 0.5rem 0.5rem 0.4rem 0.7rem;
  background: rgba(0,0,0,0.1);
  border-bottom: 1px solid #000;
}
.contact-feed .contact-feed-title em {
  font-weight: normal;
  font-style: normal;
}
.contact-feed .contact-feed-subject {
  padding: 0.5rem 0.5rem 0.4rem 0.7rem;
  border-bottom: 1px solid #000;
}
.contact-feed .contact-feed-messages {
  margin: 1rem;
}
.contact-feed .contact-feed-messages .contact-feed-message {
  margin: 0 0 0.5rem 0;
  border: 1px solid #000;
  border-left: 10px solid #000;
  border-radius: 4px;
}
.contact-feed .contact-feed-messages .contact-feed-message .contact-feed-message-author {
  padding: 0.5rem 0.5rem 0.4rem 0.7rem;
  background: rgba(0,0,0,0.05);
  border-bottom: 1px solid #000;
}
.contact-feed .contact-feed-messages .contact-feed-message .contact-feed-message-author > em {
  font-style: normal;
  font-size: 0.85rem;
}
.contact-feed .contact-feed-messages .contact-feed-message .contact-feed-message-body {
  padding: 0.5rem 0.5rem 0.4rem 0.7rem;
}
#ctx-mc {
  counter-reset: mc-questions;
}
#ctx-mc .ctx-mc-questions {
  padding: 2rem 0;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question {
  display: none;
  position: relative;
  overflow: hidden;
  margin: 0 auto 2rem auto;
  max-width: calc(100% - 2rem);
  width: 600px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0px;
  counter-increment: mc-questions;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question:last-child {
  margin-bottom: 0;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > .ctx-mc-question-sentence {
  position: relative;
  margin: 0 0 0 0;
  padding: 0.5rem;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  line-height: 1.25;
  text-align: center;
  font-family: "Source Sans 3";
  font-weight: bold;
  font-size: 1.25rem;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > ul.ctx-mc-question-answers {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  margin: 2rem;
  padding: 0;
  border-radius: 0px;
  list-style: none;
  z-index: 2;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > ul.ctx-mc-question-answers > li {
  position: relative;
  margin: 0 0 1px 0;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > ul.ctx-mc-question-answers > li:last-child {
  margin-bottom: 0;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > ul.ctx-mc-question-answers > li > label {
  display: flex;
  padding: 0;
  align-items: center;
  background: rgba(255,255,255,0.1);
  line-height: 1.2;
  font-size: 0.85rem;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  font-size: 1.15rem;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > ul.ctx-mc-question-answers > li > label > input {
  position: relative;
  appearance: none;
  margin: 0 0 0 0.75rem;
  height: 1.25rem;
  flex: 0 0 1.25rem;
  background: transparent;
  border: 1px solid #fff;
  cursor: pointer;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > ul.ctx-mc-question-answers > li > label > input,
#ctx-mc .ctx-mc-questions .ctx-mc-question > ul.ctx-mc-question-answers > li > label > input:before {
  display: block;
  border-radius: 10rem;
  transition: all 0.25s;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > ul.ctx-mc-question-answers > li > label > input:before {
  position: absolute;
  left: 50%;
  right: 50%;
  top: 50%;
  bottom: 50%;
  background: #ff6950;
  content: "";
  opacity: 0;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > ul.ctx-mc-question-answers > li > label > input:checked {
  border-color: #ff6950;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > ul.ctx-mc-question-answers > li > label > input:checked:before {
  left: 3px;
  right: 3px;
  top: 3px;
  bottom: 3px;
  opacity: 1;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > ul.ctx-mc-question-answers > li > label > span {
  flex: 1;
  margin: 0.75rem;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > ul.ctx-mc-question-answers > li > label:hover {
  background: rgba(255,255,255,0.2);
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > ul.ctx-mc-question-answers > li > label:hover > input:before {
  border-color: #ff6950;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > .ctx-mc-answer-input {
  margin: 2rem;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > .ctx-mc-answer-input > input {
  display: block;
  box-sizing: border-box;
  padding: 1.5rem;
  width: 100%;
  background: #191919;
  border: 1px solid #fff;
  border-radius: 0px;
  outline: none;
  color: #fff;
  text-align: center;
  font-family: "Source Sans 3";
  font-size: 1.5rem;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > .ctx-mc-answer-input > input::placeholder {
  color: rgba(255,255,255,0.25);
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > .ctx-mc-question-details {
  position: relative;
  margin: 0;
  border-top: 0 solid rgba(255,255,255,0.2);
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > .ctx-mc-question-details,
#ctx-mc .ctx-mc-questions .ctx-mc-question > .ctx-mc-question-details > div {
  transition: all 0.25s;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > .ctx-mc-question-details > div {
  position: relative;
  overflow: hidden;
  margin: 0;
  height: 0;
  color: #fff;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > .ctx-mc-question-details > div:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 3px solid #95c11f;
  border-radius: 0 0 0px 0px;
  content: "";
  z-index: 1;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > .ctx-mc-question-details > div > div {
  position: relative;
  padding: 1rem;
  line-height: 1.25;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  pointer-events: none;
  z-index: 2;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > .ctx-mc-question-details > div > div > p {
  margin: 0 0 0.5rem 0;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > .ctx-mc-question-details > div > div > p:last-child {
  margin-bottom: 0;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > .ctx-mc-question-details > div.ctx-mc-question-details-invalid {
  color: #fff;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > .ctx-mc-question-details > div.ctx-mc-question-details-invalid:before {
  border-color: #c1331c;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question.has-answered-valid > .ctx-mc-question-details {
  border-top-width: 1px;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question.has-answered-valid > .ctx-mc-question-details > div.ctx-mc-question-details-valid {
  height: auto;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question.has-answered-invalid > .ctx-mc-question-details {
  border-top-width: 1px;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question.has-answered-invalid > .ctx-mc-question-details > div.ctx-mc-question-details-invalid {
  height: auto;
}
body.page---welcome #bg,
body.page---restricted #bg {
  display: none;
}
body.page---welcome #g .container,
body.page---restricted #g .container {
  margin: 0;
  max-width: none;
  width: auto;
}
body.page---welcome #g .container .ctx-wrap,
body.page---restricted #g .container .ctx-wrap {
  padding: 0;
}
#ctx-welcome {
  display: flex;
  margin: 0;
  min-height: 100vh;
}
#ctx-welcome > div {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}
#ctx-welcome > div > div > strong {
  display: block;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}
#ctx-welcome > div > div > strong > sup {
  top: auto;
  margin: 0;
  font-size: inherit;
}
#ctx-welcome > div.welcome-brand {
  flex-direction: column;
}
#ctx-welcome > div.welcome-brand > div {
  display: flex;
  flex-direction: column;
  flex: 1;
}
#ctx-welcome > div.welcome-brand > div > i {
  display: block;
  flex: 1;
}
#ctx-welcome > div.welcome-brand > div > i:first-child {
  flex: 2;
  min-height: 20px;
}
#ctx-welcome > div.welcome-brand > div > span {
  display: block;
  position: relative;
  overflow: visible;
  margin: -6px 0 0 49px;
  background: url("../img/ui/custom/logos/logo-fr.png") no-repeat center center;
  background-size: 100%;
  width: 330px;
  height: 199.8591549295775px;
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
}
#ctx-welcome > div.welcome-brand > div > strong {
  margin: 45px 0;
  font-size: 1.38rem;
}
#ctx-welcome > div.welcome-brand > div:after {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/car.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 310 /  352;
  width: 310px;
  height: 352px;
  max-width: 310px;
  max-height: 352px;
  display: block;
  margin: 0 auto;
  content: "";
}
#ctx-welcome > div.welcome-select {
  background: #ff6950;
  color: #fff;
}
#ctx-welcome > div.welcome-select > div > strong {
  font-size: 1.65rem;
}
#ctx-welcome > div.welcome-select > div > div {
  margin: 35px 26px 0 26px;
}
#ctx-welcome > div.welcome-select > div > div p {
  display: block;
  margin: 0 15px 0 15px;
  max-width: 700px;
  text-align: center;
  line-height: 1.2;
  font-size: 1.25rem;
}
#ctx-welcome > div.welcome-select > div > div em {
  display: block;
  margin: 0 0 15px 0;
  font-size: 1.25rem;
}
#ctx-welcome > div.welcome-select > div > div select {
  appearance: none;
  display: block;
  margin: 0 0 40px 0;
  padding: 15px 18px;
  width: 100%;
  background-color: #fff;
  background-image: url("data:image/svg+xml,<%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F><svg fill='%23e0e0e0' height='600' width='800' version='1.1' viewBox='0 0 386.257 289.69275' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:svg='http://www.w3.org/2000/svg'><polygon points='193.129,289.379 386.257,96.879 0,96.879' transform='matrix(1,0,0,1.5048974,0,-145.79295)'/></svg>");
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) center;
  background-size: auto 15px;
  border: 3px solid #f0f0f0;
  border-radius: 10px;
  outline: none;
  color: #999;
  font-size: 1.2rem;
  cursor: pointer;
}
#ctx-welcome > div.welcome-select > div > div select:hover,
#ctx-welcome > div.welcome-select > div > div select:focus:hover {
  background-color: #f5f5f5;
  color: #ff6950;
}
#ctx-welcome > div.welcome-select > div > div button {
  display: table;
  margin: 0 auto;
}
body.lang-fr .ctx-boring #boring-content h3:before {
  content: "Article" " " counter(boring-section-1);
}
body.lang-nl .ctx-boring #boring-content h3:before {
  content: "Artikel" " " counter(boring-section-1);
}
@media (min-width: 1064px) {
  body.page---play #bg > div,
  body.page---play--form #bg > div,
  body.page---play--reveal #bg > div {
    background-image: url("../img/ui/custom/bg-alt1.jpg");
  }
}
body.page---play--code #bg > div {
  background-image: url("../img/ui/custom/bg-alt2.jpg");
}
body.page---play--code #g > #g-ctx {
  flex: 1;
}
#g #head {
  position: relative;
  margin: 0 -150px;
  border-bottom: 2px solid #fff;
}
#g #head #header #logo {
  margin: 17px 0 13px 165px;
}
#g #head #header #header-game-heading {
  margin: 50px 0 0 100px;
}
#g #head #header ul#nav {
  align-self: center;
  margin: 4px 141px 0 auto;
}
#g #head #header ul#nav > li {
  border-left: 3px solid #000;
}
#g #head #header ul#nav > li:first-child {
  border-left: none;
}
#g #head #header ul#nav > li > a {
  padding: 0.2rem 1.1rem 0.2rem 1.35rem;
  border: none;
  color: #000;
  font-size: 1.625rem;
  font-weight: 700;
}
#g #head #header ul#nav > li > a:hover {
  color: #ff6950;
}
#g #head #header ul#nav > li.active > a {
  color: #ff6950;
}
@media (max-width: 1063px) {
  #g #head #header {
    margin: 0 auto;
    max-width: 478px;
  }
  #g #head #header #logo {
    margin: 53px 0 0 14px;
    width: 212px;
  }
  #g #head #header #logo > img {
    max-width: 100%;
  }
  #g #head #header #header-game-heading {
    margin: 37px 0 0 -12px;
    max-width: 263px;
  }
  #g #head #header #header-game-heading > img {
    max-width: 100%;
  }
}
#g #footer {
  margin: 0 -150px;
  padding: 24px 0;
  background: transparent;
  border-top: 2px solid #fff;
}
#g #footer > ul#footer-links > li {
  margin: 0;
  padding: 0;
}
#g #footer > ul#footer-links > li:before {
  display: inline-block;
  margin: 0 2rem;
  width: 2px;
  height: 0.7rem;
  background: #fff;
  content: "";
}
#g #footer > ul#footer-links > li:first-child {
  padding-left: 0;
}
#g #footer > ul#footer-links > li:first-child:before {
  display: none;
}
#g #footer > ul#footer-links > li > a {
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 1063px) {
  #g #footer {
    margin: -20px 0 0 0;
    padding: 1.55rem 0;
  }
  #g #footer > ul#footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 510px;
  }
  #g #footer > ul#footer-links > li {
    display: flex;
  }
  #g #footer > ul#footer-links > li:before {
    margin: 0.55rem 0.3rem 0 0.3rem;
  }
  #g #footer > ul#footer-links > li:nth-child(4):before {
    display: none;
  }
}
#g > #g-ctx .ctx-wrap > .ctx {
  background: none;
}
#g > #g-ctx .ctx-wrap > .ctx .ctx-boxed {
  background: none;
}
#g > #g-ctx .ctx-wrap > .ctx .ctx-action > a,
#g > #g-ctx .ctx-wrap > .ctx .ctx-action > button {
  padding: 10px 45px 10px 45px;
  border: none;
  border-radius: 15px;
  background: #4549c9;
  color: #fff;
  letter-spacing: -0.015em;
  text-decoration: none;
  font-weight: 800;
  font-size: 3.55rem;
}
#g > #g-ctx .ctx-wrap > .ctx .ctx-action > a,
#g > #g-ctx .ctx-wrap > .ctx .ctx-action > button,
#g > #g-ctx .ctx-wrap > .ctx .ctx-action > a:hover,
#g > #g-ctx .ctx-wrap > .ctx .ctx-action > button:hover,
#g > #g-ctx .ctx-wrap > .ctx .ctx-action > a:active,
#g > #g-ctx .ctx-wrap > .ctx .ctx-action > button:active,
#g > #g-ctx .ctx-wrap > .ctx .ctx-action > a:hover:active,
#g > #g-ctx .ctx-wrap > .ctx .ctx-action > button:hover:active {
  background: #4549c9;
}
#g > #g-ctx .ctx-wrap > .ctx .ctx-action > a:hover,
#g > #g-ctx .ctx-wrap > .ctx .ctx-action > button:hover {
  padding-left: 50px;
  padding-right: 50px;
  background: #fff;
  color: #4549c9;
  box-shadow: 0 0.125rem 0.5rem #b28550;
}
#g > #g-ctx .ctx-wrap > .ctx .ctx-action > a:hover:active,
#g > #g-ctx .ctx-wrap > .ctx .ctx-action > button:hover:active {
  background: #fff;
  color: #000;
  box-shadow: 0 0.125rem 0.75rem #5d462a;
}
#g > #g-ctx .ctx-wrap > .ctx #ctx-wrap-terms {
  margin: 57px 0 0 0;
  text-align: center;
  line-height: 1.5;
  font-size: 1.08rem;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx #ctx-wrap-terms {
    margin: 54px 0 0 0;
  }
}
#g > #g-ctx > p#ctx-terms {
  background: none;
}
#g > #g-ctx .ctx-wrap > .ctx {
  justify-content: center;
}
#g > #g-ctx .ctx-wrap > .ctx .illustr.illustr-a {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/skate.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 662 /  827;
  width: 662px;
  height: 827px;
  max-width: 662px;
  max-height: 827px;
  width: 550px;
  height: 687.0845921450151px;
  display: none;
  margin: 23px 0 0 -93px;
  max-width: none;
  max-height: none;
}
#g > #g-ctx .ctx-wrap > .ctx .illustr.illustr-a.illustr-home,
#g > #g-ctx .ctx-wrap > .ctx .illustr.illustr-a.illustr-upcoming,
#g > #g-ctx .ctx-wrap > .ctx .illustr.illustr-a.illustr-ended {
  display: block;
}
#g > #g-ctx .ctx-wrap > .ctx .follow-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0 0 131px;
}
#g > #g-ctx .ctx-wrap > .ctx .follow-us > div {
  display: flex;
  margin: 0;
}
#g > #g-ctx .ctx-wrap > .ctx .follow-us > div > strong {
  margin: 19px 8px 0 0;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 800;
}
#g > #g-ctx .ctx-wrap > .ctx .follow-us > div > div {
  margin: 0;
}
#g > #g-ctx .ctx-wrap > .ctx .follow-us > div > div > a {
  margin: 0 6px;
}
#g > #g-ctx .ctx-wrap > .ctx .follow-us > div > div > a.social-ig {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/social-ig.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 53 /  53;
  width: 53px;
  height: 53px;
  max-width: 53px;
  max-height: 53px;
}
#g > #g-ctx .ctx-wrap > .ctx .follow-us > div > div > a.social-fg {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/social-fb.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 55 /  53;
  width: 55px;
  height: 53px;
  max-width: 55px;
  max-height: 53px;
}
#g > #g-ctx .ctx-wrap > .ctx .follow-us > div > div > a:hover {
  filter: brightness(0);
}
#g > #g-ctx .ctx-wrap > .ctx .follow-us > span {
  display: block;
  margin: 11px 0 0 -8px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
}
#g > #g-ctx .ctx-wrap > .ctx .follow-us > span > a {
  display: inline-block;
  margin: 4px 0 0 4px;
  padding: 10px 12px;
  background: #4549c9;
  border-radius: 8px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}
#g > #g-ctx .ctx-wrap > .ctx .follow-us > span > a:hover {
  background: #fff;
  color: #4549c9;
}
#g > #g-ctx .ctx-wrap > .ctx .follow-us > span > a:hover:active {
  color: #000;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-boring {
  margin: 40px auto;
  padding: 20px 20px 40px 20px;
  max-width: 800px;
  border-radius: 8px;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-boring .ctx-boxed.ctx-title {
  color: #fff;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-boring .ctx-boring-content p,
#g > #g-ctx .ctx-wrap > .ctx.ctx-boring .ctx-boring-content li {
  text-align: justify;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming,
#g > #g-ctx .ctx-wrap > .ctx#ctx-ended {
  display: flex;
  margin: 0 -150px;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .ctx-inner,
#g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ctx-inner {
  flex: 1;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-ended {
    flex-direction: column;
  }
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ctx-inner {
  margin: 0 0 0 -167px;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ctx-inner {
    margin: 0;
  }
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ctx-boxed.ctx-title {
  margin: 0;
  padding: 145px 0 0 0;
  color: #4549c9;
  line-height: 1.07;
  text-align: center;
  text-transform: uppercase;
  font-size: 5.5rem;
  font-weight: 800;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-ended .follow-us {
  margin: 42px 0 0 0;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .ctx-inner {
  margin: 0 0 0 -190px;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .ctx-inner {
    margin: 0;
  }
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .ctx-boxed.ctx-title,
#g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .upcoming-date-before,
#g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .upcoming-date {
  margin: 0;
  padding: 0;
  color: #fff;
  line-height: 1.07;
  text-align: center;
  text-transform: uppercase;
  font-size: 3.5rem;
  font-weight: 800;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .ctx-boxed.ctx-title,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .upcoming-date-before,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .upcoming-date {
    line-height: 1.12;
    font-size: 2.45rem;
  }
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .ctx-boxed.ctx-title.upcoming-heading {
  padding: 89px 0 0 0;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .ctx-boxed.ctx-title.upcoming-heading {
    margin: 0;
    padding: 60px 0 0 0;
  }
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .upcoming-date-before {
  margin-top: 48px;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .upcoming-date-before {
    margin: 0;
    padding: 29px 0 0 3px;
  }
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .upcoming-date > div {
  display: table;
  margin: 15px auto 0 auto;
  padding: 3px 42px;
  background: #4549c9;
  color: #fff;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .upcoming-date {
    margin: -2px 0 0 0;
    padding: 0 0 0 3px;
  }
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-home {
  display: flex;
  margin: 0 -150px;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-boxed.ctx-title {
  display: none;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps {
  display: block;
  margin: 119px 0 0 115px;
  max-width: none;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps > li {
  display: flex;
  margin: 15px 0 0 0;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps > li:first-child {
  margin-top: 0;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps > li:before {
  margin: 0;
  width: 70px;
  height: 70px;
  background: #ff6950;
  border: none;
  color: #fff;
  font-size: 3rem;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps > li > p {
  margin: 3px 0 0 22px;
  color: #fff;
  letter-spacing: -0.09rem;
  text-align: left;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: 2rem;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps > li > p > strong {
  display: inline;
  color: #4549c9;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps > li > p > small {
  text-transform: none;
  font-size: 0.8em;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps {
    display: table;
    margin: 0 auto 0 auto;
    padding: 383px 0 0 0;
    max-width: 376px !important;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps > li {
    margin-top: 9px;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps > li:first-child {
    margin-top: 0;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps > li:before {
    width: 49px !important;
    height: 49px !important;
    min-width: 49px !important;
    min-height: 49px !important;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps > li > p {
    margin: 10px 0 0 16px;
    line-height: 1.1;
    font-size: 1.6rem;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps > li > p > strong {
    margin: 0 0 0 -10px;
    padding: 2px 10px 3px 7px;
    border-radius: 4px;
  }
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content .ctx-action {
  margin: 0 0 0 62px;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content .ctx-action {
    margin: 0;
    padding: 0;
  }
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .ctx-boxed.ctx-title {
  padding: 25px 1.8rem 0 1.8rem;
  color: #4549c9;
  font-weight: 800;
  font-size: 2.2rem;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .ctx-boxed.ctx-title {
    margin: 0 0 0 -6px;
    padding: 39px 0 0 0;
    line-height: 1.25;
    font-size: 1.26rem;
  }
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-desktop,
#g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-mobile {
  margin: 13px auto 0 auto;
  max-width: 1010px;
  font-size: 1.05rem;
  font-family: Arial, sans-serif;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-desktop,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-mobile {
    margin: 15px auto 0 auto;
  }
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-desktop > div,
#g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-mobile > div {
  padding: 0;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-desktop > div,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-mobile > div {
    margin: 0 auto;
    max-width: 404px;
  }
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-desktop > div > div .field:not(.field-half) .field-label,
#g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-mobile > div > div .field:not(.field-half) .field-label,
#g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-desktop > div > div .field.field-half.field-half-1 .field-label,
#g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-mobile > div > div .field.field-half.field-half-1 .field-label {
  width: 177px;
  padding-right: 11px;
  text-align: right;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-desktop > div > div .field.field-half.field-half-2 .field-label,
#g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-mobile > div > div .field.field-half.field-half-2 .field-label {
  margin: 0 12px 0 5px;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-desktop > div > div .field .field-label,
#g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-mobile > div > div .field .field-label {
  font-weight: 700;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-desktop > div > div .field.field-checkboxes .field-ctrl,
#g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-mobile > div > div .field.field-checkboxes .field-ctrl {
  display: block;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-desktop > div > div .field.field-checkboxes .field-ctrl .field-check,
#g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-mobile > div > div .field.field-checkboxes .field-ctrl .field-check {
  display: inline-block;
  border-left: none;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-desktop > div > div .field.field-checkboxes .field-ctrl .field-check,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-mobile > div > div .field.field-checkboxes .field-ctrl .field-check {
    margin-left: 9px;
  }
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-desktop > div > div .field.field-checkboxes .field-ctrl .field-check > label,
#g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-mobile > div > div .field.field-checkboxes .field-ctrl .field-check > label {
  padding: 11px;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result {
  margin: 0 auto 211px auto;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .reveal-result-illustration {
  position: absolute;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .reveal-result-content .reveal-result-content-head {
  margin: 22px 0 0 110px;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .reveal-result-content .reveal-result-content-head > strong,
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .reveal-result-content .reveal-result-content-head > span {
  display: block;
  text-transform: uppercase;
  text-align: center;
  font-weight: 900;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .reveal-result-content .reveal-result-content-head > strong {
  color: #4549c9;
  font-size: 3rem;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .reveal-result-content .reveal-result-content-head > span {
  margin: 2px 0 0 0;
  font-size: 3rem;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .reveal-result-content .reveal-result-content-head > span > span > small {
  display: block;
  margin: 12px 0 0 0;
  line-height: 1.2;
  text-transform: none;
  font-size: 1.57rem;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .reveal-result-content .reveal-result-content-email {
  margin: 25px 0 0 127px;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .reveal-result-content .reveal-result-content-email > div,
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .reveal-result-content .reveal-result-content-email > a {
  display: table;
  margin: 0 auto;
  padding: 17px 37px;
  background: #4549c9;
  border-radius: 100rem;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.75rem;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .reveal-result-content .reveal-result-content-email > span {
  display: table;
  margin: 0 auto;
  padding: 10px;
  background: #c1331c;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.5rem;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .reveal-result-content .reveal-result-content-email > a {
  text-decoration: none;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .reveal-result-content .reveal-result-content-email > a:hover {
  background: #fff;
  color: #4549c9;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .reveal-result-content .reveal-result-content-email > a:hover:active {
  color: #000;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .reveal-result-content .reveal-result-content-email-notes {
  margin: 25px 0 0 128px;
  line-height: 1.2;
  text-align: center;
  font-size: 1.3rem;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--trip .ctx-reveal-result .reveal-result-illustration {
  left: -150px;
  top: 60px;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--trip .ctx-reveal-result .reveal-result-illustration > img {
  width: 500px;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--skate .ctx-reveal-result .reveal-result-illustration {
  left: 92px;
  top: 62px;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost-prize .ctx-reveal-result .reveal-result-illustration {
  left: -16px;
  top: 125px;
}
#g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost-prize .ctx-reveal-result .reveal-result-illustration > img {
  width: 330px;
}
body.page---play--reveal #g > #g-ctx,
body.page---play--reveal #g > #g-ctx .ctx-wrap {
  display: flex;
  flex-direction: column;
}
body.page---play--reveal #g > #g-ctx .ctx-wrap {
  flex: 1;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form {
    margin: 0 auto;
    max-width: calc(100vw - 40px);
  }
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .ctx-boxed.ctx-action {
  padding: 57px 0 0 0;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .ctx-boxed.ctx-action > button {
  background: #fff;
  color: #4549c9;
  padding: 10px 40px 10px 40px;
  line-height: 1;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .ctx-boxed.ctx-action > button:hover {
  background: #4549c9;
  color: #fff;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .ctx-boxed.ctx-action {
    padding: 51px 0 0 0;
  }
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms {
  margin: 0 -20px 20px -20px;
  padding: 13px 0 0 0;
  border-bottom: none;
  font-size: 0.7rem;
  opacity: 1;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form#ctx-contact .form-terms {
  margin: 0 auto 20px auto;
  max-width: calc(600px - (2 * 2rem));
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field {
  margin-top: 0;
  margin-bottom: 11px;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field {
    margin-bottom: 18px;
  }
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .form-error {
  display: block;
  margin: 5px 0 0 0;
  padding: 0;
  width: 100%;
  background: none;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.9rem;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .form-error > div {
  display: table;
  padding: 3px 8px;
  border-radius: 5px;
  background: #c1331c;
  color: #fff;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-label {
  align-self: start;
  margin-top: 6px;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"],
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"],
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"],
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"],
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl select,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl textarea {
  padding: 6px 11px;
  background-color: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(69,73,201,0.5);
  color: #000;
  font-weight: 700;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"]::placeholder,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"]::placeholder,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"]::placeholder,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"]::placeholder,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl select::placeholder,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl textarea::placeholder {
  color: #000;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"]:hover,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"]:hover,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"]:hover,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"]:hover,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl select:hover,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl textarea:hover {
  background-color: #fff;
  box-shadow: 0 3px 8px 3px rgba(69,73,201,0.5);
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"]:focus,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"]:focus,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"]:focus,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"]:focus,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl select:focus,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl textarea:focus {
  background-color: #fff;
  box-shadow: 0 3px 8px 5px rgba(69,73,201,0.5);
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"][disabled],
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"][disabled],
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"][disabled],
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"][disabled],
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl select[disabled],
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl textarea[disabled] {
  opacity: 0.5;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl select {
  padding-left: 25px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgZmlsbD0iI2QzMjczNyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBzdHlsZT0ic3Ryb2tlLXdpZHRoOjEuMTY2MTI7c3Ryb2tlLWxpbmVjYXA6cm91bmQ7c3Ryb2tlLWxpbmVqb2luOnJvdW5kIiBkPSJNMS41NDEtMzUuNDAzYy0xMi44Mi4wMDMtMjEuMTU3IDEzLjQ5OC0xNS40MjUgMjQuOTY5bDU4LjI5NyAxMTYuNjNjNi4zNiAxMi43MDggMjQuNDkyIDEyLjcwOCAzMC44NSAwbDU4LjI5OC0xMTYuNjNjNS43MzItMTEuNDctMi42MDUtMjQuOTY2LTE1LjQyNS0yNC45N3oiIHRyYW5zZm9ybT0ibWF0cml4KC42NjE2OCAwIDAgLjY2MTY4IDEwLjQwNiAyMy40MjYpIi8+PC9zdmc+");
  background-size: 12px 11px;
  background-position: 8px center;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-half.field-half-2 .field-label {
  margin: 6px 12px 0 5px !important;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl {
  background: none;
  border: none;
  box-shadow: none;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check {
  margin: 0 0 0 58px;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check:first-child {
  margin-left: 0;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label {
  font-weight: 700;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label:hover {
  background: none;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="radio"] {
  flex: 0 0 24px;
  margin: 0 17px 0 0;
  height: 24px;
  background-color: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 3px 8px #4549c9;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file {
  flex-wrap: wrap;
  flex-direction: row;
  margin: -1px 0 8px 0;
  border: none;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file .form-error {
  margin: 0 0 0 13rem;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file .form-error {
    margin-top: -5px;
  }
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-label {
  display: none;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-ctrl-container > div input[type="file"] {
  width: 12rem;
  height: 2.5rem;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-ctrl-container > div > button {
  margin: -1px 0 0 -3px;
  padding: 4px 15px;
  max-width: calc(100% - 9px);
  background: #4549c9;
  border: none;
  border-radius: 4px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 900;
  font-size: 1.25rem;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-ctrl-container > div:hover > button {
  background: #fff;
  color: #4549c9;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-ctrl-container > div:hover:active > button {
  color: #000;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description {
  flex: 1;
  align-self: center;
  padding: 0;
  border: none;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 500;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description > span {
  vertical-align: sub;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description > span > a {
  float: right;
  padding: 5px 7px;
  background: #4549c9;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  font-size: 0.9rem;
  font-weight: bold;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description > span > a:hover {
  background: #fff;
  color: #4549c9;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description > span > a:hover:active {
  color: #000;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description {
    line-height: 1;
    font-size: 0.85rem;
  }
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender {
  margin-bottom: 5px;
  display: flex;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-label {
  display: block;
  align-self: center;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl {
  flex: 1;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl input[type="text"]::placeholder,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl input[type="email"]::placeholder,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl input[type="password"]::placeholder,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl input[type="number"]::placeholder,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl select::placeholder,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl textarea::placeholder {
  color: transparent !important;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-label {
  align-self: start;
  margin-top: 16px;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-label {
    margin: 16px 0 0 0;
    text-align: left !important;
    width: auto !important;
  }
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .form-error {
  position: absolute;
  left: 410px;
  top: 8px;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB {
  margin-top: 5px;
  width: auto !important;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-ctrl,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB .field-ctrl {
  width: 174px;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-ctrl,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB .field-ctrl {
    width: auto;
  }
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA {
  margin-left: auto;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-label {
  width: 464px !important;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-label > a {
  position: absolute;
  right: 0;
  top: 4px;
  padding: 5px 7px;
  background: #4549c9;
  border-radius: 4px;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  font-size: 0.9rem;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-label > a:hover {
  background: #fff;
  color: #4549c9;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-label > a:hover:active {
  color: #000;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-label > span:nth-child(1) {
  margin-right: 0.5rem;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-ctrl {
  margin-right: 126px;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB {
  margin-left: 5px;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-1,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-1,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-2,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-2 {
    display: flex;
    width: 100% !important;
    padding: 6px 11px;
    background-color: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 3px 8px #c9926e;
    font-weight: 700;
  }
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-1 .field-label,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-1 .field-label,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-2 .field-label,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-2 .field-label {
    display: block;
    align-self: center;
  }
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-1 .field-ctrl,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-1 .field-ctrl,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-2 .field-ctrl,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-2 .field-ctrl {
    flex: 1;
  }
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-1 .field-ctrl input[type="text"]::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-1 .field-ctrl input[type="text"]::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-2 .field-ctrl input[type="text"]::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-2 .field-ctrl input[type="text"]::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-1 .field-ctrl input[type="email"]::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-1 .field-ctrl input[type="email"]::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-2 .field-ctrl input[type="email"]::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-2 .field-ctrl input[type="email"]::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-1 .field-ctrl input[type="password"]::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-1 .field-ctrl input[type="password"]::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-2 .field-ctrl input[type="password"]::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-2 .field-ctrl input[type="password"]::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-1 .field-ctrl input[type="number"]::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-1 .field-ctrl input[type="number"]::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-2 .field-ctrl input[type="number"]::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-2 .field-ctrl input[type="number"]::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-1 .field-ctrl select::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-1 .field-ctrl select::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-2 .field-ctrl select::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-2 .field-ctrl select::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-1 .field-ctrl textarea::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-1 .field-ctrl textarea::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-2 .field-ctrl textarea::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-2 .field-ctrl textarea::placeholder {
    color: transparent !important;
  }
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-1 .field-label,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-1 .field-label,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-2 .field-label,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-2 .field-label {
    margin: 0 0 0 -1px !important;
    padding: 0 !important;
    width: 158px !important;
    text-align: left !important;
    font-size: 1rem;
  }
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-1 .field-label > span,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-1 .field-label > span,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-2 .field-label > span,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-2 .field-label > span {
    position: absolute;
    top: 10px;
    left: 10px;
  }
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-1 .field-ctrl input[type="text"],
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-1 .field-ctrl input[type="text"],
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-2 .field-ctrl input[type="text"],
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-2 .field-ctrl input[type="text"],
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-1 .field-ctrl input[type="email"],
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-1 .field-ctrl input[type="email"],
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-2 .field-ctrl input[type="email"],
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-2 .field-ctrl input[type="email"],
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-1 .field-ctrl input[type="password"],
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-1 .field-ctrl input[type="password"],
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-2 .field-ctrl input[type="password"],
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-2 .field-ctrl input[type="password"],
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-1 .field-ctrl input[type="number"],
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-1 .field-ctrl input[type="number"],
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-2 .field-ctrl input[type="number"],
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-2 .field-ctrl input[type="number"],
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-1 .field-ctrl select,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-1 .field-ctrl select,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-2 .field-ctrl select,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-2 .field-ctrl select,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-1 .field-ctrl textarea,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-1 .field-ctrl textarea,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field-half-2 .field-ctrl textarea,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field-half-2 .field-ctrl textarea {
    width: 100%;
    border: 1px solid #ff6950;
    box-shadow: none;
  }
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field--BarcodeA,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field--BarcodeA {
    margin-top: -4px;
    margin-bottom: 0;
    padding-top: 33px;
    border-radius: 8px 8px 0 0;
  }
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field--BarcodeB,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field--BarcodeB {
    margin-left: 0;
    margin-top: 0;
    padding-bottom: 10px;
    border-radius: 0 0 8px 8px;
  }
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA.field-half.field--BarcodeB:after,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB.field-half.field--BarcodeB:after {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: -5px;
    height: 6px;
    background: #fff;
    content: "";
  }
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA {
  margin-left: 14px;
  margin-bottom: 11px;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-label,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-label,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-label,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-label {
  display: none !important;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-ctrl .field-checkbox {
  margin: 0;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox > label > input[type="checkbox"],
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox > label > input[type="checkbox"],
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox > label > input[type="checkbox"],
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-ctrl .field-checkbox > label > input[type="checkbox"] {
  height: 17px;
  flex: 0 0 17px;
  background: #fff;
  border-color: transparent;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover {
  border-color: transparent;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover:not(:checked):before,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover:not(:checked):before,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover:not(:checked):before,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover:not(:checked):before {
  background: rgba(69,73,201,0.25);
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked {
  border-color: transparent;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked:before,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked:before,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked:before,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked:before {
  background: #4549c9;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox > label > .field-check-label,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox > label > .field-check-label,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox > label > .field-check-label,
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-ctrl .field-checkbox > label > .field-check-label {
  margin: 0 0 0 8px;
  font-weight: 700;
  font-size: 0.934rem;
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox > label > .field-check-label,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox > label > .field-check-label,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox > label > .field-check-label,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-ctrl .field-checkbox > label > .field-check-label {
    font-weight: 500;
    font-size: 0.9rem;
  }
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-text {
  margin: 30px 0 0 0;
  font-size: 0.9rem;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-accept {
  margin: 20px 0 0 0;
  font-size: 0.9rem;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-accept > label > input[type="checkbox"] {
  height: 17px;
  flex: 0 0 17px;
  background: #fff;
  border-color: transparent;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-accept > label > input[type="checkbox"]:hover {
  border-color: transparent;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-accept > label > input[type="checkbox"]:hover:not(:checked):before {
  background: rgba(69,73,201,0.25);
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-accept > label > input[type="checkbox"]:checked {
  border-color: transparent;
}
#g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-accept > label > input[type="checkbox"]:checked:before {
  background: #4549c9;
}
.ctx-boring {
  border-bottom: none;
}
#ctx-code {
  display: flex;
  align-items: start;
}
#ctx-code form {
  display: none;
}
#ctx-code #skate-counter {
  display: flex;
  margin: 32px 0 0 0;
  padding: 4px;
  background: #4549c9;
  border: 5px solid #ff6950;
  border-radius: 15px;
  pointer-events: none;
  user-select: none;
}
#ctx-code #skate-counter > span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 10px 0 0;
  width: 50px;
  height: 66px;
  background: linear-gradient(0deg, #363ac4 0%, #797bdc 50%, #363ac4 100%);
  border-radius: 10px;
  color: #fff;
  line-height: 1;
  font-size: 50px;
  font-weight: 900;
}
#ctx-code #skate-counter > span:empty:before {
  content: "0";
}
#ctx-code #skate-counter > span:after {
  position: absolute;
  right: -6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #686cd3;
  content: "";
}
#ctx-code #skate-counter > span:last-child {
  margin-right: 0;
}
#ctx-code #skate-counter > span:last-child:after {
  display: none;
}
#ctx-code #skate {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
}
#ctx-code #skate #skate-slide {
  position: fixed;
  left: 50%;
  top: 50%;
  aspect-ratio: 1919/1080;
  transform: translate(-50%, -50%);
  z-index: 100;
}
#ctx-code #skate #skate-slide .skate-drop {
  position: absolute;
  background-size: 100%;
  width: 100px;
  margin-left: -50px;
  transition: transform 0.25s;
  z-index: 10;
}
#ctx-code #skate #skate-slide .skate-drop.grabbed {
  transform: rotate(-180deg) scale(10%) !important;
}
#ctx-code #skate #skate-slide .skate-drop.skate-drop-a {
  aspect-ratio: 500/393;
  background-image: url("../img/ui/custom/burger-a.png");
}
#ctx-code #skate #skate-slide .skate-drop.skate-drop-b {
  aspect-ratio: 500/342;
  background-image: url("../img/ui/custom/burger-b.png");
}
#ctx-code #skate #skate-slide .skate-drop.skate-drop-c {
  aspect-ratio: 500/354;
  background-image: url("../img/ui/custom/burger-c.png");
}
#ctx-code #skate #skate-slide #skate-guy {
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  aspect-ratio: 333/446;
  margin-top: -267.86786786786786px;
  z-index: 20;
}
#ctx-code #skate #skate-slide #skate-guy > div {
  position: relative;
  width: 200px;
  aspect-ratio: 333/446;
  background: url("../img/ui/custom/skate-guy.png") no-repeat left top;
  background-size: 100%;
}
#ctx-code #skate #skate-slide #skate-guy > div > span {
  position: absolute;
  left: 65%;
  top: 40%;
  width: 35%;
  height: 15%;
}
@media (max-width: 1450px) {
  #g > #g-ctx .ctx-wrap > .ctx .illustr.illustr-a {
    margin-left: 0;
    width: 500px;
    height: 624.6223564954682px;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps {
    margin-left: calc((115px - 60px) - 2rem);
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content .ctx-action {
    margin-left: 2px;
    padding-left: 0;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-home {
    margin: 0;
  }
}
@media (max-width: 1063px) {
  #g > #g-ctx .ctx-wrap > .ctx .illustr.illustr-a {
    order: 2;
    margin: 68px auto 0 auto;
    width: 396px;
    height: 494.7009063444109px;
  }
  #g > #g-ctx .ctx-wrap > .ctx .ctx-action > a,
  #g > #g-ctx .ctx-wrap > .ctx .ctx-action > button {
    font-size: 2.6rem;
  }
  #g #footer {
    margin: 0;
  }
  #g #head {
    margin: 0 0 -26px 0;
    border-bottom-color: rgba(255,255,255,0.25);
  }
  #g #head #header {
    justify-content: center;
  }
  #g #head #header #logo {
    margin: 63px 0 16px 20px;
    width: 181px;
  }
  #g #head #header #header-game-heading {
    margin: 46px 20px 0 22px;
    width: 168px;
    aspect-ratio: 168/85;
    background: url("../img/ui/custom/game_heading_sm.png") no-repeat center center;
    background-size: 100%;
  }
  #g #head #header #header-game-heading > img {
    display: none;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-home {
    flex-direction: column;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content {
    order: 1;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps {
    margin: 50px auto 37px auto;
    padding: 0;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps > li {
    margin: 20px -15px 0 -15px;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps > li:before {
    width: 65px;
    height: 65px;
    font-size: 3rem;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps > li > p {
    margin: 5px 0 0 19px;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .ctx-boxed.ctx-title {
    padding: 59px 0 0 0;
    font-size: 1.7rem;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-desktop,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-form.ctx-form .form-layout.fields-labels-visible-mobile {
    margin: 0 auto;
  }
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field {
    margin-bottom: 14px;
  }
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check {
    border: none;
  }
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA {
    width: 100% !important;
  }
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-label {
    display: block;
    margin-bottom: 10px;
    width: 260px !important;
    text-align: left !important;
  }
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-label > a {
    top: auto;
    bottom: 4px;
  }
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-ctrl {
    margin-right: 0;
    width: calc(100% - 8rem);
  }
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-ctrl input[type="text"]::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-ctrl input[type="email"]::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-ctrl input[type="password"]::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-ctrl input[type="number"]::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-ctrl select::placeholder,
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-ctrl textarea::placeholder {
    color: transparent;
  }
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description > span > a {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    display: table;
    float: none;
    margin: 5px 0 10px 0;
  }
  #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms {
    margin: 10px 20px;
  }
  #ctx-code #skate-counter {
    margin: 32px auto 0 auto;
  }
  #ctx-code #skate-counter > span {
    width: 35px;
    height: 46px;
    font-size: 30px;
  }
  #ctx-code #skate #skate-slide .skate-drop {
    width: 50px;
    margin-left: -25px;
  }
  #ctx-code #skate #skate-slide #skate-guy,
  #ctx-code #skate #skate-slide #skate-guy > div {
    width: 120px;
    margin-top: -64.59641255605382px;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--skate .ctx-reveal-result,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--trip .ctx-reveal-result {
    display: block;
    position: relative;
    margin: 49px auto 0 auto;
    width: 380px;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--skate .ctx-reveal-result .reveal-result-illustration,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--trip .ctx-reveal-result .reveal-result-illustration {
    left: 24px;
    top: 0;
    width: auto;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--skate .ctx-reveal-result .reveal-result-illustration > img,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--trip .ctx-reveal-result .reveal-result-illustration > img {
    width: 144px;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--skate .ctx-reveal-result .reveal-result-content .reveal-result-content-head,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--trip .ctx-reveal-result .reveal-result-content .reveal-result-content-head,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--skate .ctx-reveal-result .reveal-result-content .reveal-result-content-email,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--trip .ctx-reveal-result .reveal-result-content .reveal-result-content-email,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--skate .ctx-reveal-result .reveal-result-content .reveal-result-content-email-notes,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--trip .ctx-reveal-result .reveal-result-content .reveal-result-content-email-notes {
    margin: 0 0 0 169px;
    max-width: 190px;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--skate .ctx-reveal-result .reveal-result-content .reveal-result-content-head > strong,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--trip .ctx-reveal-result .reveal-result-content .reveal-result-content-head > strong,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--skate .ctx-reveal-result .reveal-result-content .reveal-result-content-head > span,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--trip .ctx-reveal-result .reveal-result-content .reveal-result-content-head > span {
    text-align: left;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--skate .ctx-reveal-result .reveal-result-content .reveal-result-content-head > strong,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--trip .ctx-reveal-result .reveal-result-content .reveal-result-content-head > strong {
    margin: 0;
    padding: 44px 0 0 0;
    font-size: 2.5rem;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--skate .ctx-reveal-result .reveal-result-content .reveal-result-content-head > span,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--trip .ctx-reveal-result .reveal-result-content .reveal-result-content-head > span {
    margin: 12px 0 0 0;
    line-height: 1.195;
    font-size: 1.68rem;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--skate .ctx-reveal-result .reveal-result-content .reveal-result-content-email,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--trip .ctx-reveal-result .reveal-result-content .reveal-result-content-email {
    margin: 128px auto 0 auto;
    max-width: none;
    width: auto;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--skate .ctx-reveal-result .reveal-result-content .reveal-result-content-email > div,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--trip .ctx-reveal-result .reveal-result-content .reveal-result-content-email > div {
    padding: 13px 23px 11px 23px;
    line-height: 1.3;
    font-size: 1.27rem;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--skate .ctx-reveal-result .reveal-result-content .reveal-result-content-email-notes,
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--trip .ctx-reveal-result .reveal-result-content .reveal-result-content-email-notes {
    margin: 41px 25px 0 25px;
    max-width: none;
    line-height: 1.3;
    font-size: 1rem;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--trip .ctx-reveal-result .reveal-result-illustration {
    left: -28px;
    top: 20px;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--trip .ctx-reveal-result .reveal-result-illustration > img {
    width: 230px;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--trip .ctx-reveal-result .reveal-result-content .reveal-result-content-head {
    margin-left: 199px;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--trip .ctx-reveal-result .reveal-result-content .reveal-result-content-email {
    margin-top: 68px;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost-prize .ctx-reveal-result {
    margin-bottom: 50px;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost-prize .ctx-reveal-result .reveal-result-illustration {
    left: 0;
    right: 0;
    top: 210px;
    width: auto;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost-prize .ctx-reveal-result .reveal-result-illustration > img {
    display: block;
    margin: 0 auto;
    width: 313px;
    transform: rotate(4deg);
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost-prize .ctx-reveal-result .reveal-result-content .reveal-result-content-head {
    margin: 0;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost-prize .ctx-reveal-result .reveal-result-content .reveal-result-content-head > strong {
    margin: 55px 0 0 0;
    font-size: 2.5rem;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost-prize .ctx-reveal-result .reveal-result-content .reveal-result-content-head > span {
    margin: 4px 0 0 0;
    line-height: 1.2;
    font-size: 1.7rem;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost-prize .ctx-reveal-result .reveal-result-content .reveal-result-content-head > span > span > small {
    margin: 5px 0 0 0;
    font-size: 1.1rem;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost-prize .ctx-reveal-result .reveal-result-content .reveal-result-content-email {
    margin: 184px 0 0 0;
    max-width: none;
    width: auto;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost-prize .ctx-reveal-result .reveal-result-content .reveal-result-content-email > a {
    padding: 13px 23px 11px 23px;
    line-height: 1.3;
    font-size: 1.27rem;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost-prize .ctx-reveal-result .reveal-result-content .reveal-result-content-email-notes {
    margin: 41px 25px 0 25px;
    max-width: none;
    line-height: 1.3;
    font-size: 1rem;
  }
  #g > #g-ctx .ctx-wrap > .ctx .follow-us {
    margin: 55px 0 20px 0;
  }
  #g > #g-ctx .ctx-wrap > .ctx .follow-us > span > a {
    display: table;
    margin: 10px auto 0 auto;
  }
}
@media (max-width: 550px) {
  body {
    min-height: 1098px;
  }
  body:not(.page---play--code) #bg {
    position: absolute;
  }
  body:not(.page---play--code) #bg > div {
    background-image: url("../img/ui/custom/bg-mobile-top.png"), url("../img/ui/custom/bg-mobile-bottom.png"), linear-gradient(0deg, #ff8952, #c2acd8, #4ea5ff);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center top, center bottom, center center;
    background-size: 100% auto, 100% auto, 100%;
  }
  #g > #g-ctx .ctx-wrap > .ctx#ctx-home {
    padding-bottom: 0;
  }
}
