* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --blue: #001866;
  --accent: #00a0df;
  --error: rgb(194, 12, 12);
  --white: #ffffff;
}

.hidden {
  display: none !important;
}

.not-visible {
  visibility: hidden !important;
}

.error {
  border: 2px solid var(--error) !important;
}

.error-text {
  color: var(--error) !important;
}

.error-text a {
  color: var(--error) !important;
}

input {
  accent-color: var(--accent);
}

body {
  font-family: "Roboto", sans-serif !important;
  color: #fff !important;
  font-size: 14px !important;
  background: var(--blue) !important;
  position: relative;
}

a img.arrow-back {
  height: 10px;
  width: auto;
  margin-right: 3px;
}

a.link {
  color: #fff;
  text-decoration: none;
}

a.link:hover {
  text-decoration: underline;
}

#login-form a.link {
  margin-left: 8px;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--blue);
  -webkit-box-shadow: 0 0 20px 5px rgba(19, 19, 19, 0.342);
          box-shadow: 0 0 20px 5px rgba(19, 19, 19, 0.342);
}

footer a {
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
}

footer .menu-link.active {
  color: var(--accent);
  font-weight: bold;
}

.footer-menu {
  display: none;
}

bottompage a {
  font-size: 15px;
  color: var(--white);
}

bottompage .disclaimer {
  font-size: 13px;
  color: var(--white);
}

.fixed-navigation {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

#hamburger-btn {
  width: 25px;
  cursor: pointer;
  display: table;
  margin: 15px auto;
  border: 0;
  background-color: transparent;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

#hamburger-btn span {
  display: block;
  margin: 5px 0;
  background-color: #FFF;
  -webkit-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transition: all .3s ease-in-out;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  height: 2px;
}

#hamburger-btn.opened span:nth-child(1) {
  -webkit-transform: rotateZ(45deg) translateY(6px);
  transform: rotateZ(45deg) translateY(6px);
}

#hamburger-btn.opened span:nth-child(2) {
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
  opacity: 0;
}

#hamburger-btn.opened span:nth-child(3) {
  -webkit-transform: rotateZ(-45deg) translate3d(4px, -10px, 0);
  transform: rotateZ(-45deg) translate3d(4px, -10px, 0);
}

sidebar {
  background-color: #010936bf;
  display: block;
  height: 70px;
}

sidebar .center-container {
  text-align: center;
}

sidebar .btn-sidebar {
  width: 70px;
  height: 70px;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  margin: auto;
  display: inline-block;
}

sidebar .btn-sidebar.dashboard {
  position: absolute;
  top: 43px;
  left: 0;
  right: 0;
  display: block;
  background-image: url(/img/dashboard-off.png);
  border: 1px solid white;
  border-radius: 10px;
}

sidebar .btn-sidebar.dashboard.active {
  background-image: url(/img/dashboard-on.png);
  border: 1px solid var(--accent);
}

sidebar .btn-sidebar.challenge {
  background-image: url(/img/challenge-off.png);
}

sidebar .btn-sidebar.challenge.active {
  background-image: url(/img/challenge-on.png);
}

sidebar .btn-sidebar.team {
  background-image: url(/img/team-off.png);
}

sidebar .btn-sidebar.team.active {
  background-image: url(/img/team-on.png);
}

sidebar .btn-sidebar.calendar {
  background-image: url(/img/calendar-off.png);
}

sidebar .btn-sidebar.calendar.active {
  background-image: url(/img/calendar-on.png);
}

sidebar .btn-sidebar.download {
  background-image: url(/img/download-off.png);
}

sidebar .btn-sidebar.download.active {
  background-image: url(/img/download-on.png);
}

sidebar .btn-sidebar.classification {
  background-image: url(/img/classification-off.png);
}

sidebar .btn-sidebar.classification.active {
  background-image: url(/img/classification-on.png);
}

footer-game {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--blue);
}

footer-game a {
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
}

footer-game .menu-link.active {
  color: var(--accent);
  font-weight: bold;
}

footer-game .logo.footer-game {
  width: 80px;
}

p {
  margin-bottom: 1em;
  line-height: 1.3em;
}

p.no-mb {
  margin-bottom: 0;
}

.container-full {
  position: relative;
  min-height: 100vh;
  max-width: 100vw;
  padding: 0 20px;
  padding-bottom: 120px;
  overflow: hidden;
}

img.bussola-bg {
  width: 1400px;
  max-width: 200vw;
  position: absolute;
  bottom: -80px;
  left: -100px;
  z-index: -1;
}

img.iceberg-bg {
  width: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.img-full-container {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  overflow-y: visible;
  pointer-events: none;
}

.arrow-down {
  text-align: center;
}

.arrow-down img {
  height: 50px;
  width: auto;
  margin-bottom: 30px;
  margin-top: calc(30px - 1em);
}

.container-box {
  max-width: 700px;
  margin: 0 auto;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 60px;
  color: #fff;
}

header a {
  color: #fff;
  text-decoration: none;
}

header .logo img {
  width: 65px;
  height: auto;
}

.logo-jumpup {
  margin: 50px auto;
  text-align: center;
  margin-top: 100px;
}

.logo-jumpup img {
  width: 360px;
  max-width: 80%;
  height: auto;
}

.logo-jumpup.footer-game {
  text-align: center;
  margin: 0px auto;
}

.logo-jumpup.footer-game img {
  width: 190px;
  max-width: 80%;
  height: auto;
}

.intro {
  text-align: center;
}

.intro-mobile {
  display: none;
}

.container-dashboard,
.container-challenge,
.container-download,
.container-calendar,
.container-ranking,
.container-teamprofile,
.container-game {
  max-width: 80vw;
  left: 0;
  right: 0;
  margin: auto;
}

.container-teamprofile {
  max-width: 90vw;
}

.box-item, .box-challenge {
  border: 1px solid #ffffff;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}

.box-item .title, .box-challenge .title {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 25px;
}

.box-challenge {
  height: 310px;
  background-image: url(/img/bg-challenge.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.box-item-container {
  position: relative;
  cursor: pointer;
}

.box-item-container.disabled {
  cursor: none;
  pointer-events: none;
  opacity: 0.3;
}

.box-item {
  background: black;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0) 0%, #010936 100%);
  position: relative;
  min-height: 236px;
  left: 0;
  right: 0;
  margin: auto;
}

.box-challenge::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  margin: auto;
  width: 140px;
  height: 3px;
  background-color: var(--accent);
}

.box-item-container::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  margin: auto;
  width: 140px;
  height: 3px;
  background-color: var(--accent);
  z-index: 1;
}

.box-challenge::after, .box-item-container::after {
  content: 'VIEW MORE';
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
  width: 140px;
  height: 30px;
  background-color: var(--accent);
  color: #fff;
  border-radius: 25px;
  text-align: center;
  line-height: 30px;
}

.container-challenge .box-item-container::after {
  content: 'PLAY NOW';
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
  width: 140px;
  height: 30px;
  background-color: var(--accent);
  color: #fff;
  border-radius: 25px;
  text-align: center;
  line-height: 30px;
}

.box-item .img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.box-item .img.team {
  background-image: url(/img/teamwork.png);
}

.box-item .img.calendar {
  background-image: url(/img/calendar.png);
}

.box-item .img.download {
  background-image: url(/img/download.png);
}

.box-item .img.ranking {
  background-image: url(/img/ranking.png);
}

.box-challenge .title {
  top: 40px;
  font-size: 32px;
}

.box-item .img.anagram {
  background-image: url(/img/logo-anagram.png);
}

.box-item .img.rebus {
  background-image: url(/img/logo-rebus.png);
}

.box-item .img.crossword {
  background-image: url(/img/logo-crossword.png);
}

.box-item .img.dcup {
  background-image: url(/img/logo-dcup.png);
}

.box-calendar-item {
  background-image: url(/img/calendar-border-left.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 15px auto;
}

.box-calendar-item .box-date {
  left: 0;
  right: 0;
  margin: auto;
  height: 20px;
  background-color: var(--accent);
  color: #fff;
  border-radius: 25px;
  text-align: center;
  line-height: 20px;
  z-index: 1;
  font-size: 15px;
}

.box-calendar-item .box-title {
  left: 0;
  right: 0;
  margin: auto;
  margin-top: -10px;
  width: 320px;
  background-color: #010936bf;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;

  border: 1px solid #00FFFF;
}

.box-calendar-item.last {
  background-image: url(/img/calendar-border-left-circle.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 15px auto;
}

.container-ranking {
  max-width: 90vw !important;
}

.container-ranking .team-box {
  background-color: #010936bf;
  border-radius: 10px;
}

.container-ranking .team-box .position {
  font-size: 20px;
  font-weight: bold;
  color: var(--accent);
}

.container-ranking .team-box .name {
  font-size: 14px;
  border-right: 1px solid var(--white);
}

.container-ranking .team-box .bg-team {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 70px;
  height: 70px;
  margin-top: -30px;
  margin-bottom: -30px;
}

.container-ranking .team-box .bg-team-1 {
  background-image: url(/img/logo-plumber.png);
}

.container-ranking .team-box .bg-team-2 {
  background-image: url(/img/logo-wolf.png);
}

.container-ranking .team-box .bg-team-3 {
  background-image: url(/img/logo-stoat.png);
  margin-left: 0px;
  margin-right: 0px;
}

.container-ranking .team-box .bg-team-4 {
  background-image: url(/img/logo-man.png);
}

.container-ranking .team-box .bg-team-5 {
  background-image: url(/img/logo-bear.png);
}

.container-ranking .team-box .coin {
  width: 45px;
}

.container-teamprofile .team-header {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 190px;
  z-index: 1;
  position: relative;
  cursor: pointer;
}

.container-teamprofile .bg-team-1 {
  background-image: url(/img/logo-team-plumber.png);
}

.container-teamprofile .bg-team-2 {
  background-image: url(/img/logo-team-wolf.png);
}

.container-teamprofile .bg-team-3 {
  background-image: url(/img/logo-team-stoat.png);
  left: -23px;
}


.container-teamprofile .bg-team-4 {
  background-image: url(/img/logo-team-man.png);
}

.container-teamprofile .bg-team-5 {
  background-image: url(/img/logo-team-bear.png);
}

.container-teamprofile .team-body {
  background-color: var(--blue);
  padding-top: 105px;
  margin-top: -100px;
  border-radius: 10px;
  font-size: 14px;
}

.container-teamprofile .team-body .team-user-info.border-right-white {
  border-right: none;
}

.container-teamprofile .team-body .list-users {
  display: none;
}

.container-teamprofile .team-body.team-1 {
  border: 1px solid #FFDA05;
}

.container-teamprofile .team-body.team-1 .email {
  color: #FFDA05;
}

.container-teamprofile .team-body.team-1 .border-tutor {
  border-left: 20px solid #FFDA05;
  border-right: 20px solid #FFDA05;
}

.container-teamprofile .team-body.team-2 {
  border: 1px solid #C72E69;
}

.container-teamprofile .team-body.team-2 .email {
  color: #C72E69;
}

.container-teamprofile .team-body.team-2 .border-tutor {
  border-left: 20px solid #C72E69;
  border-right: 20px solid #C72E69;
}

.container-teamprofile .team-body.team-3 {
  border: 1px solid #41B607;
}

.container-teamprofile .team-body.team-3 .email {
  color: #41B607;
}

.container-teamprofile .team-body.team-3 .border-tutor {
  border-left: 20px solid #41B607;
  border-right: 20px solid #41B607;
}

.container-teamprofile .team-body.team-4 {
  border: 1px solid #48CEF5;
}

.container-teamprofile .team-body.team-4 .email {
  color: #48CEF5;
}

.container-teamprofile .team-body.team-4 .border-tutor {
  border-left: 20px solid #48CEF5;
  border-right: 20px solid #48CEF5;
}

.container-teamprofile .team-body.team-5 {
  border: 1px solid #FF5F04;
}

.container-teamprofile .team-body.team-5 .email {
  color: #FF5F04;
}

.container-teamprofile .team-body.team-5 .border-tutor {
  border-left: 20px solid #FF5F04;
  border-right: 20px solid #FF5F04;
}

.container-game input {
  font-size: 18px;
}

.container-game #img-game-rebus {
  max-height: 250px;
}

.container-game #btn-play-game {
  display: none;
}

.container-game .game-message {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  display: none;
}

.container-game #intro {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.container-game #game {
  display: none;
}

.container-game #popup-result {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 85%;
  display: none;
  background-color: #010936ee;
  border: 1px solid #fff;
}

.container-game #popup-result .message-box .text {
  font-size: 22px;
  text-align: center;
}

.container-game #popup-result .button-box .popup-btn {
  left: 0;
  right: 0;
  padding: 10px 40px;
  margin: auto;
  background-color: var(--accent);
  color: #fff;
  border-radius: 25px;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  cursor: pointer;
}

.container-game .wrong-answer {
  color: #ff0000;
  font-size: 16px;
  font-weight: bold;
  display: none;
}

.container-game.anagram {
  max-width: 95vw;
}

.container-game.anagram .anagram-char {
  color: #000000;
  background-color: #ffffff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  border: 2px solid grey;
  border-radius: 10px;
  cursor: pointer;
}

.container-game.anagram .anagram-char.source {
  pointer-events: all;
}

.container-game.anagram .anagram-char.source.used {
  pointer-events: none;
}

.container-game.anagram .anagram-char p {
  font-size: 18px;
  line-height: inherit;
}

.container-game.anagram #anagram-description {
  font-size: 18px;
}

.container-game.anagram .anagram-char.answer {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--white);
  cursor: default;
}

.container-game.anagram .anagram-char.spacer {
  display: none;
}

.container-game.anagram #anagram-source > .col-auto, .container-game.anagram #anagram-answer > .col-auto {
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}

#rotate-device {
  display: none;
  font-size: 22px;
  font-weight: bold;
  z-index: 1;
  background-color: var(--blue);
}

.form {
  width: 460px;
  max-width: 85vw;
  margin: 0 auto;
}

.form-btn {
  min-width: 150px;
  padding: 8px 30px;
  border: 1px solid var(--accent);
  border-radius: 500px;
  background-color: transparent;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  margin: 20px auto;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.form-title {
  text-align: center;
  color: var(--accent);
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 30px;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 15px;
}

.form-item {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  margin: 0 5px;
}

.form-item > label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  padding-left: 2px;
}

.form-item > label small {
  font-style: italic;
  display: inline-block;
  margin-top: 5px;
}

.form-item > label.terms {
  display: inline-block;
  margin-top: 3px;
  margin-left: 10px;
  font-size: 11px;
}

.form-item > label.terms a {
  color: #fff;
}

.form-item#use-image-section p {
  font-size: 11px;
  max-width: 50%;
}

.form-item > input,
.form-item > select,
.form-item textarea {
  font-family: "Roboto", sans-serif;
  width: 100%;
  height: 24px;
  border: none;
  border-radius: 4px;
  padding: 0 5px;
  font-size: 16px;
  color: #222;
}

.form-item > input:focus,
.form-item > select:focus,
.form-item textarea:focus {
  outline: none;
}

.form-item > input#terms,
.form-item > select#terms,
.form-item textarea#terms {
  display: inline-block;
  width: auto;
}

.form-item input#fiscal-code {
  text-transform: uppercase;
}

.form-item .radio-group {
  margin-top: 10px;
}

.form-item .radio-group label {
  margin-right: 10px;
}

.form-item .radio-group.choose-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form-item .radio-group.choose-image img {
  width: 70px;
  height: auto;
}

.form-item .radio-group.choose-image label {
  margin: 0;
}

.form-item .radio-group.choose-image > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.form-item .radio-group.choose-image > div > input,
.form-item .radio-group.choose-image > div > label {
  margin: 5px 0;
}

.form-item .radio-group.choose-image > div > img {
  display: block;
  margin-bottom: 10px;
  margin-top: 20px;
}

.form-item.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-item.flex p.required-text {
  font-size: 11px;
  text-align: right;
  min-width: 80px;
  margin-left: 50px;
}

.form-item.flex.step-group {
  font-size: 12px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-item.flex.step-group > .required-text {
  margin-left: 0;
}

.form-game .form-question {
  text-align: center;
  margin-bottom: 20px;
}

.form-game .required-text {
  visibility: hidden;
}

textarea {
  height: 100px !important;
  resize: none;
  padding-top: 5px !important;
  cursor: auto;
}

textarea::-webkit-input-placeholder {
  color: var(--blue);
  font-style: italic;
  font-size: 14px;
}

textarea:-ms-input-placeholder {
  color: var(--blue);
  font-style: italic;
  font-size: 14px;
}

textarea::-ms-input-placeholder {
  color: var(--blue);
  font-style: italic;
  font-size: 14px;
}

textarea::placeholder {
  color: var(--blue);
  font-style: italic;
  font-size: 14px;
}

/* Works on Firefox */
textarea {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

/* Works on Chrome, Edge, and Safari */
textarea::-webkit-scrollbar {
  width: 8px;
}

textarea::-webkit-scrollbar-track {
  background: transparent;
}

textarea::-webkit-scrollbar-thumb {
  background-color: var(--accent);
  border-radius: 20px;
  border: 3px solid var(--accent);
}

.message p {
  text-align: center;
  font-size: 18px;
  color: var(--accent);
  font-weight: bold;
}

#profile-2 .error-uploaded {
  border: 1px solid var(--error) !important;
}

#profile-2 .uploader-box {
  width: 100%;
  position: relative;
  max-width: 100%;
}

#profile-2 .qq-uploader {
  min-height: 80px;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#profile-2 .qq-uploader-selector {
  background-color: transparent;
}

#profile-2 .qq-upload-button {
  background-color: transparent;
  border: 1px solid var(--accent);
  border-radius: 5px;
  color: var(--accent);
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 20px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  margin-bottom: 0;
  position: absolute !important;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-right: 30px;
}

#profile-2 .qq-upload-button:hover {
  background-color: var(--accent);
  color: #fff;
}

#profile-2 .qq-uploader:before {
  top: 50%;
  width: auto;
  left: 0;
  margin-left: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#profile-2 .qq-upload-drop-area {
  background-color: transparent;
  border: none;
}

#profile-2 .qq-upload-drop-area-active {
  background-color: rgba(255, 255, 255, 0.1);
}

#profile-2 .qq-upload-list {
  max-width: 60%;
}

#profile-2 .qq-upload-list button {
  background-color: rgba(255, 255, 255, 0.3);
  color: var(--accent);
  padding: 4px 10px;
  border: 0;
  border-radius: 5px;
  margin-bottom: 3px;
}

#profile-2 .qq-upload-list li {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 5px;
  padding: 3px 8px;
  overflow: hidden;
  font-size: 11px;
}

#profile-2 .qq-upload-list li span {
  font-size: 11px;
}

#profile-2 .qq-progress-bar {
  background-color: var(--accent);
}

#profile-2 .qq-upload-status-text {
  color: var(--error);
}

#profile-2 .qq-alert-dialog-selector {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 20px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.85);
  font-weight: bold;
  max-width: 90vw;
}

#terms p {
  margin-bottom: 10px;
}

#terms h4 {
  margin-bottom: 10px;
}

#terms hr {
  margin: 30px 0;
}

#terms h5 {
  margin-bottom: 2px;
  margin-top: 40px;
}

#terms ul {
  list-style-position: outside;
  margin-bottom: 5px;
}

#terms ul li {
  margin-left: 1em;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.page-title {
  font-size: 29px;
}

.btn-download.title {
  color: var(--accent);
  font-weight: bold;
  font-size: 18px;
}

.btn-download.image {
  border-bottom: 1px solid var(--white);
}

@media screen and (max-width: 767px) {
  .intro-desktop {
    display: none;
  }
  .intro-mobile {
    display: block;
  }
  .img-full-container.iceberg {
    overflow-x: hidden;
  }
  .img-full-container.iceberg img.iceberg-bg {
    width: 200%;
  }
}

@media screen and (max-width: 580px) {
  .choose-image {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}

@media screen and (max-width: 340px) {
  .form-item input,
  .form-item select {
    font-size: 14px;
  }
}

@media (max-width: 575px) and (orientation: portrait) {
  .container-game.anagram {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  #rotate-device {
    display: block !important;
    text-align: center;
    top: 20px;
    left: 0;
    right: 0;
    position: fixed;
  }
}

@media (min-width: 576px) and (orientation: portrait) {
  #rotate-device {
    display: none !important;
  }
}

@media (orientation: landscape) {
  #rotate-device {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .box-challenge {
    height: 520px;
  }
  sidebar {
    position: fixed;
    width: 142px;
    height: 100vh;
    left: auto;
    top: 0;
    right: 0;
    bottom: 0;
  }
  sidebar .btn-sidebar {
    width: 70px;
    height: 70px;
    display: block;
  }
  footer, footer-game {
    position: fixed;
    height: 80px;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .footer-menu {
    display: block;
  }
  .fixed-navigation {
    position: relative;
  }
  .container-dashboard,
  .container-challenge {
    max-width: 60vw;
  }
  .container-teamprofile {
    max-width: 70vw;
  }
  .container-teamprofile .team-header {
    height: 270px;
  }
  .container-teamprofile .team-body {
    padding-top: 150px;
    margin-top: -135px;
    font-size: 18px;
  }
  .container-teamprofile .team-body .team-user-info.border-right-white {
    border-right: 1px solid var(--white);
  }
  .container-ranking {
    max-width: 50vw !important;
  }
  .container-ranking .team-box .position {
    font-size: 25px;
  }
  .container-ranking .team-box .name {
    font-size: 19px;
  }
  .container-ranking .team-box .bg-team {
    width: 105px;
    height: 90px;
    margin-top: -30px;
    margin-bottom: -30px;
  }
  .container-ranking .team-box .bg-team-3 {
    margin-left: -10px;
    margin-right: -10px;
  }
  .container-ranking .team-box .coin {
    width: 55px;
  }
  .container-game #popup-result {
    width: 50%;
  }
  .container-game.anagram .anagram-char {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
  .container-game.anagram .anagram-char p {
    font-size: 20px;
  }
  .container-game.anagram #anagram-description {
    font-size: 20px;
  }
  .container-game.anagram #anagram-source > .col-auto, .container-game.anagram #anagram-answer > .col-auto {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
  }
}

@media (min-width: 1200px) {
  .container-dashboard {
    max-width: 80vw;
  }
  .container-challenge {
    max-width: 70vw;
  }


}

@media (min-width: 1400px) {
  .container-ranking {
    max-width: 30vw !important;
  }
  sidebar .btn-sidebar {
    width: 80px;
    height: 80px;
    display: block;
  }
}

.countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  position: relative;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 1.5rem;
}

.countdown .part {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 0.5rem 0.5rem 0.5em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
      flex-grow: 0;
}

.countdown .digit {
  display: block;
  position: relative;
  padding: 0;
  line-height: 1;
  overflow: hidden;
}

.countdown .digit .digit-placeholder {
  visibility: hidden;
}

.countdown .digit .digit-value {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font: inherit;
}

.countdown .part + .part::before {
  top: 10px;
  left: 0;
  content: "";
  display: block;
  position: absolute;
  height: calc(100% - 8px);
  width: 1px;
  background: radial-gradient(at left, #dfdfdf, transparent);
}

.countdown .part.d-none + .part::before {
  display: none;
}

.countdown .part.no-divider::before {
  display: none;
}

.countdown .part.days::after,
.countdown .part.hours::after,
.countdown .part.minutes::after,
.countdown .part.seconds::after {
  position: absolute;
  content: attr(data-label);
  text-align: center;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 0.3em;
  color: inherit;
  background-color: inherit;
  z-index: 1;
}

.countdown .days {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
      order: 1;
}

.countdown .hours {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
      order: 2;
}

.countdown .minutes {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
      order: 3;
}

.countdown .seconds {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
      order: 4;
}

.countdown .part.days, .countdown .part.hours {
  display: none;
}

.countdown .part.minutes, .countdown .part.seconds {
  font-size: 91px;
}

.countdown .part.minutes::before {
  display: none;
}

.countdown .part.seconds::before {
  content: ':';
  top: 2px;
  left: -16px;
  background: none;
}
/*# sourceMappingURL=style.css.map */


/* ANDREA */
.container-game.crossword{
  max-width: 100%;
}
.logo-crossword{
  height: auto;
}
.logo-crossword.big{
  max-width: 350px;
  margin-bottom: 30px;
}
.logo-crossword.small{
  max-width: 200px;
  margin-bottom: 20px;
}
.crossword-definitions{
  margin-bottom: 40px;
}
.crossword-definitions ul{
  list-style: none;
}
.crossword-definitions .single-definition{
  font-size: 18px;
  margin-bottom: 20px;
  cursor: pointer;
}
.crossword-definitions li.selected{
  color: #FBB81A;
  font-weight: bold;
}
.crossword-definitions li.answered{
  pointer-events: none;
  color: rgba(255, 255, 255, 0.5);
}

#game-question-answer-crossword::placeholder{
  text-transform: none;
}
#crossword-board{
  display: table;
  margin-left: auto;
  margin-right: auto;
}
#crossword-board .cell{ 
  display: inline-block;
  font-size: 18px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  vertical-align: middle;
  margin-bottom: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  position: relative;
}
#crossword-board .cell.letter{
  background-color: rgb(255,255,255);
  border: 2px solid #001866;
  color: transparent;
  text-align: center;
  transition: all .2s ease-in-out;
}
#crossword-board .cell.letter.space{
  background-color: #9a9a9a;
}
#crossword-board .letter.selected{
  border: 2px solid #00B0FB;
}
#crossword-board .letter[iletter1='0']:before{
  content: attr(position1);
  color: #001866;
  position: absolute;
  left: 2px;
  top: 2px;
  line-height: 1;
  font-size: 12px;
  font-weight: bold;
}
#crossword-board .letter[iletter1='0'][iletter2='0']:before{
  content: attr(position1)','attr(position2);
  color: #001866;
  position: absolute;
  left: 2px;
  top: 2px;
  line-height: 1;
  font-size: 11px;
  font-weight: bold;
}
#crossword-board .cell.letter.answered{
  color: #001866;
}

@keyframes correctanimation {
  0%{
    border-color: #001866;
  }
  50%{
    border-color: #41B607;
  }
  100%{
    border-color: #001866;
  }
}

@keyframes wronganimation {
  0%{
    border-color: #00B0FB;
  }
  50%{
    border-color: #ff0000;
  }
  100%{
    border-color: #00B0FB;
  }
}

#crossword-board .cell.letter.correct{
  animation: correctanimation 0.5s 2 ease-in-out forwards;
}
#crossword-board .cell.letter.wrong{
  animation: wronganimation 0.5s 2 ease-in-out forwards;
}

@media (min-width: 1024px) {
  #crossword-board{
    zoom: 0.5;
  }
}
@media (min-width: 1200px) {
  #crossword-board{
    zoom: 0.6;
  }
}
@media (min-width: 1500px) {
  #crossword-board{
    zoom: 0.8;
  }
}
@media (min-width: 1800px) {
  #crossword-board{
    zoom: 1;
  }
}