.weekcal {
  font-family: sans-serif;
  width: 100%;
  margin: 0 auto;
  padding-right: 10px;
  border-spacing: 0;
  border-collapse: separate;
  /* table-layout: fixed; */
  /* margin-bottom: 50px; */
}
.weekcal thead tr th {
  /* background: #626E7E;
  color: #d1d5db; */
  padding: 0.5em;
  overflow: hidden;
}
.weekcal thead {
   border: 1px solid #fefe !important;
}
.weekcal thead tr th {
  border-radius: 0;
  border-bottom: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  background: #fff;
  /* background: linear-gradient(rgb(243, 243, 243) 0px, rgb(233, 233, 233));
  background: linear-gradient(180deg, #5542c5, #5542c5); */
  /* padding: 10px;

}
.weekcal thead tr th:last-child {
  border-radius: 0 3px  0 0;
  border-right: 1px solid #dadce0;
}
.weekcal thead tr th .day {
    display: block;
    font-size: 2.2em;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 auto 5px;
    padding: 7px 13px;
    font-weight: 500;
    /* line-height: 1.8; */
}
.weekcal thead tr th .long {
    display: block;
    text-align: center;
    color: #5e6c84;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
}
.weekcal thead tr th .day.active {
  background: #d1d5db;
  color: #626E7E;
}
.weekcal thead tr th .short {
  display: none;
}
.weekcal thead tr th i {
  vertical-align: middle;
  font-size: 2em;
}
.weekcal tbody tr {
  background: #d1d5db;
}
.weekcal tbody tr:nth-child(odd) {
  background: #c8cdd4;
}

.weekcal tbody tr td {
  border-bottom: 1px solid #e5e5e5;
  background: white;

}
.weekcal tbody tr td {
  text-align: center;
  vertical-align: middle;
  border-left: 1px solid #e5e5e5;
  position: relative;
  height: 25px;
  cursor: pointer;
}
.weekcal tbody tr td:last-child {
  border-right: #dadce0 1px solid;
}
.weekcal tbody tr td.hour {
  font-size: 1.2rem;
  /* padding: 12px; */
  color: #0E71EB;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  border-collapse: separate;
  min-width: 85px;
  cursor: default;
  font-weight: 500;
}
.weekcal tbody tr td.hour span {
  display: block;
}
.ctx-menu-container{
  margin: 50px !important;
}
@media (max-width: 60em) {
  .weekcal thead tr th .long {
    /* display: none; */
  }
  .weekcal thead tr th .short {
    display: block;
  }
  .weekcal tbody tr td.hour span {
    /* transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg); */
  }
}
@media (max-width: 27em) {
  .weekcal thead tr th {
    font-size: 65%;
  }
  .weekcal thead tr th .day {
    display: block;
    font-size: 1.2em;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin: 0 auto 5px;
    padding: 5px;
  }
  .weekcal thead tr th .day.active {
    background: #d1d5db;
    color: #626E7E;
  }
  .weekcal tbody tr td.hour {
    font-size: 100%;
  }
  .weekcal tbody tr td.hour span {
    /* transform: translateY(16px) rotate(270deg);
    -webkit-transform: translateY(16px) rotate(270deg);
    -moz-transform: translateY(16px) rotate(270deg); */
  }
}
