/* auditorium */
.auditorium {
}
.auditorium__content {
}
.auditorium__title {
}
.auditorium__row {
   display: flex;
   flex-direction: row;
   gap: 16px;
   justify-content: space-between;
}
.auditorium__left {
   display: flex;
   flex-direction: row;
   gap: 16px;
   justify-content: space-between;
}
.auditorium__cart {
   flex: 1;
   box-sizing: border-box;
   min-width: 0;
}
.auditorium__right {
   display: flex;
   flex-direction: row;
   gap: 16px;
   justify-content: space-between;
}
@media (max-width: 1440px) {
   .auditorium__row {
      flex-direction: column;
   }
}
@media (max-width: 850px) {
   .auditorium__left {
      flex-direction: column;
   }
   .auditorium__right {
      flex-wrap: wrap;
   }
   .auditorium__right .auditorium__cart:nth-child(3) {
      flex: 100%;
   }
}
@media (max-width: 560px) {
   .auditorium__right {
      flex-direction: column;
   }
}
/* auditorium */
