.ultimos-voos-area {
    background: #f9f9f9;
    padding: 30px 15px;
    margin-bottom: 30px;
}

.flight-card {
    position: relative;
    min-height: 470px !important;
    background: #fff;
    border: 1px solid #e1e9f3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(7,23,51,.07);
    margin-bottom: 28px;
    transition: .22s;
    padding:20px !important;
    padding-bottom:0px !important;
    padding:top:0px !important;
}

.flight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(7,23,51,.10);
}

.plane-bg {
    position: absolute;
    top: 14px;
    right: 22px;
    width: 210px;
    height: 80px;
    opacity: .30;
   // background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=700&q=80');
    background-size: cover;
    background-position: center;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
}

.flight-card-body {
    position: relative;
    z-index: 2;
    padding: 10px;
    padding-top:0px;
    padding-bottom:0px !important;
}

.card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 22px;
}

.pilot-card-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.img-rank {
    width: 35px !important;
    margin-left: -15px;
    margin-top: -10px !important;
    display: block !important;
    margin-right: 10px !important;
    position: absolute;
}

.card-avatar {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eef3fb;
}

.card-name {
    font-size: 22px;
    font-weight: 900;

    color: #0d1b35;
    line-height: 1.1;
    display:block !important;
    text-decoration:none !important;
}

.card-tags {
    margin-top: 6px;
    font-size: 11px;
    color: #62718a;
}

.card-tags span {
    margin-right: 8px;
}

.card-score {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.card-score strong {
    display: block;
    margin-top: 7px;
    font-size: 30px !important;
    line-height: 1;
}

.card-score span {
    display: block;
    margin-top: 2px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.card-platforms {
    margin-top: 8px;
}

.card-platforms img {
    height: 20px;
    width: auto;
    margin-right: 6px;
    vertical-align: middle;
}

.card-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 6px 0 22px;
}

.card-icao strong {
    display: block;
    color: #006ee6;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}

.card-icao span {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    color: #0d1b35;
}

.card-icao.arr {
    text-align: right;
}

.rota-line {
    flex: 1;
    margin: 0 18px;
    height: 1px;
    border-top: 2px dashed;
    position: relative;
}

.rota-line i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 26px;
    height: 26px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    color: #006ee6;
    font-size: 26px;
}

.card-stats {
    display: flex;
    border-top: 1px solid #edf2f8;
    border-bottom: 1px solid #edf2f8;
    padding: 13px 0;
    margin-bottom: 12px;
}

.card-stats .stat {
    width: 33.333%;
    border-right: 1px solid #edf2f8;
    padding-right: 10px;
    margin-right: 10px;
}

.card-stats .stat:last-child {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
}

.stat span,
.card-bottom span {
    display: block;
    color: #6f7d94;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.stat strong,
.card-bottom strong {
    display: block;
    color: #0d1b35;
    font-size: 13px;
    margin-top: 4px;
    font-weight: 900;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
}

.card-date {
    color: #51617c;
    font-size: 12px;
}
.nota {
    padding: 5px !important;
    width: 40px !important;
    float: right !important;
   border-radius: 0 0 10px 10px !important;
    text-align: center;
    font-weight: 700;
    margin-top: -10px;
    margin-left: 20px;
    background-color: #73c216;
    color: #fff !important;
    position: absolute !important;
    right: 0px !important;
    top: -10px !important;
}
@media(max-width: 767px) {
    .flight-card

 {
     width:99% !important;
 }
    
    
    .card-route .rota-line {
        margin: 0 10px;
    }

    .card-icao strong {
        font-size: 21px;
    }

    .card-stats {
        flex-wrap: wrap;
    }

    .card-stats .stat {
        width: 22%;
        margin-bottom: 12px;
    }

    .card-stats .stat:nth-child(2) {
        border-right: 0;
    }
}