/**
 * Filename:    error_pane.css
 *
 * Description: Implementation of the error_pane class.
 *
 * Revision:    $Revision$
 *
 * Copyright © 1999-2024 by Interact Solutions Ltda.
 * Rua Carlos Fett Filho, 47
 * 95.900.000, LAJEADO, RS
 * BRAZIL
 *
 * The copyright to the computer program(s) herein
 * is the property of Interact Solutions Ltda., Brazil.
 * The program(s) may be used and/or copied only with
 * the written permission of Interact Solutions Ltda.
 * or in accordance with the terms and conditions
 * stipulated in the agreement/contract under which
 * the program(s) have been supplied.
 */

.error_pane
{
    background: url( "../../res?name=/images/sas/filled/banner/alert_background.svg" ) repeat scroll left top #FFF;
    height: 100%;
    display: grid;
    grid-template-rows: 1fr 150px;
    overflow: auto;
}

.error_pane .empty_state
{
    background-color: transparent;
    height: auto;
}

.error_pane .company_logo
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 15px;
}

.company_logo > svg
{
    height: 50px;
}

.error_pane .company_logo > span
{
    color: rgb( var(--color-gray550) );
}

.error_pane__container
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 16px;
}

.error_pane__container__role
{
    color: transparent;
    font-size: 16px;
}



