/* Reset Css Start */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}
/* Reset Css End */

/* root start */
:root {
    --main-color: rgb(28, 66, 79);
    --main-light-color: rgb(28, 66, 79, 0.2);
    --second-color: rgb(238, 96, 95);
    --second-light-color: rgb(238, 96, 95, 0.2);
}
/* root end */

/*scroll start*/
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    border: 1px solid var(--main-light-color);
    box-shadow: inset 0 0 5px #ccc;
    border-radius: 20px;
}
::-webkit-scrollbar-thumb {
    background: rgba(28, 66, 79, 0.5);
    border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--main-color);
}
/*scroll end*/

/* general start */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-center-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
body {
    background-color: var(--main-light-color);
}
main {
    background-color: white;
    width: 80%;
    padding: 10px 30px;
    border-radius: 6px;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
}
@keyframes opacity {
    from {
        opacity: 0%
    }

    to {
        opacity: 100%
    }
}
@keyframes gelatine {
    0%, 100% {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(0.9, 1.1);
    }

    50% {
        transform: scale(1.1, 0.9);
    }

    75% {
        transform: scale(0.95, 1.05);
    }
}
/* general end */

/* visibility settings start */
#visibility-settings {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
}
#visibility-settings.open {
    display: flex;
    animation: opacity 200ms ease-in-out;
}
#visibility-settings .vs-bg {
    background-color: white;
    width: 440px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    border-radius: 12px;
}
#visibility-settings .vs-bg .vs-columns {
    width: 100%;
    padding: 0 2px;
    max-height: 320px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
#visibility-settings .vs-bg .vs-columns::-webkit-scrollbar {
    width: 8px;
}
#visibility-settings .vs-bg .vs-columns::-webkit-scrollbar-track {
    border: 1px solid var(--second-light-color);
    box-shadow: inset 0 0 5px #ccc;
    border-radius: 20px;
}
#visibility-settings .vs-bg .vs-columns::-webkit-scrollbar-thumb {
    background: rgba(238, 96, 95, 0.5);
    border-radius: 20px;
}
#visibility-settings .vs-bg .vs-columns::-webkit-scrollbar-thumb:hover {
    background: var(--second-color);
}
#visibility-settings .vs-bg ul li {
    display: flex;
    align-items: center;
    position: relative;
}
#visibility-settings .vs-bg ul li i {
    position: absolute;
    padding: 17px 20px;
    right: 0;
    cursor: pointer;
    color: var(--second-color);
}
#visibility-settings .vs-bg ul li input {
    accent-color: var(--second-color);
}
.vs-x {
    cursor: pointer;
    border-radius: 50%;
    color: var(--second-color);
    border: 1px solid var(--second-color);
    background-color: white;
    transform: scale(1.2);
}
.vs-x i {
    padding: 8px 10px;
}
.vs-x i:hover {
    animation: wheel 400ms;
}
.vs-option {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 15px;
    width: 100%;
    display: flex;
    gap: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.vs-buts {
    width: 100%;
    padding: 6px 0;
    text-align: center;
    border-radius: 10px;
    border: 1px solid var(--second-color);
    box-shadow: 1px 1px 2px 2px var(--second-light-color);
}
.vs-save {
    background-color: rgb(238, 96, 95, 0.85);
    color: white;
    transition: all 200ms ease-in-out;
}
.vs-save:hover {
    background-color: var(--second-color);
}
.vs-default {
    background-color: white;
    color: var(--second-color);
    transition: all 200ms ease-in-out;
}
.vs-default:hover {
    background-color: var(--second-light-color);
}
/* visibility settings end */

/* datatable start */
th {
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
}
th:first-child {
    border-left: 1px solid #dddddd;
}
th div {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
}
.dataTables_length {
    margin-bottom: 10px;
}
.paginate_button {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--main-color) !important;
    background-color: var(--main-light-color) !important;
    color: white !important;
    transition: all 200ms ease-in-out;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background-color: var(--main-color) !important;
    border: 1px solid var(--main-color) !important;
    color: white !important;

}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: var(--main-color) !important;
    border: 1px solid var(--main-color) !important;
    color: white !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: white !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active{
    background-color: transparent !important;
}
.stripe1 {
    background-color: rgba(237, 237, 237, 0.37);
}
.stripe2 {
    background-color: rgb(255, 255, 255);
}
.cth {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 4px;
    flex-wrap: wrap;
}
.frl {
    padding-top: 8px;
}
.toolbarFlex {
    display: flex;
    gap: 12px;
    align-items: center;
}
.toolbarButs {
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--second-color);
    font-size: 14px;
    font-weight: 600;
    background-color: var(--second-light-color);
    color: var(--second-color);
    transition: all 500ms ease-in-out;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.toolbarButs i {
    font-size: 16px;
}
.toolbarButs:hover {
    background-color: rgb(238, 96, 95, 0.05);
    transition-timing-function: cubic-bezier(0.6, 4, 0.3, 0.8);
    animation: gelatine 0.5s 1;
}
.bracket {
    width: 1px;
    height: 100%;
    background-color: rgba(80, 60, 180,0.7);
}
.cell {
    box-sizing: border-box;
    padding: 5px 10px;
    width: 100%;
    height: 50px;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}
/* datatable end */

/* custom table start */
.accept-button {
    cursor: pointer;
    padding: 8px 16px;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 4px;
    box-shadow: 0 0 5px 2px var(--main-light-color);
    background-color: var(--main-light-color);
    font-size: 14px;
    font-weight: 600;
}
.accept-button:hover {
    transition-timing-function: cubic-bezier(0.6, 4, 0.3, 0.8);
    animation: gelatine 0.5s 1;
}
/* custom table end */

/*mobile start*/
@media screen and (max-width: 1200px) {
    main {
        width: 100%;
    }
}
@media screen and (max-width: 800px) {
    #visibility-settings.open .vs-bg{
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    .cth {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }
    .mobile-invis {
        display: none;
    }
}
/*mobile end*/