/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face{
    font-family: "Century Gothic";
    src: url(/html/fonts/GOTHIC.TTF);
  }
  @font-face{
    font-family: "Century Gothic Bold";
    src: url(/html/fonts/GOTHICB.TTF);
  }
  @font-face{
    font-family: "Century Gothic Italic";
    src: url(/html/fonts/GOTHICI.TTF);
  }

body{
    /* background: url('../images/Background.svg') round fixed; */
    background:  #fcd3de  url("../images/Back.png") round fixed;
    background-size: cover;
    font-family: "Century Gothic";
}
h1{

}
h2{
    font-weight: 700;
    font-size: 30px;
    line-height: 37px;
}
h3{
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
}
.flex-row{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-column{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.intro{
    width: 100%;
    height: auto;
}
.body-container{
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    align-items: flex-start;
    flex-wrap: wrap;
}
.main{
    width: 100%;
    height: 100%;
    background: white;
    justify-content: flex-start;
    align-items: flex-start;
}
.empty{
    height: 30px;
    width: 100%;
}
header{
    width: 100%;
    /* height: 90px; */
    justify-content: flex-start !important;
    box-shadow: 0px 0px 26px 6px rgba(229, 96, 131, 0.1);
    padding: 12px 20px;
}
header img{
    width: 77px;
}
.sidebar-y-forma{
    width: 100%;
    height: 100%;
    justify-content: flex-start;
}
.sidebar-container  {
    width: 10%;
    height: 100%;
    background: white;
    box-shadow: 0px 0px 26px 6px rgba(229, 96, 131, 0.1);
}
.forma-container{
    width: 100%;
    height: 100%;
}
.forma-content{
    padding: 80px;
}
#listlessions{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.choice-discipline-container{
    width: 65%;
    padding: 37px 30px;
    justify-content: flex-start;
    background: #FFFFFF;
    box-shadow: 0px 0px 8px -1px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    gap: 40px;
}
.choice-discipline-container > .razd{
    background: black;
    width: 1px;
    height: 106px;
}
.buttons-discipline{
    height: 100%;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 25px;
}
.buttons-discipline input{
    position: absolute;
    opacity: 0;
}
.button-discipline{
    padding: 6px 20px;
}
.button-discipline:hover{
    background: #F6F4FF;
    border-radius: 10px;
}
.button-discipline label{
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
}
.button-discipline :hover label::after{
    content: url('../images/check.svg');
}
.buttons-discipline button{
    width: 100%;
    border: none;
    background: none;
    border-radius: 10px;
    padding: 6px 20px;
    transition: all 0.2s;
}
.buttons-discipline button:hover{
    cursor: pointer;
    background: #F6F4FF;
}
.buttons-discipline button:focus{
    background: #DAD2FF;
}
.buttons-discipline button:focus ::after{
    content: url('../images/check.svg');
}
.buttons-discipline button p{
    text-align: initial;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    width: 100%;
    justify-content: space-between;
}
.buttons-discipline :hover p::after{
    content: url('../images/check.svg');
}
.statistics-container{
    width: 100%;
    gap: 60px;
}
.stats-block{
    width: 100%;
    padding: 30px;
    background: #ECF6FF;
    border-radius: 10px;
    align-items: flex-start;
    gap: 20px;
}
.stats-block h3{
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
}
.stats-block h1{
    font-weight: 700;
    font-size: 40px;
    line-height: 49px;
}
.stats-block:nth-child(1){
    background: #ECF6FF;
}
.stats-block:nth-child(2){
    background: #F6F4FF;
}
.stats-block:nth-child(1) h1{
    color: #68BFF3;
}
.stats-block:nth-child(2) h1{
    color: #6659BC;
}
.stats-block:nth-child(3) h1{
    color: #FF9D84;
}
.stats-block:nth-child(3){
    background: #FFECE7;
}

table{
}
tbody{
    display: grid;
    row-gap: 10px;
}
tr{
    width: 100%;
    display: grid;
    grid-template-columns: minmax(100px, 1fr) minmax(100px, 1fr) minmax(100px, 1fr) minmax(300px, 1fr) minmax(100px, 1fr);
    column-gap: 20px;
    align-items: center;
    justify-items: start;
    padding: 12px 25px;
    background: #ECF6FF;
    border-radius: 10px;
}
tr:nth-child(1){
    padding: 0 25px;
    border-radius: 0;
    background: none;
    border-bottom: 1px solid;
}
td{
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
}
td:last-child{
    display: flex;
}
.check td:last-child:after{
    content: url(../images/table-check.svg);
}
table a{
    color: #6659BC;
    text-decoration: none;
    /* text-decoration-color: dodgerblue; */
}
table a:hover{
    color: dodgerblue;
    text-decoration: none;
}
table .check{
    background: #FFECE7;
}