

/* Расписание */
div + .xdget-lessonSchedule {
  margin-top: 20px;
}
.xdget-lessonSchedule {
  border-radius: 16px;
  border: none !important;
  background: var(--color-1);
  color: var(--color-0);
  overflow: hidden;
  position: relative;
  margin-top: 0px;
  margin-bottom: 15px;
}
.xdget-lessonSchedule h3 {
  font-size: 0;
  padding: 10px 20px 0;
  margin-bottom: 16px;
  margin-top: 15px;
}
.xdget-lessonSchedule h3:before {
  content: "График выхода уроков";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  margin-top: 20px;
}
.xdget-lessonSchedule .schedule-block {
  background: none;
  padding: 20px 20px 0;
}
.schedule-block .time {
    width: 40px !important;
	  float: unset !important;
    display: inline-block;
}

.xdget-lessonSchedule .day-label {
  font-weight: normal;
  color: var(--color-0);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 5px;
  text-transform: lowercase;
}
.schedule-block .day.today .day-label {
  color: var(--color-3-c);
}
.xdget-lessonSchedule .record {
  padding: 0!important;
}
.xdget-lessonSchedule .record .event {
  margin: 0;
  font-size: 0;
  display:inline-block;
  width: calc(100% - 50px);
  vertical-align: top;
}
.xdget-lessonSchedule .record .event a {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-3-c)!important;
  text-decoration: none!important;
  border-bottom: 1px solid var(--color-12);
  transition: border-color 0.2s;
}
.xdget-lessonSchedule .record .event a:hover {
  border-bottom: 1px solid var(--color-3-c);
}
@media (max-width: 1200px) {
  .xdget-lessonSchedule {
    background: none;
    border: none;
    border-top: 2px solid #413E3E;
    border-bottom: 2px solid #413E3E;
  }
  .xdget-lessonSchedule h3 {
    margin:0;
    padding: 15px 15px 16px 15px;
  }
  .xdget-lessonSchedule h3:before {
    font-size: 20px;
  }
  .xdget-lessonSchedule .schedule-block {
    padding: 15px 15px 0;
  }
}
@media (max-width:991px) {
  .xdget-lessonSchedule {
    margin-top: 0;
  }
  .xdget-lessonSchedule:not(.editing) .schedule-block {
    height: 0.1px;
    padding: 0 15px 0;
    opacity: 0;
    overflow:hidden;
    transition: padding 0.3s;
  }
  .xdget-lessonSchedule.opened:not(.editing) .schedule-block {
    padding: 15px 15px 0;
  }
  .xdget-lessonSchedule h3 {
    padding: 15px 30px 16px 15px;
    position: relative;
    cursor: pointer;
  }
  .xdget-lessonSchedule h3:after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    top: calc(50% + 3px);
    right: 15px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='15' viewBox='0 0 26 15' fill='none'%3E%3Cpath d='M2 2L11.7036 11.7036C12.4196 12.4196 13.5804 12.4196 14.2964 11.7036L24 2' stroke='%23292929' stroke-width='3.66667' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-position: center; 
    background-repeat: no-repeat; 
    transition: transform 0.3s;
  }
  .xdget-lessonSchedule.opened h3:after {
    transform: translateY(-50%) rotateX(-180deg);
  }
}
@media (min-width:992px) {
  .xdget-lessonSchedule .schedule-block {
    height: auto!important;
    opacity: 1!important;
  }
}
