@-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 #d70321;
}
#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: #d70321;
  color: #d70321;
  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: #960217;
  color: #960217;
  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: #d70321;
  border-color: #d70321;
  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: #960217;
  border-color: #960217;
  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: #d70321;
  border-color: #d70321;
  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: #960217;
  border-color: #960217;
  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: #d70321;
  color: #d70321;
  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: #960217;
  color: #960217;
  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: #d70321;
  -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: #f9f300;
  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;
}
#g {
  display: flex;
  position: relative;
  flex-direction: column;
  margin-bottom: 0;
  min-height: 100%;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(25,25,25,0.25);
  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%28249, 243, 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 #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(249,243,0,0.2);
  border-radius: 0px;
  color: #f9f300;
  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: #f9f300;
  color: #f9f300;
}
#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: rgba(25,25,25,0.75);
  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: #f9f300;
}
#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: #191919;
  text-align: center;
  line-height: 1.25;
  font-size: 0.9rem;
  opacity: 0.75;
}
#g > #g-ctx .max-playings-reached {
  margin: 3rem 0;
  color: #f9f300;
  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: rgba(25,25,25,0.75);
  z-index: 2;
}
#g > #g-ctx .ctx-wrap > .ctx .ctx-boxed {
  margin: 0;
  background: #191919;
}
#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: #f9f300;
  border: 3px solid #f9f300;
  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: #f9f300;
  color: #f9f300;
}
@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;
}
.illustr {
  display: none;
}
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%28249, 243, 0, 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(249,243,0,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 #f9f300;
  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: #f9f300;
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked:before {
  background: #f9f300;
}
.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 #f9f300;
  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: #f9f300;
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-checkbox > label > input[type="radio"]:checked:before {
  background: #f9f300;
}
.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 #f9f300;
  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: #f9f300;
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="checkbox"]:checked:before {
  background: #f9f300;
}
.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 #f9f300;
  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: #f9f300;
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="radio"]:checked:before {
  background: #f9f300;
}
.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 #f9f300;
  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: #f9f300;
}
.form-terms-accept > label > input[type="checkbox"]:checked:before {
  background: #f9f300;
}
.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 #f9f300;
  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: #f9f300;
  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 #f9f300;
  border-radius: 10rem;
  color: #f9f300;
  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: #f9f300;
}
@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: #f9f300;
  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: #f9f300;
  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: #f9f300;
}
#ctx-how-to-play > div > div > div > strong > span > em {
  color: #f9f300;
}
#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: #f9f300;
  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: #f9f300;
}
#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.482');
  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.482');
  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: #f9f300;
  border: 3px solid #f9f300;
  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: #f9f300;
  color: #f9f300;
}
#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: #f9f300;
  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: #f9f300;
  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: #f9f300;
  color: #f9f300;
}
.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 #f9f300;
  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: #f9f300;
  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 #f9f300;
  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 p:only-child > a:only-child {
  color: #f9f300;
  font-size: 1.5rem;
}
.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: #f9f300;
  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: #f9f300;
  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: #f9f300;
  content: "";
  opacity: 0;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > ul.ctx-mc-question-answers > li > label > input:checked {
  border-color: #f9f300;
}
#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: #f9f300;
}
#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: 267.88235294117646px;
  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: #f9f300;
  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: #f9f300;
}
#ctx-welcome > div.welcome-select > div > div button {
  display: table;
  margin: 0 auto;
}
body.model-b .illustr.illustr-f {
  display: block;
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/side.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 480 /  708;
  width: 480px;
  height: 708px;
  max-width: 480px;
  max-height: 708px;
}
body.model-b #g {
  box-shadow: none;
}
body.model-b #g #head #header:before {
  position: absolute;
  left: calc(50% - 50vw);
  bottom: 0;
  width: 100vw;
  border-bottom: 2px solid #fff;
  content: "";
}
body.model-b #g #head #header #logo {
  margin: 29px 0 29px 6px;
}
@media (max-width: 1063px) {
  body.model-b #g #head #header #logo {
    margin: 88px auto 19px auto;
  }
  body.model-b #g #head #header #logo > img {
    max-width: 344px;
  }
}
@media (max-width: 575px) {
  body.model-b #g #head #header #logo > img {
    max-width: 250px;
  }
}
body.model-b #g #head #header ul#nav {
  align-self: center;
  margin: 32px -37px 0 auto;
}
body.model-b #g #head #header ul#nav > li {
  position: relative;
}
body.model-b #g #head #header ul#nav > li:before {
  position: absolute;
  left: -5px;
  top: 8px;
  bottom: 6px;
  width: 3px;
  background: #fff;
  content: "";
}
body.model-b #g #head #header ul#nav > li:first-child:before {
  display: none;
}
body.model-b #g #head #header ul#nav > li > a {
  padding: 8px 17px;
  border: none;
  color: #fff;
  font-size: 1.75rem;
}
body.model-b #g #head #header ul#nav > li > a:hover {
  color: #f9f300;
}
body.model-b #g #head #header ul#nav > li.active > a {
  color: #f9f300;
}
body.model-b #g #footer {
  display: flex;
  justify-content: center;
  background: none;
}
body.model-b #g #footer #footer-links {
  padding: 5px 0;
  background: #d70321;
}
body.model-b #g #footer #footer-links > li {
  position: relative;
}
body.model-b #g #footer #footer-links > li:before {
  position: absolute;
  left: -16px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #fff;
  content: "";
}
body.model-b #g #footer #footer-links > li:first-child:before {
  display: none;
}
body.model-b #g #footer #footer-links > li > a {
  text-transform: uppercase;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: none;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx .ctx-boxed {
  background: none;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx > .ctx-inner {
  flex: 1;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result {
  display: flex;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-boring {
  border-bottom: none;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended {
  flex-direction: row;
}
@media (max-width: 1063px) {
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home,
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result,
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming,
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended {
    flex-direction: column;
    align-items: center;
  }
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content .ctx-boxed.ctx-title {
  display: none;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home ol.ctx-home-steps {
  flex-direction: column;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home ol.ctx-home-steps > li {
  display: flex;
  margin: 0;
  padding: 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home ol.ctx-home-steps > li:before {
  margin: 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home ol.ctx-home-steps > li > p > strong {
  display: inline;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.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;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop > div,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile > div {
  padding: 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop > div > div .field:not(.field-half) .field-label,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile > div > div .field:not(.field-half) .field-label,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop > div > div .field.field-half.field-half-1 .field-label,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.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;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop > div > div .field.field-half.field-half-2 .field-label,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile > div > div .field.field-half.field-half-2 .field-label {
  margin: 0 12px 0 5px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop > div > div .field .field-label,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile > div > div .field .field-label {
  font-weight: 700;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop > div > div .field.field-checkboxes .field-ctrl,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile > div > div .field.field-checkboxes .field-ctrl {
  display: block;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop > div > div .field.field-checkboxes .field-ctrl .field-check,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile > div > div .field.field-checkboxes .field-ctrl .field-check {
  display: inline-block;
  border-left: none;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop > div > div .field.field-checkboxes .field-ctrl .field-check > label,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile > div > div .field.field-checkboxes .field-ctrl .field-check > label {
  padding: 11px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .ctx-boxed.ctx-action {
  padding: 57px 0 0 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .ctx-boxed.ctx-action > button {
  padding: 10px 40px 10px 40px;
  line-height: 1;
}
body.model-b #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;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form#ctx-contact .form-terms {
  margin: 0 auto 20px auto;
  max-width: calc(600px - (2 * 2rem));
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field {
  margin-top: 0;
  margin-bottom: 11px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .form-error {
  padding: 0;
  margin: 5px 0 0 0;
  background: none;
  color: #c1331c;
  font-weight: 700;
  font-size: 0.9rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-label {
  align-self: start;
  margin-top: 6px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"],
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"],
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"],
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"],
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl select,
body.model-b #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(215,3,33,0.5);
  color: #000;
  font-weight: 700;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"]::placeholder,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"]::placeholder,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"]::placeholder,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"]::placeholder,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl select::placeholder,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl textarea::placeholder {
  color: #000;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"]:hover,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"]:hover,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"]:hover,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"]:hover,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl select:hover,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl textarea:hover {
  background-color: #fff;
  box-shadow: 0 3px 8px 3px rgba(215,3,33,0.5);
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"]:focus,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"]:focus,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"]:focus,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"]:focus,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl select:focus,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl textarea:focus {
  background-color: #fff;
  box-shadow: 0 3px 8px 5px rgba(215,3,33,0.5);
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"][disabled],
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"][disabled],
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"][disabled],
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"][disabled],
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl select[disabled],
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl textarea[disabled] {
  opacity: 0.5;
}
body.model-b #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;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-half.field-half-2 .field-label {
  margin: 6px 12px 0 5px !important;
}
@media (max-width: 1063px) {
  body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-label {
    width: auto !important;
  }
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl {
  background: none;
  border: none;
  box-shadow: none;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check {
  margin: 0 0 0 58px;
}
@media (max-width: 1063px) {
  body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check {
    margin-left: 15px;
  }
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check:first-child {
  margin-left: 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label {
  font-weight: 700;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label:hover {
  background: none;
}
body.model-b #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 #d70321;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file {
  flex-wrap: wrap;
  flex-direction: row;
  margin: -1px 0 8px 0;
  border: none;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file .form-error {
  margin: -10px 0 10px calc(13rem + 18px);
  width: 100%;
}
@media (max-width: 1063px) {
  body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file .form-error {
    margin: 10px 20px;
  }
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-attached-file {
  overflow: hidden;
  align-self: start;
  border: 1px solid #fff;
  border-radius: 10rem;
}
@media (max-width: 1063px) {
  body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-attached-file {
    width: 100%;
  }
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-attached-file > strong,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-attached-file > span {
  padding: 7px 9px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-label {
  display: none;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-ctrl-container > div input[type="file"] {
  width: 13rem;
  height: 2.5rem;
}
body.model-b #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: #d70321;
  border: none;
  border-radius: 4px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 900;
  font-size: 1.25rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-ctrl-container > div:hover > button {
  background: #fff;
  color: #d70321;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-ctrl-container > div:hover:active > button {
  color: #000;
}
body.model-b #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.95rem;
  font-weight: 500;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description > span {
  vertical-align: sub;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description > span > a {
  float: right;
  padding: 5px 7px;
  background: #d70321;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  font-size: 0.9rem;
  font-weight: bold;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description > span > a:hover {
  background: #fff;
  color: #d70321;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description > span > a:hover:active {
  color: #000;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender {
  margin-bottom: 5px;
  display: flex;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-label {
  display: block;
  align-self: center;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl {
  flex: 1;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl input[type="text"]::placeholder,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl input[type="email"]::placeholder,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl input[type="password"]::placeholder,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl input[type="number"]::placeholder,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl select::placeholder,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl textarea::placeholder {
  color: transparent !important;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-label {
  align-self: start;
  margin-top: 16px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB {
  margin-top: 5px;
  width: auto !important;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-ctrl,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB .field-ctrl {
  width: 174px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA {
  margin-left: auto;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-label {
  width: 464px !important;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-label > a {
  position: absolute;
  right: 0;
  top: 4px;
  padding: 5px 7px;
  background: #d70321;
  border-radius: 4px;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  font-size: 0.9rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-label > a:hover {
  background: #fff;
  color: #d70321;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-label > a:hover:active {
  color: #000;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-label > span:nth-child(1) {
  margin-right: 0.5rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-ctrl {
  margin-right: 126px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB {
  margin-left: 5px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA {
  margin-left: 14px;
  margin-bottom: 11px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-label,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-label,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-label,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-label {
  display: none !important;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-ctrl .field-checkbox {
  margin: 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox > label > input[type="checkbox"],
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox > label > input[type="checkbox"],
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox > label > input[type="checkbox"],
body.model-b #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;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover {
  border-color: transparent;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover:not(:checked):before,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover:not(:checked):before,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover:not(:checked):before,
body.model-b #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(215,3,33,0.25);
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked {
  border-color: transparent;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked:before,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked:before,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked:before,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked:before {
  background: #d70321;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox > label > .field-check-label,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox > label > .field-check-label,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox > label > .field-check-label,
body.model-b #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;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-text {
  margin: 30px 0 0 0;
  font-size: 0.9rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-accept {
  margin: 20px 0 0 0;
  font-size: 0.9rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-accept > .form-error {
  margin: 0.5rem 0 1rem 0;
  padding: 0;
  background: none;
  color: #c1331c;
  font-size: 0.95rem;
}
body.model-b #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;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-accept > label > input[type="checkbox"]:hover {
  border-color: transparent;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-accept > label > input[type="checkbox"]:hover:not(:checked):before {
  background: rgba(215,3,33,0.25);
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-accept > label > input[type="checkbox"]:checked {
  border-color: transparent;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-accept > label > input[type="checkbox"]:checked:before {
  background: #d70321;
}
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);
}
body.model-b .ctx-boring .ctx-boring-content .boring-cookies > dl {
  background: #d70321;
}
body.model-b .illustr.illustr-f {
  margin: 55px 0 0 24px;
  width: 410px;
  height: 604.75px;
}
body.model-b.page---play .illustr.illustr-f,
body.model-b.page---play--form .illustr.illustr-f,
body.model-b.page---play--reveal .illustr.illustr-f,
body.model-b.page---contact .illustr.illustr-f,
body.model-b.page---privacy .illustr.illustr-f,
body.model-b.page--credit .illustr.illustr-f {
  display: none;
}
body.model-b #g #head #header:before {
  left: -17px;
  right: -17px;
  width: auto;
  opacity: 0.5;
}
body.model-b #g #head #header #logo {
  margin: 23px 23px 12px 157px;
}
body.model-b #g #head #header ul#nav {
  margin: 37px -59px 0 auto;
}
body.model-b #g #head #header ul#nav > li:before {
  left: -2px;
  width: 2px;
}
body.model-b #g #head #header ul#nav > li > a {
  padding: 18px 36px;
  font-size: 1.87rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx .ctx-action > a,
body.model-b #g > #g-ctx .ctx-wrap > .ctx .ctx-action > button {
  padding: 3px 26px;
  color: #d70321;
  font-size: 3.5rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx .ctx-action > a:hover,
body.model-b #g > #g-ctx .ctx-wrap > .ctx .ctx-action > button:hover {
  background: #fff;
  border-color: #fff;
  color: #d70321;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content {
  margin: 0 -60px 0 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content:before {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/operation.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 406 /  204;
  width: 406px;
  height: 204px;
  max-width: 406px;
  max-height: 204px;
  width: 356px;
  height: 178.8768472906404px;
  display: block;
  margin: 39px 0 0 73px;
  content: "";
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home ol.ctx-home-steps {
  margin: 23px 0 0 50px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home ol.ctx-home-steps > li {
  margin: 0 0 20px 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home ol.ctx-home-steps > li:last-child {
  margin-bottom: 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home ol.ctx-home-steps > li:before {
  margin: 8px 0 0 0;
  border: none;
  color: #fff;
  font-size: 3rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home ol.ctx-home-steps > li > p {
  margin: 0 0 0 37px;
  text-align: left;
  text-transform: uppercase;
  font-size: 1.8rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home ol.ctx-home-steps > li > p > strong {
  color: #f9f300;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-boxed {
  margin: 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .ctx-boxed {
  padding: 50px 0 0 0;
  font-size: 2.3rem;
  font-weight: 900;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .ctx-boxed strong {
  color: #f9f300;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .form-error {
  color: #f9f300;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file .form-error {
  margin: -1px 0 10px 198px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file.field--UploadA {
  margin: 56px 0 22px 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file.field--UploadA > .field-file-ctrl-container > div input[type="file"] {
  width: 198px;
  height: 32px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file.field--UploadA > .field-file-ctrl-container > div > button {
  margin: 0 0 0 -7px;
  padding: 4px 23px;
  background: #f9f300;
  color: #d70321;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file.field--UploadA > .field-file-description {
  font-size: 1rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .ctx-boxed.ctx-action {
  padding: 17px 0 0 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .ctx-boxed.ctx-action > button {
  padding: 4px 26px 0 26px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms {
  margin: 0 42px;
  padding: 28px 0 0 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-animation-content {
  position: relative;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-boxed {
  color: #f9f300;
  font-size: 3rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-boxed.ctx-action {
  position: absolute;
  left: calc(50% + 337px);
  top: 481px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-boxed.ctx-action > button {
  padding: 1px 22px !important;
  white-space: nowrap;
  line-height: 1;
  font-size: 3rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-wheel > .ctx-reveal-animation-content .reveal-wheel {
  margin: -10px auto 0 auto;
  max-width: 616px;
  filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.5));
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal > .ctx-reveal-result .ctx-boxed {
  padding: 29px 0 0 0;
  font-size: 3rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-won-prize {
  margin: 0;
  max-width: none;
  width: auto;
  background: none;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-won-title,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-won-prize .prize-name {
  text-transform: uppercase;
  font-size: 2.5rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-won-title {
  margin: 2px 0 0 0;
  opacity: 1;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-won-prize .prize-name {
  padding: 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-text {
  padding: 3px 0 0 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-text > p:nth-child(1) {
  display: table;
  margin: 0 auto;
  padding: 18px 44px;
  background: #f9f300;
  color: #d70321;
  border-radius: 10rem;
  text-transform: uppercase;
  line-height: 1;
  font-size: 2rem;
  font-weight: bold;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-text > p:nth-child(2) {
  margin: 20px 0 0 0;
  font-size: 1.28rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-text > p:nth-child(3) {
  margin: 33px 0 0 0;
  color: #f9f300;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.6rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--gourde > .ctx-reveal-result .ctx-reveal-result-won-prize .prize-img img {
  width: 96px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--invitation_25 > .ctx-reveal-result .ctx-reveal-result-won-prize .prize-img img,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--invitation_27 > .ctx-reveal-result .ctx-reveal-result-won-prize .prize-img img {
  width: 328px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--bike > .ctx-reveal-result .ctx-reveal-result-won-prize .prize-img img {
  margin: 8px auto 14px auto;
  width: 516px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost > .ctx-reveal-result .ctx-boxed {
  display: none;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost > .ctx-reveal-result .ctx-reveal-result-text {
  width: auto;
  max-width: none;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost > .ctx-reveal-result .ctx-reveal-result-text > p {
  background: none;
  border-radius: 0;
  text-transform: uppercase;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost > .ctx-reveal-result .ctx-reveal-result-text > p:nth-child(1) {
  padding: 25px 0 0 0;
  color: #f9f300;
  font-size: 3.4rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost > .ctx-reveal-result .ctx-reveal-result-text > p:nth-child(1):after {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/biker-alone.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 367 /  375;
  width: 367px;
  height: 375px;
  max-width: 367px;
  max-height: 375px;
  display: block;
  margin: 36px auto 0 auto;
  content: "";
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost > .ctx-reveal-result .ctx-reveal-result-text > p:nth-child(2) {
  margin: 26px 0 0 0;
  color: #fff;
  font-weight: bold;
  font-size: 2.35rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost > .ctx-reveal-result .ctx-reveal-result-text > p:nth-child(3) {
  margin: 26px 0 0 0;
  color: #f9f300;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming > .ctx-inner:before,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended > .ctx-inner:before {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/operation.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 406 /  204;
  width: 406px;
  height: 204px;
  max-width: 406px;
  max-height: 204px;
  width: 356px;
  height: 178.8768472906404px;
  display: block;
  margin: 69px auto 30px auto;
  content: "";
}
@media (max-width: 1063px) {
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming > .ctx-inner:before,
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended > .ctx-inner:before {
    display: none;
  }
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming > .ctx-inner > .ctx-boxed,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended > .ctx-inner > .ctx-boxed,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming > .ctx-inner > .upcoming-date-before,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended > .ctx-inner > .upcoming-date-before,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming > .ctx-inner > .upcoming-date,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended > .ctx-inner > .upcoming-date {
  text-align: center;
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: bold;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming > .ctx-inner > .ctx-boxed,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended > .ctx-inner > .ctx-boxed,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming > .ctx-inner > .upcoming-date-before,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended > .ctx-inner > .upcoming-date-before {
  margin: 0;
  padding: 0;
  line-height: 1.1;
}
@media (max-width: 1063px) {
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming > .ctx-inner > .ctx-boxed,
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended > .ctx-inner > .ctx-boxed {
    margin-top: 20px;
  }
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming > .ctx-inner > .upcoming-date,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended > .ctx-inner > .upcoming-date {
  display: table;
  margin: 0 auto;
  padding: 8px 20px 7px 20px;
  background: #f9f300;
  color: #d70321;
  border-radius: 10rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming > .ctx-inner > #ctx-wrap-terms,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended > .ctx-inner > #ctx-wrap-terms {
  margin: 20px 0 0 0;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.2;
}
@media (max-width: 1063px) {
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming > .ctx-inner > #ctx-wrap-terms,
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended > .ctx-inner > #ctx-wrap-terms {
    margin-bottom: 20px;
  }
}
@media (max-height: 800px) {
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-boxed.ctx-action {
    position: relative;
    left: auto;
    top: auto;
    margin: 0 0 20px 0;
  }
}
@media (max-width: 1063px) {
  body.model-b .illustr.illustr-f {
    order: 3;
    margin: 0;
    width: 379px;
    height: 559.025px;
  }
  body.model-b #g #head #header #logo {
    margin: 0 auto;
  }
  body.model-b #g #head #header #logo > img {
    display: none;
  }
  body.model-b #g #head #header #logo:before {
    color: transparent;
    font-size: 0;
    overflow: hidden;
    text-indent: -200vw;
    display: inline-block;
    background-image: url("../img/ui/custom/operation.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: left top;
    aspect-ratio: 406 /  204;
    width: 406px;
    height: 204px;
    max-width: 406px;
    max-height: 204px;
    width: 272px;
    height: 136.66995073891627px;
    margin: 30px 24px 23px 0;
    content: "";
  }
  body.model-b #g #footer #footer-links > li:before {
    display: none;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content {
    margin: 0;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content:before {
    display: none;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home ol.ctx-home-steps {
    margin: 37px 0 0 0;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home ol.ctx-home-steps > li {
    margin: 0 0 24px 0;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home ol.ctx-home-steps > li:last-child {
    margin-bottom: 0;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home ol.ctx-home-steps > li:before {
    margin: -11px 10px 0 -21px;
    font-size: 2.8rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home ol.ctx-home-steps > li > p {
    margin: 0;
    font-size: 2.05rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-boxed {
    margin: -11px 0;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .ctx-boxed {
    padding: 29px 0 0 0;
    font-size: 1.7rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form form {
    padding: 0 10px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms {
    margin: 0 10px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-boxed {
    margin: 10px 0 0 0;
    font-size: 2.3rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-wheel > .ctx-reveal-animation-content .reveal-wheel {
    margin-bottom: 20px;
    max-width: min(616px, calc(95vw - 10px));
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-boxed.ctx-action {
    position: relative;
    left: auto;
    top: auto;
    margin: 0 0 20px 0;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal > .ctx-reveal-result {
    margin: 0 auto;
    max-width: calc(100vw - 20px);
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal > .ctx-reveal-result .ctx-boxed {
    padding-top: 34px;
    font-size: 2.74rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-won-title {
    font-size: 2rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-won-prize .prize-name {
    font-size: 2rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-text {
    max-width: none;
    width: auto;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-text > p:nth-child(1) {
    padding: 14px 37px;
    font-size: 1.45rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-text > p:nth-child(2) {
    font-size: 1rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal > .ctx-reveal-result .ctx-reveal-result-text > p:nth-child(3):after {
    color: transparent;
    font-size: 0;
    overflow: hidden;
    text-indent: -200vw;
    display: inline-block;
    background-image: url("../img/ui/custom/biker-alone.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: left top;
    aspect-ratio: 367 /  375;
    width: 367px;
    height: 375px;
    max-width: 367px;
    max-height: 375px;
    width: 272px;
    height: 277.92915531335154px;
    display: block;
    margin: 20px auto 0 auto;
    content: "";
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--gourde > .ctx-reveal-result .ctx-reveal-result-won-prize .prize-img img {
    margin: 15px auto;
    width: 88px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--invitation_25 > .ctx-reveal-result .ctx-reveal-result-won-prize .prize-img img,
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-won--invitation_27 > .ctx-reveal-result .ctx-reveal-result-won-prize .prize-img img {
    width: 302px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost > .ctx-reveal-result .ctx-reveal-result-text > p:nth-child(1) {
    padding-top: 41px;
    font-size: 2.7rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost > .ctx-reveal-result .ctx-reveal-result-text > p:nth-child(1):after {
    width: 350px;
    height: 357.6294277929156px;
    margin-top: 32px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost > .ctx-reveal-result .ctx-reveal-result-text > p:nth-child(2) {
    margin: 56px 0 0 0;
    font-size: 2rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost > .ctx-reveal-result .ctx-reveal-result-text > p:nth-child(3):after {
    display: none;
  }
}
