@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900');

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    color: #182c40;
}


._style_bg {
    background-size: cover;
    background-position: center center;
    width: 100%;
    background-repeat: no-repeat;
    position: relative;
}

.fa16 {
    font-size: 16px;
}

.v-align {
    vertical-align: middle;
}

.hide-scroll {
    overflow: hidden;
}

.hiddenState {
    display: none;
}

.show-hide {
    display: block;
}

/*-- reusable class --*/
.pr5 {
    padding-right: 5px;
}

.py10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.py15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.py20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.py40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.py80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pt5 {
    padding-top: 5px;
}

.pt10 {
    padding-top: 10px;
}

.pt20 {
    padding-top: 20px;
}

.pt40 {
    padding-top: 40px;
}

.pt70 {
    padding-top: 70px;
}

.pb20 {
    padding-bottom: 20px;
}

.mt0 {
    margin-top: 0px;
}

.mt20 {
    margin-top: 20px;
}

.mt40 {
    margin-top: 40px;
}

.mb0 {
    margin-bottom: 0;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mr10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.mr20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.mr40 {
    margin-top: 40px;
    margin-bottom: 40px;
}

/*Font Weight Start*/
.font-thin {
    font-weight: 100;
}

.font-extralight {
    font-weight: 200;
}

.font-light {
    font-weight: 300;
}

.font-regular {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semi-bold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extra-bold {
    font-weight: 800;
}

.font-heavy {
    font-weight: 900;
}

/*Font Weight End*/
img {
    max-width: 100%;
}

.text-blue {
    color: #17479e;
}

.text-light-blue {
    color: #00adef;
}

.text-gray {
    color: #273042;
    opacity: .70;
}

.bg-skyblue {
    background-color: #f8fafb;
}

.bg-lightblue {
    background-color: #00adef;
}

.bg-darkblue {
    background-color: #17479e;
}

a {
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

a:hover {
    text-decoration: none;
}

/*Button Hover Start*/
.btn-blue {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
    background: #00adef;
    color: #ffffff;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    border-radius: 50px;
    padding: 10px 25px;
}

.btn-blue:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #333333;
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.btn-blue:hover, .btn-blue:focus, .btn-blue:active {
    color: white;
}

.btn-blue:hover:before, .btn-blue:focus:before, .btn-blue:active:before {
    -webkit-transform: scale(2);
    transform: scale(2);
}

.btn-darkblue {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
    background: #17469d;
    color: #ffffff;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    border-radius: 50px;
    padding: 10px 25px;
}

.btn-darkblue:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #333333;
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.btn-darkblue:hover, .btn-darkblue:focus, .btn-darkblue:active {
    color: white;
}

.btn-darkblue:hover:before, .btn-darkblue:focus:before, .btn-darkblue:active:before {
    -webkit-transform: scale(2);
    transform: scale(2);
}


.btn-white {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: #273042;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    border-radius: 50px;
    padding: 10px 25px;
}

.btn-white:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #333333;
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.btn-white:hover, .btn-white:focus, .btn-white:active {
    color: white;
}

.btn-white:hover:before, .btn-white:focus:before, .btn-white:active:before {
    -webkit-transform: scale(2);
    transform: scale(2);
}


/* Icon Buzz */
@-webkit-keyframes hvr-icon-buzz {
    50% {
        -webkit-transform: translateX(3px) rotate(2deg);
        -moz-transform: translateX(3px) rotate(2deg);
        -ms-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    100% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        -moz-transform: translateX(-3px) rotate(-2deg);
        -ms-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
}

@keyframes hvr-icon-buzz {
    50% {
        -webkit-transform: translateX(3px) rotate(2deg);
        -webkit-transform: translateX(3px) rotate(2deg);
        -ms-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    100% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        -moz-transform: translateX(-3px) rotate(-2deg);
        -ms-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
}

.hvr-icon-buzz {
    border-radius: 0;
    padding: 10px 30px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    -moz-transform: perspective(1px) translateZ(0);
    -ms-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-icon-buzz .hvr-icon {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    padding-left: 5px;
}

.hvr-icon-buzz:hover .hvr-icon, .hvr-icon-buzz:focus .hvr-icon, .hvr-icon-buzz:active .hvr-icon {
    -webkit-animation-name: hvr-icon-buzz;
    -moz-animation-name: hvr-icon-buzz;
    -ms-animation-name: hvr-icon-buzz;
    animation-name: hvr-icon-buzz;
    -webkit-animation-duration: 0.15s;
    -moz-animation-duration: 0.15s;
    -ms-animation-duration: 0.15s;
    animation-duration: 0.15s;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.btn-remove {
    background-color: #e5f7fd;
    color: #00aeef;
    width: 100%;
}

.btn-remove:hover, .btn-remove:focus {
    color: #ff0000;
}

.btn-edit {
    background-color: #00aeef;
    color: #ffffff;
    width: 100%;
}

.btn-edit:hover, .btn-edit:focus {
    color: #17479d;
}

/*Button Hover End*/

/*UL Arrow Style Start*/
.arrow-list {
    list-style: none;
    padding-left: 20px;
}

.arrow-list > li {
    position: relative;
    line-height: 24px;
}

.arrow-list > li:before {
    content: "\f105";
    font-family: 'FontAwesome';
    color: #00a5e3;
    position: absolute;
    left: -15px;
}

/*UL Arrow Style End*/


.login-left {
    position: relative;
    margin: 25px 0;
}

.login-content {
    position: absolute;
    top: 0;
    left: 0;
}

.login-form {
    border-left: 1px solid #edf2f5;
    padding-left: 40px;
    /*padding-top: 40px;*/
}

.login-form h1 {
    color: #182c40;
}

.login-form p {
    color: #273042;
}

.form-email {
    position: relative;
    background-color: #ffffff;
    margin-bottom: 0;
    padding: 15px;
    padding-left: 65px;
    padding-right: 65px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.form-email .email-icon i {
    color: #767e8a;
    position: absolute;
    left: 25px;
    top: 24px;
    font-size: 25px;
    opacity: .65;
}

.form-email .check i {
    color: #00ac39;
    position: absolute;
    right: 25px;
    top: 24px;
    font-size: 25px;
}

.form-email .input-container {
    position: relative;
}

.form-email input {
    border: none;
    background-color: #ffffff;
    line-height: 30px;
    padding: 0;
    color: #273042;
    z-index: 1;
    position: relative;
    width: 100%;
    height: 42px;
}

.form-email label {
    margin: 0;
    color: #273042;
    opacity: .65;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 42px;
    -webkit-transition: 0.2s ease;
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -ms-transition: 0.2s ease;
    transition: 0.2s ease;
    z-index: 1;
}

.form-email .input-container .bar {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #757575;
    width: 100%;
    height: 1px;
    z-index: 1;
}

.form-email .input-container .bar:before, .form-email .input-container .bar:after {
    content: '';
    position: absolute;
    background: #00adef;
    width: 0;
    height: 2px;
    -webkit-transition: .2s ease;
    transition: .2s ease;
}

.form-email .input-container .bar:before {
    left: 50%;
}

.form-email .input-container .bar:after {
    right: 50%;
}

.form-email .input-container input:valid ~ label {
    color: #9d9d9d;
    -webkit-transform: translate(-12%, -50%) scale(0.75);
    transform: translate(-12%, -50%) scale(0.75);
}

.form-email .input-container input:focus ~ label {
    color: #9d9d9d;
    -webkit-transform: translate(-12%, -50%) scale(0.75);
    -moz-transform: translate(-12%, -50%) scale(0.75);
    -ms-transform: translate(-12%, -50%) scale(0.75);
    transform: translate(-12%, -50%) scale(0.75);
}

.form-email .input-container.input-has-value > label {
    color: #9d9d9d;
    -webkit-transform: translate(-12%, -50%) scale(0.75);
    -moz-transform: translate(-12%, -50%) scale(0.75);
    -ms-transform: translate(-12%, -50%) scale(0.75);
    transform: translate(-12%, -50%) scale(0.75);
}


.form-email .input-container input:focus ~ .bar:before, .form-email .input-container input:focus ~ .bar:after {
    width: 50%;
}

.form-email .input-container input:focus ~ .bar:before, .form-email .input-container input:focus ~ .bar:after {
    width: 50%;
}


.form-email input:focus {
    color: #273042;
    background-color: #edf2f5;
    box-shadow: none;
}

.form-email .check {
    display: none;
}

.form-email .check.active {
    display: block;
}

.form-password {
    position: relative;
    background-color: #ffffff;
    padding: 15px;
    padding-left: 65px;
    padding-right: 65px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.form-password .password-icon i {
    color: #767e8a;
    position: absolute;
    left: 25px;
    top: 24px;
    font-size: 25px;
    opacity: .65;
}


.form-password .input-container {
    position: relative;
}

.form-password input {
    border: none;
    background-color: #ffffff;
    line-height: 30px;
    padding: 0;
    color: #273042;
    z-index: 1;
    position: relative;
    width: 100%;
    height: 42px;
}

.form-password label {
    margin: 0;
    color: #273042;
    opacity: .65;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 42px;
    -webkit-transition: 0.2s ease;
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -ms-transition: 0.2s ease;
    transition: 0.2s ease;
    z-index: 1;
}

.form-password .input-container .bar {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #757575;
    width: 100%;
    height: 1px;
    z-index: 1;
}

.form-password .input-container .bar:before, .form-password .input-container .bar:after {
    content: '';
    position: absolute;
    background: #00adef;
    width: 0;
    height: 2px;
    -webkit-transition: .2s ease;
    transition: .2s ease;
}

.form-password .input-container .bar:before {
    left: 50%;
}

.form-password .input-container .bar:after {
    right: 50%;
}

.form-password .input-container input:focus ~ label {
    color: #9d9d9d;
    -webkit-transform: translate(-12%, -50%) scale(0.75);
    -moz-transform: translate(-12%, -50%) scale(0.75);
    -ms-transform: translate(-12%, -50%) scale(0.75);
    transform: translate(-12%, -50%) scale(0.75);
}

.form-password .input-container.input-has-value > label {
    color: #9d9d9d;
    -webkit-transform: translate(-12%, -50%) scale(0.75);
    -moz-transform: translate(-12%, -50%) scale(0.75);
    -ms-transform: translate(-12%, -50%) scale(0.75);
    transform: translate(-12%, -50%) scale(0.75);
}


.form-password .input-container input:focus ~ .bar:before, .form-password .input-container input:focus ~ .bar:after {
    width: 50%;
}

.form-password .input-container input:focus ~ .bar:before, .form-password .input-container input:focus ~ .bar:after {
    width: 50%;
}

.form-password input:focus {
    color: #273042;
    background-color: #edf2f5;
    box-shadow: none;
}


.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    padding-top: 5px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    color: #273042;
    opacity: .70;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #465666;
    border-radius: 50%;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: #00ac39;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.top_bar {
    background-color: #17479e;
}

.top_bar ul {
    list-style: none;
    margin: 0;
}

.top_bar ul > li {
    display: inline-block;
}

.top_bar ul > li > a {
    color: #ffffff;
    padding: 10px 12px;
    display: block;
    font-size: 14px;
    position: relative;
}

.top_bar ul > li > a:after {
    content: '|';
    position: relative;
    left: 12px;
}

.top_bar ul > li:last-child > a:after {
    display: none;
}

/*Top Navigation Bar*/
.top_navigation {
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 10px 15px rgba(0, 0, 0, .2);
    box-shadow: 0 10px 15px rgba(0, 0, 0, .2);
}

.top_navigation.fixed {
    position: fixed;
    top: 0;
    background-color: #ffffff;
    width: 100%;
    z-index: 99;
}

.efleetpass-nav-bar > .navbar {
    padding: 0;
}

.efleetpass-nav-bar > .navbar .navbar-brand {
    padding: 16px 0;
}

.efleetpass-nav-bar > .navbar > .navbar-collapse > .navbar-nav > .nav-item {
    border-right: 1px solid #eeeeee;
    position: relative;
}

.efleetpass-nav-bar > .navbar > .navbar-collapse > .navbar-nav > .nav-item:first-child {
    border-left: 1px solid #eeeeee;
}

.efleetpass-nav-bar > .navbar > .navbar-collapse > .navbar-nav > .nav-item > a {
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    padding: 20px 25px;
    padding-right: 35px;
}

.efleetpass-nav-bar > .navbar > .navbar-collapse > .navbar-nav > .nav-item > a > span {
    display: block;
    color: #969696;
    font-size: 14px;
    font-weight: 300;
    padding-top: 5px;
}

.efleetpass-nav-bar > .navbar > .navbar-collapse > .navbar-nav > .nav-item.help > a {
    padding-right: 25px;
    padding-left: 35px;
    position: relative;
}

.efleetpass-nav-bar > .navbar > .navbar-collapse > .navbar-nav > .nav-item.help > a:before {
    content: '\f059';
    font-family: 'FontAwesome';
    color: #999999;
    position: absolute;
    left: 14px;
    font-size: 20px;
}

.efleetpass-nav-bar > .navbar > .navbar-collapse > .navbar-nav > .nav-item.account > a {
    padding-right: 25px;
    padding-left: 35px;
    position: relative;
    color: #17479e;
}

.efleetpass-nav-bar > .navbar > .navbar-collapse > .navbar-nav > .nav-item.account > a > span {
    color: #00aeef;
}

.efleetpass-nav-bar > .navbar > .navbar-collapse > .navbar-nav > .nav-item.account > a:before {
    content: '\f2be';
    font-family: 'FontAwesome';
    color: #00adef;
    position: absolute;
    left: 10px;
    font-size: 20px;
}


.efleetpass-nav-bar > .navbar > .navbar-collapse > .navbar-nav > .nav-item > ul {
    position: absolute;
    z-index: 1;
    width: 100%;
    background-color: #ffffff;
    list-style: none;
    padding: 0px;
    opacity: 0;
    display: none;
    -webkit-box-shadow: 0px 4px 5px 0px rgba(168, 168, 168, 1);
    -moz-box-shadow: 0px 4px 5px 0px rgba(168, 168, 168, 1);
    box-shadow: 0px 4px 5px 0px rgba(168, 168, 168, 1);
}

.efleetpass-nav-bar > .navbar > .navbar-collapse > .navbar-nav > .nav-item > ul > li > a {
    color: #000000;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 30px;
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    padding: 7px 20px;
    display: block;
    border-bottom: solid 4px #17479e;
}

.efleetpass-nav-bar > .navbar > .navbar-collapse > .navbar-nav > .nav-item > ul > li > a:hover {
    background-color: #17479e;
    color: #fff;
}


.efleetpass-nav-bar > .navbar > .navbar-collapse > .navbar-nav > li.has-submenu .arrow-down:after {
    padding: 0px 15px;
    cursor: pointer;
    z-index: 111;
    right: -5px;
    top: 20px;
    font-size: 20px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.efleetpass-nav-bar > .navbar > .navbar-collapse > .navbar-nav > li.has-submenu .arrow-down:after {
    font-family: 'FontAwesome';
    content: '\f107';
    position: absolute;
    color: #999999;
}

.efleetpass-nav-bar > .navbar > .menu-btn {
    position: relative;
    z-index: 99;
    padding: 15px 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.efleetpass-nav-bar > .navbar > .menu-btn:hover, .efleetpass-nav-bar > .navbar > .menu-btnfocus {
    outline: none;
}


/*responsive menu toggle button*/
.burger-menu {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-right: 40px;
    border: none;
    margin-top: 16px;
}

.burger {
    position: relative;
    background-color: #00aeef;
    height: 2px;
    width: 30px;
}

.sticky_header .navbar-toggle:focus, .sticky_header .navbar-toggle:hover {
    background-color: transparent;
}

.burger::before {
    position: absolute;
    background-color: #00aeef;
    width: 30px;
    height: 2px;
    top: 8px;
    content: "";
    display: block;
}

.burger::after {
    position: absolute;
    background-color: #00aeef;
    width: 30px;
    height: 2px;
    bottom: 8px;
    content: "";
    display: block;
}

.burger::after, .burger::before, .burger {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}

.menu-btn.left .burger::after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    bottom: 0px;
}

.menu-btn.left .burger::before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    top: 0px;
}

.menu-btn.left .burger {
    background: rgba(111, 111, 111, .0);
}

.melanie_nolte .navbar-toggle.menu_btn {
    position: relative;
    z-index: 99;
}

.melanie_nolte .navbar-toggle.menu_btn:hover, .melanie_nolte .navbar-toggle.menu_btn:focus, .melanie_nolte .navbar-toggle.menu_btn:active {
    box-shadow: none;
    outline: none;
}

/*Top Navigation Bar*/


.dash-content-heading {
    background-color: #00aeef;
    padding: 8px 15px;
}

.dash-content-heading h4 {
    font-size: 16px;
    color: #ffffff;
    margin: 0;
}


.regs-bg {
    background-color: #17479e;
    color: #ffffff;
    padding: 10px 15px;
}

.regs-left > h5 {
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #ffffff;
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-block;
    margin: 40px 0;
}

.regs-left > h4 {
    font-size: 17px;
    font-weight: 500;
}

.regs-left > p {
    font-size: 13px;
    font-weight: 400;
}


.stepwizard-step .btn-circle {
    text-align: center;
    width: 145px;
    padding: 6px 10px;
    line-height: 1.428571429;
    border-radius: 15px;
    background-color: #ace8f7;
    color: rgba(23, 71, 158, .70);
    font-size: 12px;
    position: relative;
    border: 3px solid transparent;
}

.stepwizard-step .btn-success {
    border: 3px solid #5ad1ef;
    background-color: #17479e;
    color: #fff;
    border-radius: 50px;
    cursor: default !important;
}

.stepwizard-step .btn-success:hover, .stepwizard-step .btn-success:focus, .stepwizard-step .btn-success:active {
    background-color: #17479e !important;
    border-color: #ace8f7 !important;
    box-shadow: none !important;
}

.stepwizard-step .btn-circle:after {
    content: '';
    height: 5px;
    width: 100%;
    background-color: #ace8f7;
    position: absolute;
    z-index: -1;
    top: 15px;
}

.stepwizard-step .btn-circle.current:after {
    background-color: #17479e;
}

.stepwizard-step:last-child .btn-circle:after {
    display: none;
}

.personal-details {
    border: 1px solid #f3f3f3;
    padding: 15px;
    margin: 40px 0;
}

.personal-details .heading h5 {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.personal-details .form-group {
    margin-bottom: 10px;
}

.checkbox-regs .custom-control-label {
    font-size: 16px;
    color: #000000;
    font-weight: 400;
}

.checkbox-regs .custom-control-label::before {
    top: -4px;
    height: 25px;
    width: 25px;
    left: -30px;
}

.checkbox-regs .custom-control-label::after {
    background-size: 18px;
    left: -25px;
    top: 0;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #00aeef;
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: #00aeef;
}

.checkbox-regs {
    margin-bottom: 20px;
}

.stepwizard-step .btn-circle[disabled="disabled"] {
    cursor: not-allowed;
}

.stepwizard-step .btn-circle[disabled="disabled"]:hover, .stepwizard-step .btn-circle[disabled="disabled"]:focus {
    box-shadow: none;
}

.personal-address-box {
    border: 1px solid #f3f3f3;
    padding: 15px;
    margin: 40px 0;
}

.personal-search-detail {
    color: #000000;
    opacity: .80;
    padding-top: 20px;
}

.personal-search-detail h5 {
    font-size: 16px;
}

.personal-search-detail p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 18px;
}

.personal-search-detail {
    display: none;
}

.personal-search-detail.active {
    display: block;
}

.datepicker-icon {
    position: relative;
}

.datepicker-icon .fa-calendar {
    position: absolute;
    top: 10px;
    right: 10px;
}

.vehicles-list {
    border: 1px solid #f3f3f3;
    padding: 15px;
    margin-bottom: 20px;
}

.vehicle-number {
    background-color: #00aeef;
    border: 1px solid #ffffff;
    outline: 3px solid #17479d;
    padding: 20px 35px;
    display: inline-block;
    text-align: center;
}

.vehicle-number > h4 {
    color: #ffffff;
    font-size: 24px;
    margin: 0;
}

.vehicle-number > h2 {
    color: #ffffff;
    font-size: 42px;
    margin: 0;
}

#time-range {
    background-color: #f9f9f9;
    padding: 15px;
    margin: 30px 0;
    border: 1px solid #f3f3f3;
    border-radius: 5px;
}

#time-range #slider-range {
    background-color: #e1e1e1;
    border-radius: 50px;
    border-color: #e1e1e1;
}

#time-range #slider-range .ui-slider-handle {
    border-radius: 50%;
    background-color: #17479d;
}

#time-range #slider-range .ui-slider-range {
    background-color: #00aeef;
}

#time-range .slider-time, #time-range .slider-time2 {
    display: block;
    margin-bottom: 15px;
}

#time-range .sliders_step1 {
    margin-top: 18px;
}

.vehicle-number a {
    display: block;
}

.motorcycle a {
    color: #000000;
}

.vehicle-number .fa-plus {
    color: #ffffff;
    height: 50px;
    width: 50px;
    line-height: 42px;
    border: 5px solid #ffffff;
    border-radius: 50%;
    font-size: 30px;
}

.vehicle-number h6 {
    font-size: 16px;
    font-weight: 500;
    color: #ffff;
    margin-top: 15px;
    margin-bottom: 0;
}

.personal-details .heading.etags h5 {
    margin-bottom: 10px;
}

.tag-box {
    padding: 10px 0;
}

.tag-box > h6 {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    background-color: #fafafa;
    padding: 15px;
    border: 1px solid #e1e1e1;
}

.etag-radio.custom-control {
    line-height: 22px;
    padding-bottom: 10px;
}

.etag-radio .custom-control-label span {
    color: #00adef;
}

.confirm-form td {
    color: rgba(0, 0, 0, .8);
    font-size: 14px;
}

.confirm-form td a {
    color: #00aeef;
}

.confirm-form td a i {
    padding-left: 5px;
}

.confirm-form td h4 {
    color: #00aeef;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.payment-tabs .nav-pills .nav-link {
    border: 1px solid #ddd;
    color: #00adef;
    margin-right: 10px;
}

.payment-tabs .nav-pills .nav-link.active {
    background-color: #00adef;
    color: #ffffff;
}

.amount-btns .btn.active {
    background-color: #00adef;
    color: #fff;
}

.custom-radio .custom-control-label {
    line-height: 24px;
}

.today-payment .list-group-item:focus, .today-payment .list-group-item:hover {
    z-index: inherit;
}


.left-sidebar > ul > li > a > .arrow-down:after {
    padding: 0px 15px;
    cursor: pointer;
    z-index: 111;
    right: -5px;
    top: 20px;
    font-size: 20px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.left-sidebar > ul > li > a > .arrow-down:after {
    font-family: 'FontAwesome';
    content: '\f107';
    position: absolute;
    color: #999999;
}

.left-sidebar > ul > li > a > .arrow-down:after {
    padding: 10px 15px;
    right: 0;
    top: 0;
}


.left-sidebar ul {
    list-style: none;
    padding: 0;
}

.left-sidebar ul li a {
    display: block;
    padding: 10px 40px;
    line-height: 22px;
    font-size: 16px;
    color: rgba(0, 0, 0, .60);
}

.left-sidebar > ul > li:first-child > a {
    background-color: #f6f6f6;
}

.left-sidebar > ul > li.active > a, .left-sidebar > ul > li > a:hover, .left-sidebar > ul > li.active > a:focus {
    background-color: #cceffc;
    color: #17479e;
}

.left-sidebar > ul > li > ul {
    display: none;
    background-color: #f6f6f6;
}

.left-sidebar > ul > li > ul > li {
    border-bottom: 1px solid #fff;
}

.left-sidebar > ul > li > ul > li > a:hover, .left-sidebar > ul > li > ul > li > a:focus {
    background-color: #cceffc;
    color: #17479e;
}

.left-sidebar > ul > li.open > a > .arrow-down:after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.user-detail .media-body {
    position: relative;
}

.dashbord-menu {
    border: none;
    background-color: transparent;
    display: none;
    position: absolute;
    right: 0;
    top: 10px;
    cursor: pointer;
    padding: 15px 5px;
}

.dashbord-menu:hover, .dashbord-menu:focus {
    outline: none;
}

.dashbord-menu.left .burger::after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    bottom: 0px;
}

.dashbord-menu.left .burger::before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    top: 0px;
}

.dashbord-menu.left .burger {
    background: rgba(111, 111, 111, .0);
}


.left-sidebar > ul > li > a {
    position: relative;
}

.left-sidebar > ul > li > a:before {
    content: '';
    height: 44px;
    width: 40px;
    top: 0;
    position: absolute;
    background-repeat: no-repeat;
    left: 0;
}

.left-sidebar > ul > li.dashboard > a:before {
    background-image: url(../img/icon.png);
    background-position: 0px 0px;
}

.left-sidebar > ul > li.dashboard.active > a:before {
    background-position: 0px -40px;
}

.left-sidebar > ul > li.dashboard > a:hover:before {
    background-position: 0px -40px;
}

.left-sidebar > ul > li.account > a:before {
    background-image: url(../img/icon.png);
    background-position: -40px 0px;
}

.left-sidebar > ul > li.account.active > a:before {
    background-position: -40px -40px;
}

.left-sidebar > ul > li.account > a:hover:before {
    background-position: -40px -40px;
}


.left-sidebar > ul > li.my-details > a:before {
    background-image: url(../img/icon.png);
    background-position: -80px 0px;
}

.left-sidebar > ul > li.my-details.active > a:before {
    background-position: -80px -40px;
}

.left-sidebar > ul > li.my-details > a:hover:before {
    background-position: -80px -40px;
}

.left-sidebar > ul > li.driver-account > a:before {
    background-image: url(../img/icon.png);
    background-position: 0px 0px;
}

.left-sidebar > ul > li.driver-account > a:before {
    background-position: 0px -40px;
}

.left-sidebar > ul > li.driver-account > a:hover:before {
    background-position: 0px -40px;
}

.left-sidebar > ul > li.driver-create > a:before {
    background-image: url(../img/icon.png);
    background-position: -80px 0px;
}

.left-sidebar > ul > li.driver-create.active > a:before {
    background-position: -80px -40px;
}

.left-sidebar > ul > li.driver-create > a:hover:before {
    background-position: -80px -40px;
}


.left-sidebar > ul > li.auto-payment > a:before {
    background-image: url(../img/icon.png);
    background-position: -120px 0px;
}

.left-sidebar > ul > li.auto-payment.active > a:before {
    background-position: -120px -40px;
}

.left-sidebar > ul > li.auto-payment > a:hover:before {
    background-position: -120px -40px;
}


.left-sidebar > ul > li.vehicles > a:before {
    background-image: url(../img/icon.png);
    background-position: -160px 0px;
}

.left-sidebar > ul > li.vehicles.active > a:before {
    background-position: -160px -40px;
}

.left-sidebar > ul > li.vehicles > a:hover:before {
    background-position: -160px -40px;
}


.left-sidebar > ul > li.e-tags > a:before {
    background-image: url(../img/icon.png);
    background-position: -200px 0px;
}

.left-sidebar > ul > li.e-tags.active > a:before {
    background-position: -200px -40px;
}

.left-sidebar > ul > li.e-tags > a:hover:before {
    background-position: -200px -40px;
}


.left-sidebar > ul > li.financial-history > a:before {
    background-image: url(../img/icon.png);
    background-position: -240px 0px;
}

.left-sidebar > ul > li.financial-history.active > a:before {
    background-position: -240px -40px;
}

.left-sidebar > ul > li.financial-history > a:hover:before {
    background-position: -240px -40px;
}


.left-sidebar > ul > li.trip-history > a:before {
    background-image: url(../img/icon.png);
    background-position: -280px 0px;
}

.left-sidebar > ul > li.trip-history.active > a:before {
    background-position: -280px -40px;
}

.left-sidebar > ul > li.trip-history > a:hover:before {
    background-position: -280px -40px;
}


.left-sidebar > ul > li.export-trip-history > a:before {
    background-image: url(../img/icon.png);
    background-position: -320px 0px;
}

.left-sidebar > ul > li.export-trip-history.active > a:before {
    background-position: -320px -40px;
}

.left-sidebar > ul > li.export-trip-history > a:hover:before {
    background-position: -320px -40px;
}


.left-sidebar > ul > li.statements > a:before {
    background-image: url(../img/icon.png);
    background-position: -360px 0px;
}

.left-sidebar > ul > li.statements.active > a:before {
    background-position: -360px -40px;
}

.left-sidebar > ul > li.statements > a:hover:before {
    background-position: -360px -40px;
}


.left-sidebar > ul > li.e-log-book > a:before {
    background-image: url(../img/icon.png);
    background-position: -237px 0px;
}

.left-sidebar > ul > li.e-log-book.active > a:before {
    background-position: -237px -40px;
}

.left-sidebar > ul > li.e-log-book > a:hover:before {
    background-position: -237px -40px;
}


.left-sidebar > ul > li.osr-fines > a:before {
    background-image: url(../img/icon.png);
    background-position: -200px 0px;
}

.left-sidebar > ul > li.osr-fines.active > a:before {
    background-position: -200px -40px;
}

.left-sidebar > ul > li.osr-fines > a:hover:before {
    background-position: -200px -40px;
}


.left-sidebar > ul > li.logout > a:before {
    background-image: url(../img/icon.png);
    background-position: -400px 0px;
}

.left-sidebar > ul > li.logout.active > a:before {
    background-position: -400px -40px;
}

.left-sidebar > ul > li.logout > a:hover:before {
    background-position: -400px -40px;
}


.box-border {
    border: 1px solid #f3f3f3;
    padding: 15px;
}

.box-border .heading h5 {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
}


.heading-edit {
    border-bottom: 1px solid #e5e5e5;
    font-weight: 500;
    padding-bottom: 10px;
}

.heading-edit h5 {
    margin: 0;
    font-size: 16px;
}

.heading-edit .d-flex {
    align-items: center;
}

.personal-detail {
    color: #000000;
    opacity: .80;
    padding-top: 20px;
}

.personal-detail h5 {
    font-size: 16px;
}

.personal-detail p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 18px;
}

.promotion-content .confirm-form > tbody > tr > td {
    padding: 25px 10px;
}

.promotion-content .confirm-form > tbody > tr > td > i {
    color: #ff0000;
    font-size: 25px;
    vertical-align: middle;
    padding-right: 10px;
}

.auto-payment-amount {
    padding: 0 30px;
}

.card-align {
    align-items: center;
}

.card-show {
    display: none;
}

.card-show.active {
    display: block;
}

.auto-payment-card .payment-tabs .nav-pills .nav-link {
    margin-right: 0;
    padding: 12px 15px;
    border-radius: 6px;
    background-color: #b2e7fa;
    color: #17479e;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.auto-payment-card .payment-tabs .nav-pills .nav-link.active {
    background-color: #00aeef;
    color: #ffffff;
}

.warning-box {
    background-color: #fafafa;
    padding: 20px 30px;
    border: 1px solid #f3f3f3;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    align-items: center;
}

.warning-box .icon-box {
    font-size: 40px;
    padding-right: 20px;
    color: #f26c4f;
}

.warning-box p {
    margin-bottom: 0;
}


.box-border-second {
    border: 1px solid #f3f3f3;
    padding: 15px;
}

.box-border-second > .heading {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 25px;
}

.box-border-second > .heading > h5 {
    padding-bottom: 10px;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    float: left;
}

.box-border-second > .heading > h6 {
    font-size: 12px;
    color: #00aeef;
    margin-bottom: .5rem;
    padding-bottom: 10px;
    float: right;
}

.result-secton select {
    width: 100px;
    display: inline-block;
}


.toll-notices .stepwizard-step .btn-circle {
    width: 170px;
}

.toll-box {
    background-color: #e6e6e6;
    padding: 30px 10px;
}

.unpaid-toll .checkbox-regs {
    margin-bottom: 0;
}

.unpaid-toll .checkbox-regs .custom-checkbox {
    margin-bottom: 0;
}

.pay-table {
    border: 1px solid #dee2e6;
    margin-bottom: 20px;
}

.pay-table .table {
    margin-bottom: 0;
}

.pay-table .table td {
    border-top: none;
}


.invoice-table {
    width: 100%;
}

.invoice-table td {
    border: none;
    color: #000000;
}

.invoice-table td, .invoice-table th {
    padding: 8px 15px;
}

.invoice-table th {
    color: #000000;
}

.invoice-table p {
    margin-bottom: 0;
    color: #000000;
}

.invoice-table .v-align {
    vertical-align: middle;
}

.table-header > tbody > tr > td:first-child {
    width: 70%;
}


.invoice-table.table-bordered td, .invoice-table.table-bordered th {
    border: 1px solid #000000 !important;
}

.invoice-table.table-bordered > tbody > tr > td:last-child {
    text-align: right;
}

.invoice-table.table-bordered > tbody > tr > td:nth-child(4) {
    text-align: center;
}

.invoice-table.table-bordered > tbody > tr > td:nth-child(5) {
    text-align: right;
}

.tag-number td {
    color: #000000;
}

.tag-number td {
    padding: 8px 15px;
    padding-bottom: 10px;
    padding-top: 0;
}


.footer-bg {
    background-color: #26272b;
}


.footer-links {
    text-align: center;
}

.footer-links > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}

.footer-links > ul > li {
    display: inline-block;
}

.footer-links > ul > li > a {
    color: #ffffff;
    opacity: .80;
    font-size: 17px;
    font-weight: 300;
    padding: 10px 30px;
    display: block;
    position: relative;
}

.footer-links > ul > li > a:after {
    content: '|';
    position: relative;
    left: 30px;
}

.footer-links > ul > li:last-child > a:after {
    display: none;
}

.footer-content {
    padding-top: 10px;
}

.footer-content > h6 {
    color: #ffffff;
    opacity: .80;
    font-size: 15px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 2px;
}

/*-- scroll to top --*/
.scrollToTop {
    width: 40px;
    height: 40px;
    position: fixed;
    z-index: 9999;
    right: 10px;
    bottom: 15px;
    color: #fff;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    border-radius: 100%;
    border: 1px solid #00adef;
    padding: 3px;
    display: none;
}

.scrollToTop:hover {
    text-decoration: none;
    border-color: #17469d;
}

.scrollToTop i {
    display: block;
    width: 100%;
    height: 100%;
    background: #00adef;
    border-radius: 100%;
    line-height: 170%;
    font-size: 18px;
    color: #ffffff;
}

.scrollToTop:hover i {
    background: #17469d;
}

/*------scroll to top end--------*/
/*Min width Query*/
@media (min-width: 576px) {

}

@media (min-width: 768px) {

}

@media (min-width: 992px) {
    /*Top Navigation Bar*/
    .efleetpass-nav-bar > .navbar > .navbar-collapse > .navbar-nav > .nav-item:hover > ul {
        display: block;
        opacity: 1;
    }

    .efleetpass-nav-bar > .navbar > .menu-btn {
        display: none;
    }

    /*Top Navigation Bar*/
    .stepwizard-row {
        display: table-row;
    }

    .stepwizard {
        display: table;
        width: 100%;
        position: relative;
    }

    .stepwizard-step {
        display: inline-block;
        text-align: left;
        position: relative;
    }

}

@media (min-width: 1200px) {
    .container {
        max-width: 1280px;
    }
}

/*Max width Query*/
@media (max-width: 575.98px) {

}

@media (max-width: 767.98px) {
    .dash-content-heading {
        margin-top: 20px;
    }

    .regs-bg {
        margin-bottom: 20px;
    }

    #time-range .sliders_step1 {
        margin-bottom: 30px;
    }

    .hvr-icon-buzz {
        margin-bottom: 10px;
    }

    .confirm-form td {
        display: block;
        border-bottom: none;
    }

}

@media (max-width: 991.98px) {
    .login-form {
        border: none;
        padding-left: 0;
    }

    /*Top Navigation Bar*/
    .efleetpass-nav-bar > .navbar > .navbar-collapse > .navbar-nav > .nav-item {
        border-right: 0;
        border-bottom: 1px solid #eeeeee;
    }

    .efleetpass-nav-bar > .navbar > .navbar-collapse > .navbar-nav > .nav-item > ul {
        opacity: 1;
        position: static;
        width: 100%;
    }

    .efleetpass-nav-bar > .navbar > .navbar-collapse {
        position: fixed;
        z-index: 11;
        top: 0px;
        bottom: 0;
        left: 0;
        width: 80%;
        text-align: left;
        -webkit-transition: transform 0.3s ease-out;
        -moz-transition: transform 0.3s ease-out;
        transition: transform 0.3s ease-out;
        overflow: visible;
        background-color: #ffffff;
        border: 1px solid #e9ecec;
    }

    .efleetpass-nav-bar .menu-on {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }

    .efleetpass-nav-bar .menu-off {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    .efleetpass-nav-bar > .navbar > .navbar-collapse > ul {
        padding-top: 40px;
    }

    .efleetpass-nav-bar > .navbar > .navbar-collapse > .navbar-nav > li.has-submenu .arrow-down:after {
        padding: 30px 15px;
        right: 0;
        top: 0;
    }

    /*Top Navigation Bar*/
    .stepwizard-row {
        text-align: left;
    }

    .stepwizard-step {
        padding-bottom: 20px;
        max-width: 100%;
    }

    .stepwizard-step .btn-circle:after {
        height: 50px;
        width: 5px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }


    .dashbord-menu {
        display: block;
    }

    .left-sidebar {
        position: fixed;
        z-index: 10;
        bottom: 0;
        left: 0;
        width: 80%;
        text-align: left;
        -webkit-transition: transform 0.3s ease-out;
        -moz-transition: transform 0.3s ease-out;
        transition: transform 0.3s ease-out;
        overflow: visible;
        background-color: #ffffff;
        border: 1px solid #e9ecec;
        overflow-y: scroll;
    }

    .left-sidebar.menu-off {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    .left-sidebar..menu-on {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .user-detail {
        padding-bottom: 20px;
    }
}

@media (max-width: 1199.98px) {

}


/* OVERRIDE GOOGLE TRANSLATE WIDGET CSS BEGIN */
div#google_translate_element div.goog-te-gadget-simple {
    border: none;
    background-color: transparent;
    /*background-color: #17548d;*/ /*#e3e3ff*/
}

div#google_translate_element div.goog-te-gadget-simple a.goog-te-menu-value:hover {
    text-decoration: none;
}

div#google_translate_element div.goog-te-gadget-simple a.goog-te-menu-value span {
    color: #aaa;
}

div#google_translate_element div.goog-te-gadget-simple a.goog-te-menu-value span:hover {
    color: white;
}

.goog-te-gadget-icon {
    display: none !important;
    background: url("../img/translate-globe.png") 0 0 no-repeat !important;
}

/* Remove the down arrow */
/* when dropdown open */
div#google_translate_element div.goog-te-gadget-simple a.goog-te-menu-value span[style="color: rgb(213, 213, 213);"] {
    display: none;
}

/* after clicked/touched */
div#google_translate_element div.goog-te-gadget-simple a.goog-te-menu-value span[style="color: rgb(118, 118, 118);"] {
    display: none;
}

/* on page load (not yet touched or clicked) */
div#google_translate_element div.goog-te-gadget-simple a.goog-te-menu-value span[style="color: rgb(155, 155, 155);"] {
    display: none;
}

/* Remove span with left border line | (next to the arrow) in Chrome & Firefox */
div#google_translate_element div.goog-te-gadget-simple a.goog-te-menu-value span[style="border-left: 1px solid rgb(187, 187, 187);"] {
    display: none;
}

/* Remove span with left border line | (next to the arrow) in Edge & IE11 */
div#google_translate_element div.goog-te-gadget-simple a.goog-te-menu-value span[style="border-left-color: rgb(187, 187, 187); border-left-width: 1px; border-left-style: solid;"] {
    display: none;
}

/* HIDE the google translate toolbar */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

/* OVERRIDE GOOGLE TRANSLATE WIDGET CSS END */

div#google_translate_element div.goog-te-gadget-simple a.goog-te-menu-value span {
    background: url('../img/translate-globe.png');
    height: 16px;
    /*width:85px;*/

    display: block;
    content: '';
    opacity: 1;
    background-size: auto;
    background-repeat: no-repeat;
    text-indent: 100% !important;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    top: 8px;
}

.left-sidebar > ul > li.e-log-book > a:before {
    background-image: url(../img/icon.png);
    background-position: -237px 0px;
}

.left-sidebar > ul > li.e-log-book.active > a:before {
    background-position: -237px -40px;
}

.left-sidebar > ul > li.e-log-book > a:hover:before {
    background-position: -237px -40px;
}

.left-sidebar > ul > li.osr-fines > a:before {
    background-image: url(../img/icon.png);
    background-position: -200px 0px;
}

.left-sidebar > ul > li.osr-fines.active > a:before {
    background-position: -200px -40px;
}

.left-sidebar > ul > li.osr-fines > a:hover:before {
    background-position: -200px -40px;
}

.img-container {
    position: relative;
}

/* Bottom right text */
.text-block {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: black;
    color: white;
    padding: 10px;
}

/*button css update on request */
ul {
    list-style-type: none;
}

.form-control {
    font-size: 0.7rem;
    padding: 0px 5px;
}

p {
    margin-bottom: 0.5rem;
}

.btn-blue {
    padding: 5px 10px;
}

.top-btn {
    padding: 2px 5px;
    font-size: 12px;
}

.input-group-text {
    padding: 3px 10px;
}
