.container {
    display: flex;
    width: 100%;
    margin-top: 3px;
    align-items: center;
    justify-content: center;
    filter: blur(5px);
    pointer-events: none;
}

.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: #036781;
    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;
}

@media (max-width: 768px) {
    .custom-card-confirm {
        width: 300px;
    }

    .text-custom-card {
        overflow: auto;
    }

    .description {
        width: 90%;
    }
}

@media (max-width: 360px) {
    .description {
        width: 100%;
    }
}