.container-banner {
    font-family: "Noto Sans", sans-serif;
    background-color: white;
    border: 1px solid #E1E4EA;
    border-radius: 8px;
    padding: 32px;
    text-align: left;
    width: 100%;
    min-height: 11.9375rem;
}

.container-title {
    font-family: "Noto Sans", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    text-align: left;
    color: #23282E;
    padding: 0px;
}

.container-description {
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    color: #2B363C;
    margin: 0px;
    margin-top: 16px;
    width: 85%;
}

.content {
    display: block;
    width: 100%;
    background: white;
    border: 1px solid #E1E4EA;
    border-radius: .5rem;

    .slide-container {
        margin: 0 auto;
        border-color: white;
        display: block;
        min-height: 40vh;

        .loading-container {
            display: flex;
            flex-direction: column;
            width: 100%;
            height: 100%;
            min-height: 40vh;
            justify-content: center;
            align-items: center;
        }

        .error-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
            font-size: 1rem;
            font-family: inherit;
            font-weight: 700;
            line-height: 1.5rem;
            text-align: center;

            img {
                width: 100px;
                height: 100px;
            }

            h3 {

                font-family: inherit;
                font-size: 14px;
                font-weight: 500;
                line-height: 24px;
                text-align: center;
                color: #64718B;



            }
        }
    }




}

@media (max-width: 768px) {
    .container-description {
        width: 100%;
    }

    .container-banner {
        padding: 16px;
    }

    .container-title {
        font-size: 20px;
    }
}

.error-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 700;
    line-height: 1.5rem;
    text-align: center;

    img {
        width: 100px;
        height: 100px;
    }

    h3 {
        font-family: inherit;
        font-size: 14px;
        font-weight: 500;
        line-height: 24px;
        text-align: center;
        color: #64718B;
    }
}