/*Messages*/
#status{
    margin: 12px 0;
}

#success {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 14px;
    background-color: var(--color-black3);
    border: 1px solid var(--color-dark-green);
    border-radius: 5px;
    font-weight: bold;
    color: var(--color-green);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    /*animation: fadeOut 3s ease forwards;*/
}

#error{
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 16px;
    z-index: 9999;
    padding: 14px;
    background-color: var(--color-red);
    border-radius: 5px;
    color: #FFF;
    /*animation: fadeOut 3s ease forwards;*/
}

#success span{
    font-size: 20px;
    padding: 20px;
}

#success img{
    cursor: pointer;
}

#error span{
    padding: 20px;
    font-size: 19px;
}
/*-------------------*/

/*---------FILTROS----------*/

.btn-link{
    display: flex;
}

.filter{
    margin-right: 10px;
}

.filter select{
    background-color: #222;
    color: #fff;
    border: 1px solid #444;
    padding: 13px;
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;

}

.filter select option{
    background-color: #222;
    color: #fff;
}

.filter select:hover,
.filter select:focus {
  border-color: #777;
}

.filter select:active {
  border-color: #999;
}

.filter select:disabled {
  background-color: #555;
  color: #999;
}

/*-------------------*/

#table{
    margin: 15px 0;
    border-radius: 6px;
    background-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(15, 15, 17, 0.795);
}

table{
    width: 100%;
    padding: 15px;
    border-collapse: collapse;
    color: var(--color-gray3);
}

thead th{
    font-size: 19px;
}

thead th:first-child{
    text-align: left;
}

thead th:last-child{
    text-align: right;
}

table th, td{
    margin:5px;
    padding: 10px;
    border-bottom: 1px solid #444343;
    text-align: left;
}

table tbody .tr_is_btn td{
    font-weight: bold;
    font-size: 17px;
    border-top: 2px solid #444343;
    border-bottom: 2px solid #444343;
}

table tbody .tr_not_btn td{
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 20px;
    border: none;
    border-top: 1px solid #2c2c2c;
}

table tbody .tr_not_btn .td-title::before{
    content: ' - ';
    font-size: 22px;
}

table tbody tr:hover{
    transition: 0.8s;
    background-color: var(--color-black);
}


tbody td:last-child{
    text-align: right;
}

tbody td button{
    margin:2px 5px;
}

tbody tr:nth-child(odd) /*even*/ {
    background:var(--color-main);
}

@media (max-width:700px)
{
    .main-header{
        display: block;
    }

    .main-header h1{
        font-size: 19px;
    }

    .main-header h2{
        font-size: 15px;
    }

    .main-header .btn-link .btn-primary{
        font-size: 13px;
        padding: 12px 30px;
    }

    table thead th{
        font-size: 15px;
    }

    table tbody td{
        font-size: 14px;
    }

    table tbody td button{
        padding: 4px !important;
    }

    table tbody td svg{
        width: 16px;
        height: 16px;
    }
}