*{
    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);
    }
}

@keyframes fastShake {
    0%, 100% {
        left: 0;
    }
    25% {
        left: -6px;
    }
    75% {
        left: 6px;
    }
}

.fast-shake {
    animation: fastShake 0.1s infinite;
}


html{
    height:1vh;
}

body{
    margin: 0;
    padding:0;
    font-weight: 400;
    /* background: #fafafa; */
    background: white;
    position: relative;
    min-height:1vh;
}

body.cover{

    position: relative;
    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: #2676f9;
}


body a:hover{

    color: #1850aa;
}

button{

    padding: 4px 9px;
    border: none;
    background: #387ae2;
    color: white;
    cursor: pointer;
}

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

input[type='search']:focus-visible, 
input[type='password']:focus-visible,
input[type='text']:focus-visible,
input[type='number']:focus-visible,
textarea:focus-visible{

    outline: 2px solid #387ae2;
    outline-offset: -1px;
}

button:hover{

    background: #3460a8;
}

button:active{

    top:2px;
    background:#212c3d;
}

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;
    background: rgb(241 243 244);
    border-bottom: 1px solid #cecece;
}

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{

    background: #e2e2e2;
    border-bottom: 1px solid black;
    position: relative;
    top: 1px;
    color: black;
}

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:#2676f9;
    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;
    margin-bottom: 150px;
}

a{

    text-decoration: none;
}

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

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

nav a:last-child{

    margin-right: 0;
}

nav a:hover{

    color:#387ae2;
    background:#e7e7e7
}

fieldset{

    border: 1px solid #c9c9c9;
}

input[type="text"], input[type="search"], input[type="password"], textarea{


    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;
}


/* Hide the default checkbox */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    height: 16px;
    background-color: #fff; /* Default background color */
    border: 1px solid #ccc;
    border-radius:0;
    position: relative;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    top:-2px;
  }
  
  /* Style the checked state */
input[type="checkbox"]:checked {
    background-color: #1a5dda; /* Background color when checked */
}
  
input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 4px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(41deg);
}


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;
}

form.center{

    position: relative;
    width: 500px;
    margin: 0 auto;
    padding: 50px;
    border:1px solid rgb(71, 71, 71);
}

form.center.float{

    position: fixed;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: white;
    z-index: 99999;
}

form.center .input_row{

    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

form.center .input_row label{

    display: inline-block;
    width: 30%;
}

form.center .input_row input, form.center .input_row textarea{

    width: 66%;
    resize: none;
}

form.center .row{

    margin-bottom: 10px;
}

form.center .row:last-child{

    margin-bottom: 0;
}

form.center .row.right{

    text-align: right;
}

form.center .row.center{

    text-align: center;
}

form.center .submit_bttn{

    padding: 10px 30px;
}

form.center h1, form.center h2, form.center h3{

    margin-top: 0;
}

form.center .close_bttn{

    position: absolute;
    top:10px;
    right:10px;
    background: none;
    color: red;
}

span.stat{

    border-bottom: 1px solid gray;
}

#user_badge{

    position: fixed;
    font-size: 14px;
    padding: 10px;
    background:white;
    bottom:30px;
    right: 20px;
    text-align: right;
    border: 1px solid #e5e5e5;
}

.mobile_menu{

    display: none;
}

#mobile_menu_bttn{

    display: none;
}


.input_block{

    margin-right: 20px;
}

.noshow{

    display: none !important;
}



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;

}

table.filtered{

    outline:3px solid #1a5dda;
}

.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;
}

.top_table_bar{

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



#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 rgb(42, 104, 158);
    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: #387ae2;
}

.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;
}

tr.starred td{

    background: rgb(255, 253, 204);
}

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: 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;
    }

}

#global_context_menu {
    display: none;
    position: fixed;
    z-index: 1000;
    background: white;
    border: 1px solid rgb(138, 138, 138);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    user-select: none;
}
#global_context_menu ul {
    list-style: none;
    margin: 0;
    padding: 5px 0;
}
#global_context_menu ul li {
    padding: 8px 12px;
    cursor: pointer;
}
#global_context_menu ul li:hover {
    background-color: #f0f0f0;
}

#global_context_menu ul li:active{

    background: #2676f9;
    color: white;
}



.pae_plot{

    position: relative;
    display: inline-block;
    width: 300px;
    height: 300px;
    margin:30px;
    margin-bottom: 66px;
}

.pae_plot .title{

    position: absolute;
    bottom:calc(100% + 10px);
    width: 100%;
    text-align: center;
    left: 0;
    font-weight: bolder;
    font-size: 20px;
}

.pae_plot img{

    width: 100%;
    height: 100%;
    cursor:crosshair;
    pointer-events: all;
}

.pae_plot .x_axis{

    height: 1.2em;
    overflow: visible;
}

.pae_plot .y_axis{

    height: 100%;
    overflow: visible;
}

.pae_plot .x_axis_label, .pae_plot .y_axis_label{

    text-align: center;
    position: absolute;
    top: 0;
    height: 100%;
    font-size: 10px;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 1px;
    box-sizing: border-box;
}

.pae_plot.pae_plot_labels_compact .x_axis_label,
.pae_plot.pae_plot_labels_compact .y_axis_label{

    font-size: 8px;
    line-height: 1.1;
}

.pae_plot.pae_plot_labels_dense .x_axis_label,
.pae_plot.pae_plot_labels_dense .y_axis_label{

    font-size: 7px;
    line-height: 1.05;
}

.pae_plot .y_axis{

    transform: rotate(90deg);
    transform-origin: top left;
}


.pae_plot .hover_info_block{

    position: absolute;
    background: rgba(0, 0, 0, 0.472);
    padding: 3px;
    font-size: 12px;
    color:white;
    display: none;
    z-index: 10;
    line-height: 1em;
    pointer-events: none;
}

.pae_plot .hover_info_block.show{

    display: block;
}

body.dark_mode{

    color: rgb(229, 229, 229);
    background: #252525;
}

body.dark_mode *{

    color: rgb(229, 229, 229);
}

body.dark_mode input, body.dark_mode textarea{

    background: #393939;
    border:1px solide  rgb(229, 229, 229);
}

body.dark_mode button, body.dark_mode select{
    
    background: #70517b;
    border: none;
}

body.dark_mode main a{

    color: #70517b;
}

body.dark_mode nav{

    background: #383838;
    border-bottom: none;
}

body.dark_mode nav .left{

    color:white;
}

body.dark_mode table th {

    background: #70517b;
}

body.dark_mode tr:hover td {
    background: #c86e5e;
}

body.dark_mode #user_badge{

    background: black;
    color:white;
}

body.dark_mode #hero_img{

    filter: invert(0.855);
}

body.dark_mode form.center.float{

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

body.dark_mode.cover::after {

    background: rgb(48 48 48 / 87%);
}

body.dark_mode table th{

    border:1px solid rgb(84, 41, 85);
} 

body.dark_mode table th:first-child{

    border-left-color: rgb(107, 107, 107);
} 

body.dark_mode table th:last-child{

    border-right-color: rgb(107, 107, 107);
} 

body.dark_mode td{

    border:1px solid rgb(107, 107, 107);
}


body.dark_mode table.dataTable.no-footer{
    border-bottom: 1px solid rgb(107, 107, 107);
}

body.dark_mode input[type="checkbox"]:checked {
    background-color:#7f4d92;; /* Background color when checked */
}

body.dark_mode table.dataTable tbody tr.selected>* {
    box-shadow: inset 0 0 0 9999px rgba(125, 182, 169, 0.9)

}

body.dark_mode .selectize-dropdown {

    background: #191919;
}

body.dark_mode div.selectize-input.items {
    
    background: #2d2d2d !important;
}

body.dark_mode #global_context_menu{

    background:#343434;
}

body.dark_mode #global_context_menu ul li:hover {
    background-color:rgb(121, 185, 170);
}

.menu_badge.alert{

    border-radius: 30px;
    color: white;
    background: red;
    font-size: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}