.modal_container{
    position: fixed;
    top: 0px;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #00000050;
    display: flex;
    align-items: center;
}

.modal_container .container{
    width: 60%;
    background: #fff;
    padding: 0px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.modal_container h2{
    width: 100%;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    background: rgba(30, 152, 215, 1);
    color: #fff;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.modal_container h2 .close{
    cursor: pointer;
    padding: 10px;
    font-size: 20px;
    margin-right: 10px;
}

.select_model i{
    background: green;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor:pointer;
}
.modal_select{
    display: none;
    padding: 10px;
    border: solid 1px #00000020;
    border-top: none;
    margin-top: -5px;
    margin-bottom: 20px;
    border-radius: 4px;
    animation: fadeInDown .3s;
}
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate{
    margin: 10px;
    z-index: -1;
}