@font-face {
    font-family: 'CostaPtf-Bold';
    src: url('../fonts/CostaPtf-Bold.otf');
}
@font-face {
    font-family: 'CostaPtf-Regular';
    src: url('../fonts/CostaPtf-Regular.otf');
}
@font-face {
    font-family: 'Gilroy-ExtraBold';
    src: url('../fonts/Gilroy-ExtraBold.otf');
}
@font-face {
    font-family: 'Gilroy-Light';
    src: url('../fonts/Gilroy-Light.otf');
}
body {
    color: #fff;
    font-family: 'Gilroy-Light', sans-serif;
    padding: 0;
    margin: 0;
    background-color: #eee;
}
.fullscreen {
    width: 100vw;
    height: 100vh;
}
.fullscreen img {
    display:none;
}
.fullscreen .active {
    display: inherit;
}
.leave_screensaver {
    width: 100vw;
    height: 50vh;
    position: absolute;
    top: 0;
}
.external_site {
    width: 100vw;
    height: 50vh;
    position: absolute;
    bottom: 0;
}
.back_button {
    position: absolute;
    top: 5vh;
    left: 60vw;
    width: 30vw;
    height: 250px;
}
.questionsWrapper {
    position: absolute;
    top: 30vh;
    left: 9.5vh;
    width: 70vw;
}
.questionsWrapper h1 {
    margin: 0;
    padding: 2vh 0;
}
.option {
    font-size: 24px;
}
.option i {
    margin-left: 10px;
}
.get_results, .start_contest {
    position: absolute;
    bottom: 10vh;
    width: 400px;
    height: 100px;
    left: 12vw;
}
.start_contest {
    display: none;
}
.run_contest {
    position: absolute;
    bottom: 27vh;
    left: 32vw;
    width: 375px;
    height: 130px;
}
.giftsWrapper {
    position: absolute;
    width: 80vw;
    left: 10vw;
    top: 26vh;
}
.giftContainer {
    padding-top: 30px;
    padding-bottom: 30px;
}
.gift, .prize {
    border: 7px solid transparent;
    border-radius: 300px;
}
@keyframes rainbow {
    0% {
        filter: brightness(100%);
        border-color: transparent;
    }
    100% {
        filter: brightness(120%);
        border-color: #89cef7;
    }
}
.prizeContainer {
    text-align: center;
    position: absolute;
    top: 40vh;
    width: 100%;
}
.prize {
    filter: brightness(120%);
    border-color: #203262;
}
.prizeContainer h1 {
    margin-top: 2rem;
    font-family: 'Gilroy-ExtraBold', sans-serif;
    color: #203262;
}

/* Custom radio btn */
.checkbox label:after,
.radio label:after {
  content: '';
  display: table;
  clear: both;
}
.checkbox .cr,
.radio .cr {
  position: relative;
  display: inline-block;
  border: 1px solid #a9a9a9;
  border-radius: .25em;
  width: 1.3em;
  height: 1.3em;
  float: left;
  margin-right: .5em;
}
.radio .cr {
  border-radius: 50%;
}
.checkbox .cr .cr-icon,
.radio .cr .cr-icon {
  position: absolute;
  font-size: .8em;
  line-height: 0;
  top: 50%;
  left: 13%;
}
.radio .cr .cr-icon {
  margin-left: 0.04em;
}
.checkbox label input[type="checkbox"],
.radio label input[type="radio"] {
    display: none;
  }

  .checkbox label input[type="checkbox"]+.cr>.cr-icon,
  .radio label input[type="radio"]+.cr>.cr-icon {
    transform: scale(3);
    opacity: 0;
  }

  .checkbox label input[type="checkbox"]:checked+.cr>.cr-icon,
  .radio label input[type="radio"]:checked+.cr>.cr-icon {
    transform: scale(1) rotateZ(0deg);
    opacity: 1;
  }

  .checkbox label input[type="checkbox"]:disabled+.cr,
  .radio label input[type="radio"]:disabled+.cr {
    opacity: .5;
  }