.weekdayHeader {
    position: relative;
}

.timesCol {
    margin: 0;
    color: #fff;
    padding: 0px;
    width: 10%;
}

.timesCol li {
    height: 30px;
    padding: 15px 20px;
    border: none;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px #222 solid;
}

.scheduleRow {
    margin: 0;
    padding: 0;
}

.scheduleRow li {
    padding: 5px 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scheduleCol {
    list-style: none;
    width: 100%;
    border-right: 1px #BABABA solid;
}

.weekDaysHolder {
    display: flex;
    width: 100%;
}

.weekView {
    width: 100%;
}

.weekLayout {
    width: 100%;
    display: flex;
    margin-top: 60px;    
}

/* Scrollbar Style */

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #222;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

.weekDaysCol {
    display: flex;
    position: absolute;
    top: 106px;
    background: #222;
    color: #fff;
    width: 90%;
    padding: 0 0 0 10%;
    margin: 0;
    justify-content: space-evenly;
    text-transform: uppercase;
    font-size: 1.1em;
}

.weekDaysCol li {
    list-style: none;
    padding: 20px;
}

.weekSchedule {
    width: 100%;
}

.specificDate {
    position: absolute;
    font-size: 12px;
    bottom: px;
}