.transactions {
  color: #2f3031;
  margin: 0 auto 20px;
  width: 1200px;
  margin-top: 80px;
}
@media (max-width: 1680px) {
  .transactions {
    margin: 0 20px 20px 270px;
    justify-content: flex-start;
  }
}
@media (max-width: 1435px) {
  .transactions {
    max-width: 100%;
    width: auto;
  }
}
.transactions__inner {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
.transactions__filter {
  background: #fff;
  margin-right: 15px;
  padding: 30px 20px;
  width: 280px;
}
.transactions__filter-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
  text-align: center;
}
.transactions__filter-field {
  margin-bottom: 30px;
}
.transactions__filter-field:last-of-type {
  margin-bottom: 0;
}
.transactions__filter-field-title {
  display: block;
  padding: 0 0 10px 15px;
}
.transactions__filter-field input {
  background: #f2f3f4;
  border: none;
  border-radius: 47px;
  font-size: 16px;
  height: 50px;
  padding: 0 30px;
}
.transactions__filter button {
  background: #5495ff;
  border-radius: 33px;
  height: 45px;
  margin-top: 20px;
  width: 240px;
}
.transactions__table {
  background: #fff;
  padding: 20px;
  min-width: 800px;
}
.transactions__table-wrap {
  overflow-x: auto;
  width: calc(100% - 295px);
}
.transactions__table .my-lessons__header-column_student,
.transactions__table .my-lessons__list-item-column_student {
  /* flex: 1 0 85px;
  display: flex !important;
  align-items: center;
  justify-content: center; */
  min-width: 250px;
}
.transactions__table .my-lessons__header-column_time,
.transactions__table .my-lessons__list-item-column_time {
  max-width: 110px;
}
.transactions__table .my-lessons__list-item-column_time {
  text-transform: uppercase;
}

/* mobile responsive */

@media only screen and (max-width: 767px) {
  .reg-stripe__inner-block-title {
    font-size: 16px;
    line-height: 16px;
  }
  .transactions__filter form {
    margin-top: 16px;
  }
  .transactions__filter-title {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
  }
  .transactions__filter-title .toggle-filter.open svg {
    transform: rotate(180deg);
  }
  .transactions__filter-title .toggle-filter {
    display: block;
    cursor: pointer;
  }
}