*
{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
	
}

body
{
	overflow: hidden;
}

header
{
	width: 100%;
	background-color: white;
	position:absolute;
	z-index:1;
}

/*
header > *{
	display:block;
	float:left;
}
*/

.logo {
    padding: 20px 30px 5px 30px;
}

#ArrDep
{
	/*margin-top:30px;*/
	font-size: 20pt;
	/*padding-right:40px;*/
}

#date
{
    /*
	position: absolute;
	top:65px;
	right: 15%;
    */
    font-size: 27px;
	padding-right: 10px;
}

#clock
{
    /*
	position: absolute;
	top: 50px;
	right: 2%;
    */
	font-size: 27px;
    padding-right: 10px;
    /*padding-top: 10px;*/
}



/*------------Custom styles--------------*/
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .header-row img {
        max-height: 80px;
        margin-left: 30px;
    }

#ArrDep {
    display: flex;
    justify-content: center;
    text-align: center;
}

    #ArrDep .flight-icon {
        margin-right: 10px;
        visibility: visible !important;
        line-height: 40px;
        font-size: 40px;

        line-height: 52px;
        font-size: 41px;
        width: 80px;
        height: 80px;
        /*border: 2px solid #f9b13a;
        border-radius: 50%;*/
    }

    #ArrDep .flight-icon.departure-icon {
        background-image: url(../images/DepartureImage.png);
        background-size: contain;
    }

    #ArrDep .flight-icon.arrival-icon {
        background-image: url(../images/ArrivalImage.png);
        background-size: contain;
    }

    #ArrDep .dep-text {
        line-height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }


    #ArrDep div span.location-name-display {
        font-size: 20px;
        font-weight: bold;
    }

#DateAndTime {
    display: flex;
    justify-content: space-between;
}

#date, #clock {
    margin-right: 30px;
    font-size: 27px;
}


.arrive-header {
	background-color: #af1116;
}

.depart-header {
	background-color: #af1116;
}

.rotate-90 {
    transform: rotate(90deg);
}

/*------------*/



#container
{
    width: 100%;
    position: relative;
}

#display
{
    width: 100%;
	/*margin-top: 80px;*/
	border-collapse: collapse;
}

#tHeaders
{
	height: 80px;
    background: #3EB4E4;
	font-size: 20pt;
    color: white;
	text-align: center;
}

#topHeaders
{
    /*
	position: absolute;
	top: 92px;
	left: 0px;
    */
	width: 100%;
	border-collapse: collapse;
}

.flight-row
{
	height: 80px;
	text-align: center;
	font-size: 16pt;
}

.flight-row:nth-child(odd) 
{
	background: #F0F0F0;
}

.aircraft-cell
{
	width: 10%;
	text-align: left;
	padding-left: 40px;
}
.location-cell
{
	width: 20%;
	text-align: left;
	padding-left: 40px;
}
.time-cell {
	width: 10%;
}
/* .scheduled-time-cell */
/* .estimated-time-cell */
/* .check-in-time-cell */

.departing-table .time-cell {
	width: 9%;
}

.status-cell
{
	width: 20%;
}

.notes-cell
{
	width: 30%;
}

.flight-number-cell
{
	width: 7%;
	padding-left: 20px;
}

.cancelled
{
	color: #03466D;
}

.onTime
{
	color: #517A38;
}

.delayed
{
	color: #AC2400;
}

.date-picker-input {
    width: 150px;
    text-align: right;
}

.user-input-row .user-input-area{
    width: 300px;
    padding: 10px;
    display: inline-block;
}

.user-input-row .user-input-area select,
.user-input-row .user-input-area input {
    width: 100%;
    border-radius: 10px;
    padding: 0 10px;
}
.user-input-row .user-input-area input {
    box-sizing: border-box;
}