.a_flexer {
    background-color: rgb(50, 50, 50);
    display:flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    order: 1;
    //EXPERIMENTAL BELOW
    //white-space: nowrap;
}

.a_flexer_fixed {
    background-color: rgb(50, 50, 50);
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    overflow-y: hidden;
}


.SS_content {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    overflow-y: auto;
    overflow-x: auto;
}




.a_flexer_scrollbox_vert {
    background-color: rgb(50, 50, 50);
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    overflow: auto;
    white-space: nowrap;
    order: 2;
}


.a_flexer_light {
    background-color: rgb(236, 236, 236);
    display:flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    order: 1;
}

.b_flexer {
    background-color: transparent;
    display:flex;
    flex-direction: row;
    //line-height: 18px;
    font-size: 13px;
    //flex-grow: 1;
    order: 1;
    justify-content: center;
}

.bannerTitle {
    font-size:25px;
}

.c_flexer {
    background-color: transparent;
    display: flex;
    //text-align: center;
    padding: 3px;
    justify-content: center;
    text-align: center;
    order: 1;
}

#calendar {
    flex-grow: 1;
    //position: relative;
    order: 2;
}

#skedsDailyText {
    flex-grow: 1;
    color: white;
    order: 1;
}

.phoneList {
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    list-style: none;
    justify-content: space-around;
    order:1;
    padding: 0;
    padding-top: 12px;
}

.phoneList a {
    background-color: rgb(50,50,160);
    color: white;
    margin: 6px;
    padding:4px;
    min-width: 64px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    text-decoration: none;
}

.phoneList a:hover {
  background-color: rgb(90,90,190);
  //min-width: 230px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}


.phoneList a:first-child {
    //background-color: blue;
    //margin-top: 12px;
}


@media all and (max-width:770px) {
    .b_flexer {
        flex-direction: column;
        text-align: center;
        //justify-content: center;
    }
    .phoneList{
        flex-direction: row;
        order:2;
    }
    #calendar{
        order: 1;
    }
}



/* CALENDAR OPS HERE */

.wholeCalendar {
    background-color:transparent;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.month {
  max-width: 560px;
  width:100%;
  //margin: 20px auto;
}

.monthSS {
  //max-width: 560px;
  //width:100%;
  //margin: 20px auto;
  width:100%;
  //overflow-x:auto;
}

.dailyAvailView {
    max-width: 560px;
    width:100%;
    margin-bottom: 50px;

}

.monthName {
  //min-height: 28px;
  font-size:25px;
  color: white;

}

.monthNameSS {
  //min-height: 28px;
  font-size:25px;
  color: white;
  text-align: center;
}

.week {
  display: flex;
  min-height: 70px;
}

#skedsDailyWeek {
    min-height: 23px;
}

.weekDayName {
  display: flex;
  height: 22px;
  line-height: 20px;
}

.weekDayNameSS {
  display: flex;
  height: 22px;
  line-height: 20px;
}

.day {
  line-height: 15px;
  font-size: 19px;
  min-width:12px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  padding: 2px;
  background-color: rgb(105, 105, 105);
  color: white;
  box-shadow:
    -1px -1px black,
    inset -1px -1px 0 0 black;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.day_HORIZ {
  line-height: 15px;
  font-size: 19px;
  min-width:12px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  padding: 2px;
  background-color: rgb(105, 105, 105);
  color: white;
  box-shadow:
    -1px -1px black,
    inset -1px -1px 0 0 black;
  text-align: left;
  display: flex;
  flex-direction: row
}

.daySS {
  line-height: 15px;
  font-size: 8px;
  width:15px;
  flex-grow: 0;
  flex-shrink: 0;
  //flex-basis: 0;
  padding: 2px;
  background-color: rgb(105, 105, 105);
  color: white;
  box-shadow:
    -1px -1px black,
    inset -1px -1px 0 0 black;
  //text-align: left;
  //display: flex;
  //flex-direction: column;
}

.daySSL {
  line-height: 15px;
  font-size: 8px;
  width:15px;
  flex-grow: 0;
  flex-shrink: 0;
  //flex-basis: 0;
  padding: 2px;
  background-color: rgb(105, 105, 105);
  color: white;
  box-shadow:
    0px -1px black,
    inset 0px -1px 0 0 black;
  //text-align: left;
  //display: flex;
  //flex-direction: column;
}

.daySSR {
  line-height: 15px;
  font-size: 8px;
  width:15px;
  flex-grow: 0;
  flex-shrink: 0;
  //flex-basis: 0;
  padding: 2px;
  background-color: rgb(105, 105, 105);
  color: white;
  box-shadow:
    0px -1px black,
    inset -1px -1px 0 0 black;
  //text-align: left;
  //display: flex;
  //flex-direction: column;
}

.nameSS {
  line-height: 15px;
  font-size: 12px;
  width:60px;
  flex-grow: 0;
  flex-shrink: 0;
  //flex-basis: 0;
  padding: 2px;
  background-color: rgb(105, 105, 105);
  color: white;
  box-shadow:
    -1px -1px black,
    inset -1px -1px 0 0 black;
  //text-align: left;
  //display: flex;
  //flex-direction: column;
}

#skedsDailyDay{
    text-align: center;
}

.notCurrentMonth {
    color: rgb(149, 149, 149); // this is the text of the numbers for the days not in this month
}

.today {
    font-weight: bold;
    color: rgb(0, 0, 0); 
}

.wd {
  background-color: rgb(125, 125, 155);  // this is the background of shaded days
}

.onAlert {
  background-color: rgb(180, 100, 100);  // this is the background of shaded days
}

.day-btn {
  line-height: 15px;
  font-size: 19px;
  min-width:12px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  padding: 5px;
  background-color: transparentize(white, 0.30);
  box-shadow:
    -1px -1px black,
    inset -1px -1px 0 0 black;
  text-align: left;
  display: flex;
  flex-direction: column;
  border: none;
}


#dayOfWeek {
  text-align: center;
}



/* CALENDAR OPS END */



#leftJustifiedText {
    text-justify: left;
    color:white;
    max-width: 400px;
}


.topBar {
    background-color: rgb(99, 133, 146);
    display: flex;
    height: 48px;
    justify-content: space-between;
}

.topBar-logoutButton {
  background-color: rgb(50,50,160);
  color: white;
  //padding: 4px;
  //font-size: 16px;
  border: none;
  min-width: 64px;
  height: 48px;
}

.topBar-logoutButton:hover {
  background-color: red;
}


.topBar-logoSELECTED {
    color: white;
    //font-size: 19px;
    //background-color: rgb(69,121,145);
    //padding-left: 6px;
    //padding-right: 6px;
}

.topBar-chicken2 {
  max-height: 38px;
}

.LoX-X {
  max-height: 10px;
}

.kidSelector {
    height: 48px;
    white-space: nowrap;
    overflow-x: auto;
    //overflow-x: auto;
}

.topBar-adminBanner {
  background-color: #bee5eb;
  color: red;
  font-size: 34px;
  padding-left: 6px;
  padding-right: 6px;
}

.topBar-menu {
    //height: 60px;
}


/*DROPDOWN BUTTON STUFF BEGINS HERE /////////////////////////////////////////////// */
.dropbtn {
  background-color: rgb(50,50,160);
  color: white;
  //padding: 16px;
  //font-size: 16px;
  border: none;
  cursor: pointer;
  //min-width: 88px;
  width: 80px;
  height: 48px;  // THE TOPBAR HEIGHT IS ALWAYS 48px, FIXED
}

.dropbtn-cal-event {

  //line-height: 15px;
  line-height: 13px;
  margin: 0px;
  margin-top: 2px;
  width: 100%;
  min-width:12px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  padding: 2px;
  padding-left: 1px;
  //box-shadow:
    -1px -1px black,
    inset -1px -1px 0 0 black;
    border-radius: 4px;
  text-align: left;
  border: none;
  background-color: transparent;
  color: white;
  font-size: 11px;
  cursor: pointer;
  white-space: nowrap;
  overflow-x: hidden;
  display: block;
}

.dropbtn-cal-event-puck1 {

  //line-height: 15px;
  line-height: 13px;
  margin: 0px;
  margin-top: 2px;
  width: 100%;
  min-width:12px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  padding: 2px;
  padding-left: 1px;
  //box-shadow:
    -1px -1px black,
    inset -1px -1px 0 0 black;
    border-radius: 4px;
  text-align: left;
  border: none;
  //background-color: transparent;
  background-color: rgb(0, 0, 203);
  color: white;
  font-size: 11px;
  cursor: pointer;
  white-space: nowrap;
  overflow-x: hidden;
  display: block;

}

.dropbtn-passhours {

  //line-height: 15px;
  line-height: 13px;
  margin: 0px;
  margin-top: 2px;
  width: 100%;
  min-width:12px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  padding: 2px;
  padding-left: 1px;
  //box-shadow:
    -1px -1px black,
    inset -1px -1px 0 0 black;
    border-radius: 4px;
  text-align: center;
  border: none;
  background-color: transparent;
  color: black;
  font-size: 11px;
  cursor: pointer;
  white-space: nowrap;
  overflow-x: hidden;
  display: block;
}

#WNBtn {
  background-color: rgb(222, 222, 222);
  color:black;
}



.dropdown {
  position: relative;
  display: inline-block;
}


#kidSelect-dropbtn {
    width: auto;
    min-width: 110px;
    overflow: hidden;
    background-color:rgb(0, 99, 99);
}



/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 230px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.midalignit {
    //position: relative;
    left: -40px;
    top: -15px;
    text-align: center;
    min-width: 0px;
    white-space: nowrap;
    //box-shadow: -1px -1px black, inset -1px -1px 0 0 black;
    outline: 1px solid black;

}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* FIRST CHILD inside the dropdown */
.midalignit *:first-child {
  background-color: rgb(20,20,120);
  color:white;
  //margin: 2px;
  font-size: 30px;
  text-decoration: none;
  display: block;
  padding: 12px 16px;
}
/* DIV inside the dropdown */
.dropdown-content div {
  color: black;
  padding: 0;
  text-decoration: none;
  display: block;
}

/* delete button inside the dropdown */
#delBtn {
  font-size: 20px;
  color: white;
  background-color: red;
  padding: 3px;
  text-decoration: none;
  display: inline-block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #e0e0f0}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: rgb(50,50,160);
}
/*DROPDOWN BUTTON STUFF ENDS HERE ///////////////////////////////////  */

.userAdmin-secondTopBox {
    display: flex;
    justify-content: space-around;
    padding: 5px;
    flex-wrap: wrap;
}


.userAdmin-radioButtons {
    display:flex;
    padding-left: 10px;
}

.userAdmin-list-group {
    list-style: none;
    padding: 0;
    margin: 0;
}

.userAdmin-listTitle {
    font-size: 30px;
    padding: 0;
}

.userAdmin-titleButton {
    margin: 5px;
}

.list-group-item-info {
    display:flex;
    flex-wrap: wrap;
    padding-left: 5px;
    padding-right: 5px;
}

.list-group-item {
    display: flex;
    flex-wrap: wrap;
    padding: 1px;
    padding-left: 5px;
}

.list-group-item > div {
    padding-left: 5px;
}

.userAdmin-userTimeBlock {
    padding-bottom: 5px;
}

.userAdmin-approveDenyMenu {
    margin:8px;
    margin-bottom: 12px;
}

#userAdmin-inactive a {
    color: red;
}

#aBtn {
    background-color: rgb(0, 0, 203);
}

#dfpBtn {
    background-color: rgb(210, 148, 31);
}

#nfBtn {
    background-color: rgb(103, 36, 133);
}

#aBtnWG {
    background-color: rgb(8, 120, 0);
}

#aBtnFL {
    background-color: rgb(195, 195, 195);
    color: black;
}

#unaBtn {
    background-color: rgb(174, 0, 0);
}

#userAdminCtl {

}

.weeklyTextTitle {
    margin: 20px;
    color: white;
}

.skedsWeeklyWide{

}

.skedsTable{
    //border-collapse: collapse;
    background-color: grey;
    border: 1px solid;
    border-color: black;
    text-align: center; 
    vertical-align: middle;
}

.skedsMonth{
    margin: 10px;
}
.skedsMonthContainer{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-text: center;
}
.sDay {

}

.skedsPuck{
    background-color: black;
    font-size:11px;
    //opacity: .5;
}

.blue{
    background-color: blue;
}

.red{
    background-color: red;
}

.green{
    background-color: green;
}

.white{
    background-color: white;
    color: black;
}

