@font-face {
  font-family: 'FS Joey';
  src: url('../fonts/FSJoey-Heavy.woff2') format('woff2'),
    url('../fonts/FSJoey-Heavy.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Museo Sans 300';
  src: url('../fonts/MuseoSans-300.woff2') format('woff2'),
    url('../fonts/MuseoSans-300.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'FV Almelo';
  src: url('../fonts/MuseoSans-300.woff2') format('woff2'),
    url('../fonts/MuseoSans-300.woff') format('woff');
  /* font-family: 'FV Almelo';
  src: url('../fonts/fv-almelo/fv_almelo-webfont.woff') format('woff'); */
  font-weight: 300;
  font-style: normal;
}



body {
  /* font-family: "Roboto 300" !important; */
  font-family: 'Roboto', sans-serif;
  padding-bottom: 70px;
  background-color: #dadee6;
}


.navbar-brand {
  font-family: "FV Almelo" !important;
  font-size: 1.75rem !important;
}

.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
  color:#fff
}



.prize-item {
  color: #fff;
  font-family: "FS Joey";
  font-size: 1.25rem;
}

.btn-yellow {
  background: #FEF14D;
  color: #6E2997;
}


h1 {
  font-family: "FV Almelo" !important;
  font-size: 2rem !important;
}

.big-title {
  font-size: 3rem !important;
}

.blue{
  color:#353FDE;
}


h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

a{
  color:#111;
}
.text-primary {
  color: #2C3BF5 !important;
}

.text-info {
  color: #00C9A0 !important;
}

.text-yellow {
  color: #ffef4c;
}

.info-yellow {
  background-color:#FFEF4C;
  padding:10px;
  border-radius:10px;
  color:#763995
}

.bg-dark-app {
  background-color: #002CBA !important;
}

.title-light {
  color: #fff;
  font-family: "FS Joey";
  font-size: 1.5rem;
}



/*======== Signin ========= */

body.signin {
  background-color: #fff;
  text-align: center;
  padding-top: 40px !important;
  color: #212529 !important;
  /* background-image: url("../images/start.png");
  background-position-y: top;
  background-position-x: center;
  background-repeat: no-repeat;
  background-size: 100%; */
}

.signin .input-password {
  width: 100%;
  height: 50px;
  border-radius: 4px;
  background-color: #fff;
  border: solid 1px #0028BB;
  color: #0028BB;
  text-align: center
}

.signin a{
  color:#0028BB;
}

.signin button{
    background:  #0028BB!important;
    color: #fff;  
}

.signin button:hover{
  background:  #001e8b;
  color: #fff;  
}


/*======== trapezoid ======== */
.trapezoid {
  text-align: left;
  position: relative;
  border-right: 0px solid transparent;
  border-top: 0px solid #ced6e0;
  border-left: 0px solid transparent;
  box-sizing: content-box;
  margin-top: 3px;
  padding:5px;
  background-color: #00D0AF;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  height:18px;
  color:#fff;

}

.trapezoid.passed {
  background-color: #6ab04c;
}

.trapezoid.next {
  background-color: #002CBA;
}

.trapezoid span {
  position: absolute;
  color: #fff;
  width: 100%;
  left: 0%;
  font-size: .8rem;
  padding-left:20px;

}

.trapezoid.passed span,
.trapezoid.next span {
  color: #fff;

}


/*=========== Card ================ */


.question-card{
  background-color:none;
  
}
.correct-card{
  background-color:#6AB04C;
  color:#fff
}

.wrong-card{
  background-color:#ED4C67;
  color:#fff
}

.timeisup-card{
  background-color:#DC3545;
  color:#fff
}




/*======== Countdown ======== */
#countdown {
  position: relative;
  margin: auto;
  margin-top: 5px;
  height: 40px;
  width: 40px;
  text-align: center;
  background-image: url("../images/clock.png");
  background-repeat: no-repeat;
  color:#111;
  height: 60px;
  width: 80px;
}

#countdown-number {
  color: black;
  display: inline-block;
  line-height: 40px;
}

svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  transform: rotateY(-180deg) rotateZ(-90deg);
}

@keyframes countdown {
  from {
    stroke-dashoffset: 0px;
  }
  to {
    stroke-dashoffset: 113px;
  }
}



/*======== On screens that are 480px wide or less ========*/
@media screen and (max-width: 480px) {

  body {
    /* padding-top: 90px; */
    padding-bottom: 50px;
  }

  body.signin{
    padding-top: 10px !important;
    background-image: none !important;
  }

  .navbar-dark .navbar-nav{
    margin-top:20px;
  }


  .navbar-dark .navbar-nav .nav-link {
    border-bottom: solid 1px rgba(255, 255, 255, .3);
    color: #fff;
    padding-left: 10px;
  }

  .navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, .5);
    border-color: rgba(255, 255, 255, .2);
  }

  .nav-item.active {
    background-color: rgba(255, 255, 255, .2);
  }
}

/*======== On screens that are 992px wide or more ========*/
@media screen and (min-width: 992px) {

  body {
    /* padding-top: 90px; */
  }

  body.signin{
    padding-top: 0px;
    background-image: none;
  }


}