/**
 * WP Tutorials : Auto Admin Theme (WPT_AAT)
 *
 * Styles for the diagnostics shortcode.
 */

.wpt-aat-diagnostics>div {
    border: 1px solid #44444444;
    border-radius: 1em;
    background-color: #ffffff88;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    margin-bottom: 1em;
    box-shadow: 0 0 1em #44444444;
    justify-content: space-between;
}

.wpt-aat-diagnostics .theme-image {
    object-fit: contain;
    width: 60%;
    padding: 1em
}

.wpt-aat-diagnostics .palette {
    width: 40%;
    display: flex;
    flex-direction: column;
}

.wpt-aat-diagnostics .swatch {
    flex: 1;
    text-align: center;
    font-family: monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.wpt-aat-diagnostics .primary-colour::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content:  '\f005';
    color:  gold;
    position: absolute;
    right: 0.2em;
    top: 50%;
    transform: translateY(-50%);
    text-shadow: 0 0 2px black;
}

.wpt-aat-diagnostics label {
    margin: 0;
    padding: 0.5em;
}

.wpt-aat-diagnostics .primary-colour label {
    font-weight: bold;
}