/** Css used in applications only, not in admin nor mapapp **/
/** anc nav **/
@font-face {
  font-family: 'rdmicons';
  src: url(fonts/rdmicons.ttf) format('truetype');
  font-weight: normal;
  font-style: normal;
}
.app_nav:not(.expanded) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 45px auto;
  z-index: 500;
}
.app_nav .card {
  cursor: pointer;
}
.app_nav .toggler {
  display: none;
}

/** expanded **/
.app_nav.expanded .card.home {
  display: none;
}

.app_nav.visible .page_title {
  display: none;
}

.app_nav.expanded .page_title{
  position: absolute;
  top: 50px;
  background: #f4f4f4;
  right: 0;
  left: 0;
  padding: 10px 15px;
}

.app_nav.expanded {
  position: fixed;
  width: 100%;
  height: 100%;
  padding-top: 120px;
  word-break: break-all;
  overflow: auto;
}
.app_nav.expanded .links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.app_nav.expanded .card {
  font-weight: 600;
  margin: 15px;
  min-width: 30%;
  min-height: 120px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out;
  background: #fff;
}
.app_nav.expanded .card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.app_nav.expanded .card .pic {
  position: absolute;
  width: 60px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app_nav.expanded .card .desc em {
  color: #222;
}

.app_nav.expanded .card:nth-of-type(2) .pic {
  background: #3498db;
}
.app_nav.expanded .card:nth-of-type(3) .pic {
  background: #9b59b6;
}
.app_nav.expanded .card:nth-of-type(4) .pic {
  background: #34495e;
}
.app_nav.expanded .card:nth-of-type(6) .pic {
  background: #1abc9c;
}
.app_nav.expanded .card:nth-of-type(6) .pic .fa {
  font-size: 60px;
}
.app_nav.expanded .card:nth-of-type(5) .pic {
  background: #f39c12;
}
.app_nav.expanded .card:nth-of-type(7) .pic {
  background: #e67e22;
}
.app_nav.expanded .card:nth-of-type(8) .pic {
  background: #e74c3c;
}
.app_nav.expanded .card:nth-of-type(9) .pic {
  background: #7f8c8d;
}
.app_nav.expanded .card:nth-of-type(10) .pic {
  background: #2c3e50;
}
.app_nav.expanded .card:nth-of-type(11) .pic {
  background: #303030;
}

.app_nav .page_title {
  padding: 15px;
  font-size: 23px;
  position: absolute;
  z-index: 1;
}

.app_nav.expanded .pic .icon {
  font-size: 33px;
  color: #fff;
}
.app_nav.expanded .card .infos {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 60px;
  border-left: none;
  overflow: auto;
}
.app_nav.expanded .card .infos .title {
  font-size: 18px;
  margin: 10px;
  color: #666;
}
.app_nav.expanded .card .infos .desc {
  color: #999;
  margin: 10px;
}

/** reduced **/
.app_nav.reduced {
  min-height: 55px;
  background-color: #f4f4f4;
}
.app_nav.reduced.visible {
  background-color: #14b9ff;
  position: relative;
}
/** Toggle switch du thème dans le reduced **/
.app_nav.reduced.visible .user-theme {
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.app_nav.reduced.visible .user-theme .toggle-switch {
  transform: scale(0.6);
}
.app_nav.reduced.visible .user-theme label {
  color: #fff;
}
.app_nav.reduced .links {
  max-height: 0;
  overflow: hidden;
  color: #fff;
  width: 500px;
  margin: 0 auto;
  text-align: center;
}
.app_nav.reduced .links.visible {
  max-height: 500px;
  padding: 20px 0;
}

.app_nav.reduced .card {
  font-weight: 600;
  margin: 5px;
  padding: 7px 10px;
}
.app_nav.reduced .card,
.app_nav.reduced .card .pic,
.app_nav.reduced .card .infos {
  display: inline-block;
}
.app_nav.reduced .card .infos {
  padding-left: 10px;
}

.app_nav.reduced .toggler {
  display: block;
  position: fixed;
  right: 25px;
  margin-top: 15px;
  padding: 5px 10px;
  background: #fff;
  cursor: pointer;
}
.app_nav.reduced .card {
  position: relative;
}
.fa.icon.fa-mobile {
  font-size: 25px;
}

.app_nav.reduced .card::before {
  content: '';
  position: absolute;
  left: 35px;
  bottom: 0;
  width: calc(100% - 40px);
  height: 2px;
  background: #fff;
  transform: scale3d(0, 1, 1);
  transition: transform 0.1s;
}

.app_nav.reduced .card.current::before {
  transform: scale3d(1, 1, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
}

/** anc + bac **/
.ancBacMainList .nav-tabs > li > a {
  padding: 10px 12px;
  font-size: 12px;
}
.ancBacMainList .rlist.loading {
  opacity: 0.5;
}

.ancBacMainList .requeteHeaderTitle {
  background: #707070;
  padding: 15px;
  font-weight: 600;
  color: #fff;
}

.ancBacMainList .table .dropdown-header {
  color: #333;
  font-size: 14px;
}

#ancListeDossiers .btn {
  margin-top: -5px;
}

.ancBacReportForm .dossierAlerteIcon {
  font-size: 40px;
  margin-top: 15px;
  opacity: 0.5;
  cursor: pointer;
}
.ancBacReportForm .dossierAlerteIcon.has_alerte,
#ancListeDossiers .has_alerte,
#bacListeDossiers .has_alerte {
  opacity: 1;
}
.ancBacReportForm .dossierAlerteIcon.has_alerte_echeance,
#ancListeDossiers .has_alerte_echeance,
#bacListeDossiers .has_alerte_echeance {
  opacity: 1;
}
.has_alerte_echeance.redAlert,
.has_alerte_echeance.redAlert {
  color: #e74c3c;
}
.has_alerte_echeance.greenAlert,
.has_alerte_echeance.greenAlert {
  color: #5cb85c;
}
.has_alerte_echeance.yellowAlert,
.has_alerte_echeance.yellowAlert {
  color: #ffc107;
}

.ancBacReportForm .redAlertRDV{
  background:#e74c3c;
  font-weight: bold;
}

.ancBacReportForm .greenAlertRDV{
  background:#5cb85c;
  font-weight: bold;
}

.ancBacReportForm .yellowAlertRDV{
  background:#ffc107;
  font-weight: bold;
}

/** documentsSousPartie 50/50 en hauteur dans le dossier */
.ancBacReportForm .documentsSousParties {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.ancBacReportForm .documentsSousPartie:nth-of-type(1),
.ancBacReportForm .documentsSousPartie:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  overflow-y: auto;
  padding: 20px;
}
.ancBacReportForm .documentsSousPartie:nth-of-type(2) {
  top: 50%;
  border-top: 1px dashed #ddd;
}
.ancBacReportForm .documentsSousPartie h4 {
  font-weight: 600;
}

/** documentsSousPartie 50/50 en hauteur dans le dossier avec tabs*/
.ancBacReportForm .documentsSousPartiesPourTabs {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  height: 86vh !important;
}
.ancBacReportForm .documentsSousPartiePourTabs{
  height: 50% !important;
  max-height: 50% !important;
  overflow-y: auto;
  overflow-x: auto;
  padding: 20px;
}
.ancBacReportForm .documentsSousPartiePourTabs:nth-of-type(2) {
  border-top: 1px dashed #ddd;
}
.ancBacReportForm .documentsSousPartiePourTabs h4 {
  font-weight: 600;
}

.ancBacReportForm .dossierAlerteIcon:hover {
  opacity: 1;
}

.ancBacReportForm .modifierStatutDossier {
  margin-top: -3px;
  border-radius: 0;
}
.ancBacReportForm .hiddenTreeBranch {
  display: none;
}

.ancBacReportForm .inactiveTreeBranch {
  font-style: italic;
}

.ancBacReportForm .inactiveTreeBranch.filiereBranch {
  display: none;
}

.ancBacReportForm .inactiveTreeBranch.hiddenTreeBranch {
  display: none;
}

.ancBacReportForm .inactiveTreeBranch.showTreeBranch {
  display: inline;
}

.ancBacReportForm .inactiveTreeBranch a {
  color: #b78f8f;
}
.ancBacReportForm .modalTitle {
  height: 45px !important;
}
.ancBacReportForm .modalBody {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 45px;
  padding: 0 !important;
}

.ancBacReportForm .reportTreeView {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 250px;
  border-right: 1px solid #ccc;
  overflow: auto;
}
.ancBacReportForm .abn-tree {
  width: 100%;
  border: none;
}
.ancBacReportForm .ancBacReportContent {
  position: absolute;
  left: 250px;
  top: 0;
  right: 0;
  bottom: 0;
}
.ancBacReportForm .ancBacReportContent > .locked {
  position: fixed;
  right: 15px;
  bottom: 0;
  z-index: 500;
}
.ancBacReportForm .ancBacReportContent > .locked .alert {
  color: #fff;
  background: #d9534f;
}

.ancBacReportForm .ancBacReportContent .currentPage {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 54px;
  padding: 5px 8px;
  overflow-y: auto;
  overflow-x: hidden;
}
.ancBacReportForm .ancBacReportContent .currentPage.fullHeight,
.ancBacReportForm .ancBacReportContent .currentPage.fullHeight .ctrlForm {
  bottom: 0;
}
.ancBacReportForm .ancBacReportContent .ancBacReportActions {
  border-top: 1px solid #ccc;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 54px;
  padding: 10px 8px 0;
}
.ancBacReportForm .ancBacReportContent .ancBacReportActions .missingInfo {
  float: right;
  display: block;
  margin: 3px 15px 0;
  color: darkred;
}

.ancBacReportForm .ancBacReportContent .subitem {
  margin: 10px 0 0;
}

.ancBacReportForm .ancBacReportContent .input-group {
  width: 100%;
}

.ancBacReportForm .ancBacReportContent .input-group.form-field-addon-container {
  display: flex;
  align-items: start;
}
.ancBacReportForm .ancBacReportContent .input-group.form-field-addon-container .formField {
  margin-top: 0;
}
.ancBacReportForm .ancBacReportContent .input-group.form-field-addon-container .input-group-addon {
  display: inline-table;
  height: 34px;
  margin-left: -1px;
  padding: 8px 12px;
}

.ancBacReportForm .ancBacReportContent .subitem .title,
.ancBacReportForm .ancBacReportContent .subItemMergedTitle > div {
  padding: 10px;
  background: hsla(218, 45%, 48%, 0.1);
  color: #444;
  font-weight: 600;
  font-size: 14px;
}
.ancBacReportForm .ancBacReportContent .subItemMergedTitle > div {
  padding: 7.5px 7.5px 5px 10px;
}
.ancBacReportForm .ancBacReportContent .subItemMergedTitle > div + div {
  padding-left: 30px;
}
.ancBacReportForm .ancBacReportContent label {
  font-size: 0.9em;
}
.ancBacReportForm .ancBacReportContent .subitem .actions {
  float: right;
}
.ancBacReportForm .ancBacReportContent .subitem .content {
  padding: 15px 20px;
}

.ancBacReportForm .ancBacReportContent .subitem.disabled .content {
  padding: 2px !important;
}

.ancBacReportForm .dossier_position_picker {
  padding: 5px 5px 5px 15px;
  margin: 0 0 15px 0;
  border-left: 5px solid #ddd;
}

.ancBacReportForm .dossier_position_picker .results {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #ddd;
}
.ancBacMapConfig .opacity {
  opacity: 0.5;
}

.controlInactif{
  color: #b78f8f;
  font-style: italic;
}

/****************************************************
 PERSONNE
******************************************************/

.ancPersonne .editable.contractable:not(.contracted) {
  background: #f9f9f9;
  margin: 20px 0;
  padding: 15px;
}
.ancPersonne .contractable.contracted {
  height: 1px;
  overflow: hidden;
}
.ancPersonne .savebtn {
  margin: 20px 0 10px 0;
}
/****************************************************
 PARCELLE
******************************************************/

.actionsParcelle {
  margin-right: -13px;
}
.actionsParcelle .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/****************************************************
 DOCUMENTS
******************************************************/

.documentTypeItem {
  display: flex;
  padding: 5px;
  position: relative;
}
.documentTypeItem:nth-of-type(odd) {
  background: #f4f4f4;
}
.documentTypeItem > div {
  display: flex;
  padding: 5px;
}
.documentTypeItem > .ico {
  font-size: 22px;
  margin-right: 5px;
}
.documentTypeItem > .title {
  width: 33%;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}
.documentTypeItem .fillParams td {
  padding: 5px;
}
.documentTypeItem > .desc {
  width: 65%;
  font-size: 14px;
}
.documentTypeItem > .btn {
  position: absolute;
  right: 10px;
  top: 10px;
}

.mails_documents {
  max-height: 450px;
  overflow: auto;
}

/** ctrlFormCfg **/
.ctrlFormCfg {
  position: fixed;
  width: 250px;
  right: 25px;
  margin-top: -8px;
  background: #fff;
  z-index: 99;
  border-top: none;
  /* anti clipping */
  transform: translate3d(0, 0, 0);
}
.ctrlFormCfg .mainWwrapper {
  border: 1px solid #ccc;
  border-top: none;
}
.ctrlFormCfg .resume {
  border: 1px solid #ccc;
  border-top: none;
  display: flex;
  background: #ecf0f8;
}
.ctrlFormCfg .resume > div {
  flex-grow: 1;
  text-align: center;
  padding: 5px;
}
.ctrlFormCfg .resume > div:first-of-type i {
  color: #e74c3c;
}
.ctrlFormCfg .resume > div:nth-of-type(2) i {
  color: orange;
}
.ctrlFormCfg .resume > div i.ok {
  color: #27ae60;
}
.ctrlFormCfg .resume > div:nth-of-type(3) {
  border-left: 1px solid #ccc;
  cursor: pointer;
}

.ctrlFormCfg .title {
  font-variant: small-caps;
  font-size: 14px;
  padding: 5px;
  position: relative;
  background: #f0f0f0;
}
.ctrlFormCfg .detail {
  max-height: 200px;
  overflow-y: auto;
}

.ctrlFormCfg .nb {
  position: absolute;
  right: 5px;
}
.ctrlFormCfg .detail ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.ctrlFormCfg .detail li {
  cursor: pointer;
  font-size: 12px;
  padding: 3px;
}
.ctrlFormCfg .detail .isvalid {
  display: none;
}
.ctrlFormCfg .detail .ligne {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.ctrlFormCfg .detail .ligne i {
  color: #f05b4f !important;
  margin: 0 3px;
}
.ctrlFormCfg .detail .ligne_discriminant i {
  color: orange !important;
}
.ctrlFormCfg .detail .valid i {
  color: #27ae60 !important;
}
.ctrlFormCfg .detail .valid .isvalid {
  display: inline-block;
}
.ctrlFormCfg .detail .valid .isnotvalid {
  display: none;
}
.ctrlFormCfg .detail li:hover {
  background: #fafafa;
}

.ctrlFormRequired {
  color: #f05b4f;
}
.ctrlFormRequired:before {
  content: ' *';
  margin-right: 3px;
}

.discriLabel {
  padding: 5px;
  background: rgba(255, 165, 0, 0.2);
}

.ancBacExtraFormFields {
  margin: 0 50px 35px 50px;
  padding: 10px;
  border: 1px solid purple;
}

/** prise de rdv **/
.AncBacPriseRdv h4 {
  margin-top: 0px;
}
.AncBacPriseRdv .currentEventInfo {
  background: #ecf0f8;
  padding: 10px 15px;
  margin-top: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
}


.AncBacPriseRdv .modalBody > .row {
  border-bottom: 1px dotted #cacaca;
  padding-bottom: 10px;
  margin-right: -10px;
  margin-left: -10px;
}
.AncBacPriseRdv .label_actif {
  font-weight: 600;
}
.AncBacPriseRdv .hasSuffix {
  width: calc(100% - 40px);
}
.AncBacPriseRdv .isSuffix {
  margin-top: 23px;
}
.AncBacPriseRdv .isSuffix.minutes {
  padding: 5px;
}
.AncBacPriseRdv [data-time-format] {
  display: inline-block;
  width: 64px;
}
.AncBacPriseRdv [data-time-format] + [data-time-format] {
  margin-left: 15px;
}
.AncBacPriseRdv .controle_concernes {
  max-height: 220px;
  overflow-y: auto;
  margin-top: 5px;
}
.AncBacPriseRdv .controle_concerne {
  max-height: 110px;
  padding: 0;
  font-size: 12px;
  cursor: move;
}
.AncBacPriseRdv .controle_concerne .infos {
  padding: 3px 15px;
}
.AncBacPriseRdv .controle_concerne .infos .libelle {
  font-weight: 600;
}
.AncBacPriseRdv .controle_concerne .infos .adresse {
  font-size: 12px;
}
.AncBacPriseRdv .controle_concerne .infos .fa {
  color: #777;
}
.AncBacPriseRdv .passage {
  background: #bd1717;
  color: #fff;
  display: inline-block;
  padding: 0 5px;
  margin: 0 10px;
  margin-top: 3px;
}
.AncBacPriseRdv .passage .fa {
  color: #fff !important;
}
.AncBacPriseRdv .controle_concernes .actions {
  position: absolute;
  right: 7.5px;
  bottom: 7.5px;
}
.AncBacPriseRdv .controle_concernes .list-group-item-warning {
  background: #fafafa;
}

.ancBacGestionCivilites {
  padding: 25px 0;
  width: 700px;
  margin: 0 auto;
}
.ancBacGestionCivilites .orderListWrapper {
  margin-top: -4px;
}
.ancBacGestionCivilites .orderListWrapper .btn {
  height: 15px;
}

.ancBacIndexation {
  border: 1px dotted #bbb;
  background: #fafafa;
}
.ancBacIndexationProgress {
  padding: 15px 0;
}
.ancBacIndexationProgress .detail {
  width: 80%;
  margin: 25px auto;
}
.ancBacIndexationProgress .alreadyIndexed {
  color: #6ab04c;
  position: relative;
}

.ancBacIndexationProgress .qteBrut,
.ancBacIndexationProgress .qteBrutIndexee {
  cursor: help;
}
.ancBacIndexationProgress .launchIndexation {
  margin: 0 auto;
}
.ancBacIndexationProgress .sub {
  padding: 10px 5px;
  display: flex;
  position: relative;
}
.ancBacIndexationProgress .sub label {
  width: 250px;
  font-weight: 100;
  padding-right: 10px;
}

.ancBacIndexationProgress .sub .qteIndexee {
  position: absolute;
  right: -60px;
  min-width: 40px;
  background: #f4f4f4;
  color: #444;
  text-align: center;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.12), 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}

.ancBacIndexationProgress .sub .qteBrut,
.ancBacIndexationProgress .sub .qteBrutIndexee {
  position: absolute;
  right: 0;
  color: #444;
  text-align: center;
  padding: 2px 5px;
  width: 60px;
  text-align: right;
}

.ancBacIndexationProgress .sub .qteBrut {
  right: 0;
}

.ancBacIndexationProgress .sub .qteBrutIndexee {
  right: -70px;
  color: teal;
}

.ancBacIndexationProgress .indexationEncours {
  text-align: center;
  padding: 25px 15px;
}
.indexMProgress {
  flex: 1;
  height: 4px;
  margin-top: 10px;
  background-color: #c5cae9;
  overflow: hidden;
  position: relative;
}
.indexMBar {
  width: 0;
  transition: width 0.5s ease, background-color 2s ease;
  height: 4px;
  background-color: #3f51b5;
}
.indexMBar.indexed {
  background-color: #6ab04c;
}
.indexMBar.undetermined {
  width: 30% !important;
  position: absolute;
  animation: greenglow 1s linear infinite;
}
@keyframes greenglow {
  from {
    left: -120px;
  }
  to {
    left: 100%;
  }
}

.elasticAncControleRule {
  padding: 10px;
  border: 1px dotted #ccc;
  background: #eee;
  margin: 10px 0;
}
.elasticAncControleRule .inner {
  display: flex;
}
.elasticAncControleRule .sub:nth-child(2) {
  width: 200px;
  flex-grow: 1;
}
.elasticAncControleRule .q h5 {
  font-weight: 600;
}
.elasticAncControleRule .refreshAttributsCtrlJson {
  margin: 50px auto 0;
}

.ancBacAdminRecherche {
  padding-bottom: 300px;
}

.centeredDiv {
  float: none;
  margin: 0 auto;
}
.attributsCtrlJson {
  display: inline-block;
  width: 550px !important;
  vertical-align: middle;
}
.attributsCtrlJson .ui-select-toggle,
.attributsCtrlJson input[type='search'] {
  width: 550px;
}

.attributsCtrlJson .ui-select-match {
  overflow: hidden;
}
.attributsCtrlJson .ui-select-choices {
  min-height: 300px;
}

.attributsCtrlJson .ui-select-choices-group-label {
  font-weight: 600;
  color: #444;
  font-size: 1.5em;
}

.attributsCtrlJson .ctrls {
  float: right;
  color: teal;
  font-size: 10px;
  padding: 2px 5px 2px 0;
}
.attributsCtrlJson .category {
  width: auto !important;
  padding-right: 10px;
  font-weight: 600;
  color: #333;
}
.attributsCtrlJson .ui-select-choices-row-inner .alias {
  display: block;
  width: 80%;
  white-space: normal !important;
}

/** dashboard anc bac **/
.ancBacDashboard {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.ancBacGraphWrapper {
  display: flex;
  flex-basis: 50%;
  justify-content: center;
  flex-direction: column;
  min-height: 200px;
}
.ancBacGraphWrapper .loading {
  position: relative;
}
.ancBacGraphWrapper.loaded .loading {
  display: none;
}
.datLoader {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;

  -webkit-animation: sk-rotate 2s infinite linear;
  animation: sk-rotate 2s infinite linear;
}

.datLoader .dot {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #ef6cb9;
  border-radius: 100%;

  -webkit-animation: sk-bounce 2s infinite ease-in-out;
  animation: sk-bounce 2s infinite ease-in-out;
}

.datLoader .dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

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

@-webkit-keyframes sk-bounce {
  0%,
  100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.ancBacReportForm.dossierTournee h3 {
  background-color: #d9534f;
}

.ancBacReportForm.dossierTournee .controleANC .btn:not(.visibleTournee),
.ancBacReportForm.dossierTournee .filieresANC .btn:not(.visibleTournee),
.ancBacReportForm.dossierTournee .elemFiliere .btn:not(.visibleTournee),
.ancBacReportForm.dossierTournee .ancElementFiliere .btn:not(.visibleTournee),
.ancBacReportForm.dossierTournee .documentsSousPartie .btn:not(.visibleTournee),
.ancBacReportForm.dossierTournee .taskManager .btn:not(.visibleTournee),
.ancBacReportForm.dossierTournee .tableFeatureHistory .btn:not(.visibleTournee),
.ancBacReportForm.dossierTournee .vidangeANC .btn:not(.visibleTournee),
.ancBacReportForm.dossierTournee .currentPage .btn:not(.visibleTournee),
.ancBacReportForm.dossierTournee .ancBacReportActions .btn:not(.visibleTournee),
.ancBacReportForm.dossierTournee
  .representation_filiere
  .fa:not(.visibleTournee),
.ancBacReportForm.dossierTournee .modalBody .btn:not(.visibleTournee) {
  visibility: hidden;
}

.ancBacReportForm.dossierTournee .content select,
.ancBacReportForm.dossierTournee .content input[type='checkbox'] {
  pointer-events: none;
}

.ancBacReportForm.dossierTournee .controleANC .datepicker button,
.ancBacReportForm.dossierTournee .modalBody .datepicker button {
  visibility: visible !important;
}

.ancBacReportForm.dossierTournee .newElem,
.ancBacReportForm.dossierTournee .listeGroupeFilieres {
  display: none;
}

.listeGroupeFilieres .vertical-center {
  margin: 0;
  position: absolute;
  top: 450%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 170px;
}

/* override ce comportement present dans le g2ctemplate.css */
#featureattachement_div .ng-table-pager {
  display: block !important;
}

/* --- ancBacPositionDossier --- */
.ancBacPositionDossier {
  padding: 10px 0 10px 0;
}

.ancBacPositionDossier .subitem {
  margin: 0 !important;
}
.ancBacPositionDossier .subitem .title {
  background: #fff !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.ancBacPositionDossier .subitem .content {
  padding: 15px !important;
  background: #fafafa;
}
.ancBacPositionDossier .subitem .form-intermediate-title {
  /* display: none; */
  margin-top: 0;
}
.ancBacPositionDossier .previewAdresse {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  color: #333;
  font-weight: 600;
  margin-left: 10px;
  margin-top: 20px;
  text-align: center;
  z-index: -1;
}

.ancBacPositionDossier .showDetailAdresse {
  border: none;
  margin: 15px 5px 0;
}
.ancBacPositionDossier .adresse_wrapper {
  position: absolute;
  left: 50%;
}
.ancBacPositionDossier .adresse {
  background: #fff;
  color: #555;
  padding: 7.5px 10px;
  position: relative;
  top: 80px;
  left: -50%;
  z-index: 3;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
  color: #777;
  font-style: italic;
}
.ancBacPositionDossier.hasPosition .adresse {
  top: 45px;
}
.ancBacPositionDossier.hasPosition .adresse:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  left: calc(50% - 17px);
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-top: 17px solid #fff;
}


.ancBacPositionDossier .adresse .ispos .fa {
  color: #5e9a5e;
}

.ancBacPositionDossier .mapPreview {
  background: #fafafa;
  min-height: 220px;
  position: relative;
}

.ancBacPositionDossier #pos_dossier {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.ancBacPositionDossier .tools {
  display: none;
}

.ancBacPositionDossier .tools {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 889;
  margin: 10px;
  /* border: 1px solid red; */
}
.ancBacPositionDossier .tools > div,
.ancBacPositionDossier .ol-popup {
  background: #fff;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
}

/* tools top */
.ancBacPositionDossier .tools .search {
  padding: 10px 10px 10px 15px;
  background: #fff;
  width: 550px;
  display: flex;
}
.ancBacPositionDossier .tools .search .mode {
  border: none;
  background: #fff;
  outline: 0;
  border: 0px;
  font-size: 0.9em;
}
.ancBacPositionDossier .tools .search ul {
  width: 550px;
  left: 0 !important;
  border: none !important;
  border-radius: 0;
  box-shadow: none;
}
.ancBacPositionDossier .tools .search ul li {
  color: #aaa !important;
}
.ancBacPositionDossier .tools .search .searchIcon {
  margin: 4px 5px 0 0;
  color: #ccc;
}
.ancBacPositionDossier .tools .search ul a {
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 10px;
}
.ancBacPositionDossier .tools .search ul .active > a {
  background-color: #eee;
  color: #333;
}
.ancBacPositionDossier .tools .search input[type='text'] {
  border: none;
  height: 24px;
  line-height: 24px;
  outline: 0;
  font-family: Arial;
  width: calc(100% - 25px);
  margin: 0 5px;
  font-size: 0.9em;
}
.ancBacPositionDossier .tools .search .resetPositionDossier {
  font-size: 22px;
  color: #aaa;
  cursor: pointer;
}
.ancBacPositionDossier .tools input[type='text']::placeholder {
  color: #aaa;
}
.ancBacPositionDossier .tools .position {
  padding: 5px;
  width: 40px;
  font-size: 22px;
  text-align: center;
  line-height: 30px;
  margin-left: 5px;
  cursor: pointer;
  transition: all 0.2s linear;
}
.ancBacPositionDossier .tools .position.toggled {
  background: #2980b9;
  color: #fff;
}

/* tools left */
.ancBacPositionDossier .tools.left {
  top: 50px;
  bottom: 0;
  height: auto;
  width: 1px;
}

/* tools bottom */
.ancBacPositionDossier .tools.bottom {
  top: auto;
  left: auto;
  right: 10px;
  bottom: 10px;
}

.ancBacPositionDossier .tools.bottom .valider {
  font-size: 28px;
  padding: 20px;
  border-radius: 50%;
  background: #3498db;
  color: #fff;
  cursor: pointer;
  transition: all 0.5s linear;
}
.ancBacPositionDossier .tools.bottom .valider:hover {
  background: #2980b9;
}

/* fullscreen */
.ancBacPositionDossier.fullScreen #pos_dossier {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 888;
  background: #ccc;
}
.ancBacPositionDossier:not(.fullScreen) features-config,
.ancBacPositionDossier:not(.fullScreen) .ol-popup {
  display: none;
}

.ancBacPositionDossier features-config {
  position: fixed;
  z-index: 889;
  background: #fff;
  right: 10px;
  top: 10px;
}
.ancBacPositionDossier features-config .featuresConfig {
  position: absolute;
  right: 0;
  top: 60px;
  background: #fff !important;
}
.ancBacPositionDossier features-config .featuresConfig .header {
  background: #fff !important;
  color: #444;
}

.ancBacPositionDossier.fullScreen .tools {
  display: flex;
}
.ancBacPositionDossier.fullScreen .closeBtn {
  position: absolute;
  right: 0;
  top: 0;
}

.ancBacPositionDossier.fullScreen .tools .resultSearch {
  flex-direction: column;
  position: fixed;
  top: 55px;
  left: 10px;
}

.ancBacPositionDossier.fullScreen .tools .resultSearch .hideResult {
  display: none;
}

.ancBacPositionDossier.fullScreen .tools .resultSearch div span {
  width: 100%;
  color: #333 !important;
  list-style-type: none;
}
.ancBacPositionDossier.fullScreen .tools .resultSearch div:hover {
  background-color: #f5f5f5 !important;
  cursor: pointer;
}

.ancBacPositionDossier .ol-popup {
  border-radius: 0;
  width: 500px;
  font-size: 15px;
  padding: 0;
  margin-left: -200px;
  transform: translateY(-15px);
}
.ancBacPositionDossier .ol-popup:after {
  border-top-color: #fff;
}
.ancBacPositionDossier .ol-popup:after,
.ancBacPositionDossier .ol-popup:before {
  left: 250px;
}
.ancBacPositionDossier .ol-popup .title {
  padding: 10px 10px 0 !important;
  color: #3498db !important;
  background: none !important;
  display: none;
}
.ancBacPositionDossier .ol-popup .body {
  padding: 5px 10px !important;
}
.ancBacPositionDossier .ol-popup .body input[type='checkbox'] {
  margin: 10px 3px 0 0;
}
.ancBacPositionDossier .ol-popup .body label {
  font-weight: 100;
  margin-bottom: 0;
  margin-top: 4px;
}
.ancBacPositionDossier .ol-popup .body .sub {
  display: flex;
  flex-direction: row;
}
.ancBacPositionDossier .ol-popup .body .sub:not(.checked) {
  text-decoration: line-through;
  color: #888;
}

.ancBacPositionDossier .ol-popup .body .value {
  font-weight: 600;
  font-size: 11.5px;
  color: #5e9a5e;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 5px 0 0 10px;
}
.ancBacPositionDossier .ol-popup .actions {
  float: none;
  padding: 7.5px;
}

anc-bac-configuration-requete-json + .list-group-item.actions {
  margin: 15px 0 15px 0;
}

.elasticRelations {
  overflow-x: initial !important;
}

.nbCharMax {
  margin: 5px 0;
  color: coral;
  cursor: help;
}

[bs-typeahead].magnifyTypeahead {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAACXBIWXMAAABIAAAASABGyWs+AAAACXZwQWcAAAAgAAAAIACH+pydAAAAKlBMVEUAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD1lHmjAAAADnRSTlMAAAQIDBAUICQoMDQ4QE0be7wAAAABYktHRAH/Ai3eAAAAwElEQVQoz43RsQrCMBAG4KOg6Ka4FEQQ1y6Oju4iuLi7+haimyA4+Ryirn0EQVCwWv538frHaJIuvSl8/LlcEmkHJRWgJTJKkW+ERWigqNUPopSQ9y0kwGG+BE4WdjjraoLsCx0T1o1DAzEebDdlW4Uu9oQmjgZ6WBDquFkYE2p/mIUQbCk1jXH3jy0NpqNfOHoeXo69nOsDL/+Brow4T5gwYkBkwGM0YqEoRlxgxIUiknmgkbcHGnn6EG3XFT77A6uOcvKZ/VTJAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDEwLTAyLTExVDExOjUwOjA4LTA2OjAw1hBl+wAAACV0RVh0ZGF0ZTptb2RpZnkAMjAwNi0wNS0wNVQxMzoyMjo0MC0wNTowML/k/hoAAAAASUVORK5CYII=');
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
  background-size: 20px;
}

.ancBacListeDossiers
  .fixedTbodyLine.geometricFeaturesPositionning
  td:first-of-type {
  padding-left: 35px;
}
.ancBacListeDossiers .gcDatatable div.actions {
  margin-left: 5px;
}

.ancBacListeDossiers .listeDossierCtrlType {
  font-weight: 600;
  display: block;
  font-size: 0.95em;
  width: 110px;
  color: #428bca;
  text-decoration: underline;
  cursor: pointer;
}
.ancBacListeDossiers .listeDossierCtrlType > span {
  text-decoration: underline;
  cursor: pointer;
}
.ancBacListeDossiers .listeDossierCtrlType > .muted {
  color: #888;
  cursor: default;
  text-decoration: none !important;
}

/* highlight geometricFeaturesHighlight in datatable */
.ancBacListeDossiers .gcDatatable .geometricFeaturesHighlight {
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 100%;
  border-right: 1px solid #ddd;
}
.ancBacListeDossiers .gcDatatable .geometricFeaturesHighlight:after {
  position: absolute;
  content: '\f041';
  font-family: 'FontAwesome';
  top: 0;
  left: 5px;
  font-size: 20px;
  color: #5e9a5e;
}

.ancMobileBrowserDump {
  position: absolute;
  bottom: 0;
  padding: 10px;
  left: 2.5%;
  width: 95%;
}

.setRed {
  border: 1px solid red;
}

.evenattributes {
  background: #fafafa;
}

.fixedHeaderTableWrapper .searchTr th .numberDateFilterSelect.text {
  width: 38px;
  font-family: 'rdmicons';
  font-size: 16px !important;
  font-weight: 100;
  text-indent: -2px -2px;
  color: #444;
}

.fixedHeaderTableWrapper .searchTr th .numberDateFilterSelect.text option {
  font-family: 'rdmicons' !important;
}
.fixedHeaderTableWrapper .searchTr th input[type='text'] {
  font-style: normal;
  padding-right: 2px;
}

.openRDVFromListeDossiers {
  position: abosolute;
  right: 0;
  bottom: 0;
}

/****************************************************
 Etat dossier
******************************************************/
.spanEtatDossier {
  padding: 8px 8px 13px 8px;
  display: inline-block;
}

.spanEtatDossierAvis {
  padding: 5px;
  display: inline-block;
  font-size: 1em;
  overflow-y: auto;
  max-height: 100px;
}
.spanEtatDossierAlert {
  background-color: red;
  color: #fff;
}
.spanEtatDossierNoDatePreconisee {
  background-color: blue;
  color: #fff;
}
.spanEtatDossierValid {
  background-color: #32cd32;
  color: #fff;
}
.spanEtatDossierWarning {
  background-color: orange;
  color: #fff;
}

.tableTdWrapper {
  position: relative;
  min-height: 50px;
}

.tableTdWrapperPickDate {
  min-height: 50px;
}

.openRDVFromListeDossiers {
  position: absolute;
  right: 5px;
  bottom: 5px;
}
.rtextra.both {
  position: absolute;
}
.reportTitleProprietaires,
.reportTitleAdresse {
  font-size: 14px;
  color: #eee;
  margin-left: 15px;
}
.reportTitleAdresse.both {
  margin-top: -6px;
}
.reportTitleProprietaires.both {
  margin-top: 10px;
}

.reportTitleRDV {
  position: absolute !important;
  right: 42px;
  top: 10px;
  background: #d9534f;
  color: #fff;
  padding: 5px 8px;
  font-size: 14px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.35);
}

.copyReportLink {
  display: inline-block;
  padding-right: 10px;
  transition: all 0.15s linear;
}

.copyReportLink:hover {
  text-shadow: 0 0 5px lightblue, 0 0 15px #eef;
  cursor: copy;
}

.ctrlActions .copyReportLink {
  padding: 0 5px;
}
.ctrlActions .copyReportLink:hover {
  color: #428bca;
  text-shadow: none;
}

.ng-table-attachmnt {
  width: auto;
  table-layout: fixed;
  min-width: 100%;
}

.generationFacturesAssociees {
  left: 0;
  right: 0;
}
.generationFacturesAssociees .btn .fa {
  margin-right: 5px;
}


/* ancBacVerifIndexationDossier */
.ancBacVerifIndexationDossier{
  float: right;
  margin-left: 5px;
}
.ancBacVerifIndexationDossier .list {
  height: 200px;
  border: 1px solid #dddddd;
  padding: 0 0 10px 0 !important;
  overflow: auto;
  overflow-x: hidden;
}
/* omega */
.searchOmegaFromDossierAncBac, .searchOmegaFromDossierAncBac:active{
  float: right;
  padding-left: 40px;
   background: url('../img/omega_logo.png') no-repeat 7px 50% ;
   background-size: 24px;
}

.searchOmegaFromDossierAncBac.relie span{
  background: green;
  color: #fff;
  display: inline-block;
  padding: 2.5px 5px;
  font-weight: 600;
  font-size: .9em;
}

.label-alike {
  font-size: 0.9em;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}

/* css for majic page */
.departementchoice  {
  height: 25px;
  width:25px;
}

.yearchoice  {
  height: 25px;
  width:80px;
}
