﻿.room-title {
  color: lightgray;
  font-weight: bold;
  font-size: 16px;
}
.nowrap-text {
  white-space: nowrap;
}
.schedule-grid {
  position: relative;
}
.schedule-grid .open-grid .open-time {
  position: absolute;
  background-color: grey;
  width: 101%;
  opacity: 0.2;
  left: -1%;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.schedule-grid .time-grid {
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0%;
  width: 100%;
  z-index: 5;
}
.schedule-grid .time-grid .time-grid-row {
  border-top: 1px solid gray;
  border-radius: 5px;
  /*border-bottom: 1px solid gray;
            &:first-child {
                border-top: 1px solid gray;
            }*/
}
.schedule-grid .time-grid .time-grid-row.time-grid-row-midnight {
  border-width: 4px 0px 0px 0px;
  border-color: #969696;
  font-weight: bold;
}
.schedule-grid .time-grid .time-grid-row-part {
  border-top: 1px dashed gray;
  border-radius: 5px;
}
.schedule-grid .time-grid-clickable {
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0%;
  width: 100%;
  z-index: 5;
}
.schedule-grid .time-grid-clickable .time-grid-row {
  border-top: 1px solid gray;
  border-radius: 5px;
  /*border-bottom: 1px solid gray;
            &:first-child {
                border-top: 1px solid gray;
            }*/
}
.schedule-grid .time-grid-clickable .time-grid-row.time-grid-row-midnight {
  border-width: 4px 0px 0px 0px;
  border-color: #969696;
  font-weight: bold;
}
.schedule-grid .time-grid-clickable .time-grid-row:hover {
  background-color: gray;
  cursor: pointer;
}
.schedule-grid .time-grid-clickable .time-grid-row-part {
  border-top: 1px dashed gray;
  border-radius: 5px;
}
.schedule-grid .time-grid-clickable .time-grid-row-part:hover {
  background-color: gray;
  cursor: pointer;
}
.schedule-grid .scheduled-exam-grid {
  height: 100%;
  position: absolute;
  top: 0px;
  left: 10%;
  width: 89%;
}
.schedule-grid .scheduled-exam-grid .exam-schedule-block {
  padding: 5px;
  border: 1px solid blue;
  opacity: 1;
  background-color: rgba(0, 0, 255, 0.7);
  position: absolute;
  border-radius: 5px;
  left: 10%;
  width: 88%;
  overflow: hidden;
  z-index: 10;
  cursor: pointer;
  color: white;
}
.schedule-grid .scheduled-exam-grid .exam-schedule-block:hover {
  background-color: rgba(0, 0, 255, 0.9);
}
.schedule-grid .scheduled-exam-grid .exam-schedule-block:hover.schedule-unavailability-block {
  background-color: rgba(50, 50, 50, 0.9);
}
.schedule-grid .scheduled-exam-grid .exam-schedule-block:hover.schedule-availability-block {
  background-color: rgba(0, 0, 50, 0.9);
}
.schedule-grid .scheduled-exam-grid .exam-schedule-block.exam-block-cancelled {
  background-color: #ff0000;
  border: 1px solid red;
  opacity: 0.1;
  z-index: -100;
}
.schedule-grid .scheduled-exam-grid .exam-schedule-block.exam-double-booked-a {
  width: 60%;
}
.schedule-grid .scheduled-exam-grid .exam-schedule-block.exam-double-booked-b {
  left: 38%;
  width: 60%;
}
.schedule-grid .scheduled-exam-grid .exam-schedule-block.expanded-exam-block {
  height: auto !important;
  max-height: 50vh !important;
  width: 90vw !important;
  position: fixed;
  z-index: 50;
  left: 5vw !important;
  top: 20vh !important;
}
@media (min-width: 768px) {
  .schedule-grid .scheduled-exam-grid .exam-schedule-block.expanded-exam-block {
    width: 40vw !important;
    left: 30vw !important;
  }
}
.schedule-grid .scheduled-exam-grid .exam-schedule-block.expanded-exam-block.schedule-unavailability-block {
  background-color: rgba(50, 50, 50, 0.9);
}
.schedule-grid .scheduled-exam-grid .exam-schedule-block.expanded-exam-block.schedule-availability-block {
  background-color: rgba(0, 0, 50, 0.9);
}
.schedule-grid .scheduled-exam-grid .exam-schedule-block.exam-block-clone {
  background: transparent !important;
  cursor: default;
}
.schedule-grid .scheduled-exam-grid .exam-schedule-block.expanded-exam-block {
  cursor: default;
}
.schedule-grid .scheduled-exam-grid .schedule-unavailability-block {
  left: 0%;
  width: 100%;
  background-color: rgba(50, 50, 50, 0.7);
  border-color: #323232;
  z-index: 1;
}
.schedule-grid .scheduled-exam-grid .schedule-availability-block {
  left: 0%;
  width: 100%;
  background-color: rgba(0, 0, 50, 0.7);
  border-color: #000032;
  z-index: 1;
}
.schedule-grid .scheduled-exam-grid .exam-requested-block {
  background-color: rgba(0, 125, 0, 0.7);
  border-color: #007d00;
}
.schedule-grid .scheduled-exam-grid .exam-requested-block:hover {
  background-color: rgba(0, 125, 0, 0.9);
}
.schedule-grid .scheduled-exam-grid .now-line {
  position: absolute;
  border-top: 1px solid white;
  width: 101%;
  text-align: right;
  font-size: 10px;
  border-image: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
  border-image-slice: 1;
  z-index: 11;
}
.exam-order-block {
  height: auto !important;
  width: 90vw !important;
  position: fixed;
  z-index: 50;
  left: 5vw !important;
  top: 7vh;
  background-color: rgba(0, 125, 0, 0.9);
  border-radius: 5px;
}
@media (min-width: 768px) {
  .exam-order-block {
    width: 80vw;
    left: 10vw;
  }
}
.close-button {
  float: right;
  font-size: 16pt;
  padding: 6px;
  margin-right: 4px;
  border-radius: 3px;
}
.close-button:hover {
  cursor: pointer;
  color: #000000;
}
.exam-order-label {
  float: left;
  font-size: 16pt;
  padding-left: 15px;
  padding-top: 5px;
}