/**
 * DP-9741: Partner Logo styles.
 *
 * Used on:
 *  - My Account dashboard (themes/Avada-Child-Theme/woocommerce/myaccount/dashboard.php)
 *  - Portal Candidate Level (plugins/passage-customization/includes/candidate-ajax.php and candidate-ajax-aws.php)
 *
 */

.pp-partner-logo-wrap {
    display: block;
    margin: 0 0 16px 0;
    text-align: left;
    line-height: 0;
}

.pp-partner-logo {
    display: inline-block;
    max-width: 300px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 0;
    background: transparent;
}

/* Tablets */
@media (max-width: 1024px) {
    .pp-partner-logo {
        max-width: 240px;
        max-height: 80px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .pp-partner-logo-wrap {
        text-align: center;
        margin: 0 0 12px 0;
    }
    .pp-partner-logo {
        max-width: 200px;
        max-height: 70px;
    }
}
