/*---------- Cover (start) ----------*/
.fleetNewCover {
    width: 100%;
    height: 750px;
    background: url(../img/carrierListCover.jpg) center 75% no-repeat;
    background-size: cover;
}
/*---------- Cover (end) ----------*/

/*---------- Carrier (start) ----------*/
.fleetList {
    width: 800px;
    margin: 0 auto;
}

.fleetList tr th {
    padding: 10px 0;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background: #a0a0a0;
}

.fleetList tr td {
    padding: 15px;
    box-sizing: border-box;
    border-bottom: dotted 1px #cccd;
    text-align: center;
}

.fleetList tr .empty {
    padding: 1px;
    background: #f0f0f0;
}
/*---------- Carrier (end) ----------*/

/*---------- RWD (start) ----------*/
@media screen and (min-width: 1601px) and (max-width: 1920px) {
}

@media screen and (min-width: 1367px) and (max-width: 1600px) {
    .fleetNewCover {
        height: 600px;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1366px) {
    .fleetNewCover {
        height: 500px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
    .fleetNewCover {
        height: 500px;
    }
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .fleetNewCover {
        height: 300px;
    }
}
/*---------- RWD (end) ----------*/