/* Status */

.status {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(2 * var(--space-xxxl));

    padding: calc(2 * var(--space-xxxl)) var(--space-xxxl);
}

.status__body {
    width: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-m);
}

.status__img-wrapper {
    height: 120px;

    display: flex;
}

.status__img {
    height: 100%;
}

.status__btn--success {
    background-color: var(--color-04);
}

.status__btn--failure {
    background-color: var(--color-03);
}

@media (max-width: 1280px) {
    
}

@media (max-width: 1024px) {
    
}

@media (max-width: 768px) {
    /* Status */

    .status__body {
        width: 100%;
    }
}

@media (max-width: 480px) {
    
}