@import url("https://fonts.googleapis.com/css?family=Anton|News+Cycle:700|Roboto");
html {
    font-size: 15px;
}

h3,
p,
ul {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
}

.wrapper1 {
    height: 900px;
    background:#343A40;/* #fdb933;*/
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

svg.header {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50vw;
    z-index: 1;
}

/* Card Container & Body */
.card-container {
    width: 300px;
    min-height: 290px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
    padding: 10px;
    perspective: 1000px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.7s linear;
    z-index: 1;
    margin-top: 10px;
    margin-bottom: 100px;
}
.card-container .card-body {
    width: 100%;
    height: 100%;
}

/*- Card sides -*/
.side {
    width: 98%;
    height: 300px;
    /* min-height: 290px;
      height: auto;*/
    backface-visibility: hidden;
    background: #fffee1;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
    padding: 25px;
    position: absolute;
    top: 1.2%;
    left: 1%;
}
.side h2 {
    color: #915f35;
    font-family: "Anton", sans-serif;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.side p,
.side li {
    color: #8d8d8d;
    font-size: 1rem;
    font-family: "Roboto", sans-serif;
}
.side .container-fluid {
    height: 100%;
}
.side .container-fluid .row {
    height: 100%;
}

/* Card-Sides */
.side-back {
    z-index: 4;
    /*transform: rotateX(180deg);*/
    display: block;
    visibility: hidden;
    /*transform: rotateY(180deg);*/
}
.side-back .product-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.side-back .content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.side-back .product-image img {
    height: auto;
    width: 55%;
    margin-left: 10%;
}

.side-front {
    z-index: 2;
    backface-visibility: hidden;
}
.side-front .product-image {
    position: relative;
}
.side-front .product-image img {
    position: absolute;
    left: -34%;
    top: 45px;
}
.side-front .content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.side-front .price-rating {
    display: flex;
    justify-content: space-between;
}
.side-front .price-rating h3 {
    color: #915f35;
    font-size: 1.2rem;
    font-family: "News Cycle", sans-serif;
    text-transform: uppercase;
}
.side-front .price-rating h3 span {
    color: #e57740;
}
.side-front .price-rating .price,
.side-front .price-rating .rating {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.side-front .price-rating .price p {
    font-size: 2rem;
    font-family: "News Cycle", sans-serif;
    line-height: 2rem;
    color: #e57740;
}
.side-front .price-rating .rating .fa {
    font-size: 1.5rem;
    margin-right: 0;
    color: #e57740;
}
.side-front .details {
    margin: 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #f7d7c7;
}
.side-front .button {
    margin-top: auto;
    border: 1px solid #e57740;
    border-radius: 40px;
    color: #e57740;
    cursor: pointer;
    display: block;
    padding: 15px;
    font-family: "Roboto", sans-serif;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s linear;
    overflow: hidden;
    z-index: 3;
}
.side-front .button:before {
    position: absolute;
    top: 0%;
    left: -160%;
    width: 150%;
    height: 100%;
    background: #e57740;
    content: " ";
    transition: all 0.4s ease-in;
    transform: skewX(60deg);
    z-index: -1;
}
.side-front .button:hover {
    color: #fff;
}
.side-front .button:hover:before {
    left: -30%;
}

.side-back .button {
    margin-top: auto;
    border: 1px solid #e57740;
    border-radius: 40px;
    color: #e57740;
    cursor: pointer;
    display: block;
    padding: 15px;
    font-family: "Roboto", sans-serif;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s linear;
    overflow: hidden;
    z-index: 3;
}
.side-back .button:before {
    position: absolute;
    top: 0%;
    left: -160%;
    width: 150%;
    height: 100%;
    background: #e57740;
    content: " ";
    transition: all 0.4s ease-in;
    transform: skewX(60deg);
    z-index: -1;
}
.side-back .button:hover {
    color: #fff;
}
.side-back .button:hover:before {
    left: -30%;
}



/* Flipping */
.flipped {
    transform: rotateY(180deg);
}

.disappear {
    opacity: 0;
    visibility: hidden;
    /*transition: opacity 1s ease-out, visibility 1s linear;*/
}

.appear {
    opacity: 1;
    visibility: visible;
    /*transition: opacity 1s ease-out, visibility 0s ease-out;*/
}

/* Rating Overrides */
.jq-ry-container {
    padding: 0;
}

@media (max-width: 992px) {


    .side-front .product-image img {
        position: static;
        height: 200px;
    }

    .side-front .product-image {
        display: flex;
        justify-content: center;
    }

    .side-front .content {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .side {
        width: 98%;
        height: 300px;
        min-height: 290px;
        height: auto;
        backface-visibility: hidden;
        background: #fffee1;
        border-radius: 10px;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
        padding: 25px;
        position: absolute;
        top: 1.2%;
        left: 1%;
    }
}

.bg-orange
{
    background-color: #fdb933 !important;
}


.sidenav {
    /*margin-top:4.7%;*/
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    /*background-color: white;*/
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    z-index: 100;
}

.sidenav a {
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
    transition: 0.3s;
    padding: 15px;
    margin: 1%;
    background: #f0b133;
}

.sidenav a:hover {
    background: #dd9913;
}


@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}


html,body,.content-main,.rtm-h{
height: 100% !important;
}
a{
color:#369adc;
}
a:hover{
color:#106aa6;
}
.navbar-fixed-top {
background-color: #fff;
box-shadow: 0 1px 30px rgba(0, 0, 0, .1);
-webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, .1);
}
.navbar-fixed-top .navbar-brand {
padding: 0px !important;
}
.navbar-fixed-top .navbar-brand img{
width:130px;
}
.navbar-fixed-top .nav {
padding: 0px !important;
}
.navbar-fixed-top .navbar-nav > li > a {
color: #555;
font-size: 14px;
}
.navbar-fixed-top .navbar-nav > li > a:hover,
.navbar-fixed-top .navbar-nav > li > a:focus {
text-decoration: none;
background-color: #000;
color: #fff;
}
.navbar-fixed-top .navbar-nav > .active > a,
.navbar-fixed-top .navbar-nav > .active > a:hover,
.navbar-fixed-top .navbar-nav > .active > a:focus {
color: #000;
}
.navbar-fixed-top button.navbar-toggle {
background: #f14444;
border-radius: 2px;
}
.navbar-fixed-top button.navbar-toggle:hover {
background: #999;
}
.navbar-fixed-top button.navbar-toggle > span.icon-bar {
background: #fff;
}
.navbar-right .dropdown-menu > li > a:hover,
.navbar-right .dropdown-menu > li > a:focus {
color: #fff;
text-decoration: none;
background-color: #000;
}
.navbar-right .dropdown .glyphicon-chevron-up{
display:none;
}
.navbar-right .dropdown.open .glyphicon-chevron-up{
display:inline-block;
}
.navbar-right .dropdown.open .glyphicon-chevron-down{
display:none;
}
.rtm-left-side-menu .nav-stacked{
margin-top: 50px;
}
.content-main{
margin-top: 0px;
}
.nopadding{
padding: 0 !important;
}
.label-round-lg{
border-radius: 22.5px;
}
.label-round{
border-radius: 17px;
}
.label-round-sm{
border-radius: 15px;
}
.label-round-xs{
border-radius: 11px;
padding-left: 10px;
padding-right: 10px;
}
.label-red,
.label-green,
.label-yellow,
.label-orange,
.label-gray{
padding: 5px !important;
border-radius: 17px;
}
.label-green{
background-color: #4caf50;
}
.label-red{
background-color: #e33d43;
}
.label-yellow{
background-color: #FFe766;
}
.label-orange{
background-color: #ff9800;
}
.label-gray{
background-color: gray;
}
#trucklist{
position: relative;
overflow: hidden;
width: 100%;
height: 100%;
min-height: 475px;
}
.rtm-vechile-list{
padding: 0 !important;
border-top:1px solid #ddd;
}
.rtm-vechile-list .list{
height: 70vh;
overflow: auto;
list-style: none;
}
.rtm-vechile-list img{
width: 35px;
}
.rtm-vechile-list .dsb{
/*margin: 1px 0!important;
border-bottom: 1px solid #ddd;*/
padding: 5px 10px 0 25px !important;
}
.rtm-vechile-list .dashboard-white{
height: 78px;
}
#map {
width: 100%;
height: 100%;
min-height: 475px;
}
#map1{
width: 100%;
height: 100%;
min-height: 450px;
}
.gm-style-iw{
background:#fff !important;
color: #4a4a4a !important;
text-align: center;
}
.rtm-map-info{
text-align: center;
}
.rtm-map-info img{
width: 35px !important;
}
.rtm-map-info h4{
font-size: 1.5em !important;
}
.rtm-map-info p{
font-size: 1em !important;
}
.filter,.sort{
margin-top:5px;
}
.sort-by li.asc,.sort-by li.desc{
background:#1fc0ee;
color:#fff;
}
li#filter-none{
background:#1fc0ee;
color:#fff;
}
li#filter-idle{
background:#ea5050;
color:#fff;
}
li#filter-runn{
background:#9ad74d;
color:#fff;
}
li#filter-favo{
background:#337ab7;
color:#fff;
}
.listmappage{
background: #fff !important;
}
.tbloginbox{
border:none;
border-radius: 0;
}
.tbloginbox .panel-heading{
border:none;
border-radius: 0;
background: rgba(41,129,188,1);
background: -moz-linear-gradient(left, rgba(41,129,188,1) 0%, rgba(61,185,251,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(41,129,188,1)), color-stop(100%, rgba(61,185,251,1)));
background: -webkit-linear-gradient(left, rgba(41,129,188,1) 0%, rgba(61,185,251,1) 100%);
background: -o-linear-gradient(left, rgba(41,129,188,1) 0%, rgba(61,185,251,1) 100%);
background: -ms-linear-gradient(left, rgba(41,129,188,1) 0%, rgba(61,185,251,1) 100%);
background: linear-gradient(to right, rgba(41,129,188,1) 0%, rgba(61,185,251,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2981bc', endColorstr='#3db9fb', GradientType=1 );
}
.tbbtn{
border-radius:3px;
transition:all 0.5s;
color:#fff;
padding:10px 55px;
text-transform: uppercase;
font-weight: bold;
border:none;
background: rgba(41,129,188,1);
background: -moz-linear-gradient(left, rgba(41,129,188,1) 0%, rgba(61,185,251,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(41,129,188,1)), color-stop(100%, rgba(61,185,251,1)));
background: -webkit-linear-gradient(left, rgba(41,129,188,1) 0%, rgba(61,185,251,1) 100%);
background: -o-linear-gradient(left, rgba(41,129,188,1) 0%, rgba(61,185,251,1) 100%);
background: -ms-linear-gradient(left, rgba(41,129,188,1) 0%, rgba(61,185,251,1) 100%);
background: linear-gradient(to right, rgba(41,129,188,1) 0%, rgba(61,185,251,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2981bc', endColorstr='#3db9fb', GradientType=1 );
}
.tbbtn:hover{
background: rgba(61,185,251,1);
background: -moz-linear-gradient(left, rgba(61,185,251,1) 0%, rgba(41,129,188,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(61,185,251,1)), color-stop(100%, rgba(41,129,188,1)));
background: -webkit-linear-gradient(left, rgba(61,185,251,1) 0%, rgba(41,129,188,1) 100%);
background: -o-linear-gradient(left, rgba(61,185,251,1) 0%, rgba(41,129,188,1) 100%);
background: -ms-linear-gradient(left, rgba(61,185,251,1) 0%, rgba(41,129,188,1) 100%);
background: linear-gradient(to right, rgba(61,185,251,1) 0%, rgba(41,129,188,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2981bc', endColorstr='#3db9fb', GradientType=1 );
color:#fff;
}
#mytable_wrapper{
padding:1px 25px;
border:1px solid #eee;
}
#mytable_wrapper thead{
background:#f4f4f4;
}
#mytable_wrapper .table-striped > tbody > tr:nth-of-type(2n+1){
background-color:#fff !important;
border:none !important;
}
#mytable_wrapper .table-striped > tbody > tr:nth-of-type(2n){
background:#f4f4f4 !important;
border:none !important;
}
#mytable_wrapper table{
border:1px solid #ddd;
font-size:14px !important;
}
#mytable_wrapper table.dataTable thead th,#mytable_wrapper table.dataTable thead td{
border:none;
}
#mytable_wrapper label{
margin-top:15px;
font-weight:400;
font-size:14px;
margin-bottom:10px;
}
#mytable_wrapper #mytable_info, #mytable_wrapper #mytable_paginate{
font-size:14px;
}
.tbpagedetailed{
background:#fff;
}
.tbpagedetailedheader{
/*background:#222;*/
}
.tbpagedetailed hr{
margin-top:0px !important;
margin-bottom:10px !important;
}
.tbpagedetailed h4{
padding-top:4px;
}
.rtm-dashboard{
padding: 20px;
}
.rtm-vehicle-h{
height: 100px;
}
.rtm-vehicle-h h3{
vertical-align: middle;
line-height: 40px;
margin-top: 25px;
}
.rtm-bg-red{
background: #ea5050;
color: #fff;
}
.rtm-bg-green{
background: #9ad74d;
color: #fff;
}
.rtm-bg-blue{
background: #1fc0ee;
color: #fff;
}
.rtm-bg-orange{
background: #fbb54b;
color: #fff;
}
.rtm-bg-yellow{
background: #f2de3d;
color: #fff;
}
.rtm-bg-white{
background: #fff;
color: #000;
}
.rtm-bg-black{
background: #000;
color: #fff;
}
.rtm-bg-grey{
background: #ea5050;
color: #fff;
}
.dsp-border{
    border: 1px solid #ddd;
    float: left;
    width: 100%;
    
}
.nav>li>a:focus, .nav>li>a:hover{
	background-color: initial;
	text-decoration: none;
	outline: none !important;
}
.vehiclename i{
	float: right;
	color: #666 !important;
}
.vehicleIMEI a, .vehiclename a{
	color: #666 !important;
}
.notification-bell i{
	position: relative;
	top: 14px;
	left: -15px;
	font-size: 18px;
	color: #1fc0ee !important;
}
.notification-bell span{
	position: absolute;
    width: 15px;
    height: 15px;
    background: #666;
    border-radius: 100%;
    font-size: 10px;
    text-align: center;
    top: 10px;
    left: -3px;
    color: #fff;
}

@media screen and (max-width: 767px){
	.notification-bell i, .notification-bell span{
		top:0 !important;
	}
	.notification-bell {
		float: right;
	}
	.dropdown{
		clear: both;
	}
}

.filter-panel{
	position: absolute !important;
	z-index: 9 !important;
}

th, td { white-space: nowrap; }
div.dataTables_wrapper {
    margin: 0 auto;
}
div.container {
    width: 80%;
}
.dashboard-white .dropdown-menu{
	top: 25px !important;
	left: auto !important;
	right: 10px !important;
}

.icon span{
	margin:12px;
}
.icon h4{
	margin: 0;
    padding: 25px 0 4px 0px;
}

.weekendcls{
	background-color: #fdfcf1;
}

.mystars{
	position: absolute;
	right:1px;
}