body,
div,
dl,
dt,
dd,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img,
abbr {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ul li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

html,
body {
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
}

body {
  font-family: 'Jost';
  color: #fff;
  line-height: 1.3;
  background-color: #1A1D32;
}

.sitemap__row {
  padding: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.sitemap a {
  font-size: 20px;
  color: #fff;
}

.els {
  padding: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: #ffffff;
}

.h3 {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.3;
  color: #fff;
}

p {
  font-size: 16px;
  font-weight: 500;
}

.radio {
  display: inline-block;
  position: relative;
}

.radio input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.radio input:checked + .radio__input:after {
  opacity: 1;
}

.radio__input {
  position: relative;
  cursor: pointer;
  display: block;
  width: 16px;
  height: 16px;
}

.radio__input:before,
.radio__input:after {
  content: '';
  position: absolute;
  box-sizing: border-box;
}

.radio__input:before {
  border-radius: 0px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  border-radius: 50%;
}

.radio__input:after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FF560D;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.36);
  opacity: 0;
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -4px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
  z-index: 10;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch__round {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #EE5E52;
  border-radius: 24px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.switch__round:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  top: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

.switch input:checked + .switch__round {
  background-color: #393939;
}

.switch input:checked + .switch__round:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

.dashboard-btn {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #699BF7;
  padding: 9px 27px;
  border: 1px solid #699BF7;
  border-radius: 10px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.dashboard-btn.buy {
  color: #DCDCE4;
}

.dashboard-btn:hover {
  color: #DCDCE4;
  background-color: #699BF7;
}

.form-btn {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #699BF7;
  padding: 9px 27px;
  background-color: #1E1D2B;
  border: 1px solid #699BF7;
  border-radius: 10px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.form-btn:hover {
  color: #DCDCE4;
  background-color: #699BF7;
}

.header {

}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0px 67px;
  height: 72px;
}

.header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 15px;
}

.header__nav a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 10px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__nav a:hover {
  background-color: #1F3661;
  border-color: #2D75D7;
}

.header__nav a.active {
  background-color: #1F3661;
  border-color: #2D75D7;
}

.header__profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.mobile-menu-btn {
  display: none;
  width: 30px;
  height: 30px;
}

.mobile-menu-btn img {
  width: 100%;
  height: 100%;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -340px;
  width: 300px;
  height: 100vh;
  overflow-y: scroll;
  background-color: #eee;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  z-index: 100;
  box-shadow: -10px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.mobile-menu__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 5px 10px;
  box-shadow: 0px 5px 5px -2px rgba(34, 60, 80, 0.3);
  height: 60px;
}

.mobile-menu__logo img {
  display: block;
}

.mobile-menu__close {
  width: 30px;
  height: 30px;
  margin-left: auto;
}

.mobile-menu__close img {
  width: 100%;
  height: 100%;
}

.mobile-menu__body {
  height: calc(100vh - 60px);
  padding: 30px 10px;
  overflow-y: scroll;
}

.mobile-menu__nav {
  margin-bottom: 30px;
}

.mobile-menu__nav li {
  border-bottom: 1px solid #000;
}

.mobile-menu__nav li a {
  color: #000;
  font-size: 18px;
  text-decoration: none;
  display: block;
  padding: 10px 0;
}

.mobile-menu__contact li {
  border-bottom: 1px solid #000;
  color: #000;
  font-size: 18px;
  text-decoration: none;
  display: block;
  padding: 10px 0;
}

.sidebar {
  padding: 20px 10px 20px 0;
  height: calc(100vh - 73px);
  overflow-y: scroll;
  scrollbar-color: #2F80ED;
  width: 301px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
    border-right: 2px solid #252A40;
}

.sidebar::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: #2F80ED;
  border-radius: 3px;
}

.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar-control {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.sidebar-action {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
  padding: 0;
    margin-bottom: 10px;
}

.sidebar-action a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 4px;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.2px;
  text-decoration: none;
}

.sidebar-bb {
  padding: 10px 0px 10px 0px;
  margin: 0 -10px;
  position: relative;
}

.sidebar-bb:after {
  content: '';
  display: inline-block;
  width: 1px;
  height: calc(100% - 74px);
  position: absolute;
  left: 28px;
  bottom: 42px;
  border-right: 0.5px dashed #33BE63;
}

.sidebar-bb__title {
  position: relative;
  padding-left: 24px;
}

.sidebar-bb__title.active::before {
  background: #66DA4A;
  box-shadow: 0px 0px 8px 0px rgba(102, 218, 74, 0.5);
}

.sidebar-bb__title:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #FF6A14;
  box-shadow: 0px 0px 8px 0px rgba(102, 218, 74, 0.5);
  border-radius: 5px;
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -5px;
}

.sidebar-bb__title:after {
  display: none !important;
}

.sidebar-bb__item {
  padding: 5px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.sidebar-bb__item:hover {
  background-color: rgba(31, 54, 97, 0.5);
}

.sidebar-bb__item:hover .ac-position {
  opacity: 1;
}

.sidebar-bb__item:hover .ac-menu {
  opacity: 1;
}

.sidebar-bb__item:hover .ac-btn {
  opacity: 1;
}

.sidebar-bb .ac-position {
  opacity: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  left: 2px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sidebar-bb .ac-position img {
  width: 100%;
  height: 100%;
  display: block;
}

.sidebar-bb .ac-position__top {
  width: 14px;
  height: 10px;
  margin-bottom: 8px;
  cursor: pointer;
}

.sidebar-bb .ac-position__bot {
  width: 14px;
  height: 10px;
  cursor: pointer;
}

.sidebar-bb .ac-menu {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-left: auto;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sidebar-bb .ac-menu img {
  display: block;
}

.sidebar-bb .ac-btn {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  opacity: 1;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sidebar-bb .ac-btn img {
  display: block;
}

.sidebar-bb__name {
  font-size: 18px;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 3px;
  margin-left: 25px;
  margin-right: auto;
  position: relative;
}

.sidebar-bb__name:after {
  content: '';
  display: inline-block;
  width: 43px;
  height: 9px;
  position: absolute;
  right: 100%;
  top: 50%;
  margin-top: -9px;
  border-bottom: 0.5px dashed #33BE63;
  border-left: 0.5px dashed #33BE63;
  border-radius: 0 0 0 10px;
}

.sidebar-bb__name--small {
  font-size: 13px;
}

.sidebar-bb ul .sidebar-bb__name {
  margin-left: 73px;
}

.sidebar-bb ul ul .sidebar-bb__name {
  margin-left: 93px;
}

.sidebar-bb ul ul .sidebar-bb__name:after {
  width: 62px;
}

.sidebar-bb ul ul ul .sidebar-bb__name {
  margin-left: 93px;
}

.sidebar-bb ul ul ul .sidebar-bb__name:after {
  width: 62px;
}

.sidebar-bb ul ul ul ul .sidebar-bb__name {
  margin-left: 113px;
}

.sidebar-bb ul ul ul ul .sidebar-bb__name:after {
  width: 83px;
}

.sidebar-bb li {
  position: relative;
  background-color: #1A1D32;
}

.sidebar__item {
  margin-bottom: 20px;
}

.split-screen {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 20px;
}

.split-screen__text {
  font-size: 18px;
  font-weight: 500;
  margin-right: auto;
}

.sidebar-view {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.sidebar-view__name {
  font-size: 18px;
  color: #33BE63;
  font-weight: 500;
  width: 100%;
}

.sidebar-view__btn {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  padding: 0 10px;
    border-radius: 4px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sidebar-view__btn:hover {
  background: #353954;
}

.sidebar-view__btn.active {
  background: #353954;
color: #699BF7;
}

.dashboard {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.dashboard-sidebar {
  width: 300px;
  min-height: 100vh;
  overflow-y: scroll;
  scrollbar-color: #2F80ED;
  width: 310px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.dashboard-sidebar__left {
  background: #252A40;
}

.dashboard-sidebar::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.dashboard-sidebar::-webkit-scrollbar-thumb {
  background: #2F80ED;
  border-radius: 3px;
}

.dashboard-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.dashboard-sidebar__nav {
  padding: 70px 0 20px 0;
}

.dashboard-sidebar__nav a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 20px;
  color: #DCDCE4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  padding: 5px 20px;
}

.dashboard-sidebar__nav a:hover {
  color: #FAB800;
}

.dashboard-sidebar__nav a:hover svg {
  fill: #FAB800;
}

.dashboard-sidebar__nav a.active {
  color: #FAB800;
}

.dashboard-sidebar__nav a.active svg {
  fill: #FAB800;
}

.dashboard-sidebar__nav svg {
  width: 56px;
  height: 56px;
  fill: #699BF7;
}

.dashboard-main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 0 20px;
}

.dashboard-main--full {
  max-width: calc(100vw - 327px);
}





.dashboard-daily {
  width: 600px;
}

.dashboard-filters {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 320px;
  padding: 0 20px;
}

.dashboard-filters__btn {
  text-align: center;
  margin-top: auto;
}

.leaderboard {
  width: 280px;
}

.leaderboard__one .leaderboard-top__inner {
  width: 100px;
  height: 120px;
  background: #353954;
  border-radius: 10px 10px 0 0;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.leaderboard__one .leaderboard-top__name {
  margin-top: 0;
}

.leaderboard__one .leaderboard-top__points {
  color: #F7D506;
  margin-bottom: auto;
  margin-top: 0;
}

.leaderboard__one .leaderboard-top__avatar {
  border-color: #F7D506;
}

.leaderboard__two .leaderboard-top__inner {
  width: 90px;
  height: 80px;
  background: #252A40;
  border-radius: 0px 10px 10px 0px;
}

.leaderboard__two .leaderboard-top__points {
  color: #3D922F;
}

.leaderboard__two .leaderboard-top__avatar {
  border-color: #699BF7;
}

.leaderboard__three .leaderboard-top__inner {
  width: 90px;
  height: 80px;
  background: #252A40;
  border-radius: 10px 0 0 10px;
}

.leaderboard__three .leaderboard-top__points {
  color: #699BF7;
}

.leaderboard__three .leaderboard-top__avatar {
  border-color: #3D922F;
}

.leaderboard-control {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background: #252A40;
  border-radius: 10px;
  padding: 5px;
  margin-bottom: 70px;
    border: 1px solid #353954;
    margin-top: 15px;
  border-radius: 15px;
}

.leaderboard-control__btn {
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: #DCDCE4;
  cursor: pointer;
  position: relative;
    padding: 5px 10px;
    line-height: 28px;
}

.leaderboard-control__btn.active {
    background: #353954;
    border-radius: 10px;
}

.leaderboard-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  margin-bottom: 20px;
}

.leaderboard-top__avatar {
  width: 64px;
  height: 64px;
  position: absolute;
  bottom: calc(100%  - 13px);
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid red;
}

.leaderboard-top__avatar img {
  width: 100%;
  height: 100%;
}

.leaderboard-top__inner {
  position: relative;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 23px 5px 5px 5px;
  text-align: center;
}

.leaderboard-top__name {
  font-family: 'Montserrat';
  font-size: 12px;
  font-weight: 50;
  color: #DCDCE4;
  line-height: 1.2;
  word-break: break-all;
  margin-top: auto;
  margin-bottom: 2px;
}

.leaderboard-top__points {
  font-family: 'Montserrat';
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: auto;
}

.leaderboard-list {
  background: #252A40;
  border-radius: 10px;
  padding: 5px 0;
}

.leaderboard-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 5px 15px;
  padding: 0 15px 0 5px;
  font-family: 'Montserrat';
  font-size: 12px;
  font-weight: 500;
  color: #DCDCE4;
  line-height: 1.2;
}

.leaderboard-list__item:not(:last-child) {
  margin-bottom: 13px;
}

.leaderboard-list__item.current {
  color: #3D922F;
}

.leaderboard-list__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.leaderboard-list__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.leaderboard-list__name {
  word-break: break-all;
}

.leaderboard-list__points {
  margin-left: auto;
}

.pocker-table__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #DCDCE4;
  text-align: center;
}

.pocker-table__control {
  background: #252A40;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 15px;
  padding: 5px;
  padding-left: 20px;
  margin-bottom: 5px;
}

.pocker-table__control .dashboard-profile__title {
  display: none;
  margin-bottom: 0;
}

.pocker-table .desk-none {
  display: none;
}

.pocker-table .pocker-setting-btn {
  margin-left: auto;
}

.pocker-table .pocker-setting-btn img {
  display: block;
}

.pocker-table__timer {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.25;
  color: #699BF7;
  padding-right: 10px;
  margin-bottom: 25px;
}

.pocker-table .table {
  position: relative;
}

.pocker-table .table__item {
  position: absolute;
  width: 90px;
  height: 26px;
  background: #273D64;
  border: 2px solid #252A40;
  border-radius: 50px;
}

.pocker-table .table__cards {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  gap: 0 3px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.pocker-table .table__item1 {
  left: 8%;
  top: 10px;
}

.pocker-table .table__item2 {
  right: 20%;
  top: 10px;
}

.pocker-table .table__item3 {
  bottom: 7px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.pocker-table .table__img {
  width: 540px;
  max-width: 100%;
  margin: 0 auto;
}

.pocker-table .table__img img {
  width: 100%;
}

.pocker-table__situation {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #DCDCE4;
  text-align: right;
  margin-bottom: 10px;
}

.pocker-table__btns {
  background: #252A40;
  border-radius: 10px;
  padding: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0 15px;
}

.pocker-table .table-btn {
  font-family: 'Montserrat';
  padding: 10px 30px;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pocker-table .table-btn:hover {
  color: #DCDCE4;
}

.pocker-table .table-btn--green {
  border-color: #3D922F;
  color: #3D922F;
}

.pocker-table .table-btn--green:hover {
  background-color: #3D922F;
}

.pocker-table .table-btn--yellow {
  border-color: #FAB800;
  color: #FAB800;
}

.pocker-table .table-btn--yellow:hover {
  background-color: #FAB800;
}

.pocker-table .table-btn--blue {
  border-color: #699BF7;
  color: #699BF7;
}

.pocker-table .table-btn--blue:hover {
  background-color: #699BF7;
}

.profile-user {
  width: 280px;
}

.profile-user__top {
  background: #252A40;
  border-radius: 10px;
  padding: 10px 10px 50px;
  text-align: center;
}

.profile-user__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #3D922F;
  margin: 0 auto 10px;
}

.profile-user__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.profile-user__name {
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #DCDCE4;
}

.profile-user__info {
    background: #353954;
    border-radius: 10px;
    margin: -32px 30px 15px;
    padding: 5px 10px;
}

.profile-user__info-title {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  color: #DCDCE4;
  margin-bottom: 13px;
  text-align: center;
}

.profile-user__info-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0 10px;
}

.profile-user__info-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 0 5px;
}

.profile-user__info-subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #699BF7;
}

.profile-user__info-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #B5B6C4;
}

.profile-user__detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  margin-bottom: 20px;
}

.profile-user__detailed-item {
  background: #252A40;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 10px;
  border: 1px solid #353954;
  border-radius: 15px;
}

.profile-user__detailed-title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    display: flex;
    align-items: center;
    color: #B5B6C4;
}

.profile-user__detailed-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #699BF7;
}

.profile-user__detailed-graph {
  margin-left: auto;
  width: 32px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.profile-user__detailed-graph img {
  width: 100%;
}

.profile-user__main-graph {
  height: 154px;
  background: #252A40;
  border-radius: 10px;
  overflow: hidden;
}

.profile-user__main-graph img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.course-card {
    background: #252A40;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    cursor: pointer;
    transition: .2s;
}
.course-card:hover{
    box-shadow: none;
}
.course-card-head{
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    position: relative;
    padding: 15px 15px 28px 15px;
    background: url('/img/card-bg-pattern.svg') no-repeat center;
    background-size: cover;
    min-height: 116px;
}
.course-card-head .difficult{
    font-family: 'Jost';
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    color: #FF0422;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.course-card-head .course-card-head-title{
    font-family: 'Jost';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    leading-trim: both;
    text-edge: cap;
    color: #DCDCE4;
    text-transform: uppercase;
    min-height: 105px;
    display: flex;
}

.course-card-bookmark {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 36px;
    height: 36px;
    right: 7px;
    top: 7px;
    background: #353954;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    cursor: pointer;
}

.course-card .course-card-bookmark.active svg {
  fill: #FAB800;
  stroke: #FAB800;
}

.course-card .course-card-bookmark svg {
  width: 100%;
  height: 100%;
  stroke: #699BF7;
  fill: transparent;
  stroke-width: 3;
    width: 15px;
}

.course-card .course-card-tags{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    margin: -18px 10px 5px;
}
.course-card .course-card-tags .tag{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    padding: 8px 20px;
    height: 36px;
    background: #353954;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    color:  #DCDCE4;
}


.course-card .card-body__info {
  display: flex;
  align-items: center;
    justify-content: space-between;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.25;
  color: #DCDCE4;
  margin-top: auto;
  gap: 0 5px;
    padding: 5px 15px 10px 15px;
}
.course-card .course-card-body{
    font-family: 'Jost';
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #DCDCE4;
    padding: 0 15px;
    height: 140px;
    overflow: hidden;
}

.course-card .card-body__info span {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 3px;
}

.course-card .card-body__author {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.course-card .card-body__author-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.course-card .card-body__author-avatar {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.course-card .card-body__author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.course-card .card-body__btn {
  text-align: center;
}

.dashboard-cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 0 20px;
  margin-bottom: 20px;
}

.category-filter {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.category-filter select {
  width: 280px;
}


.page-control__btn {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #699BF7;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.profile-settings__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: #DCDCE4;
  margin-bottom: 40px;
}

.profile-settings__control {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.profile-settings__btn {
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 15px;
  line-height: 1.25;
  color: #DCDCE4;
  position: relative;
  cursor: pointer;
}

.profile-settings__btn.active:before {
  opacity: 1;
}

.profile-settings__btn:before {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: -5px;
  background: #699BF7;
  border-radius: 10px;
  opacity: 0;
}

.profile-settings__photo {
  margin-bottom: 40px;
}

.profile-settings__reg {
  max-width: 620px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.profile-settings .formgroup-50 {
  width: calc(50% - 10px);
}

.profile-settings .formgroup-100 {
  width: 100%;
}

.profile-settings .formgroup__label {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: #B5B6C4;
  margin-bottom: 4px;
}

.profile-settings .formgroup__input {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #DCDCE4;
  border: 1px solid #DCDCE4;
  border-radius: 4px;
  background-color: transparent;
  padding: 10px 15px;
  outline: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.profile-settings .formgroup__input::-webkit-input-placeholder {
  color: #B5B6C4;
}

.profile-settings .formgroup__input:-ms-input-placeholder {
  color: #B5B6C4;
}

.profile-settings .formgroup__input::-ms-input-placeholder {
  color: #B5B6C4;
}

.profile-settings .formgroup__input::placeholder {
  color: #B5B6C4;
}

.profile-settings .formgroup__input:focus {
  border-color: #699BF7;
}

.profile-settings .subscription {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  color: #DCDCE4;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 15px;
}

.settings-add__title {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #DCDCE4;
  margin-bottom: 10px;
}

.settings-add__input {
  width: 140px;
  height: 140px;
  border: 1px dashed #B5B6C4;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.settings-add__img {
  margin-bottom: 10px;
}

.settings-add__img img {
  display: block;
}

.settings-add__text {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  color: #B5B6C4;
}

.dashboard-lessons {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
}

.dashboard-lessons__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
}

.dashboard-lessons__sidebar {
  margin-left: auto;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 20px;
}

.lessons-grid {
  display: grid;
  grid-template-columns: 7.35fr 5fr;
  gap: 20px;
}

.lessons__head {
  display: grid;
  grid-template-columns: 7.35fr 5fr;
  gap: 20px;
  margin-bottom: 20px;
}

.lessons__line {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.lessons__line:not(:last-child) {
  margin-bottom: 10px;
}

.lessons__complexity {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}

.lessons__complexity.yellow {
  color: #F7D506;
}

.lessons-profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}

.lessons-profile__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.lessons-profile__name {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: #DCDCE4;
}

.lessons-profile__position {
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 12px;
  line-height: 1.25;
  color: #DCDCE4;
}

.lessons-list .lessons-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 30px;
  padding: 20px;
  background: #252A40;
  border-radius: 10px;
  margin-bottom: 20px;
    justify-content: flex-start;
}

.lessons-list .lessons-item.disabled {
  opacity: 0.5;
}

.lessons-list .lessons-item__img {
  width: 80px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.lessons-list .lessons-item__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #DCDCE4;
  margin-bottom: 10px;
}

.lessons-list .lessons-item__title.blue {
  color: #699BF7;
}

.lessons-list .lessons-item__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.45;
  color: #DCDCE4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.lessons-list .lessons-item__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  padding: 10px 0;
  height: 110px;
    justify-content: flex-end;
}
.lessons-item__discr{
    width: calc(100% - 200px);
}
.lessons-list .lessons-item__rating {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: auto;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3px;
  color: #DCDCE4;
}

.lessons-list .lessons-item__progress {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: auto;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  font-weight: 400;
  font-size: 8px;
  color: #DCDCE4;
  line-height: 1.3;
  gap: 5px;
}

.lessons-list .lessons-item__note {
  max-width: 466px;
  margin: 0 auto;
  padding: 30px 20px;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4;
  text-align: center;
  color: #DCDCE4;
}

.lessons-detailed .detailed-item {
    border: 2px solid #252A40;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.lessons-detailed .detailed-item__title {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  color: #DCDCE4;
}

.lessons-detailed .detailed-item__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #DCDCE4;
}

.lessons-detailed .about-course__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 20px;
}

.lessons-detailed .about-course__status {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: #3D922F;
}

.review-course__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 25px;
}

.review-course__control {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}

.review-course__control-btn {
  width: 24px;
  height: 24px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.review-course__control-btn:hover svg {
  fill: #FAB800;
}

.review-course__control-btn svg {
  width: 14px;
  height: 14px;
  fill: #699BF7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.review-course .review-slide__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

.review-course .review-slide__profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}

.review-course .review-slide__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.review-course .review-slide__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.review-course .review-slide__name {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.25;
  color: #DCDCE4;
}

.review-course .review-slide__rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.review-course .review-slide__rating img {
  display: block;
  margin-right: -4px;
}

.review-course .review-slide__date {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #DCDCE4;
}

.add-review__title {
  margin-bottom: 10px;
}

.add-review__textarea {
  background: #252736;
  border-radius: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #B5B6C4;
  padding: 10px;
  width: 100%;
  outline: none;
  border: none;
  margin-bottom: 20px;
}

.add-review__control {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.add-review__rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.add-review__rating img {
  display: block;
}

.add-review__submit {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #699BF7;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

/**/

.cur-lessons__title {
  margin-bottom: 20px;
}

.cur-lessons__item {
  margin-bottom: 40px;
}

.cur-lessons__box {
  background: #252A40;
  border-radius: 10px;
  padding: 20px;
}

.cur-lessons .max-w {
  max-width: 960px;
}

.cur-lessons .about-course__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cur-lessons .about-course__status {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: #3D922F;
}

.cur-lessons .about-course__title {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  color: #DCDCE4;
}

.cur-lessons .about-course__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #DCDCE4;
}

.cur-lessons .video {
  width: 100%;
}

.pic-block__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0 64px;
}

.pic-block__item:not(:last-child) {
  margin-bottom: 32px;
}

.pic-block__img {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 96px;
}

.pic-block__img img {
  width: 100%;
}

.pic-block__title {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 17.4545px;
  line-height: 1.05;
  text-transform: uppercase;
  color: #DCDCE4;
  margin-bottom: 8px;
}

.pic-block__text {
  font-family: 'Montserrat';
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
  color: #DCDCE4;
  max-width: 610px;
}

.charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1084px;
}

.charts__text {
  padding: 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  color: #DCDCE4;
}

.trainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}


.dashboard-tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard-tags__item {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #DCDCE4;
  padding: 5px 30px;
  background: #252A40;
  border-radius: 10px;
}

.main {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.main__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 20px;
}

.content {
  padding: 20px;
}

.content__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 50px;
}

.edit-control {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.edit-control__btn {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.2px;
  padding: 10px 20px;
  border: 1px solid transparent;
  background-color: transparent;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.edit-control__btn.active {
  background: #1F3661;
  border-color: #2D75D7;
}



.create-lesson {
  width: 870px;
}

.create-lesson__create {
  width: 870px;
  height: 512px;
  background: #33353B;
  border-radius: 10px;
  padding: 20px;
}

.create-lesson__create-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: #A5A5A5;
}

.create-lesson__control {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.create-lesson__control.mt24 {
  margin-top: -24px;
}

.create-lesson__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  padding: 0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.create-lesson__btn:nth-child(1) {
  margin-right: auto;
}

.create-lesson__settings {
  max-width: 685px;
}

.lesson-setting {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 34px;
}

.lesson-setting:not(:last-child) {
  margin-bottom: 30px;
}

.lesson-setting__color {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
  margin-left: 18px;
  margin-right: auto;
}

.lesson-setting__name {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  border: 1.5px solid #2B2B2B;
  border-radius: 5px;
  width: 210px;
  padding: 7px 18px;
  background-color: transparent;
  margin-left: 4px;
  margin-right: 24px;
  outline: none;
  display: block;
}

.lesson-setting__del {
  margin-left: 25px;
}

.color-block {
  width: 30px;
  height: 30px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 3.2549px;
}

.color-block.blue {
  background: #0030C3;
}

.color-block.red {
  background: -webkit-linear-gradient(bottom, #7E2222, #7E2222), #E8045C;
  background: linear-gradient(0deg, #7E2222, #7E2222), #E8045C;
}

.color-block.green {
  background: -webkit-linear-gradient(bottom, #79A65A, #79A65A), #E8045C;
  background: linear-gradient(0deg, #79A65A, #79A65A), #E8045C;
}

.color-block.orange {
  background: -webkit-linear-gradient(bottom, #FF560D, #FF560D), #E8045C;
  background: linear-gradient(0deg, #FF560D, #FF560D), #E8045C;
}

.line-control {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.line-control__name {
  font-size: 18px;
  font-weight: 500;
  color: #33BE63;
  width: 100%;
}

.line-control__btn {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  padding: 10px 10px 8px 10px;
  border-bottom: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  background: #1F3661;
  border-color: #2F80ED;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

@media screen and (max-width: 1850px) {
  .h2 {
    font-size: 18px;
  }

  .h3 {
    font-size: 18px;
  }

  .dashboard-btn {
    font-size: 12px;
    padding: 3px 25px;
    border-radius: 5px;
  }

  .sidebar--view {
    width: 240px;
  }

  .dashboard-search__button {
    width: 30px;
    height: 30px;
  }

  .dashboard-search__input {
    font-size: 10px;
    padding: 11px 16px 11px 36px;
  }

  .dashboard-head-profile {
    gap: 0 10px;
  }

  .dashboard-head-profile__name {
    font-size: 10px;
  }

  .dashboard-head-profile__avatar {
    width: 30px;
    height: 30px;
  }

  .dashboard-profile__title {
    font-size: 16px;
  }

  .dashboard-daily {
    width: 420px;
  }

  .dashboard-daily .dashboard-profile__title {
    display: none;
  }

  .dashboard-filters {
    width: 200px;
  }

  .leaderboard {
    width: 200px;
  }

  .leaderboard__one .leaderboard-top__inner {
    width: 70px;
    height: 86px;
  }

  .leaderboard__two .leaderboard-top__inner {
    width: 65px;
    height: 50px;
  }

  .leaderboard__three .leaderboard-top__inner {
    width: 65px;
    height: 50px;
  }

  .leaderboard-control {
    padding: 9px 15px;
    margin-bottom: 45px;
  }

  .leaderboard-control__btn {
    font-size: 10px;
  }

  .leaderboard-control__btn:before {
    height: 1px;
    bottom: -2px;
  }

  .leaderboard-top {
    margin-bottom: 5px;
  }

  .leaderboard-top__avatar {
    width: 46px;
    height: 46px;
  }

  .leaderboard-top__name {
    font-size: 8px;
    margin-bottom: 0;
  }

  .leaderboard-top__points {
    font-size: 10px;
  }

  .leaderboard-list__item {
    gap: 5px 10px;
  }

  .leaderboard-list__item:last-child {
    display: none;
  }

  .leaderboard-list__item:not(:last-child) {
    margin-bottom: 0;
  }

  .leaderboard-list__avatar {
    width: 30px;
    height: 30px;
  }

  .leaderboard-list__position {
    margin-left: 5px;
  }

  .leaderboard-list__name {
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .leaderboard-list__points {
    font-size: 10px;
  }

  .pocker-table__control {
    padding-top: 3px;
    padding-bottom: 3px;
  }

  .pocker-table__control .dashboard-profile__title {
    display: block;
  }

  .pocker-table .desk-none {
    display: block;
  }

  .pocker-table .pocker-setting-btn {
    width: 30px;
    height: 30px;
  }

  .pocker-table__timer img {
    width: 12px;
  }

  .pocker-table__timer {
    font-size: 10px;
    margin-bottom: 7px;
  }

  .pocker-table .table__item {
    width: 64px;
    height: 20px;
  }

  .pocker-table .table__img {
    width: 380px;
  }

  .pocker-table__situation {
    font-size: 10px;
    margin-bottom: 5px;
  }

  .pocker-table .table-btn {
    font-size: 12px;
    padding: 3px 20px;
    border-radius: 5px;
  }

  .profile-user {
    width: 200px;
  }

  .profile-user__top {
    padding: 7px 10px 30px;
  }

  .profile-user__avatar {
    width: 56px;
    height: 56px;
    border: 2px solid #3D922F;
    margin-bottom: 5px;
  }

  .profile-user__name {
    font-size: 10px;
  }

  .profile-user__info {
    margin: -20px 20px 10px;
  }

  .profile-user__info-title {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .profile-user__info-item img {
    width: 16px;
  }

  .profile-user__info-subtitle {
    font-size: 12px;
  }

  .profile-user__info-text {
    font-size: 8px;
  }

  .profile-user__detailed {
    margin-bottom: 10px;
  }

  .profile-user__detailed-title {
    font-size: 8px;
  }

  .profile-user__detailed-text {
    font-size: 12px;
  }

  .profile-user__detailed-graph {
    width: 24px;
  }

  .profile-user__main-graph {
    height: 50px;
  }

  .course-card .card-head {
    height: 130px;
    padding: 10px;
  }

  .course-card .card-head__title {
    font-size: 18px;
  }

  .course-card .card-head__l {
    font-size: 14px;
  }

  .course-card .card-head__bookmark {
    width: 16px;
    height: 16px;
  }

  .course-card .card-body {
    height: calc(100% - 130px);
    padding: 10px;
  }

  .course-card .card-body__top {
    font-size: 8px;
    margin-bottom: 5px;
  }

  .course-card .card-body__title {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .course-card .card-body__text {
    font-size: 12px;
    -webkit-line-clamp: 3;
  }

  .course-card .card-body__text--shot {
    -webkit-line-clamp: 2;
  }

  .course-card .card-body__info {
    font-size: 8px;
  }

  .course-card .card-body__info span img {
    width: 16px;
  }

  .course-card .card-body__author {
    gap: 5px;
  }

  .course-card .card-body__author-avatar {
    width: 16px;
    height: 16px;
  }

  .category-filter select {
    width: 200px;
  }

  .favorite-filter {
    margin-bottom: 20px;
  }

  .favorite-filter__btn {
    font-size: 10px;
  }

  .favorite-filter__btn:before {
    height: 1px;
    bottom: -3px;
  }

  .dashboard-lessons__sidebar {
    width: 200px;
  }

  .lessons-grid {
    gap: 10px;
  }

  .lessons__complexity {
    font-size: 14px;
  }

  .lessons-profile__avatar {
    width: 30px;
    height: 30px;
  }

  .lessons-profile__name {
    font-size: 12px;
  }

  .lessons-profile__position {
    font-size: 8px;
  }

  .lessons-list .lessons-item {
    gap: 20px;
    padding: 10px;
    margin-bottom: 10px;
  }

  .lessons-list .lessons-item__img {
    width: 80px;
  }

  .lessons-list .lessons-item__text {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }

  .lessons-list .lessons-item__info {
    height: 90px;
  }

  .lessons-list .lessons-item__note {
    font-size: 18px;
  }

  .lessons-detailed .detailed-item {
    margin-bottom: 10px;
  }

  .lessons-detailed .detailed-item__title {
    font-size: 18px;
  }

  .lessons-detailed .detailed-item__text {
    font-size: 14px;
  }

  .lessons-detailed .about-course__status {
    font-size: 14px;
  }

  .review-course .review-slide__rating img {
    width: 16px;
    margin-right: 0px;
  }

  .add-review__rating img {
    width: 16px;
  }

  .add-review__submit {
    font-size: 14px;
  }

  .cur-lessons__title {
    margin-bottom: 10px;
  }

  .cur-lessons__item {
    margin-bottom: 20px;
  }

  .cur-lessons .about-course__status {
    font-size: 14px;
  }

  .cur-lessons .about-course__title {
    font-size: 18px;
  }

  .cur-lessons .about-course__text {
    font-size: 14px;
  }

  .charts {
    margin-right: -280px;
  }

  .charts__text {
    font-size: 16px;
  }

  .test-block {
    min-height: 480px;
  }

  .test-block__title {
    font-size: 18px;
  }

  .dashboard-tags__item {
    font-size: 16px;
    padding: 5px 10px;
  }

  .content {
    padding: 30px 10px;
  }

  .content__row {
    gap: 25px;
  }

  .box {
    width: 412px;
  }

  .box__inner {
    height: 412px;
  }

  .create-lesson {
    width: 420px;
  }

  .create-lesson__create {
    width: 100%;
    height: 412px;
  }

  .lesson-setting {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .lesson-setting__name {
    margin-right: 4px;
  }

  .lesson-setting__slider {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    order: 1;
  }

  .lesson-setting__del {
    margin-left: 0;
  }

  .line-control {
    margin-bottom: 20px;
  }

  .line-control__btn {
    max-width: 115px;
  }
}

@media screen and (max-width: 1500px) {
  .dashboard-sidebar {
    width: 210px;
  }

  .dashboard-main--full {
    max-width: calc(100vw - 227px);
  }
}

@media screen and (max-width: 991px) {
  .mobile-menu-btn {
    display: block;
    margin-left: 20px;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu.show {
    right: 0;
  }
}



