@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600&display=swap");
:root {
  --color-main: #1d2b63;
  --color-sub: #f36f32;
  --font-family-main: "Source Sans Pro", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: var(--font-family-main);
  color: #282e33;
}

#body {
  min-height: calc(100vh - 43px);
  padding: 80px 20px 20px 20px;
  display: flex;
  align-items: flex-start;
}
#body .menu {
  font-weight: 600;
  border-radius: 15px;
  width: 280px;
  height: 100%;
  min-width: 230px;
  box-shadow: 0px 0px 15px rgba(136, 136, 136, 0.29);
  position: fixed;
  background-color: #ffffff;
  z-index: 998;
  max-height: calc(100vh - 125px);
  overflow: hidden;
  overflow-y: auto;
  padding-bottom: 10px;
}
#body .menu::-webkit-scrollbar {
  width: 0px;
}
#body .menu .bookmark-menu {
  position: absolute;
  top: -1px;
  right: 15px;
}
#body .menu .profile {
  padding: 15px 20px;
  display: flex;
  align-items: flex-start;
}
#body .menu .profile .img {
  min-width: 35px;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 10px;
}
#body .menu .profile .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#body .menu .profile .detail {
  width: calc(100% - 45px);
}
#body .menu .profile .detail .name {
  font-size: 15px;
  font-weight: 600;
}
#body .menu .profile .detail .loyalty_point {
  font-size: 13px;
}
#body .menu .profile .detail .loyalty_point span {
  color: #F36F32;
}
#body .menu .profile .detail .btn-logout {
  margin-top: 5px;
  font-size: 12px;
  color: #FE635B;
  border: 1px solid #DADBE0;
  border-radius: 5px;
  height: 25px;
  width: 100px;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#body .menu .profile .detail .btn-logout svg {
  margin-right: 5px;
}
#body .menu .line {
  padding: 0 20px;
}
#body .menu .line div {
  border-bottom: 1px solid #F5F5F5;
}
#body .menu .menu-list {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 20px;
}
#body .menu .menu-list .icon {
  min-width: 20px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#body .menu .menu-list .title {
  color: #282E33;
}
#body .menu .menu-list .count {
  background-color: #970E65;
  color: #ffffff;
  font-size: 11px;
  min-width: 16px;
  height: 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  margin-left: 5px;
}
#body .menu .menu-list:hover .icon svg path, #body .menu .menu-list.active .icon svg path {
  fill: #f36f32;
}
#body .menu .menu-list:hover .title, #body .menu .menu-list.active .title {
  color: #f36f32;
}
#body .menu .menu-list.active {
  background-color: rgba(243, 111, 50, 0.07);
  position: relative;
}
#body .menu .menu-list.active:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #f36f32;
}
#body .menu .menu-list.logout .title {
  color: #f36f32;
  font-weight: 600;
}
#body .menu .menu-list.logout:hover .icon svg path {
  fill: #f15710;
}
#body .menu .menu-list.logout:hover .title {
  color: #f15710;
}
@media (max-width: 991.98px) {
  #body .menu {
    height: 0;
    position: fixed;
    top: 70px;
    right: 10px;
    transition: all 0.3s;
    opacity: 0;
  }
  #body .menu.active {
    height: 670px;
    opacity: 1;
  }
}
@media (max-width: 767.98px) {
  #body .menu {
    max-height: calc(100vh - 140px);
  }
}
@media (max-width: 379.98px) {
  #body .menu {
    width: calc(100% - 20px);
  }
}
#body .page_container {
  padding: 0 0 20px 300px;
  width: 100%;
  min-height: 625px;
}
@media (max-width: 991.98px) {
  #body {
    padding: 70px 10px 20px 10px;
  }
  #body .page_container {
    padding: 0;
    min-height: 0;
  }
}
@media (max-width: 767.98px) {
  #body {
    min-height: calc(100vh - 62px);
  }
  #body .page_container {
    padding-top: 30px;
  }
}
@media (max-width: 575.98px) {
  #body {
    min-height: calc(100vh - 56px);
  }
}

.main-menu {
  cursor: pointer;
  display: none;
}
@media (max-width: 991.98px) {
  .main-menu {
    display: flex;
  }
}

.calendar-right-card {
  background-color: #f5f5f5;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 10px 20px;
  margin-right: -20px;
}
.calendar-right-card .mini-calendar-body {
  width: 100%;
}
.calendar-right-card .mini-calendar-body .title-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.calendar-right-card .mini-calendar-body .title-group .date-title {
  font-size: 18px;
  color: #1d2b63;
  font-weight: 500;
}
.calendar-right-card .mini-calendar-body .title-group .btn-pre-next {
  display: flex;
  align-items: center;
}
.calendar-right-card .mini-calendar-body .title-group .btn-pre-next .mini-calendar-pre,
.calendar-right-card .mini-calendar-body .title-group .btn-pre-next .mini-calendar-next {
  width: 25px;
  height: 25px;
  min-width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.calendar-right-card .mini-calendar-body .mini-calendar .day-title-group {
  display: flex;
  align-items: center;
}
.calendar-right-card .mini-calendar-body .mini-calendar .day-title-group .title-list {
  width: 14.2857142857%;
  height: 30px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #9ca0b4;
}
.calendar-right-card .mini-calendar-body .mini-calendar .day-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.calendar-right-card .mini-calendar-body .mini-calendar .day-group .day-list {
  width: 14.2857142857%;
  height: 30px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #282e33;
}
.calendar-right-card .mini-calendar-body .mini-calendar .day-group .day-list.out-month {
  color: #696b79;
}
.calendar-right-card .mini-calendar-body .mini-calendar .day-group .day-list .today {
  min-width: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #1d2b63;
  background-color: #eeeff3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .calendar-right-card {
    margin-right: 0px;
    margin-top: 30px;
    border-radius: 20px;
  }
}

.calendar {
  overflow: hidden;
  overflow-x: auto;
}
.calendar #calendar_container {
  min-width: 500px;
}
.calendar #calendar_container .fc-header-toolbar {
  margin-bottom: 0;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-toolbar-title {
  font-size: 20px;
  color: #1d2b63;
  line-height: 35px;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-toolbar-title {
    font-size: 14px;
  }
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-prev-button,
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-next-button {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: #f5f5f5;
  background-image: none;
  text-shadow: none;
  box-shadow: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  margin: 2.5px;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-prev-button .fc-icon,
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-next-button .fc-icon {
  color: #9ca0b4;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-prev-button .fc-icon:after,
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-next-button .fc-icon:after {
  top: unset;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-prev-button:hover,
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-next-button:hover {
  background-color: #e3e3e3;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-prev-button:active, .calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-prev-button:focus,
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-next-button:active,
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-next-button:focus {
  border: none;
  box-shadow: none;
  outline: none;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-today-button {
  height: 30px;
  border-radius: 5px;
  background-color: #f5f5f5;
  background-image: none;
  text-shadow: none;
  box-shadow: none;
  border: none;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 12px;
  color: #1d2b63;
  font-weight: 500;
  margin: 2.5px;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-today-button:hover {
  background-color: #e3e3e3;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-today-button:disabled {
  background-color: #f5f5f5 !important;
  color: #1d2b63 !important;
  opacity: 1;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-today-button:active, .calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-today-button:focus {
  border: none;
  box-shadow: none;
  outline: none;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-dayGridDay-button {
  height: 30px;
  border-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #f5f5f5;
  background-image: none;
  text-shadow: none;
  box-shadow: none;
  border: none;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 12px;
  color: #1d2b63;
  font-weight: 500;
  margin: 2.5px 0 2.5px 2.5px;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-dayGridDay-button:hover {
  background-color: #e3e3e3;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-dayGridDay-button:disabled {
  background-color: #f5f5f5 !important;
  color: #1d2b63 !important;
  opacity: 1;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-dayGridDay-button:active, .calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-dayGridDay-button:focus {
  border: none;
  box-shadow: none;
  outline: none;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-dayGridDay-button.fc-button-active {
  background-color: #970e65;
  color: #ffffff;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-dayGridWeek-button {
  height: 30px;
  border-radius: 0;
  background-color: #f5f5f5;
  background-image: none;
  text-shadow: none;
  box-shadow: none;
  border: none;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 12px;
  color: #1d2b63;
  font-weight: 500;
  margin: 2.5px 0;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-dayGridWeek-button:hover {
  background-color: #e3e3e3;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-dayGridWeek-button:disabled {
  background-color: #f5f5f5 !important;
  color: #1d2b63 !important;
  opacity: 1;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-dayGridWeek-button:active, .calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-dayGridWeek-button:focus {
  border: none;
  box-shadow: none;
  outline: none;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-dayGridWeek-button.fc-button-active {
  background-color: #970e65;
  color: #ffffff;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-dayGridMonth-button {
  height: 30px;
  border-radius: 5px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #f5f5f5;
  background-image: none;
  text-shadow: none;
  box-shadow: none;
  border: none;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 12px;
  color: #1d2b63;
  font-weight: 500;
  margin: 2.5px 0;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-dayGridMonth-button:hover {
  background-color: #e3e3e3;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-dayGridMonth-button:disabled {
  background-color: #f5f5f5 !important;
  color: #1d2b63 !important;
  opacity: 1;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-dayGridMonth-button:active, .calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-dayGridMonth-button:focus {
  border: none;
  box-shadow: none;
  outline: none;
}
.calendar #calendar_container .fc-header-toolbar .fc-toolbar-chunk .fc-button-group .fc-dayGridMonth-button.fc-button-active {
  background-color: #970e65;
  color: #ffffff;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table {
  border: none;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table thead td, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table thead td, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table thead td {
  border: none;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table thead th, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table thead th, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table thead th {
  border: none;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table thead th .fc-col-header-cell-cushion, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table thead th .fc-col-header-cell-cushion, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table thead th .fc-col-header-cell-cushion {
  font-size: 14px;
  color: #1d2b63;
  padding: 10px;
  float: left;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-frame .fc-daygrid-day-top, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-frame .fc-daygrid-day-top, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-frame .fc-daygrid-day-top {
  flex-direction: row;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-frame .fc-daygrid-day-top .fc-daygrid-day-number, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-frame .fc-daygrid-day-top .fc-daygrid-day-number, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-frame .fc-daygrid-day-top .fc-daygrid-day-number {
  color: #282e33;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 10px;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day.fc-day-other, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day.fc-day-other, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day.fc-day-other {
  opacity: 0.5;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day.fc-day-other .fc-daygrid-day-frame .fc-daygrid-day-top, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day.fc-day-other .fc-daygrid-day-frame .fc-daygrid-day-top, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day.fc-day-other .fc-daygrid-day-frame .fc-daygrid-day-top {
  opacity: 1;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day.fc-day-other .fc-daygrid-day-frame .fc-daygrid-day-top .fc-daygrid-day-number, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day.fc-day-other .fc-daygrid-day-frame .fc-daygrid-day-top .fc-daygrid-day-number, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day.fc-day-other .fc-daygrid-day-frame .fc-daygrid-day-top .fc-daygrid-day-number {
  color: #282e33;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day.fc-day-today, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day.fc-day-today, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day.fc-day-today {
  background-color: transparent;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day.fc-day-today .fc-daygrid-day-number, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day.fc-day-today .fc-daygrid-day-number, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
  width: 25px;
  height: 25px;
  background-color: #eff0f4;
  color: #1d2b63;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events {
  display: flex;
  flex-wrap: wrap;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event {
  border-radius: 50%;
  width: 25px;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.show_modal_full, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.show_modal_full, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.show_modal_full {
  cursor: pointer;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.show_modal_is_booking, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.show_modal_is_booking, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.show_modal_is_booking {
  cursor: pointer;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event:not(.holiday_event) .fc-event-title, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event:not(.holiday_event) .fc-event-title, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event:not(.holiday_event) .fc-event-title {
  color: transparent;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.fc-daygrid-dot-event .fc-event-time, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.fc-daygrid-dot-event .fc-event-time, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.fc-daygrid-dot-event .fc-event-time {
  font-size: 12px;
  font-weight: 600;
  color: #970e65;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.fc-daygrid-dot-event .fc-event-title, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.fc-daygrid-dot-event .fc-event-title, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.fc-daygrid-dot-event .fc-event-title {
  font-size: 12px;
  color: #1d2b63;
  font-weight: 500;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.fc-daygrid-block-event .fc-event-main, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.fc-daygrid-block-event .fc-event-main, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.fc-daygrid-block-event .fc-event-main {
  padding: 0 5px;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.fc-daygrid-block-event .fc-event-main .fc-event-time, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.fc-daygrid-block-event .fc-event-main .fc-event-time, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.fc-daygrid-block-event .fc-event-main .fc-event-time {
  display: none;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.holiday_event, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.holiday_event, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.holiday_event {
  cursor: default;
  background-color: #FF6FB5 !important;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.holiday_event .fc-event-title, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.holiday_event .fc-event-title, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day .fc-daygrid-day-events .fc-daygrid-event.holiday_event .fc-event-title {
  color: transparent;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day:last-child, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day:last-child, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table tbody .fc-scrollgrid-sync-table tr td.fc-daygrid-day:last-child {
  border-right: none;
}
.calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridMonth-view table tbody .fc-scrollgrid-sync-table tr:last-child td, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridWeek-view table tbody .fc-scrollgrid-sync-table tr:last-child td, .calendar #calendar_container .fc-view-harness .fc-daygrid.fc-dayGridDay-view table tbody .fc-scrollgrid-sync-table tr:last-child td {
  border-bottom: none;
}
.calendar #calendar_container .fc-view-harness .fc-popover .fc-popover-header .fc-popover-title {
  color: #1d2b63;
  font-size: 14px;
  font-weight: 600;
}
.calendar #calendar_container .fc-view-harness .fc-popover .fc-popover-body .fc-daygrid-block-event {
  padding: 0 5px;
}
.calendar #calendar_container .fc-view-harness .fc-popover .fc-popover-body .fc-daygrid-block-event .fc-event-time {
  display: none;
}
.calendar #calendar_container .fc-view-harness .fc-popover .fc-popover-body .fc-daygrid-dot-event .fc-event-time {
  font-size: 12px;
  font-weight: 600;
  color: #970e65;
}
.calendar #calendar_container .fc-view-harness .fc-popover .fc-popover-body .fc-daygrid-dot-event .fc-event-title {
  font-size: 12px;
  color: #1d2b63;
  font-weight: 500;
}

.nav-bar {
  display: flex;
}
.nav-bar .btn-nav {
  padding: 10px;
  color: #1d2b63;
  background-color: #f5f5f5;
  margin-bottom: 10px;
  width: 100px;
  display: flex;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
}
.nav-bar .btn-nav.left {
  border-radius: 10px 0 0 10px;
}
.nav-bar .btn-nav.right {
  border-radius: 0 10px 10px 0;
}
.nav-bar .btn-nav.active {
  background-color: #1d2b63;
  color: #ffffff;
}

.title {
  color: var(--color-sub);
}

.search_form {
  color: var(--color-main);
  font-size: 18px;
  font-weight: 600;
}
.search_form .search_box {
  position: relative;
}
.search_form .search_box .arrow {
  content: "";
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 15px;
  height: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}
.search_form .search_box .option {
  display: none;
  position: absolute;
  padding: 15px;
  width: 100%;
  top: 100%;
  left: 0;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px;
  z-index: 4;
}
.search_form .search_box .option.show {
  display: block;
}
.search_form .search_box .option .list {
  cursor: pointer;
  padding: 10px;
  margin: 0 -15px;
  background-color: transparent;
}
.search_form .search_box .option .list.hide {
  display: none;
}
.search_form .search_box .option .list:hover {
  background-color: var(--color-main);
  color: #fff;
}
.search_form .search_box .option .list.active {
  background-color: var(--color-main);
  color: #fff;
}
.search_form .facilities_room_name {
  border: 1px solid #1f376c;
  border-radius: 10px 0 0 10px;
  min-height: 45px;
  padding-left: 15px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-right: 40px;
}
.search_form .facilities_date {
  border: 1px solid #1f376c;
  border-left: none;
  border-radius: 0 10px 10px 0;
  min-height: 45px;
  padding-left: 15px;
  font-size: 18px;
  font-weight: 600;
  padding-right: 35px;
}
.search_form .facilities_date::before {
  top: 50%;
  transform: translateY(-50%);
}

.room_list {
  border-radius: 10px;
  overflow: hidden;
  font-size: 18px;
  font-weight: 600;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px;
}
.room_list .room_img {
  width: 100%;
}
.room_list .room_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.room_list .room_detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-left: 1px solid #d0d6dd;
  border-right: 1px solid #d0d6dd;
}
.room_list .room_booking {
  height: 45px;
  width: 100%;
  background-color: #1f376c;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.room_list.disabled {
  position: relative;
}
.room_list.disabled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 1330px) {
  .room_list {
    font-size: 14px;
  }
}
@media (max-width: 425px) {
  .room_list .room_booking {
    font-size: 12px;
  }
}

.facilities-room {
  max-height: calc(100vh - 250px);
  overflow-y: auto;
}
.facilities-room::-webkit-scrollbar {
  width: 0px;
}
.facilities-room.disabled {
  overflow: hidden;
  position: relative;
}
.facilities-room.disabled::after {
  content: "";
  background-color: rgba(78, 78, 78, 0.4);
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
}

.list-title {
  font-size: 13px;
  font-weight: 600;
}
.list-title a {
  color: var(--color-main);
  text-decoration: none;
}
.list-title span {
  color: #9ca0b4;
}

.card-booking {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 20px;
  padding: 15px;
  width: 100%;
  border-radius: 15px;
}
.card-booking h2.title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-sub);
}
.card-booking.no-top-radius {
  border-radius: 0 15px 15px 15px;
}

.charges-title {
  font-size: 25px;
  font-weight: 600;
  color: var(--color-sub);
}
.charges-title span {
  color: var(--color-main);
  font-size: 16px;
}

.btn-onepass-login {
  outline: none !important;
  box-shadow: none !important;
  background-color: #036EE1;
  width: calc(100% - 10px);
  height: 45px;
  color: #ffffff !important;
  margin: 30px auto;
  display: block;
  font-size: 18px;
}
.btn-onepass-login:hover {
  background-color: #0064cf;
}
.btn-onepass-login.disabled-btn {
  background-color: #d0d6dd;
  color: #9ca0b4 !important;
  cursor: default;
}

.btn-booking {
  outline: none !important;
  box-shadow: none !important;
  background-color: #1f376c;
  width: calc(100% - 10px);
  height: 45px;
  color: #ffffff !important;
  margin: 30px auto;
  display: block;
  font-size: 18px;
}
.btn-booking:hover {
  background-color: #192c55;
}
.btn-booking.disabled-btn {
  background-color: #d0d6dd;
  color: #9ca0b4 !important;
  cursor: default;
}

.text-main {
  color: var(--color-main);
  font-size: 16px;
}

.option-booking {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main);
}
.option-booking p {
  margin-bottom: 0;
  font-size: 14px;
}
.option-booking .select-facilitie {
  position: relative;
  min-height: 65px;
  width: 100%;
  border: 1px solid #dadee3;
  border-radius: 10px 10px 0 0;
  padding: 10px 15px;
}
.option-booking .option.facilitie {
  display: none;
  position: absolute;
  padding: 15px;
  width: 100%;
  top: 30%;
  left: 0;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px;
  z-index: 6;
}
.option-booking .option.facilitie.show {
  display: block;
}
.option-booking .option.facilitie .list {
  cursor: pointer;
  padding: 10px;
  margin: 0 -15px;
  background-color: transparent;
}
.option-booking .option.facilitie .list:hover {
  background-color: var(--color-main);
  color: #fff;
}
.option-booking .option.facilitie .list.active {
  background-color: var(--color-main);
  color: #fff;
}
.option-booking .select-time {
  position: relative;
  min-height: 65px;
  width: 100%;
  border: 1px solid #dadee3;
  border-top: none;
  padding: 10px 15px;
}
.option-booking .select-time.event-show-option::before {
  content: "";
  position: absolute;
  background: url("../img/icon/arrow-down.svg") center no-repeat;
  width: 15px;
  height: 9px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.option-booking .option.time {
  display: none;
  position: absolute;
  padding: 15px;
  width: 635px;
  top: 67%;
  right: 0;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px;
  z-index: 5;
}
.option-booking .option.time.show {
  display: block;
}
@media (max-width: 767px) {
  .option-booking .option.time {
    width: 100%;
  }
}
.option-booking .select-guests {
  min-height: 65px;
  width: 100%;
  position: relative;
  cursor: pointer;
  border: 1px solid #dadee3;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 10px 15px;
}
.option-booking .select-guests::before {
  content: "";
  position: absolute;
  background: url("../img/icon/arrow-down.svg") center no-repeat;
  width: 15px;
  height: 9px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.option-booking .option.guests {
  display: none;
  position: absolute;
  padding: 15px;
  width: 100%;
  top: 100%;
  left: 0;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px;
  z-index: 4;
}
.option-booking .option.guests.show {
  display: block;
}
.option-booking .option.guests h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main);
  margin-bottom: 0;
}
.option-booking .option.guests span {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-sub);
}
.option-booking .option.guests .quantity {
  display: flex;
  align-items: center;
  justify-content: center;
}
.option-booking .option.guests .quantity .show-number {
  width: 50px;
  padding-left: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main);
  margin: 0 15px;
  /* Firefox */
}
.option-booking .option.guests .quantity .show-number::-webkit-outer-spin-button, .option-booking .option.guests .quantity .show-number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.option-booking .option.guests .quantity .show-number[type=number] {
  -moz-appearance: textfield;
}
.option-booking .option.guests .quantity button {
  border: none;
  width: 20px;
  height: 20px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  outline: none !important;
}
.option-booking .option.guests .quantity button.disabled text {
  fill: #dadee3;
}
.option-booking .option.guests .quantity button.disabled g {
  stroke: #dadee3;
}
.option-booking .select-pass {
  height: 65px;
  width: 100%;
  position: relative;
  border: 1px solid #dadee3;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 10px 15px;
}

.room-gallery {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.room-gallery .main-img {
  width: 100%;
}
.room-gallery .main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.room-gallery .sub-img {
  width: 100%;
}
.room-gallery .sub-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.room-detail {
  font-size: 14px;
  color: var(--color-main);
}
.room-detail h1 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}
.room-detail p span {
  color: #58606e;
  font-size: 13px;
}
.room-detail .time {
  border-radius: 5px;
  border: 1px solid #dadee3;
  padding: 4px 14px;
  margin: 0 10px 10px 0;
  color: var(--color-main);
  cursor: pointer;
  position: relative;
}
.room-detail .time.select {
  color: #fff;
  background-color: var(--color-sub);
  border-color: var(--color-sub);
}
.room-detail .time.disabled {
  background-color: #eeeeed;
  border-color: #eeeeed;
  color: #9ca2a8;
  cursor: default;
}
.room-detail .time.disabled_full {
  background-color: #eeeeed;
  border-color: #eeeeed;
  color: #9ca2a8;
  cursor: default;
}
.room-detail .time .detail {
  display: none;
  position: absolute;
  top: 85%;
  right: 80%;
  font-size: 12px;
  background-color: #000;
  color: #fff;
  padding: 5px 5px;
  border-radius: 5px 0 5px 5px;
  text-align: center;
  line-height: 1;
  min-width: 100%;
  z-index: 3;
}
.room-detail .time:hover .detail {
  display: block;
}

.room-detail .area {
  border-radius: 5px;
  border: 1px solid #dadee3;
  padding: 4px 14px;
  margin: 0 10px 10px 0;
  color: var(--color-main);
  cursor: pointer;
  position: relative;
}
.room-detail .area.select {
  color: #fff;
  background-color: var(--color-sub);
  border-color: var(--color-sub);
}
.room-detail .area.disabled {
  background-color: #eeeeed;
  border-color: #eeeeed;
  color: #9ca2a8;
  cursor: default;
}
.room-detail .area.disabled_full {
  background-color: #eeeeed;
  border-color: #eeeeed;
  color: #9ca2a8;
  cursor: default;
}
.room-detail .area .detail {
  display: none;
  position: absolute;
  top: 85%;
  right: 80%;
  font-size: 12px;
  background-color: #000;
  color: #fff;
  padding: 5px 5px;
  border-radius: 5px 0 5px 5px;
  text-align: center;
  line-height: 1;
  min-width: 100%;
  z-index: 3;
}
.room-detail .area:hover .detail {
  display: block;
}

.booking-input {
  height: 40px;
  padding-left: 15px;
  border: 1px solid #9ca0b4;
  border-radius: 5px;
  margin-bottom: 0;
}

.btn-cancel-modal {
  background-color: #e6e6e6;
}

.title-modal {
  color: #3a4248;
  font-size: 20px;
  font-weight: bold;
}

.card-marks {
  font-size: 16px;
  color: #282e33;
  background-color: #eaeaea;
  padding: 15px;
  border-radius: 10px;
  max-height: 70vmin;
  overflow-y: auto;
}
.card-marks .title {
  font-size: 18px;
  font-weight: 600;
  color: #282e33;
  padding-left: 10px;
}

.h-full-card {
  min-height: 84vh;
  height: auto;
}

.card-qrcode {
  border: 1px solid #dadee3;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 0;
}
.card-qrcode img:first-child {
  width: 210px;
  -o-object-fit: contain;
     object-fit: contain;
}

.booking-nav {
  display: flex;
  align-items: center;
  z-index: 2;
}
.booking-nav a {
  min-width: 170px;
  height: 65px;
  display: flex;
  padding: 0 15px;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 20px;
  color: var(--color-main);
  border-radius: 20px 20px 0 0;
}
.booking-nav a.active {
  color: #fff;
  background-color: var(--color-sub);
}
@media (max-width: 991.98px) {
  .booking-nav a {
    width: 150px;
    height: 40px;
    font-size: 18px;
    text-align: center;
  }
}
@media (max-width: 379.98px) {
  .booking-nav a {
    width: 110px;
    height: 30px;
    font-size: 13px;
    margin-bottom: 5px;
    text-align: center;
    line-height: 13px;
    padding: 0 5px;
  }
}
@media (max-width: 425px) {
  .booking-nav a {
    width: 80px;
    min-width: auto;
    text-align: center;
    line-height: 13px;
    height: 45px;
    padding: 0 5px;
    font-size: 12px;
    margin-bottom: 0px;
  }
}
@media (max-width: 768px) {
  .booking-nav a {
    width: 150px;
    height: 40px;
    font-size: 13px;
    min-width: auto;
    text-align: center;
  }
}

.table-booking thead tr {
  background-color: #f5f5f5;
  overflow: hidden;
}
.table-booking thead th {
  padding: 5px 15px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-sub);
}
.table-booking thead th:first-child {
  border-radius: 5px 0 0 5px;
}
.table-booking thead .text-main {
  color: var(--color-main) !important;
  font-size: 16px;
  font-weight: 600 !important;
}
.table-booking tbody tr td {
  vertical-align: middle;
  border-top: none;
  border-bottom: 1px solid #f5f5f5;
}

.color-main.checkbox-sun label {
  border-color: var(--color-main) !important;
}
.color-main.checkbox-sun label:before {
  background-color: var(--color-main) !important;
}
.color-main.checkbox-group input[type=checkbox]:checked + label {
  border-color: var(--color-main) !important;
  background-color: var(--color-main) !important;
}

.history-feedback .color-main.checkbox-sun label {
  border-color: #cccccc !important;
}
.history-feedback .color-main.checkbox-sun label:before {
  background-color: #cccccc !important;
}
.history-feedback .color-main.checked label {
  border-color: var(--color-main) !important;
}
.history-feedback .color-main.checked label:before {
  background-color: var(--color-main) !important;
}

.custom-layout-radio .scope_box_event {
  flex-direction: column;
  margin-right: 20px;
}

.booking-input-file {
  white-space: nowrap;
  overflow: hidden;
}
.booking-input-file .custom-file-label {
  padding-left: 115px;
  border: none;
  background-color: #ebebeb;
}
.booking-input-file .custom-file-label::after {
  content: "Upload File";
  left: 0;
  right: auto;
  background-color: #1d2b63;
  color: #fff;
  border-radius: 0.25rem 0 0 0.25rem;
}

.color-success.checkbox-group input[type=checkbox]:checked + label {
  border-color: var(--color-success) !important;
  background-color: var(--color-success) !important;
}

.color-warning.checkbox-group input[type=checkbox]:checked + label {
  border-color: var(--color-warning) !important;
  background-color: var(--color-warning) !important;
}

.color-danger.checkbox-group input[type=checkbox]:checked + label {
  border-color: var(--color-danger) !important;
  background-color: var(--color-danger) !important;
}

.color-orange.checkbox-group input[type=checkbox]:checked + label {
  border-color: var(--color-sub) !important;
  background-color: var(--color-sub) !important;
}

.color-blue.checkbox-group input[type=checkbox]:checked + label {
  border-color: var(--color-main) !important;
  background-color: var(--color-main) !important;
}

.checkbox-holiday.checkbox-group input[type=checkbox]:checked + label {
  border-color: #FF6FB5 !important;
  background-color: #FF6FB5 !important;
}

.fc-day-today .fc-daygrid-day-top .fc-daygrid-day-number {
  background-color: var(--color-main) !important;
  color: #fff !important;
}

.calendar-right-card .mini-calendar-body .mini-calendar .day-group .day-list .today {
  background-color: var(--color-main) !important;
  color: #fff !important;
}

.disable-click {
  pointer-events: none;
  background-color: #a5a8af;
}

.option_time_booking p {
  position: relative;
}
.option_time_booking p.mb-10px::after {
  content: "*";
  color: red;
  position: absolute;
  left: 50%;
}
.option_time_booking .time {
  border-radius: 5px;
  padding: 4px 14px 4px 35px;
  margin: 0 10px 10px 0;
  color: var(--color-main);
  position: relative;
  cursor: pointer;
}
.option_time_booking .time.select:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background-color: #fff;
  -webkit-mask: url("../img/icon/check.svg") no-repeat 50% 50%;
  mask: url("../img/icon/check.svg") no-repeat 50% 50%;
  transition: all 0.3s;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  z-index: 3;
}
.option_time_booking .time.select::after {
  background-color: var(--color-main);
  border: 2px solid var(--color-main);
}
.option_time_booking .time.disabled {
  background-color: #eeeeed;
  border-color: #eeeeed;
  color: #9ca2a8;
  cursor: default;
}
.option_time_booking .time.disabled_full {
  background-color: #eeeeed;
  border-color: #eeeeed;
  color: #9ca2a8;
  cursor: default;
}
.option_time_booking .time::after {
  content: "";
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 0px;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid #9ca2a8;
  position: absolute;
  border-radius: 5px;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.price-booking-list .price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-main);
}

.service-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--color-main);
  margin-bottom: 10px;
}
@media (max-width: 1198px) {
  .service-list .d-flex.align-items-center {
    flex-direction: column;
    align-items: flex-start !important;
  }
}
.service-list .service-img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  border: 2px solid var(--color-main);
  border-radius: 5px;
  margin-right: 10px;
}
.service-list .service-name {
  width: 300px;
  display: block;
  flex-wrap: wrap;
}
@media (max-width: 1400px) {
  .service-list .service-name {
    max-width: 150px;
  }
}
@media (max-width: 1080px) {
  .service-list .service-name {
    max-width: 100px;
  }
}
.service-list .service-item span {
  color: #9CA0B4;
}
@media (max-width: 425px) {
  .service-list .service-item {
    font-size: 12px;
  }
}
.service-list .btn-booking-add {
  margin-left: 5px;
  border-radius: 25px;
  background-color: transparent;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  width: 70px;
  height: 40px;
  font-weight: 600;
  font-size: 14px;
}
.service-list .btn-booking-add:hover {
  background-color: var(--color-main);
  color: #fff;
}

.service-select-show .list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--color-main);
}
.service-select-show .list div {
  display: flex;
  align-items: center;
}
.service-select-show .list div button {
  outline: none;
  box-shadow: none;
}

.coupon-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--color-main);
  margin-bottom: 10px;
}
@media (max-width: 1198px) {
  .coupon-list .d-flex.align-items-center {
    flex-direction: column;
    align-items: flex-start !important;
  }
}
.coupon-list .coupon-img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  border: 2px solid var(--color-main);
  border-radius: 5px;
  margin-right: 10px;
}
.coupon-list .coupon-name {
  width: 300px;
  display: block;
  flex-wrap: wrap;
}
@media (max-width: 1400px) {
  .coupon-list .coupon-name {
    max-width: 150px;
  }
}
@media (max-width: 1080px) {
  .coupon-list .coupon-name {
    max-width: 100px;
  }
}
.coupon-list .coupon-item span {
  color: #9CA0B4;
}
@media (max-width: 425px) {
  .coupon-list .coupon-item {
    font-size: 12px;
  }
}
.coupon-list .btn-booking-add {
  margin-left: 5px;
  border-radius: 25px;
  background-color: transparent;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  width: 70px;
  height: 40px;
  font-weight: 600;
  font-size: 14px;
}
.coupon-list .btn-booking-add:hover {
  background-color: var(--color-main);
  color: #fff;
}

.coupon-select-show .list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--color-main);
}
.coupon-select-show .list div {
  display: flex;
  align-items: center;
}
.coupon-select-show .list div button {
  outline: none;
  box-shadow: none;
}

.booking-pass-select-show .list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--color-main);
}
.booking-pass-select-show .list div {
  display: flex;
  align-items: center;
}
.booking-pass-select-show .list div button {
  outline: none;
  box-shadow: none;
}

.not-booking {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background-color: #F5F5F5;
}
.not-booking h1 {
  font-size: 20px;
  font-weight: 600;
  color: #282E33;
}

.price-discount {
  color: var(--color-sub);
}

.overlay_option {
  background: transparent;
  z-index: -1;
  width: 0;
  height: 0;
  position: absolute;
}
.overlay_option.show {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.mobile-body {
  max-width: 370px;
  width: 100%;
  margin: auto;
  position: relative;
  background-color: #fff !important;
  padding: 10px;
  color: #1F376C;
  border-radius: 15px;
}
.mobile-body .row {
  color: #1F376C;
}
.mobile-body .btn {
  border-radius: 10px;
}
.mobile-body .img-room {
  width: 100%;
  padding-top: 61.9%;
  position: relative;
  overflow: hidden;
}
.mobile-body .img-room img {
  position: absolute;
  top: 0;
  left: 0;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.bg-checkin {
  background-color: rgba(3, 14, 25, 0.6) !important;
}

.card-booking .nav .nav-item .nav-link {
  background: transparent;
  border-radius: 0;
  font-size: 22px;
  color: var(--color-main);
  font-weight: 600;
}
.card-booking .nav .nav-item .nav-link.active {
  border-bottom: 3px solid var(--color-sub);
  color: var(--color-sub);
}

.age_children,
.age_children_to {
  width: 130px;
  padding-left: 5px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main);
  /* Firefox */
}
.age_children::-webkit-outer-spin-button, .age_children::-webkit-inner-spin-button,
.age_children_to::-webkit-outer-spin-button,
.age_children_to::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.age_children[type=number],
.age_children_to[type=number] {
  -moz-appearance: textfield;
}

.calendar-sub-menu {
  display: flex;
  align-items: center;
}
.calendar-sub-menu .menu-list {
  border-radius: 10px 10px 0 0;
  background-color: #F5F5F5;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-main);
  padding: 11px 22px;
  margin-left: 5px;
}
@media (max-width: 525px) {
  .calendar-sub-menu .menu-list {
    font-size: 12px;
    padding: 10px 5px;
    margin-left: 2px;
    width: 95px;
    text-align: center;
  }
}
@media (max-width: 400px) {
  .calendar-sub-menu .menu-list {
    font-size: 10px;
    padding: 10px 5px;
    margin-left: 2px;
    width: 85px;
    text-align: center;
  }
}
.calendar-sub-menu .active .menu-list {
  color: #fff;
  background-color: var(--color-main);
}
@media (max-width: 700px) {
  .calendar-sub-menu {
    max-width: 350px;
    width: 100%;
    overflow-x: scroll;
  }
}

.custom_list thead {
  display: none;
}
.custom_list td {
  border-bottom: none !important;
}
.custom_list td .card-booking {
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1019607843);
  border-radius: 10px;
}

.zone-list {
  max-width: 405px;
  height: 380px;
  overflow: hidden;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1019607843);
  position: relative;
}
.zone-list .img-4by3 {
  height: 320px;
}
.zone-list .zone-name {
  position: absolute;
  bottom: 0;
  font-size: 25px;
  height: 60px;
  width: 100%;
  font-weight: 600;
  color: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zone-list::after {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.zone-list.coming-soon::after, .zone-list.coming-soon-cn::after {
  content: "";
  opacity: 1;
  background: #474747;
  transition: all 0.3s ease-in-out;
}
.zone-list.coming-soon .zone-name, .zone-list.coming-soon-cn .zone-name {
  z-index: 3;
  font-weight: bold;
  color: #fff;
}
.zone-list:hover::after, .zone-list.coming-soon-img::after, .zone-list.coming-soon-img-cn::after, .zone-list.is-out-of-service::after, .zone-list.not-enter::after {
  content: "";
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.zone-list:hover .zone-name, .zone-list.coming-soon-img .zone-name, .zone-list.coming-soon-img-cn .zone-name, .zone-list.is-out-of-service .zone-name, .zone-list.not-enter .zone-name {
  z-index: 3;
  font-weight: bold;
  color: #fff;
}
.zone-list.coming-soon::before, .zone-list.coming-soon-img::before {
  content: "Coming soon";
  font-size: 45px;
  color: #fff;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.zone-list.coming-soon-cn::before, .zone-list.coming-soon-img-cn::before {
  content: "即將推出";
  font-size: 45px;
  color: #fff;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.zone-list:hover::after, .zone-list.register-hkstp-img::after, .zone-list.register-hkstp-img-cn::after, .zone-list.is-out-of-service::after, .zone-list.not-enter::after {
  content: "";
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.zone-list:hover .zone-name, .zone-list.register-hkstp-img .zone-name, .zone-list.register-hkstp-img-cn .zone-name, .zone-list.is-out-of-service .zone-name, .zone-list.not-enter .zone-name {
  z-index: 3;
  font-weight: bold;
  color: #fff;
}
.zone-list.register-hkstp::before, .zone-list.register-hkstp-img::before {
  content: "Please register as a Science Park Clubhouse member via HKSTP APP";
  font-size: 32px;
  color: #fff;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.zone-list.register-hkstp-cn::before, .zone-list.register-hkstp-img-cn::before {
  content: "請先透過香港科技園手機應用程式成為科學園會所會員";
  font-size: 32px;
  color: #fff;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.zone-list.is-out-of-service::before {
  content: "Out of Service";
  font-size: 45px;
  color: #fff;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.text-sub {
  color: var(--color-sub);
}

.btn-no-bg {
  border: none;
  background: none;
  margin-top: -5px;
  margin-left: 5px;
  outline: none !important;
}

.flex-between-end {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.select_full_day_event {
  border: 1px solid #dadee3;
  padding: 4px 10px;
  color: var(--color-main);
  position: relative;
  border-radius: 5px;
  width: 150px;
}

.check-box-align .align-items-center {
  align-items: flex-start !important;
}
.check-box-align .label_text {
  margin-top: -5px;
}
.check-box-align .scope_box_event {
  margin-top: 10px;
}

.month_show {
  font-size: 20px;
  color: #1d2b63;
  line-height: 35px;
  font-weight: 600;
  position: absolute;
  top: 0;
  background: #fff;
  width: 150px;
  margin-left: 0 !important;
}

.fc-daygrid-more-link.fc-more-link::after {
  content: "";
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  color: #091238;
  background: #fff;
}

.pagination-qrcode {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination-qrcode button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  border-radius: 5px;
  border: none;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  background-color: #ffffff;
  outline: none !important;
}
.pagination-qrcode button svg {
  fill: #282E33;
}
.pagination-qrcode .next {
  margin-left: 20px;
}
.pagination-qrcode .prev {
  margin-right: 20px;
}

.limit {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.limit .time {
  min-width: 180px;
  margin: 0;
}
.limit .time::after {
  content: attr(data-ticket);
  color: #F36F32;
  position: absolute;
  top: 50%;
  right: -30px;
  font-size: 14px;
  transform: translateY(-50%);
}
.limit .time .text-orange {
  color: #1C3068 !important;
}
.limit .time.select .text-orange {
  color: #fff !important;
}
.limit .time.disabled_full .text-orange {
  color: #9ca2a8 !important;
}
.limit .time.disabled .text-orange {
  color: #9ca2a8 !important;
}

.select-time-booking {
  display: flex;
  flex-direction: column;
}

.card-innocell .quantity {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-innocell .quantity .show-number {
  max-width: 50px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main);
  margin: 0 10px;
  outline: none !important;
  text-align: center;
  /* Firefox */
}
.card-innocell .quantity .show-number::-webkit-outer-spin-button, .card-innocell .quantity .show-number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.card-innocell .quantity .show-number:-moz-read-only {
  border: none;
}
.card-innocell .quantity .show-number:read-only {
  border: none;
}
.card-innocell .quantity .show-number[type=number] {
  -moz-appearance: textfield;
}
.card-innocell .quantity button {
  border: none;
  width: 20px;
  height: 20px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  outline: none !important;
}
.card-innocell .quantity button:disabled svg * {
  fill: #dadee3;
}

.select_stove .stove_limit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.select_stove .stove {
  min-width: 100px;
  margin: 0;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #dadee3;
  padding: 4px 14px;
  margin: 0 10px 10px 0;
  color: var(--color-main);
  cursor: pointer;
  position: relative;
}
.select_stove .stove .amount {
  color: #F36F32;
  position: absolute;
  top: 50%;
  right: -30px;
  font-size: 14px;
  transform: translateY(-50%);
}
.select_stove .stove.select {
  color: #fff;
  background-color: var(--color-sub);
  border-color: var(--color-sub);
}
.select_stove .stove.disabled {
  background-color: #eeeeed;
  border-color: #eeeeed;
  color: #9ca2a8;
  cursor: default;
}
.select_stove .stove.disabled_full {
  background-color: #eeeeed;
  border-color: #eeeeed;
  color: #9ca2a8;
  cursor: default;
}
.select_stove .quantity {
  display: flex;
  align-items: center;
  justify-content: center;
}
.select_stove .stove_amount {
  margin: 0 10px;
}
.select_stove button {
  border: none;
  width: 20px;
  height: 20px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  outline: none !important;
}
.select_stove button:disabled svg * {
  fill: #dadee3;
}

.fixed-bottom {
  z-index: 2000;
}

.link_event_open {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: flex;
  border: 2px solid #7b7373;
  align-items: center;
  justify-content: center;
}
.link_event_open[data-open="1"] svg path {
  fill: #0BAA22;
}

.payment-method .checkbox-sun input[type=checkbox] + label, .payment-method .checkbox-sun input[type=radio] + label {
  border-color: var(--color-main);
}
.payment-method .checkbox-sun input[type=checkbox] + label:before, .payment-method .checkbox-sun input[type=radio] + label:before {
  background-color: var(--color-main);
}
.payment-method .list-payment {
  min-height: 54px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dadee3;
  font-size: 16px;
  font-weight: 600;
  padding: 2px 22px;
  flex-wrap: wrap;
}
@media screen and (max-width: 575px) {
  .payment-method .list-payment {
    padding: 2px 0;
  }
}

.bg-login {
  background-image: url("../img/bg_index_v4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.container-login {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.box-login {
  background: rgba(255,255,255,0.8);
  padding: 3.625rem;
  border-radius: 1.25rem;
  max-width: 456px;
  width: 100%;
  height: auto;
}

.btn-login {
  background: #1f376c;
  color: #fff;
}

.btn-register {
  background: #FF6C0E;
  color: #fff;
  outline: none !important;
  box-shadow: none !important;
}

.btn-register:hover {
  color: #fff;
  background: #f5621e;
}

.header {
  background: #1d2b63;
  z-index: 1000;
}

.border-right-darkblue {
  border-right: solid 1px #0a1337;
}

.form-input {
  border: solid 1px #9ca0b3 !important;
  border-radius: 0.25rem;
  font-size: 15px;
  padding: 0 10px;
  font-weight: 700;
  color: #1d2b63;
}

.border-edit {
  border: #d1d4dd solid 1px;
  border-radius: 1rem;
  padding: 0 8px;
  height: 25px;
  text-align: center;
  cursor: pointer;
}

.navbar {
  padding: 5px 0;
}

.btn-hover {
  color: #fff;
  border: solid 1px #fff;
  background-color: #1d2b63;
}

.btn-hover:hover,
.btn-hover.active {
  background-color: #f36f32;
  border-color: #f36f32;
  color: #1d2b63;
}

.text-orange {
  color: #f36f32 !important;
}

.text-darkblue {
  color: #282e33;
}

.text-blue {
  color: #1f376c;
}

.text-blackblue {
  color: #1d2b63;
}

.bg-profile {
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(136, 136, 136, 0.29);
  border-radius: 15px;
  padding: 15px;
}

.personal-detials {
  background-color: #f5f5f5;
  padding: 5px 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  margin-top: 5px;
}

.btn-save {
  background-color: #1d2b63;
  color: #fff;
  max-width: 65px;
  height: 35px;
  outline: none !important;
  box-shadow: none !important;
}

.remove-border {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.btn-cancel {
  background-color: #f5f5f5;
  color: #1d2b63;
  max-width: 75px;
  height: 35px;
  outline: none !important;
  box-shadow: none !important;
}

hr {
  border-top: 1px solid #f5f5f5;
}

.border-bottom-notification {
  border-bottom: solid 1px #f5f5f5;
}

.btn-save:hover {
  color: #fff;
}

.btn-enroll {
  background-color: #1d2b63;
  color: #fff;
  max-width: 106px;
  height: 35px;
}

.btn-enroll:hover {
  color: #fff;
}

.btn-return {
  background-color: #fff;
  border: solid 1px #a5aabd;
  width: 145px;
  height: 40px;
  outline: none !important;
  box-shadow: none !important;
}

.btn-return:hover {
  background-color: #f5f5f5;
}

.btn-confirm-enrollment:hover {
  color: #fff;
  background-color: #182352;
}

.btn-confirm-enrollment {
  background-color: #1d2b63;
  color: #fff;
  outline: none !important;
  box-shadow: none !important;
}

.header-pagination {
  display: none !important;
}

.btn-search {
  background-color: #f36f32;
  color: #fff;
  width: 110px;
  height: 35px;
}

.btn-search:hover {
  color: #fff;
}

.profile-input {
  height: 40px;
  width: 290px;
  padding-left: 15px;
  border: 1px solid #9ca0b4;
  border-radius: 5px;
  margin-bottom: 0;
}

.box-record {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 250px;
  background-color: #f5f5f5;
  border-radius: 5px;
}

.border-blue {
  border-top: solid 1px #d1d4dd;
}

.box-record-found {
  background-color: #f5f5f5;
  border-radius: 5px;
  padding: 15px;
}

.enrolled {
  color: #0baa22;
}

.pending {
  color: #9ca0b4;
}

.paid {
  color: #31c947;
}

.text-yellow {
  color: #ffbd3a;
}

.btn-return-dark {
  background-color: #1d2b63;
  color: #fff;
  width: 160px;
  height: 40px;
  outline: none !important;
  box-shadow: none !important;
}

.btn-return-dark:hover {
  color: #fff;
}

.text-bluelight {
  color: #9ca0b4;
}

.link {
  color: #1f376c;
}

.link-myenrollment {
  color: #1d2b63;
}

.link-myenrollment:hover {
  color: #1d2b63;
}

.link:hover {
  color: #1f376c;
}

.card-enrollment {
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(136, 136, 136, 0.29);
  border-radius: 0 15px 15px 15px;
  padding: 15px;
  min-height: 84vh;
}

.btn-cancel-activity {
  background-color: #fe635b;
  color: #fff;
  min-width: 106px;
  padding: 0;
  height: 35px;
  border-radius: 5px;
  border: none;
  outline: none;
}

.btn-cancel-activity:hover {
  background-color: #fd534a;
}

.btn-cancel-activity:focus {
  outline: none;
}

.img-booking-confirm {
  -o-object-fit: cover;
     object-fit: cover;
  width: 315px;
  border-radius: 10px;
}

.ml-star {
  margin-left: 17px;
  margin-right: 49px;
}

@media screen and (max-width: 398px) {
  .box-login {
    padding: 1.5rem;
  }
  .nav-left {
    margin-top: 0.5rem;
  }
  .btn-group-return {
    flex-direction: column;
  }
  .btn-return,
.btn-confirm-enrollment {
    width: 100%;
  }
  .btn-confirm-enrollment {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 460px) {
  .flatpickr-input {
    width: 170px !important;
  }
}
@media screen and (max-width: 576px) {
  .font-mobile-regular {
    font-weight: 400;
  }
  .live-once-img-area {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1074px) {
  .text-payment {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .text-payment {
    font-size: 18px;
  }
}
.menu-list .menu-noti {
  margin-left: 5px;
  border-radius: 50%;
  background-color: #dad6d6;
  color: rgb(0, 0, 0);
  height: 23px;
  width: 23px;
  text-align: center;
  margin-top: 1px;
  font-size: 14px;
  padding-top: 2px;
}
.menu-list.active .menu-noti, .menu-list:hover .menu-noti {
  background-color: rgb(243, 111, 50);
  color: #fff;
}

.tab-noti {
  margin-left: 5px;
  border-radius: 23px;
  background-color: #dad6d6;
  color: rgb(0, 0, 0);
  height: 23px;
  min-width: 23px;
  margin-top: 1px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -10px;
  right: 0;
}

.zone-detail {
  margin: 20px 15px;
}
.zone-detail .title {
  font-size: 22px;
  font-size: 600;
  color: #1F376C;
}
.zone-detail .detail {
  font-size: 15px;
  color: #9CA0B4;
  text-align: center;
}

.scan-to-pay-loading {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  padding: 10px 18px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.scan-to-pay-loading p {
  margin-bottom: 0px;
  color: #ffffff;
  margin-top: 5px;
  font-size: 18px;
  font-weight: bold;
}/*# sourceMappingURL=main.css.map */

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}