#select-table {
  height: 200px;
}
#select-table tbody tr {
  height: 40px;
}
#select-table thead th {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: #aaa;
}
#select-table th:first-child {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
}
#select-table thead th:first-child {
  z-index: 2;
}
#select-table th {
  border: 1px solid #fff;
  font-size: 0.7rem;
  white-space: nowrap;
}
#select-table td {
  padding: 0;
  cursor: pointer;
}
#select-table td.reserved {
  background-color: #111;
  cursor: default;
}
#select-table td:nth-child(odd) {
  border-left-style: dotted;
}
#select-table td:nth-child(even) {
  border-right-style: dotted;
}
#select-table td i {
  display: block;
  height: 40px;
  width: 20px;
}

.datepicker {
  background-color: #e9ecef !important;
  cursor: initial !important;
}

.popup {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.popup #popup {
  width:50%;
  line-height:300px;
  background:#fff;
  border:1px solid #000;
  padding:0 4%;
  box-sizing:border-box;
  display:none;
  position:fixed;
  top:50%;
  left:50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.popup img{
  width:100%;
  height: auto;
}
.popup span {
  display: inline-block;
  background-color:#01b6ed;
  color:#fff;
  width:150px;
  line-height:40px;
  border-radius:4px;
  text-align:center;
}
.popup span:hover{
  cursor:pointer;
}
.popup input[type="checkbox"]{
  display:none;
}
.popup input[type="checkbox"]:checked + #popup {
  display:block;
  z-index: 2000;
}

.btn-vacancy {
  margin: 0;
}

.ui-widget.ui-widget-content {
  z-index: 999999 !important;
}

.ui-dialog .ui-dialog-titlebar {
  padding: 0 !important;
}
.ui-dialog .ui-dialog-content {
  overflow: initial !important;
  padding: 16px !important;
}

@media screen and (max-width: 768px) {
  .popup #popup {
    width:80%;
    line-height:200px;
  }
}

.is-hide{
 display:none; 
}
.loading{
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  left:0;
  background:rgba(0,0,0,.5);
}
.loading::before{
  content:"";
  display:block;
  position:fixed;
  left:50%;
  top:50%;
  width:50px;
  height:50px;
  border-radius:5px;
  margin-top:-15px;
  margin-left:-15px;
  background:white;
}
.loading::after{
  content:"";
  display:block;
  position:fixed;
  left:50%;
  top:50%;
  width:32px;
  height:32px;
  border-radius:20px;
  margin-top:-7px;
  margin-left:-7px;
  border:4px solid #60ABB9;
  border-right:4px solid white;
  animation: rotate 1s infinite linear;
}
@keyframes rotate {
  0%    { transform: rotate(0deg); }
  100%  { transform: rotate(360deg); }
}