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

.header-logo {
  max-width: 150px;
}

.header__inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: 20%;
}

.header__return, .header__countdown {
  width: 80%;
}

.header__login-header {
  margin-top: 0;
  margin-left: 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}

.chat__list {
  margin-top: 40px;
  background-color: #fff;
  border-radius: 5px;
}

.chat__item {
  display: flex;
  align-items: center;
  padding: 15px;
}

.chat__item:not(:last-child) {
  border-bottom: 1px solid #ececec;
}

.chat-elem {
  transition: all .2s;
  position: relative;
}

.chat-elem__link {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.chat-elem:hover {
  background-color: #fcfcfc;
}

.chat-elem__ava {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.chat-elem__date {
  margin-left: auto;
  font-size: 14px;
  color: #757575;
}

.chat-view {
  max-height: 500px;
  overflow-y: scroll;
}

.chat-view, .chat-view__form {
  background-color: #fff;
}

.chat-view__form {
  padding: 40px 40px 20px;
  border-top: 1px solid #ececec;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chat-view__textarea {
  width: 100%;
  padding: 15px;
  border-radius: 3px;
  border-color: #ececec;
  min-height: 150px;
  resize: none;
}

.chat-view__submit {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.chat-message {
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

.chat-message__name {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
  color: #4bc74c;
}

.chat-message__text {
  font-size: 16px;
  color: #2a2a2a;
}

.chat-message--convers {
  align-items: flex-end;
}

.chat-message--user {
  background-color: #fcfcfc;
}

.chat-message__date {
  font-size: 14px;
  color: #959595;
}

.button {
  background-color: #FACC48;
  color: #fff;
  font-weight: bold;
  border-radius: 100px;
  border: none;
  padding: 18px 60px 18px 60px;
  position: relative;
  outline: none;
  margin-top: 20px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.button:disabled {
  position: relative;
  background-color: #E1E1E1;
}
.button:disabled:hover {
  background-color: #E1E1E1;
}
.button:disabled::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  z-index: 2;
  background-color: #E1E1E1;
}
.button:hover {
  background-color: #d6a006;
}
.button--green {
  background-color: #37DB7A;
}
.button--green:hover {
  background-color: #1a924b;
}
.button--bordered {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.button--bordered:hover {
  background-color: #fff;
  color: #333;
}


.login-header .btn-logout {
  min-width: 18px;
}

.login-header .user-name {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  white-space: normal;
  line-height: 1.2;
}

.header__login, .header__return {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}

.change-affiliate-allowing {
  padding: 0 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}

.change-affiliate-allowing--true {
  color: #0e9e49;
}

.change-affiliate-allowing--false {
  color: #c30c0c;
}

.city-selection__select {
  margin-bottom: 20px;
}

.header .countdown-list {
  margin-top: 0;
  margin-bottom: 40px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  margin-right: 20px;
}

.header .countdown-list .countdown-remained-txt {
  /*white-space: nowrap;*/
  width: 190px;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.header .countdown-list {
  margin-bottom: 0;
}

.countdown-start-title {
  margin: 0;
  margin-right: 20px;
}

.countdown-list .course {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.countdown-list--mb {
  margin-bottom: 40px;
}

.purple-btn {
  width: 200px;
  background: #4bc74c;
  background: -webkit-linear-gradient(left, #4bc74c 0%, #118c1b 100%);
  background: -webkit-gradient(linear, left top, right top, from(#4bc74c), to(#118c1b));
  background: -o-linear-gradient(left, #4bc74c 0%, #118c1b 100%);
  background: linear-gradient(to right, #4bc74c 0%, #118c1b 100%);
  border: none;
  padding: 10px;
  color: #fff;
  border-radius: 10px;
  box-shadow: none;
  transition: all .2s;
}

.return-btn {
  width: 200px;
  color: #fff;
  border-radius: 10px;
  border: 2px solid #fff;
  box-shadow: none;
  transition: all .2s;
  padding: 4px 5px;
  transition: all .2s;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.return-btn--heading {
  margin-left: 20px;
}

.return-btn:focus, .return-btn:visited, .return-btn:active {
  color: #fff;
  text-decoration: none;
}

.return-btn:hover {
  background-color: #fff;
  color: #333;
  text-decoration: none;
}

.purple-btn:hover {
  /*transform: translateY(-10px);*/
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.purple-btn--countdown:not(:last-child) {
  margin-right: 20px;
}

.purple-btn--avatar {
  width: 100%;
  margin-bottom: 10px;
}

.purple-btn--change-pw {
  width: 100%;
}

.purple-btn--login {
  margin-bottom: 20px;
}

.purple-btn--signup {
  display: inline-block;
  width: auto;
}

.purple-btn--signup:hover {
  transform: none;
}

.purple-btn--lesson-continue {
  text-align: center;
  font-weight: normal;
}

.purple-btn--lesson-continue:hover {
  text-decoration: none;
  color: #fff;
}

.purple-btn--avatar:hover, .purple-btn--students-table:hover {
  transform: none;
}

.noty_message {
  border: none;
  color: #fff;
  background-color: #37DB7A;
}

.noty_topCenter_layout_container li {
  border: none !important;
  background: transparent !important;
}

.upload-kit .upload-kit-item .remove {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  margin-left: 0;
  background-color: rgba(0,0,0,.5);
}

.upload-kit .files {
  width: 100%;
  display: flex;
  justify-content: center;
}

.upload-kit .files li {
  margin: 0;
}

.upload-kit .upload-kit-item .remove::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.upload-kit .upload-kit-item.image > img {
  display: block;
  max-width: 100%;
  min-width: 0;
}

.profile-info-box {
  background-color: transparent;
}

.prof-info-list {
  padding-bottom: 0;
}

.prof-info-list .tit {
  font-weight: bold;
}

.entry-prof-info .btn-link {
  color: #0e9e49;
}

.sidebar-menu__list {
  padding: 20px;
  list-style-type: none;
}

.sidebar-menu__list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
  padding: 5px 10px;
  text-decoration: none;
  /* background-color: #4bc74c; */
  transition: color .2s;
  border-radius: 5px;
}

.sidebar-menu__list li a:hover {
  color: #713fff;
}

.sidebar-menu__list li:not(:last-child) {
  margin-bottom: 5px;
}

.students-table .table > thead > tr > th {
  border-bottom: 0;
}

.students-table .kv-panel-after {
  text-align: center;
}

.sidebar-menu {
  margin-bottom: 40px;
}

.sidebar-menu__title {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 10px;
}

.log_data .title {
  background: #4bc74c;
  background: -webkit-linear-gradient(left, #4bc74c 0%, #118c1b 100%);
  background: -webkit-gradient(linear, left top, right top, from(#4bc74c), to(#118c1b));
  background: -o-linear-gradient(left, #4bc74c 0%, #118c1b 100%);
  background: linear-gradient(to right, #4bc74c 0%, #118c1b 100%);
}

.lesson__status-block {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.lesson__continue-lesson {
  font-size: 12px;
  margin-right: 10px;
  margin-top: 0;
}

.lesson__continue-lesson.continue-study-but {
  height: auto;
}

.lesson__progress {
  position: relative;
  height: 100%;
}

.lesson__status-block .lesson__progress {
  padding: 0 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lesson__previos-not-complete {
  font-size: 14px;
  padding-right: 10px;
  text-align: center;
  line-height: 1.6;
}

.lesson__progress--grey {
  background-color: #aaa;
}

.lesson__progress--yellow {
  background: #eab800;
}

.lesson__progress--green {
  background-color: #37DB7A;
}

.lesson__not-begin {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  color: #333;
  line-height: 1.6;
}

#signup-form .form-group .icon {
  z-index: 9;
}

#signup-form .form-group .icon {
  z-index: 9;
}

.log_data {
  margin-top: 20px;
  height: 414px;
}

#signup-form {
  padding-top: 40px !important;
}

#signup-form #just-registred-wrap {
  margin-top: 10px;
}

#login-form .form-group:not(.has-error), #signup-form .form-group:not(.has-error) {
  margin-bottom: 20px;
}

#login-form .form-control, #signup-form .form-control {
  margin-bottom: 0;
}

#login-form .datae, #signup-form .date {
  margin-bottom: 0;
}

#login-form .icon, #signup-form .icon {
  top: 25px;
}

#login-form .help-block, #signup-form .help-block {
  position: static;
  font-size: 12px;
  line-height: 1.2;
}

#login-form .has-error .input-group-addon, #signup-form .has-error .input-group-addon {
  background-color: transparent;
}

.header .countdown-list {
  color: #333;
  padding: 8px 20px;
  background-color: #fff;
  font-size: 13px;
  box-shadow: 0px 2px 4px rgba(0,0,0,.25);
  text-transform: uppercase;
}

.header .balance-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}

.header .balance-list > *:not(:last-child) {
  margin-right: 20px;
}

.header .balance-list__item {
  max-width: 200px;
}

.header .balance-list__title {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.header .balance-list__title svg {
  width: 20px;
  height: auto;
  max-height: 18px;
  fill: #fff;
  margin-right: 5px;
}

.header .balance-list__content {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.header .balance-list .balance {
  color: #fff;
  font-weight: bold;
  font-size: 15px;
}

.header .balance-centered {
  width: 100%;
}

.header .balance-centered > * {
  justify-content: flex-end;
}

.prof-left-info__elem {
  padding-top: 0;
}

.prof-left-info__elem--avatar {
  margin-bottom: 30px;
}

.purple-btn--no-translate:hover {
  transform: translateY(0);
}

.change-pass-prof {
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.change-pass-prof__btn {
  border: none;
  background-color: transparent;
  outline: none;
  text-decoration: underline;
  color: #37DB7A;
  font-weight: bold;
  transition: color .2s;
}

.change-pass-prof__btn:hover {
  text-decoration: none;
  color: #4bc74c;
}

.change-pass-prof__form {
  display: none;
  padding: 0 10px;
}

.change-pass-prof__item:not(:last-child) {
  margin-bottom: 10px;
}

.sidebar-nav__item {
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 0 20px;
 display: -webkit-flex;
 display: -moz-flex;
 display: -ms-flex;
 display: -o-flex;
 display: flex;
  align-items: center;
}

.sidebar-nav__item a {
  color: #000;
}

.sidebar-nav__item a {
  text-decoration: none;
  transition: color .2s;
}

.sidebar-nav__item a:active, .sidebar-nav__item a:focus, .sidebar-nav__item a:visited {
  color: #000;
  text-decoration: none;
}

.sidebar-nav__item:hover a {
  color: #4bc74c;
}

.sidebar-nav__item:hover svg {
  fill: #4bc74c;
}

.sidebar-nav__item svg {
  width: 20px;
  margin-right: 10px;
  height: auto;
  display: inline-block;
  fill: #37DB7A;
  transition: fill .2s;
}

.prof-left-info__link {
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 0 20px;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flex;
  display: -o-inline-flex;
  display: inline-flex;
  align-items: center;
}

.prof-left-info__link a {
  color: #000;
}

.prof-left-info__link a {
  text-decoration: none;
  transition: color .2s;
}

.prof-left-info__link a:active, .prof-left-info__link a:focus, .prof-left-info__link a:visited {
  color: #000;
  text-decoration: none;
}

.prof-left-info__link:hover a {
  color: #4bc74c;
}

.prof-left-info__link:hover svg {
  fill: #4bc74c;
}

.prof-left-info__link svg {
  width: 20px;
  margin-right: 10px;
  height: auto;
  display: inline-block;
  fill: #37DB7A;
  transition: fill .2s;
}

.current-lessons__item {
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0px 1px 4px rgba(0,0,0,.15);
  transition: all .2s;
}

.current-lessons__item:hover {
  transform: translateY(-3px);
  box-shadow: 0px 2px 8px rgba(0,0,0,.25);
}

.current-lessons__item:not(:last-child) {
  margin-bottom: 20px;
}

.current-lesson__title {
  width: 100%;
  color: #666;
  font-weight: bold;
  font-size: 16px;
  padding: 8px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ececec;
  text-align: left;
}

.current-lesson__lesson-title {
  font-size: 16px;
  font-weight: bold;
}

.current-lesson__lesson-step {
  font-weight: bold;
  color: #4bc74c;
}

.current-lesson__student-name {
  font-size: 16px;
}

.current-lesson__student-balance {
  font-weight: normal;
}

.current-lesson__student-balance-summ {
  font-weight: bold;
  color: #37DB7A;
}

.current-lesson__student-balance-summ--red {
  color: #f00;
}

.current-lesson__student-balance-summ--green {
  color: #37DB7A;
}

.current-lesson__student-balance-summ--yellow {
  color: #f0d122;
}

.current-lesson__student-balance--reminder {
  color: #f00;
  display: block;
  font-size: 12px;
}

.current-lesson__user {
  text-align: center;
  font-weight: bold;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.current-lesson__ava {
  width: 80px;
  height: 80px;
  background-color: #37DB7A;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 32px;
}

.current-lesson__time-item span {
  font-weight: bold;
}

.current-lesson__ava span {
  color: #fff;
}

.current-lesson__check-request {
  margin: 7px 0;
}

.current-lesson__check-request strong {
  font-weight: bold;
}

.current-lesson__check-request span {
  font-weight: bold;
  text-transform: uppercase;
  color: #f0d122;
}

.current-lesson__check-request span {
 color: #f0d122; 
}

.current-lesson__respond {
  margin-top: 10px;
}

.current-lesson-modal__title {
  text-transform: uppercase;
  font-size: 32px;
  text-align: center;
  margin: 40px 0;
}

.current-lesson-modal__body .fl-left {
  float: left;
  max-width: 250px;
  padding-right: 20px;
  padding-bottom: 20px;
}

.current-lesson-modal__body .fl-right {
  float: right;
  max-width: 250px;
  padding-left: 20px;
  padding-bottom: 20px;
}

.current-lesson-modal p, .current-lesson-modal ul, .current-lesson-modal ol {
  margin-bottom: 20px;
}

.current-lesson-modal__footer {
  margin-bottom: 30px;
}

.current-lesson__status-elem span {
  font-weight: bold;
}

.current-lesson__status-elem--green span {
  color: #37DB7A;
}

.current-lesson__status-elem--red span {
  color: #f00;
}

.current-lesson__status-elem--yellow span {
  color: #f0d122;
}

.teachers-archive {
   padding: 0 40px;
}
 .teachers-archive__filter {
   display: flex;
   align-items: center;
   margin-bottom: 50px;
}
 .teachers-archive__filter-title {
   font-size: 18px;
   margin-right: 15px;
}
 .teachers-archive__group {
   margin-right: 20px;
}
 .teachers-archive__title {
   font-size: 36px;
   margin-top: 0;
   margin-bottom: 20px;
}
 .teachers-archive__submit {
   margin-top: 0;
   padding: 11px 60px 11px 60px;
}
 .teachers-archive__list {
   display: flex;
   align-items: flex-start;
   flex-flow: row wrap;
   margin: 0 -20px;
}
 .teachers-archive__item {
   width: 50%;
   margin-bottom: 30px;
   padding: 0 25px;
}
 .teachers-archive .teacher-card {
   box-shadow: 1px 1px 6px rgba(0, 0, 0, .15);
}
 .teachers-archive .teacher-card:hover {
   box-shadow: 1px 2px 12px rgba(0, 0, 0, .25);
}
 @media only screen and (max-width: 960px) {
   .teachers-archive__title {
     margin-top: 130px;
  }
   .teachers-archive__item {
     width: 50%;
  }
   .teachers-archive__filter {
     justify-content: space-between;
     flex-flow: row wrap;
  }
   .teachers-archive__filter-title {
     width: 100%;
     margin-right: 0;
     margin-bottom: 20px;
  }
   .teachers-archive__select {
     width: 100%;
  }
   .teachers-archive__group {
     width: 49%;
     margin-right: 0;
     margin-bottom: 20px;
  }
   .teachers-archive__submit {
     width: 49%;
     margin-bottom: 20px;
  }
}
 @media only screen and (max-width: 960px) {
   .teachers-archive__item {
     width: 100%;
  }
}
 @media only screen and (max-width: 480px) {
   .teachers-archive__title {
     font-size: 24px;
  }
   .teachers-archive__group, .teachers-archive__submit {
     width: 100%;
  }
}

@media only screen and (max-width: 1024px) {
  .teachers-archive__filter {
    flex-flow: row wrap;
    justify-content: space-around;
    margin-bottom: 30px;
  }
  .teachers-archive__group, .teachers-archive__filter-title {
    margin-bottom: 20px;
  }
}

 .teacher-card {
   background-color: #fff;
   padding: 20px;
   border-radius: 15px;
   transition: all 0.2s;
}
 .teacher-card__thumb {
   width: 90px;
   height: 90px;
   border-radius: 50%;
   margin: 0 auto;
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
}
 .teacher-card__name {
   margin-top: 20px;
   margin-bottom: 8px;
   text-align: center;
}
 .teacher-card__exp {
   text-align: center;
   font-size: 14px;
   color: #959595;
   margin-bottom: 30px;
}
 .teacher-card__tags {
   margin-bottom: 30px;
   display: flex;
   align-items: center;
   flex-flow: row wrap;
}
 .teacher-card__tag {
   font-size: 14px;
   padding: 3px 10px;
   border-radius: 20px;
   background-color: #facc48;
   transition: all 0.2s;
   margin-bottom: 10px;
}
 .teacher-card__tag:not(:last-child) {
   margin-right: 5px;
}
 .teacher-card__tag:hover {
   background-color: #fce192;
   cursor: default;
}
 .teacher-card__desc {
   font-size: 14px;
   color: #959595;
   margin-bottom: 30px;
}
 .teacher-card__first-lesson {
   margin-top: 0;
   padding: 7px 35px 7px 25px;
}
 .teacher-card__btn {
   text-align: center;
}
 .teacher-card:hover {
   transform: translateY(-5px);
}
 @media only screen and (max-width: 480px) {
   .teacher-card__name {
     text-align: center;
  }
}

.user-teacher-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 3px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  transition: all 0.2s;
}
.user-teacher-card:not(:last-child) {
  margin-bottom: 20px;
}
.user-teacher-card__left {
  width: 40%;
}
.user-teacher-card__right {
  width: 60%;
}
.user-teacher-card__thumb {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.user-teacher-card__name {
  margin-top: 20px;
  margin-bottom: 8px;
  text-align: center;
}
.user-teacher-card__exp {
  text-align: center;
  font-size: 14px;
  color: #959595;
  margin-bottom: 0;
}
.user-teacher-card__tags {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  flex-flow: row wrap;
}
.user-teacher-card__tag {
  font-size: 14px;
  padding: 3px 10px;
  border-radius: 20px;
  background-color: #FACC48;
  transition: all 0.2s;
  margin-bottom: 10px;
}
.user-teacher-card__tag:not(:last-child) {
  margin-right: 5px;
}
.user-teacher-card__tag:hover {
  background-color: #fce192;
  cursor: default;
}
.user-teacher-card__desc {
  font-size: 14px;
  color: #959595;
  margin-bottom: 0;
}
.user-teacher-card__first-lesson {
  margin-top: 0;
  padding: 7px 35px 7px 25px;
}
.user-teacher-card__btn {
  margin-top: 0;
  text-align: center;
}
.user-teacher-card__start {
  display: inline-block;
  color: #fff;
  text-decoration: none;
}
.user-teacher-card__start:active, .user-teacher-card__start:focus, .user-teacher-card__start:visited, .user-teacher-card__start:hover {
  color: #fff;
  text-decoration: none;
}
.user-teacher-card:hover {
  transform: translateY(-5px);
}

.homework-block {
  padding: 25px;
  background-color: #fff;
}

.homework-block__header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 40px;
}

.homework-block__desc {
  max-width: 50%;
}

.homework-block__desc h2 {
  color: #2a2a2a;
  margin-top: 0;
  margin-bottom: 15px;
}

.homework-block__desc p {
  font-size: 14px;
}

.homework-block__title {
  text-align: center;
  font-size: 36px;
}

.homework-block__textarea {
  width: 100%;
  min-height: 500px;
  border-radius: 5px;
  background-color: #fcfcfc;
  border: none;
  padding: 25px;
  resize: none;
}

.homework-textarea {
  width: 100%;
  min-height: 500px;
  resize: none;
}

.schedule-block__table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

.schedule-block__table thead td, .schedule-block__table tbody td {
  padding: 10px;
  border: 1px solid #ececec;
}

.schedule-block__table tr:nth-child(odd) {
  background-color: #fcfcfc;
}

.schedule-block__table thead tr:nth-child(odd) {
  background-color: transparent;
}

.schedule-block__table thead td {
  font-weight: bold;
}

.schedule-block__table tbody {
  background-color: #fff;
}

@media only screen and (max-width: 480px) {
  .user-teacher-card__name {
    text-align: center;
  }
}

.user-teacher-card__schedule {
  margin-top: 30px;
}

.user-teacher-card__schedule table {
  width: 100%;
  border-collapse: collapse;
}

.user-teacher-card__schedule table tr {
  border: 1px solid #e5e5e5;
}

.user-teacher-card__schedule table td, .user-teacher-card__schedule table th {
  padding: 5px 10px;
}

.user-teacher-card__schedule-title {
  font-size: 18px;
  color: #959595;
  margin-bottom: 10px;
}
 

@media only screen and (max-width: 960px) {
  .current-lesson__title {
    margin-top: 20px;
    text-align: center;
  }

  .current-lesson__lesson, .current-lesson__elem {
    text-align: center;
  }
}

@media only screen and (max-width: 1100px) {
  .header {
    padding: 20px 0;
    height: auto;
  }

  .countdown-list {
    margin-left: 40px;
  }


/*  .header__return {
    padding-left: 40px;
    margin-top: 20px;
    flex-flow: row wrap;
  }

  .countdown-list {
    order: 1;
    width: 50%;
    margin-right: 0 !important;
  }

  .login-header {
    order: 1;
    width: 50%;
    margin-left: 0;
    justify-content: flex-end;
  }

  .balance-list {
    order: 2;
    flex-direction: row;
    flex-flow: row wrap;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    }*/

    .header .balance-list {
      width: auto;
    }

    .balance-list__item {
      width: 50%;
      margin-right: 0;
    }

    .balance-list__item:nth-child(2), .balance-list__item:nth-child(3) {
      display: none;
    }
  }
