body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: hidden;
    font-family: "Open Sans";
    font-weight: 400;
    font-style: normal;
    margin: 0;
}

a {
    text-decoration: none; /* Убираем подчеркивание у всех ссылок */
    color: #55666e;
}

/* header */

.header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    margin-bottom: 0;
    background-color: #e1ebf6;
    border-bottom: 1px solid #55666e;
}

.logo-img {
  height: 23.3px;
  margin: 0;
}

h1 {
    flex: 1;
    font-weight: 600;
    color: #55666e;
    margin: 0;
    text-align: center;
}

.colortext {
  color: #ff890a;
}

form {
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 44px;
    width: 174px;
    border-style: solid;
    border-width: 1px;
    border-color: #55666e;
    text-align: center;
}

input {
    width: 140px;
    border-width: 0px;
}

button {
    width: 34px;
    border-width: 0px;
    background-color: white;
}

/* left-side */

.left-side {
    width: 300px;
    height: 100%;
    overflow-y: auto;
    border-right: 1px solid #55666e;
}

.left-side>ul {
    list-style: none;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 0;
}
  
  .accordion-item {
    border-bottom: 1px solid #55666e;
  }
  
  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    background-color: #e1ebf6;
  }
  
  .accordion-title {
    flex-grow: 1;
  }
  
  .accordion-content {
    display: none; /* Скрываем содержимое по умолчанию */
    padding: 5px 10px 5px 20px;
  }

  .accordion-content>p {
    padding: 10px 0;
  }
  
  .accordion-input {
    display: none; /* Скрываем чекбоксы */
  }
  
  /* При активации чекбокса показываем содержимое */
  .accordion-input:checked + .accordion-header + .accordion-content {
    display: block;
  }
  
  /* Изменяем вид кнопки при активации чекбокса */
  .accordion-input:checked + .accordion-header .accordion-toggle-btn {
    transform: rotate(45deg); /* Поворачиваем кнопку "+" в виде "x" */
  }
  

/* content */

.page {
    height: 100%;
    display: flex;
    overflow-x: auto;
}

.main {
    height: 100%;
    overflow-y: auto;
    padding: 0 20px;
    flex: 1;
    margin: 0;
    text-align: left;
}

h2 {
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: 600;
}

h3 {
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: 700;
}

.conteiner-h {
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: 700;
}

p {
    margin: 0;
 }

.line {
    margin: 0;
    border-bottom: 1px solid grey;
}

.conteiner {
    margin-top: 30px;
    margin-bottom: 30px;
}

.conteiner>img {
    border-style: solid;
    border-width: 1px;
    border-color: grey;
}