.calCell{
  line-height: 80px;
  height: 80px;
  text-align: center;
  border-bottom: 1px solid black;
  border-right: 1px solid black;
}
.calCell span.calText{
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
}
.topCell{
  border-top: 1px solid black;    
}
.leftCell{
  border-left: 1px solid black;
}
.slotCell{
  background-color: #ed6d19;
  color: white;
}
.dayCell{
  background-color: #ed6d19;
  color: white;
}
.calCell.selected{
    background-color: #d9f9d9;
}
.calCell.enrolled{
    background-color: #567bbd;
    color: white;
}



.layoutCard{

    background-color: white;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    border: 5px solid transparent;
    line-height: 30px;
  margin-bottom: 10px;
/* 
    display: flex;
       flex-direction: column;
   height: 30px;
   
    */
      color: #444444;
}

.removeChildButton
{
    float:right;
    display:block;
    float:right;
    width:30px;
    height:29px;
    color: white;
    font-weight: bold;
    font-size: 200%;
    text-align: center;
    line-height: 29px;
    padding: 0px;
}
.cardContent{
  padding: 10px;
}

.currencyAlign
{
    width: 80px;
    text-align: right;
}
.userNameAvailable
{
    color: darkgreen;
}
.userNameUnavailable
{
    color: darkred;
}
.bold {
    font-weight: bold;
}
.textCenter {
    text-align: center;
}

.enrolmentForm .control-label {
    font-weight: bold;
}

.calendarActionMessage {
    font-weight: bold;    
    text-align: center;
}

/* spinner css */

.bounce-spinner {
  width: 40px;
  height: 40px;

  position: absolute;
  top:50%;
  left: 50%;
  margin: -20px -20px;

  z-index: 1070;
}


.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FFF;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}