@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
body{
    text-align: right;
    font-family: "Cairo", sans-serif;
}
.section-title {
    border-left:0;
    border-right: 5px solid #f26820 !important;
}

.TxtTitle{
  font-size: 16px;
}
.mr-auto,
.mx-auto {
  margin-right: 0;
  margin-left: auto !important;
}
.ml-auto,
.mx-auto {
    margin-right: 0 !important;
  margin-right: auto !important;
}
.main-carousel .owl-dots {
    position: absolute;
    top: 30px;
    right: 25px;
    width: 100%;
    height: 20px;
    text-align: right;
}

.quiz-app{
  margin: 20px auto;
  width: 80%;
  padding: 15px;
}
.quiz-app .quiz_info{
  display: flex;
  padding: 20px;
  /* background-color: #f26820; */
}
.quiz-app .quiz_info .category{
  flex: 1;
  text-align: right;
}

.quiz-app .quiz_area{
  padding: 20px;
  margin-top: 15px;
  /* background-color: #fff; */
}
.quiz-app .quiz_area h2{
  margin: 0;
  font-size:18px !important;
  font-weight: 300 !important;
}
.quiz-app .answers_area{
  padding: 0 20px 20px;
}
.quiz-app .answers_area .answer{
  /* background-color: #f26820; */
  padding: 15px;
}
.quiz-app .answers_area .answer:not(:last-child){
  border-bottom: 1px solid #dfdfdf ;
}
.quiz-app .answers_area .answer input[type="radio"]:checked + label{
  color: #0075ff;
}
.quiz-app .answers_area .answer label{
  cursor: pointer;
  font-weight: bold;
  color: #777;
  font-size: 14px;
  margin-right: 5px;
  position: relative;
  top: -1px;
}
.quiz-app .submit_button,.start_button{
  background-color: #0075ff;
  display: block;
  width: 80%;
  padding: 10px 15px;
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  margin: 20px auto;
}
.quiz-app .submit_button:focus,.start_button:focus{
  outline: none;
}
.quiz-app .bullets{
  border-top: 1px solid #632555;
  background-color: #4451;
  display: flex;
  /* text-align: center; */
  padding: 20px;
}
.quiz-app .bullets .spans{
  flex: 1;
  display: flex;
}
.quiz-app .bullets .spans span{
  width: 20px;
  height: 20px;
  background-color: #ddd;
  margin-right: 5px;
  border-radius: 50%;
} 
.quiz-app .bullets .spans span.on{
  background-color: #0075ff;
}
.quiz-app .results span{
  font-weight: bold;
}
.quiz-app .results span.bad{
  color: #dc0a0a;
}
.quiz-app .results span.good{
  color: #009688;
}
.quiz-app .results span.perfect{
  color: #0075ff;
}