/* Estilo para a notificação */
#notification {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 10px;
    background-color: var(--ds-color-success);
    /* Verde */
    color: white;
    border-radius: 5px;
    display: none;
    z-index: 1000;
}

/* Estilo para a notificação de erro */
#notification.error {
    background-color: var(--ds-color-error-700);
    /* Vermelho */
}


.image-container {
    position: relative;
    display: inline-block;
}

.close-button {
    position: absolute;
    top: 0;
    right: 0;
    background-color: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bg-vale {
    background-color: #ff000d4a !important;
}

body {
    font-family: var(--ds-font-sans);
    margin: 0;
    padding: 0;
}

.loading-screen {
    background-color: var(--ds-color-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.loading-icon {
    border: 4px solid var(--ds-color-secondary-500);
    border-top: 4px solid transparent;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.content {
    padding: 20px;
}

#sums {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease-out;
}

#sums.visible {
    max-height: 100%;
    /* Ajuste conforme necessário */
}

.hidden {
    display: none;
}

.toggle-button {
    margin-left: 10px;
    /* Ajuste conforme necessário */
    display: inline-block;
    vertical-align: middle;
    /* Para alinhar verticalmente */
}

.fas {
    cursor: pointer;
}

.cursor-pointer {
    cursor: pointer;
}

#divLaunchSale {
    transition: width 0.15s ease;
}

.sale_launch_resume {
    font-weight: bold;
}

@keyframes blink {
    0% {
        background-color: #fff3cd;
    }

    50% {
        background-color: #ffeeba;
    }

    100% {
        background-color: #fff3cd;
    }
}

.blink-highlight {
    animation: blink 0.5s ease-in-out 4;
    animation-iteration-count: infinite;
}
.fs-06{
    font-size: 0.72rem !important;
}

.p-1{
    padding: 0.25rem !important;
}

.text-color-deleted{
    color: var(--ds-color-error-700) !important;
}
