/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

.qtab {
    overflow: hidden;
    border: 1px solid #e7e7e7;
    background-color: #ffffff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-top: 50px;
}

/* Style the buttons that are used to open the tab content */
.qtab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 25px 20px;
    transition: 0.3s;
    color: #030366;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid #ffffff;
}

/* Change background color of buttons on hover */
.qtab button:hover {
    background-color: #f5f5f5;
    border-bottom: 1px solid #fb9900;
}

/* Create an active/current tablink class */
.qtab button.active {
    color: #f90;
}

/* Style the tab content */
.qtabcontent {
    display: none;
    padding: 10px 0px;
    /* border: 1px solid #ccc; */
    border-top: none;
    background: #ffffff;
}

.qtabcontent {
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}


.dataTables_wrapper select {
    width: 40% !important;
}

.dataTables_wrapper select {
    width: 150px !important;
}

.dataTables_wrapper table>:where(thead,tfoot)>*>th {
    background-color: #0c152e;
    color: #ffffff;
    font-weight: 700;
    vertical-align: middle;
    word-break: normal;
    padding: 15px !important;
}

.w-6.h-6 {
    width: 24px;
    height: 24px;
}

table.dataTable.no-footer {
    padding: 15px 0px;
}

.dataTables_wrapper table>:where(tbody)>.even>* {
    background-color: #eee;
}
.dataTables_wrapper table>*+tbody>*>*, .tablepress>tbody>*~*>*, .tablepress>tfoot>*>* {
    border-top: 1px solid #eee;
}

.dataTables_wrapper table td,.dataTables_wrapper table thead th{
    padding: 15px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover,.dataTables_wrapper .dataTables_paginate .paginate_button:active {
    color: #fff !important;
    border: 1px solid #0c152e !important;
    background: #0c152e !important;
}

.qtabcontent .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover{
    background: transparent !important;
    border: none !important;
    color: #000000 !important;
}

.dataTables_wrapper table th {
    width: 0;
}

.dataTables_wrapper .dataTables_length {
    padding: 10px 20px;
}

section.main-content {
    margin: 50px 0;
}

.dataTables_wrapper .dataTables_filter {
    padding: 10px 20px;
}

@media (max-width: 440px) {
    .qtab button {
        padding: 20px 10px;
        font-size: 12px;
    }
}