:root {
    --beige: #E9EAD6;
    --dark-beige: #DFE0C9;
    --pink: #FC748D;
    --light-pink: #FFBDCF;
    --blue: #9BC7EA;
    --orange: #FFC05A;
    --light-orange: #F9DDAB;
    --purple: #8D6481;
  }
  

/*quiz css*/
#rules{
    display: none;
  }
  .rule-items{
    margin-inline-start: 1.12rem;
  }
  
  .rule-items li{
    color: var(--text-dark);
    margin-bottom: .25rem;
  }
  
  
  #quizapp{
    display: none;
  }
  
  .quiz-card{
    background-color: var(--beige);
  }
  
  .timer{
    display: flex;
    width: 100%;
    column-gap: .4rem;
    justify-content: end;
    user-select: none;
  }
  
  .question-content{
    width: 100%;
    padding: 1.25rem 0;
    background: var(--beige);
  }
  
  .question-text{
    width: 100%;
    margin-block-end: 1rem;
  }
  
  .question-text h3{
    font-weight: 600;
    font-size: 1.5625rem;
  }
  
  .answer-options{
  }
  
  .option-item{
    width: 375px;
    height: 60px;
    border: 1px solid var(--text-dark);
    border-radius: 1rem;
    padding: .5rem .7rem;
    cursor: pointer;
    transition: all .3s ease-out;
    font-size: .857rem;
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: var(--light-orange);
    font-weight: 700;
    font-family: ff-tisa-sans-web-pro, sans-serif;
    font-size: 1.1rem;
  }
  
  .option-item.selected{
    background: var(--orange);
    color: var(--text-dark);
    border: none;
    outline: none;
    font-weight: bold;
  }
  
  .option-item:hover{
    background-color: var(--orange);
    border: none;
    color: var(--white);
  }
  
  .option-item.disabled{
    pointer-events: none;
  }
  
  .btn-next{
    background-color: var(--orange);
    color: var(--white);
    font-weight: 600;
    display: none;
  }
  
  .btn-next:hover{
    background-color: var(--light-orange);
  }
  
  .off{
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.16rem;
  }
  
  .totalQuestion p span{
    font-size: 1.22rem;
    color: var(--brown-dark);
    font-weight: 700;
  }
  
  .explanation{
    margin-block-start: 1.2rem;
    font-size: .85rem;
    color: var(--brown-dark);
    font-weight: 600;
  }
  
  
  #resultContainer{
    display: none;
  }
  
  .result-btn{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .result-btn .btn {
    background-color: var(--light-orange);
  }

  .result-btn .btn:hover {
    background-color: var(--orange);
  }
  
  .completed{
    font-size: 1.4rem;
    color: var(--text-dark);
  }
  
  .resultInfo{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .quiz-score{
    color: var(--brown-dark);
    font-weight: 400;
    font-size: 1.5rem;
  }
  
  .remark{
    margin-block-start: .45rem;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 300;
  }
  
  
  @media (width <= 480px)
  {
    .quiz-card{
      width: 100%;
    }
  
    .answer-options{
    }
  }
  /* end quiz css*/
  
  .border-points-title {
    border-color: black !important; 
  }

  .clara-bg {
    background-color: var(--pink);
    border-radius: 50px;
  }

  .isa-bg {
    background-color: var(--orange);
    border-radius: 50px;
  }

  .pau-bg {
    background-color: var(--light-pink);
    border-radius: 50px;
  }

  .sally-bg {
    background-color: var(--purple);
    border-radius: 50px;
  }

  .juls-bg {
    background-color: var(--blue);
    border-radius: 50px;
  }