﻿* {
    outline: none;
}

body {
    padding: 0;
    margin: 0;
    /*background-image: url(images/Login/banner1.jpg);*/
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    background-attachment:fixed;
}

html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: darkgray;
}

::-moz-placeholder { /* Firefox 19+ */
    color: darkgray;
}

:-ms-input-placeholder { /* IE 10+ */
    color: darkgray;
}

:-moz-placeholder { /* Firefox 18- */
    color: darkgray;
}


/*Header*/
.header {
    position: relative;
    text-align: center;
}
    /*Logo*/
    .header .logo {
        display: block;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 15px 20px;
        position: absolute;
        top: 0;
        left: 30px;
    }
	
	 .header .logo a{display:block;}
	 
	 .header .logo a img{width:292px;}
/*Date and Time */
.dateAndLng {
    display: block;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 20px;
    position: absolute;
    top: 0;
    right: 30px;
    color: #000000;
	font-size: 15px;
}

    .dateAndLng img {
        vertical-align: middle;
    }

    .dateAndLng .language {
        background-color: #ff0000;
        padding: 4px 5px;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
    }
    .dateAndLng a {
        color: #ffffff;
        text-decoration: none;
    }

      /*  .dateAndLng a:hover {
            opacity: 0.8;
        }*/
/*Login Box*/
.login {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 25px 25px 25px;
    width: 335px;
}

    .login .form-control {
        margin-bottom: 15px;
        font-size: 17px;
        font-family: "Open Sans", sans-serif;
    }

        .login .form-control:last-child {
            margin: 0px;
            text-align: center;
        }

    .login input, .login select {
        border: 0;
        font-size: 17px;
        font-family: "Open Sans", sans-serif;
        background-color: transparent;
        width: 87%;
    }

        .login select::-ms-expand {
            display: none;
        }   

        .login input:focus, .login select:focus {
            outline: 0;
        }


    .login select {
        background-image: url(images/Login/icon-globe.png), url(images/arrowvb.png);
        background-repeat: no-repeat, no-repeat ;
        background-position: left center, right center;
        border-bottom: 1px solid silver !important;
        padding: 10px 10px 10px 35px;
        width: 100%;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }       

    .login input[type="button"], input#cmdLogIn {
        background-color: #ff0000;
        border: 0;
        width: 100%;
        padding: 10px;
        color: #ffffff;
        font-family: "Open Sans", sans-serif;
        font-size: 20px;
        cursor: pointer;
        -webkit-appearance: none;
        -moz-appearance:: none;
        appearance: none;
        -moz-border-radius: 0px;
        -webkit-border-radius: 0px;
        -khtml-border-radius: 0px;
        border-radius: 0px;
    }

        .login input[type="button"]:hover, input#cmdLogIn:hover {
            background-color: #de0202;
        }



    .login .form-control a {
        text-align: center;
        color: #0078ff;
        font-size: 17px;
        text-decoration: none;
        border-bottom: 1px solid #0078ff;
        width: 100%;
    }

        .login .form-control a:hover {
            color: #0060cc;
            border-bottom: 1px solid #0060cc;
            text-decoration: none;
        }

    .login .instruction {
        margin-bottom: 15px;
        font-size: 15px;
    }

    .login .visionTitle {
        margin-bottom: 10px;
		padding-bottom:10px;
        font-size: 20px;
        text-align: center;
        color: #ff0000;
        font-weight: bold;
		border-bottom:1px solid #dddddd;
    }

.txtusername {
    background-image: url(images/Login/icon-user.png);
    background-repeat: no-repeat;
    background-position: left center;
    border-bottom: 1px solid silver !important;
    padding: 10px 10px 10px 35px;
}

.txtpassword {
    background-image: url(images/Login/icon-lock.png);
    background-repeat: no-repeat;
    background-position: left center;
    border-bottom: 1px solid silver !important;
    padding: 10px 10px 10px 35px;
}
/*Terms*/
.terms {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    position:relative;
    transition: all 0.3s ease 0s;
}

    .terms .title {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .terms p {
        margin: 0;
        padding: 0;
        line-height: normal;
    }

    .terms .close {
        position: absolute;
        right: 0;
        top: 0;
        padding: 15px 15px;
        cursor: pointer;
    }

/*Notifications*/

.notification {
    position: absolute;
    bottom: 83px;
    width: 450px;
    z-index: 999;
}


.notifications {
    padding: 20px;
    background-color: rgba(0, 96, 204, 0.9);
    color: #ffffff;
    position:relative;
    transition: all 0.3s ease 0s;
}

    .notifications p {
        margin: 0;
        padding: 0 15px 0 0;
        line-height: normal;
    }

        .notifications p a {
            text-decoration: underline;
            color: #ffffff;
        }

    .notifications .close {
        position: absolute;
        right: 0;
        top: 0;
        padding: 15px 15px;
        cursor: pointer;
    }

/*Footer*/
.footer {
    font-size: 13px;
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 0;
    color: #ffffff;
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
    padding: 40px 0px 10px 0px;
}

    .footer .wrapper{width:98%; margin:0 auto;}

    .footer a {
        color: #ffffff;
        text-decoration: none;
    }

        .footer a:hover {
            text-decoration: underline;
        }

    .footer table {
        width: 100%;
    }

        .footer table tbody tr td {
            background-image: none !important;
        }

.ccLanguage {
    float: left;
    width: 20%;
    position: relative;
    top: 9px;
    text-align: left;
    color:#ffffff;
}

    .ccLanguage span{color:#ffffff !important;}

    .footer-links {
        float: left;
        width: 60%;
        font-size:12px !important;
        text-align: center;
        font-family: Ubuntu, sans-serif;
        font-size: 100%;
        color: #ffffff;
        text-decoration: none;
        position: relative;
        top: 9px;
    }

    .footer-links a {
        text-align: center;
        font-family: Ubuntu, sans-serif;
        color: #ffffff;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        -ms-transition: 0.3s;
        transition: 0.3s;
        text-decoration: none;
    }

        .footer-links a:hover {
            color: #ff0000;
            text-decoration: none;
        }

.footer-social-links {
    float: left;
    width: 20%;
    text-align: right;
}

    .footer-social-links a {
        margin-right: 5px;
        display:inline-block;
    }

        .footer-social-links a:last-child {
            margin-right: 0px;
        }

        .footer-social-links a span {
            display: table-cell;
            height: 35px;
            width: 35px;
            text-align: center;
            vertical-align: middle;
            border-radius: 50%;
            background-color: #ffffff;
            color: #888888;
        }

        .footer-social-links a:hover .fa {
            color: #ff0000;
            font-size: 18px !important;
        }

        .footer-social-links a span .fa {
            color: #888888;
            font-size: 18px !important;
        }

/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}

    [type="checkbox"]:not(:checked) + label,
    [type="checkbox"]:checked + label {
        position: relative;
        padding-left: 1.95em;
        cursor: pointer;
    }

        /* checkbox aspect */
        [type="checkbox"]:not(:checked) + label:before,
        [type="checkbox"]:not(:checked) + label::before {
            content: '';
            position: absolute;
            left: 0;
            top: -2px;
            width: 1.25em;
            height: 1.25em;
            border: 2px solid #ccc;
            background: transparent;
            -moz-border-radius: 50%;
            -webkit-border-radius: 50%;
            -khtml-border-radius: 50%;
            border-radius: 50%;
        }

        [type="checkbox"]:checked + label:before,
        [type="checkbox"]:checked + label::before {
            content: '';
            position: absolute;
            left: 0;
            top: -2px;
            width: 1.25em;
            height: 1.25em;
            border: 2px solid #ff0000;
            background: transparent;
            -moz-border-radius: 50%;
            -webkit-border-radius: 50%;
            -khtml-border-radius: 50%;
            border-radius: 50%;
        }
        /* checked mark aspect */
        [type="checkbox"]:not(:checked) + label:after,
        [type="checkbox"]:checked + label:after,
        [type="checkbox"]:not(:checked) + label::after,
        [type="checkbox"]:checked + label::after {
            content: '\2713\0020';
            position: absolute;
            top: 3px;
            left: 5px;
            font-size: 18px;
            line-height: 0.8;
            color: #ff0000;
            transition: all .2s;
            font-weight: bold;
        }
        /* checked mark aspect changes */
        [type="checkbox"]:not(:checked) + label:after,
        [type="checkbox"]:not(:checked) + label::after {
            opacity: 0;
            transform: scale(0);
        }

        [type="checkbox"]:checked + label:after,
        [type="checkbox"]:checked + label::after {
            opacity: 1;
            transform: scale(1);
        }
    /* accessibility */
    [type="checkbox"]:checked:focus + label:before,
    [type="checkbox"]:not(:checked):focus + label:before,
    [type="checkbox"]:checked:focus + label::before,
    [type="checkbox"]:not(:checked):focus + label::before {
        border: 2px solid #ff0000;
    }

/* hover style just for information */
label:hover:before,
label:hover::before {
    border: 2px solid #ff0000;
}

.error {
    margin-bottom: 10px;
}

    .error span {
        color: red;
        font-size: 13px;
    }

.loader div#UpdateProgress2, div#UpdateProgress1 {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 99999;
}

    .loader div#UpdateProgress2 img, div#UpdateProgress1 img {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        height: 50px;
        width: 50px;
    }
/*Cost Center*/

.modalBackground {
    background-color: #000000;
    filter: alpha(opacity=40);
    opacity: 0.8;
}

.modal-popup {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    -moz-transform: translate(-50%, -50%) !important;
    -webkit-transform: translate(-50%, -50%) !important;
    -o-transform: translate(-50%, -50%) !important;
    width: 350px;
    background-color: #ffffff;
}

    .modal-popup .modal-header {
        background-color: #ff0000;
        color: #ffffff;
        padding: 12px 15px;
        font-size: 16px;
    }

    .modal-popup .modal-body .list {
        height: 250px;
        overflow-y: auto;
    }

        .modal-popup .modal-body .list table#grdLanguages tbody tr {
            border-bottom: 1px solid #dadada;
            background-color: #ffffff;
        }

            .modal-popup .modal-body .list table#grdLanguages tbody tr:hover {
                background-color: #fff29d;
                cursor: pointer;
            }

                .modal-popup .modal-body .list table#grdLanguages tbody tr:hover td a {
                    color: #0060cc;
                }

            .modal-popup .modal-body .list table#grdLanguages tbody tr td img {
                vertical-align: bottom;
                height: 19px;
                width: 25px;
                margin-right: 10px;
            }
            .modal-popup .modal-body .list table#grdLanguages tbody tr td a {
                font-size: 17px;
                color: #0078ff;
                text-decoration: none;
            }

    .modal-popup .modal-footer {
        padding: 10px 0px;
        text-align: center;
        background-color: #ffffff;
    }

        .modal-popup .modal-footer input[type="submit"] {
            border: 0;
            padding: 8px 15px;
            color: #ffffff;
            font-family: "Open Sans", sans-serif;
            font-size: 17px;
            cursor: pointer;
            -webkit-appearance: none;
            -moz-appearance:: none;
            appearance: none;
            -moz-border-radius: 0px;
            -webkit-border-radius: 0px;
            -khtml-border-radius: 0px;
            border-radius: 0px;
        }

        .modal-popup .modal-footer .btn-submit {
            background-color: #ff0000;
        }

    .modal-popup .modal-footer .btn-submit:hover {
        background-color: #de0202;
    }

/*Passenger Alert Box*/
.passengerAlertLogin .header {
    background-color: rgba(255, 255, 255, 0.95);
	padding:33px;
}

.passengerAlertLogin .header .logo{
	background-color:rgba(255, 255, 255, 0);
}


.passengerAlertLogin .dateAndLng {
    padding: 23px 22px;
	background-color:rgba(255, 255, 255, 0);
}

.passengerAlertLogin .login{
    background-color: rgba(255, 255, 255, 0.95);
    width:340px;
}
.passengerAlertLogin .login .title {margin-bottom:10px;}

.passengerAlertLogin .login .title h1 {
    padding: 0;
    margin: 0;
    font-weight:normal;
}

.passengerAlertLogin .loginBox {
    background-color: #ffffff;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.07);
}

.passengerAlertLogin .form-control {
    border: 1px solid #cccccc;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    padding: 3px 8px 3px 8px;
    width:93%;
	  font-size: 17px;
    font-family: "Open Sans", sans-serif;
}

.passengerAlertLogin .login .loginBox input {
    background-color: #ffffff;
}

.passengerAlertLogin .form-field {
    margin-bottom: 15px;
}

.passengerAlertLogin .form-field:last-child {
    margin-bottom: 0px;
}

.passengerAlertLogin .form-control:last-child {
    text-align: left;
}

.passengerAlertLogin .login .loginBox button {
    background-color: #ff0000;
    border: 0;
    width: initial;
    padding: 4px 15px 6px 15px;
    color: #ffffff;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    font-weight: 500;
}

.passengerAlertLogin .login .loginBox button:hover{background-color: #de0202;}

.passengerAlertLogin .login .loginBox .float-left {
    float: left;
    width: 59%;
}

.passengerAlertLogin .login .loginBox .float-right {
    float: right;
    width: 41%;
    text-align: right;
}

.clearfix {
    clear: both;
}

.passengerAlertLogin .login a {
    text-align: center;
    color: #0078ff;
    font-size: 13px;
    text-decoration: underline;
}

    .passengerAlertLogin .login a:hover {
        color: #0060cc;
        text-decoration: underline;
        font-size: 13px;
    }

.passengerAlertLogin .login .loginBox .float-left img {
    width: 13px;
	vertical-align:sub;
}
.passengerAlertLogin .login .appButtons{margin-bottom:10px;}
.passengerAlertLogin .login .appButtons span{display:inline-block; vertical-align:middle;}
.passengerAlertLogin .login .appButtons span img{vertical-align:middle;}
.passengerAlertLogin .login .appButtons span:last-child{margin-left:10px;}

.passengerAlertLogin .login .appButtons .float-left {
    float: left;
    width: 69%;
}

.passengerAlertLogin .login .appButtons .float-right {
    float: right;
    width: 30%;
    text-align: right;
}

    .passengerAlertLogin .login .appButtons .float-right img {
        vertical-align: bottom;
    }

.passengerAlertLogin .login .appButtons .float-left a {
    text-decoration: none;
    border: none;
}

    .passengerAlertLogin .login .appButtons .float-left a:first-child img {
        position: relative;
        top: -5px;
    }

.passengerAlertLogin .login .register {
    margin-bottom: 15px;
    text-align: center;
    font-size:15px;
}

.passengerAlertLogin .login .register a, .passengerAlertLogin .login .register a:hover,
.passengerAlertLogin .login .webportal a, .passengerAlertLogin .login .webportal a:hover{font-size:15px;}

.passengerAlertLogin .login .webportal {
    text-align: center;
    font-size:15px;
}
.modal-popup .modal-body{padding:15px;}
.passengerAlertLogin .modal-popup .modal-footer button{
	 background-color: #ff0000;
    border: 0;
    width: initial;
    padding: 4px 15px 6px 15px;
    color: #ffffff;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    font-weight: 500;
}
.modal-popup .modal-footer {
    padding: 10px 0px;
    text-align: center;
    background-color: #e5e5e5;
}

.passengerAlertLogin .modal-popup .modal-footer button:hover{background-color: #de0202;}
#ot-sdk-btn.ot-sdk-show-settings, #ot-sdk-btn.optanon-show-settings {
    font-size: initial !important;
}
/*.passengerAlertLogin .modal-popup .modal-footer{padding-top:2px;}*/

.helpicon {
    vertical-align: middle;
    float: right;
}

    .helpicon a {
        color: white;
        font-size: 22px;
    }

/*Laptop & Desktop*/
@media only screen and (max-width: 979px) and (min-width: 768px) {
    .login {
        position: relative;
        top: initial;
        left: initial;
        transform: none;
        -moz-transform:none;
        -webkit-transform: none;
        -o-transform: none;
        right: initial;
        padding: 15px 20px 20px 20px;
    }	
	
    .notification {
        width: initial;
        bottom: 0;
    }

    .terms .title {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .terms {
        padding: 15px;
    }

        .terms p {
            font-size: 11px
        }

        .terms .close img {
            width: 10px;
            height: 10px;
        }

    .notifications p {
        margin: 0;
        padding: 0 15px 0 0;
    }

	.header .logo {
        position: relative;
        left: initial;
		height:initial;
		padding:10px 0px;
    }

    .header .logo a img {
        width: 200px;
    }
        
    .header .dateAndLng {
        position: relative;
        width: initial;
        right: initial;
        padding: 10px 0px;
        font-size: 15px;
        background-color: rgba(255, 255, 255, 0.8);
    }	
	
	.passengerAlertLogin .header{
		padding:0px
	}
	
	.passengerAlertLogin .header .logo{
		background-color:rgba(255, 255, 255, 0.95);
	}


	.passengerAlertLogin .dateAndLng {
		background-color:rgba(255, 255, 255, 0.8);
	}

    .footer-links{display:block !important}

    .footer-social-links a span {
        height: 25px !important;
        width: 25px !important;
    }

    .footer {
        background-color: rgba(0, 0, 0, 0.7);
        padding: 10px;
        position: relative;
        margin-top: 20px;
    }
}
/*Low-res Monitors*/
@media only screen and (max-width: 767px) and (min-width: 600px) {
    .header .logo {
        position: relative;
        left: initial;
		height:initial;
		padding:10px 0px;
    }   
    .header .dateAndLng {
        position: relative;
        width: initial;
        right: initial;
        padding: 10px 0px;
        font-size: 15px;
        background-color: rgba(255, 255, 255, 0.8);
    }	

    .login {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        right: initial;
        width: 400px;
        padding: 15px 20px 20px 20px;
    }

    .notification {
        width: initial;    
    }
    .notifications p {
        margin: 0;
        padding: 0 15px 0 0;
    }

    .terms .title {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .terms {
        padding: 15px;
    }

        .terms p {
            font-size: 11px
        }

        .terms .close img {
            width: 10px;
            height: 10px;
        }

    .notifications p {
        margin: 0;
        padding: 0 15px 0 0;
    }

    .dateAndLng .language {
        padding: 4px 5px 6px 5px;
    }
	
	.passengerAlertLogin .login .title h1{text-align:center}
	.passengerAlertLogin .login .appButtons .float-left{width:72%}
	.passengerAlertLogin .login .appButtons .float-right{width:28%}
	#pnlPopUpVideoGuide{width:500px !important;}	
	.passengerAlertLogin .header{
		padding:0px
	}
	
	.passengerAlertLogin .header .logo{
		background-color:rgba(255, 255, 255, 0.95);
	}

	.passengerAlertLogin .dateAndLng {
		background-color:rgba(255, 255, 255, 0.8);
	}

    .footer-social-links a span {
        height: 25px !important;
        width: 25px !important;
    }

}

/*Tablet*/
@media only screen and (max-width: 599px) and (min-width: 360px) {
    .header .logo {
        position: relative;
        left: initial;
		height:initial;
		padding:10px 0px;
    }
	
    .header .dateAndLng {
        position: relative;
        width: initial;
        right: initial;
        padding: 10px 0px;
        font-size: 13px;
        background-color: rgba(255, 255, 255, 0.8);
    }

        .header .dateAndLng .language img {
            width: 15px;
        }

    .dateAndLng .language {
        padding: 4px 5px 6px 5px;
    }

    .login {
        position: relative;
        top: initial;
        left: initial;
        transform: none;
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
        right: initial;
        width: 240px;
        padding: 15px 20px 20px 20px;
        margin: 50px auto auto auto;
    }

        .login .instruction {
            font-size: 12px;
        }

        .login input, .login select, .login .form-control, .login .form-control a {
            font-size: 15px;
        }

            .login input[type="button"] {
                font-size: 18px;
                padding:8px 10px;
            }

    [type="checkbox"]:not(:checked) + label:after,
    [type="checkbox"]:checked + label:after {
        font-size: 13px;
    }

    .modal-popup .modal-header {
        font-size: 15px;
    }

    .modal-popup .modal-footer input[type="submit"] {
        font-size: 15px;
    }

    .modal-popup .modal-footer {
        background-color: #efefef;
    }

    .notification {
        width: initial;
        bottom:0px;
    }

    .terms .title {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .terms {
        padding: 15px;
    }

        .terms p {
            font-size: 11px
        }

        .terms .close img {
            width: 10px;
            height: 10px;
        }
	.passengerAlertLogin .login{width:280px;}
	.passengerAlertLogin .login .title h1{text-align:center; font-size:20px;}
    .passengerAlertLogin .login .appButtons{text-align:center; margin-bottom:15px;}
    .passengerAlertLogin .login .appButtons span:last-child {margin-left: 0px;margin-top: 15px;text-align: center;display: block;width: 100%;}
	.passengerAlertLogin .login .appButtons a{font-size:15px;}
	.passengerAlertLogin .login .appButtons a:hover{font-size:15px;}
	.passengerAlertLogin .modal-popup .modal-footer{background-color:#ffffff !important;}
	#pnlPopUpVideoGuide{width:300px !important;}
	.passengerAlertLogin .header{padding:0px}
	.passengerAlertLogin .header .logo{background-color:rgba(255, 255, 255, 0.95);}
	.passengerAlertLogin .dateAndLng {background-color:rgba(255, 255, 255, 0.8);}

    .footer-social-links a span {
        height: 25px !important;
        width: 25px !important;
    }
}

/*Mobile*/
@media only screen and (max-width: 359px) {
    .header .logo {
        position: relative;
        left: initial;
		height:initial;
		padding:10px 0px;
    }
	
	.header .logo a img{width:215px;image-rendering: -webkit-optimize-contrast;}
    .header .dateAndLng {
        position: relative;
        width: initial;
        right: initial;
        padding: 8px 0px;
        font-size: 11px;
        background-color: rgba(255, 255, 255, 0.8);
    }

        .header .dateAndLng .language img {
            width: 14px;
        }
    .dateAndLng .language {
        padding: 4px 5px 6px 5px;
    }

    .login {
        position: relative;
        top: initial;
        left: initial;
        transform: none;
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
        right: initial;
        width: 240px;
        padding: 15px 20px 20px 20px;
        margin:20px auto auto auto;
    }

        .login .instruction {
            font-size: 12px;
        }

        .login input, .login select, .login .form-control, .login .form-control a {
            font-size: 14px !important;
        }

            .login input[type="button"] {
                font-size: 16px !important;
                padding:8px 10px;
            }

    [type="checkbox"]:not(:checked) + label:after,
    [type="checkbox"]:checked + label:after {
        font-size: 13px;
    }

    .modal-popup {
        width: 300px;
    }

        .modal-popup .modal-header {
            font-size: 14px;
        }

        .modal-popup .modal-footer input[type="submit"] {
            font-size: 14px;
        }

        .modal-popup .modal-footer {
            background-color: #efefef;
        }

    .notification {
        width: initial;
        bottom:0px;
    }

    .terms .title {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .terms {
        padding: 15px;
    }

        .terms p {
            font-size: 11px;
        }

        .terms .close img {
            width: 10px;
            height: 10px;
        }
	
	.passengerAlertLogin .login{width:240px;}
    .passengerAlertLogin .login a{font-size:11px;}
	.passengerAlertLogin .login .title h1{text-align:center; font-size:20px;}
    .passengerAlertLogin .login .loginBox .float-left img {width: 11px;}
    .passengerAlertLogin .login .appButtons{text-align:center; margin-bottom:15px;}
    .passengerAlertLogin .login .appButtons span:last-child {margin-left: 0px;margin-top: 15px;text-align: center;display: block;width: 100%;}
	.passengerAlertLogin .login .appButtons a{font-size:15px;}
	.passengerAlertLogin .login .appButtons a:hover{font-size:15px;}
	.passengerAlertLogin .modal-popup .modal-footer{background-color:#ffffff !important;}
	#pnlPopUpVideoGuide{width:300px !important;}
	.passengerAlertLogin .header{padding:0px}
	.passengerAlertLogin .header .logo{background-color:rgba(255, 255, 255, 0.95);}
	.passengerAlertLogin .dateAndLng {background-color:rgba(255, 255, 255, 0.8);}

    .footer-social-links a span {
        height: 25px !important;
        width: 25px !important;
    }

    .footer-links{font-size:11px !important; line-height:15px;}
}

@media only screen and (max-width: 768px) {
    .ccLanguage {
        float: none;
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
        position: relative;
        top: initial;
    }

    .footer-links {
        float: none;
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
        position: relative;
        top: initial;
    }

    .footer-social-links {
        float: none;
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media only screen and (max-width: 599px) and (min-width: 360px) {
    #footer {
        font-size: 12px;
    }
}

@media only screen and (max-width: 359px) {
    #footer {
        font-size: 12px;
    }
}

@media only screen and (max-width: 768px) and (max-height: 300px) and (orientation: landscape) {
    .header .logo {
        padding: 10px 0px;
    }

        .header .logo a img {
            width: 200px;
        }

    .login {
        position: relative;
        top: initial;
        left: initial;
        transform: none;
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
        right: initial;
        width: 350px;
        padding: 15px 20px 20px 20px;
        margin: 20px auto auto auto;
    }

    .notification {
        bottom: 0px;
    }

    .footer {
        background-color: rgba(0, 0, 0, 0.7);
        padding: 10px;
        position: relative;
        margin-top: 20px;
    }
}