@import url("https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700&display=swap");
:root {
  --primary-color: #5B4FF0;
  --primary-hover-color: #544bd1;
  --success-color: #2BA099;
  --success-hover-color: #1e9991;
  --danger-color: #FC4A31;
  --danger-hover-color: #d8351f;
  --light-text-color: #ffffffbe;
  --text-color: #525252c9;
  --title-alt-color: #000000b6;
  --big-text: 64px;
  --big-text-lg: 56px;
  --big-text-md: 48px;
  --big-text-sm: 42px;
}

* {
  font-family: "Golos Text", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  overflow: hidden;
}

p {
  color: var(--text-color);
  line-height: 28px;
}

h2,
h3,
h4,
h5 {
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 5px;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--primary-color);
  color: #fff !important;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: 0.2s background;
  outline: none;
}
.button img {
  width: 24px;
}
.button:hover {
  background-color: var(--primary-hover-color);
}

.button-success {
  background-color: var(--success-color);
}
.button-success:hover {
  background-color: var(--success-hover-color);
}

.button-danger {
  background-color: var(--danger-color);
}
.button-danger:hover {
  background-color: var(--danger-hover-color);
}

.button-sm {
  font-size: 16px;
  padding: 4px 12px;
}

.button-lg {
  font-size: 18px;
}

.button-disabled {
  background-color: #cdcdcd;
}
.button-disabled:hover {
  background-color: #cdcdcd;
}

.badge {
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 4px;
}

.badge-primary {
  color: #fff;
  background-color: #009974;
}

.badge-danger {
  color: #fff;
  background-color: #d8351f;
}

.main {
  overflow: hidden;
  position: relative;
  padding-bottom: 100px;
}
.main__bg {
  position: absolute;
  z-index: -1;
  min-width: 101%;
  max-height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: visible;
}
.main__lines {
  position: absolute;
  z-index: -1;
  right: -50px;
  top: -50px;
  overflow: hidden;
}
.main .header {
  z-index: 1;
  height: 75px;
}
.main .header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.main .header__logo {
  min-width: 160px;
  z-index: 1;
}
.main .header__nav {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 32px;
  margin: 0;
  width: 100%;
  height: 100%;
  list-style: none;
  z-index: 1;
}
.main .header__nav_item {
  display: flex;
  align-items: center;
}
.main .header__nav_link {
  color: #D2D2D2;
  text-decoration: none;
  transition: 0.1s all;
  font-weight: 500;
}
.main .header__nav_link:hover {
  color: #fff;
}
.main .header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px !important;
  height: 50px;
  z-index: 1;
}
.main .header__toggle img {
  fill: #fff !important;
  cursor: pointer;
}
.main .hero {
  padding: 45px 0;
}
.main .hero__image {
  display: flex;
  align-items: center;
  justify-content: end;
}
.main .hero__box_title {
  font-size: var(--big-text);
  font-weight: 700;
  color: #fff;
}
.main .hero__box_content {
  color: var(--light-text-color);
  line-height: 28px;
  font-size: 18px;
}

.hiw {
  padding: 50px 0 100px;
  position: relative;
  overflow: hidden;
}
.hiw__title {
  font-size: 40;
  text-align: center;
}
.hiw__description {
  font-size: 18;
  text-align: center;
  margin-bottom: 55px;
}
.hiw__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.hiw__cards_single {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  border: 1px solid rgba(0, 0, 0, 0.1333333333);
  border-radius: 25px;
  padding: 30px 50px;
  background-color: rgba(255, 255, 255, 0.3921568627);
  box-shadow: 0 0 68px rgba(0, 0, 0, 0.1529411765);
  z-index: 1;
  -webkit-backdrop-filter: blur(1.75px);
          backdrop-filter: blur(1.75px);
}
.hiw__cards_single_img {
  max-width: 85px;
}
.hiw__cards_single_content {
  text-align: center;
}
.hiw__cards_single_content h3 {
  font-size: 24px !important;
  font-weight: 500;
  color: #000;
}
.hiw__bg {
  position: absolute;
  bottom: 20px;
  right: -20px;
  z-index: -1;
}

.features {
  background-color: #F1F0FC;
  padding: 100px 15px 75px;
}
.features__title {
  font-size: 40;
  text-align: center;
}
.features__description {
  font-size: 18;
  text-align: center;
  margin-bottom: 55px;
}
.features__image {
  display: flex;
  align-items: center;
}
.features__box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.features__box_single {
  display: flex;
  gap: 10px;
}
.features__box_single img {
  min-width: 30px;
  height: 25px;
  top: 5px;
}
.features__box_single_content h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 5px;
}
.features__box_single_content p {
  margin-bottom: 15px;
}

.support {
  padding: 100px 15px;
}
.support__title {
  text-align: center;
}
.support__description {
  text-align: center;
  margin-bottom: 30px;
}
.support__box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.support__box_form {
  display: grid;
  gap: 15px;
  width: 550px;
  background-color: #fff;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1490196078);
  border-radius: 15px;
  padding: 30px 40px;
  border: 1px solid rgba(0, 0, 0, 0.0941176471);
}
.support__box_form_field {
  display: grid;
  gap: 5px;
}
.support__box_form_field label {
  color: rgba(64, 64, 64, 0.9098039216);
}
.support__box_form_field input,
.support__box_form_field textarea {
  background-color: rgba(229, 229, 229, 0.7058823529);
  outline: none;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
}
.support__box_form_field input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.2549019608);
}
.support__box_form_field input::placeholder {
  color: rgba(0, 0, 0, 0.2549019608);
}
.support__box_form_button {
  border: none;
}

.footer {
  background-color: #ECECEC;
}

.student {
  height: 100vh;
  line-height: 25px;
}
.student p {
  color: rgba(0, 0, 0, 0.7137254902);
}
.student a {
  color: #6258e9;
  font-weight: 500;
}
.student h2,
.student h3,
.student h4,
.student h5 {
  line-height: 30px;
}

.sdashboard {
  background: linear-gradient(66deg, rgba(0, 94, 255, 0.3176470588), rgba(90, 79, 240, 0.067));
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  overflow-y: scroll;
}
.sdashboard__container {
  height: 100%;
  max-width: 1200px;
  padding: 15px;
}
.sdashboard__sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: fixed;
  top: 20px;
  bottom: 20px;
  transition: 0.1s all;
  width: 275px;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 25px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.0901960784);
  z-index: 1;
}
.sdashboard__sidebar_close {
  position: absolute;
  left: 25px;
  top: 25px;
  z-index: 1;
  cursor: pointer;
  display: none;
}
.sdashboard__sidebar_logo {
  max-width: 75px;
}
.sdashboard__sidebar_menu {
  display: grid;
  gap: 15px;
  width: 100%;
  min-width: 35px;
  list-style: none;
  box-sizing: border-box;
  padding-left: 0;
}
.sdashboard__sidebar_link {
  display: flex;
  gap: 12px;
  background-color: #EFEFEF;
  width: 100%;
  color: rgba(0, 0, 0, 0.7137254902) !important;
  padding: 6px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.1s background-color;
}
.sdashboard__sidebar_link img {
  max-width: 22px;
}
.sdashboard__sidebar_link:hover {
  background-color: #e5e5e5;
}
.sdashboard__sidebar_link.active {
  background-color: var(--primary-color);
  color: #fff !important;
}
.sdashboard__sidebar_link.active img {
  filter: invert(98%) sepia(0%) saturate(7492%) hue-rotate(24deg) brightness(97%) contrast(101%);
}
.sdashboard__bar {
  background-color: #fff;
  border-radius: 20px;
  padding: 28px 30px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.0901960784);
  max-width: 100%;
}
.sdashboard__bar_topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.sdashboard__bar_title {
  font-size: 18px;
  color: #555555;
}
.sdashboard__bar_link {
  font-size: 15px;
  text-align: right;
}
.sdashboard__bar_doublecolumn {
  grid-column: 1/3;
}
.sdashboard__main {
  margin-left: 310px;
  margin-top: 15px;
}
.sdashboard__topbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.sdashboard__topbar_greetings {
  display: grid;
}
.sdashboard__topbar_greetings_title {
  font-size: 28px;
  font-weight: 500;
  color: var(--title-alt-color);
}
.sdashboard__topbar_right {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}
.sdashboard__topbar_right_info {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.sdashboard__topbar_right_coins {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 20px;
  border-radius: 50px;
  background-color: #2BA099;
}
.sdashboard__topbar_right_coins span {
  color: #FDE87C;
  font-size: 19px;
}
.sdashboard__topbar_right_menu {
  padding: 5px;
  display: none;
  cursor: pointer;
}
.sdashboard__topbar_right_notification {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
}
.sdashboard__topbar_right_notification span {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background-color: #f5c65a;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #000;
  font-size: 12px;
}
.sdashboard__topbar_right_notimenu::-webkit-scrollbar {
  width: 0;
}
.sdashboard__topbar_right_notimenu {
  position: absolute;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  top: 50px;
  right: 0;
  width: 250px;
  background-color: #fff;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 15px;
  box-shadow: 0 0 12px hsla(0, 0%, 0%, 0.1);
  transition: 0.2s all;
  height: 320px;
  overflow-y: scroll;
}
.sdashboard__topbar_right_notimenu_single {
  display: flex;
  flex-direction: column;
  background-color: #f6f6f6;
  padding: 8px 12px;
  border-radius: 8px;
  align-items: end;
}
.sdashboard__topbar_right_notimenu_single span {
  width: 100%;
  font-size: 15px;
  line-height: 22px;
}
.sdashboard__topbar_right_notimenu_single a {
  font-size: 14px;
}
.sdashboard__topbar_right_notimenu.active {
  visibility: visible;
  opacity: 1;
}
.sdashboard__topbar_right_profile {
  width: 35px;
  height: 35px;
  cursor: pointer;
}
.sdashboard__topbar_right_profilemenu {
  position: absolute;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  top: 50px;
  right: 0;
  width: 180px;
  background-color: #fff;
  gap: 5px;
  padding: 10px 15px;
  border-radius: 15px;
  box-shadow: 0 0 12px hsla(0, 0%, 0%, 0.1);
  list-style: none;
  transition: 0.2s all;
  overflow-y: scroll;
}
.sdashboard__topbar_right_profilemenu a {
  text-decoration: none;
  color: var(--title-color);
  padding: 0 5px;
  display: flex;
  gap: 5px;
  align-items: center;
}
.sdashboard__topbar_right_profilemenu a img {
  width: 20px;
  height: 20px;
}
.sdashboard__topbar_right_profilemenu label {
  font-size: 14px;
  color: var(--text-color);
}
.sdashboard__topbar_right_profilemenu::-webkit-scrollbar {
  width: 0;
}
.sdashboard__topbar_right_profilemenu.active {
  visibility: visible;
  opacity: 1;
}
.sdashboard__dashboard {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 25px;
  grid-auto-rows: min-content;
  padding-bottom: 20px;
}
.sdashboard__dashboard_box {
  display: grid;
  gap: 15px;
}
.sdashboard__dashboard_box_single {
  display: grid;
  gap: 12px;
  padding: 30px 20px;
  background: linear-gradient(to right, #FFFEFF, #F3E4FF);
  border: 1px solid #FF8CD1;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.0980392157);
}
.sdashboard__dashboard_box_title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.sdashboard__dashboard_box_description {
  font-size: 15px;
  line-height: 25px;
  color: #5b5b5b;
}
.sdashboard__dashboard_box_time {
  font-size: 14px;
}
.sdashboard__dashboard_result {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}
.sdashboard__dashboard_result_graph {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sdashboard__dashboard_result_graph canvas {
  max-width: 100%;
}
.sdashboard__dashboard_result_graph div {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sdashboard__dashboard_result_graph div span {
  font-size: 14px;
}
.sdashboard__dashboard_result_graph div b {
  font-size: 48px;
  color: var(--primary-color);
}
.sdashboard__dashboard_result_data {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.sdashboard__dashboard_result_data span {
  color: var(--text-color);
  font-weight: 500;
}
.sdashboard__dashboard_result_data b {
  font-size: 22px;
  color: var(--title-alt-color);
}
.sdashboard__dashboard_profile {
  padding: 0 15px;
}
.sdashboard__dashboard_profile_image {
  width: 75px;
  height: 75px;
}
.sdashboard__dashboard_profile_section {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sdashboard__dashboard_profile_section span {
  color: var(--text-color);
  font-weight: 500;
}
.sdashboard__dashboard_profile_section b {
  font-size: 26px;
  color: var(--title-alt-color);
  margin-left: 2px;
}
.sdashboard__dashboard_profile_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.sdashboard__dashboard_profile_data {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: #e6e6e6;
  padding: 15px 20px;
  border-radius: 8px;
}
.sdashboard__dashboard_profile_data b {
  font-size: 24px;
  color: var(--title-alt-color);
}
.sdashboard__dashboard_profile_data span {
  color: var(--text-color);
  font-weight: 500;
}
.sdashboard__quiz {
  padding-bottom: 15px;
}
.sdashboard__quiz_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, max-content);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 30px;
  min-height: 550px;
}
.sdashboard__quiz_box_single {
  padding: 25px 20px;
  background: linear-gradient(to right, #FFFEFF, #F3E4FF);
  border: 1px solid #FF8CD1;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.0980392157);
  text-decoration: none;
}
.sdashboard__quiz_box_subject {
  color: var(--title-alt-color);
  font-size: 24px;
}
.sdashboard__quiz_box_time {
  color: var(--text-color);
  font-size: 14px;
}
.sdashboard__quiz_box_title {
  color: var(--title-alt-color);
  font-weight: 600;
  font-size: 18px;
}
.sdashboard__quiz_box_description {
  color: var(--text-color);
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 15px;
}
.sdashboard__quiz_box_time {
  font-size: 14px;
}
.sdashboard__result {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}
.sdashboard__result_overall {
  display: grid;
}
.sdashboard__result_overall_meter {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 250px;
}
.sdashboard__result_overall_meter canvas {
  max-width: 100%;
  position: relative;
}
.sdashboard__result_overall_meter div {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sdashboard__result_overall_meter div span {
  font-size: 14px;
}
.sdashboard__result_overall_meter div b {
  font-size: 48px;
  color: var(--primary-color);
}
.sdashboard__result_overall_data {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.sdashboard__result_overall_data span {
  color: var(--text-color);
  font-weight: 500;
}
.sdashboard__result_overall_data b {
  font-size: 22px;
  color: var(--title-alt-color);
}
.sdashboard__result_global {
  padding: 0 10px;
}
.sdashboard__result_global_box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 45px;
}
.sdashboard__result_global_single {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}
.sdashboard__result_global_position {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 5px;
}
.sdashboard__result_global_image {
  width: 55px;
  height: 55px;
}
.sdashboard__result_global_name {
  font-weight: 400;
  color: var(--title-alt-color);
  line-height: 20px;
  max-width: 100px;
}
.sdashboard__outcome_container {
  padding: 20px 0;
}
.sdashboard__outcome_title {
  text-align: center;
  margin-bottom: 30px;
}
.sdashboard__outcome_status {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.sdashboard__outcome_status img {
  max-width: 160px;
  margin-bottom: 15px;
}
.sdashboard__outcome_menu {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 20px;
}
.sdashboard__outcome_menu_single {
  background-color: #EFEFEF;
  border-radius: 8px;
  display: flex;
  width: 235px;
  flex-direction: column;
  padding: 15px 25px;
}
.sdashboard__outcome_menu_title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 14px;
}
.sdashboard__outcome_menu_data {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #009974;
}
.sdashboard__profile_main {
  display: flex;
  align-items: center;
  gap: 15px;
}
.sdashboard__profile_main_image {
  width: 120px;
  height: 120px;
}
.sdashboard__profile_main_name {
  color: var(--title-alt-color);
}
.sdashboard__profile_main_class {
  color: var(--text-color);
}
.sdashboard__profile_data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.sdashboard__profile_data_single {
  background-color: #e6e6e6;
  border-radius: 8px;
  padding: 15px 20px;
}
.sdashboard__profile_data_title {
  color: var(--title-alt-color);
  margin-bottom: 15px;
}
.sdashboard__profile_data_context {
  color: var(--title-alt-color);
  padding: 0 5px;
}
.sdashboard__single {
  padding-bottom: 15px;
}
.sdashboard__single_container {
  padding: 5px 10px 15px;
}
.sdashboard__single_date {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--text-color);
}
.sdashboard__single_title {
  font-size: 24px;
  color: var(--title-alt-color);
}
.sdashboard__single_description {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color) !important;
  line-height: 25px;
  margin-bottom: 25px !important;
}
.sdashboard__single_info {
  display: flex;
  gap: 15px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 5px;
}
.sdashboard__single_info b {
  color: var(--title-alt-color);
  font-weight: 600;
}
.sdashboard__single_image {
  display: flex;
  align-items: center;
}
.sdashboard__single_image img {
  width: 100%;
}
.sdashboard__single_footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.sdashboard__start_topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sdashboard__start_title {
  font-size: 18px;
  font-weight: 500;
  color: var(--title-alt-color);
}
.sdashboard__start_timer {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #E8E7FF;
  padding: 8px 15px;
  border-radius: 10px;
  border: 1px solid #FF8CD1;
}
.sdashboard__start_timer_image {
  width: 25px;
}
.sdashboard__start_timer_time {
  font-size: 18px;
  font-weight: 600;
  color: var(--title-alt-color);
  letter-spacing: 0.8px;
}
.sdashboard__start_container {
  padding: 35px 10px 20px;
}
.sdashboard__start_question {
  font-size: 24px;
  font-weight: 700;
  color: var(--title-alt-color);
  margin-bottom: 35px;
}
.sdashboard__start_indication {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  min-width: 25px;
  min-height: 25px;
  padding: 0;
  font-weight: 900;
  cursor: pointer;
}
.sdashboard__start_indication img {
  width: 15px;
}
.sdashboard__start_indimenu {
  position: absolute;
  top: calc(100% + 9px);
  width: 200px;
  max-width: 100vw;
  right: 0;
  padding: 10px;
  border-radius: 9px;
  background-color: var(--primary-color);
  opacity: 0;
  visibility: hidden;
}
.sdashboard__start_indimenu.active {
  opacity: 1;
  visibility: visible !important;
}
.sdashboard__start_options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}
.sdashboard__start_options_label {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid #E4E4E4;
  color: var(--title-alt-color);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.0509803922);
  border-radius: 8px;
  padding: 15px 22px;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: 0.1s all;
}
.sdashboard__start_options_single {
  display: none;
}
.sdashboard__start_options_single:checked + .sdashboard__start_options_label {
  background: linear-gradient(to right, #f6f3f9, #e6c6ff);
  border: 1px solid #FF8CD1;
}
.sdashboard__start_submit {
  border-radius: 8px;
  outline: none;
  border: none;
}
.sdashboard__qdone_container {
  padding-bottom: 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 18px;
       column-gap: 18px;
  row-gap: 20px;
}
.sdashboard__qdone_single {
  display: flex;
  flex-direction: column;
  background: linear-gradient(to right, #fde3ff, #cfe6fd);
  padding: 12px 15px;
  border-radius: 8px;
}
.sdashboard__qdone_single_button {
  padding: 2px 10px;
  font-size: 14px !important;
}
.sdashboard__messaging {
  height: 100%;
}
.sdashboard__messaging_container {
  display: grid;
  gap: 10px;
}
.sdashboard__messaging_messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: calc(100vh - 400px);
  max-height: 600px;
  overflow-y: scroll;
  padding: 5px 15px 5px 5px;
}
.sdashboard__messaging_single {
  background: rgba(114, 105, 232, 0.2980392157);
  padding: 8px 15px;
  display: flex;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.sdashboard__messaging_single i {
  width: 75px;
  color: rgba(0, 0, 0, 0.6078431373);
}
.sdashboard__messaging_single span {
  width: 100%;
}
.sdashboard__messaging_single.admin {
  background: #ebebeb !important;
}
.sdashboard__messaging_bar {
  width: 100%;
  display: flex;
}
.sdashboard__messaging_bar input {
  width: 100%;
  outline: none;
  border: 1px solid #ccc;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 5px 15px;
}
.sdashboard__messaging_bar button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.rtl .sdashboard__main {
  margin-right: 310px;
  margin-top: 15px;
  margin-left: 0;
}
.rtl .sdashboard__topbar_right_notimenu {
  left: 0 !important;
  right: unset;
}
.rtl .sdashboard__topbar_right_profilemenu {
  left: 0 !important;
  right: unset;
}
.rtl .sdashboard__start_indimenu {
  left: 0 !important;
  right: unset;
}
.rtl .sdashboard__messaging_bar input {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.rtl .sdashboard__messaging_bar button {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.login__label {
  width: 100%;
  text-align: center;
  padding: 0;
}
.login__container {
  max-width: 400px;
  margin: 100px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.login__input::-moz-placeholder {
  color: hsla(0, 0%, 0%, 0.35);
}
.login__input::placeholder {
  color: hsla(0, 0%, 0%, 0.35);
}
.login__image {
  max-height: 75px;
}

@media screen and (max-width: 1400px) {
  .main__bg {
    min-height: 700px;
  }
}
@media screen and (max-width: 1200px) {
  .main {
    padding-bottom: 150px;
  }
  .main .hero {
    padding: 30px 0;
  }
  .main .hero__box_title {
    font-size: var(--big-text-lg);
  }
}
@media screen and (max-width: 1060px) {
  .sdashboard__sidebar {
    left: -100%;
    top: 0;
    bottom: 0;
    border-radius: 0;
    width: 230px;
    max-width: calc(100% - 75px);
  }
  .sdashboard__sidebar_close {
    display: flex;
  }
  .sdashboard__sidebar.active {
    left: 0;
  }
  .sdashboard__main {
    margin-left: 0;
  }
  .sdashboard__topbar_right_menu {
    display: flex;
  }
  .rtl .sdashboard__main {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 992px) {
  .main {
    padding-bottom: 200px;
  }
  .main .hero__box_title {
    font-size: var(--big-text-md);
  }
  .hiw__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .features__box {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .main .header__toggle {
    display: flex;
  }
  .main .header__nav {
    position: absolute;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    top: 75px;
    left: 10px;
    right: 10px;
    padding: 30px 0;
    width: calc(100% - 25px);
    height: -moz-max-content;
    height: max-content;
    border-radius: 10px;
    background-color: rgba(26, 26, 26, 0.9490196078);
  }
  .main .header__nav.active {
    display: flex;
  }
  .features__image {
    margin-bottom: 50px;
  }
  .features__box_single_content h4 {
    font-size: 20px;
  }
  .support {
    padding: 50px 5px;
  }
  .support__description {
    margin-bottom: 20px;
  }
  .support__box_form {
    padding: 20px 25px;
    border-radius: 10px;
  }
  .sdashboard__bar {
    padding: 25px 20px;
  }
  .sdashboard__bar_doublecolumn {
    grid-column: 1/2;
  }
  .sdashboard__dashboard {
    grid-template-columns: 1fr;
  }
  .sdashboard__dashboard_result {
    grid-template-columns: repeat(2, 1fr);
  }
  .sdashboard__quiz_box {
    grid-template-columns: 1fr;
  }
  .sdashboard__result {
    grid-template-columns: 1fr;
  }
  .sdashboard__result_overall {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 25px;
  }
  .sdashboard__outcome_menu_single {
    width: 100%;
    text-align: left;
  }
  .sdashboard__outcome_menu_title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .sdashboard__outcome_menu_data {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .sdashboard__qdone_container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 576px) {
  .main {
    padding-bottom: 0;
    background: linear-gradient(#657BFF, #2A41C8);
  }
  .main__bg {
    display: none;
  }
  .main__lines {
    position: absolute;
    z-index: 1;
    right: -50px;
    top: -50px;
    overflow: hidden;
  }
  .main .hero {
    padding: 10px 20px;
  }
  .main .hero__box {
    padding: 15px 15px 40px;
  }
  .main .hero__box_title {
    font-size: var(--big-text-sm);
  }
  .hiw {
    padding: 70px 10px 75px;
  }
  .hiw__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
  .hiw__description {
    margin-bottom: 35px !important;
  }
  .footer__container {
    flex-direction: column;
    gap: 15px;
  }
  .footer__right {
    text-align: center;
  }
  .footer__left {
    text-align: center;
  }
  .sdashboard__main {
    margin-top: 5px;
  }
  .sdashboard__topbar {
    flex-direction: column-reverse;
    gap: 40px;
    margin-bottom: 15px;
  }
  .sdashboard__topbar_greetings_title {
    margin-bottom: 12px;
    margin-left: 20px;
  }
  .sdashboard__bar_title {
    font-size: 20px;
  }
  .sdashboard__dashboard {
    grid-template-columns: 1fr;
  }
  .sdashboard__dashboard_result {
    grid-template-columns: 1fr;
  }
  .sdashboard__dashboard_profile_box {
    grid-template-columns: 1fr;
  }
  .sdashboard__dashboard_profile_data span {
    font-size: 15px;
  }
  .sdashboard__dashboard_profile_data b {
    font-size: 20px;
  }
  .sdashboard__dashboard_profile_section b {
    font-size: 20px;
  }
  .sdashboard__dashboard_profile_section span {
    font-size: 14px;
  }
  .sdashboard__quiz_box_subject {
    font-size: 16px;
    color: var(--title-alt-color);
    font-weight: 400;
    margin-bottom: 0;
  }
  .sdashboard__quiz_box_title {
    font-size: 18px;
    color: var(--title-alt-color);
  }
  .sdashboard__result_overall {
    grid-template-columns: 1fr;
  }
  .sdashboard__result_overall_meter {
    width: 100%;
  }
  .sdashboard__result_overall_data {
    padding: 0 20px;
  }
  .sdashboard__profile_main_image {
    width: 75px;
    height: 75px;
  }
  .sdashboard__profile_data {
    grid-template-columns: repeat(2, 1fr);
  }
  .sdashboard__profile_data_title {
    font-size: 13px;
    line-height: 0px;
  }
  .sdashboard__single_container {
    padding: 0;
  }
  .sdashboard__single_footer {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .sdashboard__start_container {
    padding: 30px 5px;
  }
  .sdashboard__start_question {
    font-size: 20px;
  }
  .sdashboard__start_options {
    gap: 10px;
  }
  .sdashboard__outcome_single {
    min-width: 100%;
  }
  .sdashboard__outcome_menu {
    flex-direction: column;
  }
  .sdashboard__messaging_messages {
    padding: 5px;
  }
  .sdashboard__messaging_single {
    padding: 5px;
  }
  .single_quiz_topbar {
    margin-bottom: 30px;
  }
  .single_quiz_topbar_greetings {
    display: none;
  }
  .disabled_greetings {
    margin-bottom: 32px;
  }
  .disabled_greetings .sdashboard__topbar_greetings {
    display: none;
  }
  .login {
    height: 100%;
  }
  .login__container {
    max-width: 100%;
    margin: 0 0;
    padding: 20px;
    height: 100vh;
    border-radius: 8px;
    box-shadow: none;
  }
  .login__container .row {
    width: 100%;
  }
}
@media screen and (max-width: 456px) {
  .sdashboard__start_options {
    grid-template-columns: 1fr;
  }
  .sdashboard__start_options_label {
    justify-content: start;
  }
}/*# sourceMappingURL=styles.css.map */