.modal_table {
    display: block;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal_table_content {
    background-color: white;
    margin: 5% auto;
    padding: 0 20px 20px 20px;
    border: 1px solid #888;
    width: 80%;
}

.modal_table_close {
    color: #aaa;
    display: flex;
    justify-content: end;
    padding: 20px;
    font-size: 28px;
    font-weight: bold;
}

.modal_table_close:hover,
.modal_table_close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.textarea_input {
    width: 100%;
}

.attributes_flex {
    display: flex;
    flex-wrap: wrap;
}

.attribute_single {
    width: 500px;
}

.button_flex {
    display: flex;
    flex-wrap: wrap;
}

/* Login page */

.background-radial-gradient {
    min-height: 100vh;
    display: flex;
    align-content: center;
    background-color: hsl(218, 41%, 15%);
    background-image: radial-gradient(650px circle at 0% 0%,
    hsl(218, 41%, 35%) 15%,
    hsl(218, 41%, 30%) 35%,
    hsl(218, 41%, 20%) 75%,
    hsl(218, 41%, 19%) 80%,
    transparent 100%),
    radial-gradient(1250px circle at 100% 100%,
            hsl(218, 41%, 45%) 15%,
            hsl(218, 41%, 30%) 35%,
            hsl(218, 41%, 20%) 75%,
            hsl(218, 41%, 19%) 80%,
            transparent 100%);

}

@keyframes appearAnimation {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#radius-shape-1 {
    animation: appearAnimation 1s ease;
    height: 220px;
    width: 220px;
    top: -60px;
    left: -130px;
    background: radial-gradient(#600606, #a40f0f);
    overflow: hidden;
}

#radius-shape-2 {
    animation: appearAnimation 1s ease;
    border-radius: 38% 62% 63% 37% / 70% 33% 67% 30%;
    bottom: -60px;
    right: -110px;
    width: 300px;
    height: 300px;
    background: radial-gradient(#6b0000, #ad1a1a);
    overflow: hidden;
}

.title_login {
    animation: appearAnimation 1s ease;
    padding-right: 50px;
    padding-top: 100px
}

.bg-glass {
    background-color: hsla(0, 0%, 100%, 0.4) !important;
    backdrop-filter: saturate(200%) blur(25px);

}

.form {
    display: flex;
    justify-content: center;
}

.container_login {
    display: grid;
    place-content: center;
}

.login-form {
    animation: appearAnimation 1s ease;
    max-width: 500px;
    min-width: 360px;
}


.form-control_custom {
    opacity: 0.5;
    border: 1px solid rgba(73, 73, 73, 0.24);
}

input.form-control.form-control_custom::placeholder {
    color: black;
}

.form-control.form-control_custom:active, .form-control.form-control_custom:focus {
    color: black;
}

.form-control.form-control_custom {
    color: black;
}

input.form-check-input.form-check-input_custom {
    opacity: 0.7;
}

.elevation-4 {
    animation: appearAnimation_sidebar 1s ease;
}

.main-header {
    animation: appearAnimation_navbar 1s ease;
}

@keyframes appearAnimation_sidebar {
    0% {
        transform: translateX(-100%);
        opacity: 0.5;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

@keyframes appearAnimation_navbar {
    0% {
        transform: translateY(-100%);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

.alert_message {
    padding: 8px;
    margin-top: 15px;
    height: 40px;
    border-radius: 4px
}

.log_tab{
    margin-top: 1px;
    display: flex;
    justify-content: space-between;
    outline: 1px solid rgba(128, 128, 128, 0.5);
    padding: 10px;
}

@keyframes FadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*Logs in item*/
.logs{
    animation: FadeInAnimation 1s ease-in;
    padding-top: 30px;
}
.date_log{
    cursor: pointer;
    width: 165px;
    padding: 0 10px;
}
.log_edited{
    cursor: pointer;
    width: 150px;
    padding: 0 10px;
}
.log_old_value{
    cursor: pointer;
    padding: 0 10px;
    width: 300px;
}
.log_new_value{
    cursor: pointer;
    width: 300px;
    padding: 0 10px;
}
.who_change{
    cursor: pointer;
    padding: 0 10px;
    width: 200px;
}

.checkboxes_export {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 10px;
}

.checkboxes_export > div {
    overflow: hidden;
    white-space: nowrap;
    height: 20px;
}
