:root {
    --primary: #0a123d;
    --accent: #a6f23a;
}


/* rushi start */
/* Fonts Start */
@font-face {
    font-family:outfit-thin;
    src: url("../fonts/OUTFIT-THIN.woff2");
    font-display: swap;
  }
  @font-face {
    font-family:outfit-light;
    src: url("../fonts/OUTFIT-LIGHT.woff2");
    font-display: swap;
  }
  @font-face {
    font-family:outfit-regular;
    src: url("../fonts/OUTFIT-REGULAR.woff2");
    font-display: swap;
  }
  @font-face {
    font-family:outfit-medium;
    src: url("../fonts/OUTFIT-MEDIUM.woff2");
    font-display: swap;
  }
  @font-face {
    font-family:outfit-semibold;
    src: url("../fonts/OUTFIT-SEMIBOLD.woff2");
    font-display: swap;
  }
  @font-face {
    font-family:outfit-bold;
    src: url("../fonts/OUTFIT-BOLD.woff2");
    font-display: swap;
  }
  @font-face {
    font-family:OUTFIT-BLACK;
    src: url("../fonts/OUTFIT-BLACK.woff2");
    font-display: swap;
  }
  /* Fonts End */
  
  body{
      font-size:14px;
      font-family:outfit-regular !important;
      line-height: normal;
  }
  .login_btn{
    border-radius: 40px;
    background-color: #66cc00;
    padding: 6px 33px;
    border: none;
    width: auto;
    color: #fff;
    margin: 0 0 20px 0;
    font-size: 16px;
    text-transform: uppercase;
}
  .heading{
      font-size: 35px;
      font-family: outfit-bold;
      margin: 0px 0 20px 0;
  }
  .heading span{
      color: #7ac943 !important;
  }
  .sub_heading{
      font-size: 18px;
      font-family: outfit-bold;
      margin: 0px 0 10px 0;
  }
  
  header{
      position: fixed;
      left: 0;
      right: 0;
      top:0;
      z-index: 999;
      /* background-color: #fff; */
  }
  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
    transition: all 0.3s ease;
    animation: smoothScroll 1s;
    z-index: 999;
    box-shadow: 0px 0px 10px #00000017;
    transition-duration: 0.3s;
    background: #fff;
  }
  
  @keyframes smoothScroll {
      0% {
          transform: translateY(-142px);
      }
  
      100% {
          transform: translateY(0px);
      }
  }
  .inner_header .top_header_logo{
      display:none;
  }
  .sticky .inner_header .top_header_logo{
      display:block;
  }
  .inner_header{
      display:flex;
      flex-wrap:wrap;
      padding:15px 30px;
      justify-content: space-between;
  }
  .header_btn{
      display: flex;
      align-items: center;
      gap: 12px;
  }
  .header_btn img{
      max-height:13px;
  }
  .student_login{
      background: #093556;
      border-radius: 40px;
      padding: 6px 20px;
      line-height: normal;
      color:#fff;
      font-family:outfit-light;
      font-size:14px;
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
  }
  .student_register_btn{
      background: #D6FBB1;
      border-radius: 40px;
      padding: 6px 20px;
      line-height: normal;
      color:#000;
      font-family:outfit-light;
      font-size:14px;
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
  }
  .student_login:hover, .student_register_btn:hover{
      background-color: #66CC00;
      border-color: #66CC00;
      color:#fff;
  }
  
  
  /* Hero Section Start */
  .hero-section{
  
  }
  .hero_section_inner{
      display:flex;
      flex-wrap: nowrap;
      min-height: 100vh;
  }
  .hero_left_content{
      text-align:center;
  }
  .hero_left_content .sub_heading{
      color:#ECAD2F;
      margin:0px;
  }
  .hero_left_content p{
      font-family:outfit-light;
      font-size:16px;
  }
  .hero_sec_left{
      background-image: url(../images/blue_left.png);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      padding: 50px;
      width: 33%;
      color: #fff;
      border-radius: 0px 0px 0px 100px;
      position: relative;
  }
  .hero_sec_left_inner{
      height: 80%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
  }
  .hero_sec_left::after{
      width: 140px;
      height: 140px;
      background-image: url(../images/yellow_arrow.png);
      background-repeat: no-repeat;
      background-position: center;
      background-size: 140px;
      z-index: 1;
      content: "";
      position: absolute;
      left: 5px;
      bottom: -26px;
      transform: rotate(-3deg);
}
  .hero_sec_right{
      background-image: url(../images/girl_img.webp);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      padding: 50px;
      width:67%;
      border-radius: 0px 0px 100px 0px;
      position: relative;
      z-index:10;;
  }
  .banner_image{
      width: 53%;
      position: absolute;
      right: -6%;
      bottom: -14px;
  }
  .hero_right_content{
      position: absolute;
      bottom: 10%;
      left:5%
  }
  .hero_right_content h1{
      text-shadow: 6px 0px 15px #fff;
      font-family:OUTFIT-BLACK;
      color:#093556;
      font-size:28px;
  }
  .hero_right_content h1 span{
      text-shadow: 6px 0px 15px #fff;
      font-family:OUTFIT-BLACK;
      font-size:49px;
      color:#093556;
  }
  .hero_right_content p{
      text-shadow: 0px 2px 10px #fff;
      font-family:outfit-semibold;
      color:#000;
      font-size:22px;
  }
  
  .why_choose_us_sec{
      padding: 100px 0 60px 0;
      position: relative;
  }
  .why_choose_us_sec:after{
      content: "";
      position: absolute;
      top: 6%;
      right: 6%;
      background-image: url(../images/why_choose-icon.webp);
      background-position: center;
      background-repeat: no-repeat;
      background-size: 90px;
      z-index: 1;
      width: 110px;
      height: 110px;
      -webkit-animation: slide-right 1.1s linear 1.1s infinite alternate-reverse both;
      animation: slide-right 1.1s linear 1.1s infinite alternate-reverse both;
  }	
  
  @-webkit-keyframes slide-right {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(50px);
              transform: translateX(50px);
    }
  }
  @keyframes slide-right {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(50px);
              transform: translateX(50px);
    }
  }
  
  .why_choose_us_inner{
      display: flex;
      flex-wrap: wrap;
      gap: 38px;
      justify-content: center;
  }
  .why_choose_us_box{
      width: 31%;
      border: 1px solid #e7e7e7;
      background: #F8F8F8;
      background: linear-gradient(180deg,rgba(248, 248, 248, 1) 67%, rgba(227, 227, 227, 1) 100%);    border-radius: 17px;
      /* display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap; */
      font-size: 18px;
      padding: 20px;
      font-family: outfit-light;
  }
  .why_choose_us_box p{
    margin:0px;
  }
  .why_choose_us_box span{
      width: 100%;
      font-family: outfit-bold;
  }
  .why_choose_us_box:nth-child(even) {
      border:1px solid #c8def0;
      background: #E9F4FD;
      background: linear-gradient(180deg,rgba(233, 244, 253, 1) 67%, rgba(200, 223, 243, 1) 100%);
  }
  
  .premium_plans_section{
      padding:60px 0px 10px 0px;
      background: #F1F8FC;
      background: linear-gradient(180deg,rgba(241, 248, 252, 1) 0%, rgba(227, 227, 227, 0) 100%);
  }
  .premium_box_inner{
      display: flex;
      gap: 20px;
      justify-content: space-evenly;
  }
  .premium_box{
      background-color: #fff;
      border-radius: 25px;
      padding: 20px;
      box-shadow: 0px 8px 15px #0000000a;
      margin: 40px 0 0 0;
      width: 25%;
  }
  .premium_box ul{
    margin: 0;
    padding: 0;
    min-height:95px;
}
  .premium_box ul li{
    list-style: none;
    text-align: left;
    background-image: url(../images/right-tick.png);
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: 0 6px;
    font-size: 15px;
    padding: 0 0 0 17px;
}
  .premium_icon{
      margin: -50px auto 10px auto;
      border-radius: 50px;
      width: 90px;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 0px solid #fff;
      background: #F9802B;
      background: linear-gradient(180deg, rgba(249, 128, 43, 1) 0%, rgba(247, 95, 136, 1) 100%);
  }
  .premium_icon img{
      max-height: 55px;
  }
  .premium_box p{
        margin: 0px 0 14px 0;
        line-height: normal;
    }
  .premium_box .btn {
      border-radius: 30px;
      padding: 5px 18px;
      line-height: normal;
      margin:20px 0 -35px 0;
      background: #f9dfcf;
      font-size: 14px;
      font-family: outfit-regular;
  }
  .premium_box .btn:hover{
      background-color: #66CC00;
      border-color: #66CC00;
      color: #fff;
  }
  .premium_box .btn:hover{
      font-family:outfit-regular;
  }
  
  .explore_free_test_top{
      background-image: url(../images/explore_free_test.webp);
      background-size: 190px;
      background-repeat: no-repeat;
      background-position: 6% 100%;
      padding: 130px 0 0 0;
  }
  .explore_free_test_inner {
      background-color: #F4F4F4;
      padding: 40px 0 75px 0;
  }
  /* .explore_card_main{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
} */
.explore_card_main{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
    flex-wrap: wrap;
    gap: 15px;
}
    .owl_slider_series .explore_card{
        width:100%;
    }
    
  .explore_card {
      background: #fff;
      box-shadow: 0px 0px 10px #00000012;
      border-radius: 20px;
      padding:7px;
      width:23.5%;
      margin: 0 0 20px 0;
  }
    /* .explore_card {
      background: #fff;
      box-shadow: 0px 0px 10px #00000012;
      border-radius: 20px;
      padding:7px;
      width:100%;
      margin: 0 0 20px 0;
  } */
.explore_card .card-title{
    background-image: url(../images/test-series.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: outfit-bold;
    color: #fff;
    padding: 10px 10px 13px 10px;
    border-radius: 16px;
    font-size: 22px;
    height: 79px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 31px;
    /* align-items: center;
    display: flex;
    justify-content: center; */
}
  .explore_card_main{
    position: relative;
  }
  .explore_card p{
        /* height: 70px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical; */
        min-height: 120px;
    }
  .explore_card_main .owl-nav{
    display: flex;
    align-items: center;
    width: auto;
    gap: 20px;
    position: absolute;
    bottom: -26px;
    right: 0;
    left: 0px;
    justify-content: center;
}
.explore_card_main .owl-prev{
    background-image: url(../images/arrow-right.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 25px;
    height: 25px;
    border-radius: 40px;
    font-size: 0px;
    transform: rotate(180deg);
    transition-duration: 0.7s;
}
.explore_card_main .owl-next{
    background-image: url(../images/arrow-right.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 25px;
    height: 25px;
    border-radius: 40px;
    font-size: 0px;
    transition-duration: 0.7s;
}
.explore_card_main .owl-prev:hover{
    transform: rotate(-180deg);
}
.explore_card_main .owl-next:hover{
    transform: rotate(360deg);
}
  .s_heading{
      font-family:outfit-bold;
      margin: 11px 0 0 0;
  }
  .sub_heading{
      font-family:outfit-semibold;
      font-size: 20px;
  }
  .Duration_box{
      display: flex;
      padding: 10px;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: space-around;
  }
  .duration_type{
      width: 45%;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      background: #F8F8F8;
      padding: 7px 5px;
      border-radius:6px;
      font-size: 12px;
      line-height: normal;
  }
  .duration_type span{
      width:100%;
      font-family:outfit-bold;
      text-transform: uppercase;
  }
  .explore_card .btn{
      background-color: #D9ECFE;
      border-color: #D9ECFE;
      color: #000;
      border-radius: 30px;
      padding: 5px 18px 5px 30px;
      line-height: normal;
      margin: 10px 0 -19px 0;
      font-size: 14px;
      font-family: outfit-regular;
      background-image: url(../images/black-arrow.webp);
      background-repeat: no-repeat;
      background-size: 10px;
      background-position: 13px 9px;
      transition-duration:0.2s;
  }
  
  .explore_card .btn:hover{
      background-image: url(../images/white-arrow.webp);
      background-repeat: no-repeat;
      background-size: 10px;
      background-position: 13px 9px;
      transition-duration:0.3s;
      background-color:#66CC00;
      border-color: #66CC00;
      color:#fff;
  }
  
  .take_a_test_its_free_sec{
      padding: 30px 20px;
      background: #F9802B;
      background: linear-gradient(-90deg, rgba(249, 128, 43, 1) 0%, rgba(255, 2, 100, 1) 100%);
  }
  .take_a_test_its_free{
      color:#fff;
       font-family:outfit-light;
  }
  .take_a_test_its_free .heading{
      color:#fff;
      margin: 0;
  }
  .start_test_btn{
      background: #4A88B4;
      background: linear-gradient(180deg, rgba(74, 136, 180, 1) 0%, rgba(50, 109, 153, 1) 100%);
      border: none;
      color: #fff !important;
      font-size: 18px;
      border-radius: 11px;
      padding: 7px 15px;
  }
  .start_test_btn span{
      width: 25px;
      height: 25px;
      background: #6CB6EB;
      background: linear-gradient(180deg, rgba(108, 182, 235, 1) 0%, rgba(67, 145, 201, 1) 100%);
      float: right;
      border-radius: 30px;
      margin: 0 0 0 7px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .start_test_btn span img{
      max-height: 13px;
  }

  
  
  .hover_btn{
      transition-duration: 0.5s;
      position: relative;
      overflow: hidden;
  }
  .hover_btn::before {
      position: absolute;
      top: 0;
      left: -50%;
      z-index: 2;
      display: block;
      content: '';
      width: 50%;
      height: 100%;
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
      transform: skewX(-25deg);
  }
  .hover_btn:hover::before {
      animation: shine .75s;
  }
  @keyframes shine {
      100% {
          left: 125%;
      }
  }
  .hover_btn{
      transition-duration: 0.5s;
  }
  .hover_btn:hover{
      box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  }
  
  .simple_steps_section{
      /* background-image: url(../images/design-arrow.webp);
      background-position: 0px -20px;
      background-size: 19%;
      background-repeat: no-repeat; */
      padding: 60px 0;
      position: relative;
  }
  .simple_steps_section .design-arrow{
      position: absolute;
      left: 0;
      top: 3%;
      width: 250px;
  }
  .design-arrow{
      -webkit-animation: design-arrow 1.5s linear 1s infinite alternate-reverse both;
      animation: design-arrow 1.5s linear 1s infinite alternate-reverse both;
  }
  
  @-webkit-keyframes design-arrow {
    0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
    100% {
      -webkit-transform: translateY(-40px);
      transform: translateY(-40px);
    }
  }
  @keyframes design-arrow {
    0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
    100% {
      -webkit-transform: translateY(-40px);
      transform: translateY(-40px);
    }
  }
  
  .steps_box{
      display: flex;
      flex-wrap: nowrap;
      gap: 25px;
      border-radius: 70px;
      background: #FFF;
      background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(239, 239, 239, 1) 100%);
      border: 1px solid #e8e8e8;
      position: relative;
      padding: 20px;
      width: 94%;
      float: right;
      min-height: 114px;
    }
  .steps_box .sub_heading {
      text-align: left;
      margin: 0 0 5px 0;
      font-size: 18px;
  }
  .steps_box p{
      margin:0px;
      text-align: left;
  }
  .step-circle {
      max-height: 70px;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #E39202;
      background: linear-gradient(90deg, rgba(227, 146, 2, 1) 0%, rgba(254, 202, 30, 1) 100%);
      font-size: 30px;
      font-family: outfit-bold;
      min-height: 70px;
      min-width: 70px;
      margin: 0 0 0 -38px;
  }
  .performance_dashboard_section {
      padding: 60px 0 170px 0;
      background: #eff6fb;
      position: relative;
      margin: 0 0 30px 0;
  }
  .performance_dashboard_section::after{
      content:"";
      position: absolute;
      left: 0px;
      bottom: 0px;
      background-image: url("../images/performance-dashboard_left.webp");
      background-size: contain;
      background-position: bottom;
      background-repeat: no-repeat;
      z-index: 0;
      width: 400px;
      height: 300px;
  }
  .performance_dashboard_section::before{
      content: "";
      position: absolute;
      right: 0px;
      bottom: -25px;
      background-image: url(../images/performance-dashboard_right.webp);
      background-size: contain;
      background-position: bottom;
      background-repeat: no-repeat;
      z-index: 0;
      width: 495px;
      height: 350px;
  }
  
  
  /* List Of supported and board Start */
  
  .supported_and_board_classes{
      padding: 60px 0px;
      background-image: url(../images/question_bg.png);
      background-size: cover;
      background-position: bottom;
      background-repeat: no-repeat;
      margin: 30px 0 0 0;
  }
  .quotations_circal{
      background-image: url(../images/quotations_circal.webp);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      padding: 0px;
      min-height: 310px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .quotations_circal .heading .orange_color{
      color:#f6b73b !important;
      font-family:outfit-bold;
      font-size:33px;
  }
  .quotations_circal .heading{
      font-family: outfit-medium;
      font-size: 26px;
      margin: 0;
  }
  .supported_and_board_classes .sub_heading{
      color: #fff;
      font-family: outfit-light;
  }
  .list-unstyled {
      padding-left: 0;
      list-style: none;
      text-align: center;
      justify-content: center;
      display: flex;
      flex-wrap: wrap;
  }
  .list-unstyled li{
    border-radius: 10px;
    background-color: #66cc00;
    padding: 10px 30px;
    border: none;
    width: 90%;
    color: #fff;
    margin: 0 0 17px 0;
    font-size: 17px;
}
  .classes_supported{
      display:flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
  }
  .classes_supported .badge{
      width: 75px;
      height: 75px;
      border-radius: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      background: #23577E;
      color: #fff;
      flex-wrap: wrap;
      font-family:outfit-thin;
  }
  
  .badge_circal{
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
      gap: 7px;
      font-family:outfit-thin;
  }
  .badge_num{
       font-family:outfit-regular;
      font-size:16px;
  }
  
  
  .our_testimonials_box{
      background: linear-gradient(90deg,rgba(255, 1, 100, 1) 0%, rgba(249, 128, 43, 1) 100%);
      border-radius:20px;
      padding: 40px;
      position: relative;
      display: flex;
      align-items: center;
      gap: 40px;
      color:#fff;
  }
  .our_testimonials_left{
      margin:0px 0px 0px -80px;
  }
  .our_testimonials_left .testimonials_img{
      background: #DDDAD1;
      padding: 0px;
      border-radius: 12px;
      box-shadow: -2px 0px 18px #00000014;
      border: 2px solid #ffffff;
  }
  .our_testimonials_left .testimonials_img img{
      max-height: 110px;
      width: auto !important;
      border-radius: 9px;
  }
  .our_testimonials_box p{
      text-align: left;
  }
  .our_testimonials_box .sub_heading {
      text-align: left;
  }
  .our_testimonials_inner .owl-nav{
      display: flex;
      justify-content: center;
      gap: 20px;
      margin:20px 0px 0px 0px;
  }
  .our_testimonials_inner .owl-prev{
      font-size: 0px;
      background-image: url(../images/left-arrow.webp);
      background-size: 40px;
      background-repeat: no-repeat;
      background-position: center;
      width: 45px;
      height: 45px;
      border-radius: 40px;
      transition-duration:0.3s;
  }
  .our_testimonials_inner .owl-next{
      font-size: 0px;
      background-image: url(../images/left-arrow.webp);
      background-size: 40px;
      background-repeat: no-repeat;
      background-position: center;
      width: 45px;
      height: 45px;
      border-radius: 40px;
      transition-duration:0.3s;
      transform: rotate(180deg);
  }
  .our_testimonials_inner .owl-prev:hover{
      background-image: url(../images/right-arrow.webp);
      transform: rotate(180deg);
  }
  .our_testimonials_inner .owl-next:hover{
      background-image: url(../images/right-arrow.webp);
      transform: rotate(0deg);
  }
  
  footer{
      background-color: #F4F4F4;
      font-size: 14px;
      padding:15px 0px;
      float: left;
      width: 100%;
    }
  footer .footer_link{
      text-decoration: none;
      color: #000;
      padding:0 14px 0px 14px;
      font-size:14px;
      position: relative;
  }
  footer ul li:last-child .footer_link:after{
    display:none;
  }
  footer .footer_link:after{
    position: absolute;
    content: "|";
    color: #000;
    right: 0px;
    width: 1px;
    top: 0;
    bottom: 0;
}
  footer .footer_link:hover{
      color:#66CC00;
  }
  
.registrar_main  .login_mainBox{
    width:100%;
}
  .registerModal .modal-title {
      font-weight: bold;
      text-transform: uppercase;
  }
  .registerModal .register_btn{
      border-radius: 20px;
      background-color:#66CC00;
      border-color: #66CC00;
      color:#fff;
      text-transform: uppercase;
  }
  .register_btn:hover{
      background-color:#66CC00;
      border-color: #66CC00;
      color:#fff;
  }
    .login_mainBox{
    width: 70%;
    background: #fff;
    padding: 30px;
    background: #fff;
    padding: 30px 30px;
    border-radius: 20px;
    box-shadow: 0px 10px 10px #0000000a;
    display: flex;
    align-items: center;
    justify-content: center;
}
  .login_main_sec .hero_sec_left{
    width: 45%;
    padding: 0px;
    margin: 0px;
}
  .login_main_sec .hero_sec_right{
    background-image: none;
    background-color:#F3F4F6;
    display: flex;
    align-content: center;
    justify-content: center;
    width: 55%;
  }
  .login_main_sec .login_container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login_container{

}
.login_main_sec .hero_sec_left::after{
    background-image: url(../images/left-students-img.webp);
    width: 300px;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 300px;
    z-index: 1;
    content: "";
    position: absolute;
    left: -45px;
    bottom: 0px;
    transform: rotate(0deg);
}
.login_main_sec .hero_sec_vertical::before{
    width: 300px;
    height: 300px;
    background-image: url(../images/dotted-design.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 300px;
    z-index: 1;
    content: "";
    position: absolute;
    right: 0%;
    bottom: 11%;
}

.login_main_sec .hero_sec_vertical::before {
	-webkit-animation: rotate-360 3.5s linear 1s infinite alternate-reverse both;
	animation: rotate-360 3.5s linear 1s infinite alternate-reverse both;
}
@-webkit-keyframes rotate-360 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@keyframes rotate-360 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}



.hero_sec_vertical::after{
    width: 40px;
    height: 40px;
    background-image: url(../images/vlines.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 40px;
    z-index: 1;
    content: "";
    position: absolute;
    right: 30px;
    bottom: 0px;
}
.login_main_sec .hero_sec_left_inner {
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.login_main_sec .hero_sec_vertical{
    overflow: hidden;
    height: 100%;
}
.login_main_sec .logo_box img{
    max-height: 140px;
}
.login_main_sec .hero_left_content {
    text-align: center;
    width: 100%;
}
.login_main_sec .heading{
    color: #ECAD2F;
    font-size:35px;
    margin: 0;
    line-height: normal;
    text-transform: uppercase;
}
.login_main_sec .heading2{
    font-size:29px;
    margin: 0;
    line-height: normal;
    text-transform: uppercase;
}
.login_main_sec .forgot_pass {
    font-size:12px;
}
.login_main_sec .forgot_pass:hover {
    color: #66cc00;
}
.login_main_sec .login_container .form-control{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 0.5px solid #e2e2e2;
    border-radius: 7px;
    height: 34px;
    font-size: small;
    /* box-shadow: 1px 1px 4px 0px #e7eaf0; */
    font-family:outfit-light;
}
.login_main_sec .login_container .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow:none;
}
.login_main_sec .login_btn{
    background-color: #000034;
}
.login_main_sec .login_btn:hover{
    background-color: #66cc00;
}



.registrar_main .hero_sec_left{
        width: 35%;
}
.registrar_main .hero_sec_right{
        width: 65%;
}
.registrar_main .login_container{
    width:100%;
}
.registrar_main .form-box{
    margin-bottom:16px;
}
.registrar_main .form-box select{
    appearance: auto;
}
/* .registrar_main form{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
} */
select{
    cursor: pointer;
}
.forgot_pass_main .login_mainBox{
    display: flex;
    align-items: center;
    min-height:300px;
    width: 70%;
    justify-content: center;
}
.forgot_pass_main .login_form{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}
.login_form{
    width: 100%;
}
.form-box .sub_heading{
    width:100%;
}
.form-box form{
    width: 100% !important;
}
.verification_code{
    padding: 15px 10px;
    background: #ecad2f33;
    border-radius: 7px;
    text-align: center;
}



/* Instructions Start */

/* .instructions_main{
    background-image: url(../images/instructions-img.webp);
    background-color: transparent !important;
    background-size: contain;
    background-position: right;
    background-repeat:no-repeat;
    position: relative;
    height: 100%;
} */
.instruction_btn_box .big_button{
    float:right;
}
.instructions_main .card{
    /* background-color: #082d5103; */
    border-radius: 20px;
    /* padding: 20px; */
    padding: 20px 20px 20px 20px;
    width: 100%;
    border: 1px solid #fff;
}
/* .btn_sec{
    background: #71aae217;
    border-radius: 1px;
    padding: 0 0 30px 0;
} */
.instructions_main .start_test_btn {
    font-size: 21px;
    border-radius: 61px;
    align-items: center;
    display: flex;
    padding: 6px 9px 6px 30px;
    text-transform: uppercase;
    margin: 0 auto;
}

.instructions_main .back_btn{
    background: #000;
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
    line-height: normal;
}
.instructions_main .back_btn:hover{
    background: #000;
    color: #fff;
}

.instruction-content ol li{
    background-image: url(../images/right-tick.png);
    background-size: 18px;
    background-position: 0px 3px;
    background-repeat: no-repeat;
    padding: 0 0 0 25px;
    font-size: 16px;
    list-style:none;
}
.instruction-content ol {
    padding: 0;
}
.instruction-content strong{
    font-weight: inherit;
    font-family: 'outfit-semibold';
}
/* .btn_sec{
    position: absolute;
    left:0px;
    right: 0px;
    bottom: 0px;
} */
/* Instructions End */


/* HEADER-START */
.header_box{
  padding: 15px 10px;
  border-radius: 0 0 30px 30px;
  display: flex;
  width: 100%;
  transition-duration: 0.3s;
  justify-content: space-between;
}
.logo_box{
    width: 220px;
    transition-duration: 0.3s;
}
.sticky .logo_box{
    width: 200px;
}
.sticky .header_box{
    padding: 7px 10px;
}

.header_box .member_box .avatar{
    margin:0 0px 0 0;
}
.sidebar-logout-btn{
    background-color: transparent;
    border:none;
}
.header .dropdown-menu li a{
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 0px;
    border-bottom: 1px solid #ccc;
}
.header .dropdown-menu li a:hover{
    background-color: #f3f3f3;
}
.header .sidebar-logout-btn:hover{
    background-color: #f3f3f3;
}
.header .sidebar-logout-btn{
    padding: 10px 15px;
}
/* .header .dropdown-menu li form{
    background-color: #e7e7e7 !important;
    color: #484848 !important;
} */
.sidebar-logout-btn{
    padding: 4px 5px;
    border-radius: 3px;
}
.header .dropdown-menu li a img {
    max-height: 20px;
    margin: 0 8px 0 0;
}
.dropdown-item.active, .dropdown-item:active{
    background-color: #e7e7e7 !important;
    color: #484848 !important;
}
.header .dropdown-menu li a img{
    max-height: 20px;
    margin:0 8px 0 0;
}
.header .dropdown-menu li{
    /* padding: 6px 15px; */
    font-size: 14px;
}
/* .header .dropdown-menu li:last-child{
    border:none;
} */
.header .dropdown-menu{
    inset: 17px 0px auto auto !important;
    padding: 0;
}
.sidebar-logout-btn{
    width: 100%;
    text-align: left;
    padding: 0;
}
.sidebar-logout-btn img{
    max-width: 22px;
    margin: 0px 10px 0 0;
}
.member_box{
    width: auto;
  display: flex;
  color: #fff;
}
.member_box .avatar{
    max-height: 40px;
    margin: 0 10px 0 0;
}
.member_box .profile-edit-link{
    margin: 6px 0 0 20px;
}
.user-info{
font-size: 13px;
  color: #6face7;
  line-height: normal;
}
.user-info span{
font-size: 24px;
  color: #fff;
}
/* HEADER-END */
.middle_box{
padding: 30px 0 0 0;
  position: relative;
  float: left;
  width: 100%;
}
.sidebar-nav li.active a {
    background-color: #5b9f15;
}
.sidebar-nav li.active img {
    /* filter: brightness(0) saturate(100%) invert(34%) sepia(100%) saturate(660%) hue-rotate(176deg) brightness(95%) contrast(95%); */
    background-color: #5b9f15;
}

/* .left_box{
  width: 25%;
  float: left;
}
.right_box{
    float: right;
    width: 75%;
} */

.left_box{
    width: auto;
    float: left;
  }
.right_box{
    float: right;
    width: 76%;
}
.content {
    margin-left: 0 !important;
}
.header .dropdown-toggle::after{
    display:none;
 }
.header{
  background-color: #fff;
  margin: 0;
  box-shadow: 0px 0 20px #cccccc69;
}
/* LEFT-MENU-BOX-START */
.left_box_blue{
position: absolute;
  left: 0;
  width: 25.5%;
  height: 100%;
  /* background-image: url(../images/blue_left.webp); */
  background-image: linear-gradient(to left, #0c4f7f, #083555);
  background-color: #083555;
  top: 0;
}
.left_box{
float: left;
  width: 19%;
}
.left_box ul{
position: relative;
  z-index: 5;
  margin: 0;
  list-style-type: none;
  background-color: #fff;
  padding: 20px 13px;
  border-radius: 20px;
  min-height: 500px;
  /* box-shadow: 0 0px 20px #cccccc3d; */
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.left_box ul li{
margin: 0 0 7px 0;
  padding: 0;
}
.left_box ul li a{
margin: 0;
  position: relative;
  background-color: #3e7399;
}
.meun_icon{
    padding: 5px;
    background-color: #71aae2;
    text-align: center;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.meun_icon img{
    max-height: 27px;
}
.left_box ul li span{
  position: absolute;
  background-color: #082d51;
  color: #fff;
  font-size: 0;
  line-height: normal;
  padding: 0;
  border-radius: 10px;
  top: 0;
  margin: 7px 0 0 75px;
  transition-duration: 0.3s;
  display: block ruby;
      width: 150px;
}
.left_box ul li a:hover span{
    font-size: 14px;
    padding: 7px 15px;
}
.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000;
}

.left_box ul li span::after{
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000;
    position: absolute;
    content:"";
    z-index:0px;
} 
/* LEFT-MENU-BOX-END */


.edit_profile_main .input_filed{
    font-family:outfit-light;
    font-size: 14px;
}
.edit_profile_main .select_option{
    font-family:outfit-light;
    font-size: 14px;
}
.edit_profile_main .textarea_filed{
    font-family:outfit-light;
    font-size: 14px;
}
.edit_profile_main label{
    font-family:outfit-regular;
    font-size: 14px;
    margin: 0 0 4px 0;
}
.edit_profile_main .input_filed:focus{
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow:none;
}
.edit_profile_main .select_option:focus{
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow:none;
}
.edit_profile_main .textarea_filed:focus{
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: none;
}
.edit_profile_main .form-text{
    font-family:outfit-light;
    font-size:11px;
}


.edit_profile_inner{
   padding: 30px 30px;
    /* background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 1) 100%); */
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 20px #00000012;
}
.edit_profile_main .back_btn{
    background: #000;
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
    line-height: normal;
}
.edit_profile_main .back_btn:hover{
    background: #000;
    color: #fff;
}




/* subjective test result start */

.filter_result_box {
    margin: 0px 0 0 0;
    /* background: #fff; */
    padding: 0px 0px;
    border-radius: 15px;
    /* box-shadow: 0 2px 16px rgba(10, 18, 61, 0.05); */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.result_count_box{
    padding: 15px 5px 15px 5px;
    background: #ffffff;
    border-radius: 10px;
    margin: 0 0 0px 0;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 2px 16px rgba(10, 18, 61, 0.05);
    width: 18%;
    border: 1px solid #fff;
    transition-duration: 0.5s;
}
.result_count_box .box_heading {
    text-align: center;
    width: 100%;
    float: left;
    padding: 4px 8px;
    color: #000033;
    text-transform: capitalize;
    font-size: 16px;
    line-height: normal;
    font-family:outfit-medium;
}
.result_count_box span {
    font-family:outfit-bold;
    font-size: 35px;
    color: #66cc00;
    line-height: normal;
}
.result_count_box_active span {
    color: #000033 !important;
}
.result_count_box:hover {
    border: 1px solid #b1c1e5;
    background-color: #e4eaf7;
}
.result_count_box strong {
    width: 100%;
    font-size: 14px;
    font-family:outfit-light;
    margin: 0 0 7px 0;
}
.result_count_box_active span {
    color: #000033 !important;
}
.result_answer_box{
    margin:20px 0px 30px 0px;
}



.result_answer_box_main{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.result_img_box{
    border: none;
    box-shadow: none;
    background: none;
}
.result_img_box img{
    max-height: 110px;
}
.result_img_box:hover {
    border: none !important;
    background-color:transparent !important;
}
.result_answer_box {
    margin: 25px 0px 0px 0px;
    width: 48.5%;
    background: #EBF1F8;
    padding: 20px;
    border-radius: 10px;
    position: relative;
}
.result_answer_box img{
    width: 100%;
    height:auto;
}
.result_img_box{
    border: none;
    box-shadow: none;
    background: none;
}
.result_answer_box h5{
    font-family: outfit-medium;
    font-size: 17px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #9EAEC0;
    padding: 0 0 12px 0;
    margin: 0 0 12px 0;
}
.result_icons {
    max-width: 14px;
    margin: -3px 5px 0 6px;
    border-radius: 50px;
}
.result_answer_box span{
    font-size: 16px;
    font-family: outfit-medium;
    line-height: normal;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.result_answer_box span strong{
    font-size: 12px;
    font-family:outfit-light;
    line-height: normal;
    margin:0 0 0 10px;
}
.result_answer_box .your_ans_text{
    color: #1c1c1c !important;
}
.ans_num{
    font-family:outfit-regular;
}
.ans_num img{
    max-height:50px;
}
.Q_number{
    font-size: 16px;
    margin: 0 12px 0 0;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    align-items: center;
    font-family: outfit-medium;
}
/* .Question_text{

} */
.result_answer_box .list-group{
    border-radius:0px;
}
.result_answer_box .list-group .ans_num p{
    margin-bottom: 0px;
}

.result_answer_box .list-group .list-group-item{
    margin: 0 0 12px 0px;
    border-radius: 5px;
    background-color: #F1F5FA;
    border: 1.3px solid #FFFFFF;
}

.result_answer_box .list-group .correct{
    background-color: #DFECE6;
    border: 1.3px solid #6FBA47;
}

.result_answer_box .list-group .incorrect{
    background-color: #EDDBE1;
    border: 1.3px solid #FF5050;
}

.result_answer_box .list-group .not-attempted{
    background-color: #ffc1071f;
    border: 1.3px solid #fdc207;
    padding: 5px 15px;
    font-size: 14px;
    border-radius: 20px;
    color: #fff !important;
    font-family: outfit-light;
    line-height: normal;
    text-align: center;
}
.result_answer_box .list-group .not-attempted strong{
    color: #987200 !important;
}

.result_answer_box .list-group .not-attempted .result_icons{
    display: none;
}
.back_btn{
    background: #000;
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
    line-height: normal;
    text-decoration:none;
}


/* Dashboard Main Start */
.dashboard_main .dashboard_analytic_card{
    background-color: #fff;
    border: 1px solid #E9ECEF;
    border-radius: 10px;
    box-shadow: 0px 3px 4px #cccccc42 !important;
    padding: 25px;
}
.dashboard_analytic_card_inner{
    background-image: url(../images/card_chart.webp);
    background-repeat: no-repeat;
    background-position: 80% 90%;
    background-size: 50%;
}
.dashboard_analytic_card h3{
    font-family: outfit-medium;
    font-size: 18px;
    color: #685F78;
}

.sidebar-header h3 {
    margin: 0;
    font-family: outfit-bold;
    color: #000;
    font-size: 22px;
}
.sidebar-header .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0px;
    margin: 0 0 10px 0;
}
.sidebar{
    background-color: transparent;
}
.test_cards .card-img-top {
    object-fit: cover;
    height: 200px;
    border-radius: 7px !important;
}
.test_cards{
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #E9ECEF;
}
.test_cards_body .card-title{
    font-size: 18px;
    font-family: outfit-medium;
    margin: 0 0 0px 0;
}
.faculty_name{
    font-size: 14px;
    margin: 2px 0 8px 0;
    color: #626262;
}
.right_box .test_cards_body{
    padding: 10px 0px !important;
}
.total_papers_details{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.total_papers_details .total_papers img{
    max-height: 17px;
    width: auto !important;
}
.total_papers{
    display: flex;
    align-items: center;
    gap: 7px;
}
.test_type{
    display: flex;
    align-items: center;
    gap: 10px;
}
.total_papers_inner{
    color: #685F78;
    font-size: 12px;
}
.total_papers_inner span{
    font-family:outfit-bold;
    color:#000;
    margin: 0 3px 0 0;
}
.total_participants{
    color: #685F78;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #E9ECEF;
    padding: 10px 0 0 0;
    margin: 10px 0 0 0;
}
.total_participants span{
    font-family:outfit-bold;
    color:#000;
    margin: 0 3px 0 0;
}
.view_all_btn{
    /* padding: 6px 30px;
    border-radius: 40px;
    border: 1.5px solid #43a047;
    color: #43a047; */
    background-color: #ECAD2F;
    /* font-family: outfit-medium;
    transition-duration:0.7s;
    text-decoration:none; */
}
/* .view_all_btn:hover{
    background-color:#43a047;
    color:#fff;
} */
/* Dashboard Main End */
.dash_heading{
    font-family:outfit-semibold;
    font-size:25px;
    margin: 0 0 10px 0;
}
.dash_heading .badge{
    font-size:14px;
    padding: 3px 20px;
    line-height: normal;
    font-family: outfit-light;
    text-transform: uppercase;
    border-radius: 20px;
}
.sidebar_heading{
    font-family:outfit-semibold;
    color:#6c0;
    font-size:20px;
    padding: 0 0 10px 10px;
}
.dash_count_heading {
    color: #002058;
    font-size: 35px;
    font-family: outfit-bold;
}
.card_img_box{
    position: relative;
    overflow: hidden;
    border-radius: 7px !important;
}
.card_img_box img{
    transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
}
.card_img_box:hover img {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    transform: scale(1.15);
}
.card_img_box .paid_free .badge{
    font-size: 14px;
    border-radius: 0px 0px 0px 11px;
    padding: 2px 14px;
    line-height: normal;
    font-weight: inherit;
    font-family: outfit-medium;
    position: absolute;
    top: 0px;
    right: 0px;
}
.test_price{
    font-size:14px;
}
.start_test_box{
    display: flex;
    justify-content: space-between;
    margin: 15px 0 0 0;
}
.start_test_box .text-danger{
    font-size:13px;
}
.start_test_box a{
    padding: 5px 15px;
    font-size:13px;
    text-decoration:none;
    background-color:#ccc;
    color: #000;
    border-radius: 30px;
    line-height:normal;
}
.start_test_box .btn-success{
    background-color: #198754;
    color:#fff;
}
.right_box .test_series_page .test_cards_body{
    padding:0px !important;
}
.test_series_page .dash_heading{
    display: flex;
    align-items: center;
    gap: 10px;
}
.right_box .view_details_btn{
    background-color:transparent;
    color: #868686;
    border: 1px solid #868686;
}
.right_box .enroll_now_btn{
    background-color:#43A047;
    color: #fff;
}
.right_box .buy_now_btn{
    background-color:#E53935;
    color: #fff;
}
.right_box .take_a_test_btn{
    background-color:#65cb01;
    color: #fff;
}
.text_series_btn_box a{
    padding: 4px 14px;
    font-size:14px;
    text-decoration:none;
    background-color:#ccc;
    color: #000;
    border-radius: 30px;
}
.test_submissions_sec{
    position: relative;
}
.test_submissions_sec .owl-nav{
    display: flex !important;
    align-items: center;
    width: auto;
    gap: 20px;
    position: absolute;
    top: -43px;
    right: 0;
}
.test_submissions_sec .owl-prev{
    background-image: url(../images/arrow-right.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 25px;
    height: 25px;
    border-radius: 40px;
    font-size: 0px;
    transform: rotate(180deg);
    transition-duration: 0.7s;
}
.test_submissions_sec .owl-next{
    background-image: url(../images/arrow-right.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 25px;
    height: 25px;
    border-radius: 40px;
    font-size: 0px;
    transition-duration: 0.7s;
}
.avtest_submissions_secailable_test_series_box .owl-prev:hover{
    transform: rotate(-180deg);
}
.test_submissions_sec .owl-next:hover{
    transform: rotate(360deg);
}
.test_submissions_sec .test_submissions_inner{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap:13px;
}
.test_submissions_sec .test_submissions_box{
    flex-wrap: wrap;
    float: left;
    border: 1px solid #ccc;
    padding: 20px 13px 13px 13px;
    border-radius: 10px;
    position: relative;
    background-color: #fff;
    box-shadow: 0px 10px 10px #00000008;
    margin: 0 0 20px 0;
    min-height: 225px;
}
.test_submissions_sec{
    background:transparent;
}
.test_submissions_box .badge{
    position: absolute;
    top: 0;
    right: 0;
    padding: 2px 13px;
    border-radius: 0px 9px 0px 11px;
    font-size: 14px;
    line-height: normal;
    font-weight: inherit;
    font-family: outfit-medium;
}
.test_submissions_box h6{
    font-size: 16px;
    font-family:outfit-semibold;
}
.test_submissions_box p{
    font-size: 14px;
    margin: 0 0 12px 0px;
    line-height: normal;
}
.test_submissions_box strong{
    color: #000;
    font-family: 'outfit-semibold';
    font-weight: inherit;
}
.submition_buttons_box{
    display:flex;
    justify-content: space-between;
}
.submition_buttons_box a{
    margin-bottom:10px;
}
.series_name{
    font-size: 14px;
}
.subject_name{
    font-size: 13px;
    margin: 0 0 8px 0;
}
.paper_status{
    font-size: 12px;
    font-family:outfit-medium;
}
.marks_numbers{
    font-size: 12px;
    margin: 0 0 8px 0;
}
.exam_type{
    font-size: 12px;
}
.test_submissions_box .text-warning{
    color: #fcaa17 !important;
}
.resume_btn{
  background-color: #ffc107 !important;
  color: #212529 !important;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  padding: 5px 13px;
  font-size: 13px;
  text-decoration: none;
  line-height: normal;
}
.disabled_button{
    background-color: #e3e3e3 !important;
    color: #c3c3c3 !important;
    pointer-events: none;
}
.change_pass_img{
    max-height: 260px;
}
/* .resume_btn:hover {
  background-color: #e0a800;
} */
.view_result_btn {
  background-color: #28a745;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  padding: 5px 13px;
  font-size: 13px;
  text-decoration: none;
  line-height: normal;
}
/* .view_result_btn:hover {
  background-color: #218838;
} */

/* WELCOME-BOX-START */
.welcome_box{
background-color: #65cb01;
  padding: 14px 10px;
  border-radius: 15px;
  color: #fff;
  background-image: linear-gradient(to left, #88ec27, #65cc00);
}
.welcome_box .avatar{
    max-height: 90px;
}
.welcome_box h3{
    font-size: 20px;
    font-family: outfit-bold;
    text-transform: uppercase;
    height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.welcome_box a{
background-color: #000;
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  padding: 4px 15px;
  border-radius: 100px;
  line-height: normal;
  margin: -1px 0 0px 0;
  float: left;
}
/* WELCOME-BOX-END */
/* SERIES-LIST-START */
.series_list_main{
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    justify-content: space-between;
}
.series_list{
    text-align: center;
    border-radius: 20px;
    min-height: 120px;
    width: 30%;
    padding: 0px 0 0 0;
    background-image: linear-gradient(to bottom, #fff, #fbfdff);
    color: #000;
    line-height: normal;
    background-color: #fff;
    border: 1px solid #a3d0f0;
    box-shadow: 0 0 20px #00000024;
    display: flex;
    align-items: center;
    justify-content: center;
}
.series_head{
  width: 100%;
  font-size: 17px;
  font-family: outfit-light;
}
.series_count{
width: 100%;
  font-family: outfit-bold;
  font-size: 38px;
  color: #3e617a;
}
/* SERIES-LIST-END */

/* DASHBOARD-TEST-LIST-START */
.available_test_series_box{
    position: relative;
}
.dash_test_main .owl-nav{
    display: flex;
    align-items: center;
    width: auto;
    gap: 20px;
    position: absolute;
    top: -43px;
    right: 0;
}
.available_test_series_box .owl-prev{
    background-image: url(../images/arrow-right.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 25px;
    height: 25px;
    border-radius: 40px;
    font-size: 0px;
    transform: rotate(180deg);
    transition-duration: 0.7s;
}
.available_test_series_box .owl-next{
    background-image: url(../images/arrow-right.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 25px;
    height: 25px;
    border-radius: 40px;
    font-size: 0px;
    transition-duration: 0.7s;
}
.available_test_series_box .owl-prev:hover{
    transform: rotate(-180deg);
}
.available_test_series_box .owl-next:hover{
    transform: rotate(360deg);
}
.enrolled_test_series_main .enrolled_test_main .owl-nav{
    display: flex !important;
    align-items: center;
    width: auto;
    gap: 20px;
    position: absolute;
    top: -43px;
    right: 0;
}
.enrolled_test_series_main .owl-prev{
    background-image: url(../images/arrow-right.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 25px;
    height: 25px;
    border-radius: 40px;
    font-size: 0px;
    transform: rotate(180deg);
    transition-duration: 0.7s;
}
.enrolled_test_series_main .owl-next{
    background-image: url(../images/arrow-right.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 25px;
    height: 25px;
    border-radius: 40px;
    font-size: 0px;
    transition-duration: 0.7s;
}
.enrolled_test_series_main .owl-prev:hover{
    transform: rotate(-180deg);
}
.enrolled_test_series_main .owl-next:hover{
    transform: rotate(360deg);
}
.dash_test_main{
    display: flex;
    align-items: center;
    justify-content:start;
    flex-wrap: wrap;
    gap: 15px;
}
.dash_test_list{
    width: 32%;
    padding: 0 0 14px 0px;
}
.owl-carousel .dash_test_list{
    width: 100%;
}
.owl_slider_series .dash_test_list{
    width: 100%;
}
.owl_slider_series1 .dash_test_list{
    width: 100%;
}

.owl-carousel .test_submissions_box {
    width: 100%;
}
.test_submissions_box{
    width: 32%;
}
.owl_slider_series2 .test_submissions_box{
    width: 100% !important;
}

/* .available_test_series_box{
    position: relative;
}
.owl-prev{
    width: 30px;
    height: 30px;
    background-image: url(assets/images/right.png);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
} */
.enrolled_test_main{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}
.dash_test_list .total_papers_inner{
    font-size: 14px;
}
.dash_test_inner{
 width: 100%;
  background-color: #fff;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid #fff;
  transition-duration: 0.3s;
  box-shadow: 0px 10px 10px #00000008;
}
.dash_test_inner:hover{
  border: 1px solid #9ebdd4;
  box-shadow: 0 0 10px #0000000f;
}

/* DASHBOARD-TEST-LIST-END */


.series_heading{
  border-bottom: 1px solid #ccc;
  font-size: 28px;
  font-family: outfit-semibold;
}
.series_heading .series_head_inner{
    font-family: outfit-regular;
    color: #509b06;
    display: flex;
    align-items: center;
    font-size: 23px;
}
.series_heading .free_box{
  background-color: #65cb01;
  color: #fff;
  font-size: 16px;
  padding: 3px 15px;
  border-radius: 5px;
  margin: 0 0 0 10px;
  line-height: normal;
}

.backtodashboard_btn{
  background-color: #e1e1e1;
  font-size: 14px;
  padding: 8px 20px;
  text-decoration: none;
  border-radius: 8px;
  color: #000;
  line-height: normal;
  transition-duration: 0.3s;
}
.backtodashboard_btn:hover{
    background-color: #f4d67d;
}
.dashboard_main .backtodashboard_btn {
    padding: 7px 20px;
    margin: 0 0 0px 0;
    display: inline-block;
    font-size: 16px;
    line-height: normal;
}

.coin_and_badge{
    display: flex;
    flex-wrap: nowrap;
    width: 140px;
    gap: 7px;
    position: absolute;
    left: 15px;
    background: #f8f9fa;
    border-radius: 30px;
    padding:0px 5px;
    right: 0;
    justify-content: center;
    bottom:-14px;
    border: 1px solid #ffc108;
    align-items: center;
}
.coin_and_badge img{
    max-height: 31px;
    width:auto !important;
}
.coin_box img{
    max-height: 37px;
    width:auto !important;
}
.exam_marks_box{
    display: flex;
    justify-content: space-between;
}
.coin_box{
    font-family:outfit-medium;
    font-size:13px;
    display: flex;
    align-items: center;
}
.answer_option{
    border: 1px solid #dedede;
    padding: 12px;
    width: 100%;
    justify-content: flex-start;
    display: flex;
    gap: 10px;
    font-size: 16px;
    align-items: center;
    font-family: outfit-regular;
    border-radius: 10px;
    margin: 0 0 10px 0;
    background-color:#66cc0008;
    transition-duration:0.7s;
}
.answer_option:hover{
    background-color:#66cc0017;
}
.answer_option_inner .answer_option p{
    margin: 0;
}
.question-box_inner .progress .progress-bar{
    font-size: 9px !important;
}
/* TEST-SERIES-START */

.series_mainbox .dash_test_inner .card-title{
background-color: #fff6db;
  padding: 10px;
  border-radius: 7px;
}

/* TEST-SERIES-START */

/* SUBJECTIVE-START */
.subject_greenbox{
    background-color: #65cc00;
    padding: 20px 80px 20px 80px;
    border-radius: 0 0 50px 50px;
    margin: -30px 0 35px 0;
    color: #fff;
    font-family: outfit-semibold;
    font-size: 20px;
    text-shadow: 3px 3px 3px #0000001c;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}
.card{
    padding: 10px;
    border-radius: 20px;
}
.subject_greenbox .timber_box{
    float: right;
    display: flex;
    align-items: center;
}
/* .subject_greenbox .timber_box span{
    background-color: #fff6db;
    color: #000;
    padding: 7px 30px;
    margin: 0 0 0 10px;
    border-radius: 110px;
    text-shadow: none;
    width: 160px;
    float: right;
    text-align: center;
    line-height: normal;
} */
.subject_greenbox .timber_box span{
    background-color: #fff6db;
    color: #000;
    padding: 7px 15px;
    margin: 0 0 0 10px;
    border-radius: 110px;
    text-shadow: none;
    width: auto;
    float: right;
    text-align: center;
    line-height: normal;
}
.subject_pdf_box iframe{
    border: 4px solid #fff;
    width: 100%;
    min-height: 600px;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 0 20px #0000001f;
}
/* SUBJECTIVE-END */

.big_button{
    background-image: linear-gradient(to top, #346f9b, #4886b2);
    padding: 5px 13px 5px 30px;
    border-radius: 100px;
    border: 0;
    color: #fff;
    font-size: 18px;
    width: auto;
    font-family: outfit-medium;
    transition-duration: 0.3s;
    align-items: center;
    display: flex;
    align-items: center;
}
.big_button:hover {
    background-image: linear-gradient(to top, #4886b2, #346f9b);
}
.big_button span {
  width: 35px;
  height: 35px;
  background: linear-gradient(180deg, rgba(108, 182, 235, 1) 0%, rgba(67, 145, 201, 1) 100%);
  float: right;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin:0px 0 0px 10px;
}

.big_button span img {
    max-height: 18px;
}
.attempt_btn_box{
    border-bottom: 1px solid #ccc;
}
.attempt_btn_box a{
background-color: #E3E3E3;
  float: left;
  padding: 10px;
  font-size: 19px;
  color: #000;
  text-decoration: none;
  padding: 10px 40px;
  margin: 0 10px 0 0;
  border-radius: 10px 10px 0 0;
  transition-duration: 0.3s;
  position: relative;
}
.attempt_btn_box .attempt_select{
background-color: #FFC107;
}
.attempt_btn_box .attempt_select::before{
  content: "";
  background-color: #FFC107;
  position: absolute;
  left: 0;
  right: 0;
  width: 30px;
  height: 16px;
  clip-path: polygon(49% 100%, 0 0, 100% 0);
  margin: 0 auto;
  bottom: -15px;
}
/* MCQ Test Start */

.question-card .badge {
    margin-right: 0.6rem;
    font-size: 1.1rem;
    padding: 10px 10px;
    letter-spacing: 1px;
    background-color: #66cc0029;
    color: #000;
}
.Question_box{
    font-size:18px;
    font-family:outfit-medium;
    text-align:start;
    line-height: normal;
}
.Question_box img{
    width: 100%;
    max-width: 100%;
    height: auto;
}
.answer_option p{
    margin: 0 0 10px 0;
}
.answer_option_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.answer_option span{
    margin: 0px 10px 0px 0px;
    font-family: outfit-semibold;
    font-size: 14px;
    background: #67cc013b;
    width: auto;
    height: auto;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 9px;
}
.answer_option_inner .form-check-label{
     font-family:outfit-regular;
     font-size:14px;
}
.question-card .form-check-input {
    width: 17px;
    height: 17px;
    margin-top: 0.2em;
    cursor: pointer;
}
.answer_option_inner .form-check-input:checked {
    background-color: #66cc00;
    border-color: #66cc00;
}
.answer_option_inner .form-check-input:focus {
    border-color: #66cc004a;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(102 204 1 / 26%);
}
.question-box_inner{
    width: 100%;
    margin: 0px 0px 0px 0px;
    position: relative;
    background: #fff;
    padding: 25px 25px 25px 50px;
    border-radius: 10px;
}
.question_img_icon {
    max-height: 220px;
    position: absolute;
    left: -65px;
    bottom: 22%;
}
.question-box_inner .progress{
    margin:0px 0px 30px 0px;
}
.Question_badge{
    padding: 10px 10px;
    margin: 0 10px 0 0;
    background: #66cc002e;
    border-radius: 10px;
    line-height: normal;
    font-family: outfit-medium;
}
.question-card.active {
    box-shadow: 0px 6px 10px #66cc0026;
    border: 1px solid #66cc00;
}
.question-box_inner .progress .bg-success {
    --bs-bg-opacity: 1;
    background-color: #ECAD2F !important;
}
.question-card{
    border-radius:20px;
    box-shadow: 0 8px 32px rgba(0, 123, 255, 0.10), 0 2px 8px rgba(0, 0, 0, 0.04);
    background: #fff;
    padding: 40px 40px;
    margin-bottom: 2rem;
    transition: box-shadow 0.2s, border 0.2s;
    font-size: 1.22rem;
    border: 1.5px solid #e3e9f7;
}
.save_next_btn{
    padding: 8px 15px;
    background: #dc3545;
    border: 1px solid #dc3545;
    border-radius: 7px;
    color: #fff;
    font-size: 14px;
    line-height: normal;
    font-family: outfit-regular;
}
.sticky-timer{
    /* position: sticky; */
    top: 24px;
    z-index: 10;
    padding: 30px 23px;
    background: #fff;
    border-radius: 10px;
}
.sticky-timer .timer_circal{
    font-size: 30px !important;
    font-family: outfit-bold;
    color: #66cc00 !important;
    padding: 10px;
    border-radius: 70px;
    width: 120px;
    height: 120px;
    align-items: center;
    display: flex;
    text-align: center;
    justify-content: center;
    line-height: normal;
    margin: 20px auto 20px auto;
    background: #fff !important;
    border: 3px solid #66cc01;
	-webkit-animation: timer 1.3s linear infinite alternate-reverse both;
	animation: timer 1.3s linear infinite alternate-reverse both;
}
@-webkit-keyframes timer {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes timer {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.nav-btn {
    width: 33px;
    height: 33px;
    font-weight: bold;
    font-size: 15px;
    border-radius: 6px;
    transition: transform 0.1s, box-shadow 0.15s, background 0.2s, color 0.2s;
    position: relative;
    margin-bottom: 2px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e0e0e0;
    font-family: outfit-regular;
}
.sticky-timer .bg-secondary{
    background-color: #e0e0e0 !important;
    color: #616161 !important;
}
.sticky-timer .nav-btn.btn-current{
    background: #ecad2f !important;
    border: 1.5px solid #c78705;
    color: #fff !important;
}
.sticky-timer .bg-danger {
    background: #dc3545 !important;
    color: #fff !important;
}
.sticky-timer .nav-btn.not-answered {
    background: #dc3545 !important;
    color: #fff !important;
    border: 2.5px solid #dc3545;
}
.sticky-timer  .nav-btn.answered {
    background: #198754 !important;
    color: #fff !important;
    border: 2.5px solid #198754;
}
.sticky-timer .bg-success {
    background: #198754  !important;
}

/* .test_submit_btn{
    background: #ecad2f;
    color: #fff;
    border: 1px solid #ecad2f;
    font-size: 20px;
    line-height: normal;
    padding: 8px 20px;
    border-radius: 6px;
    width: 100%;
    margin: 20px 0 0 0;
} */
/* MCQ Test End */

/* Test Series Payment Start */
.payment_main .payment_sec{
    background-color: transparent;
    border:none;
    border-radius: 10px;
    box-shadow: none;
    padding: 0px;
}
.upload_answer_sheet .form-label{
    font-family:outfit-semibold;
    font-size:16px;
}
.upload_answer_sheet .form-text{
    font-family:outfit-light;
    font-size:14px;
}
/* .payment_main .payment_sec{
    background-color: #fff;
    border: 1px solid #E9ECEF;
    border-radius: 10px;
    box-shadow: 0px 3px 4px #cccccc42 !important;
    padding: 25px;
} */
.payment_main .payment_sec .payment_summary_box{
    width: 100%;
    background-color: #fff;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid #fff;
    transition-duration: 0.3s;
    box-shadow: 0px 10px 10px #00000008;
    margin:15px 0px 0px 0px;
    min-height: 250px;
}
.payment_main .payment_sec .choose_payment_method_box{
    width: 100%;
    background-color: #fff;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid #fff;
    transition-duration: 0.3s;
    box-shadow: 0px 10px 10px #00000008;
    margin:15px 0px 0px 0px;
    min-height: 250px;
}
.payment_summary_box h5{
    background-color: #fff6db;
    padding: 10px;
    border-radius: 7px;
    font-family:outfit-semibold;
    font-size: 18px;
}
.payment_main .payment_sec .payment_summary_box .list-group-item {
    text-decoration: none;
    background-color: transparent;
    border: none;
    margin: 0 0 0px 0;
    border-radius: 5px 5px 0px 0px !important;
    border-bottom: 1px solid #09375826;
    padding: 10px 0 10px 0;
}
.payment_main .payment_sec .payment_summary_box .list-group-item:last-child{
    border-bottom: none;
    padding: 10px 0 0px 0;
}

.payment_main .payment_summary_box .list-group-item span{
    font-family:outfit-light;
    font-size: 14px;
}
.payment_main .payment_summary_box .list-group-item strong{
    font-family:outfit-semibold;
    font-size: 14px;
}
.choose_payment_method_box .form-check-label{
    font-size: 14px;
    font-family:outfit-regular;
}
.input_filed_box{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 0.5px solid #e2e2e2;
    border-radius: 7px;
    height: 34px;
    font-size: small;
    /* box-shadow: 1px 1px 4px 0px #e7eaf0; */
    font-family: outfit-light;
}
.choose_payment_method_box .input_filed_box:focus {
    color: rgb(33, 37, 41);
    background-color: rgb(255, 255, 255);
    box-shadow: none;
    border-color: rgb(134, 183, 254);
    outline: 0px;
}
.proceed_to_pay_btn{
    background: #65cb01;
    color: #fff;
    border: 1px solid #65cb01;
    font-size: 16px;
    line-height: normal;
    padding: 8px 20px;
    margin: 20px 0 0 0;
    font-family: outfit-regular;
    border-radius: 30px;
}
.choose_payment_method_box #coupon_field, #coinUsageInfo{
    background: #0835550a;
    padding: 10px;
    border-radius: 5px;
}
.payment_summary_box .form-check-input[type=radio] {
    border-radius: 50%;
    margin-top: 7px;
}
.choose_payment_method_box .text-info{
    font-size:14px;
    color: #000 !important;
}
.choose_payment_method_box .text-info #coinUsageAmount{
    font-size:14px;
    color: #80d52c;
    font-family:outfit-medium;
}
.choose_payment_method_box .input_filed_box{
    font-size:15px;
}
.choose_payment_method_box label{
    font-size: 14px;
    margin: 0 0 5px 0;
    line-height: normal;
    font-family: 'outfit-medium';
}
.payment_sec .choose_payment_method_box .form-check-input:checked {
    background-color: #65cb01;
    border-color: #65cb01;
}
.heading_box{
    display: flex;
    align-items: center;
    gap: 19px;
}
.heading_box{
    display: flex;
    align-items: center;
}
.paid_price{
    color: #000;
    background-color:#ffc107;
    font-size: 16px;
    padding: 5px 15px;
    border-radius: 6px;
    margin: 0 0 0 10px;
    font-family:outfit-regular;
}
/* Test Series Payment End */


/* TABLE-DESIGN-START */
.table_design thead{
  background-color: #6FB72D;
  color: #fff;
}
.table_design thead th{
  background: none;
  color: #fff;
}
/* TABLE-DESIGN-END */


/* Filter Box Start */
.filter_box {
    background-color: #e4eaf7;
    padding: 8px;
    border-radius: 10px;
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
}
.filter_form form{
    display: flex;
    align-items: end;
    gap: 20px;
    background: #fff;
    padding: 25px 30px 30px 30px;
    border-radius: 10px;
    box-shadow: 0px 3px 10px #00000005;
}
.filter_icon {
    background-color: #f6f9ff;
    padding: 13px;
    border-radius: 10px;
}
.filter_icon{
    width: 60px;
}
.form_select_box{
    width:37%;
}
.filter_form .start_test_btn{
    width: 140px;
}
.filter_form .form-label{
    width: 100%;
    text-align: left;
    font-family: outfit-medium;
    font-size: 15px;
    margin: 0 0 4px 0;
}
.filter_form .form-select{
    font-size:13px;
    font-family:outfit-light;
    padding: 8px 10px;
}
.filter_form .form-select:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0px 0px 0px 0px rgba(13, 110, 253, .25);
}
.filter_box .form-select {
    background-color: #FFF;
    border: 0.5px solid #e2e2e2;
    border-radius: 7px;
    height: 40px;
    font-size: small;
    box-shadow: 1px 1px 4px 0px #e7eaf0;
}
/* Filter Box Start */

/* Popup Start */
/* .annimation_popup_box{
    position: fixed;
    z-index: 999999;
    background: #00000078;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.annimation_popup_inner{
    background: #fff;
    border-radius: 20px;
    z-index: 999999;
    position: absolute;
    padding: 20px;
}
.annimation_popup_inner span{
    color: #ff5757;
    font-family: outfit-semibold;
}
.annimation_popup_inner h2{
    font-size:35px;
    text-align:center;
    margin:20px 0px 10px 0px;
}
.annimation_popup_inner p{
    font-size:17px;
    text-align:center;
}
.annimation_popup_inner img{
    max-width: 330px;
} */

/* Popup Start */
.popup-overlay {
    /* display: none; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
  }
.annimation_popup img {
    width: 100%;
    max-height: 200px;
    width: auto;
    text-align: center;
    margin: 0 auto;
}
    .annimation_popup span{
        color: #ff5757;
        font-family: outfit-semibold;
    }
    .annimation_popup h2{
        font-size:35px;
        text-align:center;
        margin:20px 0px 10px 0px;
    }
    .annimation_popup p{
        font-size:17px;
        text-align:center;
    }
  .popup-box {
    background: #fff;
    width: 90%;
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease;
    text-align: center;
  }

  .annimation_popup .close-btn {
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    width: 34px;
    height: 34px;
    background: #6cce0b;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 11px 0 20px;
}

  @keyframes fadeIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
/* Popup End */

.line_graph_box img{
    border-radius: 10px;
    box-shadow: 0px 10px 10px #00000008;
}

.select_series_filter_box{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}
.select_series_filter{
    width: 47%;
    background: #ffffff;
    padding: 7px 10px;
    border-radius: 10px;
    margin: 10px 0px 10px 0;
}
.select_series_filter form{
    display: flex;
    align-items: center;
    gap: 15px;
}
.select_series_filter .clear_btn{
    background: #6c757d;
    color: #fff;
}
.select_series_filter select{
    padding: 5px 20px 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    width: 55%;
    background-position: 96% 50%;
    cursor: pointer;
}
.select_series_filter button{
    padding: 3px 5px;
    font-size: 14px;
    border-radius: 14px;
    background: #e1e1e1;
    border: none;
    width: 100px;
}
.select_series_filter button:hover{
    background: #e1e1e1;
}


.select_series_filter .form-select:focus {
    border-color: #65cb01;
    outline: 0;
    box-shadow: none;
}

.forgot_pass_main .alert-success{
    font-size: 14px;
    padding: 10px 10px;
    width: 100%;
    text-align: center;
}
.question-card .divider{
    margin: 12px 0 12px 0;
    border: none;
    border-top: 1.5px solid #e3e9f7;  
}  
.payment_summary_box .alert-info{
    margin-bottom: 15px;
    padding: 6px 10px;
    font-size: 13px;
    background: #66cc000f;
    border: 1px solid #66cc01;
    color: #083555;
}

/* new pages start */
.header_logo .top_header_logo {
    display: block !important;
}
.main_pages_header{
    box-shadow: 2px 2px 17px #00000012;
}
.main{
    margin:0px 0 0 0;
    width: 100%;
    float: left;
    padding: 60px 0 0 0;
}
.pricing_main {
    padding: 60px 0px 60px 0px;
    background: linear-gradient(180deg, rgba(241, 248, 252, 1) 0%, rgba(227, 227, 227, 0) 100%);
    margin: 60px 0 0 0;
}
.pricing_box{
    background: #fff;
    box-shadow: 0px 10px 10px #00000014;
    padding:26px;
    border-radius: 20px;
    min-height: 435px;
    text-align: center;
}
.product_type{
    font-size: 35px;
    text-align: center;
    text-transform: uppercase;
    font-family: OUTFIT-BLACK;
    color: #00000014;
    line-height: normal;
}
.Pricing_count{
    font-size: 35px;
    text-align: center;
    text-transform: uppercase;
    font-family: OUTFIT-BLACK;
    color: #000;
    margin: 10px 0 30px 0;
    line-height: normal;
}
.pricing_box ul{
    margin: 14px 0 10px 0;
    padding: 0px;
    min-height: 160px;
}
.pricing_box ul li{
    background-image: url(../images/right-tick.png);
    background-size: 15px;
    background-position: 0px 13px;
    background-repeat: no-repeat;
    list-style: none;
    padding: 10px 0 10px 25px;
    line-height: normal;
    text-align: left;
}
.pricing_box .age{
    text-align: center;
    background: #f0ffe0;
    padding: 4px 0;
    margin: 20px 0 0 0;
}
.pricing_box .age span{
    font-family:outfit-bold;
}
.pricing_box .get_started_btn{
    border-radius: 30px;
    padding: 8px 30px;
    line-height: normal;
    margin: 0 0 0px 0;
    background: #f9dfcf;
    font-family: outfit-regular;
    text-decoration: none;
    color: #000;
    font-size: 16px;
}


.main .why_choose_us_sec{
    background: #fff;
    padding: 60px 0 60px 0;
}
.main .why_choose_us_sec:after{
    display:none;
}


.terms_and_conditions_main{
    padding: 0 0 60px 0;
}
.terms_and_conditions_box{
    display: flex;
    align-items: center;
    /* background: #d6fbb12e; */
    padding: 20px;
    border-radius:0px;
    gap: 30px;
    margin: 0px 0 0px 0px;
}
.terms_and_conditions_box a{
    color: #66cc00;
}
.conditions_number{
    background: #1b4260;
    max-width: 40px;
    max-height: 40px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 -43px;
    border-radius: 50px;
    min-width: 40px;
    min-height: 40px;
    font-size: 20px;
}

/* .terms_and_conditions_box{
    background: rgb(239, 246, 251);
} */

.terms_and_conditions_box:nth-child(odd) {
    /* background: #d6fbb12e; */
    border-bottom: 1px solid #66cc00;
}

.terms_and_conditions_box:nth-child(even) {
    /* background: rgb(239, 246, 251); */
    border-bottom: 1px solid #093556;
}
.contact-us_box{
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 10px #0000001a;
    padding: 30px;
}
.main .premium_plans_section{
    padding:0px 0px 10px 0px;
}

.about_us_section {
    padding: 60px 0px 60px 0px;
    background: #EFF6FB;
    background: linear-gradient(270deg,rgba(239, 246, 251, 1) 0%, rgba(255, 255, 255, 1) 100%);
    clip-path: polygon(0 0, 100% 12%, 100% 88%, 0 100%);
}
.about_us_section .img_box {
    text-align: center;
    background-image: url(../images/bg-circal.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.about_us_section img{
    max-height: 400px;
}
.about_us_left{
    padding: 0 0 0 30px;
}

.what_we_offer_section {
    padding: 60px 0px 60px 0px;
    background-image: url(../images/what-we-offer.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.inner_we_offer_box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.we_offer_box{
    color: #fff;
    width: 31%;
    background: #ffffff14;
    padding: 15px;
    border-radius: 10px;
    min-height: 150px;
    margin: 0 0 0px 0;
    transition-duration:0.7s;
    border: 1px solid #ffffff8f;
}
.our_mission_section{
    padding: 30px 0 60px 0;
}
.we_offer_box:hover{
    border: 1px solid #66cc01;
}
.we_offer_box .we_offer_heading{
    text-align: center;
    font-family:outfit-semibold;
    font-size: 20px;
    line-height: normal;
    margin: 0 0 15px 0;
}
.we_offer_box .we_offer_text{
    text-align: center;
    font-size:14px;
    font-family:outfit-regular;
}
.about_why_choose{

}
.about_why_choose .why_choose_us_box {
    line-height: normal;
    width: 48%;
    min-height: 70px;
    display: block;
}

.about_why_choose .why_choose_us_inner {
    gap: 20px;
}
.about_why_choose .why_choose_us_box:nth-child(even){
    background: linear-gradient(180deg, rgba(248, 248, 248, 1) 67%, rgba(227, 227, 227, 1) 100%);
    border: 1px solid #e7e7e7;
}
.footer_inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_menu_box ul{
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
}
.footer_menu_box ul li{
    list-style:none;
}
.footer_menus{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0px;
    font-size: 14px;
}

.terms_and_conditions_box p {
    margin: 0;
}
.innerbanner_section {
    padding: 30px 0px 30px 0px;
    position: relative;
    background: #f4f9ff;
    margin: 78px 0 0 0;
    min-height: 120px;
}
.innerbanner_section::after{
    position: absolute;
    content:"";
    left:0px;
    top:0px;
    bottom: 0px;
    background-image:url('../images/breadcrumb-shape-1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 150px;
    height: 100%;
}
.innerbanner_section::before{
    position: absolute;
    content:"";
    right:0px;
    top:0px;
    bottom: 0px;
    background-image:url('../images/breadcrumb-shape-2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 150px;
    height: 100%;
}
.banner_heading{
    font-size: 35px;
    font-family: outfit-bold;
    text-align: center;
}
.breadcrumb{
    text-align: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    line-height: normal;
    margin:10px 0px 0px 0px;
}
.breadcrumb a{
    color: #66cc00;
    text-decoration: none;
    font-size:14px;
    margin: 0 10px 0 10px;
    line-height: normal;
}
.breadcrumb .home_page{
    font-family:outfit-semibold;
    color: #000;
}


/* Contact Us Start */
.contact-content {
    display:flex;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-content .contact-form {
    background: #eff6fb;
    padding: 40px;
    border-radius: 10px;
    /* box-shadow: 0px 7px 10px #0000000d; */
    backdrop-filter: blur(10px);
    width: 55%;
}
.contact-content .contact-info {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    /* border-radius: 15px; */
    /* box-shadow: 0 15px 35px rgba(0,0,0,0.1); */
    backdrop-filter: blur(10px);
    width: 45%;
}
.contact-content .form-group {
    margin-bottom: 20px;
}

.contact-content .form-group label {
    display: block;
    margin-bottom: 3px;
    color: #111;
    font-family: outfit-regular;
    font-size: 15px;
}

.contact-content .form-group input,
.contact-content .form-group select,
.contact-content .form-group textarea {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    font-size: 14px;
    font-family: outfit-light;
    
}

.contact-content .form-group input:focus,
.contact-content .form-group select:focus,
.contact-content .form-group textarea:focus {
    outline: none;
    border:1px solid #7ac943;
    background: white;
}

.contact-content .form-group textarea {
    resize: vertical;
    min-height: 80px;
}
.submit-btn{
    border-radius: 8px;
    background-color: #66cc00;
    padding: 8px 20px;
    border: none;
    width: auto;
    color: #fff;
    margin: 0 0 0px 0;
    font-size: 18px;
}
.contact-content .submit-btn:hover {
    background-color: #66cc00;
}
.contact-content .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: #eff6fb;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.contact-content .contact-item:last-child{
    margin-bottom: 0px;
}
.contact-content .contact-item:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateX(5px);
}

.contact-content .contact-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    padding: 10px;
}

.contact-content .contact-details h3 {
    color: #000;
    margin-bottom: 5px;
    font-size: 16px;
    font-family: outfit-medium;
}

.contact-content .contact-details p {
    color: #000;
    margin: 0;
    font-size: 14px;
    font-family: 'outfit-light';
}
.contact-content .contact-details p a{
    text-decoration:none;
    color:#000;
}
.contact-content .hours-section {
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.contact-content .hours-section h2 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.hours-section .hours-grid {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
    margin: 40px 0 0 0;
    justify-content: space-between;
}

.hours-section .hours-item{
    background: #eff6fb;
    padding: 22px 15px 15px 15px;
    border-radius: 10px;
    width: 31%;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.hours-section .hours-item h3{
    background: #ccc;
    padding: 5px 25px;
    font-size: 16px;
    border-radius: 30px;
    margin:-50px auto 0px auto;
    width: auto;
    background: linear-gradient(180deg, rgba(249, 128, 43, 1) 0%, rgba(247, 95, 136, 1) 100%);
    color: #fff;
}
.hours-section .hours-item .time_heading{
    width: 100%;
}
.hours-section .hours-item .time_heading{
    width: 100%;
}
.time_heading{
    font-size:16px;
    font-family:outfit-medium;
}
.time_text{
    font-size:14px;
    font-family:outfit-light;
    width: 100%;
    text-align: center;
}
.contact-content .success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    display: none;
}
/* Contact Us End */
.test_filter_box{
    padding: 7px 10px;
    float: left;
    width: 100%;
    border-radius: 10px;
    background: #ffffff;
}
.test_filter_box input{
    padding: 4px 8px;
    font-size: 13px;
}
.test_filter_box select{
    padding: 4px 8px;
    font-size: 13px;
}
.test_filter_box .form-control:focus {
    border:1px solid #65cc00;
    outline: 0;
    box-shadow:none;
}

.test_filter_box select:focus {
    border:1px solid #65cc00;
    outline: 0;
    box-shadow:none;
}
.test_filter_box .btn{
    padding: 4px 16px;
    font-size: 13px;
    border-radius: 20px;
    background: #e1e1e1;
    border: none;
    color:#000;
}
.test_filter_box button:hover{
    background: #e1e1e1;
    color:#000;
}
.test_filter_box .clear_btn{
    background: #6c757d;
    color: #fff;
}
.test_filter_box .clear_btn:hover{
    background: #6c757d;
    color: #fff;
}

.profile_update_successfully .modal-header{
    background-color: #65cc00 !important;
    padding: 7px 10px 7px 10px;
    border-radius: 5px;
}
.profile_update_successfully .modal-content{
    padding:10px;
    border-radius: 13px;;
}
.profile_update_successfully .small, small {
    font-size: 100%;
    font-weight: 400;
}

.line_graph_sec{
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0px 10px 10px #00000008;
}
.line_graph_sec select {
    padding: 5px 20px 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    width: 60%;
    background-position: 96% 50%;
    margin: 0 0 0 6px;
}
.line_graph_sec .form-select:focus {
    border-color: #65cb01;
    outline: 0;
    box-shadow: none;
}
.subjectandtype_select{
    padding: 10px;
    background: #0a456f08;
    border-radius: 5px;
    font-size: 14px;
}
.subjectandtype_select label{
    display: inline-block;
    width: 100px;
}
.marks_details_table thead tr th:first-child{
    border-radius: 10px 0px 0px 0px;
}
.marks_details_table thead tr th:last-child{
    border-radius: 0px 10px 0px 0px;
}
.marks_details_table{
    border-radius:10px;
}

.marks_details_table tr:last-child {
    /* border-bottom: none; */
    border-radius: 10px;
}
.marks_details_table table tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}
.marks_details_table table tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}
.marks_details_table thead tr th{
    background-color: #6FB72D;
    color: #fff;
}
.marks_details_table tr td{
    text-transform: lowercase;
}
.password_filed{
    position: relative;
}
.password_filed .hide-show{
    position: absolute;
    top: 40px;
    right: 15px; 
    width: 18px;
    height: 18px; 
    cursor: pointer;
}
footer .footer_link:last-child:after{
    display:none;
}
.re_upload_btn{
    padding: 5px 13px !important;
    font-size: 13px !important;
    border-radius: 30px !important;
    line-height: normal !important;
}


.middle_box .error_popup {
    position: fixed !important;
    left: 0;
    right: 0;
    top: 40%;
    border: 0;
    width: 400px;
    background: #fff;
    z-index: 99;
    padding: 27px !important;
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
    box-shadow: 0px 1px 10px #00000036;
    border-radius: 15px !important;
    color: #222 !important;
    border-left: 4px solid #dc3545 !important;
}

.middle_box .success_popup {
    position: fixed !important;
    left: 0;
    right: 0;
    top: 40%;
    border: 0;
    width: 400px;
    background: #fff;
    z-index: 99;
    padding: 27px !important;
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
    box-shadow: 0px 1px 10px #00000036;
    border-radius: 15px !important;
    color: #222 !important;
    border-left: 4px solid #28a745 !important;
}

.fade-message {
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

  @media (min-width: 1920px){
    .left_box_blue{
        width: 31% !important;
    }
  }

  @media (min-width: 1600px){
    .left_box_blue{
        width: 27%;
    }
  }

  @media (max-width: 1399.98px){
    .left_box_blue{
        width: 27.5%;
    }
  }
  @media (max-width: 1299.98px){
    .left_box_blue{
        width: 25.8%;
    }
    .result_img_box{
        display: none;
    }
    .filter_result_box{
        gap: 10px;
    }
  }


  @media (min-width: 1299.98px){
    .hero_section_inner{
        min-height: 100vh;
    }
    .login_main_sec .heading{
        font-size: 45px;
    }
    .login_main_sec .heading2{
        font-size: 35px;
    }
    .login_main_sec .heading{
        font-size: 55px;
    }
    .logo_box{
        width: 280px;
    }

  }
  @media (max-width: 1199.98px){
      .why_choose_us_inner{
          gap: 30px;
      }
      .take_a_test_its_free{
          text-align: center;
      }
      .take_a_test_its_free_sec .heading{
          margin: 0 0 13px 0;
      }
      .take_a_test_its_free_sec p{
          margin: 0 0 20px 0;
      }
      .steps_box{
          align-items: center;
          gap: 15px;
      }
      .performance_dashboard_section::before{
          width: 380px;
          height: 250px;
      }
      .performance_dashboard_section::after{
          width: 360px;
          height: 290px;
      }
      .list-unstyled li{
          font-size: 17px;
      }
      .quotations_circal .heading{
          font-size: 20px;
      }
      .quotations_circal .heading .orange_color{
          font-size: 25px;
      }
      .test_submissions_sec .test_submissions_box{
        padding: 20px 10px 10px 10px;
      }
      .edit_profile_main .form-text{
        font-family: outfit-light;
        font-size: 11px;
        position: absolute;
        bottom: -15px;
        left: 0;
        right: 0;
    }
    .profile_email_box{
        position: relative;
    }
    .edit_profile_main .input_filed {
        font-size: 13px;
    }
    .edit_profile_main .select_option {
        font-family: outfit-light;
        font-size: 13px;
    }
    /* Login Screens Flow Start */
    
    .login_mainBox{
        width: 80%;
    }
    .result_count_box span{
        font-size: 30px;
    }
    .result_count_box{
        min-height: 120px;
    }
    .what_we_offer_section .we_offer_box{
        width: 30%;
    }
    .pricing_box{
        padding:14px;
    }
    .subject_greenbox .timber_box span{
        font-size:18px;
    }
    .filter_form form{
        gap: 10px;
        padding: 25px 16px 30px 16px;
    }
    .view_result_btn{
        padding: 5px 9px;
        font-size: 11px;
    }
    .resume_btn{
        padding: 5px 9px;
        font-size: 11px;
    }
    .start_test_box a {
        padding: 5px 9px;
        font-size: 12px;
    }
    .list-unstyled li{
        width:100%;
    }
    .explore_card .card-title{
        font-size: 18px;
        line-height: normal;
    }
    .explore_card p {
        min-height: 140px;
    }
  
  }  
  @media (max-width: 991.98px){
      .hero_sec_left{
          padding: 20px;
      }
      .hero_right_content h1{
          font-size: 22px;
      }
      .hero_right_content h1 span{
          font-size: 38px;
      }
      .hero_right_content p {
          font-size: 16px;
      }
      .banner_image{
          right: -11%;
      }
  
      .heading{
          font-size: 25px;
      }
      .sub_heading {
          font-family: outfit-semibold;
          font-size: 18px;
      }
  
      /* why_choose_us_sec Start */
      .why_choose_us_sec {
          padding: 30px 0 30px 0;
          position: relative;
      }
      .why_choose_us_sec:after{
          background-size: 40px;
          width: 60px;
          height: 60px;
          right: 30%;
          top: 3%;
      }
      .why_choose_us_inner {
          gap: 22px;
      }
      .premium_plans_section{
          padding: 30px 0px 0px 0px;
      }
      .premium_box{
          width: 32%;
          padding: 12px;
      }
      .premium_box .btn{
          margin: 0 0 -36px 0;
      }
      .explore_free_test_top {
          background-size: 130px;
          background-position: 5% 100%;
          padding: 60px 0 0 0;
      }
      .simple_steps_section .design-arrow{
          width: 150px;
      }
      .steps_box {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 20px;
        width: 100%;
    }
      .steps_box .sub_heading{
          text-align: center;
      }
      .steps_box p {
          text-align: center;
      }
      .step-circle{
          margin: -40px 0 0 0px;
      }
      .performance_dashboard_section::before {
          width: 300px;
          height: 200px;
      }
      .performance_dashboard_section::after{
          width: 260px;
          height: 180px;
      }
      .simple_steps_section {
          padding: 30px 0;
      }
      .performance_dashboard_section {
          padding: 30px 0 150px 0;
      }
      .list-unstyled li {
          font-size: 16px;
          padding: 10px 14px;
      }
      .badge_num {
          font-family: outfit-regular;
          font-size: 14px;
      }
      .classes_supported .badge{
          width: 65px;
          height: 65px;
      }
      .classes_supported{
          gap: 10px;
      }
      .quotations_circal .heading {
          font-size: 18px;
          margin: 0 0 10px 0;
      }
      .supported_and_board_classes{
          padding: 30px 0px;
      }
      .our_testimonials_left {
          margin: 0px 0px 0px -30px;
      }
      .our_testimonials_left .testimonials_img img {
          max-height: 90px;
      }
      .our_testimonials_box{
          gap: 20px;
      }
      .our_testimonials_section {
          padding: 30px 0px !important;
      }

    .filter_icon{
        display:none;
    }
    .start_test_btn span{
        width: 18px;
        height: 18px;
        margin: 0 0 0 4px;
        max-width: 18px;
        min-width: 18px;
    }
    .filter_form .start_test_btn {
        width: auto;
        font-size: 12px;
        align-items: center;
        display: flex    ;
       padding: 3px 9px;
    }
    .start_test_btn span img {
        max-height: 10px;
    }
    .filter_form .form-select{
        font-family: outfit-light;
        padding: 3px 10px;
        font-size: 12px;
    }
    .filter_form .form-label {
        font-size: 13px;
        margin: 0 0 1px 0;
    }
    .filter_form form{
        gap: 5px;
        padding: 5px 12px 15px 12px;
    }
    .form_select_box {
        width: 40%;
    }
    .explore_card .card-title{
        min-height: 90px;
        min-height: 90px;
        display: flex    ;
        align-items: center;
        justify-content: center;
    }
    .explore_card p {
        min-height: 95px;
    }
    .explore_free_test_inner{
        padding: 30px 0 60px 0;
    }
    .owl_slider_series .explore_card{
        width: 100%;
    }
    .explore_card_main .owl-nav{
        bottom: -20px;
    }
    .logo_box{
        text-align: center;
    }
    /* Dashboard Start */
      .right_box{
        float: right;
        width: 100%;
     }
     .welcome_box .avatar {
        max-height: 70px;
    }
    .heading{
        font-size: 23px;
    }
    .backtodashboard_btn{
        padding: 8px 13px;
        margin: 0 0 0px 0;
        display: inline-block;
        font-size:13px;
    }
    .dash_test_inner{
        border-radius: 10px;
    }
    .series_heading .series_head_inner{
        font-size: 18px;
    }
    .series_heading{
        padding: 0 0 20px 0;
    }
    .text_series_btn_box{
        line-height: normal;
    }
    .test_series_page .dash_heading {
        display: flex;
        align-items: center;
        gap: 10px;
        line-height: normal;
    }
    .series_mainbox .dash_test_inner .card-title{
        font-size: 16px;
    }
    .payment_main .payment_sec .choose_payment_method_box{
        padding: 15px;
        border-radius: 10px;
    }
    .payment_main .payment_sec .payment_summary_box{
        padding: 15px;
        border-radius: 10px;
        margin: 0 0 20px 0;
    }
    .heading_box {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .paid_price{
        padding: 5px 11px;
        font-size: 14px;
        margin:0px;
    }

    /* Dashboard End */
    .hero_sec_right{
        padding: 20px;
    }
    .login_mainBox {
        width: 100%;
    }
    .forgot_pass_main .login_mainBox{
        width: 100%;
    }
    .login_main_sec .hero_sec_vertical::before{
        width: 160px;
        height: 160px;
        background-size: 160px;
        margin: 0 auto;
        left: 0;
        right: 0;
    }
    .login_main_sec .logo_box {
        text-align: center;
    }
    .hero_section_inner {
        display: flex    ;
        flex-wrap: nowrap;
        min-height: 410px;
        flex-wrap: wrap;
    }
    .login_main_sec .hero_sec_left {
        width: 100%;
        padding: 20px;
        margin: 0px;
        border-radius: 0px 0px 20px 20px;
        padding: 20px;
    }
    .login_main_sec .hero_sec_left::after{
        display:none !important;
    }
    .hero_sec_vertical::after{
        display:none;
    }
    .login_main_sec .hero_left_content {
        text-align: center;
        width: 100%;
        display: flex    ;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 20px 0 0 0;
        flex-wrap: wrap;
    }
    
    .login_main_sec .hero_sec_right{
        margin: 0 auto;
        background-color: transparent;
    }
    .form-box .form-label {
        font-size: 14px;
        margin: 0 0 3px 0;
    }
    .login_main_sec .login_container .form-control{
        height: 32px;
    }
    .login_mainBox{
        padding:20px;
    }
    .login_form .form-box .form-control{
        padding: 5px 12px;
    }
    .registrar_main .form-box {
        margin-bottom: 9px;
    }
    .registrar_main .hero_sec_right {
        width: 100%;
        padding: 0px;
        margin: 20px 0 0 0;
    }
    .sticky-timer .timer_circal {
        margin: 0px auto 20px auto;
    }
    .question-box_inner{
        margin: 15px 0 0 0;
    }
    .question_img_icon {
        max-height: 150px;
        left: -50px;
    }
    .question-box_inner{
        padding: 20px 15px 10px 15px;
    }
    .colors_for_status{
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: center;
    }
    .sticky-timer .question-nav-grid{
        display: flex;
        align-items: center;
        gap: 15px;
        justify-content: center;
    }

    .sticky-timer .big_button{
        margin: 20px auto 0 auto;
    }
    .result_answer_box{
        margin: 20px 0px 0px 0px;
        width: 49%;
        padding: 12px;
    }
    .Q_number{
        border-radius: 5px;
        font-size: 13px;
        margin: 0 8px 0 0;
        padding: 5px;
    }
    .result_answer_box .list-group .list-group-item{
        margin: 0 0 6px 0px;
        padding: 5px 10px;
    }

    .result_icons{
        max-width: 12px;
        border-radius: 50px;
        margin: 0 5px 0 0px
    }
    .result_answer_box .list-group .not-attempted{
        font-size: 10px;
        padding: 4px 0;
    }
    .result_answer_box h5{
        font-size: 14px;
        border-bottom: 1px solid #9eaec070;
    }
    .ans_num{
        font-size: 13px;
        font-family: outfit-regular;
    }
    .result_answer_box span strong{
        font-size: 11px;
        margin: 0 0 0 0px;
    }

    .result_answer_box span{
        flex-wrap: wrap;
    }
    .subject_greenbox{
        padding: 20px 50px 20px 50px;
    }
    .subject_greenbox{
        font-size:20px;
    }
    .what_we_offer_section .we_offer_box {
        width: 48%;
        min-height: 140px;
    }
    .what_we_offer_section .inner_we_offer_box{
        gap: 25px;
    }
    .why_choose_us_sec img{
        display: none;
    }
    .pricing_box{
        margin: 0 0 30px 0;
        min-height: inherit;
    }
    .pricing_main{
        padding: 30px 0px 40px 0px;
        margin: 30px 0 0 0;
    }
    /* main .contact-content{
        flex-direction: column-reverse;
    }
    main .contact-content .contact-info{
        width: 100%;
        padding: 20px 0 10px 0;
    }
    main .contact-content .contact-item{
        width: 100%;
    } */
    .select_borad_class_box .filter_form .btn-secondary{
        font-size: 12px;
        padding: 5px 9px;
        line-height: normal;
    }
    .contact-content .contact-info{
        padding: 20px 0 0 0 !important;
        width: 100% !important;
    }
    .contact-content .contact-icon{
        width: 40px;
        height: 40px;
        margin-right: 10px;
        padding: 7px;
    }
    .contact-content .contact-form{
        padding: 20px !important;
        width: 100% !important;
    }
    .contact-content .contact-item{
        margin-bottom: 15px !important;
        padding: 10px;
    }
    .contact-content {
        flex-direction: column-reverse;
    }
    .select_series_filter{
        width: 50%;
    }
    .select_series_filter form {
        gap: 10px;
        justify-content: space-between;
    }
    .select_series_filter button{
        font-size: 13px;
    }
    .start_test_btn span{
        margin: 4px 0 0 4px;
    }
    .explore_card{
        width: 43%;
    }
    .dash_test_main{
        gap: 13px;
    }
    .footer_inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .inner_header {
        padding: 15px 0px;
    }
    .footer_menu_box ul{
        justify-content: center;
    }
    .test_submissions_sec .owl-nav{
        gap: 15px;
        top: -36px;
    }
    .enrolled_test_series_main .enrolled_test_main .owl-nav{
        top: -36px;
    }
    .test_submissions_sec .owl-prev{
        width: 22px;
        height: 22px;
    }
    .test_submissions_sec .owl-next{
        width: 22px;
        height: 22px;
    }
    .enrolled_test_series_main .owl-prev{
        width: 22px;
        height: 22px;
    }
    .enrolled_test_series_main .owl-next{
        width: 22px;
        height: 22px;
    }
    .available_test_series_box .owl-prev{
        width: 22px;
        height: 22px;
    }
    .available_test_series_box .owl-next{
        width: 22px;
        height: 22px;
    }
    .dash_heading {
        font-size: 22px;
    }
    .subjective_mcq_colors{
        justify-content: center;
        align-items: center;
        font-size: 14px;
        display: flex;
        margin: 20px 0 0 0;
    }
    .subjective_mcq_colors span{
        width: 13px;
        height: 13px;
    }
    .premium_box ul{
        min-height: 130px;
    }
  }
  @media (max-width: 767.98px){
    .inner_header{
          padding: 15px 0px;
    }
    .login_main_sec .hero_sec_right{
        width: 70%;
        margin: 20px auto 0 auto;
    }
    .hero_sec_left{
          border-radius: 0px 0px 0px 50px;
    }
    .login_main_sec .hero_sec_left_inner{
        height: inherit;
    }
    .logo_box {
        text-align: center;
        margin: 0 0 0px 0;
    }
    .hero_sec_right{
        border-radius: 0px 0px 50px 0px;
    }
    .hero_sec_left::after {
        width: 70px;
        height: 70px;
        background-size: 70px;
        left: 7px;
        transform: rotate(-20deg);
        bottom: -10px;
    }
    .hero_right_content h1{
        font-size: 17px;
    }
    .hero_right_content h1 span{
        font-size: 34px;
    }
    .hero_right_content p {
        font-size: 14px;
    }
    .hero_left_content p {
        font-family: outfit-light;
        font-size: 14px;
    }
    .hero_left_content .sub_heading {
        font-size: 16px;
    }
    .header_btn .btn{
        padding: 6px 14px;
    }
    .hero_right_content {
        bottom: 35%;
        left: 10%;
    }
    .hero_sec_left_inner .logo_box img{
        max-height: 60px;
    }
    .banner_image {
        right: 0%;
    }

    /* why_choose_us_sec Start */
    .why_choose_us_inner {
        gap: 20px;
    }
    .why_choose_us_box{
        width: 100%;
        font-size: 16px;
        padding: 11px;
    }
    .why_choose_us_sec:after {
        right: 15%;
        top: 6%;
    }

    .explore_free_test_top {
        padding: 60px 0 0 0;
        background-image: none;
    }
    .performance_dashboard_section::after{
        display:none;
    }
    .simple_steps_section {
        padding: 30px 0;
    }
    .premium_icon img {
        max-height: 45px;
    }
    .premium_icon{
        width: 75px;
        height: 75px;
    }
    .premium_box_inner {
        flex-wrap: wrap;
    }
    .premium_box {
        width: 47%;
        padding: 12px;
    }
    .simple_steps_section .design-arrow{
        display:none;
    }
    .steps_box {
        margin: 10px 0 40px 0;
    }
    .performance_dashboard_section::before{
        display:none;
    }
    .performance_dashboard_section {
        padding: 30px 0 30px 0;
    }
    .list-unstyled {
        display: flex    ;
        justify-content: center;
        gap: 7px;
    }
    .list-unstyled li {
        width: 48%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .quotations_circal{
        background-image: none;
        min-height: inherit;
        color: #fff;
    }
    .quotations_circal .heading br{
        display:none;
    }
    .quotations_circal .heading {
        font-size: 25px;
        margin: 0 0 10px 0;
    }
    /* .step-circle{
        min-height: 50px;
        min-width: 50px;
        font-size: 20px;
        max-height: 50px;
    } */
    .our_testimonials_inner .owl-nav{
        margin: 10px 0px 0px 0px;
    }

    /* Dashboard Start */
    .series_head{
      font-size: 14px;
    }
    .series_count{
      font-size: 30px;
    }
    .welcome_box h3{
        font-size: 16px;
        height: 37px;
    }
    .welcome_box span{
        font-size: 14px;
    }
    .welcome_box{
        border-radius: 12px;
        padding: 5px 10px;
    }
    .series_list{
        border-radius: 12px;
        min-height: 100px;
    }
    .welcome_box h3 {
        font-size: 17px;
        height: inherit;
    }
    .welcome_box .avatar {
        max-height: 50px;
    }
    .change_pass_img {
        max-height: 130px;
    }
    .dash_heading {
        font-size: 16px;
    }
    .select_series_filter select{
        padding: 5px 30px 5px 10px;
        font-size: 11px;
         width: 50%;
    }
    .instruction_btn_box .big_button{
        margin:0px auto 20px auto;
        float: none;
    }
    .select_series_filter button {
        font-size: 12px;
        padding: 3px 8px;
        width: auto;
    }
    /* Dashboard End */
    .question-box_inner .question-box{
        padding: 15px;
    }
    .question-box_inner .Question_box{
        font-size: 15px;
    }
    .question-box_inner .Question_badge{
        font-size: 14px;
        padding: 5px;
        border-radius: 20px;
    }
    .question-card .divider{
        margin: 0 0 0 0;
    }
    .result_count_box{
        width: 30%;
        min-height: inherit;
    }
    .result_answer_box {
        margin: 15px 0px 0px 0px;
        width: 100%;
        padding: 10px;
    }
    .result_answer_box h5 {
        font-size: 13px;
        border-bottom: 1px solid #9eaec070;
    }
    .filter_result_box {
        flex-wrap: wrap;
    }
    .subject_greenbox .timber_box span{
        width: 100%;
    }
    .subject_greenbox .timber_box{
        float: inherit;
        display: flex    ;
        align-items: center;
        font-size: 18px;
        flex-wrap: wrap;
        justify-content: center;
        flex-wrap: wrap;
    }
    .subject_greenbox .timber_box span{
        margin: 0 0 0 0px;
    }
    .subject_greenbox{
        padding: 6px 50px 12px 50px;
    }

    /* about us start */
    .what_we_offer_section .we_offer_box {
        width: 100%;
        min-height: inherit;
    }
    .we_offer_box .we_offer_heading {
        font-size: 17px;
        margin: 0 0 6px 0;
    }
    .what_we_offer_section .inner_we_offer_box {
        gap: 15px;
    }
    .what_we_offer_section {
        padding: 30px 0px 30px 0px;
    }
    .main .why_choose_us_sec {
        background: #fff;
        padding: 30px 0 30px 0;
    }
    .about_us_section .img_box {
        display: none;
    }
    .our_mission_section {
        padding: 30px 0 30px 0;
    }
    .our_mission_section .img_box{
        display:none;
    }
    .about_us_left {
        padding: 0 0 0 0px;
    }
    .product_type{
        font-size:22px;
    }
    .Pricing_count{
        font-size: 25px;
        margin: 10px 0 20px 0;
    }
    .pricing_box ul li{
        font-size:14px;
    }
    .pricing_box .get_started_btn{
        padding: 6px 25px;
        margin: 0 0 0px 0;
        font-size: 14px;
    }
    .student_login{
        font-size: 13px;
    }
    .student_login{
       font-family: 13px;
    }
    .header_btn {
        gap: 6px;
    }
    .terms_and_conditions_box{
        gap: 15px;
        padding: 20px 0px 20px 0px;
    }
    .conditions_number{
        display: none;
    }
    .terms_and_conditions_box p{
        font-size:14px;
    }
    .terms_and_conditions_box ul{
        margin:0px;
    }
    .terms_and_conditions_box ul li{
        font-size:14px;
    }
    .main{
        padding: 30px 0 0 0;
    }
    .banner_heading{
        font-size: 23px;
    }
    .contact-content .contact-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-content .contact-form,
    .contact-content .contact-info {
        padding: 25px;
    }
    
    .contact-content .header h1 {
        font-size: 2em;
    }
    
    .contact-content .contact-content .hours-grid {
        grid-template-columns: 1fr;
    }
    .coin_and_badge{
        width:120px;
    }
    .dash_test_list{
        width: 48%;
    }
    .test_submissions_box {
        width:47%;
    }
    .hours-section .hours-item h3{
        font-size: 13px;
        padding: 5px 13px;
    }
    .hours-section .hours-item{
        min-height: 100px;
    }
    .time_heading {
        font-size: 14px;
    }
    .time_text {
        font-size: 13px;
    }
    .upload_answer_sheet .form-label {
        font-family: outfit-semibold;
        font-size: 13px;
    }
    .Upload_paper_page .form-control {
        font-size: 13px;
    }
    .Upload_paper_page {
        margin: 55px 0 0 0 !important;
        padding: 15px !important;
    }
    .dashboard_main .backtodashboard_btn{
        margin: 0 80px 0 0;
    }   
  
  } 

  @media (max-width: 575.98px){
      .hero_sec_left {
          width: 50%;
          align-items: center;
          display: flex;
      }
      .login_main_sec .hero_sec_right {
        width: 100%;
        padding: 0;
      }
      .hero_sec_right{
          width:50%;
      }
      .banner_image{
          display:none;
      }
      .header_btn .btn {
          padding: 6px 13px;
          border: 1px solid #fff;
      }
      .hero_sec_left_inner{
          height: 70%;
      }
      .header_btn {
          gap: 8px;
          width: 100%;
          justify-content: space-around;
      }
      .hero_right_content h1 {
          font-size: 15px;
      }
      .hero_right_content h1 span {
          font-size: 30px;
      }
      .inner_header {
          justify-content: center;
          gap: 10px;
      }
      .why_choose_us_inner {
          gap: 14px;
      }
      .why_choose_us_box {
          width: 100%;
          font-size: 14px;
          padding: 10px;
      }
      /* .why_choose_us_box:nth-child(even){
          border: 1px solid #e7e7e7;
          background: #F8F8F8;
          background: linear-gradient(180deg, rgba(248, 248, 248, 1) 67%, rgba(227, 227, 227, 1) 100%);
      } */
      .list-unstyled li{
          font-size: 14px;
      }
      .our_testimonials_box {
          gap: 20px;
          flex-wrap: wrap;
          justify-content: center;
          padding: 20px;
      }
      .our_testimonials_box p {
          text-align: center;
      }
      .our_testimonials_box .sub_heading {
          text-align: center;
      }
      .our_testimonials_left {
          margin: 0px 0px 0px 0px;
      }
      .our_testimonials_inner .owl-item{
          padding: 10px;
      }
      footer {
          padding: 10px 0px;
      }
      footer img{
          max-height: 40px;
      }
      .why_choose_us_sec:after{
          display: none;
      }
      .sticky .inner_header .top_header_logo {
          display: block;
          height: 40px !important;
      }
      .inner_header {
          padding: 5px 0px 11px 0px;
      }
      .list-unstyled li{
          padding: 9px 9px;
      }
      .welcome_box{
        margin: 0 0 20px 0;
      }

      .attempt_btn_box{
        display: flex    ;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .attempt_btn_box a{
        width: 48%;
        padding: 10px 7px;
        text-align: center;
        font-size:15px;
        margin: 0;
    }
    .student_login{
        border: 1px solid #fff;
    }
    .login_main_sec .heading{
        width: 100%;
    }
    .select_series_filter{
        width: 78%;
        margin: 3px 0 9px 0;
        padding: 7px 11px;
    }
    .select_series_filter_box{
        flex-wrap: wrap;
        gap: 0px;
    }
    .colors_for_status .legend-box{
        margin-right: 0px;
        min-width: 13px;
        min-height: 13px;
        max-width: 13px;
        max-height: 13px;
        border-radius: 20px;
    }
    .question_img_icon {
        display: none;
    }
    .series_mainbox .dash_test_inner .card-title {
        font-size: 14px;
    }
    .dash_test_list .total_papers_inner {
        font-size: 13px;
    }
    .subject_greenbox .timber_box span {
        width: auto;
        gap: 15px;
    }
    .live_paper_name{
        justify-content: center;
        margin: 0 0 10px 0;
    }
    .subject_greenbox .timber_box span{
        padding: 7px 20px;
    }
    .subject_greenbox .timber_box{
        font-size: 14px;
    }
    .live_paper_name {
        font-size: 17px;
        width: 100%;
        justify-content: center;
        display: flex;
    }
    .subject_greenbox .timber_box {
        font-size: 14px;
        justify-content: center;
        width: 100%;
        gap: 20px;
    }
    .subject_greenbox{
        margin: -30px 0 15px 0;
    }
    .about_why_choose .why_choose_us_box {
        width: 100%;
        min-height: inherit;
        display: block;
        padding: 19px 10px;
    }
    .about_why_choose .why_choose_us_inner {
        gap: 11px;
    }
    .innerbanner_section{
        min-height: inherit;
        margin: 102px 0 0 0;
        padding: 13px 0px 10px 0px;
    }
    .hours-section .hours-item h3{
        font-size: 11px;
        padding: 5px 10px;
    }
    .upload_answer_sheet .form-text {
        font-size: 12px;
    }
    .colors_for_status{
        gap: 12px;
    }
    .colors_for_status span {
        font-size: 12px;
        margin: 0 0 0 5px !important;
    }
    .sticky-timer .timer_circal{
        border-radius: 15px;
        width: 150px;
        height: inherit;
    }
    .premium_box ul{
        min-height: 120px;
    }
    .step-circle{
        min-height: 50px;
        min-width: 50px;
        font-size: 20px;
        max-height: 50px;
        margin: 0px 0 0 0px;
    }
    .steps_box{
        justify-content: start;
    }
    .steps_box .sub_heading {
        text-align: start;
    }
    .steps_box {
        gap: 21px;
    }
    .explore_card .card-title {
        font-size: 16px;
    }

    
  }

  @media (max-width: 479.98px){
    .premium_box {
        width: 70%;
        padding: 20px;
    }
    .footer_menu_box ul li {
        width: 100%;
        text-align: center;
    }
    footer .footer_link:after{
        display:none;
    }
    footer .footer_link{
        float: left;
        text-align: center;
        width: 100%;
        padding:5px 15px 5px 15px;
    }
      .premium_box_inner {
          gap: 30px;
      }
      .premium_box .btn {
          margin:6px 0 -35px 0;
      }
      .our_testimonials_inner .owl-nav{
          margin: 0px 0px 0px 0px;
      }
      .test_submissions_box {
        width: 100%;
    }
        .logo_box {
        text-align: left;
    }
    .hero_left_content .sub_heading {
        font-size: 16px;
        text-align: left;
    }
    .hero_left_content p {
        font-size: 13px;
        text-align: left;
        line-height: normal;
    }
    .hero_sec_left_inner{
        justify-content: start;
    }
    .hero_left_content {
        text-align: left;
        width: 60%;
    }
    .sticky-timer{
        padding: 20px 15px;
    }
    .result_count_box {
        min-height: inherit;
        width: 31%;
    }
    .result_count_box strong{
        font-size: 11px;
    }
    .result_count_box span {
        font-size: 25px;
    }
    .filter_form form {
        flex-wrap: wrap;
    }
    .filter_form form{
        gap:12px;
        justify-content: center;
    }
    .form_select_box {
        width: 48%;
    }
    .explore_card {
        width: 100%;
    }
    .subjectandtype_select label {
        font-size: 12px;
        width: 88px;
    }
    .line_graph_sec{
        padding: 20px;
    }
    .hours-section .hours-item {
        width: 47%;
        margin: 0 0 17px 0;
    }
    .hours-section .hours-grid{
        justify-content: center;
    }
    .subject_greenbox .timber_box{
        margin: 10px 0 0 0;
    }
    .steps_box {
        justify-content: center;
    }
    .steps_box .sub_heading {
        text-align: center;
    }
    .steps_box {
        gap: 12px;
    }
    .steps_box {
        margin: 0px 0 10px 0;
    }

  }
@media (max-width: 439.98px){
    .premium_box {
        width: 85%;
        padding: 20px;
    } 
}
  
  
  /* Our Testimonials Start */
  .our_testimonials_section{
      padding:60px 0px;
  }
  /* Our Testimonials End */
  
  /* Custom styles for takeatest homepage */
  /* .hero-section {
      min-height: 400px;
      background: linear-gradient(90deg, #0a2a43 50%, #f8f9fa 50%);
  } */
  
  .bg-primary {
      background-color: #0a2a43 !important;
  }
  
  .btn-success {
      background-color: #7ac943;
      border-color: #7ac943;
  }
  .btn-success:hover {
      background-color: #5ea82d;
      border-color: #5ea82d;
  }
  .card {
      border-radius: 1rem;
  }
  footer {
      font-size: 0.95rem;
  }
  
  /* Modal custom styles */
  .modal-content {
      border-radius: 1rem;
  }
  .modal-header {
      border-bottom: 1px solid #e9ecef;
  }
  .modal-title {
      font-weight: bold;
  } 
  
  

/* end */

.brand-accent { color: var(--accent); }

.navbar-brand span { 
    color: var(--primary); 
    font-weight: bold; 
    font-size: 1.5rem; 
}

.navbar-brand .brand-accent { color: var(--accent); }

.btn-accent {
    background: var(--accent);
    color: var(--primary);
    font-weight: bold;
}

.btn-accent:hover { background: #8ed32e; color: var(--primary); }

/* Custom Badge Styles */
.badge-circle {
    width: 64px;
    height: 64px;
}

.badge-icon {
    font-size: 2rem;
}

.badge-bronze { /* Specific color for bronze badge */
     background-color:#b08d57!important;
}

/* Authentication Form Styles */
.auth-card-sm {
    max-width: 400px;
    width: 100%;
}

.auth-card-lg {
    max-width: 500px;
    width: 100%;
}

/* Text Color Utility */
.text-primary-color {
    color: var(--primary);
}

/* Test Page Styles */
.test-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #f8f9fa;
}

.test-header {
    background-color: #fff;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
}
.Upload_paper_page{
    margin:35px 0 0 0;
    border-radius: 20px !important;
    padding: 23px;
}
.Upload_paper_page .form-control:focus {
    outline: none;
    box-shadow:none;
}
.Upload_paper_page  .form-control{
    font-size:14px;
}
.test-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.pdf-container {
    flex: 1;
    height: calc(100vh - 180px);
    overflow: hidden;
    position: relative;
}

.pdf-viewer {
    width: 100%;
    height: 100%;
    border: none;
}

.upload-section {
    display: none;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 2rem auto;
}

.upload-section h2 {
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.upload-section p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.upload-section .form-group {
    margin-bottom: 1.5rem;
}

.upload-section .form-control {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.upload-section .btn-primary {
    background-color: #4299e1;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.upload-section .btn-primary:hover {
    background-color: #3182ce;
}

/* Dashboard Styles */
.dashboard-container {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    color: #2d3748;
    font-size: 1.875rem;
    font-weight: 600;
}

.dashboard-header .btn {
    background-color: #4299e1;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
}

.dashboard-header .btn:hover {
    background-color: #3182ce;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.test-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1.5rem;
    transition: transform 0.2s;
}

.test-card:hover {
    transform: translateY(-2px);
}

.test-card h3 {
    color: #2d3748;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.test-card p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.test-card .test-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.test-card .test-info span {
    color: #718096;
    font-size: 0.875rem;
}

.test-card .btn {
    display: inline-block;
    background-color: #4299e1;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
}

.test-card .btn:hover {
    background-color: #3182ce;
}

.test-card .btn:disabled {
    background-color: #cbd5e0;
    cursor: not-allowed;
}

/* Status Badge Styles */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-badge.not-started {
    background-color: #e2e8f0;
    color: #4a5568;
}

.status-badge.in-progress {
    background-color: #ebf8ff;
    color: #2b6cb0;
}

.status-badge.completed {
    background-color: #f0fff4;
    color: #2f855a;
}

.status-badge.expired {
    background-color: #fff5f5;
    color: #c53030;
}

/* Timer Styles */
.timer {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
}

.timer.warning {
    color: #c53030;
}

/* Upload Timer Styles */
.upload-timer {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.upload-timer.warning {
    color: #c53030;
} 

/* From inline style in Blade view */
.hide-sidebar .sidebar {
    display: none !important;
}

.hide-sidebar .main-content {
    margin-left: 0 !important;
}

/* #timer,
#upload-timer {
    font-size: 1.2rem;
    font-weight: bold;
    color: #dc3545;
} */

#upload-section {
    display: none;
}

.btn-proceed {
    font-size: 1.1rem;
    padding: 10px 30px;
}

/* Badge popup styles */
.earned-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    min-width: 80px;
}

.badge-item img {
    border-radius: 50%;
    border: 2px solid #65cc00;
    margin-bottom: 5px;
}

.badge-item span {
    font-size: 12px;
    color: #333;
    font-weight: 500;
}
/* mcq attempt blade */
.question-nav-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    max-height: 400px;
    overflow-y: auto;
}

.legend-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: inline-block;
}

.bg-purple {
    background-color: #6f42c1;
}

/* Question Container Styling */
.question-box {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 30px 35px;
    background-color: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

/* Question Header */
.question-box h5 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Question Text */
.question-box p {
    font-size: 1.25rem;
    margin: 0 0 10px 0;
}

/* Option Text */
.form-check-label {
    font-size: 1.1rem;
}

/* Bigger Radio Button */
.form-check-input {
    transform: scale(1.3);
    margin-right: 10px;
}

/* Register Popup Styles */
.register-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.register-popup-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
    position: relative;
}

.register-popup-overlay[style*="opacity: 1"] .register-popup-content {
    transform: scale(1);
}

.register-popup-header {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    color: white;
    padding: 25px 30px 20px;
    border-radius: 20px 20px 0 0;
    position: relative;
    text-align: center;
    background: #7ac943;
}

.register-popup-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.popup-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.register-popup-body {
    padding: 30px;
    text-align: center;
}

.popup-icon {
    font-size: 4rem;
    color:#7ac943;
    margin-bottom: 20px;
}

.register-popup-body h4 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.register-popup-body p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.popup-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0;
    padding: 5px 0;
}

.feature-item i {
    color: #28a745;
    font-size: 1.2rem;
    margin-right: 12px;
    min-width: 20px;
}

.feature-item span {
    color: #555;
    font-size: 1rem;
    font-weight: 500;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* .popup-register-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
} */
.register-popup-content .popup-register-btn {
    border-radius: 40px;
    background-color: #66cc00;
    padding: 6px 33px;
    border: none;
    width: auto;
    color: #fff;
    margin: 0 0 20px 0;
    font-size: 16px;
    text-transform: uppercase;
    background: #7ac943;
}
.register-popup-content .popup-register-btn:hover {
    background-color: #000034;
}
 
.popup-login-btn {
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid #667eea;
    color: #667eea;
    background: transparent;
    transition: all 0.3s ease;
}

.popup-login-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .register-popup-content {
        width: 95%;
        margin: 20px;
    }
    
    .register-popup-header {
        padding: 20px 25px 15px;
    }
    
    .register-popup-header h3 {
        font-size: 1.3rem;
    }
    
    .register-popup-body {
        padding: 25px 20px;
    }
    
    .popup-icon {
        font-size: 3rem;
    }
    
    .register-popup-body h4 {
        font-size: 1.5rem;
    }
    
    .register-popup-body p {
        font-size: 1rem;
    }
    
    .popup-actions {
        gap: 12px;
    }
    
    .popup-register-btn,
    .popup-login-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .register-popup-content {
        width: 98%;
        margin: 10px;
    }
    
    .register-popup-header {
        padding: 15px 20px 10px;
    }
    
    .register-popup-body {
        padding: 20px 15px;
    }
    
    .popup-icon {
        font-size: 2.5rem;
    }
    
    .register-popup-body h4 {
        font-size: 1.3rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
}


