/* =========================================
   MINI BUS TOUR CARD STYLE
========================================= */


/* Forme générale du bus */

.dtg-card{

    border-radius:45px 45px 35px 35px;

    overflow:hidden;

    border:5px solid #fff;

    box-shadow:
    0 25px 60px rgba(0,0,0,.22);

}



/* Effet pare-brise */

.dtg-card:before{

    content:"";

    position:absolute;

    top:0;

    left:15%;

    right:15%;

    height:18px;

    background:rgba(255,255,255,.35);

    border-radius:0 0 20px 20px;

    z-index:6;

}



/* Image comme vitre du bus */

.dtg-image{

    border-radius:40px 40px 0 0;

}



/* Badge style autocollant */

.dtg-badge{

    border-radius:12px;

    padding:10px 18px;

    transform:rotate(-3deg);

    box-shadow:

    0 8px 20px rgba(0,0,0,.35);

}



/* Rating comme panneau conducteur */

.dtg-rating{

    border-radius:15px;

}



/* Bas de carte comme carrosserie */

.dtg-content{

    padding-bottom:10px;

}



/* Ligne décorative bus */

.dtg-content:before{

    content:"";

    display:block;

    width:60px;

    height:4px;

    background:#d4af37;

    border-radius:10px;

    margin-bottom:15px;

}



/* Bouton réservation */

.dtg-button{

    border-radius:15px;

    padding:14px 28px;

}



/* Roues du mini bus */

.dtg-card:after{

    content:"";

    position:absolute;

    bottom:-12px;

    left:45px;

    width:35px;

    height:35px;

    background:#222;

    border-radius:50%;

    box-shadow:

    260px 0 0 #222;

    z-index:10;

}