@media screen and (max-width: 1700px) {
  html {
    font-size: 55% !important;
  }
}

.modal {
  display: none;
}

.main {
  display: flex;
  direction: rtl;
  flex-wrap: nowrap;
  min-height: 100%;
}
.halls-main {
  display: flex;
  flex-direction: column;
  width: var(--halls-width);
}
.halls {
  display: flex;
  justify-content: space-around;
  width: 100%;
  height: var(--hall-height);
  background: var(--bg-light);
}

.hall {
  width: 100%;
  border-left: 10px solid var(--bg-dark);
  display: flex;
  flex-direction: column;
}

.hall-title {
  height: 64px;
  font-family: "Font-Regular";
  font-size: var(--title-font-size);
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  color: var(--text-primary);
  padding: 0 15%;
  margin-top: 15px;
}

.hall-group {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  border: 1px solid var(--bg-light);
}
.hall-group-title {
  padding: 5px 10px;
  background: #fff;
  font-size: 100%;
  font-weight: bold;
  text-align: center;
  flex-grow: 1;
  border-left: 5px solid var(--bg-light);
  margin-right: 10px;
}
.hall-group-count {
  padding: 5px 10px;
  background: #fff;
  font-size: 100%;
  font-weight: bold;
  min-width: 40px;
  text-align: center;
  margin-left: 10px;
}
.hall-groups {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px;
  overflow-y: scroll;
  overflow-x: hidden;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.hall-groups::-webkit-scrollbar {
  display: none;
}
.hall-groups-total {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  border-bottom: 3px solid var(--bg-dark);
  width: 100%;
}
.hall-groups-total-title {
  padding: 5px 40px;
  font-size: 100%;
  font-weight: bold;
  background: #fff;
  flex-grow: 1;
  border-left: 5px solid var(--bg-light);
}
.hall-groups-total-count {
  padding: 5px 10px;
  background: #fff;
  font-weight: bold;
  flex-grow: 1;
  text-align: center;
}

.halls-total {
  display: flex;
  height: var(--halls-total-height);
  justify-content: space-evenly;
  align-items: center;
  background: var(--bg-dark);
  padding: 0px 30%;
}
.halls-total-title {
  color: var(--text-primary);
  font-size: var(--title-font-size);
  font-weight: bold;
}
.halls-total-count {
  color: var(--text-primary);
  font-size: var(--title-font-size);
  font-weight: bold;
}

.entries {
  width: var(--entries-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-dark);
  border-right: 3px solid var(--bg-light);
}
.entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--enrey-height);
}
.entry-custom-border {
  border-bottom: 3px solid var(--bg-light);
}
.entry-title {
  font-family: "Font-Light";
  font-size: 110%;
  text-align: center;
  color: var(--text-primary);
  font-weight: bold;
}
.entry-count {
  padding: 2px 30px;
  background: #fff;
  margin-top: 10px;
  font-size: 110%;
  font-weight: bold;
  min-width: 50px;
  text-align: center;
}
#homeBtn {
  padding: 4px 12px;
}
