*{
    font-family: 'Roboto', sans-serif;
}

.bg_gray{
    background-color: #d2dae2;
}

.bg_white{
    background-color: white;
}

.bg_yellow{
    background-color: #ffd32a;
}

.bg_mint{
    background-color:#38ada9;
}

.bg_black{
    background-color:black;
}

.mrgn_10{
    margin: 10;
}

.mt_10{
    margin-top: 10px;
}

.mt_20{
    margin-top: 20px;
}

.mt_40{
    margin-top: 40px;
}

.mt_80{
    margin-top: 80px;
}

.pd_10{
    padding: 10px !important;
}

.pd_20{
    padding: 20px;
}

.pd_50{
    padding: 50px;
}

.pos_btm{
    position: absolute;
    bottom: 0;
}

.shadow-text-inset{
    color: #616161;
    text-shadow: #f0f0f0 1px 1px 0;
}

.fixed_h-400{
    min-height: 400px;
}

.nav__left_panel{
    position: fixed;
    padding-bottom: 100%;
    left: 0;
    top:0;
}
.table__col_w_1{
    width: 1% !important;
}

.table__col_w_5{
    width: 5% !important;
}
.table__col_w_10{
    width: 10% !important;
}
.table__col_w_15{
    width: 15% !important;
}
.table__col_w_20{
    width: 20% !important;
}

.table__col_w_50{
    width: 50% !important;
}

.nav__left_panel_list{
    position: relative;
    margin-top: 80px;
    list-style: none;
    padding-inline-start: 0;
    display: block;
    width: 60px;
}
.nav__left_panel_list li{
    width: 40px;
    height: 40px;
    display: block;
    text-align: center;
    align-content: center;
}

.nav__left_panel_list li a{
    margin: 20px;
    display: block;
    color: black;
}

.breadcrumb{
    background-color: transparent !important;
}

.breadcrumb li:first-child a{
    margin-top: 4px !important;
    color: #6c757d !important;
}

.breadcrumb li a:hover{
    color:black !important;
}

/* Tabs style */
#tabs ul{
    list-style: none;
    padding-inline-start: 0;
    margin-bottom: 3rem;
}

#tabs ul li{
    display: inline;
    
}

#tabs ul li.ui-tabs-active{
    border-bottom: 1px solid black;
}

#tabs ul li.ui-tabs-active a{
    color: black !important;
    
}

#tabs ul li.ui-state-default a{
    color: #6c757d;
    text-decoration: none;
}

.profile_card,
.statistic_card{
    min-height: 220px;
}


.single-card p{
    overflow-wrap: break-word;
    line-height: 25px !important;
}

.text__container{
    overflow-wrap: break-word;
}

.table {
    font-size: .9em;
}

.files-list{
    list-style: none;
    display: block;
}

.files-list li{
    display: inline;
    margin-left: 15px;
}
.files-list li:first-child{
    margin-left: 0;
}

.table a,
.files-list li a{
    color: #919191;
}

.task-action,
.action-comment{
    list-style: none;
    padding-inline-start: 0;
}

.task-action li,
.action-comment li{
    display: inline-block;    
}


.action-comment li a{
    color: #919191;
    font-size: .8em;
}

.action-comment li:first-child:after{
    content: '|';
    display: inline-block;
    padding: 0 .5rem;
    color: #919191;
}

.task-action li a{
    color: #919191;
    padding: 3px;
}

/* Toggle checkbox  */
.toggle {
    position: relative;
    display: block;
    width: 40px;
    height: 20px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transform: translate3d(0, 0, 0);
  }
  .toggle:before {
    content: "";
    position: relative;
    top: 0px;
    left: 0px;
    width: 40px;
    height: 20px;
    display: block;
    background: #9A9999;
    border-radius: 10px;
    transition: background 0.2s ease;
  }
  .toggle span {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    display: block;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(154, 153, 153, 0.5);
    transition: all 0.2s ease;
  }
  .toggle span:before {
    content: "";
    position: absolute;
    display: block;
    margin: -18px;
    width: 56px;
    height: 56px;
    background: rgba(79, 46, 220, 0.5);
    border-radius: 50%;
    transform: scale(0);
    opacity: 1;
    pointer-events: none;
  }

#cbx:checked + .toggle:before,
#cbx_mail:checked + .toggle:before,
#cbx_bot:checked + .toggle:before {
  background: #9FD6AE;
}

#cbx:checked + .toggle span,
#cbx_mail:checked + .toggle span,
#cbx_bot:checked + .toggle span {
  background: whitesmoke;
  transform: translateX(20px);
  transition: all 0.2s cubic-bezier(0.8, 0.4, 0.3, 1.25), background 0.15s ease;
  box-shadow: 0 3px 8px rgba(79, 46, 220, 0.2);
}

#cbx:checked + .toggle span:before,
#cbx_mail:checked + .toggle span:before,
#cbx_bot:checked + .toggle span:before {
  transform: scale(1);
  opacity: 0;

}

.center {
  position: relative;

}