/**
 * Base
 * ===
**/
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 100%;
  overflow: auto;
  font-size: 18px;
  font-family: sans-serif;
}

p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}

.c-red {
  /*color: #860113 !important;*/
  color: #6294b1 !important;
}

.predictr {display: none;}
.predictr td {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 560px !important;
  padding: 0 1em !important;
}
.predictr td p {
  flex: 1;
  margin-right: 5px;
  font-size: 10px;
  color: #000 !important;
}
.predictr td img {
  width: 90px; /* ajustez la largeur de l'image selon vos besoins */
  height: auto;
  margin-left: auto;
}


.separator {
  border: 0;
  border-top: 1px dotted;
  height: 1px;
  margin: 2.75em 0;
  padding: 0;
}

/**
 * Button
 * ===
**/
.button {
  /*background-color: #860113;*/
  background-color: #6294b1;
  border: 0;
  border-radius: 3px;
  box-sizing: border-box;
  color: #fff;
  display: table;
  font: 18px/1.375 sans-serif;
  margin: 0 auto;
  padding: .6875em 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  user-select: none;
}
.button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.button:hover,
.button:focus,
.button:active {
  text-decoration: none;
}
.button:disabled,
.button.is-disabled {
  cursor: default;
  opacity: .5;
}

.button--fill {
  display: block;
  max-width: 334px;
  width: 100%;
}
.button--bordered {
  background-color: #fff;
  /*box-shadow: inset 0 0 0 2px #860113;*/
  box-shadow: inset 0 0 0 2px #6294b1;
  /*color: #860113;*/
  color: #6294b1;
}


/**
 * Application
 * ===
**/
.app {
  /*color: #2e150e;*/
  color: #6294b1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  font-size: 18px;
  justify-content: space-between;
  line-height: 1.375;
  min-height: 100%;
}

.app-header,
.app-footer {
  box-sizing: border-box;
  width: 100%;
}

.app-banner {
  align-items: center;
  border-bottom: 1px solid #dfdbd9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  height: auto;
  justify-content: flex-start;
  padding: .6875em 20px;
}

/* VERSION DEMO */
.app.demo .app-banner{
  background : #000;
  color: #FFF;
}
.app.demo .app-banner *{
  display: none;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0.25;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0.25;
  }
}
.app.demo .app-banner:before{
  content : 'Version Démo';
  display:block;
  width: 100%;
  font-size: 2em;
  text-align: center;
  -webkit-animation-name: flash;
  animation-name: flash;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.app-banner .logo {
  display: block;
  overflow: hidden;
}

.app-banner .logo--left,
.app-banner .logo--right {
  max-width: 25%;
}

.app-banner .logo--middle {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.app-banner .logo img {
  display: block;
  max-height: 4.125em;
  width: auto;
}

.app-count{
  display: block;
  padding: 0.25em 25px;
  text-align:center;
  color:#FFF;
  /*background: #860113;*/
  background: #6294b1;
}
.app-count-today{
	font-size: 0.7em;
}

.app-step {
  align-items: center;
  background: #eeefef;
  border-bottom: 1px solid #dfdbd9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 2.75em;
  justify-content: space-between;
  padding: 0 20px;
}
.app-step .step-home,
.app-step .step-logout {
  background: url(../img/icn-home.svg) 50% / contain no-repeat;
  height: 2.0625em;
  overflow: hidden;
  text-indent: 1001em;
  white-space: nowrap;
  width: 2.0625em;
}
.app-step .step-logout {
  background-image: url(../img/icn-logout.svg);
}

.app-step .step-title {
  font-size: 1.375em;
  line-height: 1;
  text-transform: uppercase;
}
.app-step .step-number {
  font-weight: bold;
}

.app-body {
  box-sizing: border-box;
  flex: 0 0 auto;
  margin: 0 auto;
  max-width: 708px;
  padding: 1.375em 20px 2.75em;
  width: 100%;
}

.app-footer {
  align-items: center;
  align-self: flex-end;
  border-top: 1px solid #dfdbd9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: .6875em 20px;
}
.app-footer div:not(:first-child)  {
  margin-left: 20px;
}

.app-footer img  {
  display: block;
  height: auto;
  max-height: 2.0675em;
  max-width: 100%;
  width: auto;
}

/**
 * Section
**/
.section {
  font-size: 1rem;
}

.section-title {
  font-size: 1.375em;
  font-weight: bold;
  margin: 0 0 2em;
  text-align: center;
  text-transform: uppercase;
}
.section-help {
  font-style: italic;
  font-weight: 700;
  margin: 2.75em 0 0;
  text-align: center;
}
.section-actions {
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row nowrap;
  margin: 4.125em -10px 0;
}
.section-actions--smallMT {
  margin-top: 2.75em;
}
.section-action {
  box-sizing: border-box;
  flex: 1 1 auto;
  padding: 0 10px;
  text-align: center;
  width: 50%;
}
.section-action span {
  display: block;
  font-size: .889em;
  line-height: 1.547em;
  margin: 0 0 .387em;
}



.section--login {
  max-width: 334px;
  margin: 0 auto;
}
