@import url(font.css);
*::-webkit-scrollbar {
  width: 5px;
  background-color: var(--bg);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--container);
  border-radius: 20px;
  border: 1px solid var(--container);
}

body {
  background-color: var(--bg);
  font-family: "Inter";
  color: var(--text);
}
body.black {
  background-color: var(--black);
}

a {
  text-decoration: none;
  color: inherit !important;
}

.mh-100 {
  max-height: 100%;
}

.w-50 {
  width: 50px !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fit-width {
  width: fit-content !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.align-left {
  align-self: flex-start;
}

.align-center {
  align-self: center;
}

.content-center {
  justify-content: center;
}

.dn {
  display: none !important;
}

.cdn {
  height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  transition: height 0.2s ease !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.titles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.titles.titles-center {
  align-items: center;
}
.titles.titles-center .title, .titles.titles-center .desc {
  text-align: center;
}
.titles .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 32px;
}
.titles .title i.bi-arrow-repeat {
  font-size: 24px;
  color: var(--text);
}
.titles .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
}

.temp-nav-dropdown {
  position: fixed !important;
  z-index: 10;
  right: 10px !important;
  bottom: 24px !important;
}

.temp-nav {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--text);
  cursor: pointer;
}
.temp-nav:hover {
  background-color: var(--primary-btn-hover);
}

.temp-nav-content {
  max-height: 500px;
  overflow: auto;
  position: absolute;
  bottom: 50px;
  right: 0;
  padding: 12px 20px;
  border: 1px solid var(--border);
  background-color: var(--container);
}

.temp-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: max-content;
}
.temp-nav-inner .link {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}
.temp-nav-inner .link .link-title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.temp-nav-inner .link i {
  margin-top: 2px;
  font-size: 7px;
  color: var(--secondary);
}
.temp-nav-inner .link:hover i {
  color: var(--text);
}

.text-editor-dropdown {
  position: fixed !important;
  z-index: 10;
  right: 10px !important;
  bottom: 24px !important;
}

.text-editor-trigger {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  color: var(--text);
  cursor: pointer;
  font-size: 20px;
}
.text-editor-trigger:hover {
  background-color: var(--primary-btn-hover);
}

.text-editor-content {
  position: absolute;
  bottom: 50px;
  right: 0;
  padding: 20px;
  border: 1px solid var(--border);
  background-color: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.text-editor-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: max-content;
}
.text-editor-inner .item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.text-editor-inner .item .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 500;
}
.text-editor-inner .item input[type=range] {
  position: relative;
  -webkit-appearance: none;
  width: 250px;
  height: 5px;
  background: var(--border);
  outline: none;
  border-radius: 0px;
}
.text-editor-inner .item input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: var(--primary);
  cursor: pointer;
  border-radius: 0;
}

.header {
  width: 100%;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 0;
  transition: 0.1s ease-out padding;
}
.header .btn-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.header-scroll {
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.dropdown-wrapper {
  position: relative;
}

.nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.nav .nav-links {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.nav .nav-links .district-link,
.nav .nav-links .nav-links-inner,
.nav .nav-links .tools-link {
  height: 50px;
  background-color: var(--container);
  padding: 0 20px;
  display: flex;
  align-items: center;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.nav .nav-links .district-link {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  gap: 10px;
  transition: 0.1s ease all;
}
.nav .nav-links .district-link:hover {
  background-color: var(--container-hover);
}
.nav .nav-links .district-link i {
  font-size: 20px;
  color: var(--primary);
}
.nav .nav-links .nav-links-inner {
  gap: 20px;
}
.nav .nav-links .nav-link {
  transition: 0s ease all;
}
.nav .nav-links .tools-link {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.nav .nav-links .tools-link:hover {
  background-color: var(--container-hover);
}
.nav .nav-links .tools-link i {
  font-size: 10px;
  color: var(--text);
  margin-top: 1px;
}
.nav .tools-inner {
  position: absolute;
  top: 60px;
  gap: 0;
  right: 0;
}
.nav .tools-inner .tools-list {
  background-color: var(--container);
  display: flex;
  flex-direction: column;
}
.nav .tools-inner .tools-list .tools-list-item {
  padding: 15px 20px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  transition: 0.1s ease all;
}
.nav .tools-inner .tools-list .tools-list-item:hover {
  background-color: var(--container-hover);
}
.nav .tools-inner .tools-list .tools-list-item:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.nav .tools-inner .tools-list .tools-list-item .i-bg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background-color: var(--btn-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav .tools-inner .tools-list .tools-list-item .i-bg i {
  font-size: 16px;
}
.nav .tools-inner .tools-list .tools-list-item .titles-group {
  width: max-content;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav .tools-inner .tools-list .tools-list-item .titles-group .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 500;
}
.nav .tools-inner .tools-list .tools-list-item .titles-group .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 12px;
  color: var(--secondary);
  flex-shrink: 0;
}
.nav .nav-profile {
  cursor: pointer;
  height: 50px;
  background-color: var(--container);
  padding: 6px 15px 6px 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.1s ease all;
}
.nav .nav-profile:hover {
  background-color: var(--container-hover);
}
.nav .nav-profile .profile-img {
  width: 38px;
  height: 38px;
}
.nav .nav-profile .nav-profile-inner {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav .nav-profile .nav-profile-inner .nav-balance-title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.nav .nav-profile .nav-profile-inner .nav-balance-value {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
}

.nav-link:hover {
  color: var(--primary) !important;
}

.district-items {
  background-color: var(--container);
  position: absolute;
  top: 60px;
  gap: 0;
  left: 0;
  width: max-content;
  transition: 0.1s ease all;
  display: flex;
  flex-direction: column;
}
.district-items .district-item {
  cursor: pointer;
  width: 100%;
  padding: 12px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.district-items .district-item i.bi-chevron-right {
  color: var(--secondary);
  font-size: 10px;
  margin-left: auto;
}
.district-items .district-item .subsection {
  background-color: var(--container);
  border-right: 1px solid var(--border);
  border-left: 1px solid var(--border);
  position: absolute;
  top: 0;
  left: 100%;
  width: max-content;
  display: none;
  gap: 15px;
  padding: 15px 0;
  flex-direction: column;
}
.district-items .district-item .subsection hr {
  margin: 0;
}
.district-items .district-item .subsection .subsection-item {
  position: relative;
  cursor: pointer;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.district-items .district-item .subsection .subsection-item:hover > .subsection {
  display: flex;
}
.district-items .district-item .subsection .subsection-item:hover i.bi-chevron-right {
  color: var(--text);
}
.district-items .district-item .subsection .subsection-item i.bi-chevron-right {
  color: var(--secondary);
  font-size: 10px;
  margin-left: auto;
}
.district-items .district-item .subsection .subsection-icon {
  display: flex;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background-color: var(--border);
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.district-items .district-item .subsection .subsection-icon i {
  font-size: 16px;
}
.district-items .district-item .third-level {
  top: -15px;
}
.district-items .district-item .third-level .subsection-item i {
  color: var(--secondary) !important;
}
.district-items .district-item .third-level .subsection-item:hover i {
  color: var(--text) !important;
}
.district-items .district-item:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.district-items .district-item:hover i {
  color: var(--text);
}
.district-items .district-item:hover > .subsection {
  display: flex;
}
.district-items .district-item img {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  opacity: 1;
}
.district-items .district-item .titles {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.district-items .district-item .titles .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 500;
}
.district-items .district-item .titles .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 12px;
  color: var(--secondary);
}

.nav-profile-dropdown {
  background-color: var(--container);
  position: absolute;
  top: 60px;
  gap: 0;
  right: 0;
  width: max-content;
  transition: 0.1s ease all;
  overflow-y: auto;
  max-height: 85vh;
  max-height: 85dvh;
  overscroll-behavior: contain;
}
.nav-profile-dropdown .log-out {
  justify-content: space-between;
}
.nav-profile-dropdown .log-out .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
  font-size: 13px;
}
.nav-profile-dropdown .log-out i {
  color: var(--secondary);
  font-size: 7px;
}
.nav-profile-dropdown a.profile-section:hover {
  background-color: var(--container-hover);
}
.nav-profile-dropdown .profile-section {
  width: 100%;
  display: flex;
  padding: 15px 20px;
  align-items: center;
}
.nav-profile-dropdown .profile-section.second-adaptive, .nav-profile-dropdown .profile-section.first-adaptive {
  display: none;
}
.nav-profile-dropdown .profile-section .links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 100%;
}
.nav-profile-dropdown .profile-section .links .section-title {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nav-profile-dropdown .profile-section .links .section-title .title, .nav-profile-dropdown .profile-section .links .section-title .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 600;
}
.nav-profile-dropdown .profile-section .links .section-title .desc {
  font-weight: 400;
  color: var(--secondary);
}
.nav-profile-dropdown .profile-section .links .link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-profile-dropdown .profile-section .links .link:hover i {
  color: var(--text);
}
.nav-profile-dropdown .profile-section .links .link .link-title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 13px;
}
.nav-profile-dropdown .profile-section .links .link .link-title:hover {
  color: var(--link-hover);
}
.nav-profile-dropdown .profile-section .links .link .link-title span {
  color: var(--primary);
  font-weight: 500;
}
.nav-profile-dropdown .profile-section .links .link i {
  color: var(--secondary);
  font-size: 7px;
}
.nav-profile-dropdown .profile-section .links .red .link-title,
.nav-profile-dropdown .profile-section .links .red i {
  color: var(--red) !important;
}
.nav-profile-dropdown .profile-section .balance-value {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  margin-left: auto;
}
.nav-profile-dropdown .profile-section .title-with-icon {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.nav-profile-dropdown .profile-section .title-with-icon i.bi-wallet {
  color: var(--primary);
}
.nav-profile-dropdown .profile-section .title-with-icon i.bi-heart-fill {
  color: var(--red);
}
.nav-profile-dropdown .profile-section .title-with-icon .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 13px;
}
.nav-profile-dropdown .profile-section .membership .title {
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 2px;
}
.nav-profile-dropdown .profile-section:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.nav-profile-dropdown .titles {
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
.nav-profile-dropdown .titles img {
  width: 38px;
  height: 38px;
}
.nav-profile-dropdown .titles .titles-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 !important;
}
.nav-profile-dropdown .titles .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 600;
}
.nav-profile-dropdown .titles .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 12px;
  color: var(--secondary);
}

.logo-link {
  text-decoration: none;
}
.logo-link img {
  height: 23px;
}

.no-bg {
  background: transparent;
  border: none;
  backdrop-filter: unset;
}

.main-container {
  margin-top: 135px;
  min-height: calc(100dvh - 294px);
}
.main-container.no-header {
  margin-top: 60px;
  min-height: calc(100dvh - 219px);
}

.registration-wrapper {
  min-height: 100vh;
  min-height: 100dvh;
}

.registration {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--bg);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 60px 30px 20px;
}
.registration .bg-img {
  position: absolute;
  left: -1px;
  top: 0;
  max-height: 80vh;
  max-height: 80dvh;
  margin-top: 10vh;
  margin-top: 10dvh;
  transform: translateX(-100%);
}
.registration .btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.registration h1 {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}
.registration .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
  text-align: center;
  margin-bottom: 30px;
}
.registration .desc a {
  color: var(--primary) !important;
}
.registration .desc a:hover {
  color: var(--primary-link-hover) !important;
}
.registration .inputs {
  gap: 15px;
  margin-bottom: 20px;
}
.registration .checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.registration form {
  margin-bottom: 12px;
}
.registration .checkbox-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.registration .checkbox-item .date {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 13px;
  color: var(--primary);
  flex-shrink: 0;
}
.registration .checkbox-item .checkbox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.registration .checkbox-item .checkbox label {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
}
.registration .checkbox-item .checkbox .checkbox-icon {
  cursor: pointer;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 0 !important;
  border: 1px solid var(--checkbox-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.registration .checkbox-item .checkbox .checkbox-icon i {
  display: none;
  margin-right: 1px;
  font-size: 18px;
}
.registration .checkbox-item .checkbox:hover .checkbox-icon {
  border: 1px solid var(--secondary);
}
.registration .checkbox-item [data-checkbox-type=checked] .checkbox-icon {
  background-color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
}
.registration .checkbox-item [data-checkbox-type=checked] i {
  display: block !important;
}

.courses-img {
  height: fit-content;
  max-width: 100%;
  transition: 0.15s ease all;
}

.img-wrapper {
  aspect-ratio: 1.7;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.images-wrapper img {
  transition: 0.15s ease all;
  border: 2px solid transparent;
  height: fit-content;
  cursor: pointer;
}
.images-wrapper img:hover {
  opacity: 0.8;
}
.images-wrapper img.active {
  border: 2px solid var(--primary);
}
.images-wrapper img.active:hover {
  opacity: 1;
}

.btn-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

.outlined-btn {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: 1px solid var(--border);
  background: transparent;
  padding: 10px 15px;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.outlined-btn img {
  width: 16px;
  height: 16px;
}
.outlined-btn input[type=file] {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  appearance: none;
  opacity: 0;
}
.outlined-btn:hover {
  background-color: var(--outlined-btn-hover);
}

.no-data {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
}

.titles-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.titles-group .title-group {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
}
.titles-group .btn-group {
  margin-top: 10px;
}
.titles-group .price {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
  font-weight: 700;
}
.titles-group .price span {
  color: var(--primary);
}
.titles-group .description {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 300;
  font-size: 16px;
  color: var(--secondary);
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.titles-group .subtitles {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.titles-group .subtitles a {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary) !important;
}
.titles-group .subtitles a:hover {
  color: var(--primary) !important;
}
.titles-group .subtitle {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
  font-weight: 500;
}
.titles-group .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 300;
  font-size: 16px;
  color: var(--secondary);
}
.titles-group .desc a {
  color: var(--primary) !important;
}
.titles-group .desc a:hover {
  color: var(--primary-link-hover) !important;
}

.conditions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.conditions .condition {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
  font-weight: 700;
}
.conditions .condition span {
  font-weight: 300;
}
.conditions .condition span.link {
  color: var(--primary);
  cursor: pointer;
}
.conditions .condition span.link:hover {
  color: var(--primary-link-hover);
}

.titles-group-with-img {
  padding-left: 40px;
}

.title {
  color: var(--text);
  font-family: "Inter";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.title span {
  color: var(--primary);
}
.title span.grey-span {
  color: var(--secondary);
}

.alert {
  position: relative;
  margin: 0;
  padding: 16px 20px;
  border-radius: 0;
  background-color: var(--container);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.alert .alert-badge {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--secondary);
}
.alert .alert-badge.success {
  background-color: var(--primary);
}
.alert .alert-badge.error {
  background-color: var(--red);
}
.alert .alert-content {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 400;
}
.alert .alert-content span {
  color: var(--secondary);
}
.alert .alert-content a {
  color: var(--primary) !important;
}
.alert .alert-content a:hover {
  color: var(--primary-link-hover) !important;
}
.alert .alert-titles {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.alert .alert-titles .alert-title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 500;
}
.alert .alert-titles .alert-desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
}
.alert .alert-link {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
}
.alert .alert-link:hover {
  color: var(--primary);
}
.alert .alert-link.inactive {
  cursor: default;
}
.alert .alert-link.inactive:hover {
  color: var(--text);
}
.alert .alert-link.inactive.error {
  color: #FF0000;
}
.alert .alert-info {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.filters-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 30px;
}
.filters-wrapper .filters-row {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.filters-wrapper .row-titles {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: flex-start;
}
.filters-wrapper .titles-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.filters-wrapper img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.filters-wrapper .row-desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
  font-weight: 600;
}
.filters-wrapper .row-title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.filters-wrapper .row-title.sm {
  font-weight: 400;
  font-size: 14px;
}
.filters-wrapper .row-title.lg {
  font-weight: 600;
  font-size: 14px;
}
.filters-wrapper .row-title.xl {
  font-weight: 600;
  font-size: 20px;
}
.filters-wrapper .row-title .desc {
  color: var(--secondary);
  font-weight: 400;
  font-size: 14px;
}
.filters-wrapper .row-title .desc a {
  color: var(--primary) !important;
}
.filters-wrapper .row-title .desc a:hover {
  color: var(--primary-link-hover) !important;
}
.filters-wrapper .filters-group {
  display: flex;
  gap: 8px;
}
.filters-wrapper .filters-group > * {
  height: 100%;
}
.filters-wrapper .filter {
  background-color: var(--container);
  padding: 11px 15px;
  display: flex;
  align-items: center;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  flex-direction: row;
  gap: 5px;
  transition: 0.1s ease all;
}
.filters-wrapper .filter:hover {
  background-color: var(--container-hover);
}
.filters-wrapper .filter i {
  font-size: 10px;
  color: var(--text);
  margin-top: 1px;
}

.filter-dropdown {
  position: absolute;
  z-index: 10;
  top: 47px;
  gap: 0;
  right: 0;
  padding: 20px;
  border: 1px solid var(--border);
  background-color: var(--container);
}
.filter-dropdown .filter-dropdown-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: max-content;
  user-select: none;
}
.filter-dropdown .filter-dropdown-inner hr {
  margin: 12px 0 !important;
}
.filter-dropdown .filter-dropdown-inner .link {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}
.filter-dropdown .filter-dropdown-inner .link:hover .link-title {
  color: var(--secondary);
}
.filter-dropdown .filter-dropdown-inner .link .link-title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.filter-dropdown .filter-dropdown-inner .link .link-title span {
  color: var(--primary);
}
.filter-dropdown .filter-dropdown-inner .link i {
  margin-top: 2px;
  font-size: 7px;
  color: var(--text);
}

.card {
  background-color: var(--container);
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
.card i.bi-heart, .card i.bi-heart-fill {
  position: absolute;
  top: 18px;
  right: 20px;
  cursor: pointer;
}
.card i.bi-heart {
  color: var(--secondary);
}
.card i.bi-heart:hover {
  color: var(--text);
}
.card .conditions {
  margin-top: 12px;
}
.card .condition {
  font-size: 14px !important;
}
.card .card-image {
  position: relative;
  aspect-ratio: 1.77;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}
.card .card-image .card-label {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: default;
}
.card .card-image .card-label:hover {
  background: var(--primary);
}
.card .card-image img {
  width: 100%;
}
.card .card-content {
  flex-grow: 1;
  padding: 20px 20px 17px 20px;
}
.card .card-content .inputs {
  margin-top: 10px;
  margin-bottom: 10px;
}
.card .card-content .inputs input, .card .card-content .inputs .copy-btn {
  background: var(--container-hover) !important;
}
.card .card-content .inputs .copy-btn:hover {
  background: var(--secondary-btn-hover) !important;
}
.card .card-content.group-card {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
}
.card .card-content.group-card img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.card .card-content.group-card .titles-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.card .card-content.group-card .titles-group .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
  font-weight: 500;
}
.card .card-content.group-card .titles-group .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
}
.card .card-title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 500;
  font-size: 16px;
  padding-right: 25px;
}
.card .card-title span {
  font-weight: 500;
  font-size: 14px;
  color: var(--primary);
}
.card .card-title .grey-span {
  font-size: 14px;
  font-weight: 400;
  color: var(--secondary);
}
.card .card-description {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.card .card-description i.bi-arrow-repeat {
  font-size: 16px;
}
.card a.card-description {
  color: var(--primary) !important;
}
.card a.card-description:hover {
  color: var(--primary-btn-hover) !important;
}
.card .card-progressbar {
  width: 100%;
  height: 4px;
  position: relative;
  margin-top: 15px;
  cursor: pointer;
}
.card .card-progressbar .progressbar {
  width: 100%;
  height: 4px;
  background-color: var(--border);
  border-radius: 8px;
  cursor: pointer;
}
.card .card-progressbar .progressbar-end {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--primary);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  cursor: pointer;
}
.card .card-progressbar .progressbar-thumb {
  cursor: pointer;
  width: 1%;
  height: 4px;
  border-radius: 8px;
  background-color: var(--primary);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.card .card-progressbar .progressbar-thumb .progressbar-value {
  position: absolute;
  z-index: 2;
  top: -28px;
  right: -20px;
  background-color: var(--bg);
  border: 1px solid var(--border);
  width: 40px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 12px;
  font-weight: bold;
}
.card .card-actions {
  padding: 0 20px 20px 20px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.empty-card {
  background-color: transparent;
  border: 1px solid var(--border);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

[data-filter-type=myOffer] .card-label {
  display: inline-flex !important;
}

i.bi-arrow-repeat {
  animation: rotate 1.2s linear infinite !important;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.progressbar-wrapper .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
  margin-bottom: 15px;
}
.progressbar-wrapper .progressbar-desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
  margin-top: 7px;
}

.inline-progressbar {
  width: 100%;
  height: 4px;
  position: relative;
  cursor: pointer;
}
.inline-progressbar .progressbar {
  width: 100%;
  height: 4px;
  background-color: var(--border);
  border-radius: 8px;
  cursor: pointer;
}
.inline-progressbar .progressbar-end {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--primary);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  cursor: pointer;
}
.inline-progressbar .progressbar-thumb {
  cursor: pointer;
  width: 1%;
  height: 4px;
  border-radius: 8px;
  background-color: var(--primary);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.inline-progressbar .progressbar-thumb .progressbar-value {
  position: absolute;
  z-index: 2;
  top: -28px;
  right: -20px;
  background-color: var(--bg);
  border: 1px solid var(--border);
  width: 40px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 12px;
  font-weight: bold;
}

.secondary-btn {
  border: none;
  cursor: pointer;
  background-color: var(--btn-bg);
  display: inline-flex;
  padding: 10px 15px 12px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.secondary-btn i.bi-chevron-down {
  font-size: 10px;
  color: var(--text);
  margin-top: 1px;
}
.secondary-btn span {
  color: var(--primary);
}
.secondary-btn:hover {
  background-color: var(--secondary-btn-hover);
}

.container-btn {
  padding: 10px 15px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  background-color: var(--container);
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.container-btn i.bi-chevron-down {
  font-size: 10px;
  color: var(--text);
  margin-top: 1px;
}
.container-btn span {
  color: var(--primary);
}
.container-btn:hover {
  background-color: var(--container-hover);
}

.square-btn {
  width: 38px !important;
  height: 38px !important;
}

.primary-btn {
  border: none;
  outline: none;
  cursor: pointer;
  background-color: var(--primary);
  display: inline-flex;
  padding: 10px 15px 12px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--primary-btn-text);
}
.primary-btn:hover {
  background-color: var(--primary-btn-hover);
}
.primary-btn.disabled {
  background: var(--secondary) !important;
  cursor: not-allowed;
}
.primary-btn.red-btn {
  background-color: var(--red-btn);
}
.primary-btn.red-btn:hover {
  background-color: var(--red-btn-hover);
}

.course-author-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.course-author-group img {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
}
.course-author-group .course-author-inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.course-author-group .course-author-inner .course-author {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.course-author-group .course-author-inner .course-author span {
  color: var(--secondary);
}
.course-author-group .course-author-inner a {
  width: fit-content;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--primary) !important;
  text-decoration: none;
  font-weight: 300;
  transition: 0.1s ease color;
}
.course-author-group .course-author-inner a:hover {
  color: var(--primary-link-hover) !important;
}

.footer {
  width: 100%;
  padding: 24px 0;
}
.footer .footer-container {
  margin-top: 60px;
  background-color: var(--container);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer-container .copyright {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
}
.footer .footer-container .links {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.footer .footer-container .links .link {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer .footer-container .links .link:hover {
  color: var(--link-hover) !important;
}

.sidebar, .offer-sidebar {
  background-color: var(--container);
  padding: 30px 20px;
  width: 100%;
  top: 90px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sidebar .checkboxes, .offer-sidebar .checkboxes {
  margin-top: -10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar .checkboxes .checkbox-item, .offer-sidebar .checkboxes .checkbox-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.sidebar .checkboxes .checkbox-item .date, .offer-sidebar .checkboxes .checkbox-item .date {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 13px;
  color: var(--primary);
  flex-shrink: 0;
}
.sidebar .checkboxes .checkbox-item .checkbox, .offer-sidebar .checkboxes .checkbox-item .checkbox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.sidebar .checkboxes .checkbox-item .checkbox label, .offer-sidebar .checkboxes .checkbox-item .checkbox label {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 13px;
}
.sidebar .checkboxes .checkbox-item .checkbox label:hover, .offer-sidebar .checkboxes .checkbox-item .checkbox label:hover {
  color: var(--primary);
  cursor: help;
}
.sidebar .checkboxes .checkbox-item .checkbox .label-checked, .offer-sidebar .checkboxes .checkbox-item .checkbox .label-checked {
  color: var(--secondary) !important;
  text-decoration: line-through;
}
.sidebar .checkboxes .checkbox-item .checkbox .label-checked:hover, .offer-sidebar .checkboxes .checkbox-item .checkbox .label-checked:hover {
  color: var(--primary) !important;
  cursor: help;
}
.sidebar .checkboxes .checkbox-item .checkbox .checkbox-icon, .offer-sidebar .checkboxes .checkbox-item .checkbox .checkbox-icon {
  cursor: pointer;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 0 !important;
  border: 1px solid var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease all;
}
.sidebar .checkboxes .checkbox-item .checkbox .checkbox-icon:hover, .offer-sidebar .checkboxes .checkbox-item .checkbox .checkbox-icon:hover {
  border: 1px solid var(--text);
}
.sidebar .checkboxes .checkbox-item .checkbox .checkbox-icon i, .offer-sidebar .checkboxes .checkbox-item .checkbox .checkbox-icon i {
  display: none;
  margin-right: 1px;
  font-size: 18px;
}
.sidebar .checkboxes .checkbox-item [data-checkbox-type=checked] .checkbox-icon, .offer-sidebar .checkboxes .checkbox-item [data-checkbox-type=checked] .checkbox-icon {
  background-color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
}
.sidebar .checkboxes .checkbox-item [data-checkbox-type=checked] i, .offer-sidebar .checkboxes .checkbox-item [data-checkbox-type=checked] i {
  display: block !important;
}
.sidebar .titles-group, .offer-sidebar .titles-group {
  display: flex;
  gap: 8px;
}
.sidebar .titles-group .title, .offer-sidebar .titles-group .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.sidebar .titles-group .desc, .offer-sidebar .titles-group .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
}
.sidebar .progressbar-wrapper, .offer-sidebar .progressbar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar .progressbar-btn, .offer-sidebar .progressbar-btn {
  cursor: pointer;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--primary) !important;
}
.sidebar .progressbar-btn:hover, .offer-sidebar .progressbar-btn:hover {
  color: var(--primary-link-hover) !important;
}
.sidebar .card-progressbar, .offer-sidebar .card-progressbar {
  width: 100%;
  height: 4px;
  position: relative;
  cursor: pointer;
}
.sidebar .card-progressbar .progressbar, .offer-sidebar .card-progressbar .progressbar {
  width: 100%;
  height: 4px;
  background-color: var(--border);
  border-radius: 8px;
  cursor: pointer;
}
.sidebar .card-progressbar .progressbar-end, .offer-sidebar .card-progressbar .progressbar-end {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--primary);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  cursor: pointer;
}
.sidebar .card-progressbar .progressbar-thumb, .offer-sidebar .card-progressbar .progressbar-thumb {
  cursor: pointer;
  width: 1%;
  height: 4px;
  border-radius: 8px;
  background-color: var(--primary);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: width 0.5s ease;
}
.sidebar .card-progressbar .progressbar-thumb .progressbar-value, .offer-sidebar .card-progressbar .progressbar-thumb .progressbar-value {
  position: absolute;
  z-index: 2;
  top: -28px;
  right: -20px;
  background-color: var(--bg);
  border: 1px solid var(--border);
  width: 40px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 12px;
  font-weight: bold;
}

.offer-sidebar {
  padding: 0;
  gap: 0;
}
.offer-sidebar .img-wrapper {
  width: 100%;
  aspect-ratio: 3;
  display: flex;
  overflow: hidden;
  align-items: center;
}
.offer-sidebar .img-wrapper img {
  width: 100%;
}

.offer-sidebar-content {
  padding: 0 20px;
}
.offer-sidebar-content .condition {
  font-size: 14px;
}
.offer-sidebar-content .titles-group {
  padding: 15px 0;
}
.offer-sidebar-content .titles-group .title {
  font-size: 16px;
  font-weight: 500;
}

.course-header, .offer-header {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.course-header .nav-links, .offer-header .nav-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.course-header .top-panel, .offer-header .top-panel {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}
.course-header .top-panel h1, .offer-header .top-panel h1 {
  color: var(--text);
  font-family: "Inter";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.course-header .top-panel .options, .offer-header .top-panel .options {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.course-header .top-panel .options i.bi-trash3-fill, .offer-header .top-panel .options i.bi-trash3-fill {
  color: var(--red);
}

.recommended-course {
  display: flex;
  padding: 50px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--container);
  border: 1px solid var(--border);
}
.recommended-course .titles {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.recommended-course .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
  font-weight: 500;
}
.recommended-course .title span {
  color: var(--secondary);
  font-weight: 400;
  font-size: 14px;
}
.recommended-course .rank {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  color: var(--primary);
}
.recommended-course .rank:hover {
  color: var(--primary-link-hover);
}

.navigation {
  width: 100%;
  padding: 0 30px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.navigation .nav-item {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.navigation .nav-item .nav-content {
  padding: 0 0 0 18px;
  margin: 15px 0 0 18px;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
  height: auto;
  opacity: 1;
  transition: height 0.5s ease, opacity 0.2s ease;
}
.navigation .nav-item .nav-content .active {
  background-color: var(--container) !important;
}
.navigation .nav-item .nav-content .nav-content-item {
  cursor: pointer;
  padding: 15px 8px;
  display: flex;
  flex-direction: row;
}
.navigation .nav-item .nav-content .nav-content-item:hover {
  background-color: var(--container);
}
.navigation .nav-item .nav-content .nav-content-item .titles-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 15px;
}
.navigation .nav-item .nav-content .nav-content-item .titles-group .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.navigation .nav-item .nav-content .nav-content-item .titles-group .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
}
.navigation .nav-item .nav-content .nav-content-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.navigation .nav-item .nav-trigger {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.navigation .nav-item .nav-trigger i {
  font-size: 10px;
  color: var(--secondary);
}
.navigation .nav-item .nav-trigger:hover i {
  color: var(--text);
}
.navigation .nav-item .nav-trigger .title-group {
  display: flex;
  align-items: center;
  gap: 20px;
}
.navigation .nav-item .nav-trigger .title-group i {
  font-size: 16px;
  color: var(--text);
}
.navigation .nav-item .nav-trigger .title-group .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
}
.navigation .nav-item .nav-trigger .title-group .icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background-color: var(--container);
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.navigation .nav-item .nav-trigger .title-group .icon span {
  position: absolute;
  right: -8px;
  top: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--red);
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 11px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.course-content h3, .offer-content h3 {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
}
.course-content p, .offer-content p {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  line-height: 160%;
}
.course-content iframe, .offer-content iframe {
  margin-bottom: 20px;
  width: 100%;
  border: 1px solid var(--border);
  aspect-ratio: 1.8;
}
.course-content img, .offer-content img {
  max-width: 100%;
}

.links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 60px;
}
.links-wrapper .link {
  background-color: var(--container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px 15px 15px;
}
.links-wrapper .link:hover .secondary-btn, .links-wrapper .link:hover .icon {
  background-color: var(--secondary-btn-hover) !important;
}
.links-wrapper .link:hover {
  background-color: var(--container-hover);
}
.links-wrapper .link .titles-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.links-wrapper .link .titles-group .titles {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.links-wrapper .link .titles-group .titles .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
  font-weight: 500;
}
.links-wrapper .link .titles-group .titles .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
}
.links-wrapper .link .titles-group .icon {
  width: 43px;
  height: 43px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--border);
}
.links-wrapper .link .titles-group .icon i.bi-paperclip {
  color: var(--text);
  font-size: 17px;
  transform: rotate(35deg);
}

.course-cards-wrapper .card {
  background-color: var(--container);
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.course-cards-wrapper .card .card-image {
  margin-bottom: 20px;
}
.course-cards-wrapper .card .card-image img {
  width: 100%;
}
.course-cards-wrapper .card .card-content {
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
}
.course-cards-wrapper .card .card-content img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.course-cards-wrapper .card .card-content .titles-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.course-cards-wrapper .card .card-content .titles-group .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
  font-weight: 500;
}
.course-cards-wrapper .card .card-content .titles-group .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
}
.course-cards-wrapper .card .card-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 0;
  margin-top: 20px;
}

.account-settings {
  padding: 0 80px;
}

.account-navigation, .chats {
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 26px;
}
.account-navigation .item, .chats .item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 5px;
}
.account-navigation .item .title, .chats .item .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.account-navigation .item img, .chats .item img {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}
.account-navigation .item .wrapper, .chats .item .wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-grow: 1;
  padding-right: 10px;
}
.account-navigation .item .wrapper .top, .account-navigation .item .wrapper .bottom, .chats .item .wrapper .top, .chats .item .wrapper .bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.account-navigation .item .wrapper .title, .chats .item .wrapper .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 500;
}
.account-navigation .item .wrapper .desc, .chats .item .wrapper .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
}
.account-navigation .item .wrapper .date, .chats .item .wrapper .date {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 12px;
  color: var(--secondary);
}
.account-navigation .item .wrapper .new-messages, .chats .item .wrapper .new-messages {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 12px;
  display: inline-flex;
  padding: 1px 5px;
  background-color: var(--border);
}
.account-navigation .item:hover, .chats .item:hover {
  background-color: var(--container);
}
.account-navigation .item:hover .icon, .chats .item:hover .icon {
  background-color: var(--border);
}
.account-navigation .item .icon, .chats .item .icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--container);
}
.account-navigation .item .icon i, .chats .item .icon i {
  font-size: 16px;
}
.account-navigation .active, .chats .active {
  background-color: var(--container);
}
.account-navigation .active .icon, .chats .active .icon {
  background-color: var(--border);
}
.account-navigation .active .title, .chats .active .title {
  font-weight: 500;
}

.account-header {
  margin-bottom: 10px;
}
.account-header .alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.account-header .alert .alert-content {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 400;
}
.account-header .alert .alert-link {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
}
.account-header .alert .alert-link:hover {
  color: var(--primary);
}
.account-header .title-group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
.account-header .title-group img {
  width: 67px;
  height: 67px;
  flex-shrink: 0;
}
.account-header .title-group .titles {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.account-header .title-group .titles .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 24px;
}
.account-header .title-group .titles .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
  font-weight: 300;
}

.account-content, .table-wrapper {
  max-width: 100%;
}
.account-content table, .table-wrapper table {
  width: 100%;
}
.account-content thead tr, .table-wrapper thead tr {
  border-bottom: 1px solid var(--border);
}
.account-content thead th, .table-wrapper thead th {
  padding: 20px 20px;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 500;
}
.account-content tbody tr:nth-child(even), .table-wrapper tbody tr:nth-child(even) {
  background-color: var(--tr-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.account-content tbody tr:hover, .table-wrapper tbody tr:hover {
  background-color: var(--tr-hover);
}
.account-content tbody td, .table-wrapper tbody td {
  padding: 20px 20px;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.account-content tbody td.grey, .table-wrapper tbody td.grey {
  color: var(--secondary);
}
.account-content tbody td span, .table-wrapper tbody td span {
  font-weight: 500;
  cursor: pointer;
  color: var(--primary) !important;
}
.account-content tbody td span:hover, .table-wrapper tbody td span:hover {
  color: var(--primary-link-hover) !important;
}
.account-content tbody td > a, .table-wrapper tbody td > a {
  color: var(--primary) !important;
}
.account-content tbody td > a:hover, .table-wrapper tbody td > a:hover {
  color: var(--primary-link-hover) !important;
}
.account-content tbody td span.decline, .table-wrapper tbody td span.decline {
  color: var(--red) !important;
}
.account-content tbody td span.decline:hover, .table-wrapper tbody td span.decline:hover {
  color: var(--red-btn-hover) !important;
}
.account-content tbody td.icons-row, .table-wrapper tbody td.icons-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.account-content tbody td.icons-row .radio-group, .table-wrapper tbody td.icons-row .radio-group {
  margin-top: 0;
}
.account-content tbody td.icons-row i, .table-wrapper tbody td.icons-row i {
  font-size: 16px;
  cursor: pointer;
  color: var(--text);
}
.account-content tbody td.icons-row i:hover, .table-wrapper tbody td.icons-row i:hover {
  color: var(--secondary);
}
.account-content tbody .actions-wrapper, .table-wrapper tbody .actions-wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.account-content tbody .actions-wrapper i, .table-wrapper tbody .actions-wrapper i {
  color: var(--secondary) !important;
  cursor: pointer;
}
.account-content tbody .actions-wrapper i:hover, .table-wrapper tbody .actions-wrapper i:hover {
  color: var(--text) !important;
}

form .btn-group {
  margin-top: 30px;
}

.form-section {
  width: 100%;
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.form-section .titles {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-section .titles .highlighted {
  color: var(--primary) !important;
}
.form-section .titles .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 500;
}
.form-section .titles .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
}

.form-title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 24px;
}

.warning {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #ff0000;
  font-weight: 500;
}

.info {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  flex-direction: row;
  gap: 6px;
}
.info i {
  margin: 0 !important;
  padding: 0 !important;
}

.inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.inputs .btn-group {
  margin-top: 5px;
  width: fit-content;
}
.inputs .inputs-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.inputs .inputs-wrapper .input-wrapper {
  width: -webkit-fill-available;
}
.inputs .input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.inputs .input-wrapper .outlined-btn {
  width: fit-content;
  cursor: pointer;
}
.inputs .input-wrapper input[type=file] {
  cursor: pointer;
}
.inputs .input-wrapper textarea {
  width: 100%;
  min-height: 160px;
  max-height: 400px;
  border: 1px solid var(--border);
  background: transparent;
  padding: 12px;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  line-height: 140%;
}
.inputs .input-wrapper textarea:focus-visible {
  outline: none;
  border: 1px solid var(--text);
}
.inputs .input-wrapper textarea::placeholder {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
}
.inputs .input-wrapper .jd-card {
  width: 280px;
  margin-top: 7px;
}
.inputs .input-wrapper .input-img {
  width: 150px;
  height: 150px;
  margin-top: 7px;
}
.inputs .input-wrapper label {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 500;
}
.inputs .input-wrapper label span {
  color: #FF0000;
  display: none;
  font-size: 16px;
}
.inputs .input-wrapper .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
}
.inputs .input-wrapper .attached-files {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.inputs .input-wrapper .attached-file {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
}
.inputs .input-wrapper .attached-file i {
  color: #ff0000;
  cursor: pointer;
  margin-top: 3px;
}
.inputs .input-wrapper .attached-file i:hover {
  color: var(--red-btn);
}
.inputs .input-wrapper .select-wrapper {
  position: relative;
}
.inputs .input-wrapper .select-wrapper::after {
  content: url("../img/select.svg");
  position: absolute;
  top: 9px;
  right: 20px;
}
.inputs .input-wrapper .select-wrapper select {
  cursor: pointer;
  position: relative;
  appearance: none;
  display: inline-flex;
  width: 100%;
  border-radius: 0;
  border: 1px solid var(--border);
  padding: 10px 24px 10px 12px;
  background-color: transparent;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.inputs .input-wrapper .select-wrapper select:focus-visible {
  outline: none;
  border: 1px solid var(--text);
}
.inputs .input-wrapper .select-wrapper select option {
  background-color: var(--bg);
  width: 100%;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
.inputs .input-wrapper .select-wrapper select[disabled] {
  background: var(--container);
  cursor: default;
}
.inputs .input-wrapper input, .inputs .input-wrapper .script-input {
  display: inline-flex;
  width: 100%;
  border-radius: 0;
  border: 1px solid var(--border);
  padding: 10px 12px;
  background-color: transparent;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.inputs .input-wrapper input::-webkit-input-placeholder, .inputs .input-wrapper .script-input::-webkit-input-placeholder {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
}
.inputs .input-wrapper input:focus-visible, .inputs .input-wrapper .script-input:focus-visible {
  outline: none;
  border: 1px solid var(--text);
}
.inputs .input-wrapper input[disabled], .inputs .input-wrapper .script-input[disabled] {
  background: var(--container);
}
.inputs .input-wrapper .phone-input {
  display: flex;
  flex-direction: row;
  gap: 0;
  flex-wrap: nowrap;
}
.inputs .input-wrapper .phone-input input {
  width: auto;
  flex-grow: 1;
}
.inputs .input-wrapper .phone-input .select-wrapper::after {
  top: 9px;
  right: 10px;
}
.inputs .input-wrapper .phone-input select {
  border-right: none;
  width: auto;
  flex-shrink: 0;
  border-right: 1px solid transparent;
}
.inputs .input-wrapper .phone-input select:focus-visible {
  outline: none;
  border: 1px solid var(--text);
}
.inputs .input-wrapper .input-with-btn {
  display: flex;
  flex-direction: row;
  gap: 0;
  flex-wrap: nowrap;
}
.inputs .input-wrapper .input-with-btn .script-input {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100% !important;
  display: inline-block;
}
.inputs .input-wrapper .input-with-btn input, .inputs .input-wrapper .input-with-btn .script-input {
  width: auto;
  flex-grow: 1;
  border-right: none;
}
.inputs .input-wrapper .input-with-btn input:focus-visible, .inputs .input-wrapper .input-with-btn .script-input:focus-visible {
  border-right: 1px solid var(--text);
}
.inputs .input-wrapper .input-with-btn input[disabled] {
  cursor: text;
}
.inputs .input-wrapper .input-with-btn .copy-btn, .inputs .input-wrapper .input-with-btn .eye-btn {
  position: relative;
  width: 37px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  cursor: pointer;
  background-color: var(--container);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.inputs .input-wrapper .input-with-btn .copy-btn .copied, .inputs .input-wrapper .input-with-btn .eye-btn .copied {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  padding: 5px 15px;
  background-color: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 12px;
}
.inputs .input-wrapper .input-with-btn .copy-btn:hover, .inputs .input-wrapper .input-with-btn .eye-btn:hover {
  background-color: var(--border);
}

.radio-group {
  user-select: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* Rounded sliders */
}
.radio-group .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.radio-group .switch {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 39px;
  width: 100%;
}
.radio-group .switch:hover .title {
  color: var(--primary);
}
.radio-group .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-group .slider {
  width: 29px;
  height: 18px;
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  border: 1px solid var(--border);
  transition: 0.4s;
  border-radius: 17px;
}
.radio-group .slider:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 4px;
  bottom: 4px;
  background-color: var(--white);
  transition: 0.2s;
  border-radius: 50%;
}
.radio-group input:checked + .slider {
  background-color: var(--border);
}
.radio-group input:checked + .slider:before {
  transform: translateX(11px);
}
.radio-group .slider.round {
  border-radius: 34px;
}
.radio-group .slider.round:before {
  border-radius: 50%;
}
.radio-group .radio-group label {
  display: flex;
  align-items: center;
}

.wizard-titles {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.wizard-titles h1 {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 32px;
  margin-bottom: 25px;
  text-align: center;
}
.wizard-titles p {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
  text-align: center;
  color: var(--secondary);
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 6px;
}

.payment-models-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.payment-models-wrapper .payment-model {
  cursor: pointer;
  width: 100%;
  padding: 25px;
  background-color: var(--container);
  border: 2px solid var(--border);
  transition: 0.1s ease all;
}
.payment-models-wrapper .payment-model .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.payment-models-wrapper .payment-model .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 300;
  color: var(--secondary);
  margin-bottom: 10px;
}
.payment-models-wrapper .payment-model .value {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 20px;
  font-weight: 600;
}
.payment-models-wrapper .payment-model:hover {
  background-color: var(--container-hover);
  border: 2px solid var(--secondary);
}
.payment-models-wrapper [data-payment-model=checked] {
  background-color: var(--container-hover);
  border: 2px solid var(--primary);
}
.payment-models-wrapper [data-payment-model=checked]:hover {
  border: 2px solid var(--primary);
}

.test .question {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.test .test-selector {
  padding: 24px 20px;
  display: flex;
  flex-direction: row;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--container);
}
.test .test-selector input[type=radio] {
  width: 0;
  height: 0;
  appearance: none;
  visibility: hidden;
}
.test .test-selector .checkbox-icon {
  margin-right: 20px;
  border: 1px solid var(--checkbox-border);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.test .test-selector .checkbox-icon i {
  margin-right: 1px;
  font-size: 18px;
  display: none;
}
.test .test-selector .value {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 500;
}
.test .test-selector:hover {
  border: 1px solid var(--secondary);
}
.test .test-selector[data-checkbox-type=checked] {
  border: 1px solid var(--primary);
}
.test .test-selector[data-checkbox-type=checked] .checkbox-icon {
  background-color: var(--primary);
  border: 1px solid var(--primary) !important;
}
.test .test-selector[data-checkbox-type=checked] i {
  display: block;
}

.popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--header-bg);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  z-index: 100000;
  overflow: auto;
}

.popup-body {
  padding-top: 60px;
  display: flex;
  align-items: center;
  height: 100%;
}

.popup-title-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 30px;
}
.popup-title-wrapper .bi-x-lg {
  color: var(--secondary);
  cursor: pointer;
}
.popup-title-wrapper .bi-x-lg:hover {
  color: var(--text);
}

.popup-title {
  color: var(--text);
  font-family: "Inter";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.popup-title span {
  color: var(--primary);
}

.popup-content p {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0;
  margin: 0;
  line-height: 140%;
}
.popup-content h3 {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 600;
  font-size: 16px;
  padding: 0;
  margin: 0;
}
.popup-content a {
  color: var(--primary) !important;
  text-decoration: underline;
}
.popup-content a:hover {
  text-decoration: none;
}

.popup-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 60px;
}

.info-row {
  width: 100%;
  padding: 30px 0;
  background: var(--container);
}

.info-items-wrapper {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
.info-items-wrapper .info-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info-items-wrapper .info-item .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
}
.info-items-wrapper .info-item .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 32px;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.info-items-wrapper .info-item .desc .link {
  font-weight: 300;
  color: var(--primary);
  font-size: 14px;
  cursor: pointer;
}
.info-items-wrapper .info-item .desc .link:hover {
  color: var(--primary-link-hover);
}

.product-description h3 {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
  font-weight: 600;
}
.product-description p {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.product-description .desc {
  color: var(--secondary);
}

.dropdown-tab {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--secondary);
  padding: 20px 0;
}
.dropdown-tab:last-child {
  border-bottom: 1px solid var(--secondary);
}

.dropdown-tab-title {
  user-select: none;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 6px;
  cursor: pointer;
}
.dropdown-tab-title span {
  color: var(--secondary);
}
.dropdown-tab-title i {
  font-size: 12px;
  margin-left: auto;
}
.dropdown-tab-title:hover i {
  color: var(--secondary);
}

.dropdwn-tab-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.1s ease-out, opacity 0.1s ease-out;
  opacity: 0;
}

.dropdwn-tab-content.active {
  margin-top: 20px;
  max-height: unset;
  opacity: 1;
}

.tab-triggers {
  display: flex;
  width: 100%;
  padding: 6px;
  gap: 10px;
  background: var(--container);
}

.tab-trigger {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
  cursor: pointer;
  padding: 10px 16px;
  font-size: 500;
}
.tab-trigger span {
  color: var(--primary);
}
.tab-trigger:hover {
  color: var(--text);
}
.tab-trigger.active {
  background: var(--primary);
  color: var(--text);
}
.tab-trigger.active span {
  color: var(--text);
}

.tab {
  width: 100%;
}
.tab .data {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tab .data .info {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 700;
  font-size: 16px;
}
.tab .data .info span {
  font-weight: 400;
}
.tab article {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tab article p {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  padding: 0;
  line-height: 140%;
}
.tab article a {
  color: var(--primary) !important;
}
.tab article a:hover {
  color: var(--primary-link-hover) !important;
}
.tab article table {
  width: 100%;
  border-collapse: collapse;
}
.tab article th, .tab article td {
  border: 1px solid var(--border);
  padding: 12px 10px;
  text-align: left;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.tab article th {
  font-weight: 600;
}
.tab article td:not(:first-child) {
  color: var(--secondary);
  font-weight: 500;
}
.tab article li {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  line-height: 160%;
}
.tab article ul, .tab article ol {
  padding-left: 1rem;
  margin-bottom: 0;
}
.tab article h3 {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
  padding: 0;
  margin: 0;
  font-weight: 600;
}

.media .img-popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--header);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(12px);
  --webkit-backdrop-filter: blur(12px);
}
.media .img-popup img {
  max-width: 90%;
  max-height: 90%;
}
.media .img-popup i.bi-x {
  position: absolute;
  top: 15px;
  right: 15px;
  color: var(--white);
  cursor: pointer;
  font-size: 30px;
}
.media .img-popup i.bi-x:hover {
  color: var(--secondary);
}
.media .video-wrapper {
  position: relative;
  cursor: pointer;
  width: 100%;
  aspect-ratio: 1.777;
  overflow: hidden;
}
.media .video-wrapper iframe {
  width: 100%;
  height: 100%;
}
.media .img-wrapper {
  position: relative;
  cursor: pointer;
  width: 100%;
  aspect-ratio: 1.777;
  overflow: hidden;
}
.media .img-wrapper i.bi-eye-fill {
  font-size: 30px;
  color: var(--white);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1000;
  visibility: hidden;
}
.media .img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
}
.media .img-wrapper:hover::after {
  background-color: rgba(0, 0, 0, 0.5);
}
.media .img-wrapper:hover i {
  visibility: visible;
}
.media .img-wrapper img {
  width: 100%;
}
.media .img-wrapper iframe {
  width: 100%;
  height: 100%;
}

.group-sidebar {
  background: var(--container);
  width: 100%;
}
.group-sidebar .section {
  padding: 15px 20px;
}
.group-sidebar .section:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.group-sidebar .img-container {
  width: 100%;
  aspect-ratio: 2.5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.group-sidebar .img-container img {
  width: 100%;
}
.group-sidebar .titles-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.group-sidebar .titles-wrapper img {
  width: 40px;
  height: 40px;
}
.group-sidebar .titles-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.group-sidebar .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 14px;
  font-weight: 500;
  user-select: none;
}
.group-sidebar .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
  line-height: 140%;
}
.group-sidebar .data {
  user-select: none;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.group-sidebar .data span {
  color: var(--primary);
  cursor: pointer;
}
.group-sidebar .data span:hover {
  color: var(--primary-link-hover);
}
.group-sidebar .switchers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.group-sidebar .switch .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  user-select: none;
}
.group-sidebar .switch:hover .title {
  color: var(--secondary);
}

.moderators, .users {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.moderator, .user {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.moderator img, .user img {
  width: 40px;
  height: 40px;
}
.moderator .titles, .user .titles {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.moderator .title, .user .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  user-select: none;
}
.moderator .desc, .user .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 12px;
  color: var(--secondary);
}
.moderator .actions, .user .actions {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 2px;
}
.moderator .action, .user .action {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 12px;
  cursor: pointer;
}
.moderator .action:hover, .user .action:hover {
  color: var(--primary);
}
.moderator .action.error, .user .action.error {
  color: #ff0000;
  font-weight: 500;
}
.moderator .action.error:hover, .user .action.error:hover {
  color: var(--red);
}

.post-input {
  background: var(--container);
  padding: 20px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  user-select: none;
}
.post-input img {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
}
.post-input .inputs {
  flex-grow: 1;
  gap: 10px;
}
.post-input .inputs textarea {
  min-height: 50px !important;
}

.posts {
  display: flex;
  flex-direction: column-reverse;
  gap: 24px;
}

.post {
  background: var(--container);
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.post .filter-dropdown {
  top: 27px;
}
.post .post-img-wrapper img {
  width: 40px;
  height: 40px;
}
.post .actions .bi-three-dots-vertical {
  color: var(--secondary);
  font-size: 16px;
  cursor: pointer;
}
.post .actions .bi-three-dots-vertical:hover {
  color: var(--text);
}

.post-content {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  gap: 15px;
}
.post-content .titles {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.post-content .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 14px;
  display: flex;
  flex-direction: row;
  gap: 6px;
}
.post-content .date {
  color: var(--secondary);
  font-weight: 300;
  margin-right: 4px;
}
.post-content .status {
  color: var(--primary);
  font-weight: 500;
}
.post-content .content {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  line-height: 140%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.post-content .content p {
  margin: 0;
}
.post-content .content a {
  color: var(--primary) !important;
}
.post-content .content a:hover {
  color: var(--primary-link-hover) !important;
}
.post-content .content img {
  max-width: 100%;
}
.post-content .content iframe {
  width: 100%;
  aspect-ratio: 1.77;
}
.post-content .reactions {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.post-content .reaction {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 2px;
}
.post-content .reaction i {
  color: var(--secondary);
  margin-right: 3px;
  font-size: 16px;
  margin-top: 2px;
}
.post-content .reaction span {
  color: var(--primary);
  font-weight: 500;
}
.post-content .reaction i.bi-heart-fill {
  color: #ff0000;
}
.post-content .add-comment-form {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.post-content .add-comment-form img {
  width: 38px;
  height: 38px;
}
.post-content .add-comment-form form {
  flex-grow: 1;
}
.post-content .comments {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post-content .comment {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.post-content .comment img {
  width: 40px;
  height: 40px;
}
.post-content .comment .comment-content {
  flex-grow: 1;
}
.post-content .comment .titles {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
.post-content .comment .titles span {
  color: var(--secondary);
}
.post-content .comment .comment-text {
  padding: 12px 15px;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  line-height: 140%;
  background: var(--border);
}
.post-content .comment .reaction:hover:not(.like) {
  color: var(--primary);
}

.courses-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.courses-section {
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.courses-section:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.courses-section .section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-direction: row;
}
.courses-section .section-header .titles {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.courses-section .section-header .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
  font-weight: 600;
}
.courses-section .section-header .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
}

.calendar-header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.calendar-header .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 24px;
  font-weight: 500;
}

.fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 20px;
}

.fc-toolbar-chunk > div {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.fc .fc-toolbar-title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 16px;
  margin-right: 7px;
}
.fc .fc-button-primary.fc-prev-button, .fc .fc-button-primary.fc-next-button {
  background-color: transparent !important;
  border: none;
  padding: 0;
  box-shadow: none !important;
  margin-bottom: 4px;
}
.fc .fc-button-primary.fc-prev-button span.fc-icon, .fc .fc-button-primary.fc-next-button span.fc-icon {
  color: var(--secondary);
  font-size: 20px;
}
.fc .fc-button-primary.fc-prev-button:hover span.fc-icon, .fc .fc-button-primary.fc-next-button:hover span.fc-icon {
  color: var(--text);
}
.fc .fc-button-primary.fc-today-button {
  background-color: transparent !important;
  border: none;
  padding: 0;
  box-shadow: none !important;
  text-transform: capitalize;
  margin-right: 20px;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 1;
  cursor: pointer;
}
.fc .fc-button-primary.fc-today-button:hover {
  color: var(--secondary);
}
.fc .fc-button-primary.fc-today-button[disabled] {
  color: var(--secondary);
  cursor: not-allowed;
}
.fc .fc-button-primary.fc-today-button[disabled]:hover {
  color: var(--secondary);
}
.fc .fc-button-primary.fc-dayGridMonth-button, .fc .fc-button-primary.fc-timeGridWeek-button, .fc .fc-button-primary.fc-timeGridDay-button {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  background-color: var(--container);
  border: none;
  border-radius: 0;
  padding: 12px 20px;
  box-shadow: none !important;
}
.fc .fc-button-primary.fc-dayGridMonth-button:hover, .fc .fc-button-primary.fc-timeGridWeek-button:hover, .fc .fc-button-primary.fc-timeGridDay-button:hover {
  background-color: var(--container-hover) !important;
}
.fc .fc-dayGridMonth-button.fc-button-active, .fc .fc-timeGridWeek-button.fc-button-active, .fc .fc-timeGridDay-button.fc-button-active {
  background-color: var(--container-hover) !important;
}
.fc .fc-scrollgrid-sync-table td, .fc .fc-scrollgrid-sync-table th, .fc .fc-col-header-cell, .fc .fc-scrollgrid, .fc td[role=presentation], .fc th[role=presentation] {
  border-color: var(--border) !important;
}
.fc .fc-col-header-cell {
  border-bottom: none !important;
}
.fc .fc-daygrid-day-top {
  flex-direction: row;
  justify-content: center;
}
.fc .fc-daygrid-day-number {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.fc .fc-daygrid-day.fc-day-today {
  background: transparent !important;
}
.fc .fc-day-today .fc-daygrid-day-number {
  background: var(--primary) !important;
  color: var(--bg) !important;
  padding: 1px 5px !important;
  margin-top: 3px !important;
  font-weight: 600;
}
.fc .fc-daygrid-event-harness, .fc .fc-timegrid-event-harness {
  cursor: pointer;
  border-radius: 0;
}
.fc .fc-daygrid-event-harness .fc-event, .fc .fc-timegrid-event-harness .fc-event {
  background: var(--container);
  padding: 8px;
  border-left: 3px solid var(--primary) !important;
  border-radius: 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 3px;
  margin-left: 0;
  margin-right: 0;
}
.fc .fc-daygrid-event-harness .fc-event .fc-event-title, .fc .fc-timegrid-event-harness .fc-event .fc-event-title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: default;
}
.fc .fc-daygrid-event-harness .fc-event .fc-event-time, .fc .fc-timegrid-event-harness .fc-event .fc-event-time {
  color: var(--secondary);
}
.fc .fc-daygrid-event-harness .fc-event-past, .fc .fc-timegrid-event-harness .fc-event-past {
  border-left: 3px solid var(--secondary) !important;
}
.fc .fc-daygrid-event-harness .fc-event-past .fc-event-title, .fc .fc-timegrid-event-harness .fc-event-past .fc-event-title {
  color: var(--secondary) !important;
}
.fc .fc-daygrid-event-harness .fc-daygrid-event-dot, .fc .fc-timegrid-event-harness .fc-daygrid-event-dot {
  display: none !important;
}
.fc .fc-col-header-cell-cushion {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary) !important;
  text-transform: uppercase;
}

.fc-v-event .fc-event-title-container {
  flex-grow: 0;
  height: auto;
}

.fc-timegrid-event-harness-inset .fc-timegrid-event, .fc-timegrid-event.fc-event-mirror, .fc-timegrid-more-link {
  box-shadow: none;
  border-top: none;
  border-right: none;
  border-bottom: none;
}

.fc-day-today {
  background: transparent !important;
}

.fc-theme-standard td, .fc-theme-standard th {
  border-color: var(--border) !important;
}

.fc-col-header-cell.fc-day-today {
  background: var(--primary) !important;
}

.fc-col-header-cell.fc-day-today a {
  color: var(--bg) !important;
  font-weight: 600 !important;
}

.fc-timegrid-divider {
  display: none !important;
}

.fc-timegrid-slot-label-cushion {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 12px;
}

.tippy-box {
  background: var(--container);
  padding: 10px;
}
.tippy-box .inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tippy-box .title, .tippy-box .date, .tippy-box .place, .tippy-box .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.tippy-box .title {
  font-weight: 600;
}
.tippy-box .desc {
  margin-top: 10px;
}
.tippy-box .place {
  font-size: 12px;
}
.tippy-box .date {
  color: var(--secondary);
  font-size: 12px;
}

.tippy-arrow {
  color: var(--container);
}

.chat {
  height: 78vh;
  position: relative;
  display: flex;
  flex-direction: column;
}
.chat .messages {
  flex-grow: 1;
  padding-top: 100px;
  padding-bottom: 20px;
  max-height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column-reverse;
}
.chat .messages .message {
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.chat .messages .message.incoming {
  background: var(--container);
  border: 1px solid var(--border);
}
.chat .messages .message .avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.chat .messages .message .titles {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.chat .messages .message .titles img, .chat .messages .message .titles iframe {
  max-width: 60%;
  margin-top: 10px;
}
.chat .messages .message .titles a {
  color: var(--primary) !important;
}
.chat .messages .message .titles a:hover {
  color: var(--primary-link-hover) !important;
}
.chat .messages .message .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 500;
}
.chat .messages .message .title span {
  color: var(--secondary);
  font-weight: 400;
}
.chat .messages .message .desc {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
}
.chat .messages::-webkit-scrollbar {
  width: 0px;
}
.chat .messages::-webkit-scrollbar-thumb {
  width: 0;
}
.chat .chat-input {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.chat .chat-input .files {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.chat .chat-input .file {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
}
.chat .chat-input .file i {
  color: #ff0000;
  cursor: pointer;
  margin-top: 3px;
}
.chat .chat-input .file i:hover {
  color: var(--red-btn);
}
.chat .chat-input .input-wrapper {
  flex-grow: 1;
  display: flex;
  position: relative;
}
.chat .chat-input .input-wrapper i {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
}
.chat .chat-input .input-wrapper input[type=file] {
  position: absolute;
  z-index: 1;
  inset: 0;
  appearance: none;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.chat .chat-input input[type=text] {
  flex-grow: 1;
  display: inline-flex;
  border-radius: 0;
  border: 1px solid var(--border);
  padding: 14px 15px;
  background-color: transparent;
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.chat .chat-input input[type=text]::-webkit-input-placeholder {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--secondary);
}
.chat .chat-input input[type=text]:focus-visible {
  outline: none;
  border: 1px solid var(--text);
}
.chat .chat-input input[type=text][disabled] {
  background: var(--container);
}
.chat .chat-input .primary-btn {
  flex-shrink: 0;
}

.chat-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--container);
  border: 1px solid var(--border);
}
.chat-header .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 600;
}
.chat-header .title span {
  font-weight: 400;
  color: var(--secondary);
}
.chat-header .link {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--primary) !important;
}
.chat-header .link:hover {
  color: var(--primary-link-hover) !important;
}

.admin-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: fit-content;
  border-right: 1px solid var(--border);
  background-color: var(--bg);
  z-index: 20000;
  display: flex;
  flex-direction: row;
}
.admin-sidebar .dropdown-wrapper {
  left: 20px;
}
.admin-sidebar .temp-nav-dropdown {
  right: unset !important;
}
.admin-sidebar .dropdown-content {
  right: unset;
}

.categories {
  padding: 30px 20px;
  border-right: 1px solid var(--border);
  width: 250px;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  scroll-behavior: contain;
}

.logos-wrapper {
  display: flex;
  flex-direction: row;
  margin-bottom: 50px;
}
.logos-wrapper img {
  flex-shrink: 0;
  height: 25px;
}
.logos-wrapper .favicon {
  height: 40px;
  border: 1px solid var(--border);
  display: none;
}

.categories-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.categories-row hr {
  margin-top: 5px;
  margin-bottom: 5px;
}
.categories-row .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.categories-row .category .titles {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.categories-row .category .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 500;
}
.categories-row .category .bi-chevron-right {
  font-size: 10px;
  color: var(--secondary);
}
.categories-row .category:hover .bi-chevron-right, .categories-row .category.active .bi-chevron-right {
  color: var(--text);
}

.subcategories {
  padding: 30px 20px;
  width: 200px;
  max-height: 100%;
  overflow-y: auto;
  scroll-behavior: contain;
}

.subcategories-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.subcategories-row .subcategory {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.subcategories-row .subcategory .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 400;
}
.subcategories-row .subcategory .bi-chevron-right {
  font-size: 10px;
  color: var(--secondary);
}
.subcategories-row .subcategory:hover .bi-chevron-right, .subcategories-row .subcategory.active .bi-chevron-right {
  color: var(--text);
}

.admin-wrapper {
  margin-left: 450px;
  display: flex;
  height: 100vh;
  height: 100dvh;
  position: relative;
  flex-direction: column;
}
.admin-wrapper.no-sidebar {
  margin-left: 250px;
}
.admin-wrapper.no-sidebar .admin-container, .admin-wrapper.no-sidebar .header, .admin-wrapper.no-sidebar .footer {
  max-width: 1100px;
  width: -webkit-fill-available;
  margin: 0 auto;
}
.admin-wrapper.no-sidebar .admin-container::-webkit-scrollbar-thumb, .admin-wrapper.no-sidebar .header::-webkit-scrollbar-thumb, .admin-wrapper.no-sidebar .footer::-webkit-scrollbar-thumb {
  display: none;
}
.admin-wrapper .tile {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  background: var(--container);
}
.admin-wrapper .tile .title {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-weight: 600;
  color: var(--secondary);
}
.admin-wrapper .tile .value {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 32px;
  font-weight: 600;
}
.admin-wrapper .tile.highlighted {
  background: var(--primary);
}
.admin-wrapper .tile.highlighted .title, .admin-wrapper .tile.highlighted .value {
  color: var(--white);
}
.admin-wrapper .tile.disabled {
  background: var(--red);
}
.admin-wrapper .tile.disabled .title, .admin-wrapper .tile.disabled .value {
  color: var(--white);
}
.admin-wrapper .tile.sm {
  padding: 15px 20px;
  gap: 12px;
}
.admin-wrapper .tile.sm .value {
  font-size: 20px;
}
.admin-wrapper .admin-container {
  flex-grow: 1;
  min-height: calc(100dvh - 294px);
  max-height: 100%;
  overflow-y: auto;
  padding-right: 50px;
  padding-left: 50px;
  position: relative;
  padding-top: 100px;
  padding-bottom: 40px;
}
.admin-wrapper .header {
  position: absolute;
  padding-right: 50px;
  padding-left: 50px;
}
.admin-wrapper .header .bi-arrow-right-square-fill {
  cursor: pointer;
  display: none;
}
.admin-wrapper .header .nav-links-inner {
  gap: 0;
}
.admin-wrapper .footer {
  padding-right: 50px;
  padding-left: 50px;
  padding-top: 10px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.admin-wrapper .footer .footer-container {
  margin-top: 0;
}

.table-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  background: var(--container);
  border: 1px solid var(--border);
  position: absolute;
  z-index: 10;
  right: 0;
  top: 20px;
  user-select: none;
  width: max-content;
  text-align: left;
}
.table-links .table-link, .table-links a.table-link {
  cursor: pointer;
  color: var(--text) !important;
}
.table-links .table-link:hover, .table-links a.table-link:hover {
  color: var(--secondary) !important;
}
.table-links .table-link.red, .table-links a.table-link.red {
  color: #ff0000 !important;
}
.table-links .table-link.red:hover, .table-links a.table-link.red:hover {
  color: var(--red-btn-hover) !important;
}

table .bi-grid-fill {
  cursor: pointer;
}
table .bi-grid-fill:hover {
  color: var(--secondary);
}

.label-info {
  font-size: 12px;
  color: var(--text);
  align-self: baseline;
  cursor: help;
  position: relative;
}

.info-content {
  color: var(--text);
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 12px;
  position: absolute;
  z-index: 10;
  right: -10px;
  top: 50%;
  transform: translateX(100%) translateY(-50%);
  width: max-content;
  max-width: 200px;
  padding: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.admin-container canvas {
  height: 200px;
  width: 100%;
}

@media (max-width: 1480px) {
  .admin-wrapper .nav-links-inner {
    padding: 0 !important;
  }
  .admin-wrapper .nav-links-inner .nav-link {
    padding: 10px;
  }
}
@media (max-width: 1380px) {
  .admin-wrapper .header .nav-links-inner {
    display: none;
  }
}
@media (max-width: 1080px) {
  .categories-row .title {
    display: none;
  }
  .logo {
    display: none;
  }
  .favicon {
    display: block !important;
  }
  .categories {
    width: fit-content;
  }
  .admin-wrapper {
    margin-left: 280px;
  }
  .admin-wrapper .nav {
    justify-content: flex-end;
  }
  .admin-wrapper.no-sidebar {
    margin-left: 80px;
  }
}
@media (max-width: 900px) {
  .admin-wrapper .footer-container .links {
    display: none !important;
  }
}
@media (max-width: 750px) {
  .admin-sidebar {
    display: none;
    width: 100%;
  }
  .admin-sidebar.no-subcategories .categories {
    width: 100%;
  }
  .admin-sidebar.no-subcategories .category .title {
    display: inline-flex;
  }
  .admin-sidebar .subcategories {
    width: unset;
    flex-grow: 1;
  }
  .admin-wrapper {
    margin-left: 0;
  }
  .admin-wrapper .header {
    padding-right: 12px;
    padding-left: 12px;
  }
  .admin-wrapper .header .nav {
    justify-content: space-between;
  }
  .admin-wrapper .header .bi-arrow-right-square-fill {
    display: inline-flex;
  }
  .admin-wrapper.no-sidebar {
    margin-left: 0px;
  }
  .admin-wrapper .footer, .admin-wrapper .admin-container {
    padding-right: 12px;
    padding-left: 12px;
  }
}
@media (max-width: 1400px) {
  .nav-link {
    padding: 0 10px;
  }
}
@media (max-width: 1200px) {
  .tools-link {
    display: none !important;
  }
  .profile-section.first-adaptive {
    display: flex !important;
  }
  .nav-link {
    padding: 0;
  }
  .form-section .titles {
    margin-bottom: 20px;
  }
  .account-navigation {
    margin-bottom: 30px;
  }
  .account-navigation .item {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .nav-links {
    display: none !important;
  }
  .profile-section.second-adaptive {
    display: flex !important;
  }
  .account-settings {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .course-header .nav-links {
    display: flex !important;
  }
  .course-header .top-panel h1 {
    font-size: 24px !important;
  }
  .titles-group-with-img {
    padding-left: 0;
  }
  .courses-img {
    padding: 0;
    margin-bottom: 20px;
  }
  .navigation {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .footer-container {
    margin-top: 20px !important;
    flex-direction: column;
    gap: 12px;
  }
  .footer-container .links {
    flex-direction: column !important;
    align-items: center;
    gap: 12px !important;
  }
  .nav-profile-dropdown {
    position: fixed;
    top: 80px;
    right: 12px;
    left: 12px;
    width: calc(100% - 24px);
  }
  .sidebar {
    padding: 20px;
  }
  .sidebar .titles-group {
    padding: 0 !important;
  }
  .course-header .top-panel {
    flex-direction: column;
    gap: 12px;
  }
  .course-header .options {
    width: 100%;
    flex-direction: column !important;
  }
  .course-header .options .square-btn, .course-header .options .primary-btn, .course-header .options .secondary-btn {
    width: 100% !important;
  }
  .courses-img {
    padding: 0 12px !important;
  }
  .titles-group {
    padding: 0 12px;
  }
  .main-container {
    margin-top: 100px;
    min-height: calc(100dvh - 270px);
  }
  .course-author-group .desc {
    font-size: 14px;
  }
  .titles-group .title {
    font-size: 24px;
  }
  .popup-title {
    font-size: 24px;
  }
  .filters-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .filter-dropdown {
    left: 0;
    right: unset;
  }
  .btn-group {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .links-wrapper .link {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .links-wrapper .link .titles-group {
    padding: 0;
    align-items: flex-start;
  }
  .popup-buttons {
    flex-direction: column;
  }
  .popup-buttons .primary-btn, .popup-buttons .secondary-btn {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .pl-lg-5 {
    padding-left: 50px;
  }
}