* {
  box-sizing: border-box;
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
}

/* 스크롤바 안보이게 */
body {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  overflow-y: scroll;
  zoom: normal;
}
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera*/
}

.seat_all {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.seat_all::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera*/
}

/*baseseeya 메뉴바 a 태그 */
.dropdown-list a {
  color: #74809d;
  display: block;
}

.seat-all {
  width: max-content;
  overflow: auto;
  margin: 0 auto;
  display: block;
}

/* 스크롤바 안보이게 */
.floor {
  padding-bottom: 40px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  overflow-y: scroll;
  zoom: normal;
}
.floor::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera*/
}
.floor-with-no-padding {
  position: relative;
  bottom: 40px;
}

.seattable_zone_container {
  height: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

/* 열 flex */
.row {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
}

.seats {
  cursor: pointer;
}
/* 좌석 크기 */
#seat,
#row_zone {
  height: 25px;
  /* a태그가 seat 전체를 클릭할 수 있도록 하기 위해 */
  float: left;
  /* seat 안의 좌석 번호 중앙 정렬 */
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 10%;
  margin: 2.5px;
}

#seat {
  width: 25px;
}

#row_zone {
  min-width: 25px;
}

/* 실제 좌석 */
.real {
  border: 1px solid black;
}
.disabled {
  background-image: url('../images/disabled.png');
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center center;
}

/* 좌석 색상 */
.red {
  background-color: #f22713;
  opacity: 80%;
}
.orange {
  background-color: #ff9924;
}
.yellow {
  background-color: #ffe647;
}
.lightgreen {
  background-color: #87d37c;
}
.green {
  background-color: #00b16a;
}
.no_review {
  background-color: #ebebeb;
}
.seats > .btn {
  margin: 60px;
  padding: 20px 40px;
  font-size: 30px;
  border-radius: 40px;
}

/* 모달 */
.modal {
  background: white;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 10px;
  left: 0;
  text-align: left;
  border-radius: 30px 30px 0 0;
  top: 100%;
  position: fixed;
  transition: all 300ms cubic-bezier(0.86, 0, 0.07, 1);
}

.modal-background {
  display: none;
  position: fixed; /* Stay in place */
  z-index: 5000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  touch-action: none;
}
.modal .header {
  padding: 20px;
  font-weight: 300;
  font-size: 24px;
  padding-top: 30px;
}
.header-top {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.header-close-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 60px;
}
.header-top-bottom-box {
  /*모달 별점칸*/
  width: 100%;
  height: 56px;
  margin: 10px 0;
}
.star-aver_star-review-box {
  display: flex;
  width: 250px;
  justify-content: start;
  margin-left: 15px;
}
.aver_star-box {
  line-height: 53px;
}
.header-bottom {
  display: block;
  visibility: visible;
}
.review_count {
  margin-right: 10px;
}
.header-bottom a {
  display: block;
  color: #981d26;
  margin-top: 1px;
}
.btn {
  cursor: pointer;
}
.close {
  width: 13px;
  height: 13px;
  color: black;
  font-weight: bold;
  margin: 7px 5px;
  position: relative;
  right: 20px;
  top: 20px;
}
.close:hover {
  color: black;
}

/* 별점 */
.yellow-star {
  margin-right: 10px;
  font-size: 2rem;
  color: orange;
  display: inline-block;
}
/* 별점 끝 */

.review-detail-box {
  display: flex;
  justify-content: start;
  width: 15%;
  margin-left: 22px;
}

/* 대극장 층 버튼 */
.GrandTheaterFloor {
  width: 100%;
  height: 50px;
  background-color: white;
  position: fixed;
  margin-top: 90px;
  padding-top: 20px;
  padding-left: 20px;
  display: flex;
  z-index: 100;
}

.floor-type {
  display: block;
  color: black;
  margin-right: 10px;
  line-height: 30px;
}
.floor-type:hover {
  color: #df0101;
}
.floor-active,
.floor-active:hover {
  color: #981d26;
  border-bottom: 1px solid #981d26;
}
/* 기본시야 버튼 */
.gradient-btn {
  right: 10px;
  width: 100px;
  height: 30px;
  grid-area: gradient-btn;
  display: inline-block;
  border-radius: 0;
  color: #7e7b7b;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  background-color: white;
  border: 1.5px solid #7e7b7b;
  border-radius: 15px;
  transition: 700ms cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 100;
  position: fixed;
  margin-top: 110px;
  margin-left: 10px;
  cursor: pointer;
}
.gradient-btn:focus {
  outline: none;
}

.gradient-btn-basic-view {
  color: white;
  background-color: #981d26;
  transition: 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1.5px solid #981d26;
  border-radius: 15px;
}

.gradient-btn-basic-view:focus {
  outline: none;
}

.basic_view-box {
  width: 0;
  height: 0;
  padding-top: 0px;
  z-index: 100;
  background-color: white;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
}

.basic_view {
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

/*좌석표*/
.seating_table_container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px;
  font-weight: bolder;
}
.rating-info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px;
}
.floor_container {
  display: flex;
  justify-content: center;
}
#seattable_zone {
  color: black;
  font-weight: bolder;
}
.row_zone p {
  font-size: 1em;
  color: black;
}
#seat p {
  font-size: 0.7em;
}

/* footer */
.footer {
  padding-bottom: 1rem;
}
footer .footer-div a {
  color: lightgray;
}
footer .footer-div a:hover {
  color: lightgray;
  text-decoration: none;
}
footer .footer-div a:focus {
  outline: none;
}
footer p {
  text-align: center;
}

/* 스마트폰 반응형 디자인*/
@media (min-width: 320px) and (max-width: 410px) {
  .modal .header {
    padding-top: 20px;
  }
  .header-top-bottom-box {
    /* margin-top: -5vh; */
  }
  .header-bottom {
    /* margin-top: -2vh; */
  }
}
@media screen and (max-width: 768px) {
  .review-detail-box {
    width: 100%;
  }
}
/* 스마트폰 반응형 디자인 끝 */

/* 패드 반응형 디자인*/
@media (min-width: 768px) and (max-width: 999px) {
  .review-detail-box {
    width: 40%;
    /* margin-top: 20px; */
  }
  .gradient-btn {
    width: 100px;
  }
  .modal .header {
    font-weight: 500;
    font-size: 24px;
    padding-top: 30px;
  }
}
@media (min-width: 999px) and (max-width: 1024px) {
  .modal .header {
    font-weight: 500;
    font-size: 24px;
    padding-top: 30px;
  }
  .header-top-bottom-box {
    /* margin-top: -120px; */
  }
  .header-bottom {
    /* margin-top:-120px; */
  }
}
/* 패드 반응형 디자인 끝 */
