.debug {
  background: #000;
}

:root {
  --c-black: #333;
  --c-black_50: #999999;
  --c-black_10: #eaeaea;
  --c-main: #4D84FF;
  --c-main_hover: #306CF2;
  --c-green: #3fc971;
  --c-red: #ea6356;
  --c-red_hover: #E74737;
  --c-bg: #EEF4F6;
  --c-white: #FFF;
  --c-black-rgb: 51, 51, 51;
  --c-black_50-rgb: 153, 153, 153;
  --c-black_10-rgb: 235, 235, 235;
  --c-main-rgb: 77, 132, 255;
  --c-main_hover-rgb: 48, 108, 242;
  --c-green-rgb: 63, 201, 113;
  --c-red-rgb: 235, 100, 87;
  --c-red_hover-rgb: 231, 71, 55;
  --c-bg-rgb: 237, 244, 246;
  --c-white-rgb: 255, 255, 255;
}

/* RESET */

/* 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, 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;
}

fieldset {
  display: contents;
}

/* 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;
}

ol.decimal {
  list-style: decimal;
}
ul.disc {
  list-style: disc;
  margin-left: 30px;
}


blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*:focus {
  outline: none;
}

a, button {
  font: inherit;
  font-weight: inherit;
  text-decoration: none;
  color: inherit;
  border: none;
}

img {
  width: 100%;
}

/* @import url('https://fonts.googleapis.com/css?family=Roboto:400,500'); */

/* @import url('https://fonts.googleapis.com/css?family=Hind'); */

@import url('https://fonts.googleapis.com/css?family=open+sans');
/* BASE */

body {
  width: 100%;
  font-family: 'Avenir', sans-serif;
  /* background: #EEF4F6; */
}

.content {
  max-width: 1100px;
  width: calc(100% - 60px);
  margin: 0 auto;
}

/* FONT */

.font-h1 {
  font-size: 50px;
  line-height: 53px;
  /* font-family: 'Hind', sans-serif; */
  font-weight: 700;
}

.landing-h1.font-h1 {
  font-size: 35px;
  line-height: 41px;
}

.font-h2 {
  font-size: 26px;
  color: #306CF2;
  line-height: 34px;
  /* font-family: 'Hind', sans-serif; */
  font-weight: 600;
}

.font-h3 {
  font-size: 20px;
  line-height: 25px;
}

.font-p {
  font-size: 15px;
  line-height: 23px;
  opacity: .7;
}

.font-ita {
  font-style: italic;
}

@media (max-width: 321px) {
  .font-h1 {
    font-size: 30px;
    line-height: 33px;
  }
  .font-h2 {
    font-size: 22px;
    line-height: 25px;
  }
  .font-h3 {
    font-size: 16px;
    line-height: 20px;
  }
}

.underline {
  text-decoration: underline;
}
.link {
  text-decoration: underline;
}
.link:hover {
  text-decoration: none;
}

/* GRID */

.col {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  /* -ms-align-items: center;
  align-items: center; */
  justify-content: space-between;
}

.col.is-start {
  align-items: flex-start;
}

.col.is-center {
  align-items: center;
}

.col-half {
  width: calc((100% - 40px) / 2);
  flex-shrink: 0
}

@media (max-width: 710px) {
  .col {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .col-half {
    width: 100%;
  }
}

/* BTN */

.btn {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background 250ms, color 250ms, box-shadow 250ms, padding 250ms;
  /* font-family: 'Hind', sans-serif; */
  font-weight: 600;
  cursor: pointer;}

.btn-primary {
  background: #4D84FF;
  color: #FFF;
}

.btn-primary:hover {
  background: #306CF2;
}

.btn-secondary {
  border: 1px solid #4D84FF;
  color: #4D84FF;
}

.btn-secondary:hover {
  background: #4D84FF;
  color: #FFF;
}

.btn-primary.btn-white {
  background: #FFF;
  color: #4D84FF;
}

.btn-primary.btn-white:hover {
  box-shadow: 0 0 10px 2px #306CF2;
}
.btn-terciary {
  opacity: .5;
}
.btn-terciary:hover {
  opacity: .7;
}
.btn.is-big {
  font-size: 20px;
  padding: 15px 20px;
}

@media (min-width: 320px) {
  .btn.is-big {
    font-size: 16px;
    padding: 13px 20px;
  }
}

.btn.is-arrow {
  display: inline-flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
  padding-right: 40px;
}

.btn.is-arrow:hover>.arrow {
  width: 16px;
}

.btn.is-arrow:hover {
  padding-right: 46px
}

.arrow {
  transition: transform 250ms, width 250ms;
  background: #4D84FF;
  width: 1px;
  height: 3px;
  display: inline-block;
  margin-left: 20px;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.arrow:after, .arrow:before {
  background: #4D84FF;
  content: '';
  position: absolute;
  height: 3px;
  width: 10px;
  right: 0;
  border-radius: 2px;
}

.arrow:after {
  transform: rotate(45deg) translateY(-4px);
}

.arrow:before {
  transform: rotate(-45deg) translateY(4px);
}

/* MARGIN */

.mt5 {
    margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mt30 {
  margin-top: 30px;
}
.mt35 {
  margin-top: 35px;
}
.mt45 {
  margin-top: 45px;
}
.mt50 {
  margin-top: 50px;
}

.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb35 {
  margin-bottom: 35px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb45 {
  margin-bottom: 45px;
}
.mb50 {
  margin-bottom: 50px;
}

.ml10 {
  margin-left: 10px;
}
.ml15 {
  margin-left: 15px;
}
.ml20 {
  margin-left: 20px;
}
.ml25 {
  margin-left: 25px;
}
.ml30 {
  margin-left: 30px;
}
.ml35 {
  margin-left: 35px;
}
.ml40 {
  margin-left: 40px;
}
.ml45 {
  margin-left: 45px;
}
.ml50 {
  margin-left: 50px;
}

.mr10 {
  margin-right: 10px;
}
.mr15 {
  margin-right: 15px;
}
.mr20 {
  margin-right: 20px;
}
.mr25 {
  margin-right: 25px;
}
.mr30 {
  margin-right: 30px;
}
.mr35 {
  margin-right: 35px;
}
.mr40 {
  margin-right: 40px;
}
.mr45 {
  margin-right: 45px;
}
.mr50 {
  margin-right: 50px;
}

/* NAV */

.nav--section {
  background: #4D84FF;
  color: #FFF;
}

.nav--section.is-white {
  background: inherit;
  color: inherit;
}

.nav--list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.nav--list li:first-child {
  z-index: 2;
}

.nav--logo {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  /* font-family: 'Hind', sans-serif; */
  font-weight: 600;
  font-size: 18px;
  width: 30px;
}

.nav--logo img {
  margin-right: 10px;
}

/* HERO */

.hero--section {
  color: #FFF;
  padding: 100px 0;
  background-image: -webkit-linear-gradient(#4D84FF 0%, #306CF2 100%);
  background-image: -o-linear-gradient(#4D84FF 0%, #306CF2 100%);
  background-image: linear-gradient(#4D84FF 0%, #306CF2 100%);
  position: relative;
  overflow: hidden;
}

.hero--section h1 {
  max-width: 470px
}

@media (max-width: 1020px) {
  .hero--section h1 br {
    display: none;
  }
}

.hero--illus--wrap {
  position: relative;
}

.hero--illus {
  position: absolute;
  width: 140%;
  z-index: 2;
  right: -60px;
  top: 50%;
  transform: translateY(-30.7%);
}

@media (max-width: 900px) {
  .hero--illus {
right: -100px;  }
}

@media (max-width: 710px) {
  .hero--illus--wrap {
    padding-bottom: 36%;
    width: 100%;
    height: 0;
  }
  .hero--illus {
    position: absolute;
    bottom: 0;
    top: 40px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .hero--section {
    padding: 50px 0;
  }
}

/* NAV MOBILE */

.button-primary.is-white {
    color: #4D84FF;
    background: white;
}
.button-primary {
    background: #4D84FF;
    color: white;
}
.button-tertiary {
    color: #4D84FF;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
}
.button {
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}
.header--nav, #open {
  display: none;
}
.header--nav--list {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}
.header--nav--list--item:first-child {
    margin-left: 0px;
}

@media only screen and (max-width: 700px) {
  .content.nav--list li:last-of-type a {
    display: none;
  }
  #open {
    display: block;
    width: 44px;
    height: 44px;
    display: block;
    flex-shrink: 0;
    background: url(../img/icons/44/hamburger.svg);
  }
  #open.is-blue {
    background: url(../img/icons/44/hamburger_blue.svg);
  }
  #close {
    position: absolute;
    top: 29px;
    right: 24px;
  }
  .overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: .4;
    background: #333;
    z-index: 3;
    display: none;
  }
  .header--nav.is-open {
    transform: translateX(0);
  }
  .header--nav {
    display: block;
    background: white;
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    bottom: 0;
    transform: translateX(100%);
    transition: transform 250ms;
    min-width: 210px;
  }
  .header--nav--list {
    flex-direction: column;
    -ms-align-items: flex-start;
    align-items: flex-start;
    padding: 20px;
    padding-top: 80px;
  }
  .is-mobile {
    display: block;
  }
  .header--nav--list--item {
    margin-left: 0;
    margin-bottom: 20px;
  }
}

/* CONTENT */

.content--section {
  padding: 50px 0;
  position: relative;
}

.content--section.have-after::before {
  content: '';
  background: #306CF2;
  position: absolute;
  width: 100%;
  height: 50px;
  top: -1px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.item--wrap {
  padding: 100px 0;
  margin: 0 calc(10% + 20px) 0 calc(10% + 20px);
  border-bottom: 1px solid rgba(51, 51, 51, .1)
}

.item--wrap:last-child {
  border-bottom: none;
}

.item--header {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: 30px;
  width: 70%;
}

@media (max-width: 800px) {
  .item--wrap {
    margin: 0;
  }
  .item--header {
    width: 100%;
  }
}
@media (max-width: 430px) {
  .item--header {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-align-items: flex-start;
    align-items: flex-start;
    width: 100%;
  }
  .item--header>.icon {
    margin-bottom: 10px;
    margin-right: 0;
  }
}

.icon {
  width: 50px;
  height: 50px;
  display: block;
  flex-shrink: 0;
  margin-right: 20px;
}

.info--wrap {
  background: rgba(77, 132, 255, 0.1);
  border-radius: 5px;
  padding: 20px 30px;
}

@media (max-width: 710px) {
  .info--wrap {
    margin-top: 20px;
  }
}

/* API */

.api--wrap {
  box-shadow: 0 0 20px 0 rgba(51, 51, 51, 0.20);
  border-radius: 5px;
  padding: 30px;
  margin: 0 calc(5% + 20px) 0 calc(5% + 20px);
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
  background: #FFF;
  background-image: url(../img/illus/code.svg), url(../img/illus/code-flip.svg);
  background-position: left center, right center;
  background-repeat: no-repeat;
}

.api--text {
  margin-bottom: 20px;
  max-width: 670px;
}

@media (max-width: 870px) {
  .api--wrap {
    margin: 0 0 0 0
  }
}

@media (max-width: 962px) {
  .api--wrap {
    background-position: -50px center, calc(100% + 50px) center;
  }
}

@media (max-width: 700px) {
  .api--wrap {
    background-image: none;
  }
}

.api--wrap>.btn {
  flex-shrink: 0
}

/* CTA */

.cta--section {
  /* background: rgba(77, 132, 255, .2); */
  background: #4D84FF;
  background-image: url(../img/illus/cta.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center bottom;
  padding: 80px 0 130px 0;
  text-align: center;
  color: white;
  position: relative;
}

.cta--section .font-h1 {
  max-width: 620px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.cta--section::after {
  content: '';
  background: #4D84FF;
  position: absolute;
  width: 100%;
  height: 50px;
  top: 1px;
  left: 0;
  transform: translateY(-100%);
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  z-index: -1;
}

/* FOOTER */

.footer--section {
  padding: 20px 0;
  color: white;
  background: #223fe2;
}

.footer--wrap {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
}

.footer--nav--list {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

.footer--nav--list--item {
  margin-right: 20px;
}

.footer--nav--list--item:last-child {
  margin-right: 20px;
}

@media (max-width: 790px) {
  .footer--wrap {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer--nav--list {
    margin-bottom: 10px;
  }
}

@media (max-width: 520px) {
  .footer--nav--list {
    display: block;
  }
  /* .footer--nav--list .footer--nav--list--item {
    display: inline-block;
  } */
}

@media (max-width: 383px) {
  .footer--nav--list {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: flex-start;
  }
}

.content--wrapper {
  min-height: calc(100vh - 60px);
}
.contact--wrapper {
  max-width: 780px;
}
.is-simple .col {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
}

.is-simple .content--wrap {
  background: white;
  padding: 30px;
  border-radius: 4px;
}

.partners-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.partners-list + .partners-list {
  margin-top: 20px;
}

@media (max-width: 425px) {
    .partners-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.partners-list--item-thumb {
    height: 80px;
    background-color: #F6F6F6;
    background-blend-mode: multiply;
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    width: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.partners-list--item-thumb:hover {
    opacity: 0.6
}

@media (max-width: 768px) {
    .partners-list--item-thumb {
        height: 50px;
        margin: 10px
    }
}

.partners-list--item a {
  display: inline-block;
  margin-left: 19px;
}

.partners-list .partner-ashlermanson {
    background-image: url(../img/partners/ashler_and_manson.png);
}
.partners-list .partner-globalcourtage {
    background-image: url(../img/partners/global_courtage.png);
}

.partners-list .partner-negocialfinance {
    background-image: url(../img/partners/negocial_finance.png);
}

.partners-list .partner-mtcourtage {
    background-image: url(../img/partners/mt_courtage.svg);
}

.partners-list .partner-regionaquitaine {
    background-image: url(../img/partners/region_aquitaine.jpg);
}

.partners-list .partner-frenchtech {
    background-image: url(../img/partners/frenchtech.png);
}

.finance_innovation{
  max-width: 300px;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: block;
}

ul.errorlist {
	color: red;
	font-size: 14px;
	margin-top: 0;
	margin-bottom: 30px;
}
.color-t-red {
  color: red;
}
.color-t-grey {
  color: grey;
}
.font-small {
  font-size: 14px;
}
.social--buttons li + li {
  margin-top: 15px;
}
.social--buttons.button-primary {
    cursor: pointer;
    border-radius: 3px;
    border: none;
    background: #40AAFF;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    font-weight: 600;
    padding: 10px 24px;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    transition: background 0.25s ease-in-out;
}
.social--buttons {
    max-width: 324px;
    justify-content: flex-start;
}
.social--buttons .facebook {
    background: #3B5999;
}
.social--buttons .facebook.is-linked {
    color: #3B5999;
}
.social--buttons .google {
    background: #DD4B39;
}
.social--buttons .google.is-linked, .social--buttons .google.is-linked .social--icon {
    color: #DD4B39;
}
.social--buttons .social--icon {
    width: 22px;
    height: 16px;
    margin-left: -12px;
    margin-right: 6px;
    padding-right: 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    display: block;
}
.social--buttons .facebook .social--icon {
    background: url(https://icongr.am/fontawesome/facebook.svg?size=16&color=ffffff) no-repeat;
}
.social--buttons .facebook.is-linked .social--icon {
  background: url(https://icongr.am/fontawesome/facebook.svg?size=16&color=3B5999) no-repeat;
  border-right: 1px solid #3B5999;
}
.social--buttons .google .social--icon {
    background: url(https://icongr.am/fontawesome/google.svg?size=16&color=ffffff) no-repeat;
}
.social--buttons .google.is-linked .social--icon {
  background: url(https://icongr.am/fontawesome/google.svg?size=16&color=DD4B39) no-repeat;
  border-right: 1px solid #DD4B39;
}
.social--buttons.is-linked {
    border: 1px solid;
    background: transparent;
}
.auth--section form {
    max-width: 324px;
		margin-left: 180px;
}
.auth--section .form--title {
		margin-left: 180px;
}
.form--title.mg {
	margin-left: 180px;
}
@media only screen and (max-width: 700px) {
	.auth--section form, .auth--section .form--title {
		margin: auto;
	}
	.form--title.mg {
		margin: auto;
		margin-bottom: 30px;
	}
}

h1.form--title {
    font-size: 45px;
    font-weight: 550;
    color: #363636;
    font-family: Avenir, sans-serif;
}

p.contact-description {
    margin-top: 25px;
    font-weight: 500;
    margin-bottom: 15px;
}
.form--label {
    margin-top: 10px;
    margin-bottom: 12px;
    font-weight: 550;
    color: #363636;
}
input.form--input {
  padding-left: 5px;
}
input.form--input, textarea.form--input {
    width: 100%;
    height: 38px;
    border-radius: 3px;
    border: 1px solid #e4e5e5;
    font-size: inherit;
    font-family: inherit;
    padding: 10px 15px;
}
textarea.form--input {
    height: 130px;
    resize: none;
}
.form--input:focus{
    border: 1px solid #3985F9;
}
.phone {
    float: right;
    border: 1px solid #5394FA;
    border-radius: 6px;
    max-width: 180px;
    padding: 5px;
    color: #5394FA;
}
.phone .phone-icon {
    width: 30px;
}
.phone span {
    position: relative;
    bottom: 6px;
}
hr.grey {
	border: none;
	border-top: 2px solid #E9E9E9;
}
.message {
  color: #363636;
	font-size: 15px;
}

/* BETA BADGE */

.beta-wrapper {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 10px;
    bottom: 10px;
}

.beta-badge {
    height: 50px;
    background: #fc7400;
    width: 200px;
    text-align: center;
    font-size: 20px;
    line-height: 50px;
    font-family: sans-serif;
    color: #FFF;
    transform: rotate(-45deg);
    position: relative;
    top: -2px;
    left: -70px;
    box-shadow: inset 0px 0px 0px 4px rgba(255, 255, 255, 0.34);
    z-index: 1;
}

.beta-badge:after {
	position: absolute;
	content: '';
	display: block;
	height: 100px;
	width: 100px;
	background: #EDF1EE;
	top: -55px;
	left: 130px;
 transform: rotate(-45deg);
	box-shadow: -115px -121px 0px 0px #EDF1EE;
}

.beta-badge .left {
	position: absolute;
	content: '';
	display: block;
	top: 50px;
	left: 25px;
	height: 8px;
	width: 8px;
	background: linear-gradient(135deg, rgba(90, 146, 106, 1) 50%,rgba(90, 146, 106, 0) 50.1%);
}
.beta-badge .right {
	position: absolute;
	content: '';
	display: block;
	top: 50px;
	left: 157px;
	height: 8px;
	width: 8px;
	background: linear-gradient(135deg, rgba(90, 146, 106, 1) 50%,rgba(90, 146, 106, 0) 50.1%);
	transform: rotate(90deg);
}

/* BUTTON */

.button {
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}

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

.button-primary:hover, .button-primary:focus {
  background: #306CF2;
}

.button-secondary {
  border: 1px solid #4D84FF;
  color: #4D84FF;
  background: white;
}

.button-secondary:hover, .button-secondary:focus {
  border: 1px solid #306CF2;
  color: #306CF2;
}

.button-tertiary {
  color: #4D84FF;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
}

.button-tertiary:hover, .button-tertiary:focus {
  color: #306CF2;
}

.button-delete {
  background: #ea6356;
  padding: 8px;
  border-radius: 5px;
  display: inline-block;
  cursor: pointer;
  line-height: 0;
  transform: translateY(2px)
}

.button-delete:hover, .button-delete:focus {
  background: #E74737;
}

/* En savoir plus */
.en-sanvoir-plus .professionnels {
  display: none;
}

/* Cookies */
.cookie-banner {
	 position: fixed;
	 left: 0;
	 right: 0;
	 bottom: 0;
	 color: #fff;
	 text-align: center;
   z-index: 9;
	 padding: 1rem 1rem;
	 background: #000;
	 transition: all 5s cubic-bezier(0.19, 1, 0.22, 1);
	 -webkit-transition: all 5s cubic-bezier(0.19, 1, 0.22, 1);
	 -moz-transition: all 5s cubic-bezier(0.19, 1, 0.22, 1);
	 -ms-transition: all 5s cubic-bezier(0.19, 1, 0.22, 1);
	 -o-transition: all 5s cubic-bezier(0.19, 1, 0.22, 1);
}
 .cookie-banner--hide {
	 opacity: 0;
	 bottom: -100%;
}
 .cookie-banner .cookie-banner-button {
	 display: inline-block;
	 cursor: pointer;
	 padding: 0.85rem 1rem;
	 margin-left: 0.45rem;
	 color: #000;
	 font-size: 0.75rem;
	 text-decoration: none;
	 letter-spacing: 1px;
	 background: #fff;
}
 @media only screen and (max-width: 600px) {
	 .cookie-banner span {
		 display: inline-block;
		 padding: 10px;
	}
}
