.container {
    display: flex;
    width: 100%;
    margin-top: 3px;
    align-items: center;
    justify-content: center;
    filter: blur(5px);
    pointer-events: none;
}

.line-title {
    width: 100px;
    border: 1px solid #BFB173;
    margin-inline: 10px;
    display: block;
}

.custom-card-confirm {
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: white;
    width: auto;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 16px;
}

.text-custom-card p {
    text-align: justify;
}

.description {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    color: #fff;
    background: #003366;
    border-radius: 16px;
    width: 80%;
    height: auto;
    margin: 5px 0;
}

.custom-alert {
    border-left: 5px solid #f39c12;
    background-color: rgba(255, 255, 0, 0.2);
    opacity: 0.8;
    padding: 3px;
    margin-top: 16px;
}

.container-action {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: row;
}

.no-validation:required {
    box-shadow: none;
}

.custom-action-validation {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.system-bar {
    background-color: #ffcc00;
    padding-inline: 5px;
    margin-inline: -20px;
    margin-top: -20px;
    border-radius: 16px 16px 0px 0px;
    font-size: 12px;
    text-justify: distribute;
    text-align: center;
    display: none;
}

@media (max-width: 768px) {
    .custom-card-confirm {
        width: 300px;
        height: 600px;
    }

    .system-bar {
        display: block;
    }

    .text-custom-card {
        overflow: auto;
    }

    .description {
        width: 90%;
    }

    .line-title {
        display: none;
    }
}

@media (max-width: 360px) {
    .description {
        width: 100%;
    }
}