
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
  font-family: myFirstFont;
  src: url(fonts/TitilliumWeb-Light.ttf);
}
body{
    width: 100%;
    background-color: #fff;
    /*background-image: url(imgs/bg1.jpg);*/
    /*background-size: cover;*/
    /*background-repeat: no-repeat;*/
    /*background-attachment: fixed;*/
    font-family: myFirstFont;
    /*background-position: bottom;*/
    color: #404142;

}

.slotsDiv {
    font-size: 16px;
    padding:2px 8px;
    /*background-image: linear-gradient(315deg, rgba(149, 187, 202, 0.1) 0%, rgba(149, 187, 202, 0.9) 100%);*/
    background-image: linear-gradient(315deg, rgba(149, 187, 202, 0.9) 0%, rgba(149, 187, 202, 0.1) 100%);
    display: flex;
    justify-content: space-between;
}

#monthAndYear{
    font-size: 24px;
    letter-spacing: -1px;
}
table{
    width: 84%;
    margin: 0 auto;
}

.reportDiv {
    width: 33%;
    display: inline-block;
}

.reportContainer {
        border: 1px solid #c4c4c4;
    width: 91%;
    padding: 8px;
    margin: 8px 0;
}

#expenseTableTbl, #incomingTableTbl {
    width: 100%;
    border-collapse: collapse;
}

#expenseTableTbl tr, #incomingTableTbl tr {
    height: auto;
    border: 1px solid #e4e4e4;
}

#expenseTableTbl td, #incomingTableTbl td {
    width: auto;
    border: 0;
    padding: 4px 8px;
}

#expenseTableTbl input[type='checkbox'],
#incomingTableTbl input[type='checkbox'] {
    width:12px;
    height:12px;
}


#expenseTableTbl tr:nth-of-type(even),
#incomingTableTbl tr:nth-of-type(even) {
    background: #f2f2f2;
}

h1 {
    font-size: 22px;
    letter-spacing: -1px;
}

th, td{
    width: 12%;
    border: 1px solid black;
}
tr{
    height: 100px;
    border: 1px solid black;
}
thead tr{
    height: 30px;
}
.otherDay{
    font-weight: 100;
    font-style: italic;
}
#loginSignup{
    width: 100%;
    height: 100%;
    position: fixed;
        background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    padding: 20%;
    padding-top:50%;
    background-image: url(imgs/gelledit_bg.png);

}
#loginSignup button{
    padding: 5px 18px;
}
#createEvent ,#eventPopUp, #createExpense, #createIncoming, #createSlots{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: white;
    z-index: 100;
    overflow: auto;
    height: 100%;
}
#createBtn, #editEventBtn, #deleteEvent, #changeEvent, #login_btn, #createExpenseBtn, #createIncomingBtn, #createSlotsBtn {
    width:100%; 
    margin: 16px 0;
    font-size: 22px;
    background: #A770EF;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #FDB99B, #CF8BF3, #A770EF);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #FDB99B, #CF8BF3, #A770EF); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #fff;
    padding: 16px 0;
}
#deleteEvent {
    border:1px solid red;
    background: rgba(255, 0, 0, 0.4);
    font-size: 22px;
}
#closeCreateBtn, #closeExpenseBtn, #closeIncomingBtn, #closeCreateSlotsBtn {
    width: 100%;
    background: #aaa;
    font-size: 22px;
}
#closeEventBtn, #closeEventBtn2{
    width: 100%;
    background: #aaa;
    font-size: 22px;
    
}
.input_container {
    margin: 20% 5% 0;
}
.createEl{
    width: 100%;
}
.events, .eventsBlock{
    cursor: pointer;
    /*margin-bottom: 8px;*/
    border-bottom: 1px solid rgba(149,187,202,0.9);
    transition: all 0.6s;
    cursor: pointer;
    padding: 4px 8px;

}

.eventMorning, .eventAfternoon, .eventEvening {
    min-height: 60px;
    border-bottom: 1px solid rgba(149,187,202,0.9);
}

.eventEvening {
    border-bottom: 0;
}

.eventsBlock{ 
    background: rgba(245, 0 ,0 ,0.4)
}
.events:last-of-type, .eventsBlock:last-of-type  {
    border-bottom:0;
}

.sessionRadio {
width: 32.5%;
    display: inline-block;
    text-align: center;
        background: #A770EF;
    background: -webkit-linear-gradient(to right, #FDB99B, #CF8BF3, #A770EF);
    background: linear-gradient(to right, #FDB99B, #CF8BF3, #A770EF);
        border-radius: 5px;
        padding: 4px 8px;
}

#clientSessionLabel {
    display: none;
    margin-bottom: 24px;
}
label {
    font-size: 22px;
}

.eventTime, 
.eventTitle{
    display: inline;
    color: gray;
    font-size: 18px;
}

#popHeading{
    font-size: 40px;

}
#popDetailservice {
font-size: 36px;
border-bottom: 1px solid;
}
#popDetails{
    font-size: 32px;
}

#calendarTable{
    /* display: inline-block; */
    margin: 22.5% 0 30%;
} 

#expenseTable, #reportsTable, #clientsTable, #incomingTable {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: #fff;
    overflow: scroll;
}

#clientsTableTbl {
    width:99%;
    margin:0;
    border-collapse: collapse;
}

#clientsTableTbl tr {
    height: inherit;
    border: 1px solid #a1a1a1;
}

#clientsTableTbl td {
    width: 33%;
    padding: 8px 16px;
    border: 0;
    font-weight: bold;
}

.redButton, .blueButton, .greenButton, .yellowButton {
    background: red;
    padding: 2px;
    font-size:14px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    border-radius: 5px;
}

.yellowButton {
    background: yellow;
    color: #000;
}
.redButton {
    background: red;
}

.blueButton {
    background: blue;
}

.greenButton {
    background: green;
}

#prevBtn, #nextBtn{
    border-radius: 50%;
    font-size: 20px;
    border: 2px solid #fff;
    background: transparent;
    margin: 0 1%;
    padding: 10px;
}
#createEventBtn, #createNewExpenseBtn, #createNewIncomingBtn {
    position: fixed;
    right: 1%;
    bottom: 1%;
    border-radius: 50%;
padding: 0 2.5%;
    font-size: 60px;
    line-height: 60px;
background: #A770EF;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #FDB99B, #CF8BF3, #A770EF);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #FDB99B, #CF8BF3, #A770EF); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #fff;
}

#reportDateTo, #reportDateFrom {
    font-size: 18px !important;
}
#notificationAlertBtn {
    position: fixed;
    left: 1%;
    bottom: 1%;
    border-radius: 50%;
    font-size: 40px;
    line-height: 60px;
    background: rgba(245, 0 ,0 ,0.7);
    color: #fff;
    z-index: 50000;
    display: block;
    width: 60px;
    text-align: center;
}

#notification-container {
    position: fixed; 
    display: none;
    bottom: 0; 
    border: 1px solid rgba(149,187,202,0.9); 
    z-index:10000; 
    width:100%; 
    margin:auto; 
    padding: 8px 16px;     
    background-image: linear-gradient(315deg, rgba(149,187,202,1) 0%, rgba(149,187,202,10.7) 100%);
}

button {
    border: none;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
  }
h2{
    display: inline-block;
}
input{
    font-size: 28px;
    padding: 8px;
    border: 1px solid rgba(0, 0, 17, 0.363);
        font-family: myFirstFont;
        width:100%;
}
.editEl{
    margin: 5px;
}
#editTime{
    margin-bottom: 10px;
}

.header-container, .modal--title {
    display: flex; 
    justify-content: space-between; 
    position: fixed;
    width: 100%;
    color: #fff;
    padding: 8px 0;
}

.result {
    font-size: 20px;
    
    border: 1px solid rgba(0, 0, 17, 0.363);
}
.result p {
    padding: 0 8px;
}

.modal--title { 
        background: #A770EF;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #FDB99B, #CF8BF3, #A770EF);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #FDB99B, #CF8BF3, #A770EF); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.header-container {
    background: #a3a3a3;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #FDB99B, #a3a3a3, #a3a3a3);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #FDB99B, #a3a3a3, #a3a3a3); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.header-container-open {
    background: #A770EF;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #FDB99B, #CF8BF3, #A770EF);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #FDB99B, #CF8BF3, #A770EF); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.modal--title {
    padding-left: 5%;
        align-items: center;
}


div.day {
    border: 1px solid black;
    display: inline;
}
div.info {
    display: inline;
}

.flex-container {
    display: flex;
    margin: 2% 0;
    border: solid grey;
    border-width: 1px 0;
}

.flex-child {
    width: 80%;
        /*align-self: center;*/
}  

.flex-child:first-child {
    width: 25%;
    text-align: center;
    border-radius: 2px;
    background-image: linear-gradient(315deg, rgba(149,187,202,0.1) 0%, rgba(149,187,202,0.9) 100%);
    cursor: pointer;
    transition: all 0.6s;
    /*border-bottom: 4px solid #fff;*/

}

.flex-child:first-child:hover{
    border-bottom: 4px solid rgba(149,187,202,1);
}

.large-header {
    font-size: 48px;
    color: #404142;
    text-shadow: 4px 4px 4px #f580ff;
}

.small-header {
    font-size: 28px;
    color: #404142;
    padding-bottom: 8px;
}

#toggleCreateBtn {
    font-size: 32px;
    margin-right:5%;
}
