:root {
  --orange: #e36a21;
  --orange-strong: #ff7b2f;
  --orange-soft: #ffb07b;
  --orange-pale: #3e2416;
  --text: #f3f3f3;
  --text-soft: #c7c7c7;
  --muted: #8b9098;
  --line: #2a2f35;
  --line-strong: #3a4047;
  --page: #090b0e;
  --page-2: #111418;
  --panel: #111419;
  --panel-2: #171b21;
  --panel-3: #1b2027;
  --header-bg: #0b0d10;
  --chip: #22170f;
  --shadow: 0 14px 30px rgba(0, 0, 0, .28);
  --radius: 16px;
  --font: 'Mulish', Arial, sans-serif;
}

* {
  box-sizing: border-box
}

[hidden] {
  display: none !important
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(227, 106, 33, .20), transparent 24%),
    linear-gradient(180deg, #0a0c0f 0%, #0f1217 34%, #090b0e 100%);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px
}

a {
  color: inherit
}

button,
input,
select {
  font: inherit
}

button {
  cursor: pointer
}

.container {
  width: min(1440px, calc(100% - 24px));
  margin: 0 auto
}

.site-header {
  background:
    radial-gradient(circle at 8% 0%, rgba(227, 106, 33, .28), transparent 24%),
    linear-gradient(90deg, #111213 0%, #252a2f 38%, #38424b 74%, #4a565f 100%);
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(227, 106, 33, .5);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22)
}

.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px 30px;
  align-items: center;
  padding: 18px 0
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  grid-row: 1 / span 2;
  min-width: 0
}

.brand-logo {
  display: block;
  height: 60px;
  width: auto;
  max-width: min(400px, 52vw)
}

.brand-mark {
  display: block;
  height: 62px;
  width: auto;
  filter: brightness(1.04)
}

.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  text-decoration: none;
  color: #fff
}

.contact-icon {
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  color: var(--orange)
}

.contact-icon svg {
  width: 30px;
  height: 30px
}

.contact-label {
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #9ea4ab;
  font-weight: 700
}

.contact-main {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
  white-space: nowrap
}

.contact-phone {
  justify-self: end;
  text-align: left
}

.header-links {
  grid-column: 2 / 4;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px 36px;
  flex-wrap: wrap;
  padding-top: 2px
}

.header-links a {
  text-decoration: none;
  font-weight: 800;
  color: #f0f0f0;
  transition: color .15s ease, opacity .15s ease
}

.header-links a:hover {
  color: var(--orange)
}

.timetable {
  padding: 22px 0 10px
}

.banner-section {
  margin-bottom: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow)
}

.banner-carousel {
  position: relative;
  height: clamp(140px, 18vw, 280px);
  background: #111;
  overflow: hidden
}

.banner-track {
  display: flex;
  height: 100%;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1)
}

.banner-slide {
  flex: 0 0 100%;
  height: 100%;
  display: block;
  text-decoration: none
}

.banner-slide.no-link {
  cursor: default
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, .5);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .15s ease
}

.banner-arrow:hover {
  background: rgba(0, 0, 0, .75)
}

.banner-prev {
  left: 12px
}

.banner-next {
  right: 12px
}

.banner-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2
}

.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: background .15s ease, transform .15s ease
}

.banner-dot.active {
  background: #fff;
  transform: scale(1.3)
}

.nav-timetable {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 20px
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 16px 18px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  color: #d5d7da;
  background: linear-gradient(180deg, rgba(255, 255, 255, .03) 0%, rgba(255, 255, 255, .015) 100%);
  border-right: 1px solid rgba(255, 255, 255, .05);
  transition: all .18s ease
}

.nav-link:last-child {
  border-right: 0
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  background: transparent;
  border-radius: 999px
}

.nav-link:hover {
  background: rgba(227, 106, 33, .08);
  color: #fff
}

.nav-link:hover::after,
.nav-link.active::after {
  background: var(--orange)
}

.nav-link.active {
  color: #fff;
  background: linear-gradient(180deg, rgba(227, 106, 33, .12) 0%, rgba(255, 255, 255, .02) 100%)
}

.filters {
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  margin-bottom: 22px;
  overflow: hidden
}

.filters-intro {
  padding: 14px 22px 0;
  color: #8d949d;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
  font-weight: 700
}

.btn-filter {
  width: 100%;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  text-align: left;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  display: flex;
  align-items: center;
  gap: 8px
}

.btn-filter span {
  display: inline-block;
  width: 14px;
  height: 14px;
  position: relative;
  flex-shrink: 0
}

.btn-filter span::before,
.btn-filter span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--orange);
  transform: translateY(-50%);
  border-radius: 1px
}

.btn-filter span::after {
  transform: translateY(-50%) rotate(90deg)
}

.btn-filter.open span::after {
  display: none
}

.collapse-filters {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, .05);
  background: linear-gradient(180deg, rgba(255, 255, 255, .02) 0%, rgba(255, 255, 255, .01) 100%);
  padding: 20px 22px 22px
}

.collapse-filters.open {
  display: block
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.custom-select,
.search-input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  background: #12161b;
  color: #f5f5f5;
  padding: 0 15px;
  outline: 0;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease
}

.custom-select:hover,
.search-input:hover {
  border-color: rgba(255, 255, 255, .18)
}

.custom-select:focus,
.search-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(227, 106, 33, .12)
}

.search-input::placeholder {
  color: #7f8690
}

.status-line {
  display: none;
  margin: -6px 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  background: rgba(255, 255, 255, .03);
  color: #c6cad0
}

.status-line.visible {
  display: block
}

.status-line.error {
  border-color: #704646;
  background: #271818;
  color: #ffb7b7
}

.timetable-slider {
  padding-bottom: 10px
}

.slider-top {
  display: grid;
  grid-template-columns: 170px 1fr 170px;
  align-items: center;
  margin-bottom: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
  box-shadow: var(--shadow)
}

.today-link,
.btn-print {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .03);
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 700;
  transition: all .15s ease
}

.today-link:hover,
.btn-print:hover {
  color: #fff;
  border-color: rgba(227, 106, 33, .5);
  background: rgba(227, 106, 33, .12)
}

.date-slider-wrap {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  text-align: center
}

.date-slider {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  color: var(--orange);
  font-weight: 800;
  text-transform: capitalize
}

.week-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  background: rgba(255, 255, 255, .03);
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
  transition: all .15s ease
}

.week-arrow:hover {
  background: rgba(227, 106, 33, .12);
  border-color: rgba(227, 106, 33, .4)
}

.desktop-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
  box-shadow: var(--shadow)
}

.desktop-table {
  display: table;
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  table-layout: fixed
}

.days-row {
  display: table-row
}

.day-header,
.day-cell {
  display: table-cell;
  width: 14.285%;
  vertical-align: top
}

.day-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .025) 100%);
  border-right: 1px solid rgba(255, 255, 255, .05);
  position: sticky;
  top: 0;
  z-index: 3
}

.day-header:last-child {
  border-right: 0
}

.title-col {
  margin: 0;
  padding: 18px 8px 16px;
  text-align: center;
  font-weight: 800;
  line-height: 1.25;
  border-bottom: 3px solid transparent;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .03em;
  color: #f1f1f1
}

.title-col span {
  display: block;
  color: #a4abb4;
  font-weight: 500;
  margin-top: 5px;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0
}

.title-col.active {
  border-bottom-color: var(--orange);
  color: var(--orange)
}

.day-cell {
  padding: 8px 6px 10px;
  background: rgba(255, 255, 255, .015);
  border-right: 1px solid rgba(255, 255, 255, .04);
  border-top: 1px solid rgba(255, 255, 255, .04);
  min-height: 76px
}

.day-cell:last-child {
  border-right: 0
}

.day-cell.empty {
  padding: 28px 10px;
  text-align: center;
  color: #7c838d;
  background: rgba(255, 255, 255, .02)
}

.wrap-block-timetable {
  cursor: pointer
}

.wrap-block-desktop-timetable {
  position: relative;
  padding-left: 3px
}

.wrap-block-desktop-timetable::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 3px;
  background: rgba(0, 0, 0, .2);
  border-radius: 999px
}

.block-timetable {
  position: relative;
  min-height: 58px;
  padding: 8px 10px 8px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 12px;
  background: var(--lesson-color, #e8e8e8);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .2);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
  overflow: hidden
}

.wrap-block-timetable:hover .block-timetable {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .28);
  border-color: rgba(227, 106, 33, .35)
}

.color-chip {
  display: none
}

.duration-tt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 6px;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .12);
  color: rgba(0, 0, 0, .7);
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em
}

.tt-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
  min-height: 18px;
  padding-right: 12px
}

.time-tt {
  margin: 0;
  color: rgba(0, 0, 0, .85);
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .01em;
  white-space: nowrap
}

.place-tt {
  margin: 0;
  color: rgba(0, 0, 0, .5);
  text-align: right;
  font-size: 9px;
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.name-tt {
  margin: 6px 0 4px;
  color: rgba(0, 0, 0, .85);
  font-size: 12px;
  line-height: 1.12;
  font-weight: 800;
  min-height: 14px;
  overflow-wrap: anywhere
}

.coach-tt {
  margin: 0;
  color: rgba(0, 0, 0, .6);
  font-size: 10px;
  line-height: 1.15;
  overflow-wrap: anywhere
}

.paid-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  margin-left: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .15);
  color: rgba(0, 0, 0, .75);
  font-size: 11px;
  font-weight: 800;
  vertical-align: middle
}

.timetable-mobile {
  display: none
}

.mobile-week-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
  box-shadow: var(--shadow)
}

.mobile-date {
  grid-column: 1/-1;
  color: var(--orange);
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  text-transform: capitalize
}

.mobile-tabs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 18px
}

.mobile-tab {
  border: 0;
  background: transparent;
  color: #d4d8dd;
  padding: 12px 0 10px;
  text-transform: lowercase;
  font-weight: 800;
  border-bottom: 3px solid transparent
}

.mobile-tab+.mobile-tab {
  border-left: 1px solid rgba(255, 255, 255, .05)
}

.mobile-tab span {
  display: block;
  color: #959ca5;
  margin-top: 4px;
  font-weight: 500
}

.mobile-tab.active {
  color: #fff;
  border-bottom-color: var(--orange);
  background: rgba(227, 106, 33, .08)
}

.times-of-day {
  margin: 22px 0 12px;
  color: var(--orange);
  font-size: 21px;
  font-weight: 800
}

.mobile-lesson {
  margin-bottom: 12px
}

.mobile-block {
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-left: 4px solid rgba(0, 0, 0, .2);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .22)
}

.mobile-layout {
  display: flex;
  gap: 36px;
  align-items: center
}

.mobile-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 30%;
  flex-shrink: 0;
  overflow: hidden
}

.mobile-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px
}

.mobile-block .name-tt {
  margin: 0;
  min-height: 0;
  font-size: 15px
}

.mobile-block .coach-tt {
  margin: 0
}

.mobile-block .time-tt {
  font-size: 20px
}

.mobile-block .place-tt {
  text-align: left;
  max-width: none;
  flex: initial;
  font-size: 10px;
  white-space: normal;
  word-break: break-word
}

.duration-mobile {
  margin: 0;
  font-size: 11px;
  color: rgba(0, 0, 0, .6);
  font-weight: 700
}

.information-lessons {
  margin: 34px 0 30px;
  padding: 24px 24px 10px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
  box-shadow: var(--shadow)
}

.information-lessons h2 {
  margin: 0 0 14px;
  font-size: 28px;
  color: #fff
}

.information-lessons p {
  margin: 8px 0 16px;
  line-height: 1.75;
  color: #d1d5da
}

.legend-color {
  display: inline-block;
  padding: 4px 8px;
  margin: 2px 3px;
  border-radius: 999px;
  color: #000;
  border: 1px solid rgba(0, 0, 0, .15)
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, .66);
  z-index: 1000
}

.modal-backdrop.open {
  display: flex
}

.modal-content {
  width: min(720px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: #111419;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .38)
}

.modal-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.modal-title {
  margin: 0;
  color: var(--orange);
  font-size: 26px;
  font-weight: 800
}

.modal-close {
  border: 0;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  color: #aaa
}

.modal-body {
  padding: 22px 24px 28px
}

.modal-time {
  margin: 0 0 10px;
  font-size: 34px;
  font-weight: 800;
  color: #fff
}

.modal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  margin: 20px 0
}

.modal-img {
  width: 100%;
  aspect-ratio: 1/1;
  background: #1c2128;
  display: grid;
  place-items: center;
  color: #8d949d;
  object-fit: cover;
  border-radius: 14px
}

.modal-info p {
  margin: 0 0 14px;
  font-size: 17px;
  color: #d0d5db
}

.modal-coach-name {
  font-size: 30px !important;
  line-height: 1.2;
  margin-bottom: 20px !important;
  color: #fff !important
}

.modal-place:before {
  content: '⌖ ';
  font-weight: 700
}

.modal-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  margin-top: 18px
}

.modal-tab {
  border: 0;
  background: transparent;
  color: #d0d5db;
  padding: 12px 18px;
  border-bottom: 3px solid transparent;
  font-weight: 800
}

.modal-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange)
}

.modal-text {
  padding: 16px 0 0;
  line-height: 1.62;
  color: #c7ccd2
}

.footer {
  border-top: 1px solid rgba(227, 106, 33, .28);
  padding: 14px 0 30px;
  margin-top: 20px;
  color: #aab0b8
}

.footer a {
  display: inline-block;
  padding-right: 34px;
  margin-bottom: 8px;
  color: #eceff2;
  text-decoration: none;
  font-weight: 700
}

.footer a:hover {
  color: var(--orange)
}

@media(max-width:1200px) {
  .contact-main {
    white-space: normal
  }

  .header-main {
    grid-template-columns: auto 1fr
  }

  .contact-phone {
    justify-self: start
  }

  .header-links {
    grid-column: 1 / -1
  }
}

@media(max-width:991px) {
  .container {
    width: min(1440px, calc(100% - 18px))
  }

  .banner-carousel {
    height: calc((100vw - 18px) / 5.14)
  }

  .header-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 10px 0 0
  }

  .brand-wrap {
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px
  }

  .brand-logo {
    height: 32px;
    width: auto;
    max-width: 50vw
  }

  .brand-mark {
    height: 28px
  }

  .contact-address {
    display: none
  }

  .contact-label {
    display: none
  }

  .contact-main {
    font-size: 13px;
    white-space: nowrap
  }

  .contact-icon svg {
    width: 22px;
    height: 22px
  }

  .contact-phone {
    align-self: center
  }

  .header-links {
    flex-basis: calc(100% + 18px);
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0;
    margin: 12px -9px 0;
    background: var(--orange);
    border-top: 1px solid rgba(255, 255, 255, .12)
  }

  .header-links a {
    flex: 1;
    text-align: center;
    padding: 13px 6px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-right: 1px solid rgba(255, 255, 255, .2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
  }

  .header-links a:last-child {
    border-right: none
  }

  .header-links a:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff
  }

  .nav-timetable {
    grid-template-columns: 1fr
  }

  .nav-link {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
  }

  .nav-link:last-child {
    border-bottom: 0
  }

  .filter-grid {
    grid-template-columns: 1fr
  }

  .timetable-slider {
    display: none
  }

  .timetable-mobile {
    display: block
  }

  .slider-top {
    grid-template-columns: 1fr;
    gap: 8px
  }

  .modal-grid {
    grid-template-columns: 1fr
  }

  .footer a {
    display: block;
    padding-right: 0
  }
}

@media(max-width:680px) {
  .mobile-tabs {
    grid-template-columns: repeat(7, minmax(0, 1fr))
  }

  .mobile-tab {
    font-size: 12px
  }

  .mobile-line-main,
  .mobile-line-bottom {
    grid-template-columns: 1fr
  }

  .mobile-block .coach-tt {
    margin-left: 0
  }
}

@media print {
  body {
    background: #fff;
    color: #000
  }

  .site-header,
  .nav-timetable,
  .filters,
  .timetable-mobile,
  .information-lessons,
  .btn-print,
  .footer,
  .modal-backdrop,
  .status-line {
    display: none !important
  }

  .container {
    width: 100%
  }

  .desktop-table-wrap {
    border: 0;
    box-shadow: none;
    background: #fff
  }

  .desktop-table {
    min-width: 0
  }

  .day-header {
    position: static;
    background: #fff
  }

  .day-cell {
    background: #fff
  }

  .title-col,
  .time-tt,
  .name-tt {
    color: #000
  }

  .block-timetable {
    break-inside: avoid;
    box-shadow: none;
    background: #fff;
    border: 1px solid #ddd
  }
}