/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

.couleurH {
    color: black;
}

.chat {
    list-style: none;
    background: none;
    margin: 0;
    padding: 0 0 50px 0;
    margin-bottom: 15px;
}

.chat li {
    padding: 0.5rem;
    overflow: hidden;
    display: flex;
}

.chat .day {
    position: relative;
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    height: 20px;
    text-shadow: 7px 0px 0px #252C33, 6px 0px 0px #252C33, 5px 0px 0px #252C33, 4px 0px 0px #252C33, 3px 0px 0px #252C33, 2px 0px 0px #252C33, 1px 0px 0px #252C33, 1px 0px 0px #252C33, 0px 0px 0px #252C33, -1px 0px 0px #252C33, -2px 0px 0px #252C33, -3px 0px 0px #252C33, -4px 0px 0px #252C33, -5px 0px 0px #252C33, -6px 0px 0px #252C33, -7px 0px 0px #252C33;
    box-shadow: inset 20px 0px 0px #252C33, inset -20px 0px 0px #252C33, inset 0px -2px 0px rgba(255, 255, 255, 0.1);
    line-height: 38px;
    margin-top: 5px;
    margin-bottom: 20px;
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.chat .notification {
    position: relative;
    display: inherit;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.15);
    background: rgba(234, 247, 255, 0.035);
    line-height: 30px;
    border-radius: 100px;
    margin: 7px 35%;
    height: 30px;
    width: 30%;
    box-shadow: 0px 1px 0px rgba(0, 0, 0, .05), 0px -1px 0px rgba(0, 0, 0, .05), inset 0px 1px 0px rgba(255, 255, 255, .02), inset 0px -1px 0px rgba(255, 255, 255, .02);
    text-shadow: 0px -1px 0px rgba(0, 0, 0, .1), 0px 1px 0px rgba(255, 255, 255, .05);
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transition: all .2s cubic-bezier(0.565, -0.260, 0.255, 1.410);
}

.chat .notification time {
    position: absolute;
    top: 7px;
    right: 7px;
    font-size: 11px;
    padding: 8px;
    border-radius: 100px;
    background: #252C33;
    box-shadow: 0px 0px 2px rgba(255, 255, 255, .02), inset 0px 0px 1px rgba(27, 35, 42, 0.1);
    height: 1px;
    line-height: 0px;
    color: rgba(255, 255, 255, 0.1);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transition: all .2s cubic-bezier(0.565, -0.260, 0.255, 1.410);
}

.other .msg {
    background-color: #A8DDFD;
    border: 1px solid #97C6E3;
    border-radius: 10px;
}

.other:before {
    position: relative;
    top: 0px;
    right: 0px;
    left: 0px;
    width: 0px;
    height: 0px;
    border-left-color: transparent;
    border-bottom-color: transparent;
}

.self {
    justify-content: flex-end;
    align-items: flex-end;
}

.self .msg {
    background-color: #f8e896;
    border: 1px solid #dfd087;
    border-radius: 10px;
}

.self:after {
    content: "";
    position: relative;
    display: inline-block;
    float: right;
    bottom: 0px;
    right: 0px;
    width: 0px;
    height: 0px;
    border-right-color: transparent;
    border-top-color: transparent;
}

.msg {
    min-width: 50px;
    padding: 10px;
    border-radius: 2px;
    word-break: break-all;
}

.msg .user {
    font-size: 14px;
    margin: 0 0 2px 0;
    color: #666;
    font-weight: 700;
    margin-top: -2px;
    margin-bottom: 5px;
    transition: all .2s ease;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.msg .user .range.admin {
    display: inline-block;
    font-size: 10px;
    font-weight: 300;
    color: #eb650c;
    padding: 2px;
    border-radius: 3px;
    border: solid 1px #6aea96;
    background: rgba(255, 255, 255, 0);
    margin-left: 5px;
}

.msg p {
    font-size: 13px;
    margin: 0 0 2px 0;
    color: #777;
    transition: all .2s ease;
}

.msg img {
    position: relative;
    display: block;
    width: 600px;
    border-radius: 5px;
    box-shadow: 0px 0px 3px #eee;
    transition: all .8s cubic-bezier(0.565, -0.260, 0.255, 1.410);
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.msg time {
    font-size: 0.7rem;
    color: rgba(0, 0, 0, .35);
    margin-top: 3px;
    float: right;
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.msg time:before {
    content: "\f017";
    color: #ddd;
    font-family: FontAwesome;
    display: inline-block;
    margin-right: 4px;
}

@-webikt-keyframes pulse {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.5;
    }
}

::-webkit-scrollbar {
    min-width: 12px;
    width: 12px;
    max-width: 12px;
    min-height: 12px;
    height: 12px;
    max-height: 12px;
    background: #252C33;
    box-shadow: inset 0px 50px 0px rgba(27, 35, 42, 0.9), inset 0px -50px 0px #eee;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 100px;
    border: solid 3px #252C33;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:active {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-button {
    display: block;
    height: 26px;
}


/* T Y P E */


/* R E S P O N S I V E   C O N F I G U R A T I O N */

@media screen and (max-width: 750px) {
     ::-webkit-scrollbar {
        display: none;
    }
    .chat {
        margin-bottom: 55px;
    }
    .msg p {
        font-size: 11px;
    }
    .msg .user {
        font-size: 13px;
    }
    .msg img {
        width: 300px;
    }
    .chat .notification {
        font-size: 12px;
        margin: 7px 30%;
        width: 40%;
    }
    .chat .day {
        font-size: 11px;
    }
}

@media screen and (max-width: 550px) {
    .msg p {
        max-width: 250px;
    }
    .msg img {
        width: 200px;
    }
    .chat .notification {
        font-size: 12px;
        margin: 7px 0px;
        width: 100%;
        border-radius: 0px;
    }
    .chat .notification time {
        right: 10px;
    }
}

.customtable {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100% !important;
    /* color: white;*/
}

.customtable td,
.customtable th {
    border: 1px solid #ddd !important;
    padding: 8px;
}

.customtable tr:nth-child(even) {
    background-color: #f2f2f2;
}

.customtable tr:hover {
    background-color: rgb(176, 180, 180) !important;
    color: white !important;
}

.customtable th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-size: cover !important;
    color: white;
}

.table-wrapper {
    background: #fff;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 3px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.table-title {
    padding-bottom: 15px;
    /*
		background: #435d7d;
		color: #fff;
		padding: 16px 30px;
		margin: -10px -12px;
		border-radius: 3px;
		*/
}

.loginspace {
    min-height: 500px !important;
}

.table-title h2 {
    margin: 5px 0 0;
    font-size: 24px;
}

.table-title .btn-group {
    float: right;
}

.table-title .btn {
    color: #fff;
    float: right;
    font-size: 13px;
    border: none;
    min-width: 50px;
    border-radius: 2px;
    border: none;
    outline: none !important;
    margin-left: 10px;
}

.table tr th,
.table tr td {
    border-color: #e9e9e9;
    padding: 12px 15px;
    vertical-align: middle;
}

.table tr th:first-child {
    width: 40px;
}

.table tr th:last-child {
    width: 20px !important;
}

.table tr th:nth-last-child(2) {
    width: 69px;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fcfcfc;
}

.table-striped.table-hover tbody tr:hover {
    background: #f5f5f5;
}

.table th i {
    font-size: 13px;
    margin: 0 5px;
    cursor: pointer;
}

.table td:last-child i {
    opacity: 0.9;
    font-size: 22px;
    margin: 0 5px;
}

.table td a {
    font-weight: bold;
    color: #566787;
    display: inline-block;
    text-decoration: none;
    outline: none !important;
}

.table td a:hover {
    color: #2196F3;
}

.table td a.view >i {
    color: #03A9F4;
}
.table td a.role >i {
    color: #1ef08e;
}
.table td a.mailview >i {
    color: #03A9F4;
}
.table td a.edit >i {
    color: #FFC107;
}

.table td a.delete >i {
    color: #F44336;
}

.table td a.affect >i {
    color: #13c003;
}
.table td a.smsview >i {
    color: #13c003;
}
.table td a.printlist >i {
    color: #EC650A;
}
.table td a.printview >i {
    color: #EC650A;
}
.card a.add >i {
    color: #155724;
    font-size: 100%;
}
.card a.view >i {
    color: #03A9F4;
    font-size: 100%;
}
.card a.role >i {
    color: #1ef08e;
}
.card a.edit >i {
    color: #FFC107;
}

.card a.delete >i {
    color: #F44336;
}

.card a.affect >i {
    color: #13c003;
}

.card a.printlist >i {
    color: #EC650A;
}
a.deletecomment >i {
    color: #FF0000 !important;
}
.table td i {
    font-size: 19px;
}

.table .avatar {
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 10px;
}
.input-group-addon{
    margin-top: 9px;
    margin-left: -19px;
  }
#contentview,
#contentviewm,
#contentviewr,
#contenteditm,
#descriptionview,
#author_descriptionview {
    overflow-y: auto;
    min-height: 300px;
}

.TFtableCol {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    table-layout: fixed;
}

.TFtableCol th {
    padding: 7px;
    font-size: 28px;
}

.TFtableCol tbody td {
    padding: 7px;
}

.TFtableCol td a.delete {
    color: #FF0000;
}


/* improve visual readability for IE8 and below */

.TFtableCol tbody tr {
    background: #b8d1f3;
}


/*
.TFtableCol tbody tr td:nth-child(1) {
    background: #ACDDDE;
}

.TFtableCol tbody tr td:nth-child(2) {
    background: #CAF1DE;
}

.TFtableCol tbody tr td:nth-child(3) {
    background: #E1F8DC;
}

.TFtableCol tbody tr td:nth-child(4) {
    background: #FEF8DD;
}

.TFtableCol tbody tr td:nth-child(5) {
    background: #FFE7C7;
}

.TFtableCol tbody tr td:nth-child(6) {
    background: #F7D8BA;
}

.TFtableCol tbody tr td:nth-child(7) {
    background: #ebcfc8;
}

.TFtableCol tbody tr td:nth-child(8) {
    background: #b1a0df;
}

.TFtableCol tbody tr td:nth-child(9) {
    background: #cccccc;
}

.TFtableCol tbody tr td:nth-child(10) {
    background: #dcec93;
}
*/


/************************ BackGround Custom Style ***************************/

.bg-x0 {
    background: #ACDDDE;
}

.bg-x1 {
    background: #CAF1DE;
}

.bg-x2 {
    background: #E1F8DC;
}

.bg-x3 {
    background: #FEF8DD;
}

.bg-x4 {
    background: #FFE7C7;
}

.bg-x5 {
    background: #F7D8BA;
}

.bg-x6 {
    background: #ebcfc8;
}

.bg-x7 {
    background: #c7bee0;
}

.bg-x8 {
    background: #cccccc;
}

.bg-x9 {
    background: #f1c4c4;
}


/************************ Border Custom Style ***************************/

.border-x0 {
    border: 2px solid red;
}

.border-x1 {
    border: 2px solid green;
}

.border-x2 {
    border: 2px solid blue;
}

.border-x3 {
    border: 2px solid purple;
}

.border-x4 {
    border: 2px solid magenta;
}

.border-x5 {
    border: 2px solid brown;
}

.border-x6 {
    border: 2px solid palevioletred;
}

.border-x7 {
    border: 2px solid orange;
}

.border-x8 {
    border: 2px solid olivedrab;
}

.border-x9 {
    border: 2px solid black;
}


/*
.TFtableCol .card {
    max-width: calc(25% - 30px) !important;
}
*/

.curractive {
    background: rgba(71, 248, 195, 0.89) !important;
}



.w-25 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.chart-area {
    min-height: 350px;
}

.bg-stat {
    background: #CAF1DE;
}

#top-account {
    /* margin: 40px 0 43px 6px; */
    width: 166px;
}

.bootstrap-select .dropdown-menu {
    min-width: 100% !important;
}
.bg-pub-current{background: rgba(143, 243, 213, 0.89) !important;}
.bg-pub-expired{background: rgba(248, 150, 150, 0.89) !important;}

.bg-sadm {background: rgba(180, 247, 225, 0.89) !important;}
.bg-mod {background: rgba(210, 247, 250, 0.89) !important;}
.bg-adm{background: rgba(280, 247, 200, 0.89) !important;}

/******* print style table ********/
.table-print {
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
    direction: rtl;
    border: 1px solid black !important;
}

.table-print th,
.table-print td {
    padding: 7px;
    vertical-align: top;
   
   
}
.table-print td {
    
    border: 1px solid black;
   
}

.table-print thead th {
    vertical-align: bottom;
}

.table-print thead tr th:nth-child(1) {
    background-color: transparent !important;
}

.table-print thead {
    background-color: #c6f8d3 !important;
   
}

.table-print tbody+tbody {
    border-top: 2px solid #dee2e6;
}

/************************************************
*! print style table
************************************************/
/*********************************************** custom table print Modal 1 *********************************************/
.table-print_list {
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
    direction: rtl;
   
}

.table-print_list th,
.table-print_list td {
    padding: 7px;
    vertical-align: top;
   
   
}

.table-print_list-td {
    width: 50px;
}
.table-print_list-th {
    height: 100px;
    vertical-align:middle !important;
}
.table-print_list  td {
    border: 2px double black !important;
 
}
.table-print_list tbody tr:last-child td{
    
    font-weight: bold;
   
    border-style: none !important;
    
}
.table-print_list tbody tr th:nth-child(1) {
    border: 2px double black !important;
    font-weight: bold;
}

.table-print_list thead th {
    vertical-align: bottom;
}
.table-print_list tbody tr:nth-child(7) {
    height: 100px;
}


.table-print_list thead {
    background-color: #c6f8d3 !important;
   
}


/*********************************************** custom table print Modal 2 *********************************************/
.page {
    width: 210mm;
    min-height: 297mm;
    padding: 2mm;
    margin:  auto;
    border: 1pt #D3D3D3 solid;
    border-radius: 5pt;
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    
  }
  @page {
    size: A4;
    margin:50pt 0;
  }
  
  .tablexx {
    font-family: arial, sans-serif;
    border-collapse:collapse;
    width: 100% !important;
    height: 500px !important;
    direction: rtl;
    
    
  }
  .tablexx thead {
    font-weight: bold;
    font-size: 20px;

  }
  .tablexx thead tr:first-child, .tablexx thead tr:first-child th {
    vertical-align: middle;
    font-size: 24px;
    font-weight: bold;
    text-align: right;
  }
  .tablexx thead tr:last-child, .tablexx thead tr:last-child th {
    vertical-align: middle;
    font-size: 18px;
    
    text-align: center;
    border: 1px double black !important;
  }
  
  
  .tablexx tbody tr th:nth-child(1) {
    border: 1px double black !important;
    font-weight: bold;
    font-size: 16px;
    white-space: nowrap;
    width: 150px;
    text-align: right;
  }
  
  .tablexx tbody tr:nth-last-child(2) td { 
    vertical-align: middle;
    border-style: none !important;
    text-align: center;
    color: red;
    font-size: 14px;
    font-weight: bold;
    border: 1px double black !important;

  }
  
  .tablexx tbody tr:nth-last-child(1) td { 
    vertical-align: middle;
    border-style: none !important;
    text-align: center;
    color: green;
    font-size: 14px;
    font-weight: bold;
    border: 1px double black !important;

  }
  .tablexx tbody tr td { 
    border: 1px double black !important;
    
  }
  .tablexx td,
  .tablexx th {
    padding: 7px 5px !important;
    vertical-align: top;
    text-align: center;
    
   
    
  }
  
/*********************************************** custom table print Modal 2 *********************************************/
.tablex {
    font-family: arial, sans-serif;
    border-collapse: unset;
    width: 100% !important;
    height: 500px !important;
    direction: rtl;
    table-layout: fixed;
    
  }
  .tablex thead {
    font-weight: bold;
    font-size: 20px;

  }
  .tablex thead tr:first-child, .tablex thead tr:first-child th {
    vertical-align: middle;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
  }
  
  .tablex thead tr:last-child, .tablex thead tr:last-child th {
    
    border: 2px double black !important;
    
    
  }
  .tablex tbody tr th:nth-child(1) {
    border: 2px double black !important;
    font-weight: bold;
    font-size: 22px;
  }
  .tablex tbody tr td:nth-child(2) {
    border: 2px double black !important;
    font-weight: bold;
    font-size: 20px;
  }
  .tablex tbody tr td:nth-child(3) {
    border: 2px double black !important;
    font-weight: bold;
    font-size: 20px;
    color: red;
  }
  .tablex tbody tr td:nth-child(4) {
    border: 2px double black !important;
    font-weight: bold;
    font-size: 20px;
    color: green;
  }
  .tablex tbody tr:nth-child(6) {
      color: blue;
      font-size: 20px;
      font-weight: bold;

    
  }
  .tablex tbody tr:nth-child(7) td { 
    vertical-align: middle;
    border-style: none !important;
    text-align: right;
    padding: 5px 5px 45px 5px !important;
    font-size: 20px;
    font-weight: bold;

  }
  .tablex tbody tr td { 
    border: 2px double black !important;
    
  }
  .tablex td,
  .tablex th {
    padding: 10px 5px !important;
    vertical-align: top;
    text-align: center;
   
    
  }


  /*********************************************** custom table print Modal liste usersnames *********************************************/
.tablexy {
    font-family: arial, sans-serif;
    border-collapse: unset;
    width: 100% !important;
    height: 200px !important;
    /*direction: rtl;*/
    table-layout: fixed;
    
  }
  .tablexy thead {
    font-weight: bold;
    font-size: 20px;

  }
  .tablexy thead tr:first-child, .tablexy thead tr:first-child th {
    vertical-align: middle;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
  }
  
  .tablexy thead tr:last-child, .tablexy thead tr:last-child th {
    
    border: 2px double black !important;
    
    
  }
  .tablexy tbody tr th:nth-child(1) {
    border: 2px double black !important;
    font-weight: bold;
    font-size: 22px;
  }
  .tablexy tbody tr td:nth-child(2) {
    border: 2px double black !important;
    font-weight: bold;
    font-size: 20px;
  }
  .tablexy tbody tr td:nth-child(3) {
    border: 2px double black !important;
    font-weight: bold;
    font-size: 20px;
    color: red;
  }
  .tablexy tbody tr td:nth-child(4) {
    border: 2px double black !important;
    font-weight: bold;
    font-size: 20px;
    color: green;
  }
  .tablexy tbody tr:nth-child(6) {
      color: blue;
      font-size: 20px;
      font-weight: bold;

    
  }
  .tablexy tbody tr:nth-child(7) td { 
    vertical-align: middle;
    border-style: none !important;
    text-align: right;
    padding: 5px 5px 45px 5px !important;
    font-size: 20px;
    font-weight: bold;

  }
  .tablexy tbody tr td { 
    border: 2px double black !important;
    
  }
  .tablexy td,
  .tablexy th {
    padding: 10px 5px !important;
    vertical-align: top;
    text-align: center;
   
    
  }
/*********************************************** custom table print Modal liste usersnames *********************************************/
.tablexyprinteleve{
    font-family: arial, sans-serif;
    border: 1px solid black !important;
    width: 100% !important;
    height: 200px !important;
    /*direction: rtl;*/
  
    
  }
  
  .tablexyprinteleve  tr td { 
    border: 1px solid black !important;
  }
  .tablexyprinteleve td,
  .tablexyprinteleve th {
    padding: 3px 2px !important;
    vertical-align: top;
    text-align: center;
   
    
  }
/*********************************************** custom table print Modal liste usersnames *********************************************/
.tablexyprintlist {
    font-family: arial, sans-serif;
    border: 2px solid black !important;
    width: 100% !important;
    height: 200px !important;
    direction: rtl;
  
    
  }
  .tablexyprintlist thead {
    font-weight: bold;
    font-size: 20px;

  }
.tablexyprintlist thead tr:last-child th:nth-child(1)  {
    

    width: 10px !important;
    
  }
  
 
  .tablexyprintlist tbody tr td { 
    color: red;
    border: 2px solid black !important;
  }
  .tablexyprintlist td,
  .tablexyprintlist th {
    padding: 3px 2px !important;
    vertical-align: top;
    text-align: center;
   
    
  }


  .dottedhr{
    border: 1px dotted red !important;
  }
.facture_print {
    min-height: 700px;
    padding: 1px 30px;
}

.facture_print .form-group {
    margin-bottom: 0 !important;
}



.xdebug-error,
.xe-warning,
.xe-notice,
.xe-uncaught-exception {
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    width: 98%;
    font-style: oblique;
    font-weight: bold;
    font-size: medium;
    color: black;
} 
.dropdown-item.active, .dropdown-item:active {
    
    background-color:#1ABC9C !important;
  }




