@-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 #d9000d;
}
#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: #d9000d;
  color: #d9000d;
  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: #980009;
  color: #980009;
  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: #d9000d;
  border-color: #d9000d;
  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: #980009;
  border-color: #980009;
  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: #d9000d;
  border-color: #d9000d;
  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: #980009;
  border-color: #980009;
  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: #d9000d;
  color: #d9000d;
  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: #980009;
  color: #980009;
  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: 1210px) {
  .under-xl {
    display: none;
  }
  .above-xl {
    display: block;
  }
  .container {
    max-width: 1210px;
  }
}
@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: 1210px) {
  .only-above-xl {
    display: none !important;
  }
}
@media screen and (min-width: 1210px) {
  .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> = 1210px \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: #111;
  -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: #cbb755;
  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: 1209px) {
  .mobile-only {
    display: block !important;
  }
}
@media (max-width: 1209px) {
  .desktop-only {
    display: none !important;
  }
}
br.m {
  display: none;
}
p {
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  color: #fff;
  text-decoration: none;
}
button {
  cursor: pointer;
}
a,
button,
input,
textarea,
select {
  transition: all 0.25s;
}
#bg {
  display: none;
}
#bg {
  display: block;
  position: fixed;
  overflow: hidden;
  left: 0;
  right: 0;
  top: 0;
  min-height: 100vh;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
#bg:before,
#bg > div:before,
#bg:after,
#bg > div:after {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
}
#bg > div {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: url('../img/ui/custom/bg.jpg?v=0.962');
  background-size: cover;
  background-position: center center;
}
#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%28203, 183, 85, 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(203,183,85,0.2);
  border-radius: 0px;
  color: #cbb755;
  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: #cbb755;
  color: #cbb755;
}
#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: 1209px) {
  #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: #cbb755;
}
#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: #cbb755;
  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: #cbb755;
  border: 3px solid #cbb755;
  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: #cbb755;
  color: #cbb755;
}
@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;
}
.modal {
  display: block;
  position: fixed;
  overflow-y: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  transition: all 0.25s;
  z-index: 999;
}
.modal > .modal-box {
  position: absolute;
  top: 30px;
  left: 50%;
  padding-bottom: 30px;
  max-width: 90vw;
  transform: translateX(-50%);
}
.modal > .modal-box > .modal-close {
  display: block;
  position: absolute;
  overflow: hidden;
  right: 0;
  top: 0;
  width: 7%;
  height: 13%;
  text-indent: -100vw;
  cursor: pointer;
}
.modal > .modal-box > .modal-body {
  display: block;
}
.modal > .modal-box > .modal-body > img {
  display: block;
  margin: 0 auto;
  max-width: calc(100vw - 60px);
}
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%28203, 183, 85, 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(203,183,85,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: 1210px) {
  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 #cbb755;
  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: #cbb755;
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked:before {
  background: #cbb755;
}
.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 #cbb755;
  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: #cbb755;
}
.ctx-wrap > .ctx.ctx-form .field .field-ctrl .field-checkbox > label > input[type="radio"]:checked:before {
  background: #cbb755;
}
.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 #cbb755;
  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: #cbb755;
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="checkbox"]:checked:before {
  background: #cbb755;
}
.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 #cbb755;
  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: #cbb755;
}
.ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="radio"]:checked:before {
  background: #cbb755;
}
.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: 1210px) {
  .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: 1210px) {
  .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: 1209px) {
  .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 #cbb755;
  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: #cbb755;
}
.form-terms-accept > label > input[type="checkbox"]:checked:before {
  background: #cbb755;
}
.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 #cbb755;
  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: #cbb755;
  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 #cbb755;
  border-radius: 10rem;
  color: #cbb755;
  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: #cbb755;
}
@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: #cbb755;
  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: #cbb755;
  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: #cbb755;
}
#ctx-how-to-play > div > div > div > strong > span > em {
  color: #cbb755;
}
#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: #cbb755;
  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-scratch .reveal-scratch {
  display: table;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-scratch .reveal-scratch > .reveal-scratch-over {
  position: relative;
  z-index: 2;
}
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-scratch .reveal-scratch > .reveal-scratch-over > img {
  max-width: 100%;
  pointer-events: none;
  user-select: none;
}
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-scratch .reveal-scratch > .reveal-scratch-over > canvas {
  position: absolute;
  left: 0;
  top: 0;
}
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-scratch .reveal-scratch > .reveal-scratch-under {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  z-index: 1;
}
#ctx-reveal > .ctx-reveal-animation.ctx-reveal-animation-scratch .reveal-scratch > .reveal-scratch-under > img {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
}
#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: #cbb755;
}
#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.962');
  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.962');
  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: #cbb755;
  border: 3px solid #cbb755;
  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: #cbb755;
  color: #cbb755;
}
#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: #cbb755;
  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: #cbb755;
  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: #cbb755;
  color: #cbb755;
}
.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 #cbb755;
  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: #cbb755;
  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 #cbb755;
  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: #cbb755;
  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: #cbb755;
  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: #cbb755;
  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: #cbb755;
  content: "";
  opacity: 0;
}
#ctx-mc .ctx-mc-questions .ctx-mc-question > ul.ctx-mc-question-answers > li > label > input:checked {
  border-color: #cbb755;
}
#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: #cbb755;
}
#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: 384.58646616541347px;
  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: #cbb755;
  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: #cbb755;
}
#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: 387 /  696;
  width: 387px;
  height: 696px;
  max-width: 387px;
  max-height: 696px;
}
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: 1209px) {
  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: #cbb755;
}
body.model-b #g #head #header ul#nav > li.active > a {
  color: #cbb755;
}
body.model-b #g #footer {
  display: flex;
  justify-content: center;
  background: none;
}
body.model-b #g #footer #footer-links {
  padding: 5px 0;
  background: #d9000d;
}
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: 1209px) {
  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 {
  text-align: left;
  text-transform: uppercase;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home ol.ctx-home-steps > li > p > strong {
  display: inline;
  font-weight: 700;
}
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: 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 .form-layout.fields-labels-visible-desktop > p,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile > p {
  margin: 0 0 0 13px;
  color: #cbb755;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.82rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .ctx-boxed.ctx-action {
  padding: 10px 0 0 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .ctx-boxed.ctx-action > button {
  line-height: 1;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms {
  margin: 5px -77px 20px -77px;
  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(217,0,13,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(217,0,13,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(217,0,13,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: 1209px) {
  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: 1209px) {
  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 #d9000d;
}
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: 1209px) {
  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: 1209px) {
  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: #d9000d;
  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: #d9000d;
}
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: #d9000d;
  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: #d9000d;
}
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: #d9000d;
  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: #d9000d;
}
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(217,0,13,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: #d9000d;
}
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 13px;
  font-weight: 700;
  font-size: 0.82rem;
}
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(217,0,13,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: #d9000d;
}
html:has(body.model-z) {
  display: block;
  height: 100%;
}
body.model-z {
  display: flex;
  overflow: hidden;
  flex: 1;
}
body.model-z #dev-mockup.on {
  display: none;
}
body.model-z .dev-tools {
  left: 0;
  right: auto;
  top: 0;
  bottom: auto;
  transform: translateX(calc(-100% + 20px));
  white-space: nowrap;
  opacity: 0.15;
  transition: transform 0.15s;
}
body.model-z .dev-tools:hover {
  transform: translateX(0);
  opacity: 1;
}
body.model-z #bg {
  left: auto;
  width: 42.857142857142854%;
}
body.model-z #g.container {
  display: flex;
  position: relative;
  flex: 1;
  width: auto;
  max-width: none;
  box-shadow: none;
}
body.model-z #g.container #head {
  display: none;
}
body.model-z #g.container #footer {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  left: 0;
  bottom: 0;
  padding: 0;
  width: 57.14285714285714%;
  height: 60px;
  z-index: 30;
}
body.model-z #g.container > #g-ctx {
  display: flex;
  flex: 1;
}
body.model-z #g.container > #g-ctx .ctx-wrap {
  display: flex;
  flex: 1;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx {
  display: flex;
  flex: 1;
  margin: 0 !important;
  padding: 0 !important;
  background: none;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx .ctx-boxed {
  background: none;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx .ctx-title {
  margin: 0;
  padding: 20px;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx > .illustr {
  display: none;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx > .illustr.illustr-f {
  display: block;
  position: relative;
  flex: 4;
  width: auto;
  height: auto;
  background: none;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx > .illustr.illustr-f:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 60px;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  background-image: url("../img/ui/custom/side-zero.jpg");
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx > .illustr.illustr-f:before,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx > .illustr.illustr-f.illustr-side-cover:before {
  background-size: cover;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx > .illustr.illustr-f.illustr-side-contain:before {
  background-size: contain;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx > .illustr.illustr-f.illustr-side-fill:before {
  background-size: 100% 100%;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx > .illustr.illustr-f.illustr-side-repeat-x:before {
  background-size: auto 100%;
  background-repeat: repeat-x;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx > .illustr.illustr-f.illustr-side-repeat-y:before {
  background-size: 100% auto;
  background-repeat: repeat-y;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx > .illustr.illustr-f.illustr-side-repeat-xy:before {
  background-size: auto;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx > .ctx-content {
  position: relative;
  flex: 3;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx > .ctx-content > div {
  position: absolute;
  overflow-x: hidden;
  overflow-y: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 40px;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile {
  margin: 0 auto;
  max-width: 1010px;
  font-size: 1.05rem;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop > div,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile > div {
  padding: 0;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop > div > div .field:not(.field-half) .field-label,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile > div > div .field:not(.field-half) .field-label,
body.model-z #g.container > #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-z #g.container > #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-z #g.container > #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-z #g.container > #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-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop > div > div .field .field-label,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile > div > div .field .field-label {
  font-weight: 700;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop > div > div .field.field-checkboxes .field-ctrl,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile > div > div .field.field-checkboxes .field-ctrl {
  display: block;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop > div > div .field.field-checkboxes .field-ctrl .field-check,
body.model-z #g.container > #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-z #g.container > #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-z #g.container > #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-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-desktop > p,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-layout.fields-labels-visible-mobile > p {
  margin: 0 0 0 13px;
  color: #cbb755;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.82rem;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .ctx-boxed.ctx-action {
  padding: 10px 0 0 0;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .ctx-boxed.ctx-action > button {
  line-height: 1;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms {
  margin: 5px 0 20px 0;
  padding: 13px 0 0 0;
  border-bottom: none;
  font-size: 0.7rem;
  opacity: 1;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form#ctx-contact .form-terms {
  margin: 0 auto 20px auto;
  max-width: calc(600px - (2 * 2rem));
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field {
  margin-top: 0;
  margin-bottom: 11px;
}
body.model-z #g.container > #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-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-label {
  align-self: start;
  margin-top: 6px;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"],
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"],
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"],
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"],
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl select,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl textarea {
  padding: 6px 11px;
  background-color: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: none;
  color: #000;
  font-weight: 700;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"]::placeholder,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"]::placeholder,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"]::placeholder,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"]::placeholder,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl select::placeholder,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl textarea::placeholder {
  color: #000;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"]:hover,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"]:hover,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"]:hover,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"]:hover,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl select:hover,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl textarea:hover {
  background-color: #fff;
  box-shadow: none;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"]:focus,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"]:focus,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"]:focus,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"]:focus,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl select:focus,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl textarea:focus {
  background-color: #fff;
  box-shadow: none;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="text"][disabled],
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="email"][disabled],
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="password"][disabled],
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl input[type="number"][disabled],
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl select[disabled],
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field .field-ctrl textarea[disabled] {
  opacity: 0.5;
}
body.model-z #g.container > #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-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-half.field-half-2 .field-label {
  margin: 6px 12px 0 5px !important;
}
@media (max-width: 1209px) {
  body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-label {
    width: auto !important;
  }
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl {
  background: none;
  border: none;
  box-shadow: none;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check {
  margin: 0 0 0 58px;
}
@media (max-width: 1209px) {
  body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check {
    margin-left: 15px;
  }
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check:first-child {
  margin-left: 0;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label {
  font-weight: 700;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label:hover {
  background: none;
}
body.model-z #g.container > #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: none;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="radio"]:before {
  left: 32%;
  right: auto;
  top: 12%;
  bottom: auto;
  width: 20%;
  height: 50%;
  transform: rotate(40deg);
  background: none;
  border: 3px solid transparent;
  border-left: none;
  border-top: none;
  border-radius: 0 !important;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="radio"]:hover {
  border-color: transparent;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="radio"]:hover:not(:checked):before {
  border-color: rgba(0,0,0,0.25);
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="radio"]:checked {
  border-color: transparent;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .field-check > label input[type="radio"]:checked:before {
  border-color: #000;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file {
  display: block;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 5px 0 15px 0;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 8px;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file .form-error {
  margin: -10px 0 10px calc(13rem + 18px);
  width: 100%;
}
@media (max-width: 1209px) {
  body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file .form-error {
    margin: 10px 20px;
  }
}
body.model-z #g.container > #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: 1209px) {
  body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-attached-file {
    width: 100%;
  }
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-attached-file > strong,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-attached-file > span {
  padding: 7px 9px;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-label {
  display: none;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-ctrl-container > div input[type="file"] {
  margin: 0;
  width: 100%;
  height: 2.5rem;
}
body.model-z #g.container > #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: #cbb755;
  border: none;
  border-radius: 4px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 900;
  font-size: 1.25rem;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-ctrl-container > div:hover > button {
  background: #000;
  color: #cbb755;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-ctrl-container > div:hover:active > button {
  color: #cbb755;
  opacity: 0.75;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description {
  flex: 1;
  align-self: center;
  padding: 0;
  border: none;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description > span {
  vertical-align: sub;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description > span > a {
  display: table;
  float: none;
  margin: 5px auto 0 auto;
  padding: 5px 7px;
  background: #cbb755;
  border-radius: 4px;
  color: #000;
  text-decoration: none;
  line-height: 1;
  font-size: 0.9rem;
  font-weight: bold;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description > span > a:hover {
  background: #000;
  color: #cbb755;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description > span > a:hover:active {
  color: #cbb755;
  opacity: 0.75;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender {
  margin-bottom: 5px;
  display: flex;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-label {
  display: block;
  align-self: center;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl {
  flex: 1;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl input[type="text"]::placeholder,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl input[type="email"]::placeholder,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl input[type="password"]::placeholder,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl input[type="number"]::placeholder,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl select::placeholder,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-ctrl textarea::placeholder {
  color: transparent !important;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Gender .field-label {
  align-self: start;
  margin-top: 16px;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB {
  margin-top: 5px;
  width: auto !important;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-ctrl,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB .field-ctrl {
  width: 174px;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA {
  margin-left: auto;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-label {
  width: 464px !important;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-label > a {
  position: absolute;
  right: 0;
  top: 4px;
  padding: 5px 7px;
  background: #cbb755;
  border-radius: 4px;
  color: #000;
  line-height: 1;
  text-decoration: none;
  font-size: 0.9rem;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-label > a:hover {
  background: #000;
  color: #cbb755;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-label > a:hover:active {
  color: #cbb755;
  opacity: 0.75;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-label > span:nth-child(1) {
  margin-right: 0.5rem;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeA .field-ctrl {
  margin-right: 126px;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--BarcodeB {
  margin-left: 5px;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA {
  margin-left: 14px;
  margin-bottom: 11px;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-label,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-label,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-label,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-label {
  display: none !important;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-ctrl .field-checkbox {
  margin: 0;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox > label > input[type="checkbox"],
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox > label > input[type="checkbox"],
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox > label > input[type="checkbox"],
body.model-z #g.container > #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-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox > label > input[type="checkbox"]:before,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox > label > input[type="checkbox"]:before,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox > label > input[type="checkbox"]:before,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-ctrl .field-checkbox > label > input[type="checkbox"]:before {
  left: 23%;
  right: auto;
  top: -5%;
  bottom: auto;
  width: 28%;
  height: 69%;
  transform: rotate(40deg);
  background: none;
  border: 3px solid transparent;
  border-left: none;
  border-top: none;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover {
  border-color: transparent;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover:not(:checked):before,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover:not(:checked):before,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover:not(:checked):before,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-ctrl .field-checkbox > label > input[type="checkbox"]:hover:not(:checked):before {
  border-color: rgba(0,0,0,0.25);
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked {
  border-color: transparent;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked:before,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked:before,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked:before,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-ctrl .field-checkbox > label > input[type="checkbox"]:checked:before {
  border-color: #000;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--IsMajor .field-ctrl .field-checkbox > label > .field-check-label,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--Terms .field-ctrl .field-checkbox > label > .field-check-label,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--TermsPrivacy .field-ctrl .field-checkbox > label > .field-check-label,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field--OptinA .field-ctrl .field-checkbox > label > .field-check-label {
  margin: 0 0 0 13px;
  font-weight: 700;
  font-size: 0.82rem;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-text {
  margin: 30px 0 0 0;
  font-size: 0.9rem;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-accept {
  margin: 20px 0 0 0;
  font-size: 0.9rem;
}
body.model-z #g.container > #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-z #g.container > #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-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-accept > label > input[type="checkbox"]:before {
  left: 23%;
  right: auto;
  top: -5%;
  bottom: auto;
  width: 28%;
  height: 69%;
  transform: rotate(40deg);
  background: none;
  border: 3px solid transparent;
  border-left: none;
  border-top: none;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-accept > label > input[type="checkbox"]:hover {
  border-color: transparent;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-accept > label > input[type="checkbox"]:hover:not(:checked):before {
  border-color: rgba(0,0,0,0.25);
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-accept > label > input[type="checkbox"]:checked {
  border-color: transparent;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms-accept > label > input[type="checkbox"]:checked:before {
  border-color: #000;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-won .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-won-title,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-lost .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-won-title {
  margin: 30px 0 10px 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.15rem;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-won .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-won-prize .prize-name,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-lost .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-won-prize .prize-name {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.75rem;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-won .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-won-prize .prize-img,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-lost .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-won-prize .prize-img {
  margin: 40px 0;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-won .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-won-prize .prize-img > img,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-lost .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-won-prize .prize-img > img {
  max-width: 100%;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-won .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-lost .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text {
  margin: 0 auto;
  max-width: 350px;
  text-align: center;
  line-height: 1.2;
  font-size: 0.95rem;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-won .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text > p,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-lost .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text > p {
  margin: 0 0 10px 0;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-won .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text > p:last-child,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-lost .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text > p:last-child {
  margin-bottom: 0;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-won .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text > p strong,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-lost .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text > p strong {
  font-weight: bold;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-won .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text > p em,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-lost .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text > p em {
  font-style: italic;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-won .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text > p > strong:only-child,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-lost .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text > p > strong:only-child {
  font-weight: bold;
  font-size: 1.25rem;
}
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-won .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text > p > em:only-child,
body.model-z #g.container > #g-ctx .ctx-wrap > .ctx.ctx-reveal-lost .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text > p > em:only-child {
  display: block;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  font-style: normal;
}
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 .illustr.illustr-a {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/illustr-plane-clouds.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 1431 /  587;
  width: 1431px;
  height: 587px;
  max-width: 1431px;
  max-height: 587px;
  display: none;
  position: absolute;
  left: -198px;
  top: -84px;
  z-index: 1;
}
body.model-b .illustr.illustr-f {
  display: none;
  margin: -28px 0 0 0;
  z-index: 7;
}
body.model-b .illustr.illustr-b {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/illustr-form-left.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 346 /  303;
  width: 346px;
  height: 303px;
  max-width: 346px;
  max-height: 303px;
  display: none;
  position: absolute;
  left: -138px;
  top: -155px;
  z-index: 1;
}
body.model-b .illustr.illustr-c {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/illustr-form-right.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 338 /  418;
  width: 338px;
  height: 418px;
  max-width: 338px;
  max-height: 418px;
  display: none;
  position: absolute;
  right: -193px;
  top: -68px;
  z-index: 1;
}
body.model-b #g #head #header {
  margin: 0 106px;
  z-index: 9;
}
body.model-b #g #head #header:before,
body.model-b #g #head #header:after {
  display: block;
  position: absolute;
  left: auto;
  right: auto;
  top: calc(50% - 13px);
  bottom: auto;
  border: none;
  border-bottom: 2px solid #fff;
  content: "";
}
body.model-b #g #head #header:before {
  left: -183px;
  width: 178px;
}
body.model-b #g #head #header:after {
  left: 287px;
  right: -182px;
}
body.model-b #g #head #header #logo {
  margin: 9px 0 29px 6px;
}
body.model-b #g #head #header ul#nav {
  margin: -140px -37px 0 auto;
}
body.model-b #g #footer {
  margin: 0 -77px;
  padding: 19px 0 19px 0;
  border-top: 2px solid #fff;
}
body.model-b #g #footer #footer-links {
  background: none;
}
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: 12px 29px 10px 29px;
  background: #fff linear-gradient(to right, #cbb755 0%, #e7ddb8 50%, #cbb755 100%);
  border: none;
  border-radius: 13px;
  color: #000;
  font-size: 40px;
  font-weight: 700;
}
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;
  color: #4549c9;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx .ctx-content {
  z-index: 9;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx #ctx-wrap-terms {
  margin: 41px 0 0 30px;
  text-align: center;
  line-height: 1.5;
  font-size: 16px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home {
  margin-left: 30px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .illustr.illustr-a,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .illustr.illustr-a,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .illustr.illustr-f,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .illustr.illustr-f {
  display: block;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .illustr.illustr-b,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .illustr.illustr-b,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .illustr.illustr-c,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .illustr.illustr-c {
  display: none;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .ctx-content,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 721px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .ctx-boxed {
  margin: -13px 0 0 26px;
  padding: 0;
  line-height: 1.17;
  font-size: 3.47rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .upcoming-date-before,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .upcoming-date {
  display: table;
  margin: 0 auto;
  padding: 0 0 0 26px;
  line-height: 1.17;
  text-transform: uppercase;
  font-size: 3.4rem;
  font-weight: bold;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .upcoming-date-before {
  margin-top: 37px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .upcoming-date {
  margin-top: 10px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .upcoming-date > div {
  padding: 4px 13px 2px 13px;
  background: linear-gradient(to right, #cbb755 0%, #e7ddb8 50%, #cbb755 100%);
  border-radius: 13px;
  color: #000;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming #ctx-wrap-terms {
  margin-top: 204px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text {
  position: relative;
  margin: 20px 0 403px 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text:before {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/illustr-reveal-plane.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 849 /  531;
  width: 849px;
  height: 531px;
  max-width: 849px;
  max-height: 531px;
  display: block;
  position: absolute;
  left: calc(50% - 440px);
  top: -142px;
  content: "";
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div {
  position: relative;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div:before {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/reveal-cloud.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 114 /  62;
  width: 114px;
  height: 62px;
  max-width: 114px;
  max-height: 62px;
  left: calc(50% - 595px);
  top: -13px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div:after {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/reveal-cloud-sun.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 142 /  78;
  width: 142px;
  height: 78px;
  max-width: 142px;
  max-height: 78px;
  left: calc(50% + 451px);
  top: 11px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div:before,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div:after {
  display: block;
  position: absolute;
  content: "";
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p {
  margin: 0;
  padding: 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:not(:has(strong)):not(:has(em)) {
  line-height: 1.02;
  text-align: center;
  text-transform: uppercase;
  font-size: 4.9rem;
  font-weight: bold;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):not(:has(strong)) {
  position: absolute;
  margin: 0;
  left: 0;
  right: 82px;
  top: 458px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):not(:has(strong)) em {
  display: table;
  position: relative;
  margin: 0 auto;
  line-height: 1.2;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):not(:has(strong)) em a {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/link-bons-plans.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 79 /  83;
  width: 79px;
  height: 83px;
  max-width: 79px;
  max-height: 83px;
  display: block;
  position: absolute;
  left: calc(100% + 4px);
  top: -22px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):not(:has(strong)) em a:hover {
  transform: rotate(3deg);
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):not(:has(strong)) em a:hover:active {
  transform: rotate(1deg) scale(0.9);
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):has(strong) {
  position: absolute;
  margin: 4px 0 0 3px;
  left: 0;
  right: 0;
  top: 553px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.2rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):has(strong) strong,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):has(strong) em {
  display: inline-block;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):has(strong) > strong > em > a,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):has(strong) > em > strong > a {
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: middle;
  margin: -4px 0 0 9px;
  font-size: 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):has(strong) > strong > em > a[href*="instagram"]:before,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):has(strong) > em > strong > a[href*="instagram"]:before {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/social-ig.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 53 /  53;
  width: 53px;
  height: 53px;
  max-width: 53px;
  max-height: 53px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):has(strong) > strong > em > a[href*="facebook"],
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):has(strong) > em > strong > a[href*="facebook"] {
  margin-left: 11px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):has(strong) > strong > em > a[href*="facebook"]:before,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):has(strong) > em > strong > a[href*="facebook"]:before {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/social-fb.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 55 /  53;
  width: 55px;
  height: 53px;
  max-width: 55px;
  max-height: 53px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):has(strong) > strong > em > a:before,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):has(strong) > em > strong > a:before {
  display: inline-block;
  content: "";
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):has(strong) > strong > em > a:hover,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):has(strong) > em > strong > a:hover {
  transform: rotate(3deg);
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):has(strong) > strong > em > a:hover:active,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):has(strong) > em > strong > a:hover:active {
  transform: rotate(1deg) scale(0.9);
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home {
  margin-bottom: -20px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps {
  margin: 66px 0 0 30px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps > li {
  margin: 0 0 29px 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps > li:last-child {
  margin-bottom: 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps > li:before {
  width: 64px;
  height: 64px;
  background: linear-gradient(to bottom, #cbb755 0%, #e7ddb8 50%, #cbb755 100%);
  border: none;
  color: #fff;
  font-size: 43px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps > li > p {
  margin: 3px 0 0 11px;
  font-size: 1.885rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-boxed {
  margin: 46px 0 0 33px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-form .illustr.illustr-a,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-form .illustr.illustr-f {
  display: none;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-form .illustr.illustr-b,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-form .illustr.illustr-c {
  display: block;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-form .ctx-boxed.ctx-title {
  margin: -116px 0 0 0;
  padding: 0;
  font-size: 2.39rem;
}
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: 0 auto;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field .form-error {
  color: #ff323e;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-ctrl-container > div > button {
  background: #fff linear-gradient(to bottom, #cbb755 0%, #e7ddb8 50%, #cbb755 100%);
  color: #000;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-ctrl-container > div:hover > button,
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-ctrl-container > div > button:hover {
  background: #fff;
  color: #4549c9;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description > span > a {
  background: #fff linear-gradient(to bottom, #cbb755 0%, #e7ddb8 50%, #cbb755 100%);
  color: #000;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description > span > a:hover {
  background: #fff;
  color: #4549c9;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file .form-error {
  margin-left: 13rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-checkboxes .field-ctrl .form-error {
  margin: 0 0 5px 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result {
  height: 648px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-won-prize .prize-img,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-lost .prize-img {
  margin: 27px 0 0 calc(50% - 50vw - 1435px);
  pointer-events: none;
  animation-name: reveal-plane;
  animation-delay: 1s;
  animation-duration: 9s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-boxed.ctx-title,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-won-title,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-won-prize .prize-name {
  display: none;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text {
  display: block;
  position: absolute;
  left: 327px;
  top: 0;
  width: 556px;
  opacity: 0;
  pointer-events: none;
  animation-name: reveal-content;
  animation-delay: 10s;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text:before {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/illustr-reveal-plane.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 849 /  531;
  width: 849px;
  height: 531px;
  max-width: 849px;
  max-height: 531px;
  display: block;
  position: absolute;
  left: calc(50% - 440px);
  top: -90px;
  content: "";
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p {
  position: relative;
  margin: 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:not(:has(strong)):not(:has(em)) {
  margin: 36px 60px 0 60px;
  line-height: 1.17;
  text-align: justify;
  font-size: 1.465rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:not(:has(strong)):not(:has(em)):before {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/reveal-cloud.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 114 /  62;
  width: 114px;
  height: 62px;
  max-width: 114px;
  max-height: 62px;
  left: calc(50% - 595px);
  top: -157px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:not(:has(strong)):not(:has(em)):after {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/reveal-cloud-sun.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 142 /  78;
  width: 142px;
  height: 78px;
  max-width: 142px;
  max-height: 78px;
  left: calc(50% + 451px);
  top: -133px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:not(:has(strong)):not(:has(em)):before,
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:not(:has(strong)):not(:has(em)):after {
  display: block;
  position: absolute;
  content: "";
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:has(strong) {
  margin: 0;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:has(strong) strong {
  display: table;
  margin: 31px auto 0 auto;
  padding: 20px 30px;
  background: #fff linear-gradient(to bottom, #cbb755 0%, #e7ddb8 50%, #cbb755 100%);
  border-radius: 10rem;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.07em;
  font-weight: bold;
  font-size: 1.9rem;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:has(em) {
  position: absolute;
  margin: 0;
  left: 0;
  right: 82px;
  top: 538px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:has(em) em {
  display: table;
  position: relative;
  margin: 0 auto;
  line-height: 1.2;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:has(em) em a {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/link-bons-plans.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 79 /  83;
  width: 79px;
  height: 83px;
  max-width: 79px;
  max-height: 83px;
  display: block;
  position: absolute;
  left: calc(100% + 4px);
  top: -22px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:has(em) em a:hover {
  transform: rotate(3deg);
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:has(em) em a:hover:active {
  transform: rotate(1deg) scale(0.9);
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text:before {
  display: none;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:not(:has(strong)):not(:has(em)) {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:not(:has(strong)):not(:has(em)):before {
  top: -29px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:not(:has(strong)):not(:has(em)):after {
  top: -5px;
}
body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:has(em) {
  top: 238px;
}
body.model-b.reveal-won #g:before,
body.model-b.reveal-lost #g:before {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/reveal-cloud.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 114 /  62;
  width: 114px;
  height: 62px;
  max-width: 114px;
  max-height: 62px;
  left: calc(50% - (493px + 250px));
  top: 706px;
  animation-name: reveal-cloud;
  animation-delay: 0s;
  animation-duration: 8.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: linear;
}
body.model-b.reveal-won #g:after,
body.model-b.reveal-lost #g:after {
  color: transparent;
  font-size: 0;
  overflow: hidden;
  text-indent: -200vw;
  display: inline-block;
  background-image: url("../img/ui/custom/reveal-cloud-sun.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left top;
  aspect-ratio: 142 /  78;
  width: 142px;
  height: 78px;
  max-width: 142px;
  max-height: 78px;
  right: calc(50% - (352px + 250px));
  top: 241px;
  animation-name: reveal-cloud-sun;
  animation-delay: 0s;
  animation-duration: 9s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: linear;
}
body.model-b.reveal-won #g:before,
body.model-b.reveal-lost #g:before,
body.model-b.reveal-won #g:after,
body.model-b.reveal-lost #g:after {
  position: absolute;
  content: "";
  z-index: 9;
  pointer-events: none;
}
@-moz-keyframes reveal-plane {
  0% {
    margin-left: calc(50% - 50vw - 1435px);
    transform: none;
  }
  20% {
    transform: rotate(0.5deg);
  }
  40% {
    margin-left: 0;
    transform: rotate(-0.5deg);
  }
  60% {
    margin-left: 0;
    transform: rotate(0.5deg);
  }
  100% {
    margin-left: calc(50% + 50vw);
    transform: none;
  }
}
@-webkit-keyframes reveal-plane {
  0% {
    margin-left: calc(50% - 50vw - 1435px);
    transform: none;
  }
  20% {
    transform: rotate(0.5deg);
  }
  40% {
    margin-left: 0;
    transform: rotate(-0.5deg);
  }
  60% {
    margin-left: 0;
    transform: rotate(0.5deg);
  }
  100% {
    margin-left: calc(50% + 50vw);
    transform: none;
  }
}
@-o-keyframes reveal-plane {
  0% {
    margin-left: calc(50% - 50vw - 1435px);
    transform: none;
  }
  20% {
    transform: rotate(0.5deg);
  }
  40% {
    margin-left: 0;
    transform: rotate(-0.5deg);
  }
  60% {
    margin-left: 0;
    transform: rotate(0.5deg);
  }
  100% {
    margin-left: calc(50% + 50vw);
    transform: none;
  }
}
@keyframes reveal-plane {
  0% {
    margin-left: calc(50% - 50vw - 1435px);
    transform: none;
  }
  20% {
    transform: rotate(0.5deg);
  }
  40% {
    margin-left: 0;
    transform: rotate(-0.5deg);
  }
  60% {
    margin-left: 0;
    transform: rotate(0.5deg);
  }
  100% {
    margin-left: calc(50% + 50vw);
    transform: none;
  }
}
@-moz-keyframes reveal-cloud {
  0% {
    left: calc(50% - (493px + 250px));
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: calc(50% - (493px - 250px));
    opacity: 0;
  }
}
@-webkit-keyframes reveal-cloud {
  0% {
    left: calc(50% - (493px + 250px));
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: calc(50% - (493px - 250px));
    opacity: 0;
  }
}
@-o-keyframes reveal-cloud {
  0% {
    left: calc(50% - (493px + 250px));
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: calc(50% - (493px - 250px));
    opacity: 0;
  }
}
@keyframes reveal-cloud {
  0% {
    left: calc(50% - (493px + 250px));
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: calc(50% - (493px - 250px));
    opacity: 0;
  }
}
@-moz-keyframes reveal-cloud-sun {
  0% {
    right: calc(50% - (352px + 250px));
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    right: calc(50% - (352px - 250px));
    opacity: 0;
  }
}
@-webkit-keyframes reveal-cloud-sun {
  0% {
    right: calc(50% - (352px + 250px));
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    right: calc(50% - (352px - 250px));
    opacity: 0;
  }
}
@-o-keyframes reveal-cloud-sun {
  0% {
    right: calc(50% - (352px + 250px));
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    right: calc(50% - (352px - 250px));
    opacity: 0;
  }
}
@keyframes reveal-cloud-sun {
  0% {
    right: calc(50% - (352px + 250px));
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    right: calc(50% - (352px - 250px));
    opacity: 0;
  }
}
@-moz-keyframes reveal-content {
  0% {
    opacity: 0;
  }
  99.9% {
    opacity: 1;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    pointer-events: all;
  }
}
@-webkit-keyframes reveal-content {
  0% {
    opacity: 0;
  }
  99.9% {
    opacity: 1;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    pointer-events: all;
  }
}
@-o-keyframes reveal-content {
  0% {
    opacity: 0;
  }
  99.9% {
    opacity: 1;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    pointer-events: all;
  }
}
@keyframes reveal-content {
  0% {
    opacity: 0;
  }
  99.9% {
    opacity: 1;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    pointer-events: all;
  }
}
@media screen and (max-width: 1450px) {
  body.model-b .illustr.illustr-a {
    width: 1305px;
    left: -139px;
    top: -44px;
  }
}
@media (max-width: 1209px) {
  body.model-b .illustr.illustr-a {
    color: transparent;
    font-size: 0;
    overflow: hidden;
    text-indent: -200vw;
    display: inline-block;
    background-image: url("../img/ui/custom/illustr-plane-clouds-mobile.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: left top;
    aspect-ratio: 443 /  857;
    width: 443px;
    height: 857px;
    max-width: 443px;
    max-height: 857px;
    left: calc(50% - 226px);
    top: -53px;
  }
  body.model-b .illustr.illustr-f {
    color: transparent;
    font-size: 0;
    overflow: hidden;
    text-indent: -200vw;
    display: inline-block;
    background-image: url("../img/ui/custom/side-mobile.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: left top;
    aspect-ratio: 387 /  559;
    width: 387px;
    height: 559px;
    max-width: 387px;
    max-height: 559px;
    order: 2;
    margin: 5px 0 0 30px;
  }
  body.model-b.reveal-won .illustr.illustr-a,
  body.model-b.reveal-lost .illustr.illustr-a,
  body.model-b.reveal-won .illustr.illustr-f,
  body.model-b.reveal-lost .illustr.illustr-f {
    display: none !important;
  }
  body.model-b.reveal-won #g:before,
  body.model-b.reveal-lost #g:before {
    left: calc(50% - 224px);
    top: 654px;
    width: 84px;
    animation-name: reveal-cloud-mobile;
  }
  body.model-b.reveal-won #g:after,
  body.model-b.reveal-lost #g:after {
    right: calc(50% - 258px);
    top: 332px;
    width: 99px;
    animation-name: reveal-cloud-sun-mobile;
  }
  body.model-b #g #head #header:before,
  body.model-b #g #head #header:after {
    display: none;
  }
  body.model-b #g #head #header #logo {
    margin: 21px auto 0 auto;
  }
  body.model-b #g #head #header #logo > img {
    margin: 0 0 0 -7px;
    width: 209px;
  }
  body.model-b #g #head #header #nav-toggler {
    right: auto;
    left: calc(50% + 50vw - 73px);
  }
  body.model-b #g #head #header #nav-toggler:hover > span {
    filter: invert(1);
  }
  body.model-b #g #head #header ul#nav {
    margin: -70px auto 0 auto;
  }
  body.model-b #g #footer {
    border-top: none;
  }
  body.model-b #g #footer #footer-links > li:before {
    display: none;
  }
  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: 9px 35px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .illustr.illustr-f {
    margin-top: 35px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .ctx-boxed {
    margin: 15px 0 0 0;
    font-size: 2.45rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .ctx-boxed br:nth-child(1) {
    display: none;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .upcoming-date-before {
    margin-top: 15px;
    padding-left: 0;
    font-size: 2.4rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .upcoming-date {
    margin-top: 8px;
    padding-left: 0;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming .upcoming-date > div {
    padding: 3px 10px 2px 10px;
    font-size: 2.5rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-upcoming #ctx-wrap-terms {
    display: block;
    margin: 17px auto 0 auto;
    max-width: 250px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .illustr.illustr-a,
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .illustr.illustr-f {
    display: none;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text {
    margin-top: 174px;
    margin-bottom: 464px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text:before {
    color: transparent;
    font-size: 0;
    overflow: hidden;
    text-indent: -200vw;
    display: inline-block;
    background-image: url("../img/ui/custom/illustr-reveal-plane-mobile.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: left top;
    aspect-ratio: 461 /  534;
    width: 461px;
    height: 534px;
    max-width: 461px;
    max-height: 534px;
    left: calc(50% - 220px);
    top: -144px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div:before {
    width: 80px;
    left: calc(50% + 69px);
    top: 260px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div:after {
    width: 98px;
    left: calc(50% - 30px);
    top: -91px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:not(:has(strong)):not(:has(em)) {
    max-width: 237px;
    line-height: 1.138;
    font-size: 3.3rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):not(:has(strong)) {
    left: calc(50% - 159px);
    right: auto;
    top: 544px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):not(:has(strong)) em {
    font-size: 1.25rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):not(:has(strong)) em a {
    left: calc(100% + 8px);
    top: -19px;
    width: 65px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):has(strong) {
    margin: 0;
    left: -50px;
    top: 615px;
    width: 340px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):has(strong) > strong > em > a[href*="instagram"]:before {
    width: 43px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-ended .ended-text > div > p:has(em):has(strong) > strong > em > a[href*="facebook"]:before {
    width: 43px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content {
    order: 1;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps {
    margin: 4px 0 0 42px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps > li {
    margin: 0 0 22px 0;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-home .ctx-content ol.ctx-home-steps > li > p {
    margin: 3px 48px 0 17px;
    font-size: 1.6rem;
  }
  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-wrap-terms {
    display: none;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-form .ctx-boxed.ctx-title {
    margin: 15px 0 5px 0;
    line-height: 1.12;
    font-size: 1.73rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field {
    margin-left: 15px;
    margin-right: 15px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .field.field-file > .field-file-description > span > a {
    float: none;
    display: table;
    margin: 5px 0 10px 0;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .ctx-boxed.ctx-action {
    margin: 25px 0 15px 0;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx.ctx-form .form-terms {
    margin: 4px 15px 20px 15px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result {
    height: 798px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-won-prize .prize-img,
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-lost .prize-img {
    margin: 165px 0 0 calc(50% - 50vw - 730px);
    animation-name: reveal-plane-mobile;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-won-prize .prize-img img,
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-lost .prize-img img {
    width: 730px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text {
    top: 184px;
    width: 379px;
    left: calc(50% - 189.5px);
    animation-name: reveal-content-mobile;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text:before {
    color: transparent;
    font-size: 0;
    overflow: hidden;
    text-indent: -200vw;
    display: inline-block;
    background-image: url("../img/ui/custom/illustr-reveal-plane-mobile.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: left top;
    aspect-ratio: 461 /  534;
    width: 461px;
    height: 534px;
    max-width: 461px;
    max-height: 534px;
    left: calc(50% - 220px);
    top: -154px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:has(strong) strong {
    margin: 0 auto;
    padding: 16px 23px;
    font-size: 1.49rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:not(:has(strong)):not(:has(em)) {
    margin: 30px 20px 0 20px;
    line-height: 1.238;
    font-size: 1.1rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:not(:has(strong)):not(:has(em)):after {
    left: calc(50% - 30px);
    top: -207px;
    width: 99px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:not(:has(strong)):not(:has(em)):before {
    left: calc(50% + 68px);
    top: 144px;
    width: 81px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:has(em) {
    left: calc(50% - 159px);
    right: auto;
    top: 534px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:has(em) em {
    font-size: 1.25rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:has(em) em a {
    left: calc(100% + 8px);
    top: -19px;
    width: 65px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text {
    top: 84px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:not(:has(strong)):not(:has(em)) {
    font-size: 1.5rem;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:not(:has(strong)):not(:has(em)):before {
    left: calc(50% + 88px);
    top: -69px;
  }
  body.model-b #g > #g-ctx .ctx-wrap > .ctx#ctx-reveal.ctx-reveal-lost .ctx-reveal-result .ctx-reveal-result-wrap .ctx-reveal-result-text p:not(:has(strong)):not(:has(em)):after {
    left: calc(50% - 170px);
    top: 105px;
  }
}
@-moz-keyframes reveal-plane-mobile {
  0% {
    margin-left: calc(50% - 50vw - 730px);
    transform: none;
  }
  20% {
    transform: rotate(0.5deg);
  }
  40% {
    margin-left: 357px;
    transform: rotate(-0.5deg);
  }
  60% {
    margin-left: 357px;
    transform: rotate(0.5deg);
  }
  100% {
    margin-left: calc(50% + 50vw);
    transform: none;
  }
}
@-webkit-keyframes reveal-plane-mobile {
  0% {
    margin-left: calc(50% - 50vw - 730px);
    transform: none;
  }
  20% {
    transform: rotate(0.5deg);
  }
  40% {
    margin-left: 357px;
    transform: rotate(-0.5deg);
  }
  60% {
    margin-left: 357px;
    transform: rotate(0.5deg);
  }
  100% {
    margin-left: calc(50% + 50vw);
    transform: none;
  }
}
@-o-keyframes reveal-plane-mobile {
  0% {
    margin-left: calc(50% - 50vw - 730px);
    transform: none;
  }
  20% {
    transform: rotate(0.5deg);
  }
  40% {
    margin-left: 357px;
    transform: rotate(-0.5deg);
  }
  60% {
    margin-left: 357px;
    transform: rotate(0.5deg);
  }
  100% {
    margin-left: calc(50% + 50vw);
    transform: none;
  }
}
@keyframes reveal-plane-mobile {
  0% {
    margin-left: calc(50% - 50vw - 730px);
    transform: none;
  }
  20% {
    transform: rotate(0.5deg);
  }
  40% {
    margin-left: 357px;
    transform: rotate(-0.5deg);
  }
  60% {
    margin-left: 357px;
    transform: rotate(0.5deg);
  }
  100% {
    margin-left: calc(50% + 50vw);
    transform: none;
  }
}
@-moz-keyframes reveal-cloud-mobile {
  0% {
    left: calc(50% - 224px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: calc(50% - 64px);
    opacity: 0;
  }
}
@-webkit-keyframes reveal-cloud-mobile {
  0% {
    left: calc(50% - 224px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: calc(50% - 64px);
    opacity: 0;
  }
}
@-o-keyframes reveal-cloud-mobile {
  0% {
    left: calc(50% - 224px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: calc(50% - 64px);
    opacity: 0;
  }
}
@keyframes reveal-cloud-mobile {
  0% {
    left: calc(50% - 224px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: calc(50% - 64px);
    opacity: 0;
  }
}
@-moz-keyframes reveal-cloud-sun-mobile {
  0% {
    right: calc(50% - 258px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    right: calc(50% - 98px);
    opacity: 0;
  }
}
@-webkit-keyframes reveal-cloud-sun-mobile {
  0% {
    right: calc(50% - 258px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    right: calc(50% - 98px);
    opacity: 0;
  }
}
@-o-keyframes reveal-cloud-sun-mobile {
  0% {
    right: calc(50% - 258px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    right: calc(50% - 98px);
    opacity: 0;
  }
}
@keyframes reveal-cloud-sun-mobile {
  0% {
    right: calc(50% - 258px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    right: calc(50% - 98px);
    opacity: 0;
  }
}
@-moz-keyframes reveal-content-mobile {
  0% {
    opacity: 0;
  }
  99.9% {
    opacity: 1;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    pointer-events: all;
  }
}
@-webkit-keyframes reveal-content-mobile {
  0% {
    opacity: 0;
  }
  99.9% {
    opacity: 1;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    pointer-events: all;
  }
}
@-o-keyframes reveal-content-mobile {
  0% {
    opacity: 0;
  }
  99.9% {
    opacity: 1;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    pointer-events: all;
  }
}
@keyframes reveal-content-mobile {
  0% {
    opacity: 0;
  }
  99.9% {
    opacity: 1;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    pointer-events: all;
  }
}
