/*
Template Name: Creative Bootstrap 3 Responsive Admin Template
Template Version: 1.0
Author: GeeksLabs
Website: http://geekslabs.com/
*/
/* Masquage des outils d'édition (ajout de texte, dessin, surlignage) */
#editorModeButtons,
#editorFreeTextButtons,
#editorInkButtons,
#editorStampButtons,
#editorHighlightButtons,
#editorFreeText,
#editorInk,
#editorStamp,
#editorHighlight,
#editorModeSeparator {
    display: none !important;
}
/* Import fonts
@import url(http://fonts.googleapis.com/css?family=Lato:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic);
@import url(line-icons.css); */
.col_entete_qcm img {
    max-width: 663px;
    height: auto !important;
}
/* === FORCE RESPONSIVE GRILLE === */
.table_grille.force-responsive tbody tr,
.table_grille.force-responsive tbody td {
    background: #fff !important;
    background-color: #fff !important;
}
.table_grille.force-responsive thead {
    display: none;
}
.table_grille.force-responsive tbody tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    background: #fff;
}
.table_grille.force-responsive tbody tr th {
    display: block;
    width: 100%;
    background: #f5f5f5;
    padding: 8px 10px;
    font-size: 14px;
    border-bottom: 2px solid #ddd;
    text-align: left;
}
.table_grille.force-responsive tbody td {
    display: block;
    width: 100% !important;
    padding: 5px 10px !important;
    text-align: left !important;
    border: none;
    border-bottom: 1px solid #eee;
}
.table_grille.force-responsive tbody td:before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 4px;
    color: #555;
    font-size: 12px;
}
.table_grille.force-responsive tbody td[data-label=""] {
    display: none;
}
.table_grille.force-responsive textarea,
.table_grille.force-responsive input[type="text"] {
    min-height: 40px;
    width: 100% !important;
}
.table_grille.force-responsive tbody td span {
    display: block;
}

.table_grille {
    table-layout: fixed;
    width: 100%;
}

.table_grille thead td {
    width: 14%; /* ~7 colonnes = 100% */
}

.table_grille thead td:first-child {
    width: 16%; /* Colonne nom un peu plus large */
}
/* Overlay fond sombre */
.popup-convergence-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-convergence-overlay.show {
    opacity: 1;
}

/* Popup principale */
.popup-convergence {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    width: 500px;
    max-width: 90%;
    max-height: 80vh;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.popup-convergence.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Header */
.popup-convergence-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.popup-convergence-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.popup-convergence-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.popup-convergence-close:hover {
    opacity: 1;
}

/* Body */
.popup-convergence-body {
    padding: 20px;
    overflow-y: auto;
    max-height: calc(80vh - 60px);
}

/* État vide */
.popup-convergence-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.popup-convergence-empty i {
    font-size: 48px;
    margin-bottom: 15px;
}

/* Timeline */
.timeline-convergence {
    position: relative;
}

.timeline-convergence-item {
    display: flex;
    gap: 15px;
}

.timeline-convergence-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #6c757d;
    flex-shrink: 0;
    margin-top: 4px;
}

.timeline-convergence-dot.envoyee {
    background: #17a2b8;
}

.timeline-convergence-dot.regle {
    background: #28a745;
}

.timeline-convergence-dot.rejete {
    background: #dc3545;
}

.timeline-convergence-content {
    flex: 1;
}

.timeline-convergence-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.timeline-convergence-statut {
    font-weight: 600;
    font-size: 16px;
}

.timeline-convergence-date {
    color: #6c757d;
    font-size: 13px;
}

.timeline-convergence-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #555;
    font-size: 14px;
}

.timeline-convergence-paiement {
    margin-top: 15px;
    padding: 12px;
    background: #d4edda;
    border-radius: 6px;
    color: #155724;
}

.timeline-convergence-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
}

.timeline-convergence-message.erreur {
    background: #f8d7da;
    color: #721c24;
}
/* Styles pour la galerie d'images TinyMCE */

/* Dialogue modal principal */
.popup-pa-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-pa-overlay.show {
    opacity: 1;
}

/* Popup */
.popup-pa {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    opacity: 0;
    transition: all 0.3s ease;
}

.popup-pa.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Header */
.popup-pa-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px 12px 0 0;
}

.popup-pa-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.popup-pa-title i {
    margin-right: 10px;
}

.popup-pa-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-pa-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Body */
.popup-pa-body {
    padding: 24px;
    max-height: 60vh;
    overflow-y: auto;
}

/* Timeline */
.timeline-pa {
    position: relative;
    padding-left: 30px;
}

.timeline-pa::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline-pa-item {
    position: relative;
    padding-bottom: 24px;
}

.timeline-pa-item:last-child {
    padding-bottom: 0;
}

.timeline-pa-dot {
    position: absolute;
    left: -26px;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.timeline-pa-dot.envoye {
    background: #17a2b8;
}

.timeline-pa-dot.valide {
    background: #28a745;
}

.timeline-pa-dot.refuse {
    background: #dc3545;
}

.timeline-pa-dot.erreur {
    background: #dc3545;
}

.timeline-pa-dot.en_attente {
    background: #ffc107;
}

.timeline-pa-content {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 14px 18px;
    border-left: 3px solid #667eea;
}

.timeline-pa-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.timeline-pa-statut {
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-pa-date {
    font-size: 12px;
    color: #6c757d;
}

.timeline-pa-details {
    font-size: 13px;
    color: #495057;
}

.timeline-pa-details span {
    display: inline-block;
    margin-right: 15px;
}

.timeline-pa-details strong {
    color: #343a40;
}

.timeline-pa-message {
    margin-top: 8px;
    padding: 8px 12px;
    background: #fff3cd;
    border-radius: 4px;
    font-size: 12px;
    color: #856404;
}

.timeline-pa-message.erreur {
    background: #f8d7da;
    color: #721c24;
}

/* Empty state */
.popup-pa-empty {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.popup-pa-empty i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.popup-pa-empty p {
    margin: 0;
    font-size: 15px;
}
/* Styles pour la galerie d'images TinyMCE avec croix de fermeture et recherche */
.highlight-valeur-defaut {
    outline: 3px solid #ffc107 !important;
    outline-offset: 2px !important;
    background-color: rgba(255, 193, 7, 0.15) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 9999 !important;
}

.indicateur-cible {
    display: inline-block;
    font-size: 11px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.pastille_rond {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid rgba(0,0,0,0.15);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#table_liste_pastille {
    border: 1px solid #ddd;
}

#table_liste_pastille thead {
    background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
}

#table_liste_pastille thead th {
    padding: 12px 8px;
    font-weight: 600;
    color: #495057;
    border-right: 1px solid #dee2e6;
}

#table_liste_pastille thead th:last-child {
    border-right: none;
}

#table_liste_pastille tbody tr {
    border-bottom: 1px solid #dee2e6;
    transition: background-color 0.2s;
}

#table_liste_pastille tbody tr:hover {
    background-color: #f8f9fa;
}

#table_liste_pastille tbody td {
    padding: 10px 8px;
    vertical-align: middle;
    border-right: 1px solid #f0f0f0;
}

#table_liste_pastille tbody td:last-child {
    border-right: none;
}

#table_liste_pastille tfoot tr {
    background-color: #f1f3f5;
    border-top: 2px solid #dee2e6;
}

#table_liste_pastille tfoot td {
    padding: 10px 8px;
    border-right: 1px solid #dee2e6;
}

#table_liste_pastille tfoot td:last-child {
    border-right: none;
}

#table_liste_pastille textarea {
    resize: vertical;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

#table_liste_pastille textarea:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
    outline: none;
}

#table_liste_pastille .color {
    border: 2px solid #ced4da;
    border-radius: 4px;
}

#table_liste_pastille img {
    transition: transform 0.2s;
}

#table_liste_pastille img:hover {
    transform: scale(1.1);
}
.dropdown-menu{
	 z-index: 1004 !important;
}
.SumoSelect > .optWrapper{
	 z-index: 1004 !important;
}
.tox .tox-editor-container {
 
  z-index: 1003!important;
}
.tox.tox-tinymce-aux {
  z-index: 99999!important;
}
.tox .tox-dialog {
	
  z-index: 2000!important;
}

.mce-content-body:focus,
[contenteditable="true"]:focus {
    outline: 1px dotted #333 !important;
}
.tox-promotion,
.tox-statusbar__promotion,
[aria-label*="Get all features"] {
    display: none !important;
}
.eval_sta_annee .btn-toggle {
    display: block;
    margin: 20px auto 10px auto;
    padding: 12px 24px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
    text-transform: none;
    letter-spacing: 0.5px;
    text-align: center;
}

.eval_sta_annee .btn-toggle:hover {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

.eval_sta_annee .btn-toggle:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0,123,255,0.3);
}


.eval_sta_annee #detail_par_annee {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding-bottom: 15px;
    margin: 15px 0;
}

.eval_sta_annee .titre-graphique {
    text-align: center;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5em;
    font-weight: 300;
    position: relative;
    cursor: help;
	padding-top:10px;
	margin-top: -10px;
}
.info-icon {
    cursor: help;
    font-size: 0.9em;
    margin-left: 5px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.info-icon:hover {
    opacity: 1;
}


.eval_sta_annee .charts-container {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
}

.eval_sta_annee .chart-wrapper {
    min-width: 140px;
    max-width: 140px;
    text-align: center;
}

.eval_sta_annee .chart-title {
    font-size: 1.1em;
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
}

.eval_sta_annee .svg-chart {
    width: 120px;
    height: 103px;
    margin: -18px auto 0 auto;
    display: block;
}

.eval_sta_annee .progress-circle {
    transform: rotate(-90deg);
    transform-origin: 60px 60px;
}

.eval_sta_annee .progress-bg {
    fill: none;
    stroke: #e9ecef;
    stroke-width: 8;
}

.eval_sta_annee .progress-bar {
    fill: none;
    stroke: #28a745;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dasharray 1.5s ease-out;
}

.eval_sta_annee .center-text {
    text-anchor: middle;
    dominant-baseline: central;
}

.eval_sta_annee .percentage {
    font-size: 20px;
    font-weight: bold;
    fill: #28a745;
}

.eval_sta_annee .stagiaires {
    font-size: 10px;
    fill: #666;
}

.eval_sta_annee .chart-title-svg {
    font-size: 14px;
    font-weight: 600;
    fill: #495057;
}

.eval_sta_annee .total-chart .progress-bar {
    stroke: #007bff;
}

.eval_sta_annee .total-chart .percentage {
    fill: #007bff;
}



@media (max-width: 768px) {
    .eval_sta_annee .charts-container {
        flex-direction: column;
        align-items: center;
    }
    
    .eval_sta_annee .chart-wrapper {
        min-width: 120px;
        max-width: 140px;
    }
}

/* === AUTOCOMPLETE CONTAINER === */
.ui-autocomplete.ui-menu.ui-widget.ui-widget-content {
    background: #ffffff;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    max-height: 200px;
    overflow-y: auto;
    padding: 4px 0 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    z-index: 9999999 !important;
    position: absolute !important;
    margin-top: 2px;
}

/* === Z-INDEX SPÉCIFIQUE POUR ALERTIFY === */
.alertify-dialog .ui-autocomplete.ui-menu.ui-widget.ui-widget-content,
.ajs-dialog .ui-autocomplete.ui-menu.ui-widget.ui-widget-content {
    z-index: 999999 !important;
}

/* === Z-INDEX POUR MODALES COMMUNES === */
.modal .ui-autocomplete.ui-menu.ui-widget.ui-widget-content,
.ui-dialog .ui-autocomplete.ui-menu.ui-widget.ui-widget-content,
.overlay .ui-autocomplete.ui-menu.ui-widget.ui-widget-content {
    z-index: 999999 !important;
}

/* === ITEMS DE LA LISTE === */
.ui-autocomplete .ui-menu-item {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    list-style: none !important;
}

/* === LIENS DANS LES LI === */
.ui-autocomplete .ui-menu-item a.ui-corner-all {
    display: block !important;
    padding: 4px 7px !important;
    margin: 2px 4px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    color: #333 !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    background: transparent !important;  
	border-bottom: 1px dotted #cbcbcb ;
}

/* === HOVER ET FOCUS === */
.ui-autocomplete .ui-menu-item a.ui-corner-all:hover,
.ui-autocomplete .ui-menu-item a.ui-corner-all:focus,
.ui-autocomplete .ui-menu-item a.ui-corner-all.ui-state-active,
.ui-autocomplete .ui-menu-item a.ui-corner-all.ui-state-focus {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%) !important;
    color: white !important;
    box-shadow: 0 2px 6px rgba(66, 133, 244, 0.3) !important;
    transform: translateY(-1px) !important;
    outline: none !important;
}

/* === SCROLLBAR PERSONNALISÉE === */
.ui-autocomplete.ui-menu.ui-widget::-webkit-scrollbar {
    width: 6px;
}

.ui-autocomplete.ui-menu.ui-widget::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.ui-autocomplete.ui-menu.ui-widget::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.ui-autocomplete.ui-menu.ui-widget::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* === SUPPRESSION DES STYLES PAR DÉFAUT JQUERY UI === */
.ui-autocomplete.ui-widget-content {
    background-image: none !important;
    background-color: #ffffff !important;
}

.ui-autocomplete .ui-menu-item a {
    background-image: none !important;
}

/* === ÉTAT SÉLECTIONNÉ/ACTIF === */
.ui-autocomplete .ui-state-active,
.ui-autocomplete .ui-state-focus {
    background-image: none !important;
    border: none !important;
    font-weight: normal !important;
}

/* === ANIMATION D'APPARITION === */
.ui-autocomplete.ui-menu.ui-widget {
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.ui-autocomplete-input:focus {
    border-color: #4285f4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

/* === CHARGEMENT === */
.ui-autocomplete-loading {
    background: url('data:image/gif;base64,R0lGODlhEAAQAPIAAP///wAAAMLCwkJCQgAAAGJiYoKCgpKSkiH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAEAAQAAADMwi63P4wyklrE2MIOggZnAdOmGYJRbExwroUmcG2LmDEwnHQLVsYOd2mBzkYDAdKa+dIAAAh+QQJCgAAACwAAAAAEAAQAAADNAi63P5OjCEgG4QMu7DmikRxQlFUYDEZIGBMRVsaqHwctXXf7WEYB4Ag1xjihkMZsiUkKhIAIfkECQoAAAAsAAAAABAAEAAAAzYIujIjK8pByJDMlFYvBoVjHA70GU7xSUJhmKtwHPAKzLO9HMaoKwJZ7Rf8AYPDDzKpZBqfvwQAIfkECQoAAAAsAAAAABAAEAAAAzMIumIlK8oyhpHsnFZfhYumCYUhDAQxRIdhHBGqRoKw0R8DYlJd8z0fMDgsGo/IpHI5TAAAIfkECQoAAAAsAAAAABAAEAAAAzIIunInK0rnZBTwGPNMgQwmdsNgXGJUlIWEuR5oWUIpz8pAEAMe6TwfwyYsGo/IpFKSAAAh+QQJCgAAACwAAAAAEAAQAAADMwi6IMKQORfjdOe82p4wGccc4CEuQradylesojEMBgsUc2G7sDX3lQGBMLAJibufbSlKAAAh+QQJCgAAACwAAAAAEAAQAAADMgi63P7wjRLK7o2Cj0TkHZ6cKL5l18OEU1JAr5jOGUxROwlRGAWNKwZfqzaR9YrAgaQvfgQAIfkECQoAAAAsAAAAABAAEAABAC4lrb//EiGDHy6LJOv/K8qlvCleDgtWjKdl4bfmbtfybf1zef3z8+b1//vQRqYULQGQH4UBKGiMhKGRQrgoFoqHoqKigJlqSCCFLCCGhlBQRD0GopBCSJpCSJpGSJCCSJGDFjEGhjLtJ9SJkgDFWLOKgGODl3LEnUZLKBpTAD5HS0VEAq80o3MEGBJllUZfM4iRhhUFQYqR+iANHxJPKTqL0LKGPnJIQUZBQqYCBQUKUwcqTiZKAgqURWUrTdZYJAR') no-repeat right 8px center;
    background-size: 16px 16px;
}

/* === STYLE POUR LES RÉSULTATS AVEC EMAIL === */
.ui-autocomplete .email-suggestion {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ui-autocomplete .email-suggestion .name {
    font-weight: 600;
    font-size: 14px;
}

.ui-autocomplete .email-suggestion .email {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 400;
}

/* === AUCUN RÉSULTAT === */
.ui-autocomplete .no-results {
    padding: 15px;
    text-align: center;
    color: #666;
    font-style: italic;
    background: #f8f9fa;
    margin: 4px;
    border-radius: 6px;
}

/* === ANIMATIONS === */
.ui-autocomplete {
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .ui-autocomplete {
        max-height: 150px;
        font-size: 16px; /* Évite le zoom sur mobile */
    }
    
    .ui-autocomplete .ui-menu-item .ui-menu-item-wrapper {
        padding: 12px 15px;
    }
}
/* Dialogue modal principal */
/* Styles pour le bouton de loupe */
.image-magnifier-button {
  background-color: rgba(255, 255, 255, 0.85);
  border: none;
  color: #2196F3;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  margin-right: 5px;
}

.image-magnifier-button:hover {
  background-color: #2196F3;
  color: white;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
}

.image-magnifier-button svg {
  width: 16px;
  height: 16px;
}

/* Animation pour l'overlay d'image plein écran */
.full-image-overlay {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Animation pour l'image agrandie */
.full-image-overlay img {
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { 
    opacity: 0;
    transform: scale(0.9);
  }
  to { 
    opacity: 1;
    transform: scale(1);
  }
}

/* Style pour le bouton de fermeture */
.full-image-close {
  opacity: 0.8;
  transition: all 0.2s ease;
}

.full-image-close:hover {
  opacity: 1;
  transform: scale(1.1);
}


.custom-image-gallery-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 10005 ;
  width: 80%;
  max-width: 900px;
  max-height: 80vh;
  overflow: auto;
}

/* En-tête de la galerie avec titre et croix */
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.gallery-header h2 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

/* Croix de fermeture */
.gallery-close-x {
  background: transparent;
  border: none;
  font-size: 24px;
  font-weight: bold;
  color: #666;
  cursor: pointer;
  padding: 0 5px;
  line-height: 1;
  transition: color 0.2s ease;
}

.gallery-close-x:hover {
  color: #e53935;
}

/* Zone de recherche */
.gallery-search-container {
  margin-bottom: 15px;
}

.gallery-search-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-search-input:focus {
  border-color: #4CAF50;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
  outline: none;
}

/* Message de recherche sans résultats */
.no-results-message {
  text-align: center;
  padding: 20px;
  color: #666;
  font-style: italic;
  background-color: #f9f9f9;
  border-radius: 4px;
  margin-top: 10px;
}

/* Overlay de fond */
.gallery-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 9998;
}

/* Conteneur principal de la grille d'images */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  max-height: 50vh; /* Réduit pour laisser de la place à la recherche */
  overflow-y: auto;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 6px;
  margin-bottom: 15px;
  background-color: #f9f9f9;
}

/* Carte d'image individuelle */
.image-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #ddd;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 160px;
  cursor: pointer;
}

.image-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Conteneur pour l'image et sa légende */
.image-content {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* Image elle-même */
.image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-item:hover .image-content img {
  transform: scale(1.05);
}

/* Légende de l'image */
.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  color: white;
  padding: 8px;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Conteneur des contrôles (bouton supprimer) */
.image-controls {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 5px;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.image-item:hover .image-controls {
  opacity: 1;
}

/* Bouton de suppression */
.image-delete-button {
  background-color: rgba(255, 255, 255, 0.85);
  border: none;
  color: #e53935;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.image-delete-button:hover {
  background-color: #e53935;
  color: white;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
}

.image-delete-button svg {
  width: 16px;
  height: 16px;
}

/* Boutons de la galerie (importer, fermer) */
.gallery-button {
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  margin-right: 10px;
}

.gallery-button-primary {
  background-color: #4CAF50;
  color: white;
}

.gallery-button-primary:hover {
  background-color: #45a049;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.gallery-button-secondary {
  background-color: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}

.gallery-button-secondary:hover {
  background-color: #e0e0e0;
}

.mce-autocomplete-menu {
position: fixed;
z-index: 99999;
background-color: white;
border: 1px solid #ccc;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
padding: 0;
width: 300px;
min-height: 220px; 
}
.mce-autocomplete-search {
padding: 5px;
border-bottom: 1px solid #ccc;
position: sticky;
top: 0;
background: white;
z-index: 1;
}
.mce-autocomplete-search input {
width: 100%;
padding: 5px;
box-sizing: border-box;
border: 1px solid #ddd;
border-radius: 3px;
}
.mce-autocomplete-items {
max-height: 400px;
overflow-y: auto;
min-height: 200px;
}
.mce-autocomplete-item {
padding: 5px 10px;
cursor: pointer;
border-bottom: 1px solid #f0f0f0;
}
.mce-autocomplete-item:hover {
background-color: #f0f0f0;
}
.mce-autocomplete-item-focused {
background-color: #f0f0f0;
}
.mce-autocomplete-item strong {
display: block;
color: #333;
}
.mce-autocomplete-item small {
display: block;
color: #777;
font-size: 0.85em;
}
.mce-autocomplete-item small.description {
color: #666;
font-style: italic;
margin-top: 3px;
border-top: 1px dotted #eee;
padding-top: 3px;
}
.mce-autocomplete-items::-webkit-scrollbar {
width: 8px;
}
.mce-autocomplete-items::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 4px;
}
.mce-autocomplete-items::-webkit-scrollbar-thumb {
background: #888;
border-radius: 4px;
}
.mce-autocomplete-items::-webkit-scrollbar-thumb:hover {
background: #555;
}
.no-results-msg {
padding: 10px;
text-align: center;
color: #999;
font-style: italic;
}
	  
	  
	  
	  
.tox.tox-tinymce-aux {
  z-index: 4000;
}
/*#morris-chart-bar { height:350px; padding-bottom:25px;} */
/*svg { height:500px;} */
.class_legend{
	border: 1px solid silver;
	width: 100%;
	text-align: center;
	background:#e3e3e2;
}
.class_fieldset{
	background: #fff;
}

.all_question_existante_test .div_design_hover, .all_question_existante_identification .div_design_hover, #all_question_receuil .div_design_hover{
	border-bottom: 1px dotted  #575757;
	margin-left: 0px;
	margin-right: 0px;
	padding-bottom:10px;
	padding-top: 5px;
	margin-bottom:10px;
}
.all_question_existante_test .div_design_hover:hover, .all_question_existante_identification .div_design_hover:hover, #all_question_receuil .div_design_hover:hover{
	box-shadow :0 -1px 2px 2px;
}
.question_test{margin-top:10px;background-color:#f0f0f0 ;padding:5px;border-radius:4px;min-height: 50px;}


.add_reponse_::placeholder {
font-weight: bold;
text-decoration:underline;
}
.css--labelcheckbox{
	display:inline;
}
.que_force_distantD{
  background: #00a09b;
  color: #fff;
}
.que_force_distantP{
  background: #c7c7cc;
}

.table-container th {
  background: #1565C0;
  color: white;
  padding: 0.5em;
  border: 1px solid #1565C0;
}
.table-container {
  border-collapse: collapse;
}
.table-container {
  margin: 1em auto;
  width: 90%;
  max-width: 600px;
  border-collapse: collapse;
}

.bloc_check_forme input[type="radio"]:checked + label, 
.bloc_check_forme input[type="checkbox"]:checked + label {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: white;
}
.bloc_check_forme label:hover, .bloc_check_forme label:hover {
  cursor: pointer;
  color: #0d6efd;
  border-color: #0d6efd;
}
.bloc_check_forme label {
  margin: 0 3px 3px 0;
  display: inline-block;
  background-color: #fff;
  padding: 3px 14px;
  font-family: sans-serif, Arial;
  font-size: 16px;
  border: 1px solid #21759b;
  font-weight: bold;
  color: #21759b;
} 
.bloc_check_forme input[type="radio"], .bloc_check_forme input[type="checkbox"] {
  opacity: 0;
  position: fixed;
  width: 0;
}


.progressbar_perso-wrapper {
  background-color: #dfe6e9 !important;
  color: white  !important;
  border-radius: 15px;
  width: 100%;
}

.progressbar_perso {
  color: white  !important;
  background-color:#2B77C7 !important;
  padding: 3px;
  text-align: right;
  border-radius: 15px;
}

.bloc_eval_synthese {
	border-radius: 8px;
	margin: 0px;
	margin-top: 5px;
	padding:3px;
	background-color:#EAF0F6 !important;
	border: 1px solid #f3f3f2 !important;
}


.circle-svg {
  display: block;
  margin: 10px auto;
  max-height: 100px;
}
.circle-svg text {
  text-align:center;
  color:black;
  font-size:10px
}
.circle-svg path.percent {
  stroke: #6f6fff  !important;
  fill: none;
  stroke-width: 3.8;
  stroke-linecap: round;
  animation: progress 1s ease-out forwards;
}

.circle-svg path.percent_sans_delai {
  stroke: #6f6fff  !important;
  fill: none;
  stroke-width: 3.8;
  stroke-linecap: round;
}


.circle-svg path.around {
    stroke: #c4c4c4  !important;
    fill: none;
    stroke-width: 3.8;
}
@keyframes progress {
  0% {
    stroke-dasharray: 0 100; 
  }
}
.box {
display: flex;
}
.box span {
flex: 1 1 auto;
}
.btn-check:active + .btn-outline-primary, .btn-check:checked + .btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
  color: #fff;
  background-color: #688a7e;
  border-color: #688a7e;
}
.btn-group > .btn-group:not(:first-child), .btn-group > .btn:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group-vertical > .btn, .btn-group > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-outline-primary {
  color: #688a7e;
  border-color: #688a7e;
}

.btn-check {
  position: absolute;
  clip: rect(0,0,0,0);
  pointer-events: none;
}

.dropdown, .dropup {
    position: relative;
}
.new-toggle {
	padding-left: 10px !important;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.new-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700,900');
.rotate {
 -webkit-transform: rotate(312deg);
 -moz-transform: rotate(312deg);
 -o-transform: rotate(312deg);
padding: 15px;
}
.dragDiv{
width:100%
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Roboto', sans-serif !important;
}
.round_name_util{
	color:#fff;
	border-radius: 14px;
	width: 25px;
	height: 25px;
	padding: 4px;
	font-weight: bold;
	font-size:13px
}

.avec_ul_li_tinymce ul li{
	list-style: unset !important;
}
.select_user {
	cursor:pointer;
	border-radius: 14px;
}

.select_user:hover {
	border:1px solid grey;
}

.btn {
  border-radius: 3px !important;
  
}

.btn-success:hover, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success{
	background-color:#00a6a0;
	border-color:#00a6a0
}
.btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn:not(:last-child):not(.dropdown-toggle){
  border-top-right-radius: 0!important;
  border-bottom-right-radius: 0!important;
}
.table_agenda thead tr:last-child select {
 
  width: 100% !important
}

.top-nav.notification-row {
  margin-left: auto;
}

table .dropdown-toggle {
  padding: 0 !important;
}

.toggle-nav .fa-bars {
  color: white;
}

.selectboxit,
.form-control {
  border-radius: 3px !important;
}

.navbar-form .form-control {
  padding-left: 25px;
  color: #555;
  margin: 0
}
.css-labelradio{
 transition: all 1s ;
}


#sidebar ul li a {
  font-size: 14px;
  color: #555;
  border-color: #eee;
}

li.gs-w {
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 4px;
  box-sizing: inherit;
}

.table_agenda td,
.table_agenda tr {
  vertical-align: middle !important;
}



ul.gs-resize-disabled {
  float: none !important;
  width: 100% !important;
}

.btn_new_etablissement {
  padding: 5px 10px;
  border-radius: 4px !important;
}

.table_agenda thead th i {
  float: right;
  position: relative;
 /* top: 2px;*/
  right: 1px;
}

.panel .panel-heading ul li {
  border: none;
}


.label {
  padding: 5px !important
}

.table_agenda tfoot th {
border-top: 1px solid #ccc;
color:#fff;
text-align:left;
}

.table_agenda tfoot th:first-child,.table_agenda tfoot td:first-child {
padding-left:10px;
}

.table_agenda tfoot .fa-cog {
  color: #fff!important;
}



.btn_ajout_piece_fourn {
  width: auto !important
}


.panel-heading.tab-bg-primary button {
  padding: 0 10px !important;
}

.mce-tinymce {
  margin-bottom: 15px
}


#table_salle th label {
  margin-left: 10px
}

#btn_new_qcm {
  margin-bottom: 15px
}

.section_page_eval .panel {
  padding: 0 15px;
}

.elem_prise_contact input,
.elem_prise_contact textarea {
  margin-bottom: 15px
}



.bandeau_change_attente i,
.cache_affiche_div_bandeau i {
  padding: 0 !important;
  width: auto !important;
  display: flex !important;
}

.cache_affiche_div_bandeau i:before {
  margin: auto !important;
}

.modal-body .panel-heading {
  border-top: 1px solid #eee;
}

.modal-body .panel-heading i {
  padding: 0 7px;
}

.modal-body .panel-heading i:before {
  margin: auto;
}

.row>.panel {
  margin: 0 15px
}
#connected .btn-info {
    background-color: #5bc0de;
    border-color: #46b8da;
    color: #fff;
}

#connected .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
    color: #fff;
    background-color: #39b3d7;
    border-color: #269abc;
}
#table_factures_possession {
  max-width: 94px
}

#table_factures_site_id {
  max-width: 50px
}

th[rel~="nbr_pj"] {
  width: 53px
}

#tab_depense input {
  margin-bottom: 15px
}

#mail_client button {
  margin-bottom: 15px
}

.cal_calendar_accueil_formations select,
.cal_calendar_accueil_formations input {
  margin-bottom: 5px;
  height: 24px
}

.alertify {
  border: none !important;
}





#form_ligne_regle {
  margin-top: 15px;
}

.panel-heading.tab-bg-primary i {
  display: flex;
}

.panel-heading.tab-bg-primary i:before {
  margin: auto;
  padding: 0 10px;
}

.btn_group_client_ins button {
  height: 30px !important;
  padding: 5px !important;
}

#panel_help_periode1 .panel-heading.tab-bg-primary,
#panel_help_periode2 .panel-heading.tab-bg-primary {
  padding-left: 20px !important;
}

#conv_a_resume.tab-pane #panel_help_periode2 {
  margin-bottom: 0;
}

#resume_liste_client {
  display: flex;
}

#resume_liste_client .row {

  min-width: 960px;
}

#resume_liste_client .row>div {
  border: 1px solid #eee !important;
}

#resume_liste_client .row>div>div:first-child {
  border: none !important;
  padding: 10px 0;
}

.panel-heading.cache_affiche_div_bandeau,
.panel-heading.previsionnel_formation,
.panel-heading.ajout_contact_sala_creation {
  color: #fff !important;
}

.panel-heading.cache_affiche_div_bandeau i,
.panel-heading.previsionnel_formation i {
  display: inline !important
}

.panel-heading.ajout_contact_sala_creation {
  padding-left: 20px !important
}



.ouvre_presence_sta_et_form,
.presence_dynamique,
.dispo_detaille_intervenant,
.coche_multi_module {
  margin-right: 10px
}

#conv_a_sta_ins .row:first-child,
#conv_a_financement .row:first-child {
  margin-bottom: 15px;
}

#conv_a_sta_ins .row:first-child span,
#conv_a_financement .row:first-child span {
  display: inline-block;
  margin-right: 10px;
}



#conv_a_doc .col-md-4 .panel-heading.tab-bg-primary,
#conv_a_doc .col-md-8 .panel-heading.tab-bg-primary {
  padding-left: 20px !important
}

#conv_a_doc .col-md-8 .panel-heading.tab-bg-primary.clic_bandeau_prog_spe {
  padding-left: 0 !important
}

#conv_a_doc .col-md-8 .panel-heading.tab-bg-primary.clic_bandeau_prog_spe i,
.ouvre_dialogue_gere_document_suivi {
  width: auto !important;
}

#panel_help_periode .panel-heading.tab-bg-primary a {
  color: #fff;
  text-decoration: underline;
}



#table_souhait_convention {
  width: 100% !important
}


#sidebar ul li a {
  text-decoration-color: transparent !important
}

.nav-second-level li.active {
  text-decoration: none !important
}



.panel-success .panel-heading.cache_affiche_div_bandeau i,
.panel-heading.previsionnel_formation i {
  display: inline-block !important;
  padding-right: 5px !important;
  width: auto !important;
}

#liste_des_regles .panel {
  /* width: 100% !important
margin: 0 auto;
display: block;
float: none !important; */
}

#liste_des_regles .panel input,
#liste_des_regles .panel select {
  margin-bottom: 7px
}

#liste_des_regles .panel-heading {
  display: flex;
  justify-content: space-between
}

#liste_des_regles .panel-heading input {
  margin: 5px 0px !important;
}




.table_agenda thead tr:last-child td {
  padding: 0 ;
  height: 20px;
}

.table_agenda thead tr:last-child td input[type="text"],
.table_agenda thead tr:last-child td select {
  height: 20px;
  border-radius: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}



button.multiselect {
  padding: 5px 7px !important
}



.SumoSelect p {
  background: none;
}

.element_gestion_formation .breadcrumb {
  margin-top: 15px;
}

#table_intervenants_non_ins input#choix_ins_formateur_first_day {
  margin: 0 0 0 5px !important;
}

#tab_content_tab_formation #conv_a_intervenant {
  padding-bottom: 0;
}


#tab_content_tab_formation #conv_a_sta_ins {
  padding: 0
}

#tab_content_tab_formation #conv_a_sta_ins .row:first-child {
  margin-bottom: 4px;
}

.element_gestion_formation .breadcrumb {
  margin-bottom: 10px
}

.table_agenda input,
.table_agenda select,
.table_agenda button {
  margin-bottom: 0px !important
}

.table_agenda tfoot tr {
  height: 20px;
  color: #fff;
}

.table_agenda tfoot tr {
  height: 30px !important
}



.bandeau_rdv_formation i {
display: block;
display: inline-block !important;
padding-right: 10px !important;
}

#form_client .cache_affiche_div_bandeau {
padding-left: 15px !important;
}

#btn_creer_client_ou_particulier, #choix_creation_client .btn_new_clients {
padding: 1px 5px !important;
}

.top-nav .dropdown-menu.extended.logout {
    top: 29px;
}

.panel-heading.tab-bg-primary:not(.tab_small) ul li a {
  padding: 10px !important;
  margin: 0 !important
}

.tab_small{
height:32px !important;

}
.tab_small ul li a {
  padding: 7px !important;
  margin: 0 !important
}
#liste_des_rappel .panel {
margin: 0;
margin-top: 15px;
}

#liste_des_rappel .panel-heading {
display: flex;
justify-content: space-between;
padding: 0;
}


#liste_des_rappel .panel-heading input {
width: 100% !important;
margin: 5px auto;
}

#form_intervenant .panel-heading i {
padding-left: 7px !important;
}

ul.sidebar-menu li a:hover i, ul.sidebar-menu li a:focus i {
    color: #444 !important;
}
.gutter{
cursor:w-resize;
}
#form_stagiaire .panel-heading.cache_affiche_div_bandeau i {
padding-left: 7px !important;
}

.tab-content #form_stagiaire .panel-heading.cache_affiche_div_bandeau i {
padding-left: 0px !important;
}

.panel .main-text {
  font-size: 16px !important;
  padding: 10px 0px !important;
}

#table_contacts.table_agenda,
#table_docs_complet.table_agenda {
  margin-top: 15px
}

#btn_new_campagne,
.choix_signe_ou_pas {
  margin-bottom: 15px
}

.calendar_accueil_formations {
  height: auto !important
}

.panel.panel-success {
  border-color: #eee
}




#sauvegardenote {
  margin: 0 !important;
  left: unset !important;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  padding: 5px 10px !important;
  border-radius: 5px !important
}

li.gs-w h4 {
  margin-top: 0;
  background: transparent !important;
  color: #555 !important;
  font-weight: 600;
  font-size: 25px
}


ul.sidebar-menu li ul.sub li {
  background: #eee;
}

ul.sidebar-menu li ul.sub li a {
  padding-left: 25px !important
}

.page-header {
  padding-top: 10px !important;
  background-color: #fff !important;
}

.page-header .fa {
  font-size: 20px;
  float: none;
  opacity: 1;
  color: #2980b9
}
.page-header button .fa {
  color: #fff
}
.page-header .btn-default .fa{
 color: #3A4F88
}

.btn_maj_tableau .btn {
  border-radius: 3px !important;
}

.fc-toolbar button {
  background: #fff;
  height: auto;
  padding: 5px 10px
}

.fc-header-toolbar h2 {
  font-weight: 600;
}



#task_notificatoin_bar {
  margin: auto 10px
}

#sidebar {
  background: #fff;
  box-shadow: 6px 0px 5px -3px rgba(0, 0, 0, 0.16);
}

.table_agenda tbody tr{
height:40px !important;
}

#alert_ordre {
  z-index: 9999 !important;
  padding: 10px !important;
  width: auto !important;
}

#form_intervenant label, #form_stagiaire label, #form_client label{
	font-weight: bold !important;
}
.input_after_div_select{
	 width:79% !important; 
	 display:inline; 

}

.tour_select_hors_fleche{
	width:18px;
	overflow:hidden;
	float: left;
}
.tour_select_hors_fleche select{
	padding-right:0px;
	width:35px;
	display:inline;
	height: 23px;
}

.ellipsis{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
}
/*checkbox*/
input[type=checkbox].css-checkbox {
	position:absolute; z-index:-1000; left:-1000px; overflow: hidden; clip: rect(0 0 0 0); height:1px; width:1px; margin:-1px; padding:0; border:0;
}

input[type=checkbox].css-checkbox + label.css-labelcheckbox{
	padding-left:25px;
	height:20px; 
	display:inline-block;
	line-height:20px;
	background-repeat:no-repeat;
	background-position: 0 0;
	vertical-align:middle;
	cursor:pointer;

}

input[type=checkbox].css-checkbox:checked + label.css-labelcheckbox {
	background-position: 0 -20px;
}
label.css-labelcheckbox {
background-image:url(http://www.logiciel-galaxy.fr/img/csscheckbox_a967b1e8ddfb00be4a2edf9abd4371c3.png);
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/*radio*/
input[type=radio].css-radio {
	position:absolute; z-index:-1000; left:-1000px; overflow: hidden; clip: rect(0 0 0 0); height:1px; width:1px; margin:-1px; padding:0; border:0;
}

input[type=radio].css-radio + label.css-labelradio {
	padding-left:27px;
	height:22px; 
	display:inline-block;
	line-height:22px;
	background-repeat:no-repeat;
	background-position: 0 0;
	vertical-align:middle;
	cursor:pointer;

}

input[type=radio].css-radio:checked + label.css-labelradio {
	background-position: 0 -22px;
}
label.css-labelradio {
background-image:url(http://www.logiciel-galaxy.fr/img/csscheckbox_f5411793b25bc78f5bab2a50b7c9403c.png);
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}



#catalogue_galaxy .ui-state-highlight { height: 1.5em; line-height: 1.2em; }
#boite_menu_droit button.accordion_class {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 3px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
#boite_menu_droit button.accordion_class.active, button.accordion_class:hover {
    background-color: #ddd;
}

/* Style the accordion panel. Note: hidden by default */
#boite_menu_droit div.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
}

/* The "show" class is added to the accordion panel when the user clicks on one of the buttons. This will show the panel content */
#boite_menu_droit div.panel.show {
    display: block;
}


#rapport_appel {
    background-color: #ffffff;
    border: 4px solid #9b9b9b;
    border-radius: 5px;
    box-shadow: 6px 6px 2px 0 #656565;
    position: absolute;
    width: 284px;
    z-index: 10;
}
.ui-datepicker{
	z-index : 20019 !important;
}

#liste_dossier_gestionnaire  li{
	cursor:pointer;
}
#liste_dossier_gestionnaire .sous_doc{
	padding-left:13px;
}
.fc-day-header, .fc-week-number, .fc-axis, .fc-resource-cell,.fc-widget-header{
	background-color : #c90000;
	color:#ffffff;
}
.fa-info-circle {

	color:#428bca;
}
.ui-autocomplete {
    max-height: 250px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
}

  #sortable1, #sortable2 {
    border: 1px solid #eee;
    width: 142px;
    min-height: 20px;
    list-style-type: none;
    margin: 0;
    padding: 5px 0 0 0;
    float: left;
    margin-right: 10px;
	background :#dddddd none repeat scroll 0 0;
  }
  #sortable1 li, #sortable2 li {
    margin: 0 5px 5px 5px;
    padding: 5px;
    font-size: 1.2em;
    width: 120px;
  }
  
  /* IE 6 doesn't support max-height
   * we use height instead, but this forces the menu to always be this tall
   */
* html .ui-autocomplete {
    height: 250px;
}
.ui-progressbar {
	position: relative;
}
.progress-label {
	position: absolute;
	top: 4px;
	font-weight: bold;
	text-shadow: 1px 1px 0 #fff;
	width:100%;
	text-align:center;
}
#boite_select_img tr:hover {
    text-decoration: underline;
}
#boite_select_img .active:hover {
    background-color: #e0e0e0;
    font-weight: bold;
}
#boite_select_img {
    background-color: #ffffff;
    border: 4px solid #9b9b9b;
    border-radius: 5px;
    box-shadow: 6px 6px 2px 0 #656565;
    position: absolute;
    width: 284px;
    z-index: 10;
}
#boite_select_img .active {
    cursor: pointer;
}

.bg-color-green {
    background-color: #00ce6f;
    color: #fff;
}
.bg-color-blue {
    background-color: #a95df0;
    color: #fff;
}
.bg-color-red {
    background-color: #db0630;
    color: #fff;
}
.bg-color-brown {
    background-color: #b94a00;
    color: #fff;
}
.bg-color-info {
    background-color: #39abcd;
    color: #fff;
}
.noti-box .icon-box {
    display: block;
    float: left;
    font-size: 40px;
    height: 80px;
    line-height: 75px;
    margin: 0 15px 0px 0;
    text-align: center;
    vertical-align: middle;
    width: 70px;
}
.accueil .noti-box .icon-box {
    display: block;
    float: left;
    font-size: 25px;
    height: 30px;
    line-height: 30px;
    margin: 0 15px 10px 0;
    text-align: center;
    vertical-align: middle;
    width: 30px;
}

.show-grid [class^="col-"] {
    background-color: rgba(86, 61, 124, 0.15);
    border: 1px solid rgba(86, 61, 124, 0.2);
    padding-bottom: 10px;
    padding-top: 10px;
}

.taggle_list .taggle .close:hover {
    color: #903;
}

.div_boit_mail_texte,  .div_famille_texte {
	box-shadow : 0 1px 2px rgba(0, 0, 0, 0.2) inset, 0 1px 1px rgba(255, 255, 255, 0.7) ;
	background : #fdfdfd none repeat scroll 0 0;
	padding:2px;
	width:90%;
	float:left;
	cursor:text;
	height:auto;
}

.taggle_list .taggle:hover {
    background: #ccc none repeat scroll 0 0;
    padding: 0px 15px 0px 5px;
    transition: all 0.3s ease 0s;
}
.taggle_list .taggle .close {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 0 none;
    color: black;
    cursor: pointer;
    display: none;
    font-size: 2.1rem;
    line-height: 75%;
    padding-bottom: 4px;
    padding-left: 2px;
    position: absolute;
    right: 3px;
    text-decoration: none;
    top: 5px;
}
.taggle_list .taggle:hover > .close {
    display: block;
}
.taggle_list li {
    display: inline-block;
    float: left;
    font-weight: 500;
    margin-bottom: 5px;
    white-space: nowrap;
}
.taggle_list .taggle {
    animation-duration: 1s;
    animation-fill-mode: both;
    background: #e2e1df none repeat scroll 0 0;
    border-radius: 3px;
    cursor: pointer;
    margin-right: 8px;
    padding: 1px 10px;
    position: relative;
    transition: all 0.3s ease 0s;
	margin-top : 0px;
}

.a_sourligner {
	cursor:pointer;
}
.table-sous-liste th {
    background-color: #c90000 !important;
    border: 1px solid #c1c1c1;
    color: #fff;
    padding-left: 4px;
	background-image:none;
}

.a_sourligner:hover {
	text-decoration : underline;
}
tr.myDragClass td {
	text-decoration:bold;
	text-decoration:underline;
    border-color:2px solid #999;
}

.showDragHandle_left {
	background-image: url(/img/updown2.gif);
	background-repeat: no-repeat;
	background-position: center left;
	cursor: move;
	z-index:9999999;
}
.showSupr {
	background-image: url(/img/supprimer.png);
	background-repeat: no-repeat;
	background-position: center left;
	background-size: 20px;
	cursor: pointer;
	padding-left: 25px;
}
.showDragHandle_no_cursor {
	background-image: url(/img/updown2.gif);
	background-repeat: no-repeat;
	background-position: center right;
}
.showDragHandle {
	background-image: url(/img/updown2.gif);
	background-repeat: no-repeat;
	background-position: center right;
	cursor: move;
}
.ui-autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 999999 !important;
  float: left;
  display: none;
  min-width: 160px;
  _width: 160px;
  /*padding: 4px 0;*/
  margin: 2px 0 0 0;
  list-style: none;
  background-color: #ffffff;
  border-color: #ccc;
  border-color: rgba(0, 0, 0, 0.2);
  border-style: solid;
  border-width: 1px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  *border-right-width: 2px;
  *border-bottom-width: 2px;

}
.ui-autocomplete .ui-autocomplete-category{
	background:#394a59  ;
	color:#ffffff;
	padding:5px;
	text-align:center;
}
.ui-autocomplete .ui-state-focus{
	background:#eee;
	text-decoration:underline;
	color:#1a2732 ;
	border:none;

}

.ui-autocomplete > li:not(:first-child){
	border-top:1px solid grey;

}
body {
    color: #575757;
	font-size: 12px !important;
	background-color: #f7f7f7!important;
    font-family: arial !important;
}
h1,h2,h3,h4,h5{
    font-weight: 300;
}
label{
    font-weight: 300;   
}
ul li {
    list-style: none;
}

a, a:hover, a:focus {
    text-decoration: none;
    outline: none;
    outline: 0;
}
input:focus, textarea:focus { outline: none; }

*:focus {outline: none;}
::selection {
    background: #688a7e;
    color: #fff;
}
::-moz-selection {
    background: #688a7e;
    color: #fff;
}

#container {
    width: 100%;
    height: 100%;
}

.Creative-pro, .Creative-pro h3{
    display: block;
    position: fixed;
    bottom:0;
    z-index: 100000;
    width: 100%;
    overflow: hidden;
    height: 50px;
    margin:0px;
}
.Creative-pro h3{
    padding-bottom: 10px;
    padding-top: 10px;
}
.lite{
    color: #00a0df !important;
}

/*login page*/

.login-body {
    background-color: #f1f2f7;
}

.ui-autocomplete-loading:not(.recherche_ville_width_cp) {
background: white url("../img/petit_loader.gif") right center no-repeat;
}
  
  
.login-img-body{
  background: url('../img/bg-1.jpg') no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.login-img2-body{
  background: url('../img/bg-1.jpg') no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.login-img3-body{
  background: url('../img/fond-site.gif') no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.login-form {
    max-width: 350px;
    margin: 200px auto 0;
    background: #d5d7de;    
}
.login-img-body .login-form{
    max-width: 350px;
    margin: 200px auto 0;
    background: rgba(213,215,222,0.4);
    border: 1px solid #B0B6BE;
}
.login-img2-body .login-form{
    border: 1px solid #B0B6BE;
    background: rgba(213,215,222,0.7);
}
.login-img3-body .login-form{
    border: 1px solid #B0B6BE;
    background: rgba(213,215,222,0.9);
}
.login-form a{
    color: #688a7e !important;
}
.login-form h2.login-form-heading {
    margin: 0;
    padding:20px 15px;
    text-align: center;
    background: #34aadc;
    border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 300;
    font-family: 'Lato', sans-serif;
}

.login-form .checkbox {
    margin-bottom: 14px;
}
.login-form .checkbox {
    font-weight: normal;    
    font-weight: 300;
    font-family: 'Lato', sans-serif;
}
.login-form .form-control {
    position: relative;
    font-size: 16px;
    height: auto;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.login-form .form-control:focus {
    z-index: 2;
}
.login-form .login-img{
    font-size: 50px;
    font-weight: 300;    
}
.login-form .input-group{
    padding-bottom: 15px;
}
.login-form .input-group-addon{
    padding: 6px 12px;
    font-size: 16px;
    color: #8b9199;
    font-weight: normal;
    line-height: 1;
    text-align: center;
    background-color: #ffffff;
    border: none;
    border-radius: 0;
}
.login-form input[type="text"], .login-form input[type="password"] {    
    border: none;
    box-shadow: none;
    font-size: 16px;
    border-radius: 0; 
}
.login-form .btn{
    border-radius: 0;
}
.login-form .btn-login {
    background: #f67a6e;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 4px #e56b60;
    margin-bottom: 20px;
}

.login-form p {
    text-align: center;
    color: #b6b6b6;
    font-size: 16px;
    font-weight: 300;
}
.login-img3-body .login-form p,.login-img2-body .login-form p {
    color: #34aadc;
}
.login-form a {
    color: #b6b6b6;
}

.login-form a:hover {
    color: #34aadc;
}
.form .required{
    font-size: 16px;
    color: #00a0df;
}

.login-wrap {
    padding: 20px;
}

.login-social-link  {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 15px;
}

.login-social-link a {
    color: #fff;
    padding: 15px 28px;
    border-radius: 4px;
}

.login-social-link a:hover {
    color: #fff;
}

.login-social-link a i {
    font-size: 20px;
    padding-right: 10px;
}

.login-social-link a.facebook {
    background: #5193ea;
    margin-right: 22px;
    box-shadow: 0 4px #2775e2;
	float:left;
}

.login-social-link a.twitter {
    background: #44ccfe;
    box-shadow: 0 4px #2bb4e8;
	float:left;
}
/*Modal Content*/
.modal-content{
    border-radius:0px;
    background:rgba(255,255,255,0.9);
}
.modal-header .close{
    font-weight: 300;
    font-size: 30px;
}

/*sidebar navigation*/

#sidebar {
    width: 180px;
    height: 100%;
    position: fixed;
	overflow-x:hidden;
}

.nav-collapse.collapse {
    display: inline;
}

ul.sidebar-menu , ul.sidebar-menu li ul.sub{
    margin: -2px -1px 0;
    padding: 0;
}

ul.sidebar-menu {
    margin-top: 60px;
	margin-bottom: 25px;
}

#sidebar > ul > li > ul.sub {
    display: none;
}

#sidebar > ul > li.active > ul.sub, #sidebar > ul > li > ul.sub > li > a {
    display: block;
}

ul.sidebar-menu li ul.sub li{
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}

ul.sidebar-menu li ul.sub li:last-child{
    border-radius: 0 0 4px 4px;
    -webkit-border-radius: 0 0 4px 4px;
}

ul.sidebar-menu li ul.sub li a {
    padding: 0 0 0 20px;
    line-height: 35px;
    height: 35px;
    transition: all 0.3s ease;
}

/*#main-content {*/
body {
    background: #f0f0f0 !important;
	 /*background:url('../img/fond-site.gif') repeat center center fixed !important;*/
}
ul.sidebar-menu li{
    line-height: 20px !important;
}

.table_agenda thead .not_color {
 /* background: #3498db;*/
  background: #fff ;
}


ul.sidebar-menu li a span{
    display: inline-block;
}

ul.sidebar-menu li a{
    text-decoration: none;
    display: block;
    padding: 8px 0;
    font-weight: 300;
    outline: none;
    transition: all 0.3s ease;
    border-right: 1px solid #D7D7D7;
    border-bottom: 1px solid #D7D7D7;
	
}


ul.sidebar-menu li a:hover, ul.sidebar-menu li a:focus {
    border-bottom: 1px solid #d0d8df;
}
/*ul.sidebar-menu li.active a,*/ ul.sidebar-menu .sub-menu li.active a{
    border-bottom: 1px solid #d0d8df;   
}

ul.sidebar-menu li a i {
    font-size: 18px;
    padding-right: 6px;
    /*color: #688a7e;*/
}

ul.sidebar-menu li a:hover i, ul.sidebar-menu li a:focus i {
    color: #fff;
}

ul.sidebar-menu li.active a i {
    color: #fff;
}


#sidebar ul > li > a .arrow {
    border-bottom: 4px solid transparent;
    border-left: 4px solid #A0A0A0;
    border-top: 4px solid transparent;
    float: right;
    height: 0;
    margin-right: 10px;
    margin-top: 6px;
    width: 0;
}
#sidebar ul > li > a .menu-arrow { 
    float: right;    
    margin-right: 8px;
    margin-top: 6px;    
}
#sidebar > ul > li > a .arrow.open {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #A0A0A0;
    float: right;
    height: 0;
    margin-right: 10px;
    margin-top: 8px;
    width: 0;
}

#sidebar ul > li.active > a .arrow, #sidebar ul > li > a:hover .arrow, #sidebar ul > li > a:focus .arrow {
    float: right;
    margin-top: 6px;
    margin-right: 10px;
    width: 0;
    height: 0;
    border-left: 4px solid #d0d8df;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

#sidebar > ul > li.active > a .arrow.open, #sidebar > ul > li > a:hover .arrow.open, #sidebar > ul > li > a:focus .arrow.open {
    float: right;
    margin-top: 8px;
    margin-right: 10px;
    width: 0;
    height: 0;
    border-top: 5px solid #d0d8df;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.mail-info, .mail-info:hover {
    margin: 3px 6px 0 0;
    font-size: 11px;
}
/*profile status bubbly*/
.online-profile li a i {
    position: relative;
    left: -12px;
    top: -10px;
}
.online-profile li a span i {
    position: relative;    
    top: 10px;
}
/*chat-*/

.chat-online-profile li a i {
    position: relative;
    left: -12px;
    top: -10px;
}
.chat-online-profile li a span i {
    position: relative;    
    top: 10px;
}
.chat-online-profile li a{
    border-bottom: 1px solid #D7D7D7;
}
.chat-online-profile li a:hover, .chat-online-profile li a:focus, .chat-online-profile li a:active{
    background: #eeeeee !important;
    border-bottom: 1px solid #688a7e !important;
}
.chat-online-profile li a:hover span i,.chat-online-profile li a:focus span i,.chat-online-profile li a:active span i{
    color: #688a7e;
}
.right-chat-panel{
    max-height: 600px;
}
.compose-mail{
    width: 95%;
    font-size: 16px;
    border-radius: 0;
}
/*main content*/

#main-content {
    margin-left: 180px;
}

.header, .footer {
    min-height: 60px;
    max-height: 60px;
    padding: 0 15px;
}
.box1 {
    font-size: 16px;
    display: inline-block;
    width: 25%;
    padding: .25em .5em;
    margin: 20px 10px 0 0;
}
.header {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1002;
}

.white-bg {    
    background: rgba(255,255,255,0.9);
    border-bottom: 1px solid #f1f2f7;
}

.panel-content{
    padding: 10px;
}
.wrapper {    
     padding: 10px 0px 10px;
     padding-left: 15px;
    display: inline-block;
    margin-top: 60px;
    width: 99%;
	overflow: hide;
	min-height: 600px;
}


.logo {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    float: left;
    margin-top: 15px;
    text-transform: capitalize;
}

.logo:hover, logo:focus {
    text-decoration: none;
    outline: none;
}

.logo span {
    color: #fff;
}


/*notification*/

#top_menu .nav > li, ul.top-menu > li {
    float: left;
}
.search-row {
    float: left;
    margin-top: 15px;
    margin-left: 16px;
}
.notification-row {
    float: right;
	margin-top: 15px;
}
#task_notificatoin_bar, #mail_notificatoin_bar, #alert_notificatoin_bar{
    margin-top: 7px;
}
.table_agenda tbody tr:nth-child(even) {background: #e4e6e6}
.table_agenda tbody tr:nth-child(odd) {background: #FFF}

ul.top-menu > li > a {
    color: #fff;
    font-size: 18px;    
    padding: 2px 6px;
    margin-right: 15px;
}

ul.top-menu > li > a:hover, ul.top-menu > li > a:focus {    
    background: transparent !important;
    color: #D7D7D7 !important;
}
.fc-body{
	background: #fff;
}
.notification-row .badge {
    position: absolute;
    right: -8px;
    top: -7px;
    z-index: 100;
    border-radius: 9px;
    min-width: 18px;
    height: 18px;
    text-align: center;
    padding: 3px 5px;
    background: #00a0df;
    font-weight: 400;
	margin-top: 3px;
}
.badge {    
    border-radius: 9px;
    min-width: 18px;
    height: 18px;
    text-align: center;
    padding: 3px 5px;
    background: #00a0df;
}

.dropdown-menu.extended {
    max-width: 300px !important;
    min-width: 160px !important;
    top: 42px;
    width: 235px !important;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.176) !important;
  
    border-radius: 4px;
    -webkit-border-radius: 4px;
    border: 1px solid #ccc  !important;
}
.navbar-form{
    padding: 0px;
    margin: 0 0 0 10px;    
}

.navbar-form .form-control{
    width: 200px;
    height: 30px;
    background: white url('../img/icons/search-line-icon.png') no-repeat 3px;
    padding-left: 24px;
    margin-top: 1px;    
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    /* Safari and Chrome */
    .dropdown-menu.extended  {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.176) !important;
    };
}
/* bootstrape editor*/
 #editor {
    max-height: 250px;
    height: 250px;
    background-color: white;
    border-collapse: separate; 
    border: 1px solid rgb(204, 204, 204); 
    padding: 4px; 
    box-sizing: content-box; 
    -webkit-box-shadow: rgba(0, 0, 0, 0.0745098) 0px 1px 1px 0px inset; 
    box-shadow: rgba(0, 0, 0, 0.0745098) 0px 1px 1px 0px inset;
    border-top-right-radius: 3px; border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px; border-top-left-radius: 3px;
    overflow: scroll;
    outline: none;
}
#voiceBtn {
  width: 20px;
  color: transparent;
  background-color: transparent;
  transform: scale(2.0, 2.0);
  -webkit-transform: scale(2.0, 2.0);
  -moz-transform: scale(2.0, 2.0);
  border: transparent;
  cursor: pointer;
  box-shadow: none;
  -webkit-box-shadow: none;
}

div[data-role="editor-toolbar"] {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.dropdown-menu.extended li p {
    background-color: #F1F2F7;
    color: #666666;
    margin: 0;
    padding: 10px;    
}

.dropdown-menu.extended li p.green {
    background-color: #4cd964;
    color: #fff;
}

.dropdown-menu.extended li p.red {
    background-color: #00a0df;
    color: #fff;
}
.dropdown-menu.extended li p.blue {
    color: #fff;
}

.dropdown-menu.extended li p.yellow {
    background-color: #fcb322;
    color: #fff;
}

.dropdown-menu.extended li a {
    border-bottom: 1px solid #EBEBEB !important;
    font-size: 12px;
    list-style: none;
}

.dropdown-menu.extended li a {
    padding: 15px 10px !important;
    width: 100%;
    display: inline-block;
}

.dropdown-menu.extended li:not(:last-child) a:hover {
    background-color: #F7F8F9 !important;
    color: #2E2E2E;
    border-bottom: 1px solid #688a7e !important;
}

.dropdown-menu.tasks-bar .task-info .desc {
    font-size: 13px;
    font-weight: normal;
}

.dropdown-menu.tasks-bar .task-info .percent {
    display: inline-block;
    float: right;
    font-size: 13px;
    font-weight: 600;
    padding-left: 10px;
    margin-top: -4px;
}

.dropdown-menu.extended .progress {
    margin-bottom: 0 !important;
    height: 10px;
}

.dropdown-menu.inbox li a .photo img {
    border-radius: 2px 2px 2px 2px;
    float: left;
    height: 40px;
    margin-right: 4px;
    width: 40px;
}

.dropdown-menu.inbox li a .subject {
    display: block;
}

.dropdown-menu.inbox li a .subject .from {
    font-size: 12px;
    font-weight: 600;
}

.dropdown-menu.inbox li a .subject .time {
    font-size: 11px;
    font-style: italic;
    font-weight: bold;
    position: absolute;
    right: 5px;
}

.dropdown-menu.inbox li a .message {
    display: block !important;
    font-size: 11px;
	
}
.top-nav {
    margin-top: 14px;
}

.top-nav ul.top-menu > li .dropdown-menu.logout {
    width: 200px !important;

}

.top-nav li.dropdown .dropdown-menu {
    float: right;
    right: 0;
    left: auto;
}

.dropdown-menu.extended.logout > li {
    float: left;
    text-align: left;
    width: 100%;
}

.dropdown-menu.extended.logout > li:last-child > a{
    color: #fff;
    border-bottom: none !important;
    text-transform: uppercase;
}

.dropdown-menu > li > a{
    color: #797979;
	padding: 3px 20px
}
.dropdown-menu > li > a:hover {
    background-color: #f5f5f5;
}
.dropdown-menu.extended.logout > li > a {
    font-size: 14px;
    list-style: none;
    padding: 6px 10px !important;
    width: 100%;
    display: inline-block;
}
.dropdown-toggle-split {
  padding-right: .5625rem;
  padding-left: .5625rem;
}
.dropdown-menu.extended.logout > li > a:hover {
    border-bottom: 1px solid #688a7e !important;
}


.dropdown-menu.extended.logout > li > a i {
    font-size: 17px;
}




.top-nav ul.top-menu > li > a {
    padding: 8px;
    background: none;
    margin-right: 0;
}
.top-nav ul.top-menu > li {
    margin-left: 10px;
}



.top-nav .dropdown-menu.extended.logout {
    top: 50px;
}

.top-nav .nav .caret {
    border-bottom-color: #A4AABA;
    border-top-color: #A4AABA;
}
.top-nav ul.top-menu > li > a:hover .caret {
    border-bottom-color: #7498f1;
    border-top-color: #7498f1;
}

.log-arrow-up {
    width: 20px;
    height: 11px;
    position: absolute;
    right: 20px;
    top: -10px;
}
/*----*/
.page-header  h3{
	margin-top: 0px;
	padding-top:4px;
	margin-bottom: 0px;
}
.page-header {
	margin-top: -10px;
	padding-top:4px;
	border-bottom:1px solid #d0d8df;
	background-color: #f7f7f7!important;
}
.page-header i {
	color: #acb1b8;
	float: left;
	font-size: 30px;
	line-height: 22px;
	opacity: 0.8; 
	padding-right:5px;	
}

/* .info-box
=================================================================== */
.info-box {
  min-height: 140px;
  margin-bottom: 30px;
  padding: 20px;
  color: white;
  -webkit-box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.35), 0 3px 1px -1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.35), 0 3px 1px -1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.35), 0 3px 1px -1px rgba(0, 0, 0, 0.1);
}
.info-box i {
  display: block;
  height: 100px;
  font-size: 60px;
  line-height: 100px;
  width: 100px;
  float: left;
  text-align: center;
  margin-right: 20px;
  padding-right: 20px;
  color: rgba(255, 255, 255, 0.75);
}
.info-box .count {
  margin-top: 20px;
  font-size: 34px;
  font-weight: 700;
}
.info-box .title {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}
.info-box .desc {
  margin-top: 10px;
  font-size: 12px;
}
.info-box.danger {
  background: #ff5454;
  border: 1px solid #ff2121;
}
.info-box.warning {
  background: #fabb3d;
  border: 1px solid #f9aa0b;
}
.info-box.primary {
  background: #20a8d8;
  border: 1px solid #1985ac;
}
.info-box.info {
  background: #67c2ef;
  border: 1px solid #39afea;
}
.info-box.success {
  background: #79c447;
  border: 1px solid #61a434;
}
/*----------------	color------------------------*/
.dark-heading-bg {
  background: #4c4f53;
  border: 1px solid #4c4f53;
}
.main-bg {
  background: #e6e8ea;
}
.white-bg {
  color : #768399;
  background : #fff;
  background-color : #fff;
}
.red-bg {
  color : #fff;
  background : #d95043;
  background-color : #d95043;
}
.blue-bg {
  color : #fff;
  background : #57889c;
  background-color : #57889c;
}
.green-bg {
  color : #fff;
  background : #26c281;
  background-color : #26c281;
}
.greenLight-bg {
  color: #71843f;
  background: #71843f;
  background-color: #71843f;
}
.yellow-bg {
  color : #fff;
  background : #fc6;
  background-color : #fc6;
}
.orange-bg {
  color : #fff;
  background : #f4b162;
  background-color : #f4b162;
}
.purple-bg {
  color : #fff;
  background : #af91e1;
  background-color : #af91e1;
}
.pink-bg {
  color : #fff;
  background : #f78db8;
  background-color : #f78db8;
}
.lime-bg {
  color : #fff;
  background : #a8db43;
  background-color : #a8db43;
}
.magenta-bg {
  color : #fff;
  background : #e65097;
  background-color : #e65097;
}
.teal-bg {
  color : #fff;
  background : #97d3c5;
  background-color : #97d3c5;
}
.brown-bg {
  color : #fff;
  background : #d1b993;
  background-color : #d1b993;
}
.gray-bg {
  color : #768399;
  background : #e4e9eb;
  background-color : #e4e9eb;
}

.facebook-bg {
  color: #fff;
  background: #3b5998;
  background-color : #3b5998;
}
.twitter-bg {
  color: #fff;
  background: #00aced;
  background-color : #00aced; 
}
.linkedin-bg {
  color: #fff;
  background: #4875b4;
  background-color : #4875b4;  
}
/*----------------------	panel-----------------*/
.panel {
  border:none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  margin-bottom: 30px;
}
.panel .panel-heading {
  line-height: 34px;
  padding: 0 15px;
  min-height: 34px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;  
  position: relative;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,.05);
  -moz-box-shadow: inset 0 -2px 0 rgba(0,0,0,.05);
  -webkit-box-shadow: inset 0 -2px 0 rgba(0,0,0,.05);  

}
.panel .panel-heading .panel-title {
  line-height: 40px;
}
.panel .panel-heading i {
  width: 18px;
  display: inline-block;
  font-size: 14px;
  margin-right:7px;
  border-right:1px solid #e6e6e6 ;
}
.panel .panel-heading ul li {
  border-top:1px solid #e6e6e6 ;
  border-left:1px solid #e6e6e6 ;
  border-right:1px solid #e6e6e6 ;
}
.panel .panel-heading h2 {
  height: 100%;
  width: auto;
  display: inline-block;
  font-size: 14px;
  position: relative;
  margin: 0;
  line-height: 34px;
  font-weight: 400;
  letter-spacing: 0;
}
.panel .panel-heading .panel-actions {
  float: right;
  margin-right: -15px;
  height: 40px;
  font-size: 0;
}
.panel .panel-heading .panel-actions i {
  display: inline-block;
  text-align: center;
  width: 34px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  text-decoration: none;
  font-size: 14px;
}
.panel .panel-heading .panel-actions a {
  text-decoration: none;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  line-height: 32px;
  padding: 0;
  margin: 0;
  color: #333;
  border-left: 1px solid rgba(0,0,0,.09);
}
.panel-actions .btn-setting:hover,
.panel-actions .btn-minimize:hover,
.panel-actions .btn-close:hover {
  background-color: rgba(0,0,0,.05);
}
.panel .panel-heading .switch {
  margin: 10px;
}
.panel .panel-body {
  border-width: 1px 1px 2px;
  border-style: solid;
  border-top: none;
  border-right-color: #ccc!important;
  border-bottom-color: #ccc!important;
  border-left-color: #ccc!important;
}
.panel .panel-body-map {
  border-width: 1px 1px 2px;
  border-style: solid;
  background:#eef3f7;
  height:380px;
  border-top: none;
  border-right-color: #ccc!important;
  border-bottom-color: #ccc!important;
  border-left-color: #ccc!important;
}
.panel .panel-body.no-padding {
  padding: 0;
}
.panel .panel-body.padding-horizontal {
  padding: 0 15px;
}
.panel .panel-body.no-padding-bottom {
  padding-bottom: 0;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.panel .panel-footer {
  border-width: 0 1px 2px 1px;
  border-style: solid;
  border-top: none;
  border-right-color: #ccc!important;
  border-bottom-color: #ccc!important;
  border-left-color: #ccc!important;    
  position: relative;  
}
.panel.panel-default {  
  border-radius: 0px;
  
  border-top: 1px solid #d4d4d4;
  -webkit-box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 1px -1px rgba(0, 0, 0, 0.1);
  
}
}
.panel.panel-default.panel-heading {
  background: #97d3c5;   
}
.panel.panel-default .panel-footer {
  background: #f5f5f5;
}
.panel.panel-primary {
  border-color: #20a8d8;
}
.panel.panel-primary .panel-heading,
.panel.panel-primary .panel-footer {
  background: #5dc3e7;
  color: #092f3d;
  border-color: #20a8d8;
}
.panel.panel-success {
  border-color: #79c447;
}
.panel.panel-success .panel-heading,
.panel.panel-success .panel-footer {
  background: #a3d781;
  color: #284315;
  border-color: #79c447;
}
.panel.panel-info {
  border-color: #67c2ef;
}
.panel.panel-info .panel-heading,
.panel.panel-info .panel-footer {
  background: #acdef6;
  color: #106894;
  border-color: #67c2ef;
}
.panel.panel-warning {
  border-color: #fabb3d;
}
.panel.panel-warning .panel-heading,
.panel.panel-warning .panel-footer {
  background: #fcd588;
  color: #815703;
  border-color: #fabb3d;
}
.panel.panel-danger {
  border-color: #ff5454;
}
.panel.panel-danger .panel-heading,
.panel.panel-danger .panel-footer {
  background: #ffa1a1;
  color: #a10000;
  border-color: #ff5454;
}
/* Chat Widget starts */

.chats{
	list-style-type: none;
	margin: 0px;
}

.chats li{
	margin-bottom: 8px;
	padding-bottom: 8px;
}

.chats .by-me img{
	margin-top: 5px;
	margin-right:10px;
	padding: 1px;
	background:#fff;
	border: 1px solid #ccc;
}

.chats .by-me .chat-meta{
	font-size: 11px;
	color: #999;
}

.chats .by-me .chat-content{
	margin-left: 60px;
	position: relative; 
	background: #fff; 
	border: 1px solid #ddd;
	padding: 7px 10px;
	border-radius: 5px;
	font-size: 13px;
}

.chats .by-me .chat-content:after, .chats .by-me .chat-content:before { 
	right: 100%; 
	border: solid transparent; 
	content: " "; 
	height: 0; 
	width: 0; 
	position: absolute; 
	pointer-events: none; 
} 

.chats .by-me .chat-content:after { 
	border-color: rgba(255, 255, 255, 0); 
	border-right-color: #fff; 
	border-width: 10px; 
	top: 30%; 
	margin-top: -10px; 
} 

.chats .by-me .chat-content:before { 
	border-color: rgba(238, 238, 238, 0); 
	border-right-color: #ccc; 
	border-width: 11px; 
	top: 30%; 
	margin-top: -11px; 
}

.chats .by-other img{
	margin-top: 5px;
	margin-left:10px;
	padding: 1px;
	background:#fff;
	border: 1px solid #ccc;
}

.chats .by-other .chat-meta{
	font-size: 11px;
	color: #999;
}

.chats .by-other .chat-content{
	margin-right: 60px;
	position: relative; 
	background: #fff; 
	border: 1px solid #ddd;
	padding: 7px 10px;
	border-radius: 5px;
	font-size: 13px;
}

.chats .by-other .chat-content:after, .chats .by-other .chat-content:before { 
	left: 100%; 
	border: solid transparent; 
	content: " "; 
	height: 0; 
	width: 0; 
	position: absolute; 
	pointer-events: none; 
} 

.chats .by-other .chat-content:after { 
	border-color: rgba(255, 255, 255, 0); 
	border-left-color: #fff; 
	border-width: 10px; 
	top: 30%; 
	margin-top: -10px; 
} 

.chats .by-other .chat-content:before { 
	border-color: rgba(238, 238, 238, 0); 
	border-left-color: #ccc; 
	border-width: 11px; 
	top: 30%; 
	margin-top: -11px; 
}

/* Chat widget ends */
.portlets{
  min-height:50px;
}

.portlets .widget-head{
  cursor:move;
}
/* Just Gage - Demo Charts
=================================================================== */
.sz1 {
  width: 200px;
  height: 160px;
}
.sz0 {
  margin: 2em 0 0 0;
}
.sz0 {
  width: 100px;
  height: 80px;
}
/**
 * Nestable
 */
.dd {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 20px;
}
.dd-list {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dd-list .dd-list {
  padding-left: 30px;
}
.dd-collapsed .dd-list {
  display: none;
}
.dd-item,
.dd-empty,
.dd-placeholder {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 20px;
  font-size: 13px;
  line-height: 20px;
}
.dd-handle {
  display: block;
  height: 30px;
  margin: 5px 0;
  padding: 4px 10px;
  text-decoration: none;
  border: 1px solid #d4d4d4;
  background: #eeeeee;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.dd-handle:hover {
  color: #20a8d8;
  background: white;
}
.dd-handle .icon {
  float: right;
  font-size: 16px;
  margin-left: 10px;
}
.dd-handle .icon:hover {
  text-decoration: none;
}
.dd-item > button {
  display: block;
  position: relative;
  cursor: pointer;
  float: left;
  width: 25px;
  height: 20px;
  margin: 5px 0;
  padding: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: 0;
  background: transparent;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  font-weight: bold;
}
.dd-item > button:before {
  content: '+';
  display: block;
  position: absolute;
  width: 100%;
  text-align: center;
  text-indent: 0;
}
.dd-item > button[data-action="collapse"]:before {
  content: '-';
}
.dd-placeholder,
.dd-empty {
  margin: 5px 0;
  padding: 0;
  min-height: 30px;
  background: #f2fbff;
  border: 1px dashed #b6bcbf;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.dd-empty {
  border: 1px dashed #bbb;
  min-height: 100px;
  background-color: #e5e5e5;
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
}
.dd-dragel {
  position: absolute;
  pointer-events: none;
  z-index: 9999;
}
.dd-dragel > .dd-item .dd-handle {
  margin-top: 0;
}
.dd-dragel .dd-handle {
  -webkit-box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
}
* /Widget-Content */

.widget-content .error .form-inline button{
	margin-left:-2px;
	padding:8px 12px;
}

.chats{
	padding-left:0px;
	margin-left:0px;
}

.recent{
	padding-left:0px;
	margin-left:0px;
}

.widget-foot .form-inline button {
	margin-left: -3px;
	padding:7px 12px;
}

.widget-content .form-inline button {
	margin-left: 0px;
	padding:7px 12px;
}

.buttons button{
	margin-top:10px;
}

.widget-content ol#slist{
	padding:0px;
}
.widget .widget-head,.modal-header{

    padding: 8px 15px;
}

.widget.wblack .widget-head{
  background-color: #e8ece9;
  background: -webkit-gradient(linear, left top, left bottom, from(#e8ece9), to(#111));
  background: -webkit-linear-gradient(top, #e8ece9, #111);
  background: -moz-linear-gradient(top, #e8ece9, #111);
  background: -ms-linear-gradient(top, #e8ece9, #111);
  background: -o-linear-gradient(top, #e8ece9, #111);
  background: linear-gradient(top, #e8ece9, #111);
  text-shadow:0px 1px #000;
  border-bottom: 1px solid #555;
  border-top: 1px solid #666;
  box-shadow: inset 0px 1px 1px #444;
	color: #ccc;
}

.widget .widget-head .widget-icons i{
	font-size: 14px;
	margin: 0px 4px;
}

.widget .widget-head .widget-icons a{
	color: #aaa;
}

.widget .widget-head .widget-icons a:hover{
	color: #999;
}

.widget.wblack .widget-head .widget-icons i{
	font-size: 14px;
	margin: 0px 4px;
}

.widget .widget-foot, .modal-footer{
  background-color: #f8f8f8;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f2f2f2));
  background: -webkit-linear-gradient(top, #f8f8f8, #f2f2f2);
  background: -moz-linear-gradient(top, #f8f8f8, #f2f2f2);
  background: -ms-linear-gradient(top, #f8f8f8, #f2f2f2);
  background: -o-linear-gradient(top, #f8f8f8, #f2f2f2);
  background: linear-gradient(top, #f8f8f8, #f2f2f2);	
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  text-shadow:0px 1px #fff;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #ccc;
  padding: 8px 15px;
  font-size: 12px;
  color: #555;
  box-shadow: inset 0px 1px 1px #fff;
}
.widget-content .error .form-inline button{
	margin-left:-2px;
	padding:8px 12px;
}

.chats{
	padding-left:0px;
	margin-left:0px;
}

.recent{
	padding-left:0px;
	margin-left:0px;
}

.widget-foot .form-inline button {
	margin-left: -3px;
	padding:7px 12px;
}

.widget-content .form-inline button {
	margin-left: 0px;
	padding:7px 12px;
}
.widget .padd .modal-body{
	padding: 13px 15px;
}

.buttons button{
	margin-top:10px;
}

.widget-content ol#slist{
	padding:0px;
}

.task i {
	display:inline-block;
	width: 30px;
	height: 17px;
	background: #ccc;
	text-align: center;
	border-radius: 50px;
	font-size: 10px;
	line-height: 17px;
}

.pagination li a{
	color:#777;
}
/* Widget white extras */

.widget .nav-tabs > li a {

}

.widget .nav-tabs {
	margin-bottom: 5px;
}

.widget .tab-content{
	margin-bottom: 10px;
}
.widget .padd, .modal-body{
	padding: 13px 15px;
}
.portlets{
  min-height:50px;
}

.portlets .widget-head{
  cursor:move;
}
/*-----	map-----*/
* Google maps */

.gmap iframe{
	width: 100%;
	margin: 0px;
	padding: 0px;
}

/* Google maps ends */
/* Today datas */

.today-datas{
	list-style-type: none;
	padding: 0px;
	margin: 10px 0px;
}

.today-datas li{
	display: inline-block;
	margin-bottom: 5px;
	margin-right: 10px;
  padding: 10px 10px;
  text-shadow:0px 1px 0px #fff;
  max-width: 100%;
  text-align: center;
}

.today-datas li .datas-text{
	font-size: 13px;
	padding: 7px 0px 0px 0px;
	font-weight: normal;
}

/*----*/

.notify-arrow {
    border-style: solid;
    border-width: 0 9px 9px;
    height: 0;
    margin-top: 0;
    opacity: 0;
    position: absolute;
    right: 7px;
    top: -18px;
    transition: all 0.25s ease 0s;
    width: 0;
    z-index: 10;
    margin-top: 10px;
    opacity: 1;
}
.notify-arrow-blue{
    border-color: transparent transparent #688a7e;
    border-bottom-color: #688a7e !important;
    border-top-color: #688a7e !important;
}
.notify-arrow-yellow {
    border-color: transparent transparent #FCB322;
    border-bottom-color: #FCB322 !important;
    border-top-color: #FCB322 !important;
}
.notify-arrow-red {
    border-color: transparent transparent #00a0df;
    border-bottom-color: #00a0df !important;
    border-top-color: #00a0df !important;
}
.notify-arrow-green {
    border-color: transparent transparent #4cd964;
    border-bottom-color: #4cd964 !important;
    border-top-color: #4cd964 !important;
}


/*search*/

.search {
    margin-top: 6px ;
    width: 20px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    border: 1px solid #fff;
    box-shadow: none;
    background: url("../img/search-icon.jpg") no-repeat 10px 8px;
    padding:0 5px 0 35px;
   /* color: #fff;*/
}

.search:focus {
    margin-top: 5px ;
    width: 180px;
    border: 1px solid #eaeaea;
    box-shadow: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    color: #c8c8c8;
    font-weight: 300;
}

/*--sidebar toggle---*/

.toggle-nav {
    float: left;
    padding-right: 15px;
	margin-top: 17px;
}

.toggle-nav .icon-reorder {
    cursor: pointer;
    display: inline-block;
    font-size: 20px;
}

/*
.sidebar-closed > #sidebar > ul {
    display: none;
}

.sidebar-closed #main-content {
    margin-left: 0px;
}

.sidebar-closed #sidebar {
    margin-left: -180px;
}

state overview*/

.state-overview .symbol, .state-overview .value {
    display: inline-block;
    text-align: center;
}

.state-overview .value  {
    float: right;

}

.state-overview .value h1{
    margin: 0;
    padding: 0;
    color: #688a7e;
}
.state-overview .value p  {
    margin: 0;
    padding: 0;
    color: #fed189;
}

.state-overview .value h1 {
    font-weight: 300;
    font-weight: 30px;
}

.state-overview .symbol i {
    color: #688a7e;
    font-size: 30px;
}

.state-overview .symbol {
    width: 30%;
    padding: 25px 15px;    
}

.state-overview .value {
    width: 68%;
    padding-top: 21px;
}

.state-overview .terques {
    background: #34AADC;
}

.state-overview .red {
    background: #00a0df;
}

.state-overview .yellow {
    background: #FCB322;
}

.state-overview .blue {
    background: #688a7e;
}


/**/
.state .panel-body{
    padding: 0px;
}
.panel-body.chart-texture {
    background: url("../img/chart-texture.jpg");
    -webkit-border-radius: 4px 4px 0px 0px;
    border-radius: 4px 4px 0px 0px;
    padding: 0px;
}


/*personal task*/

.task-thumb {
    width: 90px;
    float: left;
}

.task-thumb img {
    border-radius: 4px;
    -webkit-border-radius: 4px;
}

.task-thumb-details {
    display: inline-block;
    margin: 25px 0 0 10px;
}

.task-progress {
    float: left;
}

.task-thumb-details h1, .task-thumb-details h1 a, .task-progress h1, .task-progress h1 a {
    color: #688a7e;
    font-size: 18px;
    margin: 0;
    padding: 0;
    font-weight: 300;
}

.task-thumb-details p, .task-progress p {
    padding-top: 5px;
    color: #fed189;
}


.personal-task tbody tr td{
    padding: 11px 15px;
    border-color: #eeeff1;
}

.personal-task tbody tr td i {
    font-size: 16px;
    color: #c7cbd4;
    position: relative;
    right: 6px;
    top: 6px;
}

.personal-task.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
    background-color: #f7f8fc;
}

.personal-task.table-hover > tbody > tr:hover > td i{
    color: #688a7e;
}

.personal-task > tbody > tr > td:last-child {
    text-align: right;
}

.task-option {
    float: right;
}

.task-option select{
    height: 35px;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    padding: 8px;
    color: #a4abbb;
}

.progress-panel {
    padding-bottom: 5px;
}

/*badge*/

.badge.bg-primary {
    background: #688a7e;
}

.badge.bg-success {
    background: #4cd964;
}

.badge.bg-warning {
    background: #FCB322;
}

.badge.bg-important {
    background: #00a0df;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
}

.dark-bg .badge.bg-important {
    background: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
	font-weight: bold;
}

.badge.bg-info {
    background: #34aadc;
}

.badge.bg-inverse {
    background: #797979;
}



/*---revenue----*/

.revenue-head {
    background: #688a7e;    
    color: #fff;
    line-height: 50px;
    text-align: center;
}

.revenue-head span {
    /*background: rgba(0,0,0,0.1);*/
    text-align: left;
    line-height: normal;
    padding: 16px;
    font-weight: 300;    
}

.revenue-head span i {
    font-size: 18px;
}

.revenue-head h3 {
    display: inline;
    padding: 0 10px;
    font-size: 16px;
    font-weight: 400;
}

.revenue-head span.rev-combo {
    /*background: rgba(0,0,0,0.1);*/
    text-align: right;
    padding: 16px;
    line-height: normal;
    font-weight: 300;
}

/*easy pie chart*/

.easy-pie-chart {
   display: inline-block;
   padding: 30px 0;
}

.chart-info, .chart-info .increase, .chart-info .decrease {
    display: inline-block;
}

.chart-info {
    width: 100%;
    margin-bottom:5px;
}

.chart-position {
    margin-top: 70px;
}

.chart-info span {
    margin: 0 3px;
}

.chart-info .increase {
    background: #688a7e;
    width: 10px;
    height: 10px;
}

.chart-info .decrease {
    background: #f2f2f2;
    width: 10px;
    height: 10px;
}

.panel-footer.revenue-foot {
    background-color: #e6e7ec;
    -webkit-border-radius: 0px 0px 4px 4px;
    border-radius: 0px 0px 4px 4px;
    border: none;
    padding: 0;
    width: 100%;
    display: inline-block;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    /* Safari and Chrome */
    .panel-footer.revenue-foot {
        margin-bottom: -4px;
    };
    }


.panel-footer.revenue-foot ul  {
    margin: 0;
    padding: 0;
    width: 100%;
    display: inline-flex;
}

.panel-footer.revenue-foot ul li {
    float: left;
    width: 33.33%;
}

.panel-footer.revenue-foot ul li.first a:hover, .panel-footer.revenue-foot ul li.first a {
    -webkit-border-radius: 0px 0px 0px 4px;
    border-radius: 0px 0px 0px 4px;
}

.panel-footer.revenue-foot ul li.last a:hover, .panel-footer.revenue-foot ul li.last a {
    -webkit-border-radius: 0px 0px 4px 0px;
    border-radius: 0px 0px 4px 0px;
    border-right: none;

}

.panel-footer.revenue-foot ul li a{
    display: inline-block;
    width: 100%;
    padding: 14px 15px;
    text-align: center;
    border-right: 1px solid #d5d8df;
    color: #797979;
}

.panel-footer.revenue-foot ul li a:hover, .panel-footer.revenue-foot ul li.active a {
    background: #fff;
    position: relative;
}

.panel-footer.revenue-foot ul li a i {
    color: #c6cad5;
    display: block;
    font-size: 16px;
}
.panel-footer.revenue-foot ul li a:hover i, .panel-footer.revenue-foot ul li.active a i {
    color: #688a7e;
    display: block;
    font-size: 16px;
}

/*Creative carousel model*/

.flat-carousal {
    background: #00a0df;    
    padding: 10px;
    color: #fff;
    position: relative;
}

.flat-carousal h1 {
    text-align: center;
    font-size: 16px;
    margin: 30px 20px;
    line-height: 20px;
    font-weight: 300;
    font-style: italic;
}

a.view-all {
    color: #fff;
    background: rgba(0,0,0,0.1);
    padding: 8px 15px;
    text-align: center;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    margin-bottom: 18px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
}

ul.ft-link {
    margin: 0;
    padding: 0;
}

ul.ft-link li {
    border-right: 1px solid #E6E7EC;
    display: inline-block;
    line-height: 30px;
    margin: 8px 0;
    text-align: center;
    width: 24%;
}

ul.ft-link li a {
    color: #74829c;
    text-transform: uppercase;
    font-size: 12px;
}

ul.ft-link li a:hover, ul.ft-link li.active a {
    color: #00a0df;
}

ul.ft-link li:last-child {
    border-right: none;
}

ul.ft-link li a i {
    display: block;
}


#owl-slider .item img{
    display: block;
    width: 100%;
    height: auto;
}

.owl-buttons {
    position: absolute;
    top: 70px;
    width: 100%;

}

.owl-prev, .owl-next {
    position: absolute;
}

.owl-next {
    right: 0;
}

.owl-buttons .owl-prev {
    text-indent: -9999px;
    background: url("../img/left-arrow.png") no-repeat;
    width: 6px;
    height: 10px;
    display: inline-block;
}

.owl-buttons .owl-next {
    text-indent: -9999px;
    background: url("../img/right-arrow.png") no-repeat;
    width: 6px;
    height: 10px;
    display: inline-block;
}

/*product post*/

.post-wrap aside {
    display: table-cell;
    float: none;
    height: 100%;
    padding: 0;
    vertical-align: top;
}

.pro-box {
    border-collapse: collapse;
    border-spacing: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
}
.post-info {
    position: relative;
}

.arrow-pro.right:after {
    border-left-color: #FFFFFF;
    border-right-width: 0;
    top: 85px;
    content: " ";
}

.arrow-pro.left:after {
    border-right-color: #FFFFFF;
    border-left-width: 0;
    top: 80px;
    content: " ";
}

.arrow-pro.left {
    left: -8px;
}

.arrow-pro:after {
    border-width: 7px;
    content: "";
}

.arrow-pro, .arrow-pro:after {
    border-color: rgba(0, 0, 0, 0);
    border-style: solid;
    display: block;
    height: 0;
    position: absolute;
    width: 0;
    right: -5px;

}

.post-highlight.yellow {
    background: #FCB322;    
}

.post-highlight.terques {
    background: #688a7e;    
}

.post-info h1 {
    margin: 0;
    font-size: 18px;
    color: #a19899;
    font-weight: 300;
}

.post-highlight.terques h2 {
    font-size: 16px;
    color: #fff;
    font-style: italic;
    padding: 0 20px;
    line-height: 22px;
    margin: 0;
    font-weight: 300;
}

.post-highlight.terques h2 span, .post-highlight.terques h2 a {
    color: #92faf3;
}

.post-info h1 strong {
    text-transform: uppercase;
    color: #937b7b;
}

.post-info .desk {
    display: inline-block;
}

.post-info .desk  h3{
    font-size: 16px;
}

.post-info .desk.yellow h3 {
    color:#FCB322 ;
}

.post-btn {

}

.post-btn a {
    float: left;
    margin-right: 8px;
    font-size: 18px;
    color: #9a9a9a;
}

.post-btn a:hover {
    color: #727272;
}

.pro-thumb {
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 10px solid rgba(256,256,256,0.4);
}

.pro-thumb img{
    text-align: center;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    -webkit-border-radius: 50%;

}

.v-align {
    vertical-align: middle !important;
}

.twite h1 {
    margin: 50px 0;
}


.social-footer {
    display: inline;
    text-align: center;
}

.social-footer ul {
    text-align: center;
    margin: 0;
    padding: 0;
}

.social-footer ul li {
    display: inline-block;
    margin: 0 20px;
}

.social-footer ul li a {
    font-size: 25px;
    color: #ceced0;
}

.social-footer ul li a:hover i.icon-facebook, .social-footer ul li.active a i.icon-facebook {
    color: #486eac;
}

.social-footer ul li a:hover i.icon-twitter, .social-footer ul li.active a i.icon-twitter {
    color: #00a0df;
}

.social-footer ul li a:hover i.icon-google-plus, .social-footer ul li.active a i.icon-google-plus {
    color: #4a4a4a;
}

.social-footer ul li a:hover i.icon-pinterest, .social-footer ul li.active a i.icon-pinterest {
    color: #d1282d;
}

/*pie chart */

.pie-foot {
    background: #6b6b6b;
    padding: 18px 15px;
    color: #fff;
    border-radius: 0 0 4px 4px;
    -webkit-border-radius: 0 0 4px 4px;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
}

/*profile-widget*/

.profile-widget {    
    color: #fff;
    text-align: center;    
}

/*profile-widget image bg*/
.profile-widget-img{
    background: url('../img/backgrounds/bg-11-small.jpg') no-repeat !important;    
}
.profile-nav .profile-widget-img .bg-layer {
    background: rgba(0,0,0,0.5) !important;
}
.profile-widget-img .panel-body{
    background: rgba(0,0,0,0.5) !important;
}
.profile-widget-img .profile-widget-foot{
    background: rgba(0,0,0,0.8);
}
.profile-widget p{
    font-weight: 300;
    /*margin-bottom: 15px;*/
}
.profile-widget{
    /*padding-left: 20px 15px 30px 15px;*/
}
.profile-widget .twt-category{
    display: inline-block;
    margin-bottom: 0px;
    margin-top: 10px;
    width: 100%;
    padding: 0px;
}
.profile-widget .twt-category ul li{
    color: #ffffff;
}
.knob-charts{
    margin-top: 10px;

}
.follow-task{
    padding: 5px;
}
.follow-task a{
    color: #ffffff;
    width: 15%;
    display: inline-block;            
}
.follow-task a span.badge{
    top: -12px;
    position: relative;
    left: -8px;
    background: #FFFFFF;
    color: #34AADC;

}
.follow-task i{
    font-size: 20px;
}
.profile-widget-foot {
    padding: 8px 5px 5px 5px;
    background: rgba(0,0,0,0.1);
    color: #757575;    
    font-weight: 300;
}
.profile-foot {
    padding: 8px 5px 5px 5px;
    background: rgba(0,0,0,0.1);
    color: #ffffff;
    font-weight: 300;
    overflow: hidden;
}
.profile-foot .active{

}
.profile-foot a{
    color: #ffffff;
}
.profile-widget-foot ul {
    padding: 0;
    margin: 0;
}
.profile-widget-foot ul li{
    display: inline-block;
    text-align: center;
    width: 48%;
    line-height: normal;
}

.profile-widget-foot ul li h5{
    margin: 5px 0 0 0;
}
.follow-info{
    text-align: left;
    padding-top: 20px;
	padding-bottom: 10px;

	
}
.profile-widget h4 {
    margin: 5px;
    font-size: 18px;
    font-weight: 300;
}
.profile-widget h6 {
    margin: 0px;
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
}
.profile-widget h6 span i{
    padding-right: 4px;
}
.profile-widget h6 span{
    padding-right: 8px;
}

.project-team, .panel-title,.progress-panel{
    background: #F7F7F7;
}
.profile-ava img{
    border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 2px solid #688a7e;
    display: inline-block;
}
.profile-ava img.simple{
    border-radius: 50%;
    -webkit-border-radius: 50%;    
    border: 2px solid rgba(0,112,255,0.4);
    display: inline-block;
}
.profile-name{
    margin: 0px;
    font-size: 16px;
}
.profile-occupation{
    margin: 0px;
    font-size: 12px;
}
.follow-ava {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 5px solid rgba(0,0,0,0.1);
    display: inline-block;
}
.timeline-ava {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 5px solid #688a7e;
    display: inline-block;
}
.timeline-ava img{
    border-radius: 50%;
   -webkit-border-radius: 50%;
    width: 50px;
    height: 50px;
}
.profile-widget img {
   border-radius: 50%;
   -webkit-border-radius: 50%;
    width: 62px;
    height: 62px;
    /*display: inline-block;*/
}

/* .social-box
=================================================================== */
.social-box {
  min-height: 158px;
  background: white;
  margin-bottom: 30px;
  text-align: center;
}
.social-box i {
  display: block;
  font-size: 40px;
  line-height: 90px;
  background: #f5f5f5;
}
.social-box ul {
  list-style: none;
  padding: 10px 0;
}
.social-box ul li {
  display: block;
  width: 50%;
  float: left;
}
.social-box ul li:first-child {
  border-right: 1px solid #f5f5f5;
}
.social-box ul li strong {
  display: block;
  font-size: 20px;
}
.social-box ul li span {
  color: #d4d4d4;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 10px;
}
.social-box.facebook i {
  background: #3b5998;
  color: white;
  margin: -1px -1px 1px -1px;
}
.social-box.twitter i {
  background: #00aced;
  color: white;
  margin: -1px -1px 1px -1px;
}
.social-box.linkedin i {
  background: #4875b4;
  color: white;
  margin: -1px -1px 1px -1px;
}
.social-box.google-plus i {
  background: #d34836;
  color: white;
  margin: -1px -1px 1px -1px;
}
/*weather*/

.weather-bg {
    background: #34AADC;    
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
}

.weather-bg i {
    font-size: 60px;
    display: block;
}
.weather-bg h3{
    font-weight: 300;
    font-size: 28px;
}
.weather-bg .degree {
    padding-top: 10px;
    font-size: 60px;
}

.weather-category {
    padding: 15px 0;
    color: #ffffff;    
}
.weather-info{
    background: #34AADC;
}

.weather-category ul {
    padding:0;
    margin: 0;
    display: inline-block;
    width: 100%;
}

.weather-category ul   {
    display: inline-block;
    width: 100%;
	padding-bottom: 10px;
    text-align: center;
	border-top:1px solid #e6e6e6 ;
	border-left:1px solid #e6e6e6 ;
    border-right:1px solid #e6e6e6 ;
	border-bottom:1px solid #e6e6e6 ;
    display: inline-block;
}
.weather-category ul  li {
    display: inline-block;
    width: 70%;
	padding-top: 10px;
	padding-bottom: 10px;
    text-align: center;
	
   
	
    display: inline-block;
}
.weather-category ul li i  {
    margin-bottom:10px;
}
.weather-category ul li h4 {
    margin: 10px 0 0 0 ;
    text-transform: uppercase;
    font-weight: 300;
}

.weather-days{    
    color: #ffffff;
    background: #34AADC;
}

.weather-days ul {
    padding:0;
    margin: 0;
    display: inline-block;
    width: 100%;
}

.weather-days ul li {
    display: inline-block;
    width: 16.6%;
    text-align: center;
    display: inline-block;
    margin-right: -2.9px;
    padding: 5px 0px;
}
.weather-days ul li.day1{
    background: rgba(0,0,0,0.05);
}
.weather-days ul li.day2{
    background: rgba(0,0,0,0.1);
}
.weather-days ul li.day3{
    background: rgba(0,0,0,0.15);
}
.weather-days ul li.day4{
    background: rgba(0,0,0,0.2);
}
.weather-days ul li.day5{
    background: rgba(0,0,0,0.25);
}
.weather-days ul li.day6{
    background: rgba(0,0,0,0.3);
}

.weather-days ul li h5 {
    margin: 0 0 5px 0;
    text-transform: uppercase;
    font-weight: 300;
}

.weather-category ul li a {

}

.weather-category ul li:last-child,.weather-days ul li:last-child  {
    border-right:none ;
}
/*weather widget 2*/
.weather-bg-img {
    background: url(/img/backgrounds/bg-14-small.jpg) no-repeat center center;    
    color: #fff;
    text-shadow: 0px 1px 5px #fed189;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
}

.weather-bg-img i {
    font-size: 60px;
    text-shadow: 0px 1px 5px #fed189;
    display: block;
}
.weather-bg-img h3{
    font-weight: 300;
    font-size: 28px;
}
.weather-bg-img .degree {
    padding-top: 10px;
    font-size: 60px;
}

.weather-bg-img .weather-category {
    padding: 15px 0;
    color: #ffffff;
    text-shadow: 0px 1px 5px #fed189;
    background: transparent;
}

.weather-bg-img .weather-category ul {
    padding:0;
    margin: 0;
    display: inline-block;
    width: 100%;
}

.weather-bg-img .weather-category ul li {
    display: inline-block;
    width: 32%;
    text-align: center;
    border-right:1px solid #e6e6e6 ;
    display: inline-block;
}

.weather-bg-img .weather-category ul li h5 {
    margin: 0 0 5px 0;
    text-transform: uppercase;
    font-weight: 300;
    text-shadow: 0px 1px 5px #fed189;
}
.weather-bg-img .panel-body, footer.weather-bg-img ul{
    background: rgba(0,0,0,0.5);
}
.weather-days-img{
    color: #ffffff;
    text-shadow: 0px 1px 5px #fed189;
}
.weather-days-img{
    background: transparent !important;
}

/*fontawesome*/

.fontawesome-icon-list h2 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 300;
}

.fontawesome-icon-list .col-sm-3 {
    margin-bottom: 10px;
}

.fontawesome-icon-list .page-header {
    border-bottom: 1px solid #C9CDD7;
}

.fontawesome-icon-list i {
    font-size: 16px;
    padding-right: 10px;
}

#web-application, #text-editor, #directional, #video-player, #brand, #medical, #currency {
    margin-top: 10px;
}

/*mail inbox*/

.inbox-wrapper {
    border-collapse: collapse;
    border-spacing: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
}

.inbox-wrapper aside {
    display: table-cell;
    float: none;
    height: 100%;
    padding: 0;
    vertical-align: top;
}

.inbox-wrapper .inbox-left {
    width: 20%;
    background: #e5e8ef;    
}
.inbox-wrapper .inbox-middle {
    width: 25%;
    background: #fff;    
}
.inbox-wrapper .inbox-right {
    width: 65%;
    background: #f5f5f5;    
}
.inbox-wrapper .inbox-left .inbox-left-menu {
    background: #688a7e;
}

.table-inbox .icon_star_alt:hover, .starred{
    color: #FCB322;
}
.inbox-wrapper .inbox-left .user-head {
    background: rgba(0,0,0,0.2);    
    padding: 10px;
    color: #fff;
    min-height: 80px;
}
.inbox-wrapper .inbox-middle .inbox-mail {
    background: #688a7e;        
    padding: 10px;
    color: #fff;
    min-height: 80px;
}

.user-head .inbox-avatar {
    width: 65px;
    float: left;
}

.user-head .inbox-avatar img {
    border-radius: 4px;
    -webkit-border-radius: 4px;
}
.user-head .user-name {
    display: inline-block;
    margin:0 0 0 10px;
}

.user-head .user-name h5 {
    font-size: 14px;
    margin-top: -15px;
    margin-bottom: 0;
    font-weight: 300;
}
.user-head .user-name h5 a {
    color: #fff;
}

.user-head .user-name span a {
    font-size: 12px;
    color: rgba(255,255,255,0.9);
}

a.mail-dropdown {
    background: #80d3d9;
    padding:3px 5px;
    font-size: 10px;
    color: #01a7b3;
    border-radius: 2px;
    margin-top: 20px;
}

.inbox-body {
    padding: 20px;    
}

.btn-compose {
    background: #00a0df;
    padding: 12px 0;
    text-align: center;
    width: 100%;
    color: #fff;
}
.btn-compose:hover {
    background: #f5675c;
    color: #fff;
}
ul.mail-nav  {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.mail-divider {
    border-bottom: 1px solid #d5d8df;
}

ul.mail-nav li {
    display: inline-block;
    line-height: 20px;
    padding: 10px;
    width: 100%;
    border-right: 1px solid #D7D7D7;
    border-bottom: 1px solid #D7D7D7;
}

ul.mail-nav li a  {
    color: #6a6a6a;     
    width: 100%;
    display: inline-block;
    padding: 0 20px;
}
ul.mail-nav .mail-info{
    padding: 5px;
    font-size: 14px;
}
ul.mail-nav p{
    font-size: 12px;   
}
ul.mail-nav li:hover, ul.mail-nav li.active, ul.mail-nav li:focus  {
    color: #6a6a6a;
    background: #f5f5f5;
    border-bottom: 1px solid #688a7e;
    border-right: none;
}

ul.mail-nav li a i {
    padding-right: 10px;
    font-size: 16px;
    color: #6a6a6a;
}

ul.mail-nav li a span.label {
   margin-top: 13px;
}
ul.inbox-nav  {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.inbox-divider {
    border-bottom: 1px solid #d5d8df;
}

ul.inbox-nav li {
    display: inline-block;
    line-height: 45px;
    width: 100%;
}

ul.inbox-nav li a  {
    color: #6a6a6a;
    line-height: 45px;
    width: 100%;
    display: inline-block;
    padding: 0 20px;
}

ul.inbox-nav li a:hover, ul.inbox-nav li.active a, ul.inbox-nav li a:focus  {
    color: #6a6a6a;
    background: #d5d7de;
}

ul.inbox-nav li a i {
    padding-right: 10px;
    font-size: 16px;
    color: #6a6a6a;
}

ul.inbox-nav li a span.label {
   margin-top: 13px;
}

ul.labels-info li h4 {
    padding-left:15px;
    padding-right:15px;
    padding-top: 5px;
    color: #5c5c5e;
    font-size: 13px;
    text-transform: uppercase;
}

ul.labels-info li  {
   margin: 0;
}

ul.labels-info li a {
    color: #6a6a6a;
    border-radius: 0;
}

ul.labels-info li a:hover, ul.labels-info li a:focus {
    color: #6a6a6a;
    background: #d5d7de;
}

ul.labels-info li a i {
    padding-right: 10px;
}

.nav.nav-pills.nav-stacked.labels-info p {
    margin-bottom: 0;
    padding: 0 22px;
    color: #9d9f9e;
    font-size: 11px;
}

.inbox-head {
    padding:10px;
    background: #688a7e;
    color: #fff;
    border-bottom: 1px solid #D7D7D7;    
    min-height: 80px;
}

.inbox-head  h3 {
    margin: 0;
    display: inline-block;
    padding-top: 6px;
    font-weight: 300;
}

.inbox-head  .sr-input {
    height: 40px;
    border: none;
    box-shadow: none;
    padding: 0 10px;
    float: left;
    border-radius: 4px 0 0 4px;
    color: #8a8a8a;
}
.inbox-head  .sr-btn {
    height: 40px;
    border: none;
    background: #00a6b2;
    color: #fff;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    -webkit-border-radius: 0 4px 4px 0;
}

.table-inbox {
    border: 1px solid #d3d3d3;
    margin-bottom: 0;
}

.table-inbox tr td{
    padding: 12px !important;
}

.table-inbox tr td:hover{
    cursor: pointer;
}

.table-inbox tr td .icon-star.inbox-started ,.table-inbox tr td .icon-star:hover{
    color: #f78a09;
}

.table-inbox tr td .icon-star{
    color: #d5d5d5;
}

.table-inbox tr.unread td {
    font-weight: 600;
    background: #f7f7f7;
}

ul.inbox-pagination  {
    float: right;
}

ul.inbox-pagination li {
    float: left;
}

.mail-option {
    display: inline-block;
    margin-bottom: 0px;
    width: 100%;
    margin-top: 18px;
}
.open-mail-action i{
    padding-right: 5px;
    font-size: 14px;
}
.inbox-mail .navbar-form{
    margin-top: 15px;
}
.mail-option .chk-all, .mail-option .btn-group {
    margin-right: 5px;
}

.mail-option .chk-all, .mail-option .btn-group a.btn {
    border: 1px solid #e7e7e7;
    padding: 5px 10px;
    display: inline-block;
    background: #ffffff;
    color: #688a7e;
    border-radius: 0px !important;
    -webkit-border-radius: 0px !important;    
}
.inbox-pagination a.np-btn  {
    border: 1px solid #e7e7e7;
    padding: 5px 15px;
    display: inline-block;
    background: #fcfcfc;
    color: #afafaf;
    border-radius: 0px !important;
    -webkit-border-radius: 0px !important;
}

.mail-option .chk-all input[type=checkbox] {
    margin-top: 0;
}

.mail-option .btn-group a.all {
    padding: 0;
    border: none;
}

.inbox-pagination a.np-btn {
    margin-left: 5px;
}

.inbox-pagination li span {
    display: inline-block;
    margin-top: 7px;
    margin-right: 5px;
}

.fileinput-button {
    border: 1px solid #e6e6e6;
    background: #eeeeee;
}

.inbox-body .modal .modal-body input, .inbox-body .modal .modal-body textarea{
    border: 1px solid #e6e6e6;
    box-shadow: none;
}

.btn-send, .btn-send:hover {
    background: #00A8B3;
    color: #fff;
}

.btn-send:hover {
    background: #009da7;
}

.modal-header h4.modal-title {
    font-weight: 300;
}

.modal-body label {
    font-weight: 400;
    font-family: 'Lato', sans-serif;
}


/*404 page*/

.page-404{
  position:relative;
  width:350px;
  height:200px;    
  margin:100px auto;
  text-align: center;
}

.text-404{    
  font-size:138px;
  background:#e9e3dd;
  background-image: url('https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQTdWeWNteABnbzguiXSBxmfc8Z8nh_HHoWoK35QL81x4HnpVmgvQ');
  background-repeat: no-repeat;
  background-size: 200% 200%;
  background-position: 100% 100%;
  -webkit-animation: square 3s linear infinite;
  -ms-animation: square 3s linear infinite;
  animation: square 3s linear infinite;
  -webkit-background-clip: text;
  color:transparent;  
  text-align:center;
  line-height:200px;
  position:relative;
}

.text-404:nth-of-type(2){
  text-shadow:none;
  z-index:2;
  position:absolute;
  top:-139px;
  left:-1px;
}

@-webkit-keyframes square {
  0% { background-position: 0 0; }
  25% { background-position: 100% 0; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0 100%; }
  100% { background-position: 0 0; }
}

@-ms-keyframes square {
  0% { background-position: 0 0; }
  25% { background-position: 100% 0; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0 100%; }
  100% { background-position: 0 0; }
}

@keyframes square {
  0% { background-position: 0 0; }
  25% { background-position: 100% 0; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0 100%; }
  100% { background-position: 0 0; }
}

/*profile*/

.profile-nav .user-heading {
    background: #688a7e;
    color: #fff;    
    padding: 30px;
    text-align: center;
}

.profile-nav .user-heading.round a  {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 10px solid rgba(256,256,256,0.3);
    display: inline-block;
}

.profile-nav .user-heading a img {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
}

.profile-nav .user-heading h1 {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 5px;
}

.profile-nav .user-heading p {
    font-size: 12px;
}

.profile-nav ul {
    margin-top: 1px;
}

.profile-nav ul > li {
    border-bottom: 1px solid #ebeae6;
    margin-top: 0;
    line-height: 30px;
}

.profile-nav ul > li:last-child {
    border-bottom: none;
}

.profile-nav ul > li > a {
    border-radius: 0;
    -webkit-border-radius: 0;
    color: #89817f;
    border-left: 5px solid #fff;
}

.profile-nav ul > li > a:hover, .profile-nav ul > li > a:focus, .profile-nav ul li.active  a {
    background: #f8f7f5 !important;
    border-left: 5px solid #688a7e;
    color: #89817f !important;
}

.profile-nav ul > li:last-child > a:last-child {
    border-radius: 0 0 4px 4px;
    -webkit-border-radius: 0 0 4px 4px;
}

.profile-nav ul > li > a > i{
    font-size: 16px;
    padding-right: 10px;
    color: #bcb3aa;
}

.r-activity {
    margin: 6px 0 0;
    font-size: 12px;
}
/*profile-widget color bg*/
.profile-widget-info{
    background: #324c57 !important;
}
.profile-widget-success{
    background: #4cd964 !important;
}
.profile-widget-primary{
    background: #688a7e !important;
}
.profile-widget-warning{
    background: #ffcc00 !important;
}
.profile-widget-danger{
    background: #00a0df !important;
}
.profile-widget-name{
    padding: 0px;
}

.p-text-area, .p-text-area:focus {
    border: none;
    font-weight: 300;
    box-shadow: none;
    color: #c3c3c3;
    font-size: 16px;
}

.profile-info .panel-footer {
    background-color:#f8f7f5 ;
    border-top: 1px solid #e7ebee;
}

.profile-info .panel-footer ul li a {
    color: #7a7a7a;
}

.bio-graph-heading {
    background: #263a4f;
    color: #fff;
    text-align: center;
    font-style: italic;
    padding: 40px 110px;
    
    font-size: 16px;
    font-weight: 300;
}

.bio-graph-info {
    color: #89817e;
}

.bio-graph-info h1 {
    font-size: 22px;
    font-weight: 300;
    margin: 0 0 20px;
}

.bio-row {
    width: 50%;
    float: left;
    margin-bottom: 10px;
    padding:0 15px;
}

.bio-row p span {
    width: 100px;
    display: inline-block;
}

.bio-chart, .bio-desk {
    float: left;
}

.bio-chart {
    width: 40%;
}

.bio-desk {
    width: 60%;
}

.bio-desk h4 {
    font-size: 15px;
    font-weight:400;
}

.bio-desk h4.terques {
    color: #34aadc;
}

.bio-desk h4.red {
    color: #e26b7f;
}

.bio-desk h4.green {
    color: #97be4b;
}

.bio-desk h4.purple {
    color: #caa3da;
}

.file-pos {
    margin: 6px 0 10px 0;
}

.profile-activity h5 {
    font-weight: 300;
    margin-top: 0;
    color: #c3c3c3;
}

.summary-head {
    background: #ee7272;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #ee7272;
}

.summary-head h4 {
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.summary-head p {
    color: rgba(256,256,256,0.6);
}

ul.summary-list {
    display: inline-block;
    padding-left:0 ;
    width: 100%;
    margin-bottom: 0;
}

ul.summary-list > li {
    display: inline-block;
    width: 19.5%;
    text-align: center;
}

ul.summary-list > li > a > i {
    display:block;
    font-size: 18px;
    padding-bottom: 5px;
}

ul.summary-list > li > a {
    padding: 10px 0;
    display: inline-block;
    color: #818181;
}

ul.summary-list > li  {
    border-right: 1px solid #eaeaea;
}

ul.summary-list > li:last-child  {
    border-right: none;
}

.activity {
    width: 100%;
    float: left;
    margin-bottom: 10px;
}

.activity.alt {
    width: 100%;
    float: right;
    margin-bottom: 10px;
}

.activity span {
    float: left;
}

.activity.alt span {
    float: right;
}
/*.activity span, .activity.alt span {
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    background: #eee;
    text-align: center;
    color: #fff;
    font-size: 16px;
}*/

.activity.terques span {
    background: #8dd7d6;
}

.activity.terques h4 {
    color: #8dd7d6;
}
.activity.purple span {
    background: #b984dc;
}

.activity.purple h4 {
    color: #b984dc;
}
.activity.blue span {
    background: #90b4e6;
}

.activity.blue h4 {
    color: #90b4e6;
}
.activity.green span {
    background: #4cd964;
}

.activity.green h4 {
    color: #4cd964;
}

.activity h4 {
    margin-top:0 ;
    font-size: 16px;
}

.activity p {
    margin-bottom: 0;
    font-size: 13px;
}

.activity .activity-desk i, .activity.alt .activity-desk i {
    float: left;
    font-size: 18px;
    margin-right: 10px;
    color: #bebebe;
}

.activity .activity-desk {
    margin-left: 70px;
    position: relative;
}

.activity.alt .activity-desk {
    margin-right: 70px;
    position: relative;
}

.activity.alt .activity-desk .panel {
    float: right;
    position: relative;
    border-radius: 10px;
    -webkit-border-radius: 10px;
}

.activity .activity-desk .panel {
    background: #F4F4F4 ;
    display: inline-block;
}
.activity.alt .activity-desk .panel {
    background: #688a7e ;
    color: #ffffff;
    display: inline-block;
}


.activity .activity-desk .arrow {
    border-right: 8px solid #F4F4F4 !important;
}
.activity .activity-desk .arrow {
    border-bottom: 8px solid transparent;
    border-top: 8px solid transparent;
    display: block;
    height: 0;
    left: -7px;
    position: absolute;
    top: 13px;
    width: 0;
}

.activity-desk .arrow-alt {
    border-left: 8px solid #688a7e !important;
}

.activity-desk .arrow-alt {
    border-bottom: 8px solid transparent;
    border-top: 8px solid transparent;
    display: block;
    height: 0;
    right: -7px;
    position: absolute;
    top: 13px;
    width: 0;
}

.activity-desk .album {
    display: inline-block;
    margin-top: 10px;
}

.activity-desk .album a{
    margin-right: 10px;
}

.activity-desk .album a:last-child{
    margin-right: 0px;
}

/*invoice*/

.invoice-list  {
    margin-bottom: 30px;
}

.invoice-list h4 {
    font-weight: 300;
    font-size: 16px;
}

.invoice-block {
    text-align: right;
}
.invoice-paid{
    color: #4cd964;
}

ul.amounts li {
    background: #f5f5f5;
    margin-bottom: 5px;
    padding: 10px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    font-weight: 300;
}

.invoice-btn a{
    font-weight: 300;
    margin: 0 5px;
    font-size: 16px;
}

.company-logo {
    margin: 30px;
}


.panel-heading h3{
    margin: 0px !important;
}
.panel-primary > .panel-heading.navyblue {
    background-color: #2A3542;
    border-color: #2A3542;
    color: #FFFFFF;
}

/*table*/

.table-advance tr td {
    vertical-align: middle !important;
}

.no-border {
    border-bottom: none;
}

.dataTables_length , .dataTables_filter{
    padding:15px;
}
.dataTables_info{
    padding:0 15px;
}

.dataTables_filter {
    float: right;
}

.dataTables_length select {
    width: 65px;
    padding:5px 8px;
}

.dataTables_length label, .dataTables_filter label {
    font-weight: 300;
}

.dataTables_filter label {
    width: 100%;
}

.dataTables_filter label input {
    width: 78%;
}

.border-top {
    border-top: 1px solid #ddd;
}

.dataTables_paginate.paging_bootstrap.pagination li {
    float: left;
    margin: 0 1px;
    border: 1px solid #ddd;
    border-radius: 3px;
    -webkit-border-radius: 3px;
}

.dataTables_paginate.paging_bootstrap.pagination li.disabled a{
    color: #c7c7c7;
}
.dataTables_paginate.paging_bootstrap.pagination li a{
    color: #797979;
    padding: 5px 10px;
    display: inline-block;
}

.dataTables_paginate.paging_bootstrap.pagination li:hover a, .dataTables_paginate.paging_bootstrap.pagination li.active a{
    color: #797979;
    background: #eee;
    border-radius: 3px;
    -webkit-border-radius: 3px;
}

.dataTables_paginate.paging_bootstrap.pagination {
    float: right;
    margin-right: 15px;
    margin-top: -5px;
    margin-bottom: 15px;

}

.dataTable tr:last-child {
    border-bottom: 1px solid #ddd;
}


/*button*/

.btn-row {
    margin-bottom: 10px;
}

/*tabs*/

.tab-head {
    background: #688a7e;
    display: inline-block;
    width: 100%;
    margin-top: 60px;
}

.tab-container {
    margin-top: 10px;
}

.tab-head .nav-tabs > li > a {
    border-radius: 0;
    margin-right: 1px;
    color: #fff;
}

.tab-head .nav-tabs > li.active > a, .tab-head .nav-tabs > li > a:hover, .tab-head .nav-tabs > li.active > a:hover, .tab-head .nav-tabs > li.active > a:focus {
    background-color: #f1f2f7;
    border-color: #f1f2f7;
    color: #797979;
}

/*general page*/

.progress-xs {
    height: 8px;
}

.progress-sm {
    height: 12px;
}

.panel-heading .nav {
    border: medium none;
    font-size: 13px;
	margin: -0px -15px -11px;
}

.tab-bg-primary {
    background: #688a7e;    
    border-bottom: none;
	color:#ffffff;
}

.tab-bg-info {
    background: #324c57; 
	
    border-bottom: none;
}
.tab-bg-info.panel-heading .nav > li.active > a, .tab-bg-info.panel-heading .nav > li > a:hover{
    color: #36464d;
}

.panel-heading .nav > li > a,
.panel-heading .nav > li.active > a, .panel-heading .nav > li.active > a:hover, .panel-heading .nav > li.active > a:focus {
    border-width: 0;
    border-radius: 0;
}

.panel-heading .nav > li > a {
    color: #fff;
}

.panel-heading .nav > li.active > a, .panel-heading .nav > li > a:hover {
    color: #688a7e;
    background: #fff;
}

.tab-right {
    height: 38px;
}

.panel-heading.tab-right .nav > li:first-child.active > a, .tab-right.panel-heading .nav > li:first-child > a:hover {
    border-radius:  0 ;
    -webkit-border-radius: 0 ;
}

.panel-heading.tab-right .nav > li:last-child.active > a, .tab-right.panel-heading .nav > li:last-child > a:hover {
    border-radius:  0 4px 0 0;
    -webkit-border-radius: 0 4px 0 0;
}

.panel-heading.tab-right .nav-tabs > li > a {
    margin-left: 1px;
    margin-right: 0px;
}

.m-bot20 {
    margin-bottom: 20px;
}

.m-bot-none {
    margin-bottom: 0;
}

.wht-color {
    color: #fff;
}

.close-sm {
    font-size: 14px;
}

/*carousel*/

.carousel-indicators li {
    background:  rgba(0, 0, 0, 0.2) ;
    border:  none;
    transition:background-color 0.25s ease 0s;
    -moz-transition:background-color 0.25s ease 0s;
    -webkit-transition:background-color 0.25s ease 0s;
}

.carousel-indicators .active {
    background:#00a0df;
    height: 10px;
    margin: 1px;
    width: 10px;
}

.carousel-indicators.out {
    bottom: -5px;
}

.carousel-indicators.out {
    bottom: -5px;
}

.carousel-control {
    color: #999999;
    text-shadow: none;
    width: 45px;
}

.carousel-control i {
    display: inline-block;
    height: 25px;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    position: absolute;
    top: 50%;
    width: 20px;
    z-index: 5;
}


.carousel-control.left, .carousel-control.right {
    background: none;
    filter:none;
}

.carousel-control:hover, .carousel-control:focus {
    color: #CCCCCC;
    opacity: 0.9;
    text-decoration: none;
}

.carousel-inner h3 {
    font-weight: 300;
    font-size: 16px;
    margin: 0;
}

.carousel-inner {
    margin-bottom: 15px;
}

/*gritter*/
.gritter-close {
    left: auto !important;
    right: 3px !important;
}


/*form*/


.sm-input {
    width: 175px;
}

.form-horizontal .form-group {
    border-bottom: 1px solid #eff2f7;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.form-horizontal .form-group:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}


.form-horizontal .form-group .help-block {
    margin-bottom: 0;
}


.round-input {
    border-radius: 500px;
    -webkit-border-radius: 500px;
}


.m-bot15 {
    margin-bottom: 15px;
}

.form-horizontal .checkbox-inline > input {
    margin-top: 1px;
	border:none;
}


/*form validation*/

.form-validate .form-group label.error {
    display: inline;
    margin: 5px 0;
    color: #00a0df;
    font-weight: 400;
}

input:focus:invalid:focus, textarea:focus:invalid:focus, select:focus:invalid:focus, .form-validate .form-group input.error , .form-validate .form-group textarea.error{
    border-color: #00a0df !important;
}

#register_form label.error {
    display: inline;
    margin:5px 0px;
    width: auto;
    color: #00a0df;
}

.checkbox, .checkbox:hover, .checkbox:focus  {
	border:none;
}


/*slider*/
table.sliders tr td {
    padding: 30px 0;
    border:none;
}

.slider {
    margin-top: 3px;
}

.slider-info {
    padding-top: 10px;
}

.sliders .ui-widget-header {
    background: #688a7e !important;
    border-radius: 15px !important;
    -webkit-border-radius: 15px !important;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
    border-bottom-right-radius: 0 !important;
}
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
    border-bottom-left-radius: 0 !important;
}
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
    border-top-right-radius: 0 !important;
}
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
    border-top-left-radius: 0 !important;
}


#eq span {
    height:120px; float:left; margin:15px
}



.ui-slider-horizontal {
    height: 8px !important;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -0.57em   !important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
   /* background: #fff !important;*/
    /*border: 3px solid #22bacf !important;*/
   /* box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;*/
}

.ui-slider-vertical {
    width: 8px !important;
}

.ui-slider-vertical .ui-slider-handle {
    left: -0.5em  !important;
}

.ui-slider .ui-slider-handle {
    cursor: default;
    height: 1.6em;
    position: absolute;
    width: 1.6em;
    z-index: 2;
}

.bound-s {
    width: 90px;
    margin-bottom: 15px;
}


/*----switch ----*/


.has-switch {
    border-radius: 30px;
    -webkit-border-radius: 30px;
    display: inline-block;
    cursor: pointer;
    line-height: 1.231;
    overflow: hidden;
    position: relative;
    text-align: left;
    width: 80px;
    -webkit-mask: url('../img/mask.png') 0 0 no-repeat;
    mask: url('../img/mask.png') 0 0 no-repeat;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.has-switch.deactivate {
    opacity: 0.5;
    filter: alpha(opacity=50);
    cursor: default !important;
}
.has-switch.deactivate label,
.has-switch.deactivate span {
    cursor: default !important;
}
.has-switch > div {
    width: 162%;
    position: relative;
    top: 0;
}
.has-switch > div.switch-animate {
    -webkit-transition: left 0.25s ease-out;
    -moz-transition: left 0.25s ease-out;
    -o-transition: left 0.25s ease-out;
    transition: left 0.25s ease-out;
    -webkit-backface-visibility: hidden;
}
.has-switch > div.switch-off {
    left: -63%;
}
.has-switch > div.switch-off label {
    background-color: #7f8c9a;
    border-color: #bdc3c7;
    -webkit-box-shadow: -1px 0 0 rgba(255, 255, 255, 0.5);
    -moz-box-shadow: -1px 0 0 rgba(255, 255, 255, 0.5);
    box-shadow: -1px 0 0 rgba(255, 255, 255, 0.5);
}
.has-switch > div.switch-on {
    left: 0%;
}
.has-switch > div.switch-on label {
    background-color: #34aadc;
}
.has-switch input[type=checkbox] {
    display: none;
}
.has-switch span {
    cursor: pointer;
    font-size: 14.994px;
    font-weight: 700;
    float: left;
    height: 29px;
    line-height: 19px;
    margin: 0;
    padding-bottom: 6px;
    padding-top: 5px;
    position: relative;
    text-align: center;
    width: 50%;
    z-index: 1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.25s ease-out;
    -moz-transition: 0.25s ease-out;
    -o-transition: 0.25s ease-out;
    transition: 0.25s ease-out;
    -webkit-backface-visibility: hidden;
}
.has-switch span.switch-left {
    border-radius: 30px 0 0 30px;
    background-color: #2A3542;
    color: #34aadc;
    border-left: 1px solid transparent;
}
.has-switch span.switch-right {
    border-radius: 0 30px 30px 0;
    background-color: #bdc3c7;
    color: #ffffff;
    text-indent: 7px;
}
.has-switch span.switch-right [class*="fui-"] {
    text-indent: 0;
}
.has-switch label {
    border: 4px solid #2A3542;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    float: left;
    height: 29px;
    margin: 0 -21px 0 -14px;
    padding: 0;
    position: relative;
    vertical-align: middle;
    width: 29px;
    z-index: 100;
    -webkit-transition: 0.25s ease-out;
    -moz-transition: 0.25s ease-out;
    -o-transition: 0.25s ease-out;
    transition: 0.25s ease-out;
    -webkit-backface-visibility: hidden;
}
.switch-square {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -webkit-mask: url('../img/mask.png') 0 0 no-repeat;
    mask: url('../img/mask.png') 0 0 no-repeat;
}
.switch-square > div.switch-off label {
    border-color: #7f8c9a;
    border-radius: 6px 0 0 6px;
}
.switch-square span.switch-left {
    border-radius: 6px 0 0 6px;
}
.switch-square span.switch-left [class*="fui-"] {
    text-indent: -10px;
}
.switch-square span.switch-right {
    border-radius: 0 6px 6px 0;
}
.switch-square span.switch-right [class*="fui-"] {
    text-indent: 5px;
}
.switch-square label {
    border-radius: 0 6px 6px 0;
    border-color: #34aadc;
}


/*tag input*/

.tagsinput {
    border: 1px solid #e3e6ed;
    border-radius: 6px;
    height: 100px;
    padding: 6px 1px 1px 6px;
    overflow-y: auto;
    text-align: left;
}
.tagsinput .tag {
    border-radius: 4px;
    background-color: #688a7e;
    color: #ffffff;
    cursor: pointer;
    margin-right: 5px;
    margin-bottom: 5px;
    overflow: hidden;
    line-height: 15px;
    padding: 6px 13px 8px 19px;
    position: relative;
    vertical-align: middle;
    display: inline-block;
    zoom: 1;
    *display: inline;
    -webkit-transition: 0.14s linear;
    -moz-transition: 0.14s linear;
    -o-transition: 0.14s linear;
    transition: 0.14s linear;
    -webkit-backface-visibility: hidden;
}
.tagsinput .tag:hover {
    background-color: rgba(0,122,255,0.7);
    color: #ffffff;
    padding-left: 12px;
    padding-right: 20px;
}
.tagsinput .tag:hover .tagsinput-remove-link {
    color: #ffffff;
    opacity: 1;
    display: block\9;
}
.tagsinput input {
    background: transparent;
    border: none;
    color: #34495e;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    margin: 0px;
    padding: 0 0 0 5px;
    outline: 0;
    margin-right: 5px;
    margin-bottom: 5px;
    width: 12px;
}
.tagsinput-remove-link {
    bottom: 0;
    color: #ffffff;
    cursor: pointer;
    font-size: 12px;
    opacity: 0;
    padding: 7px 7px 5px 0;
    position: absolute;
    right: 0;
    text-align: right;
    text-decoration: none;
    top: 0;
    width: 100%;
    z-index: 2;
    display: none\9;
}
.tagsinput-remove-link:before {
    color: #ffffff;
    content: "\f00d";
    font-family: "FontAwesome";
}
.tagsinput-add-container {
    vertical-align: middle;
    display: inline-block;
    zoom: 1;
    *display: inline;
}
.tagsinput-add {
    background-color: #d6dbdf;
    border-radius: 3px;
    color: #ffffff;
    cursor: pointer;
    margin-bottom: 5px;
    padding: 6px 9px;
    display: inline-block;
    zoom: 1;
    *display: inline;
    -webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
    -webkit-backface-visibility: hidden;
}
.tagsinput-add:hover {
    background-color: #688a7e;
}
.tagsinput-add:before {
    content: "\f067";
    font-family: "FontAwesome";
}
.tags_clear {
    clear: both;
    width: 100%;
    height: 0px;
}


/*checkbox & radio style*/


.checkboxes label, .radios label {
    display: block;
    cursor: pointer;
    line-height: 20px;
    padding-bottom: 7px;
    font-weight: 300;
}

.radios {
    padding-top: 18px;
}

.label_check input,
.label_radio input {
    margin-right: 5px;
}

.has-js .label_check,
.has-js .label_radio {
    padding-left: 34px;
}

.has-js .label_radio {
    background: url(/img/checkbox/radio-off.png) no-repeat;
}

.has-js .label_check {
    background: url(/img/checkbox/check-off.png) no-repeat;
}

.has-js label.c_on {
    background: url(/img/checkbox/check-on.png) no-repeat;
}

.has-js label.r_on {
    background: url(/img/checkbox/radio-on.png) no-repeat;
}

.has-js .label_check input,
.has-js .label_radio input {
    position: absolute;
    left: -9999px;
}

/*date picker*/


.add-on {
    border: 1px solid #E2E2E4;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    float: right;
    margin-right: -37px;
    margin-top: -34px;
    padding: 8px;
    text-align: center;
    background: #EEEEEE;
}

.daterangepicker .ranges .range_inputs > div:nth-child(2) {
    margin-bottom: 10px;
    padding-left: 0px;
}

.daterangepicker .ranges label {
    padding-bottom: 0;
    padding-top: 8px;
}


.daterangepicker td.active, .daterangepicker td.active:hover,
.datepicker td.active:hover, .datepicker td.active:hover:hover, .datepicker td.active:active, .datepicker td.active:hover:active, .datepicker td.active.active, .datepicker td.active.active:hover, .datepicker td.active.disabled, .datepicker td.active.disabled:hover, .datepicker td.active[disabled], .datepicker td.active[disabled]:hover,
.datepicker td span.active:hover, .datepicker td span.active:active, .datepicker td span.active.active, .datepicker td span.active.disabled, .datepicker td span.active[disabled]{
    background: #688a7e;
}

.daterangepicker .calendar th, .daterangepicker .calendar td {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    text-align: center;
    white-space: nowrap;
}

.daterangepicker td.active, .daterangepicker td.active:hover, .datepicker td.active, .datepicker td.active:hover, .datepicker td span.active {
    text-shadow: none;
}

.datepicker th.switch {
    width: 125px;
}

.datepicker td span {
    height: 40px;
    line-height: 40px;
}


/*ck editor*/

.cke_top, .cke_bottom {
    background: #F5F5F5 !important;
    background: -moz-linear-gradient(center top , #F5F5F5, #F5F5F5) repeat scroll 0 0 #F5F5F5 !important;
    background: -webkit-linear-gradient(center top , #F5F5F5, #F5F5F5) repeat scroll 0 0 #F5F5F5 !important;
    background: -o-linear-gradient(center top , #F5F5F5, #F5F5F5) repeat scroll 0 0 #F5F5F5 !important;
    box-shadow: none;
    padding: 6px 8px 2px;
}

.cke_top {
    border-bottom: 1px solid #cccccc !important;
}

.cke_chrome {
    border: 1px solid #cccccc !important;
    box-shadow: none !important;
    display: block;
    padding: 0;
}

/*form wizard*/

.stepy-tab {
    text-align: center;
}

.stepy-tab ul{
    display: inline-block;
}

.stepy-tab ul li {
    float: left;
}

.step legend {
    border: none;
}

.button-back {
    float: left;
}

.button-next, .finish {
    float: right;
}

.button-back, .button-next, .finish {
    cursor: pointer;  text-decoration: none;
}

.step {
    clear: left;
}
.step label {
    display: block;
}


.stepy-titles li {
    color: #757575;
    cursor: pointer;
    float: left;
    margin: 10px 15px;
}

.stepy-titles li span { display: block; }

.stepy-titles li.current-step div {
    color: #fff;
    cursor: auto;
    background: #688a7e;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
}

.stepy-titles li div{
    font-size:16px;
    font-weight: 300;
    background: #eee;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
}


/*widget*/

.user-heading.alt {
    display: inline-block;
    width: 100%;
    text-align: left;
}

.alt.green-bg {
    background: #4cd964;
}

.profile-nav.alt.green-border ul > li > a:hover, .profile-nav.alt.green-border ul > li > a:focus, .profile-nav.alt.green-border ul li.active a {
    border-left: 5px solid #4cd964;
}

.user-heading.alt a {
    float: left;
    margin-right: 15px;
    margin-left: -10px;
    display: inline-block;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    -webkit-border-radius: 50%;
}
.user-heading.alt a img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
}

.twt-feed {
    border-radius: 4px 4px 0 0;
    -webkit-border-radius: 4px 4px 0 0;
    color: #FFFFFF;
    padding: 10px;
    position: relative;
    text-align: center;
}

.twt-feed.blue-bg {
    background: #00a0df;
}

.twt-feed h1 {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 5px;
}

.twt-feed a  {
    border: 8px solid #fff;
    border-radius: 50%;
    -webit-border-radius: 50%;
    display: inline-block;
    margin-bottom: -55px;
}

.twt-feed a img {
    height: 112px;
    width: 112px;
    border-radius: 50%;
    -webit-border-radius: 50%;
}

.twt-category {
    display: inline-block;
    margin-bottom: 11px;
    margin-top: 55px;
    width: 100%;
}
.profile-widget-data{
    display: inline-block;
    margin-bottom: 10px;
    margin-top: 15px;
    width: 100%;    
}

.twt-category ul li, .profile-widget-data ul li,.profile-nav ul > li{
    color: #89817f;
    font-size: 13px;
    border-bottom: none;
}

.twt-category h5  {
    font-size: 20px;
    font-weight: 300;
}

.twt-write .t-text-area {
    border: 1px solid #eeeeee;
    border-radius: 0;
}

.twt-footer {
    padding: 10px 15px;
}

.btn-space {
    padding-left: 11.6%;
    padding-right: 11%;
}

.p-head {
    color: #f77b6f;
    font-weight: 400;
    font-size: 14px;
}

.cmt-head {
    font-weight: 400;
    font-size: 13px;
}

.p-thumb img {
    width: 50px;    
    border-radius: 3px;
    -webkit-border-radius: 3px;
}

.tasi-tab .media-body p {
    /*color: #b8bac6;*/
}


/*Timeline chat*/

.chat-form {
    margin-top: 25px;
    clear: both;
}

.chat-form .input-cont {
    margin-bottom: 10px;
}

.chat-form .input-cont input {
    margin-bottom: 0px;
}

.chat-form .input-cont input{
    border: 1px solid #d3d3d3 !important;
    margin-top:0;
    min-height: 45px;
}

.chat-form .input-cont input {
    background-color: #fff !important;
}

.chat-features a {
    margin-left: 10px;
}

.chat-features a i{
    color: #d0d0d0;
}

.profile-activity:before {
    background: rgba(0, 0, 0, 0.1);
    bottom: 0;
    top: 0;
    width: 2px;
}
/*.profile-activity:before, .act-time:before, .act-time .text:before {
    content: "";
    left: 60px;
    position: absolute;
    top: -2px;
}*/
.profile-activity, .act-time , .profile-activity .act-in, .profile-activity .act-out {
    position: relative;
}


.profile-activity .act-in  .arrow {
    /*border-right: 8px solid #F4F4F4 !important;*/
}
.profile-activity .act-in .arrow {
    border-bottom: 8px solid transparent;
    border-top: 8px solid transparent;
    display: block;
    height: 0;
    left: -8px;
    position: absolute;
    top: 13px;
    width: 0;
}

.profile-activity .act-out  .arrow {
    /*border-right: 8px solid #34aadc !important;*/
}
.profile-activity .act-out .arrow {
    border-bottom: 8px solid transparent;
    border-top: 8px solid transparent;
    display: block;
    height: 0;
    left: -8px;
    position: absolute;
    top: 13px;
    width: 0;
}

.act-time:first-child:before {
    margin-top: 16px;
}
.act-time:before {
    background:#CCCCCC;
    border: 2px solid #FAFAFA;
    border-radius: 100px;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;
    height: 14px;
    margin: 23px 0 0 -6px;
    width: 14px;
}
.act-time:hover:before {
    background: #34aadc;
}
.act-time:first-child {
    padding-top: 0;
}
.activity-img {
    float: left;
    margin-right: 30px;
    overflow: hidden;
}
.activity-img img {
    display: block;
    height: 44px;
    width: 44px;
}
.activity-body {
    /*margin-left: 80px;*/
}
.act-time .act-in .text {
    border: 1px solid #e3e6ed;
    padding: 10px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
}

.act-time .act-out .text {
    border: 1px solid #e3e6ed;
    padding: 10px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
}
.act-time p {
    margin: 0;
}
.act-time .attribution {
    font-size: 11px;
    margin: 0px 0 5px;
}
.act-time {
    overflow: hidden;
    padding:8px 0;
}

.act-in a, .act-in a:hover{
    color: #b64c4c;
    text-decoration: none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    margin-right: 10px;
    font-weight: 400;
    font-size: 13px;
}
.act-out a, .act-out a:hover{
    color: #288f98;
    text-decoration: none;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    margin-right: 10px;
    font-weight: 400;
    font-size: 13px;
}

.messages-wrapper {
  position: relative;
}
.message {
    border-radius: 20px 20px 20px 20px;
    margin: 0 15px 10px;
    padding: 5px 20px;
    position: relative;
}
.message.to {
    background-color: #2095FE;
    color: #fff;
    margin-left: 80px;
}
.message.from {
    background-color: #E5E4E9;
    color: #363636;
    margin-right: 80px;
}
.message.to + .message.to,
.message.from + .message.from {
  margin-top: -7px;
}
.message:before {
    border-color: #2095FE;
    border-radius: 50% 50% 50% 50%;
    border-style: solid;
    border-width: 0 20px;
    bottom: 0;
    clip: rect(20px, 35px, 42px, 0px);
    content: " ";
    height: 40px;
    position: absolute;
    right: -50px;
    width: 30px;
    z-index: -1;
}
.message.from:before {
    border-color: #E5E4E9;
    left: -50px;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

/*custom select*/

span.customSelect {
    font-size:12px;
    background-color: #ffffff;
    padding:10px;
    border:1px solid #EAEAEA;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    color: #A4AABA;
}
span.customSelect.changed {
    background-color: #fff;
}
.customSelectInner {
    background:url(/img/customSelect-arrow.gif) no-repeat center right;
}


/*------------------POPUPS------------------------*/
#fade {
	display: none;
	background: #000; 
	position: fixed; left: 0; top: 0; 
	z-index: 10;
	width: 100%; height: 100%;
	opacity: .80;
	z-index: 9999;
}
.popup_block{
	display: none;
	background: #fff;
	padding-bottom: 20px;
	padding-right: 20px;
	padding-left: 20px ;
	border-bottom: 20px solid #ddd;
	border-right: 20px solid #ddd;
	border-left: 20px solid #ddd;
	float: left;
	font-size: 1.2em;
	position: fixed;
	top: 25%; left: 50%;
	z-index: 99999;
	-webkit-box-shadow: 0px 0px 20px #000;
	-moz-box-shadow: 0px 0px 20px #000;
	box-shadow: 0px 0px 20px #000;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	margin-top:5px;
}
.popup_block h2, .h2{
	text-align:center;
	background-color: #ddd;
	margin:0 -20px 20px -20px;
	margin-top:0px;
	cursor:move;
}
  
img.btn_close {
	float: right; 
	margin: -55px -55px 0 0;
}
.popup p {
	padding: 5px 10px;
	margin: 5px 0;
}
/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {
	position: absolute;
}
*html .popup_block {
	position: absolute;
}

/*******************LOADER*******************/
#overlay5, #overlay5_{  
	padding:20px;  
	position:relative;  
	float:left;  
	overflow:hidden;  
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
	z-index:9999;
}  
      
#overlay5 .transparency  ,#overlay5_ .transparency 
{  
    position: fixed;
	/*filter:alpha(opacity=50);
	-moz-opacity:0.5;  
	opacity:0.5;   */ 
	filter:alpha(opacity=0);   
	-moz-opacity:0;   
	opacity:0;   
	background : none repeat scroll 0 0 #000000;
	width:100%;  
	height:100%;  
	position:absolute;  
	top:0px;  
	left:0px;  
	z-index:3110;  
}  
      
#overlay5 .labelButton, #overlay5_ .labelButton{
	padding:10px;
    position: absolute;
    top: 50%;
    left: 39%;
	text-align:center;
	background: white;
	z-index:9999999; 
}
#overlay5 .loaderturn,#overlay5_ .loaderturn{
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid blue;
  border-right: 16px solid green;
  border-bottom: 16px solid red;
  border-left: 16px solid pink;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  margin: auto;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/**les tables*/

.table_agenda{
	width:100%;
	margin-bottom:10px;
}
.table_agenda .choose{
	color: yellow !important;
	border: 2px solid blue !important;

}
.table_agenda tr{
	height:23px;
	border: 1px solid #c1c1c1 !important;
}




.table_agenda thead th i{
	float:right;
}
.table_agenda td{
	border: 1px solid #c1c1c1 !important;
}
.table_agenda tbody td{
	white-space:nowrap;
}
.sans_nowrap tbody td{
	white-space:normal !important;
}
.asc {
    background-image: url("/img/asc.png");
    float: right;
    height: 16px;
    width: 16px;
}
.desc {
    background-image: url("/img/desc.png");
    float: right;
    height: 16px;
    width: 16px;
}
.none {
    background-image: url("/img/none.png");
    background-repeat: no-repeat;
    float: right;
    height: 16px;
    width: 16px;
}

.main-text {
    font-size: 25px;
    font-weight: 600;
}
.table_agenda .input_table_agenda_th{
	width: 100%;
	border-radius:0px;
	height:23px;
	padding:1px 4px;
}
.ui-resizable-helper { 
  border: 2px solid grey; 
  z-index:9999999;
  
}
.input_siren {
	width:85px;
}
.input_nic {
	width:49px;
}
  
.input_cp {
	width:51px;
}


.table_planning .day_left{
	float:left;
	width:13%;
	border-right:1px solid grey;
	background-color :#ffffff !important
}

.table_planning {
	font-size:12px;
	float:left;
	border-collapse:separate!important;
	border:1px solid grey !important;
}
.table_planning th{
	background-image:radial-gradient(#93c1e1, #579ad5);
	background:-webkit-radial-gradient(#93c1e1, #579ad5);
	color:#ffffff;
}

.table_planning .day_actif:hover{
    background-color:grey;
	color:#ffffff;
}
.table_planning .day_actif{

	border-bottom:1px dashed grey !important;
	cursor:pointer;
	padding:0px;
}
.table_planning div {
	font-size:10px;
	padding:0px;
	height:100%;
}
.table_planning thead tr{
	height:12px;
	border-bottom:1px solid grey !important;
}
.table_planning tbody td{
}
.table_planning tbody td:not(:last-child){
	border-right:1px solid grey !important;
}


.table_planning tbody tr{
	height:13px;
}

.table_agenda > tbody > tr.danger > td, .table_agenda > tbody > tr.danger > th, .table_agenda > tbody > tr > td.danger, .table_agenda > tbody > tr > th.danger, .table_agenda > tfoot > tr.danger > td, .table_agenda > tfoot > tr.danger > th, .table_agenda > tfoot > tr > td.danger, .table_agenda > tfoot > tr > th.danger, .table_agenda > thead > tr.danger > td, .table_agenda > thead > tr.danger > th, .table_agenda > thead > tr > td.danger, .table_agenda > thead > tr > th.danger{
	background-color:#f5c6e1;
}

.table_agenda > thead > tr > td.success,
.table_agenda > tbody > tr > td.success,
.table_agenda > tfoot > tr > td.success,
.table_agenda > thead > tr > th.success,
.table_agenda > tbody > tr > th.success,
.table_agenda > tfoot > tr > th.success,
.table_agenda > thead > tr.success > td,
.table_agenda > tbody > tr.success > td,
.table_agenda > tfoot > tr.success > td,
.table_agenda > thead > tr.success > th,
.table_agenda > tbody > tr.success > th,
.table_agenda > tfoot > tr.success > th {
  background-color: #dff8e3;
}


/*timeline*/

/** timeline box structure **/
.timeline {
  list-style: none;
  padding: 20px 0 20px;
  position: relative;
}

.timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 3px;
  background-color: #eee;
  left: 50%;
  margin-left: -1.5px;
}

.tldate {
  display: block;
  width: 200px;
  background: #414141;
  border: 3px solid #212121;
  color: #ededed;
  margin: 0 auto;
  padding: 3px 0;
  font-weight: bold;
  text-align: center;
  -webkit-box-shadow: 0 0 11px rgba(0,0,0,0.35);
}

.timeline li {
  margin-bottom: 25px;
  position: relative;
}

.timeline li:before, .timeline li:after {
  content: " ";
  display: table;
}
.timeline li:after {
  clear: both;
}
.timeline li:before, .timeline li:after {
  content: " ";
  display: table;
}

/** timeline panels **/
.timeline li .timeline-panel {
  width: 46%;
  float: left;
  background: #fff;
  border: 1px solid #d4d4d4;
  padding: 20px;
  position: relative;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

/** panel arrows **/
.timeline li .timeline-panel:before {
  position: absolute;
  top: 26px;
  right: -15px;
  display: inline-block;
  border-top: 15px solid transparent;
  border-left: 15px solid #ccc;
  border-right: 0 solid #ccc;
  border-bottom: 15px solid transparent;
  content: " ";
}

.timeline li .timeline-panel:after {
  position: absolute;
  top: 27px;
  right: -14px;
  display: inline-block;
  border-top: 14px solid transparent;
  border-left: 14px solid #fff;
  border-right: 0 solid #fff;
  border-bottom: 14px solid transparent;
  content: " ";
}
.timeline li .timeline-panel.noarrow:before, .timeline li .timeline-panel.noarrow:after {
  top:0;
  right:0;
  display: none;
  border: 0;
}

.timeline li.timeline-inverted .timeline-panel {
  float: right;
}

.timeline li.timeline-inverted .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}

.timeline li.timeline-inverted .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}


/** timeline circle icons **/
.timeline li .tl-circ {
  position: absolute;
  top: 23px;
  left: 50%;
  text-align: center;
  background: #6a8db3;
  color: #fff;
  width: 35px;
  height: 35px;
  line-height: 35px;
  margin-left: -16px;
  border: 3px solid #90acc7;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  z-index: 100;
}


/** timeline content **/

.tl-heading h4 {
  margin: 0;
  color: #c25b4e;
}

.tl-body p, .tl-body ul {
  margin-bottom: 0;
}

.tl-body > p + p {
  margin-top: 5px;
}

/** media queries **/
@media (max-width: 991px) {
  .timeline li .timeline-panel {
    width: 44%;
  }
}

@media (max-width: 700px) {
  .page-header h1 { font-size: 1.8em; }
  
  ul.timeline:before {
    left: 40px;
  }
  
  .tldate { width: 140px; }

  ul.timeline li .timeline-panel {
    width: calc(100% - 90px);
    width: -moz-calc(100% - 90px);
    width: -webkit-calc(100% - 90px);
  }

  ul.timeline li .tl-circ {
    top: 22px;
    left: 22px;
    margin-left: 0;

  }
  ul.timeline > li > .tldate {
    margin: 0;
  }

  ul.timeline > li > .timeline-panel {
    float: right;
  }

  ul.timeline > li > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
  }

  ul.timeline > li > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
  }
}

.tree_time {
    min-height:20px;
	padding-right:2px;
	padding-bottom:2px;
    /*padding:19px;*/
    margin-bottom:20px;
    background-color:#fbfbfb;
    border:1px solid #999;
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
  /*  border-radius:4px;*/
    -webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05)
}

.tree_time li {
    list-style-type:none;
    margin:0;
    padding:10px 5px 0 5px;
    position:relative
}
.tree_time li::before, .tree_time li::after {
    content:'';
    left:-20px;
    position:absolute;
    right:auto
}
.tree_time li::before {
    border-left:1px solid #999;
    bottom:50px;
    height:100%;
    top:0;
    width:1px
}
.tree_time li::after {
    border-top:1px solid #999;
    height:20px;
    top:25px;
    width:25px
}
.tree_time li span {
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border:1px solid #999;
    border-radius:5px;
    display:inline-block;
    padding:3px 8px;
    text-decoration:none
}
.tree_time li.parent_li>span {
    cursor:pointer
}
.tree_time>ul>li::before, .tree_time>ul>li::after {
    border:0
}
.tree_time li:last-child::before {
    height:30px
}
.tree_time li.parent_li>span:hover, .tree_time li.parent_li>span:hover+ul li span {
    background:#eee;
    border:1px solid #94a0b4;
    color:#000
}

#connected .panel-heading, .modal-header {
    background: #F7F7F7;
    color: #688a7e;
}

.boite_resizables,.modal-content {
  position: relative;
}


.modal-content,.modal-body {
	height: 100%;
	padding-bottom: 65px !important;
	  overflow: hidden;
	  overflow-y: auto;
}


.modal-footer,.panel-footer {
  width: 100%;
  position: absolute;
  bottom: 0;
}

.ui-resizable-s{
	bottom: 0px;
}

.boite_resizables {
	display: flex;
	flex-direction: column;
}

.modal-body {
	flex: 1;
}
#petite_boite_menu .modal-body{
	padding-bottom: 10px !important;
}
#petite_boite_menu .modal-header .close{
	margin-top: -6px;
}
 
.bloc_question:hover{ box-shadow :0 -1px 2px 2px; }.bloc_question{ border-top:3px solid black;margin-bottom:16px; padding:15px; }.table_grille tr:nth-child(odd){background-color:#eeeeee}.table_grille tr{background-color:#ffffff;}.ligne_fin_success{border: 1px solid #5cb85c}.ligne_fin_error{border: 1px solid #ff2d55 !important}.bloc_erreur_img{background-image: url('img/error.png');background-color:#ff2d55  !important;background-size: 37px 32px;}.bloc_success_img{background-image: url('img/ok.png');background-color:#5cb85c !important;background-size: 37px 32px;}.rep_eval_col_droit{padding-left:10px;padding: 17px;}.rep_eval_col_gauche{background-position: center center;background-repeat: no-repeat;vertical-align: middle;width: 89px;padding: 17px;}.bloc_question {box-shadow: 0 2px 1px -1px rgba(0,0,0,0.2),0 1px 1px 0 rgba(0,0,0,0.141),0 1px 3px 0 rgba(0,0,0,0.122);transition: box-shadow 280ms cubic-bezier(0.4,0.0,0.2,1);border: 1px solid #dadce0;border-radius: 8px;background-color: #fff  !important;padding-top: 2px;}#tab_visu{background-color: rgb(238, 238, 238);}#contenu_qcm_galaxy{background-color: rgb(238, 238, 238);margin: auto;max-width: 700px;}.bloc_question  .row_possibilite_rep .col-md-12{padding-top:5px;}.row_nom_question {border-bottom:1px solid  rgb(238, 238, 238);margin-bottom:10px;}#contenu_qcm_galaxy label {margin-right: 15px;}#contenu_qcm_galaxy  input[type='radio'] {-webkit-appearance: none;-moz-appearance: none;appearance: none;border-radius: 50%;width: 16px;height: 16px;border: 2px solid #999;transition: 0.2s all linear;margin: 0px;vertical-align: middle;}#contenu_qcm_galaxy  input[type='checkbox']{-webkit-appearance: none;-moz-appearance: none;appearance: none;width: 16px;height: 16px;border: 2px solid #999;transition: 0.2s all linear;margin: 0px;vertical-align: middle;}#contenu_qcm_galaxy input:checked {border: 6px solid #4285f4;}#contenu_qcm_galaxy  div[data-type_question='0'] input, #contenu_qcm_galaxy  div[data-type_question='1'] input{margin-right:10px}.col_entete_qcm{background: #fff;margin-bottom: 10px !important;width:80%;border-radius: 8px;margin:auto;}
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");:root{--bg-table-stripe: #f6f6f5;--b-table: #e3e3e2;--caption: #242423}table{background-color:transparent;border-collapse:collapse;font-family:Arial, Helvetica, sans-serif}th{text-align:left}.dcf-txt-center{text-align:center !important}.dcf-txt-left{text-align:left !important}.dcf-txt-right{text-align:right !important}.dcf-table caption{color:var(--caption);font-size:1.13em;font-weight:700;padding-bottom:.56rem}.dcf-table tbody{border-bottom:1px solid var(--b-table) !important;border-top:1px solid var(--b-table)  !important}.dcf-table td,.dcf-table th{padding-right:1.78em}.dcf-table-bordered,.dcf-table-bordered td,.dcf-table-bordered th{border:1px solid var(--b-table)  !important}.dcf-table-bordered td,.dcf-table-bordered th,.dcf-table-striped td,.dcf-table-striped th{padding-left:1em;padding-right:1em}.dcf-table-bordered tr:not(:last-child),.dcf-table-striped tr:not(:last-child){border-bottom:1px solid var(--b-table)}.dcf-table-striped tbody tr:nth-of-type(2n){background-color:var(--bg-table-stripe)}.dcf-table thead td,.dcf-table thead th{padding-bottom:.75em;vertical-align:bottom}.dcf-table tbody td,.dcf-table tbody th,.dcf-table tfoot td,.dcf-table tfoot th{padding-top:.75em;vertical-align:top}.dcf-table tbody td,.dcf-table tbody th{padding-bottom:.75em}.dcf-table-bordered thead th{padding-top:1.33em}.dcf-wrapper-table-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch;left:50%;margin-left:-50vw;margin-right:-50vw;padding-bottom:1em;position:relative;right:50%;width:100vw}@media only screen and (max-width: 960px){.dcf-table-responsive thead{clip:rect(0 0 0 0);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;overflow:hidden;position:absolute;width:1px;white-space:nowrap}.dcf-table-responsive tr{display:block}.dcf-table-responsive td{-webkit-column-gap:3.16vw;-moz-column-gap:3.16vw;column-gap:3.16vw;display:grid;grid-template-columns:1fr 2fr}.dcf-table-responsive.dcf-table-bordered,.dcf-table-responsive.dcf-table-bordered thead th{border-width:0}.dcf-table-responsive.dcf-table-bordered tbody td{border-top-width:0}.dcf-table-responsive:not(.dcf-table-bordered) tbody tr{padding-bottom:.75em}.dcf-table-responsive:not(.dcf-table-bordered) tbody td{padding-bottom:0}.dcf-table-responsive:not(.dcf-table-bordered):not(.dcf-table-striped) tbody td{padding-right:0}.dcf-table-responsive.dcf-table-bordered tbody tr:last-child td:last-child{border-bottom-width:0}.dcf-table-responsive tbody td:before{content:attr(data-label);float:left;font-weight:700;padding-right:1.78em}.dcf-table-responsive tbody td:before{content:attr(data-label);float:left;font-weight:700;padding-right:1.78em}}.dcf-overflow-x-auto{overflow-x:auto !important;-webkit-overflow-scrolling:touch}.nodes{display:none !important}@media screen and (max-width: 960px){.nodes{display:block !important}}.dcf-table{width:100%}.nomob{display:block !important}@media screen and (max-width: 960px){.nomob{display:none !important}}html{scroll-behavior:smooth;font-family:'Roboto', sans-serif}.signez{width:100%}.signez h1.clear_all{text-transform:none;font-size:22px;font-family:'Roboto', sans-serif;font-weight:300;padding:15px !important;border-bottom:1px solid #DD4154}.signez h1.clear_all b{color:#DD4154;font-weight:500}.signez h1.clear_all a{text-decoration:none;color:#DD4154}@media screen and (max-width: 960px){.signez h1.clear_all a{text-decoration:underline}}.signez h1.clear_all a:hover{color:#07c}@media screen and (max-width: 960px){.signez h1.clear_all{font-size:18px !important;padding:5px !important}}.signez>.row{padding-top:10px;max-width:1200px;margin-left:auto;margin-right:auto}@media screen and (max-width: 960px){.signez>.row{padding-top:0px;margin-left:0 !important;margin-right:0 !important}}.signez .doc{margin-left:auto;margin-right:auto}@media screen and (max-width: 960px){.signez .signature{padding:0 15px;max-width:100%;width:100%;margin-left:0;margin-right:0}}.signez .signature h1{font-size:16px;text-transform:inherit;font-weight:500 !important;font-family:'Roboto', sans-serif}.signez .signature h1 .num{font-size:16px;display:inline-flex;align-items:center;justify-content:center;width:25px;height:25px;border-radius:50%;background-color:#DD4154;color:#fff;font-weight:700 !important;margin-right:3px}.signez .signature #canvas{margin-bottom:10px}.signez .signature .js-loadfile{background-color:#eee;color:black}.signez .signature input{max-width:404px}@media screen and (max-width: 960px){.signez .signature input{max-width:100%}}.signez .signature .crop-wrapper{max-width:300px;max-height:100px}.signez .signature #message_complementaire{max-width:404px}@media screen and (max-width: 960px){.signez .signature #message_complementaire{max-width:100%;width:100%}}.signez .signature #reset{font-weight:400}.signez .signature #save{background-color:#07c;font-weight:400}.signez .signature #save:hover{background-color:#DD4154}.signez .signature #save_doc{margin-top:8px;font-weight:600;font-size:16px;padding:10px 15px}.signez .signature button.for_creation.btn-perso{color:white;border:1px solid #07c}.signez .signature button.for_creation.btn-perso:hover{border:1px solid #DD4154}.signez .signature button.btn-perso{font-weight:600;padding:10px 15px !important;background-color:white;color:#DD4154;border:1px solid #DD4154}.signez .signature button.btn-perso:hover{color:white;border:1px solid #07c}.signez .signature button{white-space:normal}.signez .signature button:hover{background-color:#07c}@media screen and (max-width: 960px){.signez .signature .bts{text-align:center !important;padding:0;padding-right:15px;margin-bottom:40px}.signez .signature .bts button{width:100%;display:inline-block;margin-top:3px}.signez .signature .bts #save_doc{padding:20px}}.signez .bandeau_error{margin-top:20px;max-width:404px}@media screen and (max-width: 960px){.signez .bandeau_error{max-width:100%}}.evalutation,.evaluation,.evaluation_cote_stagiaire{width:100%}.evalutation .wrapper,.evaluation .wrapper,.evaluation_cote_stagiaire .wrapper{width:100%;padding:0}.evalutation #contenu_qcm_galaxy,.evaluation #contenu_qcm_galaxy,.evaluation_cote_stagiaire #contenu_qcm_galaxy{padding:20px 0;width:100% !important;max-width:700px}.evalutation h4,.evaluation h4,.evaluation_cote_stagiaire h4{font-weight:500;padding:10px 10px}@media screen and (max-width: 960px){.evalutation h4,.evaluation h4,.evaluation_cote_stagiaire h4{padding:10px 0}}.evalutation .row,.evaluation .row,.evaluation_cote_stagiaire .row{margin-left:0;margin-right:0;padding-left:15px;padding-right:15px}@media screen and (max-width: 960px){.evalutation .row,.evaluation .row,.evaluation_cote_stagiaire .row{padding-left:0;padding-right:0}}.evalutation .table_grille td,.evaluation .table_grille td,.evaluation_cote_stagiaire .table_grille td{padding:10px}.evalutation .table_grille tr:first-of-type td,.evaluation .table_grille tr:first-of-type td,.evaluation_cote_stagiaire .table_grille tr:first-of-type td{font-weight:600}.evalutation .table_grille tr:not(:first-of-type) td:first-of-type,.evaluation .table_grille tr:not(:first-of-type) td:first-of-type,.evaluation_cote_stagiaire .table_grille tr:not(:first-of-type) td:first-of-type{font-weight:600}@media screen and (max-width: 960px){.dcf-table th{text-align:center;width:100%;display:block;font-size:120%}.dcf-table td{font-size:120%}}@media screen and (max-width: 960px){.bloc_question{text-align:center;font-size:120%}.bloc_question input[type=text],.bloc_question select,.bloc_question textarea{font-size:120%;padding:5px;height:auto !important}.bloc_question .row>div{margin-bottom:10px}}.bloc_question .dcf-table-striped,.bloc_question .dcf-table-striped th{text-align:center}#reponse_anonyme{margin-right:5px !important;display:inline-block}.que_sit_sta_global{padding:20px 0;float:none;max-width:700px;margin:0 auto;text-align:center;margin-bottom:15px}.que_sit_sta_global label{font-weight:600;font-size:17px;margin-bottom:5px}.que_sit_sta_global select{font-size:120%;padding:5px;height:auto !important}.bloc_question>div{overflow:hidden}button.btn_question_retour,button.btn_question_suivante{overflow:hidden;background-color:#fff;color:#394e87;border:1px solid #394e87}@media screen and (max-width: 960px){button.btn_question_retour,button.btn_question_suivante{display:inline-block;width:48%}}button.btn_question_retour:hover,button.btn_question_suivante:hover{background-color:#394e87;color:white}button.btn_question_retour{float:left}button.btn_question_suivante{float:right}.evaluation_cote_stagiaire .col_entete_qcm, .col_merci_qcm{margin:10px auto !important;max-width:700px !important;width:100% !important;display:block;padding:20px !important}@media screen and (max-width: 960px){header{position:relative;max-height:auto}}@media only screen and (min-width: 960px){.table_grille tr:nth-child(odd){background-color:#f6f6f5 !important}.dcf-table-striped tbody tr:nth-of-type(2n){background-color:#fff !important}.dcf-table-striped thead tr:first-child{background-color:#fff !important}.bloc_question4 tbody tr td:nth-of-type(2n),.bloc_question4 thead tr th:nth-of-type(2n){background-color:#f6f6f5 !important}.bloc_question4 tbody tr td:last-child,.bloc_question4 thead tr th:last-child{background-color:#fff !important}}@media only screen and (max-width: 960px){.dcf-table-striped tbody tr td:nth-of-type(2n),.dcf-table-striped tbody tr th{background-color:#fff !important}.dcf-table-striped tbody tr{margin-top:20px}.dcf-table-striped tbody td{font-size:80% !important}.bloc_question4 tbody tr td:first-child,.bloc_question4 tbody tr td:last-child{padding:0 !important}.bloc_question4 tbody tr td:nth-of-type(2n){background-color:#f6f6f5 !important}.bloc_question4 tbody tr td:before{padding-right:0 !important}.bloc_question4 tbody tr td.avec_img:before{background-repeat:no-repeat;background-image:var(--bg-image) !important;background-size:contain;background-position:center center;width:100%;padding-right:0 !important}.bloc_question4 .dcf-table td,.bloc_question4 .dcf-table th{padding-right:0;padding-left:0}}


@media print{
	div,span {

		color-adjust: exact;
		-webkit-print-color-adjust: exact ;
		print-color-adjust: exact;
	
	}
	.row_nom_question {border-bottom:2px solid  rgb(238, 238, 238) !important;}
	
	button, .no-print, .no-print *
    {
        display: none !important;
    }
	
	.que_for_print
    {
        display: inline !important;
    }
	
	.bloc_question{
		border: 2px solid #dadce0 !important;
	}
	.dcf-table-bordered tr:not(:last-child), .dcf-table-striped tr:not(:last-child) {
		border-bottom: 2px solid  #e3e3e2 !important;;
	}
	.table_grille tr:nth-child(2n+1) {
		background-color: #eeeeee !important;
	}
 
	.bloc_question4 tbody tr td:nth-of-type(2n), .bloc_question4 thead tr th:nth-of-type(2n) {
	  background-color: #f6f6f5 !important;
	}
	.dcf-table-striped thead tr:first-child {
	  background-color: #fff !important;
	}
	.dcf-table-bordered, .dcf-table-bordered td, .dcf-table-bordered th {
	  border: 2px solid  #e3e3e2 !important;
	}
 .form-control
  {
    border: 0;
    padding:0;
    overflow:visible;
  }
  fieldset {
	  border: 2px solid silver;
	}
	textarea {
		height: auto;
		overflow: visible!important;
		page-break-inside: avoid !important;
	} 
		
	
}


.checkbox_my_css_simple:not(:checked),
	.checkbox_my_css_simple:checked {
		position: absolute;
		left: 0;
		opacity: 0.01;
	}
	.checkbox_my_css_simple:not(:checked) + label,
	.checkbox_my_css_simple:checked + label {
		position: relative;
		padding-left: 2.3em;
		font-size: 1.05em;
		line-height: 1.7;
		cursor: pointer;
	}

	/* checkbox aspect */
	.checkbox_my_css_simple:not(:checked) + label:before,
	.checkbox_my_css_simple:checked + label:before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		width: 1.5em;
		height: 1.5em;
		border: 1px solid #aaa;
		background: #FFF;
		border-radius: .2em;
		box-shadow: inset 0 1px 3px rgba(0,0,0, .1), 0 0 0 rgba(203, 34, 237, .2);
		-webkit-transition: all .275s;
				transition: all .275s;
	}

	/* checked mark aspect */
	.checkbox_my_css_simple:not(:checked) + label:after,
	.checkbox_my_css_simple:checked + label:after {
		content: '✕';
		position: absolute;
		top: .525em;
		left: .18em;
		font-size: 1.375em;
		color: #CB22ED;
		line-height: 0;
		-webkit-transition: all .2s;
				transition: all .2s;
	}

	/* checked mark aspect changes */
	.checkbox_my_css_simple:not(:checked) + label:after {
		opacity: 0;
		-webkit-transform: scale(0) rotate(45deg);
				transform: scale(0) rotate(45deg);
	}

	.checkbox_my_css_simple:checked + label:after {
		opacity: 1;
		-webkit-transform: scale(1) rotate(0);
				transform: scale(1) rotate(0);
	}

	/* Disabled checkbox */
	.checkbox_my_css_simple:disabled:not(:checked) + label:before,
	.checkbox_my_css_simple:disabled:checked + label:before {
		box-shadow: none;
		border-color: #bbb;
		background-color: #e9e9e9;
	}

	.checkbox_my_css_simple:disabled:checked + label:after {
		color: #777;
	}

	.checkbox_my_css_simple:disabled + label {
		color: #aaa;
	}

	/* Accessibility */
	.checkbox_my_css_simple:checked:focus + label:before,
	.checkbox_my_css_simple:not(:checked):focus + label:before {
		box-shadow: inset 0 1px 3px rgba(0,0,0, .1), 0 0 0 6px rgba(203, 34, 237, .2);
	}
	
	

	.sondage_ok{
		background-color: #37c44f;
		content: 'V';
		
	}
	.sondage_ok::after{
		content: 'V';
		position: relative;
		left: 50%;font-size: 17px;
		font-weight: bold;
		color:#fff;
	}
	.sondage_not{
		background-color: #ff2d55;
	}
	
	.sondage_maybe{
		background-color: #fc0;
	}
	
	
	.sondage_not::after{
		content: '✕';
		position: relative;
		left: 50%;font-size: 17px;
		font-weight: bold;
		color:#fff;
	}

	
	.sondage_maybe::after{
		content: '?';
		position: relative;
		left: 50%;font-size: 17px;
		font-weight: bold;
		color:#fff;
	}
	
	input[type="radio"].demo6 {
	  display: none;
	}
	
	input[type="radio"].demo6 + label {
	  position: relative;
	  padding-left: 21px;
	  cursor:pointer;
	}
	input[type="radio"].demo6 + label::before,
	input[type="radio"].demo6 + label::after {
	  display: block;
	  position: absolute;
	  box-sizing: border-box;
	  content:'';
	  border-radius: 1rem;
	}
	input[type="radio"].demo6 + label::before {
	  bottom: 0;
	  left: 0;
	  border: 1px solid #ccc;
	  background-color: #fff;
	  width: 17px;
	height: 17px;
	}
	input[type="radio"].demo6 + label::after {
		bottom: 3px;
		left: 3px;
		width: 11px;
		height: 11px;
	}
	input[type="radio"].demo6:checked + label::after {
	  background-color: #00B7E8;
	}
	.alert-info{
		color: #5D5D5D;
	}
	
	
	
.tab-sig { cursor:pointer; padding:6px 16px; border:1px solid #ddd; border-bottom:none; border-radius:4px 4px 0 0; display:inline-block; margin-right:2px; background:#f5f5f5; font-size:12px; }
.tab-sig.active { background:#fff; font-weight:bold; border-bottom:1px solid #fff; margin-bottom:-1px; position:relative; z-index:1; }
.tab-sig-content { border:1px solid #ddd; padding:8px; background:#fff; display:none; }
.tab-sig-content.active { display:block; }
.tab-oodrive { cursor:pointer; padding:8px 20px; border:1px solid #ddd; border-bottom:none; border-radius:4px 4px 0 0; display:inline-block; margin-right:2px; background:#f5f5f5; font-size:13px; }
.tab-oodrive.active { background:#fff; font-weight:bold; border-bottom:1px solid #fff; margin-bottom:-1px; position:relative; z-index:1; }
.tab-content-oodrive { border:1px solid #ddd; padding:10px; background:#fff; }
.badge-status { padding:3px 8px; border-radius:3px; font-size:11px; color:#fff; }
.badge-sent { background:#5bc0de; }
.badge-partially_signed { background:#f0ad4e; }
.badge-signed { background:#5cb85c; }
.badge-archived { background:#777; }
.badge-abandoned { background:#d9534f; }
.badge-env-recette { background:#f0ad4e; color:#fff; padding:2px 6px; border-radius:3px; font-size:10px; }
.badge-env-production { background:#5cb85c; color:#fff; padding:2px 6px; border-radius:3px; font-size:10px; }
.btn-dl { padding:2px 6px; font-size:11px; cursor:pointer; margin:1px; }
#aide_solde_badge { background:#eee; color:#999; padding:5px 14px; border-radius:4px; font-size:15px; font-weight:bold; transition:all 0.3s; }
.badge-solde { font-size: 13px; padding: 5px 10px; border-radius: 4px; }
.badge-solde-ok { background: #27ae60; color: #fff; }
.badge-solde-warning { background: #f39c12; color: #fff; }
.badge-solde-danger { background: #e74c3c; color: #fff; }




/* ═══════════════════════════════════════════════════════════════════════
   SYNTHÈSE DES RETOURS — VERSION LUDIQUE
   À inclure en plus du CSS existant. Préfixe .sel- pour ne rien casser.
   ═══════════════════════════════════════════════════════════════════════ */

.sel-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1f2937;
}

/* ─── Bandeau de formation (titre principal) ──────────────────────────── */
.sel-formation-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #fff;
    padding: 18px 24px;
    border-radius: 12px 12px 0 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
    transition: all 0.2s ease;
}
.sel-formation-header:hover {
    box-shadow: 0 6px 18px rgba(30, 58, 138, 0.25);
}
.sel-formation-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}
.sel-formation-header .sel-meta {
    font-size: 12px;
    opacity: 0.85;
    margin-top: 4px;
    font-weight: 400;
}
.sel-formation-header .sel-toggle-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}
.sel-formation-header.sel-open .sel-toggle-icon {
    transform: rotate(90deg);
}

/* ─── Bandeau de formulaire (sous-niveau) ─────────────────────────────── */
.sel-formulaire-wrapper {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: none;
    margin-bottom: 24px;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}
.sel-formulaire-header {
    background: #f9fafb;
    padding: 14px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.15s ease;
}
.sel-formulaire-header:hover {
    background: #f3f4f6;
}
.sel-formulaire-header .sel-circle {
    flex-shrink: 0;
}
.sel-formulaire-info {
    flex: 1;
}
.sel-formulaire-info h4 {
    margin: 0 0 4px 0;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}
.sel-formulaire-info .sel-stats {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    gap: 12px;
    align-items: center;
}
.sel-formulaire-info .sel-stats .sel-badge {
    background: #dbeafe;
    color: #1e40af;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
}
.sel-formulaire-header .sel-toggle-icon {
    color: #6b7280;
    transition: transform 0.3s ease;
}
.sel-formulaire-header.sel-open .sel-toggle-icon {
    transform: rotate(90deg);
}
/* Bouton Word dans le bandeau formulaire */
.sel-formulaire-header .sel-word-btn-formulaire {
    flex-shrink: 0;
    padding: 6px 12px;
    font-size: 12px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #2b579a; /* bleu Word */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
}
.sel-formulaire-header .sel-word-btn-formulaire:hover {
    background: #2b579a;
    color: #fff;
    border-color: #2b579a;
}
.sel-formulaire-header .sel-word-btn-formulaire i {
    margin-right: 4px;
}

/* ─── Cercle de score (donut SVG) ─────────────────────────────────────── */
.sel-circle {
    width: 56px;
    height: 56px;
    position: relative;
}
.sel-circle svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}
.sel-circle .sel-circle-bg {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 3.5;
}
.sel-circle .sel-circle-fg {
    fill: none;
    stroke-width: 3.5;
    stroke-linecap: round;
    transition: stroke-dasharray 0.8s ease;
}
.sel-circle.sel-score-bon .sel-circle-fg { stroke: #10b981; }
.sel-circle.sel-score-moyen .sel-circle-fg { stroke: #f59e0b; }
.sel-circle.sel-score-faible .sel-circle-fg { stroke: #ef4444; }
.sel-circle .sel-circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    font-weight: 700;
    color: #111827;
}
.sel-circle.sel-score-bon .sel-circle-text { color: #10b981; }
.sel-circle.sel-score-moyen .sel-circle-text { color: #f59e0b; }
.sel-circle.sel-score-faible .sel-circle-text { color: #ef4444; }

/* ─── Grille de questions ─────────────────────────────────────────────── */
.sel-questions-grid {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
    background: #fafbfc;
}
.sel-questions-grid.sel-cols-1 { grid-template-columns: 1fr; }
.sel-questions-grid.sel-cols-2 { grid-template-columns: repeat(2, 1fr); }
.sel-questions-grid.sel-cols-3 { grid-template-columns: repeat(3, 1fr); }
.sel-questions-grid.sel-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ─── Carte de question ───────────────────────────────────────────────── */
.sel-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    page-break-inside: avoid;
}
.sel-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: #d1d5db;
}
.sel-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f3f4f6;
}
.sel-card-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.sel-card-icon.sel-type-text { background: #fef3c7; color: #b45309; }
.sel-card-icon.sel-type-qcm { background: #dbeafe; color: #1e40af; }
.sel-card-icon.sel-type-echelle { background: #ede9fe; color: #6d28d9; }
.sel-card-icon.sel-type-grille { background: #d1fae5; color: #047857; }

.sel-card-title-block {
    flex: 1;
    min-width: 0;
}
.sel-card-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    font-weight: 600;
    margin-bottom: 2px;
}
.sel-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
    word-wrap: break-word;
}
.sel-card-subtitle {
    font-size: 11px;
    color: #6b7280;
    margin-top: 4px;
    font-style: italic;
}
.sel-card-nbrep {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f3f4f6;
    color: #4b5563;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
    margin-top: 6px;
}

/* ─── Barre de réponse QCM (style "sondage") ──────────────────────────── */
.sel-answer-row {
    margin-bottom: 10px;
}
.sel-answer-row:last-child {
    margin-bottom: 0;
}
.sel-answer-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 4px;
    color: #374151;
}
.sel-answer-label .sel-label-text {
    font-weight: 500;
    flex: 1;
    margin-right: 8px;
    word-wrap: break-word;
}
.sel-answer-label .sel-label-pct {
    font-weight: 700;
    color: #111827;
    font-variant-numeric: tabular-nums;
}
.sel-bar {
    height: 8px;
    background: #f3f4f6;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
.sel-bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
}
/* Dégradé selon pourcentage */
.sel-bar-fill.sel-pct-faible { background: linear-gradient(90deg, #fca5a5, #ef4444); }
.sel-bar-fill.sel-pct-moyen { background: linear-gradient(90deg, #fcd34d, #f59e0b); }
.sel-bar-fill.sel-pct-bon { background: linear-gradient(90deg, #6ee7b7, #10b981); }
.sel-bar-fill.sel-pct-excellent { background: linear-gradient(90deg, #34d399, #059669); }

.sel-answer-nbr {
    font-size: 10px;
    color: #9ca3af;
    margin-top: 2px;
}

/* ─── Réponses texte (bulles type chat) ───────────────────────────────── */
.sel-text-answers {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 4px;
}
.sel-text-answers::-webkit-scrollbar {
    width: 6px;
}
.sel-text-answers::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}
.sel-bubble {
    background: #f3f4f6;
    padding: 10px 12px;
    border-radius: 12px 12px 12px 4px;
    font-size: 13px;
    line-height: 1.5;
    color: #1f2937;
    border-left: 3px solid #f59e0b;
    word-wrap: break-word;
    animation: sel-fade-in 0.3s ease both;
}
.sel-bubble:nth-child(2n) {
    background: #fef3c7;
    border-left-color: #d97706;
}
.sel-bubble:nth-child(3n) {
    background: #dbeafe;
    border-left-color: #2563eb;
}
.sel-bubble:nth-child(4n) {
    background: #d1fae5;
    border-left-color: #059669;
}

@keyframes sel-fade-in {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Échelle numérique (mini-histogramme) ────────────────────────────── */
.sel-scale-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sel-scale-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 80px;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}
.sel-scale-bar {
    flex: 1;
    background: linear-gradient(180deg, #93c5fd, #3b82f6);
    border-radius: 4px 4px 0 0;
    min-height: 4px;
    position: relative;
    transition: height 0.8s ease;
}
.sel-scale-bar-value {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    font-weight: 600;
    color: #4b5563;
}
.sel-scale-labels {
    display: flex;
    gap: 4px;
}
.sel-scale-label {
    flex: 1;
    text-align: center;
    font-size: 10px;
    color: #6b7280;
    font-weight: 500;
}
.sel-scale-range {
    text-align: center;
    font-size: 11px;
    color: #6b7280;
    font-style: italic;
    margin-bottom: 6px;
}

/* ─── Grille notée (questions imbriquées) ─────────────────────────────── */
.sel-grid-sub-question {
    margin-bottom: 12px;
    padding: 10px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid #10b981;
}
.sel-grid-sub-question:last-child {
    margin-bottom: 0;
}
.sel-grid-sub-title {
    font-size: 12px;
    font-weight: 600;
    color: #047857;
    margin-bottom: 8px;
}

/* ─── Boutons d'action ────────────────────────────────────────────────── */
.sel-actions {
    padding: 12px 20px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}
.sel-btn {
    padding: 6px 12px;
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    color: #374151;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.sel-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}
.sel-btn-primary {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}
.sel-btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
}

/* ─── État vide ───────────────────────────────────────────────────────── */
.sel-empty {
    text-align: center;
    padding: 40px;
    color: #9ca3af;
    font-style: italic;
}
.sel-empty i {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
    opacity: 0.5;
}

/* ─── Choix d'affichage (colonnes) ────────────────────────────────────── */
.sel-display-controls {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    padding: 10px;
    background: #f9fafb;
    border-radius: 8px;
    align-items: center;
}
.sel-display-controls label {
    font-size: 12px;
    color: #6b7280;
    margin-right: 4px;
}
.sel-display-btn {
    padding: 4px 10px;
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
}
.sel-display-btn.sel-active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

/* ─── Impression ──────────────────────────────────────────────────────── */
@media print {
    .sel-actions,
    .sel-display-controls,
    .no-print {
        display: none !important;
    }
    .sel-formation-header {
        background: #1e3a8a !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    .sel-card {
        break-inside: avoid;
    }
    .sel-bar-fill {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* ─── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .sel-questions-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   MODE TABLEAU
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── Toggle de vue (Cartes / Tableau Q / Tableau R) ──────────────────── */
.sel-view-toggle {
    display: inline-flex;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 12px;
}
.sel-view-toggle button {
    padding: 6px 14px;
    background: #fff;
    border: none;
    border-right: 1px solid #d1d5db;
    cursor: pointer;
    font-size: 12px;
    color: #374151;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.sel-view-toggle button:last-child { border-right: none; }
.sel-view-toggle button:hover { background: #f3f4f6; }
.sel-view-toggle button.sel-active {
    background: #1e3a8a;
    color: #fff;
}

/* ─── Wrapper tableau ─────────────────────────────────────────────────── */
.sel-table-wrapper {
    padding: 20px;
    background: #fafbfc;
    overflow-x: auto;
}
.sel-table-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sel-table-title .sel-table-counter {
    background: #dbeafe;
    color: #1e40af;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
}

/* ─── Tableau de base ─────────────────────────────────────────────────── */
.sel-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    font-size: 12px;
}
.sel-table thead th {
    background: #1e3a8a;
    color: #fff;
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-right: 1px solid rgba(255,255,255,0.1);
    vertical-align: top;
    position: sticky;
    top: 0;
}
.sel-table thead th:last-child { border-right: none; }
.sel-table thead th .sel-th-label {
    display: block;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.3;
    max-width: 180px;
}
.sel-table thead th .sel-th-sub {
    display: block;
    font-size: 9px;
    opacity: 0.7;
    font-weight: 400;
    text-transform: none;
    margin-top: 3px;
}
.sel-table tbody td {
    padding: 10px 12px;
    border-bottom: 1px solid #f3f4f6;
    border-right: 1px solid #f3f4f6;
    vertical-align: top;
    color: #1f2937;
    word-wrap: break-word;
    max-width: 220px;
}
.sel-table tbody td:last-child { border-right: none; }
.sel-table tbody tr:nth-child(even) td { background: #f9fafb; }
.sel-table tbody tr:hover td { background: #eff6ff; }

/* ─── Première colonne figée (sticky) ─────────────────────────────────── */
.sel-table thead th:first-child,
.sel-table tbody td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
}
.sel-table thead th:first-child { z-index: 3; }
.sel-table tbody td:first-child {
    background: #f9fafb;
    font-weight: 600;
    color: #111827;
    border-right: 2px solid #e5e7eb;
}
.sel-table tbody tr:nth-child(even) td:first-child { background: #f3f4f6; }
.sel-table tbody tr:hover td:first-child { background: #dbeafe; }

/* ─── Cellules colorées selon le type de réponse (vue par répondant) ──── */
.sel-cell-positive { background: #ecfdf5 !important; color: #065f46; }
.sel-cell-neutral  { background: #fffbeb !important; color: #92400e; }
.sel-cell-negative { background: #fef2f2 !important; color: #991b1b; }
.sel-cell-empty    { color: #d1d5db; font-style: italic; }

.sel-cell-pct {
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

/* ─── Mini-barre dans une cellule (vue par question) ──────────────────── */
.sel-cell-mini-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
.sel-cell-mini-bar:last-child { margin-bottom: 0; }
.sel-cell-mini-label {
    flex: 0 0 auto;
    font-size: 11px;
    min-width: 80px;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sel-cell-mini-bar-track {
    flex: 1;
    height: 6px;
    background: #f3f4f6;
    border-radius: 3px;
    overflow: hidden;
    min-width: 40px;
}
.sel-cell-mini-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    border-radius: 3px;
}
.sel-cell-mini-pct {
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 600;
    min-width: 38px;
    text-align: right;
}

/* ─── Icônes type de question dans l'en-tête de colonne ───────────────── */
.sel-th-icon {
    display: inline-block;
    margin-right: 4px;
    opacity: 0.7;
}

/* ─── Tableau dense (option) ──────────────────────────────────────────── */
.sel-table.sel-dense thead th { padding: 6px 8px; font-size: 10px; }
.sel-table.sel-dense tbody td { padding: 6px 8px; font-size: 11px; }

/* ─── Footer du tableau ───────────────────────────────────────────────── */
.sel-table-footer {
    margin-top: 10px;
    font-size: 11px;
    color: #6b7280;
    font-style: italic;
    text-align: center;
}

/* ─── Loader tableau répondants ───────────────────────────────────────── */
.sel-table-loading {
    text-align: center;
    padding: 40px;
    color: #6b7280;
}
.sel-table-loading i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

/* ─── Légende cellules ────────────────────────────────────────────────── */
.sel-legend {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
    font-size: 11px;
    color: #4b5563;
    flex-wrap: wrap;
}
.sel-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.sel-legend-swatch {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,0.05);
}

/* ─── Impression tableau ──────────────────────────────────────────────── */
@media print {
    .sel-table-wrapper { overflow: visible; padding: 0; background: #fff; }
    .sel-table { box-shadow: none; font-size: 10px; }
    .sel-table thead th {
        background: #1e3a8a !important;
        color: #fff !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        padding: 6px 8px;
        position: static;
    }
    .sel-table tbody td { padding: 6px 8px; max-width: none; }
    .sel-table tbody td:first-child { position: static; }
    .sel-table thead th:first-child { position: static; }
    .sel-cell-positive, .sel-cell-neutral, .sel-cell-negative {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   POPUP EXPORT WORD
   ═══════════════════════════════════════════════════════════════════════ */
.sel-word-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: sel-fade-in 0.2s ease;
    padding: 20px;
}
.sel-word-popup {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: sel-popup-up 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes sel-popup-up {
    from { transform: translateY(20px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}
.sel-word-popup-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #fff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sel-word-popup-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sel-word-popup-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    line-height: 1;
    border-radius: 6px;
    transition: background 0.15s ease;
}
.sel-word-popup-close:hover {
    background: rgba(255, 255, 255, 0.15);
}
.sel-word-popup-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

/* ─── Bandeau de statut (préférences mémorisées / vue actuelle / modifié) ── */
.sel-word-status-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid;
    font-size: 13px;
    line-height: 1.4;
}
.sel-word-status-banner i {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}
.sel-word-status-banner > div {
    flex: 1;
}
.sel-word-status-banner b {
    color: #111827;
    display: block;
    margin-bottom: 2px;
}
.sel-word-status-banner small {
    color: #6b7280;
    font-size: 11px;
}
.sel-word-status-banner.sel-banner-info {
    background: #eff6ff;
    border-color: #bfdbfe;
}
.sel-word-status-banner.sel-banner-success {
    background: #ecfdf5;
    border-color: #a7f3d0;
}
.sel-word-status-banner.sel-banner-warning {
    background: #fffbeb;
    border-color: #fcd34d;
}

/* Petit bouton de réinitialisation dans le bandeau de statut */
.sel-word-reset-config-btn {
    flex-shrink: 0;
    padding: 5px 10px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #4b5563;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    align-self: flex-start;
}
.sel-word-reset-config-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
    color: #111827;
}
.sel-word-reset-config-btn i {
    font-size: 10px;
}

/* ─── Zone modèle Word ────────────────────────────────────────────────── */
.sel-word-modele-loading {
    padding: 14px;
    text-align: center;
    color: #6b7280;
    font-size: 12px;
}
.sel-word-modele-loading i {
    margin-right: 6px;
}
.sel-word-modele-empty {
    padding: 10px 12px;
    background: #f9fafb;
    border-radius: 6px;
    font-size: 12px;
}
.sel-word-modele-empty i {
    margin-right: 6px;
}
.sel-word-modele-absent {
    padding: 12px;
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    border-radius: 8px;
    text-align: center;
}
.sel-word-modele-absent .sel-btn {
    background: #fff;
    border: 1px solid #3b82f6;
    color: #3b82f6;
    font-weight: 500;
}
.sel-word-modele-absent .sel-btn:hover {
    background: #eff6ff;
}
.sel-word-modele-present {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
}
.sel-word-modele-present > i {
    font-size: 22px;
    flex-shrink: 0;
}
.sel-word-modele-present b {
    color: #065f46;
    display: block;
    margin-bottom: 2px;
    font-size: 13px;
}
.sel-word-modele-present small {
    color: #6b7280;
    font-size: 11px;
}
.sel-word-modele-replace-btn,
.sel-word-modele-delete-btn {
    padding: 5px 10px;
    font-size: 11px;
    flex-shrink: 0;
}
.sel-word-modele-delete-btn {
    color: #b91c1c;
    border-color: #fecaca;
}
.sel-word-modele-delete-btn:hover {
    background: #fef2f2;
    border-color: #fca5a5;
}
.sel-word-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}
.sel-word-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.sel-word-section-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sel-word-section-title i {
    color: #3b82f6;
}
.sel-word-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    margin-bottom: 6px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease;
    border: 1px solid transparent;
}
.sel-word-check:hover {
    background: #f9fafb;
    border-color: #e5e7eb;
}
.sel-word-check input[type="checkbox"] {
    margin-top: 2px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: #3b82f6;
}
.sel-word-check span {
    flex: 1;
    font-size: 13px;
    color: #374151;
    line-height: 1.4;
}
.sel-word-check span strong {
    color: #111827;
}
.sel-word-popup-footer {
    background: #f9fafb;
    padding: 14px 20px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sel-word-popup-footer .sel-btn {
    padding: 8px 14px;
    font-size: 13px;
}

@media (max-width: 600px) {
    .sel-word-popup {
        max-height: 100vh;
        border-radius: 0;
    }
    .sel-word-popup-overlay {
        padding: 0;
    }
}