/* login - genera; */

.divider:after,
.divider:before {
  content: "";
  flex: 1;
  height: 1px;
  background: #eee;
}
.h-custom {
  height: calc(100% - 73px);
}


/* home page */
.brand {
  height: 70px;
}
.page-title h3 {
  font-weight: 900;
  font-size: 2em;
}

.start_quiz {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.question_bank {
  display: flex;
}

.stop-watch-desktop {
  position: fixed;
  top: 50%;
  padding: 10px;
  border-radius: 1000px;
  z-index: 111;
  text-align: center;
  left: 0;
}

.radio-ans {
  cursor: pointer;
}

.submit_page {
  height: calc(100vh - 300px);
}
.submit_page .message {
  font-size: 20px;
}
.submit_page .score {
  font-size: 50px !important;
  margin: 0 0 30px;
}


.items_grid {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-gap: 20px;
}

.items_grid .item {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
}
.add_group_title {
  background: rgba(0, 0, 0, 0.6);
  z-index: 111;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.add_group_title .form-group {
  max-width: 400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
/* admin */
.question_answer {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 20px;
}
@media (max-width: 450px) {
  .h-custom {
    height: 100%;
  }

  
  .items_grid {
    display: grid;
    grid-template-columns: auto;
  }
}


@media (max-width: 900px) {
  .page-title h3 {
    font-weight: 900;
    font-size: 1em !important;
  }

  .question_bank {
    flex-direction: column !important;
  }

  .stop-watch-desktop {
    display: none;
  }

  
  .items_grid {
    display: grid;
    grid-template-columns: auto auto ;
  }

  .question_answer {
    display: grid;
    grid-template-columns: auto;
  }

}