@import 'style/helpers.css';

/* ==========================================================================
   #FONT
   ========================================================================== */
.font-robo {
  font-family: "Roboto", "Arial", "Helvetica Neue", sans-serif;
}

.font-poppins {
  font-family: "Poppins", "Arial", "Helvetica Neue", sans-serif;
}


@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 100;
    src: local('Lato Hairline'), local('Lato-Hairline'),
         url('fonts/lato-v14-latin-100.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('fonts/lato-v14-latin-100.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* lato-100italic - latin */
  @font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 100;
    src: local('Lato Hairline Italic'), local('Lato-HairlineItalic'),
         url('fonts/lato-v14-latin-100italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('fonts/lato-v14-latin-100italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* lato-300 - latin */
  @font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 300;
    src: local('Lato Light'), local('Lato-Light'),
         url('fonts/lato-v14-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('fonts/lato-v14-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* lato-regular - latin */
  @font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: local('Lato Regular'), local('Lato-Regular'),
         url('fonts/lato-v14-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('fonts/lato-v14-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* lato-300italic - latin */
  @font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 300;
    src: local('Lato Light Italic'), local('Lato-LightItalic'),
         url('fonts/lato-v14-latin-300italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('fonts/lato-v14-latin-300italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* lato-italic - latin */
  @font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 400;
    src: local('Lato Italic'), local('Lato-Italic'),
         url('fonts/lato-v14-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('fonts/lato-v14-latin-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* lato-700italic - latin */
  @font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 700;
    src: local('Lato Bold Italic'), local('Lato-BoldItalic'),
         url('fonts/lato-v14-latin-700italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('fonts/lato-v14-latin-700italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* lato-700 - latin */
  @font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: local('Lato Bold'), local('Lato-Bold'),
         url('fonts/lato-v14-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('fonts/lato-v14-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* lato-900 - latin */
  @font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    src: local('Lato Black'), local('Lato-Black'),
         url('fonts/lato-v14-latin-900.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('fonts/lato-v14-latin-900.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* lato-900italic - latin */
  @font-face {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 900;
    src: local('Lato Black Italic'), local('Lato-BlackItalic'),
         url('fonts/lato-v14-latin-900italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('fonts/lato-v14-latin-900italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }

/* ==========================================================================
   #GRID
   ========================================================================== */
.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row-space {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.col-2 {
  width: -webkit-calc((100% - 60px) / 2);
  width: -moz-calc((100% - 60px) / 2);
  width: calc((100% - 60px) / 2);
}

@media (max-width: 767px) {
  .col-2 {
    width: 100%;
  }
}

/* ==========================================================================
   #BOX-SIZING
   ========================================================================== */
/**
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

/* ==========================================================================
   #RESET
   ========================================================================== */
/**
 * A very simple reset that sits on top of Normalize.css.
 */
body,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset, legend {
  margin: 0;
  padding: 0;
  color: #323D51;
  font-family:'Lato';
}

/**
 * Remove trailing margins from nested lists.
 */
li > ol,
li > ul {
  margin-bottom: 0;
}

/**
 * Remove default table spacing.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * 1. Reset Chrome and Firefox behaviour which sets a `min-width: min-content;`
 *    on fieldsets.
 */
fieldset {
  min-width: 0;
  /* [1] */
  border: 0;
}

button {
  outline: none;
  background: none;
  border: none;
}

/* ==========================================================================
   #PAGE WRAPPER
   ========================================================================== */
.page-wrapper {
  min-height: 100vh;
}

body {
    font-family: "Poppins", "Arial", "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-size: 14px;
	background: url("images/waycom-bg-krys.png") center center no-repeat;
	background-size:cover;
	position:relative;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  text-transform:uppercase;
  padding-bottom:20px;
}

h1 {
  font-size: 26px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 16px;
}

h4 {
  font-size: 14px;
}

h5 {
  font-size: 12px;
}

h6 {
  font-size: 10px;
}

/* ==========================================================================
   #BACKGROUND
   ========================================================================== */
/*.bg-blue {
  background: #2c6ed5;
}

.bg-red {
  background: #fa4251;
}
*/
#fondecran {
 /* Fixe l'image en haut à gauche de la page */
    position: fixed; 
    top: 0; 
    left: 0; 
    /* Préserve le ratio de l'image */
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}
/*.bg-gra-01 {
    background: url(images/back.png) no-repeat center black;
    background-size: contain;
    background-repeat: no-repeat;
/*
  background: -webkit-gradient(linear, left bottom, left top, from(#fbc2eb), to(#a18cd1));
  background: -webkit-linear-gradient(bottom, #fbc2eb 0%, #a18cd1 100%);
  background: -moz-linear-gradient(bottom, #fbc2eb 0%, #a18cd1 100%);
  background: -o-linear-gradient(bottom, #fbc2eb 0%, #a18cd1 100%);
  background: linear-gradient(to top, #fbc2eb 0%, #a18cd1 100%);
}*/

/* ==========================================================================
   #SPACING
   ========================================================================== */
.p-t-100 {
  padding-top: 100px;
}

.p-t-180 {
  padding-top: 80px;
}

.p-t-20 {
  padding-top: 20px;
}

.p-t-10 {
    /*padding-top: 10px;*/
    padding: 63px;
    
}

.p-t-30 {
  padding-top: 30px;
}

.p-b-100 {
  padding-bottom: 100px;
}

/* ==========================================================================
   #WRAPPER
   ========================================================================== */
.wrapper {
  margin: 50px auto;
}

.wrapper--w960 {
  max-width: 960px;
}

.wrapper--w780 {
  max-width: 780px;
}

.wrapper--w680 {
  max-width: 680px;
}

/* ==========================================================================
   #BUTTON
   ========================================================================== */
.btn {
  /*display: inline-block;*/
  line-height: 40px;
  padding: 0 33px;
  font-family: Poppins, Arial, "Helvetica Neue", sans-serif;
  cursor: pointer;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 18px;
  margin:0 5px;
  background:#323D51;
}

.conteneur-grey .element-grey a {
  /*display: inline-block;*/
  line-height: 40px;
  padding: 0 33px;
  font-family: Poppins, Arial, "Helvetica Neue", sans-serif;
  cursor: pointer;
  color: #323D51;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 18px;
  margin:0 5px;
  background:rgba(177, 177, 177, 0.24);
}


.btn-left {
  display: inline-block;
  line-height: 40px;
  padding: 0 33px;
  font-family: Poppins, Arial, "Helvetica Neue", sans-serif;
  cursor: pointer;
  color: #323D51;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 15px;
  margin: 3px;
  background:#323D51;
  border-radius: 100rem;
}

.conteneur-grey .element-grey a {
	border-radius:100rem;
	font-size:14px;
}

.element-grey a:hover {
  background: #FFAF00;
}

.btn--radius {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.btn--pill {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.btn--blue {
    background: #FFAF00;
}

.btn--grey {
  background: #e5e5e5;
}

/* ==========================================================================
   #DATE PICKER
   ========================================================================== */
td.active {
  background-color: #FFAF00;
}

input[type="date" i] {
  padding: 14px;
}

.table-condensed td, .table-condensed th {
  font-size: 14px;
  font-family: "Roboto", "Arial", "Helvetica Neue", sans-serif;
  font-weight: 400;
}

.daterangepicker td {
  width: 40px;
  height: 30px;
}

.daterangepicker {
  border: none;
  -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  display: none;
  border: 1px solid #e0e0e0;
  margin-top: 5px;
}

.daterangepicker::after, .daterangepicker::before {
  display: none;
}

.daterangepicker thead tr th {
  padding: 10px 0;
}

.daterangepicker .table-condensed th select {
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
  padding: 5px;
  outline: none;
}

/* ==========================================================================
   #FORM
   ========================================================================== */
input {
  outline: none;
  margin: 0;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 45%;
  font-size: 14px;
  font-family: inherit;
}

.input-icon {
  position: absolute;
  font-size: 18px;
  color: #ccc;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}

.input-group {
  /*position: relative;*/
  padding-bottom: 33px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.input-group input {
	background:rgba(0,0,0,0.1);
	border-radius:20px;
	padding:5px;
	display:block;
}

.input-group input::placeholder {
	color:#323D51;
}

.input-group p {
	font-weight:bold;
	display:block;
}

.input-group-left {
    /*position: relative;*/
    float: left;
}
.input-group-right {
    /*position: relative;*/
    float: right;
}

.input--style-3 {
  padding: 5px 0;
  font-size: 16px;
  color: #ccc;
  background: transparent;
}

.input--style-3::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #ccc;
}

.input--style-3:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #ccc;
  opacity: 1;
}

.input--style-3::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #ccc;
  opacity: 1;
}

.input--style-3:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ccc;
}

.input--style-3:-ms-input-placeholder {
  /* Microsoft Edge */
  color: #ccc;
}

/* ==========================================================================
   #SELECT2
   ========================================================================== */

.select--no-search .select2-search {
  display: none !important;
}

.rs-select2 .select2-container {
  width: 100% !important;
  outline: none;
}

.rs-select2 .select2-container .select2-selection--single {
  outline: none;
  border: none;
  height: 36px;
  background: transparent;
}

.rs-select2 .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 36px;
  padding-left: 0;
  color: #ccc;
  font-size: 16px;
  font-family: inherit;
}

.rs-select2 .select2-container .select2-selection--single .select2-selection__arrow {
  height: 34px;
  right: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rs-select2 .select2-container .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.rs-select2 .select2-container .select2-selection--single .select2-selection__arrow:after {
  font-family: "Material-Design-Iconic-Font";
  content: '\f2f9';
  font-size: 18px;
  color: #ccc;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.rs-select2 .select2-container.select2-container--open .select2-selection--single .select2-selection__arrow::after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.select2-container--open .select2-dropdown--below {
  border: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
  margin-top: 5px;
  overflow: hidden;
}

/* ==========================================================================
   #TITLE
   ========================================================================== */
.title {
  font-size: 24px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 36px;
}

/* ==========================================================================
   #CARD
   ========================================================================== */
.card {
  /*overflow: hidden;*/
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #fff;
  padding:30px;
}

.card-2 {
  padding: 110px;
  background: #D0ECE9;
  border-radius: 20px;
  width: 100%;
}

.card-2-error {
  padding: 110px;
  background: #ff000054;
  border-radius: 20px;
  width: 100%;
}

.card-3 {
	position:relative;
  background: #FFF;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.15);
  width: 100%;
  /*display: table;*/
}

.card-3 .card-heading {
  /*background: url("images/fond_gris.jpg") top left/cover no-repeat;*/
  display: table-cell;
  width: 50%;
}

.card-3 .card-body {
  padding: 57px 65px;
  padding-bottom: 0px;
  display: table-cell;
}

@media (max-width: 767px) {
  .card-3 {
    display: block;
  }
  .card-3 .card-heading {
    display: block;
    width: 100%;
    padding-top: 400px;
    background-position: center center;
  }
  .card-3 .card-body {
    display: block;
    width: 100%;
    padding: 37px 30px;
    padding-bottom: 45px;
  }
}
.navbar {
  background-color: white;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  position: fixed;
  display:flex;
  align-items:center;
  justify-content:space-between;
  -webkit-box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.navbar .dropbtn {
  text-align:left;
  }


.navbar i{
  font-size: 1.2  rem;
}

.navbar a {
  margin-right: 20px;
  float: left;
  font-size: 16px;
  color: #323D51;
  text-align: center;
  padding: 16px 10px;
  text-decoration: none;
}


.navbar-nav {
	display:flex;
	align-items:center;
	justify-content:end;
	height:80px;
	padding-right:40px;
	column-gap: 20px;
}

.navbar-nav h4, h6{
  padding: 0;
  font-weight: 800;
  text-transform: uppercase;
  padding-bottom: 0px
}

.navbar-nav h6, h4{
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 0px
}

.navbar-nav .dropdown {
  margin-right:40px;
  display:flex;
  align-items:center;
}

.navbar-nav-ele {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 80px;
    padding-left: 15px;
}

.navbar-nav .active {
    background: #cfd0d0;
}

.dropdown {
  position: relative;
  display: inline-block;
  /*float: left;*/
}

.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: #323D51;
  padding: 16px 12px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}
.dropdown .dropbtn-H {
  font-size: 15px;
  border: none;
  outline: none;
  color: #323d51;;
  padding: 20px 0px;
  background-color: inherit;
  font-family: inherit;
  margin: -15px;
}


.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFF;
  min-width: 280px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  top: -10px;
  border-radius:20px;
}

.dropdown-content_horraire {
  display: none;
  min-width: 280px;
  text-align: center;
  z-index: 1;
  border-radius:20px;
}

.dropdown-content a {
  float: none;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  border-radius: 20px;
  margin: 0;
}

.dropdown-content a:hover {
  background-color: #FFAF00;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .dropdown-content_horraire {
  display: block;
}

.navbar .ng-star-inserted {
    width: 100px;
    padding: 5px;
    position: relative;
    display: inline-block;
    top: 7px

}

.btn-nav {
    float: inline-end;
}
.btn-nav {
  float: inline-end;
}

.center {
  text-align: center;
  color: white;
}
.center_body {
  text-align: center;
}
ol.gradient-list {
  counter-reset: gradient-counter;
  list-style: none;
  margin:0;
  margin-bottom: 15px;
  padding-top: 20px;
}

li {
  
  border-radius: 100rem;
  padding: 1rem 1.5rem;
  position: relative;
  list-style:none;
}

li.test, button[type="button"].accordion-control {
  background: rgba(177, 177, 177, 0.24);
}

li.test:hover, button[type="button"].accordion-control:hover {
  background: #FFAF00;
}
.horaires-list li {
	display:flex;
	align-items:center;
	justify-content:space-between;
	
}

.horaires-list li i.fa-trash-can {
	color:#C44646;
}

.fa-square-check {
  color: #323D51;
}

.logo-image {
  width: 110px;
  display:flex;
  align-items:center;
  margin-left:20px;
}

.logo-image img {
	width:100%;
}

.logo-waycom {
	position:absolute;
	bottom:0px;
	right:50px;
	width:100px;
}

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

a {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
}

a.help {
  color: black;
  text-shadow:0 -1px 0 black;  
}

a.help:hover,a.help:focus{
  background:rgba(0,0,0,.4);
  box-shadow:0 1px 0 rgba(255,255,255,.4);
}
a.help span{
  position:absolute;       
  margin-top:23px;
  margin-left:-35px;
  color:rgb(0, 0, 0);
  background:rgba(255, 255, 255, 1);
  padding:15px;
  border-radius:3px;
  box-shadow:0 0 2px rgba(0,0,0,.5);       
  transform:scale(0) rotate(-12deg);  
  transition:all .25s;
  opacity:0;
}

a.help:hover span, a.help:focus span{
  transform:scale(1) rotate(0);    
  opacity:1;    
}

ol.gradient-list a {
  color: #323D51;
}

form {
	padding:0;
}

/* ==========================================================================
   #FLEX
   ========================================================================== */
#conteneur
{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 50px;
}
.element {
  background: #FFF;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.15);
}

.element-grey {
  /*background: rgba(0,0,0,0.1);*/
  border-radius: 20px;
}
.element-white {
  border-radius: 20px;
}

.conteneur-grey {
	display:flex;
	flex-wrap: wrap;
  justify-content: center;
}

.conteneur-white {
	display:flex;
	flex-wrap: wrap;
}

.conteneur-grey .element-grey {
    width:calc(50% - 20px);
	margin:10px;
	padding:20px;
}

.element-grey-full-width {
	width:calc(100% - 20px);
	margin:10px;
	padding:20px;
}

.conteneur-white .element-white {
	width:calc(50% - 20px);
	margin:10px;
	padding:20px;
}

.plg-left {
  padding-left: 870px;
}

.element-grey-full-width {
    width:calc(100% - 20px);
	margin:10px;
	padding:20px;
}
/* ==========================================================================
   #CUSTOM
   ========================================================================== */

.btn-footer {
    position: absolute;
    right: 40px;
    bottom: -20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.btn-footer-left {
  right: 300px;
  bottom: -57px;
  width: 70%;
  display: flex;
  align-items: start;
  justify-content: end;
  flex-direction: column;
}

.breadcrumb {
	padding:20px 0;
	display:flex;
	align-items:center;
}

.breadcrumb a {
	color:#323D51;
}

.breadcrumb .back-home {
	width:34px;
	height:34px;
	display:flex;
	align-items:center;
	justify-content:center;
	background:white;
	cursor:pointer;
	border-radius:100rem;
	 -webkit-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
	margin-right:20px;
}

.breadcrumb .breadcrumb-poste {
	position:relative;
	color:#323D51;
	font-weight:200;
		background:white;
	cursor:pointer;
	border-radius:100rem;
	 -webkit-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.15);
	margin-right:20px;
	height:34px;
	padding:0 20px;
	line-height:14px;
	display:flex;
	flex-direction:column;
	justify-content:center;
	margin-left:20px;
}

.breadcrumb i.fa-angle-right {
	font-size:18px;
}

/*.breadcrumb .breadcrumb-poste::before {
	content:'';
	display: block;
    height: 30px;
    width: 2px;
    background: rgba(0,0,0,0.15);
	position:absolute;
	left:-20px;
}*/

.breadcrumb .breadcrumb-poste b {
	display:block;
	font-weight:800;
	text-transform:uppercase;
}

.breadcrumb .breadcrumb-page {
	text-transform: uppercase;
    margin-left: 20px;
    font-size: 16px;
}

.validation .fa-circle-check {
  color : #17AC9D;
  font-size:90px;
}

.validation p, .thanks {
  color : #17AC9D;
  padding-bottom: 0px;
}
.validation h2, .thanks{
  color : #17AC9D;
  padding-bottom: 0px;
}

.error .fa-triangle-exclamation {
  color : #e30d0d;
  font-size:90px;
}

.error p, .error {
  color : #e30d0d;
  padding-bottom: 0px;
}
.error h2, .error {
  color : #e30d0d;
  padding-bottom: 0px;
}


.toto {
  display: inline-block;
  line-height: 40px;
  padding: 0 33px;
  font-family: Poppins, Arial, "Helvetica Neue", sans-serif;
  color: #fff;
  font-size: 18px;
  margin:0 5px;
  background: #0094DA;
  border-radius: 10px;
  text-transform: uppercase;
}

.timeout {
    width: 140px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.42);
    text-align: right;
}
/* ==========================================================================
   #SELECT SCHEDULES
   ========================================================================== */

:root {
  --container-height: 200px;
}

.days-month-checkbox, .months-checkbox, .days-checkbox {
  max-height: var(--container-height);
  border: 2px solid #37392e;
  border-radius: 5px;
  scroll-snap-type: y mandatory;
  overscroll-behavior-y: contain;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-timeline: --listTimeline block;
}

.message-info {
  color : #0d0de3;
}

.message-warning {
  color : #ffa500;
}

.message-error {
  color : #e30d0d;
}
