:root {
  --c-black: #333;
  --c-black_50: #999999;
  --c-black_10: #eaeaea;
  --c-main: #4C84FF;
  --c-main_hover: #306CF2;
  --c-green: #3fc971;
  --c-red: #ea6356;
  --c-red_hover: #E74737;
  --c-bg: #EEF4F6;
  --c-white: #FFF;
}

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

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

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

body {
  width: calc(100% - 30px);
  max-width: 1360px;
  margin: 0 auto;
  background: #EEF4F6;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #333;
  overflow-x: hidden;
}

.wrapper {
  min-height: calc(100vh - 52px);
  position: relative;
}

/* FONT */

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

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

.paragraphe-1 {
  opacity: .5;
}

.heading-1 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

.heading-2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.heading-3 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 5px;
}

.error {
  color: #ea6356;
  font-weight: 500;
}

/* BUTTONS */

.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;
}

/* MOBILE */

.is-mobile {
  display: none;
}

@media only screen and (max-width: 1245px) {
  .is-mobile {
    display: block;
  }
}

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

.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);
}

/* HEADER */

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

.header--logo img {
  max-width: 30px;
}

.header--logo span{
  position: relative;
  left: 5px;
  bottom: 10px;
  font-weight: 600;
  font-size: 1em;
}

@media only screen and (max-width: 1470px) {
  .header--logo {
      margin: auto;
  }
}

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

.header--nav--list--item {
  margin-left: 20px;
}

.header--nav--list--item:first-child {
  margin-left: 0px;
}

.header--nav--list--item.phone, .header--nav--list--item.email {
  display: none;
  padding: 10px 15px;
}

@media only screen and (max-width: 1245px) {
  .overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: .4;
    background: #333;
    z-index: 2;
    display: none;
  }
  .header--nav {
    background: white;
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    bottom: 0;
    transform: translateX(100%);
    transition: transform 250ms;
  }
  .header--nav.is-open {
    transform: translateX(0);
  }
  .header--nav--list {
    flex-direction: column;
    -ms-align-items: flex-start;
    align-items: flex-start;
    padding: 20px;
    padding-top: 40px;
  }
  .header--nav--list--item {
    margin-left: 0;
    margin-bottom: 20px;
  }
  .header--nav--list--item:last-child {
    margin-bottom: 0;
  }
  .header--nav--list--item:last-child, .header--nav--list--item .button-primary {
    width: 100%;
  }
  #close {
    position: absolute;
    top: 29px;
    right: 24px;
  }
}

/* FOOTER */

.footer {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  opacity: .5;
}

.footer a:hover, .footer a:focus {
  text-decoration: underline;
}

.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: 0px;
}

@media only screen and (max-width: 592px) {
  .footer {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-align-items: flex-start;
    align-items: flex-start;
  }
  .footer--nav--list {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-align-items: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .footer--nav--list--item {
    margin-right: 0;
    margin-bottom: 5px;
  }
}

/* NAV SIDEBAR */

.nav--wrapper {
  position: absolute;
}

@media only screen and (max-width: 1245px) {
  .nav--wrapper {
    display: none;
  }
}

.nav--list--item {
  margin-bottom: 10px;
}

.nav--list--item:last-child {
  margin-bottom: 0px;
}

.nav--item {
  display: inline-block;
  padding: 7px 8px 5px;
  border-radius: 5px;
  /* margin-bottom: 15px; */
  vertical-align: middle;
}

.nav--item:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #4D84FF;
  border-radius: 100%;
  margin-top: -3px;
  margin-right: 10px;
  vertical-align: middle;
}

.nav--item.is-done:before {
  background: url('../img/icons/16/checked.svg');
}

.nav--item.is-done:hover, .nav--item.is-done:focus {
  background: rgba(76, 132, 255, 0.06);
}

.nav--item.is-next {
  color: #999999
}

.nav--item.is-next:before {
  width: 9px;
  height: 9px;
  margin: 0px 13px 3px 3px;
  background: transparent;
  border: 1px solid #4D84FF;
}

.nav--item.is-current {
  background: rgba(76, 132, 255, 0.1);
}

.nav--item.is-current:before {
  width: 10px;
  height: 10px;
  margin: 0px 13px 3px 3px;
  background: #4D84FF;
  border: none;
}

/* CONTENT */

.page--wrapper {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: flex-start;
  align-items: flex-start;
  position: relative;
}

.content--wrapper {
  width: 100%;
  max-width: 748px;
  margin: 0 auto;
}

input[type=number], input[type=text], select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: normal;
  position: relative;
  background-position: right 10px top 50%;
  background-repeat: no-repeat;
  border: 1px solid transparent;
  font-size: inherit;
  background: #EEF4F6;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input:focus, select:focus {
  border: 1px solid #4C84FF;
}

input[readonly] {
  background: #EEF4F6;
  color: graytext;
}

input[readonly]:focus {
  border: 1px solid transparent;
}

.form--wrapper {
  background: white;
  padding: 20px;
  border-radius: 7px;
  margin-bottom: 40px;
}

.formset.empty-form {
  display: none;
}

.form--row {
  line-height: 40px;
  margin-bottom: 20px;
}

.form--actions {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

.form--actions--item {
  margin-right: 20px;
}

.form--actions--item:last-child {
  margin-right: 0px;
}

.form--select {
  padding: 6px 10px;
  padding-right: 36px;
  width: 100%;
}

.form--select--wrapper {
  display: inline-block;
  position: relative;
}

.form--select--wrapper:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url('../img/icons/16/arrow.svg');
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}

.form--input {
  padding: 6px 10px;
  width: 100%;
  max-width: 120px
}

.form--input.is-price {
  width: 100px;
}

.form--input.is-month {
  width: 45px;
}

.form--input.is-date {
  width: 135px;
}

.form--slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 5px;
  background: #EEF4F6;
  outline: none;
  opacity: 1;
  margin-bottom: 11px;
  padding: 0;
}

.form--slider:focus {
  border: none;
}

.form--slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4D84FF;
  cursor: pointer;
}

.form--slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #4D84FF;
  cursor: pointer;
}

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

.mb0 {
  margin-bottom: 0px;
}
.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;
}

hr {
  width: 100%;
  height: 1px;
  border: none;
  background: #333;
  opacity: .1;
}

.sep {
  margin: 30px 0;
}

.tooltip {
  display: inline-block;
  margin-left: 10px;
  cursor: help;
}

.tooltip--icon {
  display: inline-block;
  vertical-align: middle;
}

.tooltip:hover.tooltip::after {
  opacity: 1;
}

.tooltip::after {
  z-index: 1;
  position: absolute;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(-50% + 16px));
  content: attr(data-tooltip);
  display: inline-block;
  width: auto;
  max-width: 320px;
  font-size: 14px;
  line-height: 16px;
  padding: 10px;
  background: white;
  border: 1px solid #eaeaea;
}

/* RESULTATS */

.resume {
  margin-bottom: 30px;
}

.resume--wrapper {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

.resume--col {
  width: calc((100% - 20px)/2);
}

.resume--wrapper .form--actions {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
}

.resume--item {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  margin: 5px 0;
}

@media only screen and (max-width: 600px) {
  .results--wrapper .resume--item {
    display: block;
  }
  .results--wrapper .button-secondary.is-half {
    width: 100%;
    display: block;
  }
  .results--wrapper.form--actions {
    display: block;
  }
  .results--wrapper.form--actions .is-quart {
    width: auto;
    margin-top: 10px;
  }

}

.results--actions {
  text-align: center;
}
.results--actions .is-half {
  width: calc((100% - 20px) / 2);
}

.montant_interets {
  font-style: italic;
  float: right;
}

.resume--item label {
  width: 60%;
  flex-shrink: 0
}

.resume--item.is-total label {
  font-weight: 500;
}

.resume--item input {
  text-align: right;
}

.form--actions .is-half {
  width: calc((100% - 20px) / 2);
  flex-shrink: 0;
}

.form--actions .is-quart {
  width: calc((50% - 30px) / 2);
  flex-shrink: 0;
}

#container {
  position: relative;
}

.highcharts--wrapper {
  margin: -20px auto 30px auto;
  width: 250px;
  height: 170px;
  position: relative;
  overflow: hidden;
}

.highcharts--score {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 50px;
  font-weight: 500;
  text-align: center;
}

#container:after, #container:before {
  content: "";
  position: absolute;
  width: 19px;
  height: 19px;
  background: #eef4f6;
  border-radius: 100%;
  top: 141px;
}

#container:after {
  left: 29px;
  display: none;
}

#container:before {
  left: 202px;
}

.register--wrapper .social--buttons {
  margin-left: auto;
  margin-right: auto;
}

.no-account {
  text-align: center;
}

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

.register--wrapper .register--email {
    padding: 0 40px 0 40px;
}

.register--wrapper .register--email .form--input {
  max-width: 220px;
}

.register--wrapper input[type=email], .register--wrapper input[type=password] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: normal;
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E4E5E5;
  font-size: inherit;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}

.register--wrapper input[type='submit'] {
  background: #4c84ff;
  color: white;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}
.register--wrapper .form--input {
    max-width: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    background: #FFFFFF;
    border: 1px solid #E4E5E5;
    border-radius: 3px;
    padding: 10px;
    outline: none;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    transition: border-color 0.25s ease-in-out;
}
.register--wrapper .form--group label {
  display: block;
}

.register--wrapper.share_simulation {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.register--wrapper.share_simulation label {
  text-align: left;
}


/* SCORING */

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

/* TOASTS */
.toast--wrapper {
  position: absolute;
  left: 50%;
  top: 15px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: column;
  transform: translateX(-50%);
  z-index: 99;
}

.toast {
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-weight: 500;
  color: white;
  display: inline-block;
}

.toast:last-child {
  margin-bottom: 0;
}

.toast.is-success {
  background: #3fc971;
}

.toast.is-error {
  background: #ea6356;
}

.toast.is-warning {
  background: #FFC93C;
}

.toast.is-info {
  background: #4D84FF;
}

/*  ACCOUNT */
.login-page {
  max-width: 360px;
  padding: 4% 0 5%;
  margin: auto;
}
.login-page form {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  width: 100%;
  margin: 0 auto 100px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

.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;
}
.login-page .font-p {
  float: left;
}
.login-page input[type='submit'] {
  font-weight: 600;
  max-width: 120px;
}

.login-page .form--input {
  max-width: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  background: #FFFFFF;
  border: 1px solid #E4E5E5;
  border-radius: 3px;
  padding: 10px;
  outline: none;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  transition: border-color 0.25s ease-in-out;
}
a.is-link {
	color: #306CF2;
}
.login-page input[type="text"] {
  font-weight: 1;
}

ul.errorlist {
	color: red;
	font-size: 14px;
	margin-top: 0;
	margin-bottom: 30px;
}
.mb0 > ul.errorlist {
	margin-bottom: 0px;
}


.font-h3 {
  font-size: 20px;
  line-height: 25px;
}
.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;
}

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