/* Timer Query
--------------------*/
@media screen {
  #countdown{
    display: flex;
    margin: auto;
    width: 90%;
    justify-content: center;
  }
  
  #countdown > div{
    width: 50px;
    margin: auto;
  }
  
  #countdown .wrapper {
    display: flex; 
    flex-direction: column;
    text-align: center;
    justify-items: center;
    align-items: center;
  }

  .time {
    font-size: 4rem;
    line-height: 1;
    color: #000;
  }

  .label {
    font-size: 1rem;
    color: #999;
  }
  
}

/* Mobile-landscape (and larger) lansacape */
@media only screen and (min-width: 480px) {
}


/* min-width:768px Tablet-portrait (and larger) */
@media only screen and (min-width: 768px) {
  #countdown{
    width: 50%;
  }
}


/* Tablet-landscape (and larger) for width 992px */
@media only screen and (min-width: 992px) {
  #countdown{
    width: 40%;
  }
}

/* min-width:1100 */
@media only screen and (min-width:1100px) {
}

/* min-width:1300 Laptops (and larger) for width 1300px */
@media only screen and (min-width:1300px) {
}
/* Timer ends
--------------------*/



/* Prize Query
--------------------*/
@media screen {
  .prize input[type="radio"] {
    left: auto;
  }
}

/* Mobile-landscape (and larger) lansacape */
@media only screen and (min-width: 480px) {
}


/* min-width:768px Tablet-portrait (and larger) */
@media only screen and (min-width: 768px) {
  .prizes-box {
    display: flex;
    justify-content: center;
    background: #efefef;
    border-radius: 0.25rem;
    padding: 1rem;
    margin-top: 1rem;
  }

  .prizes-box > div.prize {
    width: 33%;
    padding: 1rem;
    box-sizing: border-box;
  }


  .even_1 .prizes-box > div.prize {
    width: 45%;
  }

  .prize p {
    line-height: 1.4;
  }

  .radio_container div.prize label:before {
    margin-top: 0.1rem;
  }
}


/* Tablet-landscape (and larger) for width 992px */
@media only screen and (min-width: 992px) {

}

/* min-width:1100 */
@media only screen and (min-width:1100px) {
}

/* min-width:1300 Laptops (and larger) for width 1300px */
@media only screen and (min-width:1300px) {
}
/* Prize ends
--------------------*/