/* =========================================================
   PASAPORTE - SELLO
   ========================================================= */

.pasaporte-sello {
    width: 160px;
    max-width: 100%;

    margin: 20px 0;
    padding: 14px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #d8d8d8;
    border-radius: 10px;

    text-align: center;
}


/* =========================================================
   TÍTULO
   ========================================================= */

.pasaporte-sello-titulo {
    margin: 0 0 10px 0;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;

    color: #333333;
}


/* =========================================================
   IMAGEN
   ========================================================= */

.pasaporte-sello-imagen img {
    display: block !important;

    width: 90px !important;
    height: 90px !important;

    max-width: 90px !important;
    max-height: 90px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    box-sizing: border-box !important;

    object-fit: fill !important;
}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 160px) {

    .pasaporte-sello {
        width: 160px;
        max-width: 100%;

        margin: 15px 0;
        padding: 12px;
    }

    .pasaporte-sello-imagen img {
        width: 90px !important;
        height: 90px !important;

        max-width: 90px !important;
        max-height: 90px !important;
    }
}