body {
  background: #fff;
  color: #1D1D1D;
}

body.noscroll {
  overflow: hidden;
}

* {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  outline: none;
}

p {
  line-height: 24px;
}

h4 {
  font-family: "Montserrat", sans-serif;
}

.m-container {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  z-index: 3;
}

.header-in {
  height: 80px;
  display: flex;
  justify-content: space-between;
  padding: 0 25px;
  transition: .2s ease-in-out;
}

.header-in.active {
  height: 70px;
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}

.header-menu {
  display: flex;
  align-items: center;
}

.menu-in {
  display: flex;
  align-items: center;
  padding: 0 10px;
  cursor: pointer;
  position: relative;
}

.menu-list ul li a {
  color: #949ebd;
  font-size: 13px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 30px;
}

.main-menu {
  display: flex;
  align-items: center;
}

.main-menu ul {
  margin: 0;
  padding: 0;
  /* display: flex;
  align-items: center; */
}

.main-menu ul li {
  list-style: none;
  padding: 0 12px;
  float: left;
}

.main-menu ul li a {
  text-decoration: none;
  color: #1D1D1D;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  padding: 10px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.main-menu ul li a img {
  width: 13px;
  position: absolute;
  right: -17px;
  top: 14px;
  transition: .3s ease-in-out;
}

.main-menu ul li a img.active {
  transform: rotateX(180deg);
}

.main-menu ul .active a::after {
  position: absolute;
  content: "";
  background: #f8bc16;
  height: 2px;
  left: 0px;
  bottom: 7px;
  right: 0px;
  transform: scaleX(1) !important;
}

.main-menu ul a::after {
  position: absolute;
  content: "";
  background: #f8bc16;
  height: 2px;
  left: 0px;
  bottom: 5px;
  right: 0px;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.main-menu ul a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.main-menu ul .active a:hover::after {
  transform: scaleX(1) !important;
}

.main-menu .logo {
  display: none;
}

.menu-in a {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  background: #1d1d1d;
  color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  border: none;
  transition: .2s ease-in-out;
  text-decoration: none;
}

.menu-in a:hover {
  background: #f8bc16;
  color: #1d1d1d;
}

.menu-in a i {
  font-size: 18px;
  margin-right: 6px;
}

.banner-section {
  padding: 150px 0 50px 0;
  background: url('../images/banner-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.banner-hd1 {
  font-size: 55px;
  font-weight: 600;
  animation-delay: .1s;
  color: #1d1d1d;
}

.banner-hd2 {
  color: #f8aa16;
  font-size: 55px;
  font-weight: 700;
  animation-delay: .3s;
  font-family: "Poppins", sans-serif;
}

.banner-in {
  display: flex;
  flex-direction: row-reverse;
}

.banner-section-left {
  /* width: 60%; */
  width: 50%;
}

.banner-section-right {
  /* width: 40%; */
  width: 50%;
}

.banner-section-left-in {
  padding: 0 85px 0 0
}

.banner-section-right img {
  width: 90%;
}

.banner-section-left-in p {
  margin-top: 15px;
  font-size: 15px;
  line-height: 25px;
  animation-delay: .5s;
}

.banner-section-left-in button {
  background: #1d1d1d;
  height: 50px;
  border: none;
  padding: 0 25px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border-radius: 12px;
  transition: .2s ease-in-out;
  animation-delay: .9s;
}

.counter {
  display: flex;
  justify-content: space-between;
  gap: 35px;
}

.counter-in {
  width: 33.33%;
  padding: 25px;
  background: url("../images/counter-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
  display: flex;
}

.counter-in-l {
  width: 70px;
  flex-shrink: 0;
}

.counter-img {
  width: 100%;
  background: #fff;
  border-radius: 50%;
  aspect-ratio: 1/ 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-img img {
  width: 45px;
}

.counter-in-r {
  padding-left: 15px;
}

.counter-in-r h5 {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 13px;
  margin-top: 5px;
}

.counter-in-r h4 {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.counter-in-r p {
  line-height: 22px;
  margin: 0;
  font-size: 14px;
}

.features-section {
  background: #edf6e6;
  border-radius: 45px;
  padding: 45px;
}

.m-head h4 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.features {
  display: flex;
  max-width: 1050px;
  width: 100%;
  margin: 0 auto 50px;
}

.features-details {
  background: #f5f9f1;
  height: fit-content;
  padding: 25px 30px;
  border-radius: 30px;
}

.features-details h4 {
  text-align: left;
  font-size: 22px;
  margin: 5px 0 12px 0;
  line-height: 30px;
  font-weight: 700;
}

.features-details p {
  margin-bottom: 5px;
  line-height: 30px;
}

.features-image {
  width: 350px;
  flex-shrink: 0;
}

.features-image-in {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.features-image-in img {
  width: 175px;
}

.m-btn {
  background: #1d1d1d;
  height: 50px;
  border: none;
  padding: 0 25px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border-radius: 12px;
  transition: .2s ease-in-out;
}

.m-btn:hover {
  background: #f8bc16;
  color: #1d1d1d;
}

.features:nth-child(2n+1) {
  flex-direction: row-reverse;
}

.features:last-child {
  margin-bottom: 10px;
}

.footer {
  background: #1d1d1d;
  color: #fff;
}

.f-logo img {
  height: 30px;
}

.f-abt {
  max-width: 400px;
  width: 100%;
}

.f-abt p {
  font-size: 13px;
}

.ft h4 {
  font-size: 16px;
  font-weight: 600;
}

.ft ul {
  margin: 0;
  padding: 0;
  float: left;
}

.ft ul li {
  list-style: none;
  margin-bottom: 5px;
  float: left;
  width: 100%;
}

.ft ul li a {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  transition: .2s ease-in-out;
  padding: 5px 0px;
  float: left;
}

.ft ul li a:hover {
  color: #f8bc16;
}

.social-media-btn {
  float: left;
  width: 100%;
  margin: 5px 0 0 0 !important;
}

.social-media-btn li {
  float: left !important;
  width: fit-content !important;
  margin-right: 15px;
}

.social-media-btn li a {
  background: #272625;
  width: 37px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
}

.subscribe-area {
  width: 100%;
  display: flex;
  background: #272625;
  height: 55px;
  border-radius: 15px;
  overflow: hidden;
}

.subscribe-area input {
  width: 100%;
  background: unset;
  border: none;
  color: #fff;
  font-size: 13px;
  padding-left: 15px;
}

.subscribe-area button {
  background: #f8bc16;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border-radius: 15px;
  padding: 0 17px;
}

.ftr-btm {
  border-top: 1px solid #393939;
}

.head-line {
  height: 8px;
  width: 8px;
  background: transparent;
  border: 2px solid #fd8200;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}

.head-line::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 45px;
  background: #fd8200;
  top: 50%;
  transform: translateY(-50%);
  right: 13px;
}

.head-line::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 45px;
  background: #fd8200;
  top: 50%;
  transform: translateY(-50%);
  left: 13px;
}

.responsive-menu-button {
  display: grid;
  height: 24px;
  align-items: center;
  cursor: pointer;
  margin: 0 5px 0 15px;
  display: none;
}

.res-line {
  height: 3px;
  width: 24px;
  background: #1d1d1d;
  transition: .2s ease-in-out;
  border-radius: 10px;
}

.responsive-menu-button:hover .res-line {
  background: #fd8708;
}

.responsive-menu-overlay {
  position: fixed;
  inset: 0;
  background: #2222223b;
  z-index: 99;
  width: 0;
  transition: .5s ease-in-out;
}

.responsive-menu-overlay.active {
  width: 100%;
}

.login-bg {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.login-section {
  max-width: 1120px;
  width: 100%;
  margin: 130px auto 70px;
  padding: 0 20px;
}

.login-section-in {
  background: url("../images/login-bg.png");
  float: left;
  border-radius: 40px;
  display: flex;
  padding: 16px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.login-left {
  background: url(../images/login-img-new1.jpg);
  min-height: 550px;
  width: 53%;
  flex-shrink: 0;
  position: relative;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  align-items: end;
}

.login-left-overlay {
  position: absolute;
  background: #0000004f;
  inset: 0;
  /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.09) 100%); */
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.308) 0%, rgba(0, 0, 0, 0.01) 100%);
}

.login-left-in {
  position: relative;
  z-index: 1;
  padding: 0 40px 40px 40px;
}

.login-left-in h4 {
  color: #fff;
  font-size: 27px;
  font-weight: 700;
  line-height: 38px;
}

.login-left-text h4 span {
  color: #f8bc16;
  font-size: 28px;
  font-family: "Montserrat", sans-serif;
}

.login-left-text p {
  color: #fff;
  font-weight: 300;
}

.login-right {
  width: 47%;
  align-items: center;
  display: flex;
}

.login-right-in {
  padding: 60px 60px 60px 76px;
}

.login-right-in h4 {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 5px !important;
}

.login-field label {
  width: 100%;
  font-size: 14px;
  margin-bottom: 12px;
}

.login-field input {
  width: 100%;
  background: #FFF;
  border: none;
  height: 50px;
  border-radius: 12px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  padding-left: 15px;
  transition: .2s ease-in;
  font-weight: 500;
}

.login-checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.login-checkbox label {
  position: relative;
  cursor: pointer;
  /* display: flex; */
  align-items: center;
  font-size: 14px !important;
  margin: 0;
}

.login-checkbox label::before {
  content: '';
  -webkit-appearance: none;
  background-color: #fff;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 6px;
  height: 22px;
  width: 22px;
  border: 1px solid #e8e8e8;
}

.login-checkbox input:checked+label::after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 7px;
  width: 8px;
  height: 14px;
  border: solid #1d1d1d;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: .3s all;
}

.lg-btn1 {
  width: 100%;
  background: #1d1d1d;
  color: #fff;
  height: 50px;
  border-radius: 12px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  border: none;
  font-weight: 600;
  transition: .2s all;
}

.lg-btn1:hover {
  background: #f8bc16;
  color: #1d1d1d;
}

.lg-btn2 {
  width: 100%;
  background: #fff;
  color: #1d1d1d;
  height: 50px;
  border-radius: 12px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  border: none;
  font-weight: 600;
  transition: .2s all;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lg-btn2:hover {
  background: #1d1d1d;
  color: #fff;
}

.lg-btn2 img {
  width: 16px;
  margin-right: 8px;
}

.login-checkbox {
  width: fit-content;
}

.rembr-frgt {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forgot-password {
  color: #1d1d1d;
  text-decoration: none;
}

.sign-up-link a {
  color: #1d1d1d;
  text-decoration: none;
  font-weight: 600;
}

.sign-up-section {
  max-width: 950px !important;
}

.sign-up-section .login-section-in {
  display: block;
  background-position: right;
}

.sign-up-section .login-section-in .login-left,
.sign-up-section .login-section-in .login-right {
  width: 100%;
}

.sign-up-section .login-section-in .login-left {
  min-height: 360px;
  background-position: center -270px;
}

.sign-up-section .login-section-in .login-right .login-right-in {
  padding: 60px;
}

.login-checkbox label a {
  color: #1d1d1d;
  /* margin-left: 5px; */
  font-weight: 600;
  text-decoration: underline;
}

select+.select2-container {
  width: 100% !important;
}

.login-field .select2-container .select2-selection--single {
  height: 50px;
  border: none;
  border-radius: 12px;
}

.login-field .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 50px;
  padding-left: 15px;
  font-size: 14px !important;
  color: #1d1d1d;
}

.login-field .select2-container .select2-selection--single .select2-selection__arrow {
  height: 48px !important;
  right: 6px !important;
}

.payment-section {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.payment-section-in {
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  margin: 130px 0 70px 0;
  border-radius: 40px;
  padding: 65px;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat;
  background: url("../images/login-bg.png");
}

.payment-icon img {
  width: 90px;
}

.payment-text h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px !important;
}

.btn-main {
  background: #1d1d1d;
  color: #fff;
  height: 50px;
  border-radius: 12px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  border: none;
  font-weight: 600;
  transition: .2s all;
  padding: 0 25px;
}

.btn-main:hover {
  background: #f8bc16;
  color: #1d1d1d;
}

.menu-drp {
  position: fixed;
  left: 50px;
  right: 50px;
  top: 100px;
  opacity: 0;
  visibility: hidden;
  transform: scale(.9);
  transition: .2s ease-out;
}

.menu-drp.active {
  left: 50px;
  right: 50px;
  top: 80px;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.menu-drp-in {
  background: #fff;
  padding: 45px 60px;
  border-radius: 25px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.m-drp-out {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* .m-drp {
  width: 25%;
} */
.m-drp-in h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.m-drp-in h4::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 30px;
  background: #f8bc16;
  bottom: -6px;
}

.m-drp-in ul {
  float: left;
  width: 100%;
}

.m-drp-in ul li {
  width: 100%;
  float: left;
  padding: 0;
}

.m-drp-in ul li a {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  float: left;
  width: 100%;
  padding: 5px 0;
  display: flex;
  align-items: center;
  left: -5px;
  transition: .2s ease-in-out;
  margin-left: 5px;
}

.m-drp-in ul li a:hover {
  color: #ff7800;
  left: 2px;
}

.m-drp-in ul li a:hover i,
.m-drp-in ul li a i {
  color: #1d1d1d !important;
}

.m-drp-in ul li a::after {
  display: none;
}

a:has(.menu-down-icn) {
  margin-right: 14px !important;
}

.notification-pop {
  position: fixed;
  width: 400px;
  right: 30px;
  bottom: 30px;
  transform: translateX(calc(100% + 30px));
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
  z-index: 2400;
}

.notification-pop.active {
  transform: translateX(0%);
}

.notification-pop-in {
  display: flex;
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px;
  padding: 25px;
  position: relative;
  overflow: hidden;
}

.n-pop-left {
  width: 60px;
  flex-shrink: 0;
  margin-right: 20px;
}

.notification-icn {
  width: 100%;
  border: 5px;
  padding: 8px;
  border-radius: 30px;
}

.notification-icn.pop-success {
  background: #20bf5538;
}

.notification-icn.pop-error {
  background: #e6394630;
}

.notification-icn img {
  width: 100%;
}

.n-pop-right h4 {
  font-size: 17px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.n-pop-right p {
  margin: 0;
  color: #464646;
  line-height: 22px;
}

.pop-close {
  position: absolute;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transition: .2s ease-in;
  opacity: .8;
  z-index: 1;
}

.pop-close:hover {
  opacity: 1;
}

.pop-close img {
  width: 8px;
}

.notification-pop .progress-bar {
  height: 5px;
  position: absolute;
  bottom: 0;
  right: 5px;
  left: 5px;
  overflow: hidden;
}

.notification-pop .progress {
  width: 100%;
  height: 100%;
  background-color: #f8b116;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 3s linear;
}

.m-drp-hf {
  display: flex;
}

.m-drp-hf span {
  width: 27px;
  height: 27px;
  background: #1d1d1d;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 17px;
  margin-right: 7px;
}

.m-drp-hf span i {
  color: #fff;
}

.user-menu {
  position: relative;
}

.user-menu-in {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-right: 10px;
}

.user-menu-in-img {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  flex-shrink: 0;
  margin-right: 10px;
}

.menu-down-icn,
.usr-icn {
  width: 15px;
  transition: .3s ease-in-out;
  margin-left: 2px;
}

.menu-down-icn.active,
.usr-icn.active {
  transform: rotateX(180deg);
}

.user-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.user-menu-drp {
  position: absolute !important;
  right: -10px !important;
  left: unset !important;
  top: 100px;
  opacity: 0;
  visibility: hidden;
  transform: scale(.8);
  transition: .2s ease-out;
}

.user-menu-drp.active {
  top: 52px;
  opacity: 1;
  visibility: visible;
  transform: scale(.9);
}

.user-menu-drp-in {
  background: #fff;
  min-width: 290px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  float: left;
  width: 100%;
}

.usr-menu-s1 h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 5px 0 0 0;
  position: relative;
}

.usr-menu-s1 p {
  font-size: 13px;
  color: rgb(70, 70, 70);
  font-style: italic;
}

.usr-menu-s1 {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
  float: left;
  width: 100%;
}

.usr-menu-s2 {
  float: left;
  width: 100%;
}

.usr-menu-list a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1d1d1d;
  padding: 8px 0;
  transition: .2s ease-in-out;
}

.usr-menu-list a span {
  font-size: 20px;
  margin-right: 7px;
  color: #1d1d1d;
  font-weight: 500;
  transition: .2s ease-in-out;
}

.usr-menu-list a:hover {
  padding-left: 8px;
  color: #ff7800;
}
.usr-menu-list a:hover span {
  color: #ff7800;
}
.pop-overlay {
  position: fixed;
  inset: 0;
  background: #2222223b;
  z-index: 101;
  display: none;
}

.p-popup,
.m-popup,
.score-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  max-width: 1000px;
  width: 100%;
  padding: 0 20px;
  z-index: 102;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(.9);
  transition: .2s ease-out;
}

.p-popup.active,
.m-popup.active,
.score-popup.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translate(-50%, -50%);
}

.p-popup-in {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
}

.pop-head h4 {
  font-size: 18px !important;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 5px;
}

.pop-head p {
  color: #464646;
}

.q-list {
  border: 1px solid #eaeaea;
  margin-bottom: 5px;
  padding: 15px;
  border-radius: 15px;
  transition: .2s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.q-list:hover {
  background: #f8f8f8;
}

.q-list-left div {
  float: left;
}

.q-num {
  color: #777777;
  font-weight: 600;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #eaeaea;
}

.q-name {
  color: #1d1d1d;
}

.pop-cnt,
.pop-cnt1 {
  max-height: calc(100vh - 370px);
  overflow: auto;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.pop-cnt.active,
.pop-cnt1.active {
  display: block;
  opacity: 1;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #464646;
  margin-right: 15px;
  padding-right: 10px;
}

[type="radio"]:checked+label:before,
[type="radio"]:not(:checked)+label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid #464646;
  border-radius: 100%;
  background: #fff;
}

[type="radio"]:checked+label:after,
[type="radio"]:not(:checked)+label:after {
  content: '';
  width: 8px;
  height: 8px;
  background: #f4a816;
  position: absolute;
  top: 6px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type="radio"]:not(:checked)+label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type="radio"]:checked+label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.pop-head2,
.pop-head3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.q-serach {
  background: #f7f7f7;
  display: flex;
  height: 45px;
  border-radius: 10px;
  overflow: hidden;
  width: 340px;
}

.q-serach input {
  background: transparent;
  border: none;
  width: 100%;
  padding-left: 15px;
}

.q-serach button {
  background: #1d1d1d;
  border: none;
  width: 55px;
  border-radius: 10px;
  color: #fff;
  flex-shrink: 0;
}

.q-tab-btn ul {
  float: left;
  margin: 0;
  padding: 0;
}

.q-tab-btn ul li {
  float: left;
  list-style: none;
  margin-right: 20px;
  margin-left: 5px;
  position: relative;
  font-weight: 500;
  cursor: pointer;
}

.q-tab-btn ul .active::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background: #f8bc16;
  left: 0;
  bottom: -3px;
}

.q-bkmrk i {
  color: #1d1d1d;
  font-size: 17px;
  color: #464646;
}

.sort-button {
  padding: 0;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  color: #464646;
  transition: .2s ease-in-out;
}

.sort-button:hover {
  color: #ff7800;
}

.sort-button i {
  font-size: 22px;
  margin-right: 7px;
}

.p-close {
  position: absolute;
  right: 41px;
  top: 20px;
  width: 23px;
  background: #1d1d1d;
  color: #fff;
  display: flex;
  height: 23px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  cursor: pointer;
}

.p-close span {
  font-size: 17px;
}

.page-height {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../images/banner-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
}

.login-success {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 20px;
}

.login-success-in {
  display: flex;
}

.login-success-in-left {
  width: 40%;
}

.login-success-in-left img {
  width: 100%;
}

.login-success-in-right {
  width: 60%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.login-success-cnt h4 {
  font-size: 30px;
  font-weight: 700;
  color: #1d1d1d;
}

.lg-failed {
  color: #f95c46 !important;
}

.login-success-cnt {
  margin-top: 10px;
}

.error-section {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 40px;
  position: relative;
}

.error-bg {
  position: absolute;
  font-size: 30vw;
  font-weight: 700;
  color: #ffedbb;
  margin: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.error-in {
  position: relative;
  text-align: center;
}

.e-h1 {
  font-size: 50px;
  font-weight: 800;
}

.e-h2 {
  font-size: 17px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.q-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}

.q-page-count {
  color: #464646;
  font-size: 13px;
}

.q-pagination.w-100.float-start.mt-3 ul {
  padding: 0;
  margin: 0;
  width: max-content;
  display: flex;
  gap: 5px;
}

.q-pagination-li {
  float: left;
  list-style: none;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  border-radius: 44px;
  transition: .2s ease-in-out;
  cursor: pointer;
}

.q-pagination-li.active,
.q-pagination-li:hover {
  background: #1d1d1d;
  color: #fff;
}

.q-no-result {
  padding: 50px;
  float: left;
  width: 100%;
  text-align: center;
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
}

.q-no-result h4 {
  font-size: 19px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 5px;
}

.q-no-result p {
  color: #464646;
  font-size: 14px;
  margin: 0;
}

.login-success1 {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 120px 20px;
}

.login-success-in1 {
  background: #fff;
  padding: 30px 30px 40px 30px;
  box-shadow: rgba(100, 100, 111, 0.13) 0px 7px 29px 0px;
  border-radius: 35px;
  background-image: url("../images/success-bg.png");
  background-size: 100%;
  background-repeat: no-repeat;
}

.lg-ic-out {
  text-align: center;
  margin: 70px 0 30px 0;
}

.login-success-in1-icn {
  width: 80px;
  margin: 0 auto;
}

/* .sign-up-section .login-section-in .login-left {
  min-height: 400px;
  background: url(../images/sign-up-img.jpg) !important;
  background-position: center -280px !important;
} */
.sign-up-section .login-section-in .login-left {
  min-height: 400px;
  background: url(../images/sign-up-img.jpg) !important;
  background-size: cover !important;
  background-position: center -150px !important;
}

.page-height-in {
  min-height: 100vh;
}

.practice-section {
  margin: 120px 0 50px 0;
  background: #fffaee;
  padding: 30px;
  border-radius: 25px;
}

.p-main-head {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 24px;
}

.p-head {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  border-bottom: 1px solid #ece3cd;
  margin-bottom: 15px;
  align-items: center;
  padding-bottom: 15px;
}

.p-head-scndry {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-hd-left {
  display: flex;
}

.p-hd-1,
.p-hd-2,
.bookmark {
  font-size: 15px;
  margin: 0;
  margin-right: 10px;
  padding: 8px 12px;
  /* background: #1d1d1d; */
  background: #f8bc16;
  border-radius: 20px;
  color: #1d1d1d;
}

.p-hd-1 {
  font-weight: 700;
}

.bookmark {
  margin: 0;
  background: #1d1d1d;
  color: #fffaee;
  cursor: pointer;
  transition: .2s ease-in-out;
  font-weight: 500;
}

.bookmark:hover {
  background: #f8bc16;
  color: #1d1d1d;
}

.bookmark span i {
  margin-right: 6px;
}

.p-help-text {
  margin-top: 10px;
  padding: 8px 10px;
  /* background: #f4ebd3; */
  border-radius: 10px;
  line-height: 25px;
  /* border: 1px solid #ece3cd; */
  border: 1px dashed #a29a86;
}

.p-cnt {
  margin-top: 20px;
  background: #f1e9d2;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #dbd2bc;
}

.p-cnt-in p {
  line-height: 44px !important;
  margin: 0;
  font-size: 15px;
  /* text-align: justify; */
}

.p-cnt-input textarea {
  width: 100%;
  height: 170px;
  border-radius: 10px;
  overflow: auto;
  border: none;
  padding: 20px;
  background: #fffaee;
  line-height: 30px;
}

.hd-line {
  height: 1px;
  background: #ebe2cc;
  margin-top: 20px;
}

.lanching-text {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  background: url(../images/animated-text-fill.png) repeat-y;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: aitf 10s linear infinite;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  margin: 0;
  display: flex;
  align-items: center;
  background-size: 800px;
}

@-webkit-keyframes aitf {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes blink {
  0% {
    opacity: .2;
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: .2;
  }
}

.lanching-text span {
  animation-name: blink;
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  font-size: 20px;
  padding-left: 1px;
}

.lanching-text span:nth-child(2) {
  animation-delay: .2s;
}

.lanching-text span:nth-child(3) {
  animation-delay: .4s;
}

.coming-soon1 {
  display: flex;
  align-items: center;
}

.lanching-text1 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  background: linear-gradient(to right, #ffa000 20%, #c25fe6 70%, #f85505 80%);
  /* background: linear-g
  /* background: linear-gradient(to right, #F8BC16 0%, #d65cfc 100%); */
  animation: textShine 5s ease-in-out infinite alternate;
  background-size: 400% auto;
  padding: 3px 7px;
  z-index: 10;
}

.coming-soon1in {
  position: relative;
  z-index: 10;
}

.coming-soon1in::after {
  position: absolute;
  content: "";
  background: #1d1d1d;
  width: 100%;
  height: 26px;
  z-index: -11;
  top: 6px;
  left: -7px;
}

@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.pswd_out {
  position: relative;
}

.password_show_btn {
  position: absolute;
  height: 50px;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  width: 50px;
  justify-content: center;
  cursor: pointer;
}

.more-question-btn {
  padding: 0 12px;
  background: #1d1d1d;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  height: 45px;
  border-radius: 12px;
  transition: .2s ease-in-out;
  font-weight: 500;
}

.more-question-btn:hover {
  background: #f8bc16;
  color: #1d1d1d;
}

.more-question-btn i {
  margin-right: 6px;
  font-size: 20px;
}

.hidden {
  display: none;
}

.inactive {
  background-color: #eee6ce !important;
  color: #1d1d1d !important;
  cursor: default !important;
}

.audio-record {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  /* border-right: 1px solid #d5d5d5 !important;
  padding-right: 25px;
  margin-right: 10px; */
}

.record-button {
  color: #1d1d1d;
  background: #F8BC16;
  border: none;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  padding: 0;
  width: 80px;
  height: 80px;
  border-radius: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.record-button span {
  font-size: 32px;
  color: #1d1d1d;
  font-weight: 500;
}

.button-animate {
  animation: pulse 1s infinite;
}

/* @keyframes pulse {
  0% {
      box-shadow: 0px 0px 3px 1px #7eda88;
  }

  100% {
      box-shadow: 0px 0px 3px 10px #7eda88;

  }
} */
.stop-button {
  background-color: #FF342A;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stop-button span {
  font-size: 30px;
  color: #1d1d1d;
  font-weight: 500;
}

.playback {
  display: flex;
  justify-content: center;
  align-items: center;
}

.audio-playback {
  width: 600px;
  height: 50px;
}

audio::-webkit-media-controls-panel,
video::-webkit-media-controls-panel {
  background-color: #fff;
}

.mejs__controls {
  top: 50%;
  transform: translateY(-50%);
}

.mejs__container {
  background: #fff !important;
  width: 100% !important;
  border: 1px solid #d9d9d9;
  overflow: hidden;
  border-radius: 5px;
  /* height: 50px !important; */
}

.mejs__time-total {
  background: rgb(231, 229, 244) !important;
  border-radius: 5px !important;
  overflow: hidden;
  margin: 0 !important;
}

.mejs__time {
  color: #1d1d1d !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  text-align: center;
  padding: 0 3px !important;
}

.mejs__controls:not([style*="display: none"]) {
  background: #fff !important;
  padding: 0;
}

.mejs__time-current,
.mejs__time-handle-content {
  background: #f8bc16 !important;
  border-radius: 5px !important;
}

.mejs__horizontal-volume-total {
  height: 0.625rem !important;
  border: none !important;
  background: #e4e0ff !important;
  border-radius: 5px !important;
  cursor: pointer;
  overflow: hidden;
}

.mejs__horizontal-volume-current {
  background: #f8bc16 !important;
  border-radius: 5px !important;
  border: none !important;
}

.mejs__controls,
.mejs__button,
.mejs__time,
.mejs__time-rail,
.mejs__horizontal-volume-slider {
  height: 40px !important;
  display: flex;
  align-items: center;
}

.mejs__time,
.mejs__time-rail {
  padding-top: 0 !important;
  display: flex;
  align-items: center;
  width: 43px !important;
  justify-content: center;
}

.mejs__button>button {
  margin: 0 !important;
  width: 2rem !important;
  height: 2rem !important;
}

.mejs__button svg {
  height: 2rem !important;
  width: 2rem !important;
}

.mejs__volume-button {
  margin-right: 5px !important;
}

.mejs__icon-replay,
.mejs__icon-mute,
.mejs__icon-unmute {
  background-size: 1.3rem !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.mejs__icon-pause,
.mejs__icon-play {
  background-size: 2rem !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.mejs__container:focus {
  outline-offset: 0 !important;
  outline-style: unset !important;
  outline-width: 0 !important;
}

.mejs__currenttime,
.mejs__duration {
  font-size: 12px !important;
  font-weight: 500 !important;
}

.mejs__icon-replay {
  background: url('../images/arrow-clockwise.png');
}

.mejs__icon-pause {
  background: url('../images/pause-fill.png');
}

.mejs__icon-play {
  background: url('../images/play-fill.png');
}

.mejs__icon-mute {
  background: url('../images/volume-up-fill.png');
}

.mejs__icon-unmute {
  background: url('../images/volume-mute-fill.png');
}

.mejs__horizontal-volume-total {
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.mejs__controls {
  width: unset !important;
  left: 8px !important;
  right: 10px !important;
}

.mejs__time-hovered.negative {
  background: unset !important;
}

.mejs__time-hovered {
  background: rgb(223, 222, 232) !important;
  z-index: 10;
}

.audio-rc {
  display: flex;
  background: #fffaee;
  padding: 20px;
  border-radius: 10px;
}

.audio-play .mejs__container {
  background: transparent !important;
  border: none;
}

.audio-play .mejs__container .mejs__inner .mejs__controls:not([style*="display: none"]) {
  background: transparent !important;
  padding: 0;
}

.audio-play .mejs__container .mejs__inner .mejs__controls .mejs__time-rail .mejs__time-total {
  background: #e6ddc4 !important;
}

.audio-play .mejs__container .mejs__inner .mejs__controls .mejs__horizontal-volume-total {
  background: #e6ddc4 !important;
}

.audio-in {
  border-right: 2px solid #f1e9d2 !important;
  padding-right: 25px;
  margin-right: 15px;
}

.aud-ply {
  display: grid;
  /* align-items: end; */
}

.aud-head {
  font-size: 15px !important;
  margin-bottom: 15px !important;
  font-weight: 600;
}

.audio-play .mejs__container .mejs__inner .mejs__controls {
  left: 0 !important;
  right: 0 !important;
  z-index: 0 !important;
}

.s-btn {
  background: #c6bba2;
  height: 50px;
  border: none;
  padding: 0 25px;
  color: #1d1d1d;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border-radius: 12px;
  transition: .2s ease-in-out;
}

.s-btn:hover {
  background: #ada38a;
  color: #1d1d1d;
}

.p-image {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  border-radius: 7px;
  overflow: hidden;
}

.p-image img {
  width: 100%;
}

.p-image p {
  float: left;
}

.p-cnt-in {
  background: #fffaee;
  padding: 20px;
  border-radius: 10px;
}

.select-ans-drp select+.select2-container {
  width: auto !important;
}

.select-ans-drp .select2-container .select2-selection--single {
  height: 36px !important;
  border: 1px solid #dbd2bc !important;
  border-radius: 5px !important;
  background-color: #f1e9d2 !important;
}

.select-ans-drp .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 34px !important;
  padding-left: 15px !important;
  padding-right: 30px !important;
  color: #1d1d1d !important;
  font-size: 15px !important;
}

.select-ans-drp .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 34px !important;
  right: 4px !important;
}

.select-ans-drp .select2-container {
  margin: 0 7px;
}

.select-ans-drp.correct-answer .select2-container .select2-selection--single {
  border: 1px solid #a6d287 !important;
  background-color: #cbf1b1 !important;
}

.select-ans-drp.wrong-answer .select2-container .select2-selection--single {
  border: 1px solid #d58c84 !important;
  background-color: #f7aea7 !important;
}

.practice-p {
  line-height: 44px !important;
}

.p-question-chkbx input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.p-question-chkbx label {
  position: relative;
  cursor: pointer;
  display: flex;
  /* align-items: center; */
  font-size: 14px !important;
  margin: 0;
  padding: 20px 20px 20px 40px;
  width: 100%;
}

.p-question-chkbx label::before {
  content: '';
  -webkit-appearance: none;
  background-color: #fff;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 6px;
  height: 22px;
  width: 22px;
  border: 1px solid #a69c84;
  flex-shrink: 0;
  top: 2px;
}

.p-question-chkbx input:checked+label::after {
  content: '';
  display: block;
  position: absolute;
  top: 24px;
  left: 47px;
  width: 8px;
  height: 14px;
  border: solid #f88b16;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  transition: .3s all;
  flex-shrink: 0;
}

.p-choose-answer {
  padding: 0;
  margin: 0;
}

.p-cnt-in h4 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}

.p-choose-answer li {
  list-style: none;
  background: #f1e9d2;
  margin-bottom: 20px;
  border-radius: 10px;
  transition: .2s ease-in-out;
}

.p-choose-answer li:last-child {
  margin: 0;
}

.p-choose-answer li:hover {
  background: #e6dab9;
}

.p-question-chkbx label p {
  line-height: 25px !important;
  padding-left: 7px;
}

.p-re-order-paragraph {
  display: flex;
  gap: 60px;
  /* padding: 20px; */
}

#divA,
#divB {
  width: 50%;
  display: inline-block;
  background: #fffaee;
  border-radius: 10px;
  padding: 20px;
}

.item-in {
  padding: 55px 20px 15px 20px;
  background: #f1e9d2;
  cursor: pointer;
  font-size: 15px;
  line-height: 25px;
  border-radius: 10px;
  transition: .2s ease-in-out;
  position: relative;
  text-align: center;
}

.item-in:hover {
  background: #e6dab9;
}

.item:last-child {
  margin: 0;
}

.sortable h4 {
  font-size: 20px !important;
  text-align: center;
  font-weight: 600;
  margin: 5px 0 25px 0;
  border-bottom: 1px solid #dbd2bc;
  padding-bottom: 20px;
}

.item-count {
  position: absolute;
  font-size: 14px;
  font-weight: 600;
  color: #f1e9d2;
  background: #1d1d1d;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
}

.p-radio [type="radio"]:checked,
.p-radio [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.p-radio [type="radio"]:checked+label,
.p-radio [type="radio"]:not(:checked)+label {
  position: relative;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #1d1d1d;
  padding: 20px 20px 20px 40px;
  width: 100%;
  font-size: 15px;
  background: #f1e9d2;
  margin-bottom: 20px;
  border-radius: 10px;
  transition: .2s ease-in-out;
}

.p-radio [type="radio"]:checked+label:before,
.p-radio [type="radio"]:not(:checked)+label:before {
  content: '';
  position: absolute;
  left: 40px;
  top: 23px;
  width: 20px;
  height: 20px;
  border: 1px solid #978c72;
  border-radius: 100%;
  background: #fff;
}

.p-radio [type="radio"]:checked+label:after,
.p-radio [type="radio"]:not(:checked)+label:after {
  content: '';
  width: 10px;
  height: 10px;
  background: #f88b16;
  position: absolute;
  top: 28px;
  left: 45px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.p-radio [type="radio"]:not(:checked)+label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.p-radio [type="radio"]:checked+label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.p-rdo p {
  line-height: 25px !important;
  padding-left: 30px;
}

.p-rdo:hover {
  background: #e6dab9 !important;
}

.timer,
.word-count {
  margin: 0px 0 15px 0;
  float: left;
  font-size: 15px;
  padding: 6px 12px;
  background: #fffaee;
  border-radius: 20px;
  color: #1d1d1d;
}

/* .t-spn1,.t-spn2{
  font-size: 15px;
} */
.t-spn2 {
  padding-left: 6px;
  font-weight: 600;
  font-size: 15px;
}

.fill-blank-input {
  height: 36px;
  border: 1px solid #dbd2bc;
  border-radius: 5px;
  background-color: #f1e9d2;
  margin: 0 7px;
  width: 170px;
  padding: 0 10px;
  text-align: center;
  font-size: 15px;
  display: inline-block;
  vertical-align: middle;
  line-height: 34px;
}

.blank {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  height: 36px;
  border: 1px solid #dbd2bc;
  border-radius: 5px;
  background-color: #f1e9d2;
  margin: 0 7px;
  width: 170px;
  padding: 0 10px;
  text-align: center;
  line-height: 34px;
  font-size: 15px;
  transition: .2s ease-in-out;
}

.word-box {
  margin-top: 15px;
  background: #f9f4e9;
  border: 1px solid #dbd2bc;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}

.word {
  display: inline-flex;
  padding: 7px 15px;
  background-color: #f1e9d2;
  cursor: pointer;
  border: 1px solid #dbd2bc;
  border-radius: 5px;
}

.remove-btn {
  position: absolute;
  top: 50%;
  background-color: #cebc88;
  color: white;
  border: none;
  border-radius: 5px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  font-size: 12px;
  text-align: center;
  padding: 0;
  transform: translateY(-50%);
  margin-left: 6px;
}

.ui-draggable-dragging {
  background: #f8bc16;
  border-color: #f8bc16;
}

.ui-droppable-hover {
  background: #e7ddbe;
}

.remove-btn i {
  color: #1d1d1d;
  font-size: 18px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pagination-in {
  display: flex;
  background: #fffaee;
  height: 40px;
  border-radius: 30px;
  padding: 4px;
}

.pagination-cnt {
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-weight: 500;
}

.pgn-btn {
  display: flex;
  gap: 4px;
}

.pagination-btn {
  border: none;
  border-radius: 33px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-btn.p-prew {
  background: #f8bc16;
}

.pagination-btn.p-nxt {
  background: #1d1d1d;
  color: #f1e9d2;
}

.practice-score-pop,
.practice-score-pop-mocktest {
  position: fixed;
  left: 50%;
  top: 50%;
  max-width: 850px;
  width: 100%;
  padding: 0 20px;
  z-index: 102;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(.9);
  transition: .2s ease-out;
}

.practice-score-pop.active,
.practice-score-pop-mocktest.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translate(-50%, -50%);
}

.practice-score-in {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
}

.scr1.float-start.w-100 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.scr1-in {
  background: #f7f7f7;
  width: 100%;
  padding: 25px 20px;
  border-radius: 15px;
}

.score-rating {
  display: grid;
  justify-content: center;
}

.progress-container {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  color: #333;
}

.progress-container::before {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  background: #f7f7f7;
  border-radius: 50%;
}

.progress-text {
  position: relative;
}

.score-rating h4 {
  font-size: 15px;
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
  margin-bottom: 0;
}

/* .scr-speaking .progress-container {
  background: conic-gradient(#e74747 75%, #f4d2d2 0);
} */
/* .scr-writing .progress-container {
  background: conic-gradient(#2ca87f 25%, #cdf0e5 0);
}
.scr-reading .progress-container {
  background: conic-gradient(#2167ff 10%, #dbe3f9 0);
}
.scr-listening .progress-container {
  background: conic-gradient(#872ff2 50%, #e5d6f7 0);
} */
.total-time {
  display: flex;
  align-items: center;
  justify-content: center;
}

.total-time-in {
  width: fit-content;
  text-align: center;
}

.total-time-in h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}

.total-time-in span {
  font-size: 26px;
  font-weight: 700;
  color: #f8aa16;
}

.total-time {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbf6ea;
}

.s-word {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.select-word {
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 1px;
  cursor: pointer;
}

.select-word span {
  padding: 0 3px;
  font-size: 15px;
  transition: .1s ease-in-out;
  border-radius: 4px;
  border: 1px solid #fffaee;
}

.select-word span:hover,
.select-word .active {
  background: #f8bc16;
  border: 1px solid #f8bc16;
}

.p-rdo.correct-answer {
  background: #cbf1b1 !important;
}

.p-rdo.wrong-answer {
  background: #f7aea7 !important;
}

.select-ans-drp .answer-show,
.fill-blank-span .answer-show,
.fill-blank-drag .answer-show {
  height: 36px;
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  border-bottom: 1px solid #21bb6e;
  margin: 0 10px 0 7px;
  padding: 0 12px;
  align-items: center;
  line-height: 32px;
  color: #069f52;
  float: right;
}

.select-ans-drp.wrong-answer .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #b32d1f !important;
}

.select-ans-drp.correct-answer .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #3f731b !important;
}

.p-choose-answer li:has(> .p-question-chkbx.correct-answer) {
  background: #cbf1b1;
}

.p-choose-answer li:has(> .p-question-chkbx.wrong-answer) {
  background: #f7aea7;
}

.select-ans-drp,
.fill-blank-span,
.fill-blank-drag {
  height: 36px !important;
  display: inline-block;
  line-height: 20px;
}

.fill-blank-span.correct-answer .fill-blank-input,
.fill-blank-drag.correct-answer .blank {
  border: 1px solid #a6d287 !important;
  background-color: #cbf1b1 !important;
  color: #3f731b !important;
}

.fill-blank-span.wrong-answer .fill-blank-input,
.fill-blank-drag.wrong-answer .blank {
  border: 1px solid #d58c84 !important;
  background-color: #f7aea7 !important;
  color: #b32d1f !important;
}

.select-word .active.correct-answer {
  background: #cbf1b1;
  color: #3f731b;
  border: 1px solid #cbf1b1;
}

.select-word .active.wrong-answer {
  background: #f7aea7;
  color: #b32d1f;
  border: 1px solid #f7aea7;
}

.select-word .answer-show {
  color: #3f731b;
  margin-left: 6px;
  border: 1px solid #3f731b;
}

.select-word .answer-show:hover {
  color: #3f731b;
  background-color: #fffaee;
  border: 1px solid #3f731b;
}

.scr-aud {
  padding: 25px 20px;
  background: #fbf6ea;
  border-radius: 15px;
}

.score-out {
  display: grid;
  gap: 20px;
  max-height: calc(100vh - 160px);
  overflow: auto;
}

.ans-shw {
  padding: 0 15px;
}

/* .ans-shw1 {
  padding: 0 30px;
} */
.ans-shw1 h4,
.ans-shw h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}

.ans-shw1 h4 {
  text-align: center;
  margin-bottom: 18px;
}

.ans-list ul {
  margin: 0;
  padding-left: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 7px;
  margin: 5px 0 0 0;
  float: left;
  width: 100%;
}

.ans-list ul li {
  font-size: 14px;
  padding: 2px 6px;
  list-style: none;
  background: #e74747;
  color: #fff;
  border-radius: 5px;
}

/* .correct-ans,.your-ans .answer-show {
  color: #069f52;
} */
.p-radio,
.p-question-chkbx {
  position: relative;
}

.count-radio,
.count-check {
  position: absolute;
  font-size: 14px;
  font-weight: 600;
  color: #f1e9d2;
  left: 16px;
  top: 21px;
  z-index: 1;
  width: 25px;
  height: 25px;
  background: #2b2b2b;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 0;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 11px;
}

/* .count-check {
  top: 20px !important;
} */
.ans-list1 ul {
  padding: 0;
  margin: 0;
  float: left;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.ans-list1 ul li {
  float: left;
  background: #1d1d1d;
  list-style: none;
  color: #F7F7F7;
  width: 35px;
  height: 35px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.ans-list .correct-ans li,
.ans-list .your-ans .answer-show,
.ans-list1 .correct-ans li,
.ans-list1 .your-ans .answer-show {
  background: #2ca87f;
  color: #fff;
}

.p-popup_one {
  position: fixed;
  left: 50%;
  top: 50%;
  max-width: 900px;
  width: 100%;
  padding: 0 20px;
  z-index: 102;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(.9);
  transition: .2s ease-out;
}

.p-popup_one.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translate(-50%, -50%);
}

.p-popup_one-in {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
}

.page-out {
  margin-top: 80px;
  position: relative;
}

.side-menu {
  width: 280px;
  position: fixed;
  max-height: calc(100vh - 80px);
  overflow: auto;
  transition: .3s ease-in-out;
}

.side-menu ul {
  padding: 2px 0 2px 25px;
  margin: 15px 0;
  float: left;
  width: 100%;
}

.side-menu ul li {
  list-style: none;
  border-radius: 15px;
  transition: .2s ease-in-out;
  margin: 2px 0;
  float: left;
  width: 100%;
  position: relative;
}

.side-menu ul li a {
  display: flex;
  text-decoration: none;
  padding: 15px;
  color: #1d1d1d;
}

.side-menu ul li:hover {
  background: #fff5db;
  background: linear-gradient(45deg, rgb(255, 223, 142) 0%, rgb(255, 234, 184) 50%, rgb(255, 250, 239) 100%);
  transition: .2s ease-in-out;
}

.side-menu ul li.active {
  background: #fff5db;
  background: linear-gradient(45deg, rgb(255, 223, 142) 0%, rgb(255, 234, 184) 50%, rgb(255, 250, 239) 100%);
}

.side-menu ul li a span {
  font-size: 20px;
  margin-right: 10px;
  color: #1d1d1d;
  font-weight: 500;
}

.page-cnt {
  padding-left: 310px;
}

.page-cnt-in {
  padding: 20px 20px 0;
  min-height: calc(100vh - 80px);
}

.cnt-header h4 {
  font-weight: 600;
}

.breadcrumb ul {
  margin: 5px 0;
  padding: 0;
  float: left;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.breadcrumb ul li {
  float: left;
  display: flex;
  list-style: none;
  align-items: center;
}

.breadcrumb ul li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #646464;
  transition: .2s ease-in-out;
}

.breadcrumb ul li a:hover {
  color: #e87800;
}

.breadcrumb ul li a span {
  padding: 0;
  color: #fab700;
}

.breadcrumb ul li span {
  padding: 0 15px;
  color: #646464;
}

.breadcrumb ul li:last-child span {
  display: none;
}

.page-cnt-hlp {
  padding: 20px;
  background: #f7f7f7;
  border-radius: 15px;
  border-radius: 1;
  border: 1px solid #ddd;
  color: #737373;
  font-size: 13px;
  display: flex;
}

.form-field label {
  margin-bottom: 8px;
  color: #1d1d1d;
}

.form-field .select2-container .select2-selection--single {
  height: 50px !important;
  border: none;
  border-radius: 12px !important;
  background-color: #f7f7f7 !important;
}

.form-field .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 50px !important;
  padding-left: 15px !important;
  padding-right: 30px !important;
  color: #1d1d1d !important;
  font-size: 15px !important;
}

.form-field .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px !important;
  right: 4px !important;
}

.form-field input,
.form-field textarea {
  height: 50px;
  border-radius: 12px;
  background-color: #f7f7f7;
  width: 100%;
  border: none;
  padding-left: 15px;
}

.form-field textarea {
  height: 110px;
  padding-top: 12px;
}

.cl1 {
  max-width: 800px;
  width: 100%;
}

.form-fld-file {
  position: relative;
  height: 50px;
  display: flex;
  border-radius: 10px;
  background: #f7f7f7;
}

.form-fld-file input {
  position: absolute;
  inset: 0;
  cursor: pointer;
  width: 100%;
  opacity: 0;
}

.browse-bt {
  padding: 0px 10px;
  background: #1d1d1d;
  line-height: 50px;
  display: block;
  width: 30%;
  max-width: 95px;
  text-align: center;
  border-radius: 10px;
  color: #fff;
}

.browse-txt {
  padding-left: 15px;
  line-height: 50px;
}

.side-menu.bottom {
  position: absolute;
  bottom: 0px;
  top: auto;
}

.sub-menu {
  display: none;
  padding: 0 15px !important;
  margin: 0 !important;
}

.sub-menu li {
  margin: 0 !important;
  transition: .2s ease-in-out;
  border-radius: 10px !important;
  position: relative;
}

.sub-menu li a {
  margin: 0 !important;
  padding: 10px 10px 10px 25px !important;
  transition: .2s ease-in-out;
  border-radius: 10px !important;
}

.submenu-down {
  position: absolute;
  right: 8px;
  top: 15px;
  font-size: 22px;
  transition: .3s ease-in-out;
}

.side-menu-li.active .submenu-down {
  transform: rotate(180deg);
}

.sub-menu li:last-child {
  margin-bottom: 15px !important;
}

.sub-menu li a:hover,
.sub-menu li a.active {
  background: #e7ca80 !important;
}

.sub-menu li::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background: #1d1d1d;
  border-radius: 10px;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
}

.dash-out {
  display: flex;
  gap: 25px;
}

.dash-l {
  width: 65%;
}

.dash-r {
  width: 35%;
}

.dash-tile-out {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(2, 1fr);
}

.dash-tile {
  width: 100%;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 19px 40px -10px;
  border-radius: 20px;
  background: #fff;
}

.dash-name {
  font-weight: 600 !important;
  font-size: 19px;
}

.dash-name span {
  font-size: 22px;
  font-weight: 600;
  color: #f8bc16;
}

.dash-icn {
  width: 40px;
  height: 40px;
  background: #a4d4ff;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dash-tile-top {
  display: flex;
  justify-content: space-between;
}

.dash-speak .dash-tile-top-l .dash-icn {
  background: #fdf1f1;
}

.dash-speak .dash-tile-top-l .dash-icn span,
.dash-speak .dash-tile-top-r,
.mc-speak {
  color: #dc2626;
}

.dash-write .dash-tile-top-l .dash-icn {
  background: #e9f5f1;
}

.dash-write .dash-tile-top-l .dash-icn span,
.dash-write .dash-tile-top-r,
.mc-write {
  color: #2ca87f;
}

.dash-read .dash-tile-top-l .dash-icn {
  background: #ebf0fd;
}

.dash-read .dash-tile-top-l .dash-icn span,
.dash-read .dash-tile-top-r,
.mc-read {
  color: #2167ff;
}

.dash-listen .dash-tile-top-l .dash-icn {
  background: #f3eaff;
}

.dash-listen .dash-tile-top-l .dash-icn span,
.dash-listen .dash-tile-top-r,
.mc-listen {
  color: #872ff2;
}

.dash-tile-top-r span {
  font-size: 18px;
  font-weight: 600 !important;
  margin-left: 2px;
}

.dash-tile-top-r {
  font-size: 23px;
  font-weight: 600;
  margin-top: 2px;
}

.dash-speak .dash-tile-top-r {
  color: #e86060;
}

.dash-write .dash-tile-top-r {
  color: #54caa3;
}

.dash-read .dash-tile-top-r {
  color: #6998ff;
}

.dash-listen .dash-tile-top-r {
  color: #af6efd;
}

.dash-tile-bottm h4 {
  font-size: 15px;
  margin-top: 15px;
}

.countdown {
  display: flex;
  gap: 13px;
  height: 75px;
  align-items: end;
  background: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  background: #1e1e1e0d;
}

.countdown-in {
  position: relative;
}

.spn-cnt {
  position: absolute;
  font-size: 25px;
  top: -30px;
  font-weight: 600;
  color: #f8bc16;
  color: #1d1d1d;
}

.spn-txt {
  font-size: 13px;
  font-weight: 500;
  color: #646464;
}

.dash-count {
  background: #1d1d1d;
  border-radius: 20px;
  padding: 15px;
  background: linear-gradient(45deg, rgb(230, 255, 246) 0%, rgb(238, 255, 230) 50%, rgb(255, 244, 223) 100%);
}

.dash-count h4 {
  color: #fff;
  font-size: 14px;
  padding: 15px 2px;
  margin-bottom: 10px !important;
  color: #1d1d1d;
}

.dash-subscr {
  margin-top: 25px;
  background: #f7f7f7;
  padding: 20px;
  border-radius: 20px;
}

.dash-subscr p {
  margin: 5px 0 4px 0;
  font-size: 13px;
  color: #646464;
}

.dash-subscr h4 {
  font-size: 16px;
  font-weight: 700;
}

.dash-subscr button {
  background: #f8bc16;
  color: #1d1d1d;
}

.dash-subscr button:hover {
  background: #1d1d1d;
  color: #fff;
}

.dash-hd {
  margin-bottom: 20px;
  font-size: 16px !important;
  display: flex;
  align-items: center;
  font-weight: 600 !important;
}

.dash-chart-in {
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 19px 40px -10px;
  border-radius: 20px;
  background: #fff;
}

.dash-hd-icn span {
  font-size: 24px;
  color: #f8bc16;
}

.dash-hd-icn {
  display: flex;
  align-items: center;
  margin-right: 6px;
}

.dash-mock-exam {
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 19px 40px -10px;
  border-radius: 20px;
  background: #fff;
  margin-top: 25px;
}

.exm-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, rgb(255, 234, 181) 0%, rgb(255, 255, 255) 70%, rgb(255, 255, 255) 100%);
  padding-left: 15px;
  border-radius: 15px;
}

.exm-list p {
  margin: 0;
  font-weight: 500;
}

.exm-list span {
  height: 50px;
  display: flex;
  align-items: center;
  background: #fff4d9;
  border-radius: 15px;
  width: 50px;
  justify-content: center;
  font-weight: 600;
}

.exm-list:last-child {
  margin: 0;
}

.logo-m {
  display: none;
}

.side-meenu-logo {
  height: 25px !important;
}

.dash-res-menu-btn {
  width: 40px;
  height: 40px;
  margin-left: 20px;
  border-radius: 33px;
  background: linear-gradient(45deg, rgb(255, 213, 107) 0%, rgb(255, 238, 196) 50%, rgb(255, 250, 239) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  cursor: pointer;
}

.side-menu .responsive-close {
  display: none;
}

.help-txt-icn {
  width: 20px;
  height: 20px;
  border-radius: 15px;
  background: #f8bc16;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 10px;
}

.help-txt-icn span {
  color: #2b2b2b;
  font-size: 15px;
}

.table-div table {
  width: 100%;
}

.table-div table tbody tr th {
  border-bottom: 1px solid #ddd;
  padding: 15px 10px;
  font-weight: 600;
}

.table-div table tbody tr td {
  padding: 15px 10px;
  color: #4d4d4d;
}

.tbl-ot {
  overflow-x: auto;
}

.table-div {
  padding: 10px 20px 20px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 19px 40px -10px;
  border-radius: 20px;
  background: #fff;
}

.tbl-status {
  padding-left: 13px;
  border-radius: 5px;
  float: left;
  position: relative;
}

.tbl-status::after {
  position: absolute;
  content: "";
  height: 7px;
  width: 7px;
  border-radius: 5px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.tbl-status.st1::after {
  background: #2ca87f;
}

.tbl-status.st2::after {
  background: #dc2626;
}

.tbl-status.st3::after {
  background: #ff7d1e;
}

.tbl-status.st4::after {
  background: #2167ff;
}

.tbl-status.st5::after {
  background: #872ff2;
}

.table-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
  float: left;
  width: 100%;
}

.tbl-btn {
  padding: 2px 5px;
  border: none;
  border-radius: 5px;
  font-size: 13px;
  color: #fff;
  transition: .2s ease-in-out;
}

.tbl-btn.t-btn1 {
  background: #2ca87f;
}

.tbl-btn.t-btn1:hover {
  background: #26916d;
}

.tbl-btn.t-btn2 {
  background: #ff8a35;
}

.tbl-btn.t-btn2:hover {
  background: #e47b30;
}

.tbl-btn.t-btn3 {
  background: #dc2626;
}

.tbl-btn.t-btn3:hover {
  background: #b11e1e;
}

.tbl-btn.t-btn4 {
  background: #a357ff;
}

.tbl-btn.t-btn4:hover {
  background: #8b4bda;
}

.tbl-btn.t-btn5 {
  background: #4680ff;
}

.tbl-btn.t-btn5:hover {
  background: #3c6dd8;
}

.tbl-btn.t-btn6 {
  background: #61cad5;
}

.tbl-btn.t-btn6:hover {
  background: #56b1bb;
}

.tb-rw {
  justify-content: space-between;
}

.form-field.tb-fld .select2-container .select2-selection--single {
  height: 45px !important;
}

.form-field.tb-fld .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 45px !important;
}

.form-field.tb-fld .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 45px !important;
}

.form-field.tb-fld input {
  height: 45px;
}

.tbl-pagination {
  border-top: 1px solid #ddd;
  padding: 20px 0 10px;
}

.pgrs-br-out {
  display: flex;
}

.pgrs-br-l {
  width: 110px;
  flex-shrink: 0;
  font-weight: 500;
}

.pgrs-count {
  width: 60px;
  text-align: right;
  flex-shrink: 0;
  font-weight: 600;
}

.pgrs-br-r {
  width: 100%;
  display: flex;
  align-items: center;
}

.pg-br-ot {
  float: left;
  width: 100%;
  background: #e6ddc4;
  height: 8px;
  border-radius: 5px;
}

.pg-br-in {
  float: left;
  background: #f8bc16;
  height: 8px;
  border-radius: 5px;
}

.pgr-o {
  display: grid;
  gap: 8px;
}

.res-t h4 {
  font-size: 16px !important;
  margin-bottom: 10px !important;
  font-weight: 600;
}

.res-t p {
  line-height: 28px;
  margin: 0;
  padding-left: 15px;
}

.res-bt {
  float: left;
  font-size: 15px;
  padding: 6px 12px;
  background: #ecebeb;
  border-radius: 20px;
  color: #1d1d1d;
}

.suggestion_title {
  font-weight: 500;
  margin-right: 5px;
  position: relative;
}

.suggestion_title::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #1d1d1d;
  left: -13px;
  top: 8px;
  border-radius: 5px;
}

.p-radio.rd1 [type="radio"]:checked+label,
.p-radio.rd1 [type="radio"]:not(:checked)+label {
  padding: 0 0 0 27px;
  background: unset;
}

.p-radio.rd1 [type="radio"]:checked+label::before,
.p-radio.rd1 [type="radio"]:not(:checked)+label::before {
  left: 0;
  top: 0;
}

.p-radio.rd1 [type="radio"]:checked+label::after,
.p-radio.rd1 [type="radio"]:not(:checked)+label::after {
  top: 5px;
  left: 5px;
}

.p-radio.rd1 [type="radio"]:checked+label,
.p-radio.rd1 [type="radio"]:not(:checked)+label {
  margin-bottom: 0;
}

.slct-eng {
  margin: 0px 0 15px 0;
  float: left;
  font-size: 15px;
  padding: 6px 15px;
  background: #fffaee;
  border-radius: 20px;
  color: #1d1d1d;
  display: flex;
  align-items: center;
}

.sl-span {
  font-size: 15px;
  font-weight: 500;
  margin-right: 10px;
}

.p-radio.rd1 {
  display: flex;
  align-items: center;
}

.p-radio.rd1 label {
  margin-right: 10px;
}

.p-radio.rd1:last-child label {
  margin: 0;
}

/* .masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.item {
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: auto;  
} */
/* .st-out {
  display: flex;
  gap: 25px;
} */
.st-vrt-alng {
  display: grid;
  width: 50%;
  gap: 25px;
}

.st-lst {
  padding: 25px;
  box-shadow: rgba(0, 0, 0, 0.11) 0px 10px 40px -10px;
  border-radius: 20px;
  background: #fff;
  float: left;
  width: 100%;
}

.st-lst-hd {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.st-lst-hd-l {
  display: flex;
  align-items: center;
}

.st-lst-hd-l h4 {
  margin: 0 0 0 10px;
  font-size: 17px;
}

.st-lst-hd-r {
  display: grid;
  justify-content: end;
  padding: 10px 15px;
  background: #f7f7f7;
  border-radius: 15px;
}

.st-hd-spn1 {
  text-align: right;
}

.st-hd-spn2 {
  margin-left: 5px;
  font-weight: 600;
}

.dash-icn.s1,
.s1 .st-lst-hd-r {
  background: #fdf1f1;
}

.dash-icn.s1 span,
.s1 .st-lst-hd-l h4 {
  color: #dc2626;
}

.dash-icn.s2,
.s2 .st-lst-hd-r {
  background: #e9f5f1;
}

.dash-icn.s2 span,
.s2 .st-lst-hd-l h4 {
  color: #2ca87f;
}

.dash-icn.s3,
.s3 .st-lst-hd-r {
  background: #ebf0fd;
}

.dash-icn.s3 span,
.s3 .st-lst-hd-l h4 {
  color: #2167ff;
}

.dash-icn.s4,
.s4 .st-lst-hd-r {
  background: #f3eaff;
}

.dash-icn.s4 span,
.s4 .st-lst-hd-l h4 {
  color: #872ff2;
}

.st-lst-cnt {
  background: #f9f9f9;
  border-radius: 15px;
  float: left;
  width: 100%;
  padding: 20px;
}

.st-lst-cnt ul {
  margin: 0;
  padding: 0;
  float: left;
  width: 100%;
}

.st-lst-cnt ul li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  float: left;
  width: 100%;
  border-bottom: 1px solid #ececec;
  padding: 0 5px 15px 5px;
}

.st-lst-cnt ul li:last-child {
  padding-bottom: 0;
  margin: 0;
  border: none;
}

.st-lst-r {
  font-size: 15px;
  font-weight: 600;
  width: 40px;
  text-align: right;
  flex-shrink: 0;
}

.prf {
  padding: 25px;
  box-shadow: rgba(0, 0, 0, 0.11) 0px 10px 40px -10px;
  border-radius: 20px;
  background: #fff;
}

.prf-l h4 {
  font-weight: 700;
  font-size: 22px;
  margin-top: 15px;
}

.prf-l ul {
  margin: 0;
  padding: 0;
  margin-top: 10px;
  float: left;
  width: 100%;
}

.prf-l ul li {
  list-style: none;
  margin-bottom: 7px;
}

.p-sb-txt {
  float: left;
  width: 100%;
  display: flex;
}

.s-sb-spn1 {
  display: flex;
  width: 160px;
  flex-shrink: 0;
  align-items: center;
  color: #6b6f73;
}

.p-icn {
  font-size: 18px !important;
  margin-right: 6px;
}

.s-sb-spn2 {
  font-weight: 500;
}

.prf-fld {
  padding: 25px;
  box-shadow: rgba(0, 0, 0, 0.11) 0px 10px 40px -10px;
  border-radius: 20px;
  background: #fff;
}

.tab-content,
.m-tab-content {
  display: none;
}

.tab-content.active,
.m-tab-content.active {
  display: block;
}

.spn-clr1 {
  padding: 0px 7px;
  background: #e9f5f1;
  color: #2ca87f;
  border-radius: 20px;
}

.spn-clr2 {
  padding: 0px 7px;
  background: #fdf1f1;
  color: #dc2626;
  border-radius: 20px;
}

.spn-clr3 {
  padding: 0px 7px;
  background: #ffefe3;
  color: #ff710a;
  border-radius: 20px;
}

.tab-area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 20px;
  margin-bottom: 5px;
}

.tab-btn {
  padding: 0 15px;
  border: none;
  height: 45px;
  border-radius: 12px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
}

.tab-btn span {
  font-size: 20px;
  margin-right: 5px;
}

.tab-btn:hover {
  background: linear-gradient(45deg, rgb(255, 223, 142) 0%, rgb(255, 234, 184) 50%, rgb(255, 250, 239) 100%);
}

.tab-btn.active {
  background: linear-gradient(45deg, rgb(255, 223, 142) 0%, rgb(255, 234, 184) 50%, rgb(255, 250, 239) 100%);
}

.tab-content h4 {
  font-size: 18px;
}

.tck-list {
  padding: 25px;
  box-shadow: rgba(0, 0, 0, 0.11) 0px 10px 40px -10px;
  border-radius: 20px;
  background: #fff;
}

.tk-tp {
  display: flex;
  justify-content: space-between;
}

.tk-tp-spn {
  font-weight: 500;
  padding: 7px 15px;
  background: #fff5dd;
  float: left;
  border-radius: 19px;
  color: #1d1d1d;
}

.tk-cnt h4 {
  font-size: 17px;
  position: relative;
  margin: 5px 0 20px 0;
  color: #1d1d1d;
}

.tk-cnt h4::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background: #f8bc16;
  bottom: -8px;
  left: 0;
}

.tk-cnt p {
  color: #646464;
}

.tk-cnt-spn {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  color: #6b6f73;
  margin-right: 12px;
}

.tk-cnt-spn span {
  font-size: 18px !important;
  margin-right: 6px;
}

.tk-btm {
  display: flex;
  border-right: 1px solid #ddd;
  padding: 5px 15px 5px 0;
}

.tk-btm:last-child {
  border-right: none;
  padding-right: 0;
}

.tk-cnt-in {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 13px;
}

.tk-pr-r {
  padding: 0 7px;
  border-radius: 6px;
  font-weight: 500;
}

.tk-pr1 {
  background: #f8bc161f;
  color: #ffb300;
}

.tk-pr2 {
  background: #ffefe3;
  color: #ff710a;
}

.tk-pr3 {
  background: #fdf1f1;
  color: #dc2626;
}

.tk-pr4 {
  background: #f1fdf2;
  color: #35dc26;
}

.tk-st-r {
  position: relative;
  /* font-weight: 500; */
  padding-left: 13px;
  color: #1d1d1d;
}

.tk-st-r.tk-st1::after,
.tk-st-r.tk-st2::after {
  position: absolute;
  content: "";
  height: 7px;
  width: 7px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 10px;
}

.tk-st-r.tk-st1::after {
  background: #2ca87f;
}

.tk-st-r.tk-st2::after {
  background: #dc2626;
}

.tck-list:last-child {
  margin-bottom: 0 !important;
}

.sp-tk-tp {
  justify-content: end;
}

.sp-tk {
  padding: 20px;
  background: #f9f9f9;
  border-radius: 15px;
  /* border: 1px solid #f0f0f0; */
  background: linear-gradient(45deg, rgb(230, 255, 246) 0%, rgb(238, 255, 230) 50%, rgb(255, 244, 223) 100%);
}

.tk-tp-spn.sp-tk-spn-l {
  background: #cbead1;
}

.tk-tp-spn.sp-tk-spn-r {
  background: #eee7cd;
}

.sp-tk .tk-cnt p {
  color: #373737;
}

.cht-in-cnt p {
  color: #646464;
}

.cht-ic {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 27px;
  font-size: 22px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cht-in {
  padding-left: 50px;
}

.cht-in-hd h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cht-in-hd span {
  color: #9d9d9d;
  font-size: 13px;
}

.cht {
  position: relative;
}

.cht-ic.cht-user {
  background: #cbe5ed;
  color: #5b94a6;
}

.cht-ic.cht-admin {
  background: #d9e4d7;
  color: #658c5e;
}

.s-btn1 {
  background: #dfdfdf;
  height: 50px;
  border: none;
  padding: 0 25px;
  color: #1d1d1d;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  border-radius: 12px;
  transition: .2s ease-in-out;
}

.s-btn1:hover {
  background: #cac9c9;
}

.subscr-in {
  display: flex;
  gap: 25px;
}

.subscr-item {
  width: 25%;
  padding: 25px;
  box-shadow: rgba(0, 0, 0, 0.11) 0px 10px 40px -10px;
  border: 2px solid #fff;
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
  transition: .2s ease-in-out;
}

/* .subscr-item.s1 {
  background: linear-gradient(35deg, rgb(222, 255, 201) 0%, rgb(246, 255, 240) 50%, rgb(255, 255, 255) 100%);
}
.subscr-item.s2 {
  background: linear-gradient(35deg, rgb(214, 249, 249) 0%, rgb(246, 255, 253) 50%, rgb(255, 255, 255) 100%);
}
.subscr-item.s3 {
  background: linear-gradient(35deg, rgb(245, 229, 247) 0%, rgb(253, 249, 255) 50%, rgb(255, 255, 255) 100%);
}
.subscr-item.s4 {
  background: linear-gradient(35deg, rgb(255, 223, 223) 0%, rgb(255, 248, 248) 50%, rgb(255, 255, 255) 100%);
} */
.sub-check {
  position: absolute;
  right: 25px;
  top: 42px;
}

.sub-check span {
  color: #e8e8e8;
  transition: .2s ease-in-out;
}

.sb-tp h4 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 2px;
  margin-top: 10px;
}

.sb-tp h4 span {
  font-weight: 600;
  margin-left: 5px;
}

.sb-tp p {
  color: #646464;
}

.sb-btm h4 {
  font-size: 26px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 5px;
}

.sb-btm h4 span {
  font-size: 18px;
  margin-right: 5px;
  font-weight: 500;
}

.subscr-item.active {
  border-color: #539557;
  transform: scale(1.07);
}

.subscr-item.active .sub-check span {
  color: #539557;
}

.sub-ftrs {
  display: flex;
  gap: 25px;
}

.sub-ft-list {
  width: 33.33%;
  padding: 25px;
  border-radius: 25px;
}

.sub-ft-list.s1 {
  background: linear-gradient(35deg, rgb(222, 255, 201) 0%, rgb(246, 255, 240) 50%, rgb(255, 255, 255) 100%);
}

.sub-ft-list.s2 {
  background: linear-gradient(35deg, rgb(214, 249, 249) 0%, rgb(246, 255, 253) 50%, rgb(255, 255, 255) 100%);
}

.sub-ft-list.s3 {
  background: linear-gradient(35deg, rgb(245, 229, 247) 0%, rgb(253, 249, 255) 50%, rgb(255, 255, 255) 100%);
}

.sub-ft-list.s4 {
  background: linear-gradient(35deg, rgb(255, 223, 223) 0%, rgb(255, 248, 248) 50%, rgb(255, 255, 255) 100%);
}

.bb-list ul {
  margin: 0;
  padding: 0;
}

.bb-list ul li {
  list-style: none;
  margin-bottom: 15px;
  position: relative;
  padding-left: 23px;
  line-height: 24px;
}

.bb-list ul li b {
  line-height: 24px;
}

.bb-list ul li span {
  position: absolute;
  font-size: 18px;
  left: 0;
  top: 3px;
  font-weight: 500;
}

.sub-ft-list h4 {
  font-size: 16px;
  margin: 5px 0 20px 0;
  display: flex;
  align-items: center;
}

.sub-hd-ic {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  margin-right: 8px;
}

.sub-hd-ic span {
  font-size: 20px;
}

.sub-ft-list.s1 h4 .sub-hd-ic {
  background: #cde1c0;
}

.sub-ft-list.s1 h4 .sub-hd-ic span {
  color: #2c6f01;
}

.sub-ft-list.s2 h4 .sub-hd-ic {
  background: #cee8e7;
}

.sub-ft-list.s2 h4 .sub-hd-ic span {
  color: #006864;
}

.sub-ft-list.s3 h4 .sub-hd-ic {
  background: #e4d4e8;
}

.sub-ft-list.s3 h4 .sub-hd-ic span {
  color: #771088;
}

.play-audio {
  padding: 5px 15px;
  background: #f8bc16;
  display: flex;
  align-items: center;
  border-radius: 20px;
  float: right;
  cursor: pointer;
  font-weight: 500;
  color: #1d1d1d;
}

.p-ans-h4 {
  margin-bottom: 10px !important;
}

.p-scr-h4 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}

.parctice-score {
  display: flex;
  justify-content: space-between;
  background: #fffaee;
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  align-items: center;
}

.parctice-score:last-child {
  margin-bottom: 0;
}

.p-scr-l h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 3px;
}

.q-date-time {
  color: #a49c86;
  font-size: 13px;
}

.p-scr-r {
  display: flex;
  gap: 8px;
}

.scr {
  display: flex;
  align-items: center;
  background: #f1e9d2;
  padding: 4px 4px 4px 12px;
  border-radius: 26px;
  font-weight: 500;
}

.scr-spn {
  background: #f8bc16;
  padding: 5px 10px;
  border-radius: 20px;
  margin-left: 10px;
  font-weight: 600;
}

.sc-icn {
  font-size: 20px !important;
  margin-right: 5px;
}

.scr-btn {
  background: #1d1d1d;
  border: none;
  padding: 0 15px;
  color: #fff;
  border-radius: 25px;
  font-weight: 500;
}

.play-audio span {
  margin-right: 5px;
}

.record-button.active {
  animation: pulse 1s infinite;
}

#stopBtn {
  background-color: #eee6ce;
}

#stopBtn.active {
  background-color: #ff6e66;
}

#audio-play {
  display: none;
}

.sc2 .scr1-in {
  width: 160px;
  flex-shrink: 0;
}

#audio-record {
  height: 80px;
  align-items: center;
  padding: 0 20px;
  border: 2px solid #f1e9d2;
  border-radius: 10px;
  position: relative;
  align-self: end;
  overflow: hidden;
}

#aud-line {
  position: absolute;
  background: #f1e9d2;
  height: 2px;
  right: 20px;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.image_help_note {
  color: #646464;
  margin-top: 10px;
  float: left;
  width: 100%;
}

.ans-dtl {
  display: flex;
  margin-top: 5px;
  float: left;
}

.ans-num {
  height: 30px;
  width: 30px;
  flex-shrink: 0;
  background: #515134;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  margin-right: 10px;
}

.ans-correct {
  background: #5acca61a;
}

.ans-correct .res-txt .res-t .ans-dtl .ans-num {
  background: #2ca87f;
}

.ans-correct .res-txt .res-t h4 {
  color: #09593f;
}

.ans-correct .res-txt .res-t .ans-dtl p {
  color: #09593f;
}

.ans-wrong {
  background: #f495951c;
}

.ans-wrong .res-txt .res-t .ans-dtl .ans-num {
  background: #e74747;
}

.ans-wrong .res-txt .res-t h4 {
  color: #950d0d;
}

.ans-wrong .res-txt .res-t .ans-dtl p {
  color: #950d0d;
}

.c-ans-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-direction: row;
  flex-wrap: wrap;
}

.ans-combo {
  display: flex;
  background: #caece1;
  padding: 10px;
  border-radius: 15px;
  gap: 7px;
}

.cmb-ans {
  width: 35px;
  height: 35px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background: #2ca87f;
  color: #fff;
}

.error-section.manage-pg .error-bg {
  font-size: 16vw;
  font-weight: 700 !important;
  font-family: "Poppins", sans-serif;
}

.error-section.manage-pg {
  padding: 80px 40px;
  min-height: calc(100vh - 315px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section.manage-pg .error-in .e-h1 {
  font-weight: 700;
}

.tbl-link {
  color: #4d4d4d;
  text-decoration: none;
  transition: .2s ease-in-out;
}

.tp-fld .m-btn {
  height: 45px;
  padding: 0px 15px;
  background: #2CA87F;
}

.tp-fld .m-btn:hover {
  background: #1D1D1D;
  color: #fff;
}

.tp-fld {
  display: flex;
  align-items: end;
  justify-content: end;
  gap: 10px;
}

.p-popup-1 {
  position: fixed;
  left: 50%;
  top: 50%;
  max-width: 700px;
  width: 100%;
  padding: 0 20px;
  z-index: 102;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(.9);
  transition: .2s ease-out;
}

.p-popup-1.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translate(-50%, -50%);
}

.attacment-area {
  max-height: calc(100vh - 300px);
  overflow: auto;
  border-radius: 15px;
  margin-top: 10px;
}

#confirmation_popup,
#subscription_popup {
  max-width: 500px;
}

.confirm-pop-in {
  text-align: center;
  padding: 10px 0;
}

.confirm-pop-in h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.confirm-pop-in p {
  color: #646464;
  margin-bottom: 25px;
}

.mock-test-list.float-start.w-100 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  background: #fffcf6;
  border-radius: 15px;
  border: 1px solid #ece3cd;
}

.mock-test-l {
  display: grid;
}

.mock-test-l-tp h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #1d1d1d;
}

.mock-test-l-bt ul {
  margin: 0;
  padding: 0;
  float: left;
}

.mock-test-l-bt ul li {
  float: left;
  list-style: none;
  color: #99927e;
  margin-right: 15px;
  display: flex;
  border-right: 1px solid #ece3cd;
  padding: 0 15px 0 0;
}

.mock-test-l-bt ul li span {
  color: #1d1d1d;
  font-weight: 500;
  margin-left: 10px;
}

.mock-test-r .scr-btn {
  height: 40px;
  border-radius: 10px;
}

.mock-test {
  display: grid;
  gap: 12px;
}

.mock-test-l-bt ul li:last-child {
  margin: 0;
  border: none;
  padding-right: 0;
}

.mock-test-out {
  margin: 120px 0 50px 0;
  /* background: #fffaee;
  padding: 30px;
  border-radius: 25px;
  padding: 25px 20px 20px; */
}

.subscription-pop-in h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.sub-in {
  margin-top: 10px;
  float: left;
  width: 100%;
}

.sb-in {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  width: 100%;
  float: left;
}

.sb-in-l p {
  margin: 0;
}

.sb-in-l h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.sb-in-l h4 span {
  font-size: 14px;
  margin-left: 5px;
  font-weight: 500;
}

.sb-in-r p {
  font-weight: 600;
  margin: 0;
}

.coupon-code {
  padding: 15px;
  border-radius: 15px;
  /* border: 2px solid #eee; */
  margin-bottom: 25px;
  margin-top: 15px;
  float: left;
  width: 100%;
  background: #f7f7f7;
}

.form-field.cpn-fld input {
  background: #fff;
  border-radius: 0;
}

.form-field.cpn-fld label {
  color: #646464;
  font-size: 14px;
}

.sb-in.grnd {
  margin-top: 5px;
  border-top: 1px solid #ececec;
  padding-top: 15px;
}

.form-field.cpn-fld label {
  color: #222;
}

.coupon_error {
  color: #d33c3c;
  margin-top: 5px;
  float: left;
}

.sb-in.grnd .sb-in-r p {
  font-size: 20px;
}

.sb-in-bt {
  float: left;
  width: 100%;
  margin: 20px 0 5px 0;
}

.cpn-inpt button {
  width: 85px;
  background: #fff;
  border: none;
  font-weight: 500;
  font-size: 13px;
}

.cpn-inpt {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}

.m-cnt {
  display: grid;
}

.q-list.m-lst {
  padding: 12px 15px;
}

.mock-btn {
  width: 80px;
  height: 40px;
  border: none;
  border-radius: 10px;
}

.mock-btn.bt-green {
  background: #6bc4a6;
}

.mock-btn.bt-orange {
  background: #ffb960;
}

.crnt-pln {
  font-size: 18px;
}

.c-pln {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 20px;
  margin: 15px 0 10px 0;
  /* max-width: 850px; */
}

.pln-cnt-tl {
  font-size: 13px;
  color: #8c8c8c;
  margin-bottom: 4px;
}

.pln-name {
  font-size: 16px;
  font-weight: 500;
  margin-right: 10px;
}

.pln-days {
  font-size: 18px;
  font-weight: 600;
  margin-right: 3px;
}

.pln-ant {
  font-size: 18px;
  font-weight: 600;
  padding-left: 4px;
}

.pln-cnt-txt {
  font-weight: 500;
  margin: 0;
}

.pln-cnt-span1 {
  font-size: 13px;
  color: #8c8c8c;
  margin-left: 5px;
  font-weight: 400;
}

.pln-status {
  position: relative;
  padding-left: 13px;
}

.pln-status::after {
  position: absolute;
  content: "";
  height: 7px;
  width: 7px;
  border-radius: 5px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #2ca87f;
}

.pln-cnt h4 {
  margin: 0;
}

.crnt-pln {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.crnt-pln-hd p {
  margin-bottom: 2px;
  font-size: 13px;
  color: #646464;
}

.dash-head-out {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.dash-head-out .dash-hd {
  margin-bottom: 10px;
}

.d-exm-date {
  margin-top: 25px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(45deg, rgb(230, 255, 246) 0%, rgb(238, 255, 230) 50%, rgb(255, 244, 223) 100%);
}

.ui-datepicker-calendar {
  width: 100%;
}

.exam-date-pick {
  background: #1e1e1e0d;
  padding: 10px;
  border-radius: 12px;
  margin-top: 20px;
}

.ui-datepicker-calendar tbody tr td a {
  color: #1d1d1d;
  text-decoration: none;
  font-weight: 500;
  height: 27px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: 27px;
  align-items: center;
  border-radius: 20px;
  transition: .2s ease-in-out;
}

.ui-datepicker-calendar tbody tr td a:hover {
  background: #f8bc16 !important;
}

.ui-datepicker-calendar thead,
.ui-datepicker-calendar tbody {
  float: left;
  width: 100%;
}

.ui-datepicker-calendar thead tr,
.ui-datepicker-calendar tbody tr {
  float: left;
  width: 100%;
  display: flex;
}

.ui-datepicker-calendar thead tr th,
.ui-datepicker-calendar tbody tr td {
  width: 14.28%;
  text-align: center;
  font-weight: 600;
}

.ui-datepicker-calendar thead tr th {
  margin-bottom: 10px;
}

.ui-datepicker-calendar tbody tr td {
  margin-bottom: 5px;
}

.ui-datepicker-month,
.ui-datepicker-year {
  font-size: 16px;
  font-weight: 600;
}

.ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all {
  position: relative;
  padding: 0 7px;
}

.ui-datepicker-next.ui-corner-all,
.ui-datepicker-prev.ui-corner-all {
  position: absolute;
  right: 10px;
  background: #fff;
}

.ui-datepicker-next.ui-corner-all span,
.ui-datepicker-prev.ui-corner-all span {
  display: none;
}

.ui-datepicker-next.ui-corner-all,
.ui-datepicker-prev.ui-corner-all {
  position: absolute;
  background: #fff;
  width: 25px;
  height: 25px;
  border-radius: 20px;
  top: 9px;
  cursor: pointer;
  transition: .2s ease-in-out;
}

.ui-datepicker-next.ui-corner-all:hover,
.ui-datepicker-prev.ui-corner-all:hover {
  background: #f8bc16 !important;
}

.ui-datepicker-next.ui-corner-all {
  right: 10px;
}

.ui-datepicker-prev.ui-corner-all {
  right: 45px;
}

.ui-datepicker-next.ui-corner-all::after {
  position: absolute;
  content: url("../images/chevron_right.svg");
  width: 14px;
  left: 7px;
  top: 4px;
  height: 18px;
}

.ui-datepicker-prev.ui-corner-all::after {
  position: absolute;
  content: url('../images/chevron_left.svg');
  width: 14px;
  left: 5px;
  top: 4px;
  height: 18px;
}

.ui-datepicker-title {
  padding: 10px 3px;
  border-bottom: 1px solid #cadfbd;
  margin-bottom: 15px;
}

#exam-date_count {
  display: none;
}

.exm-dt-bt {
  color: #1d1d1d;
  background: #f8bc16;
}

.exm-dt-bt:hover {
  color: #fff;
  background: #1d1d1d;
}

#exam_date {
  display: none;
}

.ui-state-default.ui-state-active {
  background: #f8bc16;
}

.ui-datepicker-today a {
  background: #fff;
}

#change_date:hover {
  background: #1d1d1d;
  color: #fff;
}

.mock-test-in {
  background: linear-gradient(45deg, rgb(230, 255, 246) 0%, rgb(238, 255, 230) 50%, rgb(255, 244, 223) 100%);
  padding: 30px 20px 20px;
  border-radius: 25px;
}

.mock-tst1 {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.mock-tst2 {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.mock-test-in-cnt {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
}

.mock-test-in .p-head {
  margin-bottom: 0;
  border: none;
  margin-top: 0;
}

.mock-span-in {
  font-weight: 600;
}

.mock-test-in-cnt ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

.timer.timer-mock {
  background: #fff;
  margin: 0;
}

.m-spn1 {
  padding-right: 6px;
  font-weight: 600;
  font-size: 15px;
}

.mock-head-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.p-span {
  font-weight: 600;
}

.mock-input textarea {
  height: 170px;
  border-radius: 12px;
  overflow: auto;
  padding: 20px;
  background: #f7f7f7;
  line-height: 30px;
  border: 1px solid #e8e8e8;
  font-size: 15px;
}

.mock-test-in-cnt h5 {
  line-height: 26px;
  font-size: 16px;
}

.mock-play-audio {
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
}

.mock-clr {
  background: #f7f7f7;
  border: 1px solid #e8e8e8 !important;
  border-radius: 12px;
}

.mock-test-in-cnt p {
  line-height: 35px;
  font-size: 15px;
}

.mock-test-in-cnt p span {
  font-size: 15px;
}

.mock-order {
  display: flex;
  gap: 60px;
}

.mock-order .sortable {
  width: 50%;
  display: inline-block !important;
  background: #f7f7f7 !important;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #e8e8e8;
  border-radius: 12px !important;
}

.mock-order .sortable h4 {
  border-bottom: 1px solid #e8e8e8;
}

.mock-order .sortable .ui-sortable-handle .item-in {
  background: #fff;
  border: 1px solid #e8e8e8;
}

.st-lst-out {
  width: 50%;
  float: left;
}

.st-lst-in {
  float: left;
  width: 100%;
  padding: 10px;
}

.toggle-btn {
  display: flex;
  background: #125454;
  margin-bottom: 20px;
  background: #f2f2f2;
  border-radius: 20px;
  padding: 4px;
  align-items: center;
}

.toggle-btn-item.active {
  background: #f8bc16;
}

.toggle-btn-item {
  font-size: 15px;
  font-weight: 500;
  width: 50%;
  padding: 6px 0;
  cursor: pointer;
  border-radius: 16px;
  height: 40px;
  align-items: center;
  display: flex;
  transition: .2s ease-in-out;
  justify-content: center;
}

.mock_help_text {
  border: 1px solid #E8E8E8;
  padding: 12px 20px;
  line-height: 28px;
  border-radius: 15px;
  font-weight: 500;
}

.st-out {
  display: flex;
  gap: 25px;
}

.mock-result {
  padding: 25px;
  box-shadow: rgba(0, 0, 0, 0.11) 0px 10px 40px -10px;
  border-radius: 25px;
  background: #fff;
}

.mock-result .p-head {
  border-color: #eee;
}

.mc-dtl-l h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.mc-spn1 {
  color: #6b6f73;
}

.mc-spn2 {
  margin-left: 5px;
  font-weight: 500;
}

.mc-dtl-l p {
  margin-bottom: 5px;
  line-height: unset !important;
}

.mc-rslt {
  padding: 40px 30px;
}

.mc-r-dtl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mc-dtl-r .total-time .total-time-in span {
  font-size: 45px;
}

.mc-rc-h4 {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin: 30px 0;
}

.mc-r-rslt {
  border-top: 1px solid #eee;
  margin-top: 35px;
}

.skill-progress {
  display: grid;
  gap: 15px;
}

.skill-progress-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.skill-progress-l {
  width: 110px;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 500;
}

.skill-progress-r {
  display: flex;
  align-content: center;
  justify-content: space-between;
  width: 100%;
}

.s-progress-l {
  width: 100%;
  display: flex;
  align-items: center;
}

.s-progress-bar {
  width: 100%;
  background: #f7f7f7;
  height: 10px;
  border-radius: 10px;
  float: left;
}

.s-progress-r {
  width: 100px;
  text-align: right;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 600;
}

.s-progress-bar-in {
  float: left;
  height: 10px;
  border-radius: 15px;
}

.mc-speaking .skill-progress-r .s-progress-l .s-progress-bar {
  background: #fee;
}

.mc-speaking .skill-progress-r .s-progress-l .s-progress-bar .s-progress-bar-in {
  background: #e65959;
}

.mc-writing .skill-progress-r .s-progress-l .s-progress-bar {
  background: #d6f7ec;
}

.mc-writing .skill-progress-r .s-progress-l .s-progress-bar .s-progress-bar-in {
  background: #3fb990;
}

.mc-reading .skill-progress-r .s-progress-l .s-progress-bar {
  background: #e5edff;
}

.mc-reading .skill-progress-r .s-progress-l .s-progress-bar .s-progress-bar-in {
  background: #3c79fd;
}

.mc-listening .skill-progress-r .s-progress-l .s-progress-bar {
  background: #ecddff;
}

.mc-listening .skill-progress-r .s-progress-l .s-progress-bar .s-progress-bar-in {
  background: #9e56f4;
}

.mock-reslt {
  max-width: 1000px !important;
}

.mock-rslt {
  background: #fff;
  border-radius: 25px;
  border: none;
  padding: 30px 20px 20px;
  box-shadow: rgba(0, 0, 0, 0.11) 0px 10px 40px -10px;
}

.parctice-score.m-rs {
  background: #f4f4f4;
  border-radius: 15px;
}

.m-rs .p-scr-l .q-date-time {
  color: #737373;
}

.parctice-score.m-rs .p-scr-r .scr {
  display: flex;
  align-items: center;
  background: #e3e3e3;
  padding: 4px 4px 4px 12px;
  border-radius: 26px;
  font-weight: 500;
}

.mock-rslt-tab {
  margin-bottom: 20px;
  padding-bottom: 15px;
}

.mock-an {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
}

.mock-an-l {
  width: 40%;
  display: flex;
}

.mock-an-r {
  width: 60%;
}

.mock-chart {
  box-shadow: rgba(0, 0, 0, 0.11) 0px 10px 40px -10px !important;
  border-radius: 20px;
  background: #fff;
  padding: 20px;
  width: 100%;
  display: flex;
}

/* .mock-chart-in {
  width: 228px;
} */
.mock-an-r .dash-tile-out .dash-tile {
  box-shadow: rgba(0, 0, 0, 0.11) 0px 10px 40px -10px !important;
}

.dash-tile-top-l.mc-d-hd {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mc-h {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1d1d1d !important;
}

.dash-tile-bottm.mc-dash-bt {
  display: grid;
  margin-top: 20px;
  gap: 10px;
}

.mc-sc {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mc-h2 {
  margin: 0 !important;
  font-size: 14px !important;
  font-weight: 500;
}

.m-scr {
  margin: 0 !important;
  font-weight: 600;
}

.mock-chart-in {
  margin: 0 auto;
  width: 275px;
}

.mock-analysis .p-head {
  border-color: #eee;
  margin-bottom: 30px;
}

.m-more span {
  margin-right: 5px;
}

.contact-us {
  margin: 120px 0 70px 0;
  display: flex;
}

.contact-r,
.contact-l {
  width: 50%;
}

.contact-l {
  padding: 50px 30px 70px 70px;
}

.c-tp span {
  font-size: 15px;
  color: #f8bc16;
  font-weight: 500;
  margin-bottom: 5px;
  float: left;
  width: 100%;
}

.c-tp h4 {
  font-weight: 600;
  font-size: 23px;
  margin-bottom: 15px;
  float: left;
  width: 100%;
  position: relative;
}

.c-tp h4::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 2px;
  background: #f8bc16;
  left: 1px;
  bottom: -6px;
}

.c-tp p {
  color: #646464;
  margin-bottom: 30px;
  float: left;
  width: 100%;
}

.contact-r {
  display: flex;
}

.contact-image {
  background-position: center !important;
  background-size: cover !important;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: end;
}

.c-btm {
  padding: 70px 35px 80px 35px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(19, 19, 19, 0.7) 100%);
}

.c-txt {
  position: relative;
}

.c-txt::after {
  position: absolute;
  content: "";
  background: #f8bc16;
  width: 3px;
  top: 4px;
  bottom: 4px;
}

.c-txt p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 28px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding-left: 20px;
}

.mock-system-requirement {
  display: grid;
  gap: 30px;
  padding: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.m-stm-req {
  padding: 25px 20px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.11) 0px 10px 40px -10px !important;
}

.s-rq-tp {
  display: flex;
  align-items: center;
}

.s-rq-bt {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.s-rq-icon {
  background: #e6e6e6;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  margin-right: 10px;
  flex-shrink: 0;
}

.s-rq-icon span {
  font-weight: 500;
}

.s-rq-tp h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.s-rq-icon.s-c1 span {
  color: #dc2626;
}

.s-rq-icon.s-c1 {
  background: #ffeaea;
}

.s-rq-icon.s-c2 span {
  color: #2167ff;
}

.s-rq-icon.s-c2 {
  background: #ebf0fd;
}

.s-rq-icon.s-c3 span {
  color: #872ff2;
}

.s-rq-icon.s-c3 {
  background: #f3eaff;
}

.s-rq-icon.s-c4 span {
  color: #2ca87f;
}

.s-rq-icon.s-c4 {
  background: #e9f5f1;
}

.s-rq-icon.s-c5 span {
  color: #ff8f00;
}

.s-rq-icon.s-c5 {
  background: #f9eee1;
}

.s-rq-icon.s-c6 span {
  color: #16c3f9;
}

.s-rq-icon.s-c6 {
  background: #e8f9ff;
}

.s-rq-icon.s-c7 span {
  color: #ee1fff;
}

.s-rq-icon.s-c7 {
  background: #feedff;
}

.s-rq-icon.s-c8 span {
  color: #6c5146;
}

.s-rq-icon.s-c8 {
  background: #f0e3de;
}

.s-rq-icon.s-c9 span {
  color: #8c1674;
}

.s-rq-icon.s-c9 {
  background: #fde9f9;
}

.s-rq-bt-in p {
  margin-bottom: 5px;
  color: #646464;
  line-height: unset;
  font-size: 14px;
}

.s-rq-p1 {
  font-weight: 500;
}

.s-rq-chkd span {
  color: #e8e8e8;
}

.s-rq-chkd.active span {
  color: #539557;
}

.s-rq-chkd {
  display: flex;
  /* align-items: center; */
  width: 30px;
  flex-shrink: 0;
}

.mock-pop-tp-r {
  display: flex;
  gap: 20px;
  align-items: center;
}

.m-btn.scr-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 12px;
  height: 40px;
  padding: 0px 15px;
}

.m-btn.scr-btn span {
  font-size: 22px;
}

.m-btn.mock-rslt-bt {
  height: 45px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.s-rq-bt-in {
  width: 100%;
}

.s-rq-btn {
  display: flex;
  gap: 12px;
}

.rq-btn {
  height: 50px;
  width: 50%;
  font-size: 15px;
  border-radius: 12px;
  border: none;
  transition: .2s ease-in-out;
  background: #f7f7f7;
}

.rq-btn.active {
  background: #1d1d1d;
  color: #fff;
}

.mock-req-ad .audio-in .audio-record .stop-button {
  display: none;
  background: #ff9090 !important;
}

.mock-req-ad {
  padding: 0 15px;
  border: none;
  height: 50px;
}

.mock-req-ad .audio-in .audio-record .record-button span,
.mock-req-ad .audio-in .audio-record .stop-button span {
  font-size: 22px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.mock-req-ad .audio-in .audio-record .record-button,
.mock-req-ad .audio-in .audio-record .stop-button {
  width: 33px;
  height: 33px;
  position: relative;
}

.mock-req-ad .aud-ply .ad-rec {
  height: 50px !important;
  border: none !important;
  padding: 0 !important;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#aud-line_two {
  position: absolute;
  background: #e5e5e5;
  height: 2px;
  right: 10px;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.mock-req-ad .aud-ply .ad-rec #aud-line {
  left: 0;
  right: 0;
}

.mock-req-ad .audio-in {
  border: none !important;
  padding: 0;
  display: flex;
}

.mock-rq-chk label {
  padding: 20px 25px;
}

.mock-rq-chk input:checked+label::after {
  left: 32px;
}

.mock-rq-chk label::before {
  background: #f7f7f7;
  border-color: #c1c1c1;
}

.play-audio #read_aloud_audio_data .mejs__container {
  height: unset !important;
}

.page-height1 {
  min-height: 100vh;
  position: relative;
  background: url('../images/banner-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.abt-cnt {
  margin: 120px 0 40px 0;
}

.abt-head {
  text-align: center;
  margin-bottom: 40px;
}

.abt-head h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1d1d1d;
  position: relative;
}

.abt-head h4::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 45px;
  background: #f8bc16;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
}

.abt-sc1-l-in h4 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
}

.abt-sc1 {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
}

.abt-sc1-l,
.abt-sc1-r {
  width: 50%;
}

.abt-sc1-r {
  padding: 0 75px;
}

.abt-img {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.abt-img img {
  width: 100%;
  border-radius: 30px;
}

.abt-img::before {
  content: "";
  position: absolute;
  border: 4px solid #f8bc16;
  left: -15px;
  top: -15px;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 30px;
}

.abt-img::after {
  content: "";
  position: absolute;
  border: 4px solid #1d1d1d;
  left: 15px;
  top: 15px;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 38px;
  background: #1d1d1d;
}

/* .abt-sc1-l-in {
  padding: 15px 0;
} */
.abt-sc2-in h4 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
}

.abt-list li h4 {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
  padding-left: 0;
}

.abt-list li h4::after {
  position: unset;
}

.m-container1 {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.abt-list {
  padding: 0;
  margin-top: 5px;
  float: left;
  margin-bottom: 0;
}

.abt-list li {
  list-style: none;
  position: relative;
  padding-left: 35px;
  margin-bottom: 5px;
  float: left;
  width: 100%;
}

.abt-l1 {
  color: #34b92f;
  font-size: 22px !important;
  font-weight: 500 !important;
  position: absolute;
  left: 5px;
}

.abt-list li:last-child {
  margin: 0;
}

.abt-l2 {
  color: #f8bc16;
  font-size: 20px !important;
  font-weight: 500 !important;
  position: absolute;
  left: 5px;
  top: 5px;
}

.abt-sc2-in p,
b,
.abt-sc1-l-in p,
b {
  font-size: 15px;
  line-height: 30px;
}

.abt-sc1-l-in h4,
.abt-sc2-in h4 {
  position: relative;
  padding-left: 15px;
}

.abt-sc1-l-in h4::after,
.abt-sc2-in h4::after {
  position: absolute;
  content: "";
  top: 6px;
  bottom: 6px;
  background: #f8bc16;
  width: 6px;
  left: 0;
}

b {
  font-weight: 600;
}

.sub-hd h4 {
  font-size: 22px;
  font-weight: 600;
}

.sub-hd p {
  margin: 0;
  color: #646464;
}

.hw-b {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 40px;
}

.hw-lst {
  text-align: center;
  position: relative;
  /* padding-top: 65px; */
  display: flex;
  padding: 65px 15px 0;
}

.hw-lst p {
  /* font-size: 15px;
  font-weight: 500; */
  margin: 0;
}

.hw-line {
  position: absolute;
  top: 0;
  width: 100%;
  height: 2px;
  background: #f8bc16;
  left: 50%;
  transform: translateX(-50%);
}

.hw-count {
  position: absolute;
  background: #1d1d1d;
  color: #fff;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  font-weight: 500;
  transform: translateX(-50%);
  left: 50%;
  top: -12px;
}

.hw-lst:first-child .hw-line {
  width: 50%;
  right: 0;
  transform: unset;
  top: 1px;
}

.hw-lst:last-child .hw-line {
  width: 50%;
  left: 0;
  transform: unset;
  top: 1px;
}

.hw-lst:first-child {
  padding-left: 0;
}

.hw-lst:last-child {
  padding-right: 0;
}

.h-cnt {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 40px -10px;
  width: 100%;
  padding: 18px;
  display: flex;
  align-items: center;
  border-radius: 25px;
}

.hw-lst::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 41px;
  background: #f8bc16;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.hw-lst::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: #f8bc16;
  border-radius: 5px;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.faq-sc {
  margin: 0 auto;
  width: 100%;
  max-width: 850px;
}

.faq-ul {
  margin: 0;
  padding: 0;
}

.faq-ul li {
  float: left;
  width: 100%;
  list-style: none;
  padding: 20px;
  background: #f7f7f7;
  margin-bottom: 20px;
  border-radius: 15px;
  cursor: pointer;
  position: relative;
}

.faq-d1 {
  font-size: 15px;
  font-weight: 500;
  padding: 0 30px 0 5px;
}

.faq-d2 {
  display: none;
  padding: 12px 30px 5px 5px;
  color: #646464;
}

.faq-dwn {
  position: absolute;
  right: 15px;
  font-size: 28px !important;
  transition: .2s ease-in-out;
  top: 18px;
}

.faq-dwn.active {
  transform: rotate(180deg);
}

#scoreboard_pagination {
  border-color: #dbd2bc;
}

.pop-days {
  float: right;
  font-size: 15px;
  padding: 6px 12px;
  background: #f3f3f3;
  border-radius: 20px;
  color: #1d1d1d;
}

.spn-bld {
  font-weight: 600;
  font-size: 15px;
}

.subscription_btn {
  background: #1d1d1d;
  color: #fff;
}

.tbl-srch {
  position: relative;
}

.tbl-srch input {
  padding-right: 35px;
}

.tbl-cl-ic {
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
  width: 35px;
  cursor: pointer;
  opacity: .8;
}

.tbl-cl-ic span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.loader {
  position: fixed;
  inset: 0px;
  background: rgba(255, 255, 255, 0.79);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.loading {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  position: relative;
}

.loading::before,
.loading::after {
  content: '';
  background-color: #000;
  position: absolute;
  border-radius: 50%;
  inset: 0;
}

.loading::before {
  --animation-delay: 0ms;
}

.loading::after {
  background-color: #ff9b00;
  transform: scale(0);
  inset: 5px;
  --animation-delay: 500ms;
}

.loading::before,
.loading::after {
  animation: scale 1s infinite;
  animation-delay: var(--animation-delay);
}

@keyframes scale {
  from {
    transform: scale(0);
    opacity: 1;
  }

  to {
    transform: scale(1);
    opacity: 0;
  }
}

.q-list-left {
  display: flex;
}

#mock_test_data a,
.start_practice,
.sectional_view_score_btn {
  text-decoration: none;
}

.hd-1 {
  font-size: 22px !important;
}

.hd-2 {
  font-size: 18px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.q-list-right .mock-btn {
  width: unset !important;
  padding: 0 15px !important;
}

.service-in {
  display: flex;
  gap: 40px;
}

.service-cnt {
  padding: 35px 30px;
  box-shadow: rgba(0, 0, 0, 0.11) 0px 10px 40px -10px;
  border-radius: 25px;
  background: #fff;
}

.service-cnt h4 {
  font-size: 24px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin: 5px 0 20px;
  text-align: center;
}

.service-cnt p {
  line-height: 26px;
  margin-bottom: 20px;
}

.service-featurs h4 {
  text-align: left;
  font-size: 18px;
}

.service-featurs ul {
  padding: 0;
}

.service-featurs ul li {
  list-style: none;
  margin-bottom: 18px;
  position: relative;
  padding-left: 25px;
}

.service-featurs ul li span {
  color: #198754;
  color: #fb0;
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  left: 0;
  /* top: 1px; */
}

.get-start-section {
  background: #f8bc16;
}

.gts-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 0;
}

.gts-r {
  flex-shrink: 0;
}

.gts-l h4 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.gts-l p {
  margin: 0;
  font-size: 16px;
}

.gts-r .m-btn {
  background: #fff;
  color: #1d1d1d;
  font-size: 15px;
  padding: 16px 25px;
  height: unset;
}

.gts-r .m-btn:hover {
  background: #1d1d1d;
  color: #fff;
}

.pte-modules {
  background: #f8f9fa;
}

.pte-modules-in {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(4, 1fr);
}

.pte-modules-list {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  margin-bottom: 20px;
}

.modules-list-hd {
  display: flex;
  margin-top: 10px;
  align-items: center;
  margin-bottom: 25px;
}

.modules-list-icn {
  width: 40px;
  height: 40px;
  background: #fff4d6;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modules-list-icn span {
  color: #fff;
  color: #ff8f00;
}

.modules-list-hd h4 {
  margin: 0;
  padding-left: 12px;
  font-weight: 600;
}

.pte-modules-list ul {
  padding: 0;
}

.pte-modules-list ul li {
  list-style: none;
  margin-bottom: 20px;
  font-size: 15px;
  position: relative;
  padding-left: 25px;
}

.pte-modules-list ul li span {
  color: #fb0;
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 3px;
}

.ai-feature {
  background: #fffaef;
}

.ai-feature-in {
  display: flex;
  padding: 20px 0;
  gap: 30px;
}

.ai-feature-in-l,
.ai-feature-in-r {
  width: 50%;
  display: flex;
  align-items: center;
}

.ai-feature-in-l-img {
  border-radius: 25px;
  overflow: hidden;
}

.ai-feature-in-r {
  display: flex;
  align-items: center;
}

.ai-feature-in-r-cnt h4 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
}

.ai-cnt-list ul {
  margin: 0;
  padding: 0;
}

.ai-cnt-list ul li {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  list-style: none;
  padding: 25px;
  display: flex;
}

.ai-cnt-list ul li:last-child {
  margin-bottom: 0;
}

.ai-cnt-list ul li span {
  font-size: 35px;
  color: #f8bc16;
  font-weight: 500;
  padding-top: 5px;
  margin-right: 15px;
}

.ai-list-cnt h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.ai-list-cnt p {
  margin: 0;
}



.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image object {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.hero-image object:hover {
  transform: translateY(-5px);
}

.achievement-card {
  bottom: -13px;
  left: 36%;
  min-width: 200px;
  z-index: 2;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 3s ease-in-out infinite;
}

.hero-stat {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  border: 1px solid rgba(248, 188, 22, 0.2);
  transition: all 0.3s ease;
}

.hero-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--primary);
}

.hero-stat h3 {
  color: var(--primary);
  font-size: 2rem;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(248, 188, 22, 0.1));
}

.pte-components {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pte-components .component {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(248, 188, 22, 0.2);
  animation: float 3s ease-in-out infinite;
  backdrop-filter: blur(5px);
}

.pte-components .component i {
  color: var(--primary);
  font-size: 1.2rem;
}

.pte-components .component span {
  color: var(--dark);
  font-weight: 500;
  font-size: 0.9rem;
}

.pte-components .speaking {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.pte-components .listening {
  top: 10%;
  right: 10%;
  animation-delay: 0.5s;
}

.pte-components .reading {
  bottom: 20%;
  left: 10%;
  animation-delay: 1s;
}

.pte-components .writing {
  bottom: 20%;
  right: 10%;
  animation-delay: 1.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.05);
  }
}

.color_1 {
  color: #2ca87f;
}

.color_2 {
  color: #ff7b00;
}

.color_3 {
  color: #dc2626;
}

.color-indication {
  display: flex;
  justify-content: center;
}

.color-indication ul {
  margin: 0;
  padding: 0;
}

.color-indication ul li {
  float: left;
  list-style: none;
  position: relative;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.color-indication ul li::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 3px;
}

.indiation-cl1::after {
  background: #2ca87f;
}

.indiation-cl2::after {
  background: #ff7b00;
}

.indiation-cl3::after {
  background: #dc2626;
}

.recording_time_text {
  text-align: right;
}

.txt-btn {
  padding: 4px 8px;
  display: flex;
  align-items: center;
  border: 1px solid #e8e8e8;
  margin-right: 7px;
  border-radius: 8px;
  background: #f7f7f7;
  font-size: 13px;
  transition: .2s ease-in-out;
}

.txt-btn span {
  font-size: 18px !important;
  font-weight: 500 !important;
  margin-right: 3px;
}

.txt-btn:hover {
  background: #e8e8e8;
}

.txt-btn-practice .txt-btn {
  background: #fffaee;
  border: none;
}

.txt-btn-practice .txt-btn:hover {
  background: #ddd1af;
}

.referral-sec {
  display: flex;
  height: 50px;
  margin-bottom: 5px;
}

.rf-txt {
  width: 100%;
  align-items: center;
  display: flex;
  padding-left: 15px;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 2.5px;
  font-weight: 600;
  border: 2px dashed #d9d9db;
  border-bottom-left-radius: 12px;
  border-top-left-radius: 12px;
  border-right: none;
}

.rf-bt {
  padding: 0 15px;
  border-radius: 12px;
  border: none;
  background: #1d1d1d;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: .2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 5px;
}

.rf-bt span {
  font-size: 20px;
  font-weight: 500;
}

.rf-bt:hover {
  background: #f8bc16;
  color: #1d1d1d;
}

.dash-mock-exam,
.dash-chart-in,
.dash-tile {
  box-shadow: rgba(0, 0, 0, 0.11) 0px 10px 40px -10px !important;
}

.rf-dv {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 16px 0;
  color: #939393;
}

.rf-dv span {
  z-index: 1;
  background: #fff;
  padding: 0 15px;
}

.rf-dv::after {
  position: absolute;
  content: "";
  width: 60%;
  height: 1px;
  background: #e6e6e6;
  top: 50%;
  z-index: 0;
}

.rf-link p {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.rf-link p a {
  display: flex;
  gap: 2px !important;
  text-decoration: none;
  font-weight: 600;
  color: #1d1d1d;
  background: #ffeec5;
  padding: 5px 10px;
  border-radius: 12px;
  align-items: center;
  transition: .2s ease-in-out;
}

.rf-link p a span {
  font-size: 20px !important;
  font-weight: 500 !important;
}

.rf-link p a:hover {
  background: #f8bc16;
}

.error-img {
  position: absolute;
  color: #ffedbb;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 350px;
  opacity: .4;
  width: 100%;
}

.referral_link input {
  width: 100%;
  border: none;
  padding: 0 10px 0 0;
  color: #3c3c3c;
  font-size: 14px;
}

.notification {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  cursor: pointer;
  background: #fff6e1;
  border-radius: 12px;
  padding: 0;
}

.notification span {
  font-weight: 500 !important;
  font-size: 21px;
  position: relative;
}

.notif-icn.active::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background: #dc2626;
  border-radius: 5px;
  right: 2px;
  top: 3px;
}

.notif-out {
  position: relative;
}

.notif-drp .user-menu-drp-in {
  min-width: 380px !important;
  padding: 25px 0;
}

.notif-drp {
  right: -70px !important;
}

.ntf-tp {
  /* display: flex;
  align-items: start;
  justify-content: space-between; */
  margin-bottom: 5px;
}

.ntf-hd h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  color: #1d1d1d;
}

.ntf-date span {
  font-size: 12px;
  color: rgb(129, 129, 129);
}

.ntf-bt p {
  margin: 0;
  line-height: 22px;
  color: rgb(54 54 54);
}

.ntf-date {
  flex-shrink: 0;
  text-align: right;
  margin-top: 5px;

}

.notif-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 20px;
}

.notif-item a {
  text-decoration: none;
}

.notif-list {
  max-height: 350px;
  overflow: auto;
}

.notif-item:last-child {
  border: none;
  /* padding-bottom: 0; */
  margin: 0;
}

.notif-main-hd {
  font-weight: 600;
  position: relative;
  margin-bottom: 25px;
  padding: 0 20px;
}

.notif-main-hd::after {
  content: "";
  position: absolute;
  left: 20px;
  height: 2px;
  width: 50px;
  background: #f8bc16;
  bottom: -5px;
}

.ntf-hd a {
  color: #1d1d1d;
  text-decoration: none;
}

.no_notif {
  text-align: center;
  margin: 30px 0 25px;
}

.no_notif span {
  font-size: 65px;
  color: #f8bc16;
  opacity: .6;
}

.no_notif p {
  font-size: 16px;
  color: #656565;
  font-weight: 500;
  margin-top: 5px;
}

.notif-item.unreaded {
  background: rgb(242, 242, 242);
}

.mt-record {
  cursor: default;
}

.m-btn.bt-disabled {
    opacity: .5;
}

.pte-type {
  padding: 2px 10px;
  background: #f8bc16;
  font-size: 14px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  margin-right: 15px;
  border-radius: 19px;
  background: linear-gradient(45deg, rgb(255, 223, 142) 0%, rgb(255, 234, 184) 50%, rgb(255, 250, 239) 100%);
}

.record-button.active {
    cursor: unset;
    opacity: .7;
}


.mic_wrng_popup {
  position: fixed;
  left: 50%;
  top: 50%;
  max-width: 600px;
  width: 90%;
  padding: 0 20px;
  z-index: 102;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(.9);
  transition: .2s ease-out;
  text-align: center;
}

.mic_wrng_popup.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translate(-50%, -50%);
}

.mic_wrng_popup {
  background: #fff;
  padding: 15px;
  border-radius: 15px;
}

.mic_wrng_icn {
    font-size: 55px !important;
    font-weight: 700 !important;
    color: #f8bc16;
}

#record_text {
    text-align: center;
}
.contact-no {
    font-size: 14px;
    display: flex;
    align-items: center;
}
.contact-no span {
    font-size: 20px;
    margin-right: 8px;
}

.abt-sc2-in p, .abt-sc2-in i, .abt-sc2-in li, .abt-sc2-in li strong, .abt-sc2-in p span {
  font-size: 16px;
}
