*{
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
    box-sizing: border-box;
    border-radius: 0;
    -webkit-font-smoothing: antialiased;
}

@-webkit-keyframes rotating {
    from{
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
    }
    to{
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
    }
}

html{
    height: 100%;
}

body{
    margin: 0;
    padding:0;
    font-weight: 400;
    /* background: #fafafa; */
    background: white;
    position: relative;
    min-height: 100%;
    padding-bottom: 50px;
}

body.cover{

    position: relative;
    pointer-events: none;
    user-select: none;
}

body.cover::after{

    content: '';
    position: fixed;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.831);
    left:-10px;
    right:-10px;
    top:-10px;
    bottom:-10px;
}

body a {
    color: #6d388d;
}


body a:hover{

    color: #57326e;
}

button{

    padding: 4px 9px;
    border: none;
    background: #6d388d;
    color: white;
    cursor: pointer;
}

button:disabled,
button[disabled]{
  opacity: 0.3;
  pointer-events: none;
}

input[type='search']:focus-visible{

    outline: 2px solid #6d388d;
    outline-offset: -1px;
}

button:hover{

    background: #672590;
}

button:active{

    top:2px;
    background:#371f46;
}

main p, main li{

    line-height: 1.6em;
}

nav{

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    height: 60px;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    background: white;
    border-bottom: 1px solid #f1f1f1;
}

#home_link:hover{

    background: none;
    color: rgb(109 56 140) !important;
}

nav > div{

    height: 100%;
}

nav .left{

    height: 100%;
}

nav .left > *{
    height: 100%;
}

nav .right{

    display: flex;
    height: 100%;
    align-content: space-around;
    align-items: center;
}

nav .right > a.active{

    border-bottom: 1px solid;
    position: relative;
    top: 1px;
}

nav .right > *{
    height: 100%;
}

nav .dropdown:hover{

    z-index: 4;
}

nav .dropdown{

    position: relative;
    cursor: pointer;
}

nav .dropdown::after{

    content: '';
    position: absolute;
    top:47%;
    right:18px;
    border:4px solid transparent;
    border-top-color: rgb(194, 194, 194);
}

nav .dropdown:hover::after{

    border-top-color: #2676f9;
}


nav .dropdown ul{

    list-style: none;
    position: absolute;
    background: #e7e7e7;
    padding: 0;
    margin: 0;
    border-left: 1px solid rgb(194, 194, 194);
    /* padding-left: 6px; */
    /* padding-top: 62px; */
    /* padding: 4px; */
    margin-top: -2px;
    margin-left: 5px;
    display: none;
}

nav .dropdown ul li{

    white-space: nowrap;
}

nav .dropdown ul li a{

    margin-left: 0;
}

nav .dropdown ul li:hover{

    background: #ececec;
}

nav .dropdown:hover ul{

    display: block;
    border: 1px solid rgb(194, 194, 194);
    border-top: none;
}

nav .dropdown:hover > a{

    color:#6d388d;
    background: #e7e7e7;
    border-left: 1px solid rgb(194, 194, 194);
    border-right: 1px solid rgb(194, 194, 194);
}

nav .dropdown ul a{

    padding: 13px;
    font-size: 14px;
    
}

nav .dropdown > a{

    height: 100%;
    padding-right: 30px;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
}


#home_icon{

    /* height: 100%; */
    margin-right: 12px;
    width: 40px;
    height: 40px;
}

main{

    margin: 0 auto;
    margin-top:100px;
    max-width: 1200px;
    width: 95%;
    min-height: 100%;
    position: relative;
    padding-bottom: 50px;
}

a{

    text-decoration: none;
}

nav > div> a:first-child {
    margin-left: 0;
    padding-left: 0;
}

nav a {
    margin: 0;
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    color:rgb(109 56 140);
    font-size: 16px;
    letter-spacing: 0.6px;
    display: flex;
    font-weight: normal;
    align-items: center;
}

nav a:last-child{

    margin-right: 0;
}

nav a:hover{

    color:white;
    background:rgb(109 56 140);
}

fieldset{

    border: 1px solid #c9c9c9;
}

input[type="text"]{


    border: 1px solid #c9c9c9;
    padding: 3px;
}

input[type="search"]{


    border: 1px solid #c9c9c9;
    padding: 3px;
}

input[type="number"]{

    border: 1px solid #c9c9c9;
    padding: 4px;
}

h1.page_header{

    margin-top: 50px;
    margin-bottom: 5px;
    font-size: 27px;
    color: rgb(41, 41, 41);
    font-weight: normal;
}

p, li{

    color: #535353;
}

img{

    border-radius: 3px;
    max-width: 100%;
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

footer{

    text-align: center;
    padding: 20px;
    color: rgb(190, 190, 190);
    left:0;
    width: 100%;
}

main li{

    margin-bottom: 20px;
}

footer div{

    margin: 10px;
}

.mobile_menu{

    display: none;
}

#mobile_menu_bttn{

    display: none;
}






p.vspacer{

    height: 70px;
}

.highlight{

    background: rgb(255 250 183);
}

.spacer{

    display: inline-block;
    width: 20px;
}



.dataTables_wrapper{

    font-size: 14px;
    margin-bottom: 40px;
}

tr:hover td{

    background: #f2f2f2;
}

.dataTables_wrapper td{

    border-bottom: 1px solid rgb(222, 222, 222);
}

.dataTables_wrapper tr:last-child td{

    border-bottom:0;
}

.dataTables_wrapper th{

    vertical-align: top;
    font-weight: normal;   
}

table.dataTable thead th, 
table.dataTable tfoot th{

    font-weight: 400 !important;

}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{


    background:none;
}

.paging_simple_numbers{

    margin: 10px 0
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover{

    background: #3460a8;
    border: none;
}

.dataTables_length{

    margin-right: 40px;
}

.dt-button{

    margin-right: 10px;
}

.sorting_asc, .sorting_desc{

    color:#387ae2;
}

.select-info{

    margin-left: 20px;
}

#t_row1{

    display: flex;
    justify-content: space-between;
}

#t_row1 select{

    border-radius: 0;
    margin: 0 6px;
}

#t_row1_left{

    display: flex;
    align-items: center;
}

#t_row2{

    display: flex;
    justify-content: space-between;
    align-items: center;
}

tr.selected *{

    color:white !important;
}

.dataTables_wrapper .dataTables_filter input {

    border-radius: 0;
}

#table_ctrl{

    position: sticky;
    top: 60px;
    z-index: 3;
    background: white;
    padding-top: 40px;
}

.dataTable thead{

    position: sticky;
    top: 183px;
    z-index: 2;
}

.dataTable thead:hover{

    z-index: 4;
}

section .ctrl_bar{

    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0 10px;
    border-bottom: 1px solid #b8b8b8;
    cursor: pointer;
    user-select: none;
}

section .ctrl_bar:hover{

    background: rgb(239, 239, 239);
}

section .ctrl_bar .indicator{

    font-size:40px;
    transition: all 0.2s;
    transform: rotate(45deg);
    transform-origin: 50% 29px;
}
section.collapsed .ctrl_bar .indicator{

    transform: rotate(0deg);
}

section{

    margin-bottom: 70px;
}

section .content_area{

    padding-left: 10px;
}

section.collapsed .content_area{

    display: none !important;
}

.xtitle, .ytitle, .legendtext, .xtick text, .ytick text{

    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif !important; 
}

.processing{

    overflow: hidden;
    max-height: 100%;
}

.processing::before{

    content: "";
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.77);
    z-index: 1000;
}

.processing::after{

    content: "";
    position: absolute;
    top:50%;
    left:50%;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    border: 6px solid #6d388d;
    border-top-color: transparent;
    -webkit-animation: rotating 0.5s linear infinite;
    z-index: 1001;
}

table{

    border-collapse: collapse !important;
    width: 100%;
    margin: 30px 0;
}

table th{

    background: rgb(235, 235, 235);
    color:rgb(73, 73, 73);
}

table th, td{

    text-align: left;
    padding: 6px;
    border:1px solid rgb(212, 212, 212);
}


.filter{

    border: 1px solid rgb(218 218 218);
    background: rgb(242 242 242);
    margin-bottom: 5px;
    padding: 5px;
}


.option_list{

    position: relative;
    display: inline-block;
    padding: 0px 8px;
    background: rgb(255, 255, 255);
    margin-right: 10px;
    font-size: 13px;
    cursor: pointer;
    padding-right: 24px;
    width: 130px;
    line-height: 21px;
    border: 1px solid #cfcfcf;
}

.option_list:hover{

    border-color: #6d388d;
}

.option_list::before{

    content: "";
    position: absolute;
    top:99%;
    left: 0;
    height: 6px;
    width: 100%;
}

.option_list::after{

    content: "";
    position: absolute;
    top:57%;
    transform: translateY(-50%);
    right:10px;
    border:4px solid transparent;
    border-top-color: #5b5b5b;
}


.option_list .list{

    position: absolute;
    display: none;
    top: 112%;
    left: -1px;
    padding: 3px 0;
    background:white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    z-index: 40;
    width: 100%;
    border:1px solid rgb(192, 192, 192);
}

.option_list:hover .list{

    display: block;
}

.option_list .option{

    position: relative;
    cursor: pointer;
    opacity: 0.5;
    user-select: none;
    display: flex;
    margin-bottom: 2px;
    padding: 0 10px;
}

.option_list .option[data-checked="checked"]{

    opacity: 0.8;
}

.option_list .option:hover{

    opacity: 1;
    background: rgb(237, 237, 237);
}

.option_list .option .checkbox{

    display: inline-block;
    width: 12px
}

.option_list .option[data-checked="checked"] .checkbox::after{

    content: "";
    border: 2px solid rgb(45, 45, 45);
    border-right-width: 0;
    border-top-width: 0;
    height: 3px;
    width: 7px;
    position: absolute;
    top: 50%;
    left: 7px;
    transform: translate(0, -50%) rotate(301deg);
}


.control_bar *{

    user-select: none;
}

th.has_hover_info{

    padding-left: 30px !important;
}

th .th_hover_info_icon{

    border-radius: 100%;
    background: #dbdbdb;
    height: 15px;
    width: 15px;
    display:flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #969393;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left:6px;
}

th .th_hover_info_icon:hover{

    background:#387ae2;
    color:white;
}

.th_hover_info_icon:hover::after{

    content: attr(data-description);
    display: block;
    position: absolute;
    bottom: calc(100% + 27px);
    background: white;
    color: rgb(83 83 83);
    padding: 5px;
    border: 1px solid rgb(165 165 165);
    font-size: 12px;
    box-shadow: rgba(0, 0, 0, 0.054) 0px 1px 3px, rgba(0, 0, 0, 0.057) 0px 1px 2px;
    min-width: 150px;
    z-index: 999999;
    left: 0;
}



*[data-hovertext]{

    position: relative;
}


*[data-hovertext]:hover::after{

    content: attr(data-hovertext);
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: calc(100% + 15px);
    background: white;
    color: rgb(83 83 83);
    padding: 5px;
    border: 1px solid rgb(165 165 165);
    font-size: 12px;
    box-shadow: rgba(0, 0, 0, 0.054) 0px 1px 3px, rgba(0, 0, 0, 0.057) 0px 1px 2px;
    min-width: 150px;
    z-index: 999999;
}




.select{

    display: inline-block;
    position: relative;
    font-size: 14px;
}

.select .option{

    white-space: nowrap; 
    padding: 3px 10px;
    padding-left: 21px;
    position: relative;
    cursor: pointer;
    user-select: none;
    font-size: 13px;
}

.select .option:hover{

    background: #2676f9;
    color:white;
}

.select .selected_option{

    border: 1px solid gray;
    padding: 0 3px;
    padding-right: 17px;
    padding-left: 5px;
    user-select: none;
}

.select .selected_option::after{

    transform: translate(0, -50%) rotate(306deg);
    content: "";
    border: 1px solid rgb(45, 45, 45);
    border-right-width: 0;
    border-top-width: 0;
    height: 5px;
    width: 5px;
    position: absolute;
    top: 46%;
    right: 7px;
    transform: translate(0, -50%) rotate(315deg);
}

.select .option.selected::after{

    content: "";
    border: 2px solid rgb(45, 45, 45);
    border-right-width: 0;
    border-top-width: 0;
    height: 3px;
    width: 8px;
    position: absolute;
    top: 50%;
    left: 7px;
    transform: translate(0, -50%) rotate(301deg);
}

.select .option.selected:hover::after{

    border-color: white;
}

.select .all_options{

    position: absolute;
    padding: 5px;
    background: #efefef;
    z-index: 99999999;
    top:0;
    left: -10px;
    padding-left: 21px;
    padding: 4px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 4px 6px -1px, rgba(0, 0, 0, 0.03) 0px 2px 4px -1px;
    border:1px solid #dedede;
}


.select .option[data-description]:hover::before{

    position: absolute;
    content: attr(data-description);
    left: calc(100% + 12px);
    background: rgb(247, 247, 247);
    top: 0;
    padding: 3px;
    border: 1px solid #e1e1e1;
    font-size: 12px;
    color: #464646;
    min-width: 150px;
    max-width: 20%;
    white-space:normal;
}

.delete_bttn {
    background: #d03830;
}




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

    main{

        overflow-y: scroll;
    }

    #mobile_menu_bttn{

        display: inline-block;
        width: 50px;
        background: none;
    }

    nav .left{
        margin:0 12px;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    nav .right{

        position: absolute;
        display: block;
        top:60px;
        transition: all 0.2s;
        opacity: 0;
        transform: scale(1.05);
        width: 100%;
        height: auto;
        background:#f1f3f4;
        transition: all 0.2s;
        pointer-events: none;
    }

    nav .right.show{

        opacity: 1;
        transform: scale(1);
        pointer-events:all;
    }

    nav .right > a{

        border-bottom: 1px solid #e1e1e1;
    }
    nav .dropdown > a{

        border-bottom: 1px solid #e1e1e1;
        width:calc(100% - 50px);
    }

    nav .dropdown:hover > a{

        background: none;
    }

    nav .dropdown ul {

        background: none;
    }

    nav .dropdown::after{

        top:20px;
    }

    nav .right > a:last-child{

        border-bottom: none;
    }

    nav .dropdown ul{

        position: relative;
        width: 100%;
    }

    nav .dropdown li{

        padding-left: 20px;
    }

    nav .right > a.active{

        background: none;
        border-bottom: none;
    }

    nav .dropdown:hover > a{

        border-bottom: none;
    }

    /* nav .right *{

        display: none;
    }
    nav .right .mobile_menu{

        display: block;
    } */

    .datatables_table_container{

        overflow: scroll;
    }

    .dataTable thead {
        position: relative;
        top:0;
        z-index: 2;
    }

    .dataTable thead:hover{

        z-index: 4;
    }

    #table_ctrl {
        position: relative;
        top: 0;
        padding-top:0;
    }

    #t_row1 {

        flex-wrap: wrap;
    }

    #t_row1 > div{

        width: 100%;
        text-align: left;
    }

    #t_row2{
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        padding-bottom: 14px;
    }

    #t_row1_left{

        flex-wrap: wrap;
    }

    #t_row1_left div{

        margin-bottom:12px;
        margin-left: 8px;
    }

    .dataTables_length {
        margin-right:0;
    }

    #filter_panel .control_bar{

        margin-bottom: 30px !important;
        text-align: center;
        margin-left: -31px;
    }

    #filter_panel .control_bar button{

        width: 20%;
    }

    .dataTables_wrapper .dataTables_filter {
        margin-top: 0;
    }

    #DataTables_Table_0_filter > label{

        margin-left: 3px;
    }

    #DataTables_Table_0_filter > label > input[type=search]{

        width: calc(100% - 83px);
    }

    .dataTables_wrapper{

        margin-top: 20px;
    }

}