html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

body.show-spinner > main {
  overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner > *{
  opacity: 0;
}

/* Spinner */
body.show-spinner::after{
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

/*====  커스텀 CSS ====*/

td {
  /*vertical-align: baseline !important;*/
}
.list-group-flush .list-group-item{
  padding:7px 1px;
}
/*미처리 예약건 */
tr.new td {
  background: #ffe26e !important;
}

.fc-toolbar h2{font-size: 24px}
.calendar h2{font-size: 24px !important}

.fc-past{background-color: #fffaf5}

.fc-bootstrap4 .fc-day-top .fc-day-number{width:60px;border-radius: 10px;}
.fc-ltr .fc-basic-view .fc-day-top .fc-day-number{width:60px;border-radius: 10px;}
.fc-toolbar h2 small{font-size:60%}

/*====  커스텀 CSS  끝 ====*/



@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.logo {
    width: 290px;
    background-size: 290px;
}

.menu .main-menu ul li a{
    text-align: center;
}


.navbar .search{
    width:300px;
}
