
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 25px;
}

.nav-custom{

}


.btn-small {
    height: 38px;
    border-radius: 3px;
}

.custom-btn, .custom-btn-save{
    cursor: pointer;
    width: 200px;
    background-color: #1c6ca1;
    border: none;
    padding: 6px;
    color: #fff;
    text-align: center;
    height: 30px;
}

.custom-btn:active{
    color: #fff;
}
.custom-btn:hover{
    color: #fff;
}

.btn-footer-save{
    width: 20em;
    background-color: #1c6ca1;
    border: none;
    padding: 6px;
    color: #fff;
    text-align: center;
    height: 30px;
}

.custom-form-select{
    padding: 6px;
}

.custom-btn i{
    color: #fff;
}


.custom-btn-save i,.custom-btn-print i{
    color: #fff;
}
.custom-btn-print{
    cursor: pointer;
    width: 200px;
    border: none;
    padding: 6px;
    color: #fff;
    text-align: center;
    height: 30px;
    background-color: orange;
}

.hr {
    border: 2px solid #0d6efd;
    background-color: #0d6efd;
}

.modal-footer{
    background-color: #fff;
}

.search {
    height: 32px;   
}
.search-form {
    height: 39px;
    font-size: 12px !important; font-weight: normal !important;
}

.form-select{
    height: 39px;
    font-size: 12px !important; font-weight: normal !important;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #0d6efd;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

table thead tr th{

    font-weight: normal !important;

}

.dataTables_wrapper .top,
.dataTables_wrapper .top .dataTables_filter label {
    display: flex;
    align-items: center;
    align-self: center;
    align-content: center;
} 

.dataTables_wrapper .top {
    justify-content: space-between;
    flex-flow: row wrap;
} 

.dataTables_wrapper .top .dataTables_length {
   width: 30%;
   flex: 1 0 30%;
   order: 1;
} 

.dataTables_wrapper .top .dataTables_filter {
    width: 40%;
    flex: 1 0 40%;
    order: 2;
} 

.dataTables_wrapper .top .dt-buttons {
    display: flex;
    justify-content: flex-end;
    width: 30%;
    flex: 1 0 30%;
    order: 3;
    align-self: flex-end;
}

.dataTables_wrapper .top .dt-button{
    border: 1px solid #00a3ff;
    background-color: transparent !important;
}
.dataTables_wrapper .top .dt-button:hover{
    border: 1px solid #00a3ff;
}

.dataTables_wrapper .top .dataTables_filter label {
    padding: 2px 7px;
    border: 1px solid #ccc;
    border-radius: 100px;
    transition: 0.5s;
}

.dataTables_wrapper .top .dataTables_filter input[type="search"] {
    outline: none;
    border: none;
    padding: 2px;
    width: 370px;
    font-size: 13px;
    font-family: "Arial";
}

.dataTables_paginate .paging_simple_numbers .span .paginate_button .current{
    background-color: #00a3ff;
}

@media only screen and (max-width: 1200px) {

    .dataTables_wrapper .top .dataTables_length {
        display: flex;
        justify-content: flex-start;
        width: 50%;
        flex: 1 0 50%;
        order: 1;
     } 
     
     .dataTables_wrapper .top .dataTables_filter {
         width: 100%;
         flex: 1 0 100%;
         order: 3;
     } 
     
     .dataTables_wrapper .top .dt-buttons {
         width: 50%;
         flex: 1 0 50%;
         order: 2;
     } 
}