/* line 4, ../src/scss/jquery.schedule.scss */
.jqs {
  position: relative;
  padding: 40px 20px 20px 60px;
  overflow-y: scroll;
  font-family: system, -apple-system, Roboto, Helvetica Neue, Arial, Helvetica, Geneva, sans-serif;
  box-sizing: border-box;
}
/* line 11, ../src/scss/jquery.schedule.scss */
.jqs .jqs-table {
  position: relative;
  z-index: 10;
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
  border-spacing: 0;
  box-sizing: content-box;
}
/* line 19, ../src/scss/jquery.schedule.scss */
.jqs .jqs-table td, .jqs .jqs-table th {
  padding: 0;
}
/* line 22, ../src/scss/jquery.schedule.scss */
.jqs .jqs-table td {
  width: 14.28571%;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
/* line 29, ../src/scss/jquery.schedule.scss */
.jqs .jqs-grid {
  position: absolute;
  top: 40px;
  left: 60px;
  right: 20px;
  box-sizing: content-box;
}
/* line 35, ../src/scss/jquery.schedule.scss */
.jqs .jqs-grid .jqs-grid-line {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid transparent;
  position: relative;
  height: 38px;
}
/* line 40, ../src/scss/jquery.schedule.scss */
.jqs .jqs-grid .jqs-grid-line:last-child {
  height: 0;
  border-bottom: none;
}
/* line 44, ../src/scss/jquery.schedule.scss */
.jqs .jqs-grid .jqs-grid-line span {
  position: absolute;
  top: -7px;
  left: -50px;
  font-size: 12px;
  display: block;
  width: 42px;
  text-align: right;
}
/* line 53, ../src/scss/jquery.schedule.scss */
.jqs .jqs-grid .jqs-grid-line:before {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  width: 100%;
  background: #eee;
}
/* line 63, ../src/scss/jquery.schedule.scss */
.jqs .jqs-grid .jqs-grid-head {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  display: flex;
}
/* line 69, ../src/scss/jquery.schedule.scss */
.jqs .jqs-grid .jqs-grid-head .jqs-grid-day {
  width: 14.28571%;
  text-align: center;
  font-size: 12px;
}
/* line 78, ../src/scss/jquery.schedule.scss */
.jqs .jqs-wrapper {
  width: 100%;
  height: 960px;
  position: relative;
}
/* line 84, ../src/scss/jquery.schedule.scss */
.jqs .jqs-period {
  position: absolute;
  width: 100%;
  min-height: 20px;
  font-size: 11px;
  line-height: 1;
}
/* line 91, ../src/scss/jquery.schedule.scss */
.jqs .jqs-period .jqs-period-placeholder {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  padding: 3px;
  background: rgba(82, 155, 255, 0.5);
  border: 1px solid #2a3cff;
  border-radius: 3px;
}
/* line 103, ../src/scss/jquery.schedule.scss */
.jqs .jqs-period .jqs-remove {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 14px;
  width: 14px;
  cursor: pointer;
}
/* line 111, ../src/scss/jquery.schedule.scss */
.jqs .jqs-period .jqs-remove:before, .jqs .jqs-period .jqs-remove:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 2px;
  left: 6px;
  background: #2a3cff;
}
/* line 121, ../src/scss/jquery.schedule.scss */
.jqs .jqs-period .jqs-remove:before {
  transform: rotate(45deg);
}
/* line 124, ../src/scss/jquery.schedule.scss */
.jqs .jqs-period .jqs-remove:after {
  transform: rotate(-45deg);
}
/* line 130, ../src/scss/jquery.schedule.scss */
.jqs .jqs-period:hover .jqs-remove {
  display: block;
}
