/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers * /
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
*/

/* ./drupal8/core/themes/stable/css/system/components/ajax-progress.module.css */
/**
 * @file
 * Throbber.
 */

.ajax-progress {
  display: inline-block;
  padding: 1px 5px 2px 5px;
}
[dir="rtl"] .ajax-progress {
  float: right;
}
.ajax-progress-throbber .throbber {
  display: inline;
  padding: 1px 5px 2px;
  background: transparent url(/sosinfo/../images/core/throbber-active.gif) no-repeat 0 center;
}
.ajax-progress-throbber .message {
  display: inline;
  padding: 1px 5px 2px;
}
tr .ajax-progress-throbber .throbber {
  margin: 0 2px;
}
.ajax-progress-bar {
  width: 16em;
}

/* Full screen throbber */
.ajax-progress-fullscreen {
  position: fixed;
  z-index: 1000;
  top: 48.5%;
  /* Can't do center:50% middle: 50%, so approximate it for a typical window size. */
  left: 49%; /* LTR */
  width: 24px;
  height: 24px;
  padding: 4px;
  opacity: 0.9;
  border-radius: 7px;
  background-color: #232323;
  background-image: url(/sosinfo/../images/core/loading-small.gif);
  background-repeat: no-repeat;
  background-position: center center;
}
[dir="rtl"] .ajax-progress-fullscreen {
  right: 49%;
  left: auto;
}
/* ./drupal8/core/themes/stable/css/system/components/align.module.css */
/**
 * @file
 * Alignment classes for text and block level elements.
 */

.text-align-left {
  text-align: left;
}
.text-align-right {
  text-align: right;
}
.text-align-center {
  text-align: center;
}
.text-align-justify {
  text-align: justify;
}

/**
 * Alignment classes for block level elements (images, videos, blockquotes, etc.)
 */
.align-left {
  float: left;
}
.align-right {
  float: right;
}
.align-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
/* ./drupal8/core/themes/stable/css/system/components/autocomplete-loading.module.css */
/**
 * @file
 * Visual styles for animated throbber.
 *
 * @see autocomplete.js
 */

.js input.form-autocomplete {
  background-image: url(/sosinfo/../images/core/throbber-inactive.png);
  background-repeat: no-repeat;
  background-position: 100% center; /* LTR */
}
.js[dir="rtl"] input.form-autocomplete {
  background-position: 0% center;
}
.js input.form-autocomplete.ui-autocomplete-loading {
  background-image: url(/sosinfo/../images/core/throbber-active.gif);
  background-position: 100% center; /* LTR */
}
.js[dir="rtl"] input.form-autocomplete.ui-autocomplete-loading {
  background-position: 0% center;
}
/* ./drupal8/core/themes/stable/css/system/components/clearfix.module.css */
/**
 * @file
 * Float clearing.
 *
 * Based on the micro clearfix hack by Nicolas Gallagher, with the :before
 * pseudo selector removed to allow normal top margin collapse.
 *
 * @see http://nicolasgallagher.com/micro-clearfix-hack
 */

.clearfix:after {
  display: table;
  clear: both;
  content: "";
}
/* ./drupal8/core/themes/stable/css/system/components/container-inline.module.css */
/**
 * @file
 * Inline items.
 */

.container-inline div,
.container-inline label {
  display: inline;
}
/* Details contents always need to be rendered as block. */
.container-inline .details-wrapper {
  display: block;
}
/* ./drupal8/core/themes/stable/css/system/components/details.module.css */
/**
 * @file
 * Collapsible details.
 *
 * @see collapse.js
 */

.js details:not([open]) .details-wrapper {
  display: none;
}
/* ./drupal8/core/themes/stable/css/system/components/fieldgroup.module.css */
/**
 * @file
 * Fieldgroup border reset.
 */

.fieldgroup {
  padding: 0;
  border-width: 0;
}
/* ./drupal8/core/themes/stable/css/system/components/hidden.module.css */
/**
 * @file
 * Utility classes to hide elements in different ways.
 */

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be collapsible details that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen readers.
 *
 * Used for information required for screen reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user.
 * "!important" is used to prevent unintentional overrides.
 */
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

/**
 * The .focusable class extends the .visually-hidden class to allow
 * the element to be focusable when navigated to via the keyboard.
 */
.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  position: static !important;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
}

/**
 * Hide visually and from screen readers, but maintain layout.
 */
.invisible {
  visibility: hidden;
}
/* ./drupal8/core/themes/stable/css/system/components/item-list.module.css */
/**
 * @file
 * Styles for item list.
 */

.item-list__comma-list,
.item-list__comma-list li {
  display: inline;
}
.item-list__comma-list {
  margin: 0;
  padding: 0;
}
.item-list__comma-list li:after {
  content: ", ";
}
.item-list__comma-list li:last-child:after {
  content: "";
}
/* ./drupal8/core/themes/stable/css/system/components/js.module.css */
/**
 * @file
 * Utility classes to assist with Javascript functionality.
 */

/**
 * For anything you want to hide on page load when JS is enabled, so
 * that you can use the JS to control visibility and avoid flicker.
 */
.js .js-hide {
  display: none;
}

/**
 * For anything you want to show on page load only when JS is enabled.
 */
.js-show {
  display: none;
}
.js .js-show {
  display: block;
}
/* ./drupal8/core/themes/stable/css/system/components/nowrap.module.css */
/**
 * @file
 * Utility class to prevent text wrapping.
 */

.nowrap {
  white-space: nowrap;
}
/* ./drupal8/core/themes/stable/css/system/components/position-container.module.css */
/*
 * @file
 * Contain positioned elements.
 */

.position-container {
  position: relative;
}
/* ./drupal8/core/themes/stable/css/system/components/progress.module.css */
/**
 * @file
 * Progress behavior.
 *
 * @see progress.js
 */

.progress {
  position: relative;
}
.progress__track {
  min-width: 100px;
  max-width: 100%;
  height: 16px;
  margin-top: 5px;
  border: 1px solid;
  background-color: #fff;
}
.progress__bar {
  width: 3%;
  min-width: 3%;
  max-width: 100%;
  height: 1.5em;
  background-color: #000;
}
.progress__description,
.progress__percentage {
  overflow: hidden;
  margin-top: 0.2em;
  color: #555;
  font-size: 0.875em;
}
.progress__description {
  float: left; /* LTR */
}
[dir="rtl"] .progress__description {
  float: right;
}
.progress__percentage {
  float: right; /* LTR */
}
[dir="rtl"] .progress__percentage {
  float: left;
}
.progress--small .progress__track {
  height: 7px;
}
.progress--small .progress__bar {
  height: 7px;
  background-size: 20px 20px;
}
/* ./drupal8/core/themes/stable/css/system/components/reset-appearance.module.css */
/*
 * @file
 * Utility class to remove browser styles, especially for button.
 */

.reset-appearance {
  margin: 0;
  padding: 0;
  border: 0 none;
  background: transparent;
  line-height: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* ./drupal8/core/themes/stable/css/system/components/resize.module.css */
/**
 * @file
 * Resizable textareas.
 */

.resize-none {
  resize: none;
}
.resize-vertical {
  min-height: 2em;
  resize: vertical;
}
.resize-horizontal {
  max-width: 100%;
  resize: horizontal;
}
.resize-both {
  max-width: 100%;
  min-height: 2em;
  resize: both;
}
/* ./drupal8/core/themes/stable/css/system/components/sticky-header.module.css */
/**
 * @file
 * Table header behavior.
 *
 * @see tableheader.js
 */

table.sticky-header {
  z-index: 500;
  top: 0;
  margin-top: 0;
  background-color: #fff;
}
/* ./drupal8/core/themes/stable/css/system/components/system-status-counter.css */
/**
 * @file
 * Styles for the system status counter component.
 */

.system-status-counter__status-icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
}
.system-status-counter__status-icon:before {
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-position: center 2px;
  background-size: 20px;
}

.system-status-counter__status-icon--error:before {
  background-image: url(/sosinfo/../images/core/icons/e32700/error.svg);
}
.system-status-counter__status-icon--warning:before {
  background-image: url(/sosinfo/../images/core/icons/e29700/warning.svg);
}
.system-status-counter__status-icon--checked:before {
  background-image: url(/sosinfo/../images/core/icons/73b355/check.svg);
}
/* ./drupal8/core/themes/stable/css/system/components/system-status-report-counters.css */
/**
 * @file
 * Styles for the system status report counters.
 */

.system-status-report-counters__item {
  width: 100%;
  margin-bottom: 0.5em;
  padding: 0.5em 0;
  text-align: center;
  white-space: nowrap;
  background-color: rgba(0, 0, 0, 0.063);
}

@media screen and (min-width: 60em) {
  .system-status-report-counters {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .system-status-report-counters__item--half-width {
    width: 49%;
  }
  .system-status-report-counters__item--third-width {
    width: 33%;
  }
}
/* ./drupal8/core/themes/stable/css/system/components/system-status-report-general-info.css */
/**
 * @file
 * Default styles for the System Status general info.
 */

.system-status-general-info__item {
  margin-top: 1em;
  padding: 0 1em 1em;
  border: 1px solid #ccc;
}

.system-status-general-info__item-title {
  border-bottom: 1px solid #ccc;
}
/* ./drupal8/core/themes/stable/css/system/components/tabledrag.module.css */
/**
 * @file
 * Table drag behavior.
 *
 * @see tabledrag.js
 */

.fs-1 {
    font-size: 1.5rem;
}

body.drag {
  cursor: move;
}
tr.region-title {
  font-weight: bold;
}
tr.region-message {
  color: #999;
}
tr.region-populated {
  display: none;
}
tr.add-new .tabledrag-changed {
  display: none;
}
.draggable a.tabledrag-handle {
  float: left; /* LTR */
  overflow: hidden;
  height: 1.7em;
  margin-left: -1em; /* LTR */
  cursor: move;
  text-decoration: none;
}
[dir="rtl"] .draggable a.tabledrag-handle {
  float: right;
  margin-right: -1em;
  margin-left: 0;
}
a.tabledrag-handle:hover {
  text-decoration: none;
}
a.tabledrag-handle .handle {
  width: 14px;
  height: 14px;
  margin: -0.4em 0.5em 0;
  padding: 0.42em 0.5em;
  background: url(/sosinfo/../images/core/icons/787878/move.svg) no-repeat 6px 7px;
}
a.tabledrag-handle:hover .handle,
a.tabledrag-handle:focus .handle {
  background-image: url(/sosinfo/../images/core/icons/000000/move.svg);
}
.touchevents .draggable td {
  padding: 0 10px;
}
.touchevents .draggable .menu-item__link {
  display: inline-block;
  padding: 10px 0;
}
.touchevents a.tabledrag-handle {
  width: 40px;
  height: 44px;
}
.touchevents a.tabledrag-handle .handle {
  height: 21px;
  background-position: 40% 19px; /* LTR */
}
[dir="rtl"] .touch a.tabledrag-handle .handle {
  background-position: right 40% top 19px;
}
.touchevents .draggable.drag a.tabledrag-handle .handle {
  background-position: 50% -32px;
}
.tabledrag-toggle-weight-wrapper {
  text-align: right; /* LTR */
}
[dir="rtl"] .tabledrag-toggle-weight-wrapper {
  text-align: left;
}
.indentation {
  float: left; /* LTR */
  width: 20px;
  height: 1.7em;
  margin: -0.4em 0.2em -0.4em -0.4em; /* LTR */
  padding: 0.42em 0 0.42em 0.6em; /* LTR */
}
[dir="rtl"] .indentation {
  float: right;
  margin: -0.4em -0.4em -0.4em 0.2em;
  padding: 0.42em 0.6em 0.42em 0;
}
/* ./drupal8/core/themes/stable/css/system/components/tablesort.module.css */
/**
 * @file
 * Table sort indicator.
 *
 * @see tablesort-indicator.html.twig
 */

.tablesort {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: 100%;
}
.tablesort--asc {
  background-image: url(/sosinfo/../images/core/icons/787878/twistie-down.svg);
}
.tablesort--desc {
  background-image: url(/sosinfo/../images/core/icons/787878/twistie-up.svg);
}
/* ./drupal8/core/themes/stable/css/system/components/tree-child.module.css */
/**
 * @file
 * Visual styles for a nested tree child.
 */

div.tree-child {
  background: url(/sosinfo/../images/core/tree.png) no-repeat 11px center; /* LTR */
}
div.tree-child-last {
  background: url(/sosinfo/../images/core/tree-bottom.png) no-repeat 11px center; /* LTR */
}
[dir="rtl"] div.tree-child,
[dir="rtl"] div.tree-child-last {
  background-position: -65px center;
}
div.tree-child-horizontal {
  background: url(/sosinfo/../images/core/tree.png) no-repeat -11px center;
}


/* Styles for Albi Mines ENT
 * */

/* @import 'commons/_fonts.css';*/ 
/* Fonts
 * */
@font-face {
    font-family: 'Roboto';
    src: url('/sosinfo/fonts/RobotoRegular.eot');
    src: url('/sosinfo/fonts/RobotoRegular.eot') format('embedded-opentype'),
         url('/sosinfo/fonts/RobotoRegular.woff2') format('woff2'),
         url('/sosinfo/fonts/RobotoRegular.woff') format('woff'),
         url('/sosinfo/fonts/RobotoRegular.ttf') format('truetype'),
         url('/sosinfo/fonts/RobotoRegular.svg#RobotoRegular') format('svg');
  font-style: normal;
  font-weight: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('/sosinfo/fonts/RobotoBold.eot');
    src: url('/sosinfo/fonts/RobotoBold.eot') format('embedded-opentype'),
         url('/sosinfo/fonts/RobotoBold.woff2') format('woff2'),
         url('/sosinfo/fonts/RobotoBold.woff') format('woff'),
         url('/sosinfo/fonts/RobotoBold.ttf') format('truetype'),
         url('/sosinfo/fonts/RobotoBold.svg#RobotoBold') format('svg');
  font-style: normal;
  font-weight: bold;
}

@font-face {
    font-family: 'Roboto';
    src: url('/sosinfo/fonts/RobotoLight.eot');
    src: url('/sosinfo/fonts/RobotoLight.eot') format('embedded-opentype'),
         url('/sosinfo/fonts/RobotoLight.woff2') format('woff2'),
         url('/sosinfo/fonts/RobotoLight.woff') format('woff'),
         url('/sosinfo/fonts/RobotoLight.ttf') format('truetype'),
         url('/sosinfo/fonts/RobotoLight.svg#RobotoLight') format('svg');
  font-style: normal;
  font-weight: 300;
}
/* @import 'commons/_typography.css';*/ 
/* Typography
 * */

body {
  color: #0C2340;
  font-family: "Roboto", Helvetica, Arial, 'Liberation Sans', sans-serif;
  font-weight: normal;
}

/* Links */
a {
  color: #ef7d00;
}

.region-sidebar a,
.region-content a {
  color: #ef7d00;
  padding: 2px 3px;
}

.region-sidebar a:hover,
.region-content a:hover {
  background-color: #ef7d00;
  color: #ffffff;
  text-decoration: none;
}

.more-link {
  text-align: right;
}
.more-link a {
  background-color: #ef7d00;
  border: 1px solid #ef7d00;
  border-radius: 2px;
  color: #ffffff;
  text-decoration: none;
  padding: 6px;
}
.more-link a:hover {
  color: #ef7d00;
  background-color: #FFF;
  text-decoration: underline;
}

/* Headers */
h1 {
  font-size: 2.1rem;
}
h2 {
  font-size: 1.8rem;
}
h1,
h2,
h3,
h4 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 300;
}

.region-content h1 {
  color: #0b1f39;
  font-size: 3.214rem;
  text-transform: uppercase;
}
.region-content h2,
.region-annonces h2 {
  color: #2a2d34;
  font-size: 1.643rem;
  text-transform: uppercase;
  padding-bottom: 15px;
  border-bottom: 1px solid #e2e2e2;
}

#block-block-annonce-home-page h2,
.region-annonces h2 {
  color: #ef7d00;
  font-weight: bold;
}
.region-sidebar h2 {
  color: #ef7d00;
}

.region-content h3,
.region-sidebar h3,
.region-annonces h3 {
  color: #009fd4;
  font-size: 1.429rem;
}

.region-content h4,
.region-annonces h4 {
  font-size: 1.25rem;
}
#block-block-titre-processus h1 {
  font-weight: normal;
}

/* Bloc sur page d'accueil pour dernières publications - EO 6/5/2019 */
#block-gedderniersfichierspublies-2 h2 {
  color: #ef7d00;
  font-weight: bold;
}

/* Lists */
.region-sidebar li,
.region-content li {
  list-style-image: url('/sosinfo/img/puce.png');
}

.region-content li li,
.region-content .nav li {
  list-style-image: none;
}

/* Blockquotes */

blockquote {
  background-color: white;
  padding: 8px 10px;
}
blockquote p:last-child {
    margin-bottom: 0;
}
/* @import 'commons/_forms.css';*/ 
.form-submit {
    background-color: #FFFFFF;
    color: #ef7d00;
    border: 1px solid #ef7d00;
    border-radius: 4px;
    padding: 3px 6px;
    display: inline-block;
    cursor: pointer;
}
/* @import 'commons/_messages.css';*/ 
.alert {
  background-color: #f2f2f2;
  margin-bottom: 10px;
  border-radius: 0;
}

.message--status {
  border-left: 3px solid #00B8DE;
  color: #00B8DE;
}

.message--warning {
  border-left: 3px solid #ef7d00;
  color: #ef7d00;
}

.message--error {
  border-left: 3px solid #C10C1A;
  color: #C10C1A;
}
/* @import 'commons/_modals.css';*/ 
/* Modal theme */

.ui-dialog {
  padding: 0;
}
.ui-widget.ui-widget-content {
  border: none;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
}
.ui-corner-all {
  border-radius: 0;
}

.ui-widget-header {
    border: none;
    background: #009fd4;
    color: #FFFFFF;
    font-weight: bold;
}

/* @import 'layout/_header.css';*/ 
/* Header
 * */

.header-wrapper {
  background-color: #00b8de;
  background: -moz-linear-gradient(left, rgba(0, 184, 222, 1) 0%, rgba(0, 184, 222, 1) 50%, rgba(12, 36, 65, 1) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 184, 222, 1) 0%, rgba(0, 184, 222, 1) 50%, rgba(12, 36, 65, 1) 100%);
  background: linear-gradient(to right, rgba(0, 184, 222, 1) 0%, rgba(0, 184, 222, 1) 50%, rgba(12, 36, 65, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b8de', endColorstr='#0c2441', GradientType=1);
  color: white;
}

header {
  padding: 10px 0;
  background-repeat: no-repeat;
  background-position: 72%;
  background-size: 24%;
  background-image: url('/sosinfo/img/bandeau.png');
}

header a {
  color: white;
}

/* Branding block */

.block-system-branding-block a {
  display: inline-block;
}

.block-system-branding-block img {
  max-width: 100%;
}

.block-system-branding-block .albi-branding {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.85rem;
  line-height: 1.2;
  font-weight: bold;
}

.block-system-branding-block .logo {
  padding: 10px;
  background-color: white;
  margin: 10px;
  vertical-align: top;
}
.block-system-branding-block .albi-branding {
  margin-left: 2rem;
  display: inline-block;
  width: 330px;
  font-size: 1.2rem;
}
.block-system-branding-block .albi-branding .sitename {
  font-weight: 900;
  margin-top: 20px;
  margin-bottom: 0px;
  vertical-align: top;
  font-size: 3rem;
}
.block-system-branding-block .albi-branding .slogan {
  font-size: 1.2rem;
  font-weight: 500;
  font-stretch: condensed;
}
.block-system-branding-block .albi-branding .slogan .suite {
  font-stretch: normal;
  font-size: 0.8rem;
  font-weight: 300;
}

/* Account menu */
#block-albi-account-menu ul {
  padding-left: 0;
  margin-bottom: 1em;
  text-align: right;
}
#block-albi-account-menu .nav-item {
  margin-right: .7em;
}

.cas-login-link,
#block-albi-account-menu ul a {
  padding: 5px 8px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  background-color: #0c2441;
  line-height: 1.5em;
}

.cas-login-link:hover,
#block-albi-account-menu ul a:hover {
  color: #ef7d00;
  border-color: #ef7d00;
  text-decoration: underline;
}

.cas-login-link {
  display: inline-block;
  margin-bottom: 1em;
}

/* Search block */
header #search-block-form {
  display: flex;
}

header input.form-search {
  border: 1px solid #ffffff;
  border-radius: 5px;
  background-color: transparent;
  color: #ffffff;
  padding: 5px 8px;
  margin-right: .7em;
}

header input.form-submit {
  border: 1px solid #ffffff;
  border-radius: 5px;
  background-color: #0c2441;
  color: #ffffff;
  padding: 5px 8px;
}
/* @import 'layout/_nav.css';*/ 
/* Nav
 * */

/* Menus */

.menu li {
  list-style-image: url('/sosinfo/img/puce-black.png');
}

.menu li li {
  list-style-image: none;
}

/* Main navigation */
.nav-wrapper {
  background-color: #f2f2f2;
  margin-bottom: 20px;
}
.region-navigation ul.nav {
  border-bottom: 1px solid #e5e5e5;
}

.region-navigation .nav > .nav-item a {

  background-color: #ef7d00;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  min-width: 80px;
}


.region-navigation .nav > .nav-item a.is-active {
  background-color: #0c2441;
  text-decoration: none;
  color: #FFF;
}

.region-navigation .nav > .nav-item a:hover{
background-color: #0c2441;
}

/* Tasks nav */
.block-local-tasks-block .nav-tabs {
  margin-bottom: .5rem;
}
.block-local-tasks-block .nav-item {
  margin-right: .7rem;
}

.block-local-tasks-block .nav-link {
  border: 1px solid #ef7d00;
  padding: .4rem .7rem;
}

.block-local-tasks-block .nav-link.is-active {
  background-color: #ef7d00;
  color: #FFF;
}
/* @import 'layout/_breadcrumb.css';*/ 
/* Breadcrumb
 * */

.breadcrumb {
  margin-bottom: 0;
}
.breadcrumb a {
  color: #000000;
}
.breadcrumb a:hover {
  color: #ef7d00;
}

.breadcrumb > li + li::before {
  padding: 0 5px;
  color: #0b1f39;
  content: "\25BA";
}
/* @import 'layout/_content.css';*/ 
/* Content
 * */

.main-wrapper {
  padding: .75rem 15px;
}
.layout-content {
  margin-bottom: 1em;
}

.path-processus .region-content,
.path-processus .region-sidebar {
  background-color: #f2f2f2;
  padding: .75rem 15px;
}
.path-processus .region-sidebar {
  border-left: 5px solid #ef7d00;
}

#block-albi-page-title .h1 {
  padding: 10px 15px;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 1em;
}

#block-block-annonce-processus {
  margin-top: 30px;
}

/* Homepage */
/* Reverse sidebar and content order */

.path-frontpage .layout-sidebar {
  order: 2;
}
.layout-sidebar img {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  .path-frontpage .main-wrapper {
    padding-right: 18px;
  }
  .path-frontpage .layout-content {
    flex-basis: 55%;
    max-width: 55%;
  }
  .path-frontpage .layout-sidebar {
    order: 2;
    flex-basis: 45%;
    max-width: 45%;
  }
  .layout-sidebar img {
    max-width: 100%;
  }
}

#block-block-annonce-home-page {
  flex-grow: 3;
}

#block-views-fav-apps-block  .row {
  display: block;
}
#block-views-fav-apps-block  .row > div {
  max-width: 100%;
}

/* Ajout EO le 2/5/2019 : bloc des derniers fichiers publiés sur la GED Nuxeo */
#block-gedderniersfichierspublies {
  display: block;
  background-color: red;
}
/* @import 'layout/_footer.css';*/ 
/* Content
 * */

.footer-wrapper {
  padding: .75rem 15px;
  background-color: #f2f2f2;
}

.region-footer {
  display: flex;
  flex-wrap: wrap;
}

.region-footer nav {
  padding-right: 15px;
  padding-left: 15px;
  min-width: 280px;
}

.region-footer h2 {
  text-align: center;
  border-bottom: 1px solid #ef7d00;
  color: #ef7d00;
  font-size: 1.5rem;
}

/* @import 'nodes/_application.css';*/ 
/* Processus & applications
 * */

/* Processus view */
.processus .application {
  text-align: center;
  border: 0px transparent;
  border-radius: 0px;
  background-color: transparent;
  height: 100%;
  min-height: 180px;
}

.processus h3 {
  width: 100%;
  margin: 15px;
}

.processus .application a {
  display: block;
  height: 100%;
  padding: 7px 15px;
  margin-bottom: 20px;
  background-color: #FFF;
}

.processus .application a:hover {
  background-color: #ef7d00;
}

.application-img img {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .application-img {
    min-height: 100px;
  }
}
.application-title::before {
  content: " ";
  border-top: 1px solid #ef7d00;
  display: block;
  margin: 10px 20%;
}
.processus .application a:hover .application-title::before {
  border-color: white;
}

/* Page node application */
.type-application .block-page-title-block h1 {
  font-size: 1.5rem;
}

.type-application iframe {
  min-height: 480px;
}

/* Block application fav in homepage */

#block-views-fav-apps-block {
  position: fixed;
  z-index: 5;
  top: 180px;
  width: 120px;
  max-height: 800px;
  right: 0px;
  overflow-x: hidden;
  overflow-y: auto;
  background: #FFF;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
}

#block-views-fav-apps-block h2 {
  font-size: 1rem;
  background-color: #ef7d00;
  color: #FFF;
  text-align: center;
  padding: 5px;
}
#block-views-fav-apps-block h4 {
  font-size: 0.85rem;
}
#block-views-fav-apps-block img {
  width: 90px;
  height: auto;
}
/* @import 'nodes/_annonces.css';*/ 
/* Annonces
 * */

.annonce-teaser {
  background-color: #83d5e5;
  color: #2a2d34;
  margin-bottom: 15px;
  padding: 15px;
}

.region-annonces h3 .published {
  font-size: 1rem;
  font-weight: bold;
  color: #ef7d00;
}

.annonces-teaser.node--sticky {
  order: 0;
}

.annonce-teaser h3 {
  color: #005566;
  font-weight: 500;
  font-size: 1.38rem;
}
.annonce-teaser .annonce-date {
  font-size: 0.85rem;
}
.annonce-teaser .annonce-body {
  display: flex;
}
.annonce-teaser .annonce-description {
  flex-grow: 1;
  margin-left: 10px;
}

.annonce-teaser .annonce-processus {
  border-radius: 4px;
  background-color: #005566;
  color: #FFFFFF;
  display: inline-block;
  padding: 2px 4px;
  font-size: 0.65rem;
}
.annonce-teaser .annonce-more {
  text-align: right;
  margin-top: 0.5em;
}
.annonce-teaser .annonce-more a {
  background-color: #FFFFFF;
  padding: 3px 6px;
  display: inline-block;
}
.annonce-teaser .annonce-more a:hover {
  background-color: #ef7d00;
  text-decoration: underline;
  color: #ffffff;
}

/* Home page views block */
#block-block-annonce-home-page .views-row {
  max-width: 100%;
  padding: 0;
}
#block-block-annonce-home-page .annonce-teaser .annonce-date {
  font-size: 0.75rem;
}
#block-block-annonce-home-page .annonce-teaser h3 {
  font-size: 1.25rem;
}
#block-block-annonce-home-page .annonce-teaser img {
  width: 96px;
  height: auto;
}

/* Processus block and full view */
#block-albi-content .views-row,
#block-block-annonce-processus .views-row {
  display: flex;
}

#block-albi-content .annonce-teaser,
#block-block-annonce-processus .annonce-teaser {
  flex-grow: 1;
}
#block-albi-content .more-link,
#block-block-annonce-processus .more-link {
  width: 100%;
  margin-right: 15px;
}


/* Sticky annonce */
.annonce-teaser.node--sticky {
  background-color: #0aaccd;
  color: #FFFFFF;
}
.annonce-teaser.node--sticky h3 {
  color: #FFFFFF;
}


/* Full view */
.type-annonce.view-mode-full .field--name-field-image img {
  max-width: 100%;
  height: auto;
}
#views-exposed-form-annonce-home-page-page {
  width: 100%;
  display: flex;
}
#views-exposed-form-annonce-home-page-page > div {
  padding: 10px 15px;
}


/* Custom lpo */

.views-element-container {
    padding-left: 2em;
}

.clickable{
	cursor: pointer;
}

th, td { white-space: nowrap; }
@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}