@keyframes slideInFromTop {
    0% {
      transform: translate(500%, -500%);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  
  @keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}



.bottomContainer {
    display: flex;
    flex-wrap: nowrap;
    height: auto;
    width: auto;

}

.bottomMainContainer {
    display: inline-flex;
    flex-wrap: wrap;
    width: 100%;
    min-width: 600px;
    min-height: 500px;
    height: auto;
}

.bottomContentContainer {
    width: 100%;
    height: 100%;
    background-color: #ccc;
}


.selectionsContainer {
    min-height: 250px;
    height: auto;
    width: auto;
    max-width: 500px;
    min-width: 350px;
    margin-top: 10px;
}

.selectionsContainer > h2 {
    font-family: sans-serif;
    border-bottom: 2px solid;
    text-align: center;
    padding-bottom: 5px;
}

.datesContainer {
    display: block;
    min-height: 70px;
    height: auto;
    margin: 15px;
    text-align: center;
    align-content: center;

}

.displayDates {
    z-index: 1000;
    display: inline-block;
    margin: 2px;
    min-width: 50px;
    max-width: 75px;
    height: 50px;
    width: auto;
    background-color: #24b4d7;
    border: 1px solid #ccc;
    text-align: center;
    animation: 1s ease-out 0s 1 fadein;
}

.displayDates.make-up {
    display: inline-block;
    margin: 2px;
    width: 50px;
    height: 50px;
    background-color: #666699;
    border: 1px solid #ccc;
    text-align: center;
}

.displayDates.agent-only {
    background: #009999;
    color: white !important;
}

.displayDates input {
    background-color: inherit;
}

.displayDates.dark {
    display: inline-block;
    margin: 2px;
    width: 50px;
    height: 50px;
    background-color: #BFBFBF;
    border: 1px solid #ccc;
    text-align: center;

}



.closingDates {
    display: inline-block;
    margin: 2px;
    width: 50px;
    height: 50px;
    background-color: #a9a9a9;
    border: 1px solid #ccc;
    text-align: center;

}

.closingDates.dark {
    display: inline-block;
    margin: 2px;
    width: 50px;
    height: 50px;
    background-color: #484848;
    border: 1px solid #ccc;
    text-align: center;

}

.displayDates:hover {
    transform: scale(2);
}

.displayDates > p {
    color: white;
    font-size: 70%;
    text-align: center;
    padding-top: 6px;
}

.displayDates.dark > p {
    color: #484848;
    font-size: 70%;
    text-align: center;
    padding-top: 6px;
}

.closingDates > p {
    color: white;
    font-size: 70%;
    text-align: center;
    padding-top: 6px;
}

.requestContainer {
    margin: 5px;
    padding: 5px;
    width: 100%;
    height: 100%;
    max-height: 400px;
    max-width: 250px;
    border: 1px solid black;
    display: inline-table;
    padding: 5px;
}

.requestContainer.rush {
    border: 2px solid red;
}

.requestContent {
    border: 1px solid #ddd;
    background-color: #ccc;
    align-content: center;
    padding: 5px;
    height: 100%;
}


/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

.tab.dark {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #8D8D8D;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    height: 100%;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}


.agentContainer {
    display: flex;
    width: 100%;
    height: 100%;
}

.agentContainerLeft {
    display: inline;
    width: auto;
    height: 100%;
    border-right: 2px inset #ddd;
    margin: auto;
    display: table;
    padding: 5px;
}

.agentContainerRight {
    display: inline;
    width: 100%;
    height: 100%;
    border-left: 2px outset #ddd;
    display: table;
    padding: 5px;
}

.agentContainerLeftSub {
    border: 1px solid #ddd;
    background-color: #ddd;
    display: table-cell
}

.agentContainerRightSub {
    height: 100%;
    border: 1px solid #ddd;
    background-color: #ddd;
    display: table-cell
}

.adminContainer {
    display: flex;
    width: 100%;
    height: 100%;
    margin: auto;
    display: table;
    padding: 5px;
}

.adminSubsection {
    padding-left: 5px;
    border-right: 2px inset #ddd;
    display: table-cell;
    width: auto;
}

.requestOptions {
    display: inline-flex;
}

#closeDates {
    max-width: 150px;
}

.partialPTO {
    border-width:0px;
    border:none;
    border-top: 1px solid;
    text-align: center;
    max-width: 100%;
    padding-left: 4px;
}

.partialPTO:focus {
    outline: none;
}

#partialHrs {
}


.testLegend {
    float: left;
    height: 100%;
}

.legendSpacer {
    float: left;
    height: 100%;
    width: 200px;
}

.legendInfo {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    padding: 14px 16px;
}

.legendClosed {
    background-color: #484848;
    float: left;
    border: none;
    outline: none;
    padding: 14px 16px;
    color: white;
}

.legendMake-up {
    background-color: #666699;
    float: left;
    border: none;
    outline: none;
    padding: 14px 16px;
    color: white;
}

.legendAgent-only {
    background-color: #009999;
    float: left;
    border: none;
    outline: none;
    padding: 14px 16px;
    color: white;
}

.legendCampaign-closed {
    background-color: #F9F232;
    float: left;
    border: none;
    outline: none;
    padding: 14px 16px;
    color: #4b4f55;
}


#agentFilterBtns > button {
    background-color: #24b4d7;
    color: white;
    border-color: #808080;
}

#agentFilterBtns > button:focus {
    background-color: #808080;
    outline: none !important;
    box-shadow: none;

}

















/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}





