/* ==========================================================================
    Main styles
   ========================================================================== */
/*** Align an element in the center of another element use : ***/
/* ==========================================================================
    Helpers & Objects
   ========================================================================== */
/* ==============================
    Helper classes
   ============================== */
/*
 * Image replacement
 */
.ir {
  border: 0;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
}

.hidden {
  display: none;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

/*
 * Clearfix
 */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* ==============================
    Objects & abstractions
   ============================== */
/*
 *  Media object
 *
    <div class="media">
        <img class="media-img" src="http://placehold.it/100x100" alt="User avatar" />
        <p class="media-bd">Praesent eu libero porta risus imperdiet dignissim vitae tristique augue.</p>
    </div>
 */
.media,
.media-bd {
  overflow: hidden;
}

.media-img {
  float: left;
}

.media-img-rev {
  float: right;
}

.media-img img,
.media-img-rev img {
  display: block;
}

/*
 * Caret
 *
    <i class="caret caret-down"></i>
 */
.caret {
  content: "";
  height: 0;
  vertical-align: middle;
  width: 0;
  display: inline-block;
}

.caret-down,
.caret-up {
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
}

.caret-down {
  border-top: 3px solid #222;
}

.caret-up {
  border-bottom: 3px solid #222;
}

.caret-right,
.caret-left {
  border-bottom: 3px solid transparent;
  border-top: 3px solid transparent;
}

.caret-right {
  border-left: 3px solid #222;
}

.caret-left {
  border-right: 3px solid #222;
}

/*
 *  Horizontal list
 *
    <ul class="hlist">
        <li>One</li>
        <li>Two</li>
        <li>Three</li>
    </ul>
 */
.hlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hlist > li {
  display: inline-block;
  padding: 0;
}

.hlist > li:before {
  display: none;
}

/*
 *  Padding and margins
 */
.soft {
  padding: 10px !important;
}

.soft-t {
  padding-top: 10px !important;
}

.soft-r {
  padding-right: 10px !important;
}

.soft-b {
  padding-bottom: 10px !important;
}

.soft-l {
  padding-left: 10px !important;
}

.soft-ends {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.soft-sides {
  padding-right: 10px !important;
  padding-left: 10px !important;
}

.hard {
  padding: 0 !important;
}

.hard-t {
  padding-top: 0 !important;
}

.hard-r {
  padding-right: 0 !important;
}

.hard-b {
  padding-bottom: 0 !important;
}

.hard-l {
  padding-left: 0 !important;
}

.hard-ends {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.hard-sides {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.gap {
  margin: 10px !important;
}

.gap-t {
  margin-top: 10px !important;
}

.gap-r {
  margin-right: 10px !important;
}

.gap-b {
  margin-bottom: 10px !important;
}

.gap-l {
  margin-left: 10px !important;
}

.gap-ends {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.gap-sides {
  margin-right: 10px !important;
  margin-left: 10px !important;
}

.nogap {
  margin: 0 !important;
}

.nogap-t {
  margin-top: 0 !important;
}

.nogap-r {
  margin-right: 0 !important;
}

.nogap-b {
  margin-bottom: 0 !important;
}

.nogap-l {
  margin-left: 0 !important;
}

.nogap-ends {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.nogap-sides {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/*
 *  Text
 */
.text-right {
  text-align: right;
}

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

.nobullets {
  list-style: none;
  padding-left: 0;
}

.notransform {
  text-transform: none;
}

/*
 *  Blocks
 */
.fl-right {
  float: right;
}

.fl-left {
  float: left;
}

.el-block {
  display: block;
}

.el-inline-block {
  display: inline-block;
}

.valign-mid {
  vertical-align: middle;
}

.relative {
  position: relative;
}

/*
 *  Justified grid
 */
.eq-grid {
  width: 100%;
  text-align: justify;
  font-size: 0;
  /* remove whitespace */
  font-size: 12px\9;
  /* IE6-9 only hack */
  line-height: 0px\9;
  /* IE6-9 only hack */
}

.eq-grid-it {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  text-align: left;
  vertical-align: top;
}

.eq-grid:after {
  content: "";
  width: 100%;
  display: inline-block;
}

/*
 *  Table grid
 */
@media all and (min-width: 48em) {
  .teq-table {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
}

.teq-table > .teq-col {
  float: none;
}

@media all and (min-width: 48em) {
  .teq-table > .teq-col {
    display: table-cell;
  }
}

/*
 *  Overflows
 */
.overflow {
  overflow: visible;
}

.auto-overflow {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.no-overflow {
  overflow: hidden;
}

/*
 * Wordpress generated classes
 */
.alignnone,
.aligncenter,
.alignleft,
.alignright {
  display: block;
}

.wp-caption {
  text-align: center;
  position: relative;
}

.wp-caption .wp-caption-text {
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0.6);
  bottom: 0;
  color: #fff;
  left: 0;
  margin: 0;
  padding: 5px 10px;
  position: absolute;
  right: 0;
  text-align: left;
}

@media all and (min-width: 48em) {
  .alignnone,
  .aligncenter,
  .alignleft,
  .alignright {
    margin: 5px auto;
  }
  .alignnone {
    margin: 5px 20px 10px 0;
  }
  .aligncenter {
    display: block;
    margin: 5px auto;
    text-align: center;
  }
  .alignright {
    float: right;
    margin: 5px 0 10px 20px;
  }
  .alignleft {
    float: left;
    margin: 5px 20px 10px 0;
  }
}

@font-face {
  font-family: "Read";
  src: url("./fonts/Read-Light.woff") format("woff"), url("./fonts/Read-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Read";
  src: url("./fonts/Read-Bold.woff") format("woff"), url("./fonts/Read-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Read";
  src: url("./fonts/Read-Regular.woff") format("woff"), url("./fonts/Read-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Read";
  src: url("./fonts/Read-BoldItalic.woff") format("woff"), url("./fonts/Read-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "Read";
  src: url("./fonts/Read-LightItalic.woff") format("woff"), url("./fonts/Read-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Read";
  src: url("./fonts/Read-MediumItalic.woff") format("woff"), url("./fonts/Read-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Read";
  src: url("./fonts/Read-Medium.woff") format("woff"), url("./fonts/Read-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Read";
  src: url("./fonts/Read-Italic.woff") format("woff"), url("./fonts/Read-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Renault Life";
  src: url("./fonts/RenaultLife-BoldItalic.woff") format("woff"), url("./fonts/RenaultLife-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "Renault Life";
  src: url("./fonts/RenaultLife.woff") format("woff"), url("./fonts/RenaultLife.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Renault Life";
  src: url("./fonts/RenaultLife-Italic.woff") format("woff"), url("./fonts/RenaultLife-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Renault Life";
  src: url("./fonts/RenaultLife-LightItalic.woff") format("woff"), url("./fonts/RenaultLife-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Renault Life";
  src: url("./fonts/RenaultLife-Light.woff") format("woff"), url("./fonts/RenaultLife-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Renault Life";
  src: url("./fonts/RenaultLife-Bold.woff") format("woff"), url("./fonts/RenaultLife-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

/* ==========================================================================
    Custom fonts
   ========================================================================== */
/* ==========================================================================
    Default element styles
   ========================================================================== */
html,
button,
input,
select,
textarea {
  color: #333;
}

html {
  font: 62.5% Arial, Helvetica, "Liberation Sans", FreeSans, sans-serif;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}

* {
  -moz-font-smoothing: none;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

/* ==============================
    Typography
   ============================== */
p,
li {
  line-height: 1.8;
}

li li,
li p {
  font-size: 1rem;
}

p {
  margin: 0 0 2rem;
}

ul {
  padding-left: 3rem;
  margin: 0;
}

ul ol,
ul ul {
  margin: 0;
}

ul ol li,
ul ul li {
  margin: 0 0 1rem;
}

ol {
  padding-left: 2rem;
}

ol ol,
ol ul {
  margin: 0;
}

ol ol li,
ol ul li {
  margin: 0 0 1rem;
}

ol li {
  margin: 0 0 2rem;
}

ul li {
  margin: 0 0 2rem;
  list-style: none;
  padding-left: 1rem;
  position: relative;
}

.nobullets li:before {
  display: none;
}

a,
a:visited {
  text-decoration: none;
}

a:hover,
a:focus,
a:active {
  color: #000;
}

/* ==============================
    Other
   ============================== */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

address {
  line-height: 1.5;
  margin-bottom: 1rem;
}

hr {
  background: rgba(255, 255, 255, 0.1);
  border: 0 none;
  margin: 2rem 0;
  height: 0.1rem;
}

::-moz-selection {
  background: #000;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #000;
  color: #fff;
  text-shadow: none;
}

/* ==============================
    Tables
   ============================== */
thead,
tfoot,
tfoot tr {
  border: 0 none;
}

table.teq-table {
  width: 100%;
}

th,
td {
  font: 0.6875em sans-serif;
  padding: 10px;
  text-align: center;
}

.teq-table th,
.teq-table td {
  border: 1px solid #ececec;
}

th {
  font-weight: bold;
}

.teq-table th {
  background: #f7f7f7;
}

.teq-table tbody > tr:nth-child(even) > td {
  background: #f7f7f7;
}

.teq-table tfoot td {
  border: 0 none;
  color: #777;
  font: italic 0.6875em sans-serif;
  padding: 10px 0;
}

@font-face {
  font-family: "icomoon";
  src: url("fonts/icomoon.woff2") format("woff2"), url("fonts/icomoon.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"]:before,
[class*="icon-"]:before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  position: relative;
  speak: none;
  text-transform: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

/* ==============================
    Forms
   ============================== */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #555;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #555;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #555;
}

:-ms-input-placeholder {
  color: #555;
}

.placeholder {
  color: #555;
}

:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}

:-moz-submit-invalid {
  box-shadow: none;
}

:-moz-ui-invalid {
  box-shadow: none;
}

::-ms-clear {
  display: none;
}

/* ==============================
    Global
   ============================== */
html,
body {
  background: #fff;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  position: relative;
  scroll-behavior: smooth;
}

.global {
  min-height: 100%;
  overflow: hidden;
  position: relative;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 50px;
  background: #ffffff;
  border-bottom: 1px solid #f1f1f2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 961px) {
  header {
    height: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

header h1 {
  font-family: "Renault Life";
  font-size: 16px;
  color: #000000;
  margin: 0 auto;
}

header h1 a,
header h1 a:hover,
header h1 a:focus,
header h1 a:visited,
header h1 a:active {
  color: #000000;
}

@media only screen and (min-width: 961px) {
  header h1 {
    font-weight: 300;
    font-size: 28px;
    margin: 0 0 0 60px;
  }
}

header .icon-hamburger {
  position: absolute;
  left: 10px;
  width: 30px;
  height: 30px;
  fill: #000000;
  pointer-events: none;
}

@media only screen and (min-width: 961px) {
  header .icon-hamburger {
    display: none;
  }
}

header .hamburger {
  pointer-events: all !important;
  display: block;
  width: 40px;
  height: 45px;
  position: absolute;
  left: 0px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}

@media only screen and (min-width: 961px) {
  header .hamburger {
    display: none;
  }
}

header .hamburger:checked,
header .hamburger:checked ~ .icon.icon-hamburger {
  position: fixed;
  z-index: 9999;
}

header .hamburger:checked ~ .menu {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}

header .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100vh;
  -webkit-transform: translateX(-100vw);
          transform: translateX(-100vw);
  padding: 20px 0px 20px 20px;
  width: 100vw;
  background: white;
}

@media only screen and (min-width: 961px) {
  header .menu {
    top: auto;
    left: auto;
    height: auto;
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-transform: none;
            transform: none;
    padding: none;
    position: relative;
  }
}

header .menu .menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 20px;
  padding: 0px;
  min-width: 60px;
  min-height: 50px;
}

header .menu .menu__item a,
header .menu .menu__item a:focus,
header .menu .menu__item a:visited,
header .menu .menu__item a:active {
  color: #000000;
  font-family: "Renault Life";
  font-weight: normal;
  font-size: 16px;
}

header .menu .menu__item a:hover {
  color: #53565a;
}

@media only screen and (min-width: 961px) {
  header .menu .menu__item {
    min-height: 0px;
  }
}

@media only screen and (min-width: 961px) {
  header .menu .menu__item.active {
    border-bottom: 2px solid #ffcc33;
  }
}

header .menu .menu__item .icon-arrow-down {
  display: none;
}

@media only screen and (min-width: 961px) {
  header .menu .menu__item .icon-arrow-down {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 15px;
    height: 15px;
    fill: #666666;
    margin: 7px 0px 0px 35px;
  }
}

header .menu .menu__item .lang-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
}

header .menu .menu__item .lang-dropdown li {
  margin: 0;
  padding: 0;
  font-size: 14px;
  min-height: 50px;
}

@media only screen and (min-width: 961px) {
  header .menu .menu__item .lang-dropdown li {
    min-height: auto;
    display: none;
  }
}

header .menu .menu__item .lang-dropdown li a,
header .menu .menu__item .lang-dropdown li a:focus,
header .menu .menu__item .lang-dropdown li a:visited,
header .menu .menu__item .lang-dropdown li a:active {
  font-family: "Renault Life";
  font-weight: normal;
  font-size: 16px;
  color: #666666;
}

header .menu .menu__item .lang-dropdown li a:hover {
  color: #53565a;
}

header .menu .menu__item .lang-dropdown li:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .menu .menu__item .lang-dropdown:hover li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .logo {
  background-image: url("./images/renault-logo.png");
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  width: 90px;
  height: 27px;
}

@media only screen and (min-width: 961px) {
  header .logo {
    width: 195px;
    height: 60px;
    margin: 0 60px 0 auto;
  }
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #222222;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 961px) {
  footer {
    height: 70px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

footer .footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1170px;
  text-align: center;
  padding: 20px 0px;
}

@media only screen and (min-width: 961px) {
  footer .footer-inner {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
  }
}

footer .footer-inner__credits {
  font-family: "Read";
  font-weight: normal;
  font-size: 13px;
  color: #ffffff;
  margin: 0px 0px 10px 0px;
  text-align: center;
}

@media only screen and (min-width: 961px) {
  footer .footer-inner__credits {
    text-align: left;
    margin: 0 auto 0 0;
  }
}

footer .footer-inner__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
}

@media only screen and (min-width: 961px) {
  footer .footer-inner__links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 0 0 auto;
  }
}

footer .footer-inner__links .footer-link {
  margin: 15px 0px;
}

@media only screen and (min-width: 961px) {
  footer .footer-inner__links .footer-link {
    margin: 0 10px;
  }
}

footer .footer-inner__links .footer-link a,
footer .footer-inner__links .footer-link a:hover,
footer .footer-inner__links .footer-link a:focus,
footer .footer-inner__links .footer-link a:visited,
footer .footer-inner__links .footer-link a:active {
  font-family: "Read";
  font-weight: normal;
  font-size: 13px;
  color: #999999;
}

.requests-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #faf9f8;
}

@media only screen and (min-width: 961px) {
  .requests-hero {
    height: 120px;
  }
}

.requests-hero .requests-hero-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

@media only screen and (min-width: 961px) {
  .requests-hero .requests-hero-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 1080px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.requests-hero .requests-hero-inner .requests-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 10px;
}

@media only screen and (min-width: 961px) {
  .requests-hero .requests-hero-inner .requests-breadcrumb {
    padding: 0px;
    width: 870px;
  }
}

.requests-hero .requests-hero-inner .requests-breadcrumb .step {
  display: none;
  height: 40px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media only screen and (min-width: 961px) {
  .requests-hero .requests-hero-inner .requests-breadcrumb .step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100px;
  }
}

.requests-hero .requests-hero-inner .requests-breadcrumb .step:first-of-type .step__beforeline {
  display: none;
}

@media only screen and (max-width: 961px) {
  .requests-hero .requests-hero-inner .requests-breadcrumb .step:first-of-type .step__beforeline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 45px;
  }
}

.requests-hero .requests-hero-inner .requests-breadcrumb .step:last-of-type .step__afterline {
  display: none;
}

@media only screen and (max-width: 961px) {
  .requests-hero .requests-hero-inner .requests-breadcrumb .step:last-of-type .step__afterline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 45px;
  }
}

.requests-hero .requests-hero-inner .requests-breadcrumb .step.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 961px) {
  .requests-hero .requests-hero-inner .requests-breadcrumb .step.active .step__link {
    pointer-events: none;
  }
}

@media only screen and (max-width: 961px) {
  .requests-hero .requests-hero-inner .requests-breadcrumb .step.active .step__link .step__circle {
    display: none;
  }
}

@media only screen and (min-width: 961px) {
  .requests-hero .requests-hero-inner .requests-breadcrumb .step.active .step__link > .step__title {
    font-weight: 500;
  }
}

.requests-hero .requests-hero-inner .requests-breadcrumb .step.enabled .step__beforeline,
.requests-hero .requests-hero-inner .requests-breadcrumb .step.enabled .step__afterline {
  background-color: #ffcc33;
}

.requests-hero .requests-hero-inner .requests-breadcrumb .step.enabled .step__link .step__circle {
  background: #ffcc33;
}

.requests-hero .requests-hero-inner .requests-breadcrumb .step.enabled .step__link .step__circle .step__number {
  display: none;
}

.requests-hero .requests-hero-inner .requests-breadcrumb .step.enabled .step__link .step__circle .step__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 961px) {
  .requests-hero .requests-hero-inner .requests-breadcrumb .step.previous, .requests-hero .requests-hero-inner .requests-breadcrumb .step.next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50px;
  }
  .requests-hero .requests-hero-inner .requests-breadcrumb .step.previous:not(.enabled), .requests-hero .requests-hero-inner .requests-breadcrumb .step.next:not(.enabled) {
    pointer-events: none;
  }
  .requests-hero .requests-hero-inner .requests-breadcrumb .step.previous .step__link .step__circle, .requests-hero .requests-hero-inner .requests-breadcrumb .step.next .step__link .step__circle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 60px;
    height: 30px;
    border-radius: 10%;
  }
  .requests-hero .requests-hero-inner .requests-breadcrumb .step.previous .step__link .step__circle .step__number, .requests-hero .requests-hero-inner .requests-breadcrumb .step.next .step__link .step__circle .step__number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 14px;
  }
  .requests-hero .requests-hero-inner .requests-breadcrumb .step.previous .step__link .step__circle .step__check, .requests-hero .requests-hero-inner .requests-breadcrumb .step.next .step__link .step__circle .step__check {
    display: none;
  }
  .requests-hero .requests-hero-inner .requests-breadcrumb .step.previous .step__link .step__circle .step__previous .icon,
  .requests-hero .requests-hero-inner .requests-breadcrumb .step.previous .step__link .step__circle .step__next .icon, .requests-hero .requests-hero-inner .requests-breadcrumb .step.next .step__link .step__circle .step__previous .icon,
  .requests-hero .requests-hero-inner .requests-breadcrumb .step.next .step__link .step__circle .step__next .icon {
    width: 20px;
    height: 20px;
    fill: #ffffff;
  }
  .requests-hero .requests-hero-inner .requests-breadcrumb .step.previous .step__link > .step__title, .requests-hero .requests-hero-inner .requests-breadcrumb .step.next .step__link > .step__title {
    display: none;
  }
}

@media only screen and (max-width: 961px) {
  .requests-hero .requests-hero-inner .requests-breadcrumb .step.previous .step__link .step__circle .step__previous {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (max-width: 961px) {
  .requests-hero .requests-hero-inner .requests-breadcrumb .step.next .step__link .step__circle .step__next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.requests-hero .requests-hero-inner .requests-breadcrumb .step .step__beforeline,
.requests-hero .requests-hero-inner .requests-breadcrumb .step .step__afterline {
  display: none;
}

@media only screen and (min-width: 961px) {
  .requests-hero .requests-hero-inner .requests-breadcrumb .step .step__beforeline,
  .requests-hero .requests-hero-inner .requests-breadcrumb .step .step__afterline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: absolute;
    height: 2px;
    width: 65px;
    background-color: #666666;
  }
}

.requests-hero .requests-hero-inner .requests-breadcrumb .step .step__beforeline {
  -webkit-transform: translateX(-45px);
          transform: translateX(-45px);
}

.requests-hero .requests-hero-inner .requests-breadcrumb .step .step__afterline {
  -webkit-transform: translateX(45px);
          transform: translateX(45px);
}

.requests-hero .requests-hero-inner .requests-breadcrumb .step .step__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 961px) {
  .requests-hero .requests-hero-inner .requests-breadcrumb .step .step__link {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100px;
    height: 100px;
    padding-top: 20px;
  }
}

.requests-hero .requests-hero-inner .requests-breadcrumb .step .step__link .step__circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25px;
  height: 25px;
  background: #cccccc;
  border-radius: 50%;
}

.requests-hero .requests-hero-inner .requests-breadcrumb .step .step__link .step__circle .step__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  font-size: 12px;
  font-family: "Read";
  font-weight: medium;
}

.requests-hero .requests-hero-inner .requests-breadcrumb .step .step__link .step__circle .step__check {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.requests-hero .requests-hero-inner .requests-breadcrumb .step .step__link .step__circle .step__check .icon {
  width: 11px;
  height: 11px;
  fill: #ffffff;
}

.requests-hero .requests-hero-inner .requests-breadcrumb .step .step__link .step__circle .step__previous,
.requests-hero .requests-hero-inner .requests-breadcrumb .step .step__link .step__circle .step__next {
  display: none;
}

.requests-hero .requests-hero-inner .requests-breadcrumb .step .step__link > .step__title {
  font-family: "Read";
  color: #666666;
  font-size: 16px;
}

@media only screen and (min-width: 961px) {
  .requests-hero .requests-hero-inner .requests-breadcrumb .step .step__link > .step__title {
    font-size: 12px;
    margin-top: 5px;
  }
}

.requests-hero .requests-hero-inner .requets-cancel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #f1f1f2;
  border-bottom: 1px solid #f1f1f2;
  height: 40px;
}

@media only screen and (min-width: 961px) {
  .requests-hero .requests-hero-inner .requets-cancel {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 110px;
    height: 100px;
    padding-top: 20px;
    border: none;
  }
}

.requests-hero .requests-hero-inner .requets-cancel__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
}

.requests-hero .requests-hero-inner .requets-cancel__link:hover {
  cursor: pointer;
}

@media only screen and (min-width: 961px) {
  .requests-hero .requests-hero-inner .requets-cancel__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.requests-hero .requests-hero-inner .requets-cancel__link .icon {
  width: 25px;
  height: 25px;
  fill: #999999;
}

.requests-hero .requests-hero-inner .requets-cancel__link__label {
  font-family: "Read";
  font-size: 16px;
  margin-top: 5px;
  margin-left: 5px;
  color: #666666;
}

@media only screen and (min-width: 961px) {
  .requests-hero .requests-hero-inner .requets-cancel__link__label {
    font-size: 12px;
    margin-left: 0px;
    text-align: center;
  }
}

.smart-popin {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.smart-popin:target {
  opacity: 1;
  visibility: visible;
}

.smart-popin .sp-table {
  display: table;
  height: 100%;
  width: 100%;
}

.smart-popin .sp-cell {
  display: table-cell;
  vertical-align: middle;
  padding: 10px;
}

.smart-popin .sp-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
  width: auto;
  min-width: 300px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 2em;
  -webkit-box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.25);
          box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.25);
  width: 90%;
}

@media only screen and (min-width: 961px) {
  .smart-popin .sp-body {
    width: 40%;
  }
}

.smart-popin .sp-body h3 {
  color: #000000;
  font-family: "Renault Life";
  font-weight: normal;
  font-size: 40px;
  line-height: 40px;
  margin: 20px 0px 20px 0px;
}

.smart-popin .sp-body p {
  font-family: "Read";
  font-weight: 300;
  font-size: 14px;
  color: grey;
  margin: 5px 0px;
}

.smart-popin .sp-body * {
  max-width: 100%;
}

.smart-popin .sp-back {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
}

.smart-popin .sp-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 36px;
  font-size: 2.6em;
  color: #000000;
  font-weight: 900;
  text-decoration: none;
}

.stepping-flash-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 40px;
}

@media only screen and (min-width: 961px) {
  .stepping-flash-message {
    min-height: 60px;
  }
}

.stepping-flash-message .flash-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0px 30px;
}

@media only screen and (min-width: 961px) {
  .stepping-flash-message .flash-message {
    min-height: 60px;
    padding: 0px;
  }
}

.stepping-flash-message .flash-message .icon {
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  fill: #ffffff;
  margin-right: 20px;
}

.stepping-flash-message .flash-message.flash-success {
  background-color: #73c366;
}

.stepping-flash-message .flash-message.flash-error {
  background-color: #cb333b;
}

.stepping-flash-message .flash-message.flash-warning {
  background-color: #e67e22;
}

.stepping-flash-message .flash-message.flash-info {
  background-color: #ffcc33;
}

.stepping-flash-message .flash-message span.flash-text {
  font-family: "Read";
  font-size: 16px;
  color: #ffffff;
  max-width: 1170px;
  margin: 15px;
}

@media only screen and (min-width: 961px) {
  .stepping-flash-message .flash-message span.flash-text {
    margin: 5px;
  }
}

#homepage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#homepage .home-alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #cb333b;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 961px) {
  #homepage .home-alert {
    min-height: 80px;
  }
}

#homepage .home-alert .home-alert-inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
}

@media only screen and (min-width: 961px) {
  #homepage .home-alert .home-alert-inner {
    max-width: 1170px;
    padding: 0px;
  }
}

#homepage .home-alert .home-alert-inner__pictogram .icon {
  fill: #ffffff;
  width: 35px;
  height: 35px;
}

#homepage .home-alert .home-alert-inner__message {
  font-family: "Read";
  font-size: 14px;
  color: #eeeeee;
  letter-spacing: 0;
  line-height: 20px;
  margin: 0px 0px 0px 20px;
}

#homepage .home-alert .home-alert-inner__message span,
#homepage .home-alert .home-alert-inner__message p,
#homepage .home-alert .home-alert-inner__message a {
  margin: 2px 0px;
}

#homepage .home-alert .home-alert-inner__message a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: bold;
}

#homepage .hero-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  padding: 0px 20px;
  background-image: url("./images/hero-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media only screen and (min-width: 961px) {
  #homepage .hero-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 700px;
  }
}

#homepage .hero-wrapper .intro-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 50px 60px;
  background: rgba(0, 0, 0, 0.85);
}

@media only screen and (min-width: 961px) {
  #homepage .hero-wrapper .intro-wrapper {
    margin-left: 100px;
    width: 485px;
  }
}

#homepage .hero-wrapper .intro-wrapper__title, #homepage .hero-wrapper .intro-wrapper__description {
  color: #ffffff;
  font-family: "Renault Life";
}

#homepage .hero-wrapper .intro-wrapper__title {
  font-weight: normal;
  margin: 0;
  font-size: 50px;
  line-height: 54px;
}

#homepage .hero-wrapper .intro-wrapper__description {
  font-weight: bold;
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
}

#homepage .hero-wrapper .intro-wrapper__button {
  background: #ffcc33;
  font-size: 14px;
  font-family: "Renault Life";
  font-weight: bold;
  letter-spacing: 0;
  text-align: center;
  vertical-align: center;
  padding: 10px 30px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

#homepage .hero-wrapper .intro-wrapper__button, #homepage .hero-wrapper .intro-wrapper__button:hover, #homepage .hero-wrapper .intro-wrapper__button:focus, #homepage .hero-wrapper .intro-wrapper__button:visited, #homepage .hero-wrapper .intro-wrapper__button:active {
  color: #000000;
}

#homepage .hero-wrapper .intro-wrapper__button:hover {
  background: #ffc20a;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

#homepage .hero-wrapper .intro-wrapper__button:active {
  background: #b38600;
}

#homepage .news-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  min-height: 735px;
}

#homepage .news-wrapper .news-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 20px;
}

@media only screen and (min-width: 961px) {
  #homepage .news-wrapper .news-inner {
    max-width: 1170px;
    padding: 0px;
  }
}

#homepage .news-wrapper .news-inner__title {
  font-family: "Renault Life";
  font-weight: normal;
  font-size: 38px;
  color: #000000;
  line-height: 42px;
  margin: 60px 0 30px 0;
}

#homepage .news-wrapper .news-inner__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 60px;
}

@media only screen and (min-width: 961px) {
  #homepage .news-wrapper .news-inner__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 1170px;
    padding: 0px;
  }
}

#homepage .news-wrapper .news-inner__cards .news-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px;
  max-height: 450px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  border: 1px solid #f1f1f2;
  margin-bottom: 10px;
}

#homepage .news-wrapper .news-inner__cards .news-card:last-of-type {
  margin-bottom: 0px;
}

@media only screen and (min-width: 961px) {
  #homepage .news-wrapper .news-inner__cards .news-card {
    margin-bottom: 0px;
    margin-right: 10px;
  }
  #homepage .news-wrapper .news-inner__cards .news-card:last-of-type {
    margin-right: 0px;
  }
}

#homepage .news-wrapper .news-inner__cards .news-card__category {
  font-family: "Read";
  font-weight: normal;
  font-size: 14px;
  text-transform: uppercase;
  color: #ffcc33;
  margin: 0 0 15px 0;
}

#homepage .news-wrapper .news-inner__cards .news-card__title {
  font-family: "Renault Life";
  font-weight: normal;
  font-size: 28px;
  color: #000000;
  margin: 0 0 15px 0;
}

#homepage .news-wrapper .news-inner__cards .news-card__intro {
  font-family: "Read";
  font-size: 16px;
  color: #53565a;
  margin: 0 0 15px 0;
}

#homepage .news-wrapper .news-inner__cards .news-card__date {
  font-family: "Read";
  font-weight: normal;
  font-size: 14px;
  color: #bbbcbc;
}

#homepage .news-wrapper .news-inner__button {
  background: #ffcc33;
  font-size: 14px;
  font-family: "Renault Life";
  font-weight: bold;
  letter-spacing: 0;
  text-align: center;
  vertical-align: center;
  padding: 10px 30px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  -ms-flex-item-align: center;
      align-self: center;
}

#homepage .news-wrapper .news-inner__button, #homepage .news-wrapper .news-inner__button:hover, #homepage .news-wrapper .news-inner__button:focus, #homepage .news-wrapper .news-inner__button:visited, #homepage .news-wrapper .news-inner__button:active {
  color: #000000;
}

#homepage .news-wrapper .news-inner__button:hover {
  background: #ffc20a;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

#homepage .news-wrapper .news-inner__button:active {
  background: #b38600;
}

#requests {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
}

#requests .requests-inner {
  padding: 0px 20px;
}

@media only screen and (min-width: 961px) {
  #requests .requests-inner {
    padding: 0px;
    max-width: 1170px;
  }
}

#requests .requests-inner .hero-requests {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

#requests .requests-inner .hero-requests__title {
  color: #000000;
  font-family: "Renault Life";
  font-weight: normal;
  font-size: 50px;
  line-height: 50px;
  margin: 20px 0px 20px 0px;
}

@media only screen and (min-width: 961px) {
  #requests .requests-inner .hero-requests__title {
    margin: 50px 0px 40px 0px;
  }
}

#requests .requests-inner .hero-requests__description {
  color: #666666;
  font-family: "Read";
  font-weight: medium;
  font-size: 16px;
}

#requests .requests-inner .hero-requests__description a,
#requests .requests-inner .hero-requests__description a:hover,
#requests .requests-inner .hero-requests__description a:focus,
#requests .requests-inner .hero-requests__description a:visited,
#requests .requests-inner .hero-requests__description a:active {
  font-family: "Read";
  font-weight: normal;
  font-size: 16px;
  color: #666666;
  text-decoration: underline;
}

#requests .requests-inner .topics-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f1f1f2;
  margin-bottom: 30px;
  padding: 20px;
}

@media only screen and (min-width: 961px) {
  #requests .requests-inner .topics-wrapper {
    padding: 0px;
    min-height: 378px;
  }
}

#requests .requests-inner .topics-wrapper__title {
  font-family: "Renault Life";
  font-weight: normal;
  font-size: 28px;
  color: #000000;
  margin: 0px 0px 20px 0px;
  text-align: center;
}

@media only screen and (min-width: 961px) {
  #requests .requests-inner .topics-wrapper__title {
    margin: 40px 0px;
    text-align: left;
  }
}

#requests .requests-inner .topics-wrapper .topics-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: space-around;
      -ms-flex-align: space-around;
          align-items: space-around;
}

@media only screen and (min-width: 961px) {
  #requests .requests-inner .topics-wrapper .topics-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 630px;
  }
}

@media only screen and (min-width: 961px) {
  #requests .requests-inner .topics-wrapper .topics-row.-max-test {
    max-width: 100%;
  }
}

#requests .requests-inner .topics-wrapper .topics-row .topic {
  height: 50px;
  background: #ffcc33;
  border-bottom: 3px solid #000000;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  margin-bottom: 10px;
}

@media only screen and (min-width: 961px) {
  #requests .requests-inner .topics-wrapper .topics-row .topic {
    width: 188px;
    height: 188px;
    margin: 10px;
  }
}

#requests .requests-inner .topics-wrapper .topics-row .topic.-topic-new {
  background: #FF5733;
}

#requests .requests-inner .topics-wrapper .topics-row .topic.-topic-new:hover {
  background: #ff350a;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

#requests .requests-inner .topics-wrapper .topics-row .topic:hover {
  background: #ffc20a;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

#requests .requests-inner .topics-wrapper .topics-row .topic__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: none;
  border: none;
}

#requests .requests-inner .topics-wrapper .topics-row .topic__link:hover {
  cursor: pointer;
}

@media only screen and (min-width: 961px) {
  #requests .requests-inner .topics-wrapper .topics-row .topic__link {
    padding: 0px 25px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#requests .requests-inner .topics-wrapper .topics-row .topic__link__picto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Read";
  font-weight: normal;
  font-size: 18px;
  color: #000000;
  margin-right: 20px;
}

@media only screen and (min-width: 961px) {
  #requests .requests-inner .topics-wrapper .topics-row .topic__link__picto {
    margin-right: 0px;
    margin-top: 15px;
  }
}

#requests .requests-inner .topics-wrapper .topics-row .topic__link__picto .icon {
  display: inline-block;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  width: 35px;
  height: 35px;
}

@media only screen and (min-width: 961px) {
  #requests .requests-inner .topics-wrapper .topics-row .topic__link__picto .icon {
    width: 50px;
    height: 50px;
  }
}

#requests .requests-inner .topics-wrapper .topics-row .topic__link__label {
  font-family: "Read";
  font-weight: normal;
  font-size: 18px;
  color: #000000;
  text-align: center;
}

@media only screen and (min-width: 961px) {
  #requests .requests-inner .topics-wrapper .topics-row .topic__link__label {
    margin-top: auto;
    margin-bottom: auto;
  }
}

#requests-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100vh - 170px);
}

#requests-steps .link-request {
  font-family: "Read";
  font-size: 16px;
  color: #222222;
  max-width: 90%;
  text-align: left;
}

#requests-steps .requests-step-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 20px;
  width: 100%;
}

@media only screen and (min-width: 961px) {
  #requests-steps .requests-step-inner {
    padding: 0px;
    max-width: 1170px;
    margin: 20px 0px 40px 0px;
  }
}

#requests-steps .requests-step-inner .hero-step-requests {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

#requests-steps .requests-step-inner .hero-step-requests__title {
  color: #000000;
  font-family: "Renault Life";
  font-weight: normal;
  font-size: 50px;
  line-height: 50px;
  margin: 20px 0px 20px 0px;
}

@media only screen and (min-width: 961px) {
  #requests-steps .requests-step-inner .hero-step-requests__title {
    margin: 50px 0px 40px 0px;
  }
}

#requests-steps .requests-step-inner .hero-step-requests__description {
  color: #666666;
  font-family: "Read";
  font-weight: medium;
  font-size: 16px;
}

#requests-steps .requests-step-inner .requests-step-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#requests-steps .requests-step-inner .requests-step-categories form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#requests-steps .requests-step-inner .requests-step-categories form .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  border: 1px solid #e7e7e7;
  width: 100%;
}

@media only screen and (min-width: 961px) {
  #requests-steps .requests-step-inner .requests-step-categories form .category {
    width: calc(50% - 10px);
  }
}

#requests-steps .requests-step-inner .requests-step-categories form .category .category__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  background: none;
  border: none;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

@media only screen and (min-width: 961px) {
  #requests-steps .requests-step-inner .requests-step-categories form .category .category__link {
    padding: 30px 40px;
  }
}

#requests-steps .requests-step-inner .requests-step-categories form .category .category__link:hover {
  background: #ffcc33;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  cursor: pointer;
}

#requests-steps .requests-step-inner .requests-step-categories form .category .category__link .link__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

#requests-steps .requests-step-inner .requests-step-categories form .category .category__link .link__texts .link__texts__title,
#requests-steps .requests-step-inner .requests-step-categories form .category .category__link .link__texts .link__texts__description {
  font-family: "Read";
  font-size: 16px;
  color: #222222;
  max-width: 90%;
  text-align: left;
}

@media only screen and (min-width: 961px) {
  #requests-steps .requests-step-inner .requests-step-categories form .category .category__link .link__texts .link__texts__title,
  #requests-steps .requests-step-inner .requests-step-categories form .category .category__link .link__texts .link__texts__description {
    max-width: 80%;
  }
}

#requests-steps .requests-step-inner .requests-step-categories form .category .category__link .link__texts .link__texts__title {
  font-weight: 500;
}

#requests-steps .requests-step-inner .requests-step-categories form .category .category__link .link__texts .link__texts__description {
  font-weight: lighter;
}

#requests-steps .requests-step-inner .requests-step-categories form .category .category__link .link__icon .icon {
  width: 32px;
  height: 15px;
  fill: #000000;
}

#requests-steps .vehicule-step-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 20px;
}

@media only screen and (min-width: 961px) {
  #requests-steps .vehicule-step-inner {
    padding: 0px;
    max-width: 1170px;
    margin: 20px 0px 40px 0px;
  }
}

#requests-steps .vehicule-step-inner .hero-step-vehicule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 20px;
}

#requests-steps .vehicule-step-inner .hero-step-vehicule__title {
  color: #000000;
  font-family: "Renault Life";
  font-weight: normal;
  font-size: 50px;
  line-height: 50px;
  margin: 20px 0px 20px 0px;
}

@media only screen and (min-width: 961px) {
  #requests-steps .vehicule-step-inner .hero-step-vehicule__title {
    margin: 20px 0px 40px 0px;
  }
}

#requests-steps .vehicule-step-inner .hero-step-vehicule .hero-step-vehicule__alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #f1f1f2;
  padding: 20px 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#requests-steps .vehicule-step-inner .hero-step-vehicule .hero-step-vehicule__alert .alert__picto {
  margin-right: 20px;
}

#requests-steps .vehicule-step-inner .hero-step-vehicule .hero-step-vehicule__alert .alert__picto .icon {
  fill: #222222;
  width: 35px;
  height: 35px;
}

#requests-steps .vehicule-step-inner .hero-step-vehicule .hero-step-vehicule__alert .alert__description {
  font-family: "Read";
  font-size: 14px;
  font-weight: 300;
  margin: 0;
}

#requests-steps .vehicule-step-inner .inner-step-vehicule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#requests-steps .vehicule-step-inner .inner-step-vehicule .vehicule-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 15px;
  border: 1px solid #e7e7e7;
  padding: 35px;
  width: 100%;
}

@media only screen and (min-width: 961px) {
  #requests-steps .vehicule-step-inner .inner-step-vehicule .vehicule-item.half-width {
    width: calc(50% - 8px);
  }
}

#requests-steps .vehicule-step-inner .inner-step-vehicule .vehicule-item .vehicule-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

#requests-steps .vehicule-step-inner .inner-step-vehicule .vehicule-item .vehicule-item__title .vehicule-item__title__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
  height: 36px;
  width: 32px;
}

#requests-steps .vehicule-step-inner .inner-step-vehicule .vehicule-item .vehicule-item__title .vehicule-item__title__icon .icon {
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
  fill: #ffcc33;
}

#requests-steps .vehicule-step-inner .inner-step-vehicule .vehicule-item .vehicule-item__title .vehicule-item__title__text {
  font-size: 16px;
  font-family: "Read";
  font-weight: 500;
  color: #000000;
}

#requests-steps .vehicule-step-inner .inner-step-vehicule .vehicule-item .vehicule-item__content p,
#requests-steps .vehicule-step-inner .inner-step-vehicule .vehicule-item .vehicule-item__content ul,
#requests-steps .vehicule-step-inner .inner-step-vehicule .vehicule-item .vehicule-item__content li {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Read";
  font-weight: 300;
  color: #666666;
}

#requests-steps .vehicule-step-inner .inner-step-vehicule .vehicule-item .vehicule-item__content ul li {
  list-style-type: disc;
  margin-left: 15px;
}

#requests-steps .vehicule-step-inner .button-step-vehicule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
}

#requests-steps .vehicule-step-inner .button-step-vehicule__button {
  background: #ffcc33;
  font-size: 14px;
  font-family: "Renault Life";
  font-weight: bold;
  letter-spacing: 0;
  text-align: center;
  vertical-align: center;
  padding: 10px 30px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

#requests-steps .vehicule-step-inner .button-step-vehicule__button, #requests-steps .vehicule-step-inner .button-step-vehicule__button:hover, #requests-steps .vehicule-step-inner .button-step-vehicule__button:focus, #requests-steps .vehicule-step-inner .button-step-vehicule__button:visited, #requests-steps .vehicule-step-inner .button-step-vehicule__button:active {
  color: #000000;
}

#requests-steps .vehicule-step-inner .button-step-vehicule__button:hover {
  background: #ffc20a;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

#requests-steps .vehicule-step-inner .button-step-vehicule__button:active {
  background: #b38600;
}

#requests-steps .informations-step-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0px 20px;
}

@media only screen and (min-width: 961px) {
  #requests-steps .informations-step-inner {
    padding: 0px;
    max-width: 1170px;
    margin: 20px 0px 40px 0px;
  }
}

#requests-steps .informations-step-inner .hero-step-informations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}

#requests-steps .informations-step-inner .hero-step-informations__title {
  color: #000000;
  font-family: "Renault Life";
  font-weight: normal;
  font-size: 50px;
  line-height: 50px;
  margin: 20px 0px 20px 0px;
}

@media only screen and (min-width: 961px) {
  #requests-steps .informations-step-inner .hero-step-informations__title {
    margin: 20px 0px 40px 0px;
  }
}

#requests-steps .informations-step-inner .informations-step-forms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#requests-steps .informations-step-inner .informations-step-forms .form-step-informations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 20px;
  background: #faf9f8;
  margin: 20px 0px;
}

@media only screen and (min-width: 961px) {
  #requests-steps .informations-step-inner .informations-step-forms .form-step-informations {
    padding: 50px 100px;
    max-width: 620px;
  }
}

#requests-steps .informations-step-inner .informations-step-forms .form-step-informations.white-style {
  background: #ffffff;
}

#requests-steps .informations-step-inner .informations-step-forms .form-step-informations p,
#requests-steps .informations-step-inner .informations-step-forms .form-step-informations label .filled-in ~ span {
  font-family: "Read";
  font-weight: 300;
  font-size: 16px;
  margin: 5px 0px;
}

#requests-steps .informations-step-inner .informations-step-forms .form-step-informations p a,
#requests-steps .informations-step-inner .informations-step-forms .form-step-informations p a:hover,
#requests-steps .informations-step-inner .informations-step-forms .form-step-informations p a:focus,
#requests-steps .informations-step-inner .informations-step-forms .form-step-informations p a:visited,
#requests-steps .informations-step-inner .informations-step-forms .form-step-informations p a:active,
#requests-steps .informations-step-inner .informations-step-forms .form-step-informations label .filled-in ~ span a,
#requests-steps .informations-step-inner .informations-step-forms .form-step-informations label .filled-in ~ span a:hover,
#requests-steps .informations-step-inner .informations-step-forms .form-step-informations label .filled-in ~ span a:focus,
#requests-steps .informations-step-inner .informations-step-forms .form-step-informations label .filled-in ~ span a:visited,
#requests-steps .informations-step-inner .informations-step-forms .form-step-informations label .filled-in ~ span a:active {
  font-family: "Read";
  font-weight: normal;
  font-size: 14px;
  color: #666666;
  text-decoration: underline;
}

#requests-steps .informations-step-inner .informations-step-forms .form-step-informations p {
  color: #666666;
}

#requests-steps .informations-step-inner .informations-step-forms .form-step-informations .italic {
  color: #666666;
  font-family: "Read";
  font-size: 14px;
  font-style: italic;
}

#requests-steps .informations-step-inner .informations-step-forms .form-step-informations label .filled-in ~ span {
  color: #000000;
}

#requests-steps .informations-step-inner .informations-step-forms .form-step-informations hr {
  background: #bbbcbc;
  height: 1px;
}

#requests-steps .informations-step-inner .informations-step-forms .form-step-informations__title {
  color: #000000;
  font-family: "Renault Life";
  font-weight: normal;
  font-size: 28px;
  line-height: 28px;
  margin: 0px 0px 40px 0px;
}

#requests-steps .informations-step-inner .informations-step-forms .form-step-informations .gender-inputs,
#requests-steps .informations-step-inner .informations-step-forms .form-step-informations .is_france-inputs {
  min-height: 40px;
}

#requests-steps .informations-step-inner .informations-step-forms .form-step-informations .gender-inputs .gender-label,
#requests-steps .informations-step-inner .informations-step-forms .form-step-informations .gender-inputs .is_france-label,
#requests-steps .informations-step-inner .informations-step-forms .form-step-informations .is_france-inputs .gender-label,
#requests-steps .informations-step-inner .informations-step-forms .form-step-informations .is_france-inputs .is_france-label {
  font-size: 16px;
  font-family: "Read";
  font-weight: 300;
  color: #333333;
}

#requests-steps .informations-step-inner .informations-step-forms .form-step-informations .gender-inputs label,
#requests-steps .informations-step-inner .informations-step-forms .form-step-informations .is_france-inputs label {
  margin-left: 20px;
}

#requests-steps .informations-step-inner .informations-step-forms .form-step-informations .input-field {
  width: 100%;
}

@media only screen and (min-width: 961px) {
  #requests-steps .informations-step-inner .informations-step-forms .form-step-informations .input-field {
    min-height: 40px;
  }
}

#requests-steps .informations-step-inner .informations-step-forms .form-step-informations .input-field .valid {
  border-bottom: 1px solid #000000;
  -webkit-box-shadow: 0 1px 0 0 #000000;
          box-shadow: 0 1px 0 0 #000000;
}

#requests-steps .informations-step-inner .informations-step-forms .form-step-informations .button-step-informations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}

#requests-steps .informations-step-inner .informations-step-forms .form-step-informations .button-step-informations__button {
  background: #ffcc33;
  font-size: 14px;
  font-family: "Renault Life";
  font-weight: bold;
  letter-spacing: 0;
  text-align: center;
  vertical-align: center;
  padding: 10px 30px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  -ms-flex-item-align: center;
      align-self: center;
}

#requests-steps .informations-step-inner .informations-step-forms .form-step-informations .button-step-informations__button, #requests-steps .informations-step-inner .informations-step-forms .form-step-informations .button-step-informations__button:hover, #requests-steps .informations-step-inner .informations-step-forms .form-step-informations .button-step-informations__button:focus, #requests-steps .informations-step-inner .informations-step-forms .form-step-informations .button-step-informations__button:visited, #requests-steps .informations-step-inner .informations-step-forms .form-step-informations .button-step-informations__button:active {
  color: #000000;
}

#requests-steps .informations-step-inner .informations-step-forms .form-step-informations .button-step-informations__button:hover {
  background: #ffc20a;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

#requests-steps .informations-step-inner .informations-step-forms .form-step-informations .button-step-informations__button:active {
  background: #b38600;
}

#requests-steps .informations-step-inner .informations-step-forms .form-step-informations .terms-rgpd {
  margin-top: 30px;
}

#requests-steps .attachments-step-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0px 20px;
}

@media only screen and (min-width: 961px) {
  #requests-steps .attachments-step-inner {
    padding: 0px;
    max-width: 1170px;
    margin: 20px 0px 40px 0px;
  }
}

#requests-steps .attachments-step-inner .hero-step-attachments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}

#requests-steps .attachments-step-inner .hero-step-attachments__title {
  color: #000000;
  font-family: "Renault Life";
  font-weight: normal;
  font-size: 50px;
  line-height: 50px;
  margin: 20px 0px 20px 0px;
}

#requests-steps .attachments-step-inner .attachments-step-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 20px;
  background: #faf9f8;
  margin: 20px 0px;
}

@media only screen and (min-width: 961px) {
  #requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments {
    padding: 50px 100px;
    max-width: 620px;
  }
}

#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments p,
#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments ul,
#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments li {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Read";
  font-weight: 300;
  color: #666666;
}

#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments p a,
#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments p a:hover,
#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments p a:focus,
#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments p a:visited,
#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments p a:active,
#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments ul a,
#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments ul a:hover,
#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments ul a:focus,
#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments ul a:visited,
#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments ul a:active,
#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments li a,
#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments li a:hover,
#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments li a:focus,
#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments li a:visited,
#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments li a:active {
  font-family: "Read";
  font-weight: normal;
  font-size: 14px;
  color: #666666;
  text-decoration: underline;
}

#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments ul li {
  list-style-type: disc;
  margin-left: 15px;
}

#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments.white-style {
  background: #ffffff;
}

#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments .italic {
  color: #666666;
  font-family: "Read";
  font-size: 14px;
  font-style: italic;
}

#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments__title {
  color: #53565a;
  font-family: "Read";
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  margin: 20px 0px 20px 0px;
}

#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments .input-field {
  width: 100%;
}

@media only screen and (min-width: 961px) {
  #requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments .input-field {
    min-height: 40px;
  }
}

#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments .input-field .valid {
  border-bottom: 1px solid #000000;
  -webkit-box-shadow: 0 1px 0 0 #000000;
          box-shadow: 0 1px 0 0 #000000;
}

#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments .input-field .file-path-wrapper label {
  font-family: "Read";
  font-weight: 500;
  font-size: 14px;
  color: #53565a;
}

#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments .input-field .file-path-wrapper input::-webkit-input-placeholder {
  font-family: "Read";
  font-weight: 300;
  font-size: 16px;
  color: #53565a;
}

#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments .input-field .file-path-wrapper input::-ms-input-placeholder {
  font-family: "Read";
  font-weight: 300;
  font-size: 16px;
  color: #53565a;
}

#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments .input-field .file-path-wrapper input::placeholder {
  font-family: "Read";
  font-weight: 300;
  font-size: 16px;
  color: #53565a;
}

#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments .button-step-informations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}

#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments .button-step-informations__button {
  background: #ffcc33;
  font-size: 14px;
  font-family: "Renault Life";
  font-weight: bold;
  letter-spacing: 0;
  text-align: center;
  vertical-align: center;
  padding: 10px 30px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  -ms-flex-item-align: center;
      align-self: center;
}

#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments .button-step-informations__button, #requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments .button-step-informations__button:hover, #requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments .button-step-informations__button:focus, #requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments .button-step-informations__button:visited, #requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments .button-step-informations__button:active {
  color: #000000;
}

#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments .button-step-informations__button:hover {
  background: #ffc20a;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

#requests-steps .attachments-step-inner .attachments-step-form .form-step-attachments .button-step-informations__button:active {
  background: #b38600;
}

#requests-steps .finish-step-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0px 20px;
  min-height: 70vh;
}

@media only screen and (min-width: 961px) {
  #requests-steps .finish-step-inner {
    padding: 0px;
    max-width: 1170px;
    margin: 20px 0px 40px 0px;
    min-height: 45vh;
  }
}

#requests-steps .finish-step-inner .hero-step-finish {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}

#requests-steps .finish-step-inner .hero-step-finish__title {
  color: #000000;
  font-family: "Renault Life";
  font-weight: normal;
  font-size: 50px;
  line-height: 50px;
  margin: 20px 0px 20px 0px;
}

@media only screen and (min-width: 961px) {
  #requests-steps .finish-step-inner .hero-step-finish__title {
    margin: 20px 0px 40px 0px;
  }
}

#requests-steps .finish-step-inner .finish-step-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
}

@media only screen and (min-width: 961px) {
  #requests-steps .finish-step-inner .finish-step-inner {
    padding: 0px 250px;
  }
}

#requests-steps .finish-step-inner .finish-step-inner__circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 100px;
  border: 1px solid #cccccc;
  border-radius: 50%;
}

#requests-steps .finish-step-inner .finish-step-inner__circle .icon {
  width: 50px;
  height: 50px;
}

#requests-steps .finish-step-inner .finish-step-inner__circle .icon-cross {
  fill: #cb333b;
}

#requests-steps .finish-step-inner .finish-step-inner__circle .icon-validated {
  fill: #73c366;
}

#requests-steps .finish-step-inner .finish-step-inner__title {
  font-family: "Renault Life";
  font-size: 38px;
  font-weight: normal;
  color: #000000;
}

#requests-steps .finish-step-inner .finish-step-inner__description {
  font-family: "Read";
  font-size: 16px;
  color: #666666;
  letter-spacing: 0;
  text-align: center;
  line-height: 28px;
  margin-bottom: 50px;
}

#requests-steps .finish-step-inner .finish-step-inner__button .button-go-home {
  background: #ffcc33;
  font-size: 14px;
  font-family: "Renault Life";
  font-weight: bold;
  letter-spacing: 0;
  text-align: center;
  vertical-align: center;
  padding: 10px 30px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

#requests-steps .finish-step-inner .finish-step-inner__button .button-go-home, #requests-steps .finish-step-inner .finish-step-inner__button .button-go-home:hover, #requests-steps .finish-step-inner .finish-step-inner__button .button-go-home:focus, #requests-steps .finish-step-inner .finish-step-inner__button .button-go-home:visited, #requests-steps .finish-step-inner .finish-step-inner__button .button-go-home:active {
  color: #000000;
}

#requests-steps .finish-step-inner .finish-step-inner__button .button-go-home:hover {
  background: #ffc20a;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

#requests-steps .finish-step-inner .finish-step-inner__button .button-go-home:active {
  background: #b38600;
}

#contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
}

#contact .forms-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 20px;
}

#contact .forms-inner.row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (min-width: 961px) {
  #contact .forms-inner.row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media only screen and (min-width: 961px) {
  #contact .forms-inner {
    padding: 0px;
    max-width: 1170px;
    margin: 20px 0px 20px 0px;
  }
}

#contact .forms-inner .hero-forms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

#contact .forms-inner .hero-forms__title {
  color: #000000;
  font-family: "Renault Life";
  font-weight: normal;
  font-size: 50px;
  line-height: 50px;
  margin: 20px 0px 20px 0px;
}

@media only screen and (min-width: 961px) {
  #contact .forms-inner .hero-forms__title {
    margin: 50px 0px 40px 0px;
  }
}

#contact .forms-inner .hero-forms__description {
  color: #666666;
  font-family: "Read";
  font-weight: medium;
  font-size: 16px;
}

#contact .forms-inner .form-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 20px;
  background: #faf9f8;
  margin: 20px 0px;
}

@media only screen and (min-width: 961px) {
  #contact .forms-inner .form-section {
    max-width: 580px;
    padding: 50px 100px;
  }
}

#contact .forms-inner .form-section p,
#contact .forms-inner .form-section label .filled-in ~ span {
  font-family: "Read";
  font-weight: 300;
  font-size: 16px;
  margin: 5px 0px;
}

#contact .forms-inner .form-section label .filled-in ~ span {
  color: #000000;
}

#contact .forms-inner .form-section a {
  color: #000000;
  text-decoration: underline;
}

#contact .forms-inner .form-section .input-field {
  width: 100%;
}

@media only screen and (min-width: 961px) {
  #contact .forms-inner .form-section .input-field {
    min-height: 40px;
  }
}

#contact .forms-inner .form-section .input-field .valid {
  border-bottom: 1px solid #000000;
  -webkit-box-shadow: 0 1px 0 0 #000000;
          box-shadow: 0 1px 0 0 #000000;
}

#contact .forms-inner .form-section.centered {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact .forms-inner .form-section.centered .form__phone,
#contact .forms-inner .form-section.centered .form__success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 100px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contact .forms-inner .form-section.centered .form__phone [class*="icon-"],
#contact .forms-inner .form-section.centered .form__success [class*="icon-"] {
  width: 39px;
  height: 39px;
  fill: #000000;
}

#contact .forms-inner .form-section.centered .form__success__message {
  margin-top: 20px;
}

#contact .forms-inner .form-section.centered .form__phonenumber {
  font-family: "Renault Life";
  font-size: 38px;
  color: #000000;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 42px;
  margin-top: 20px;
}

#contact .forms-inner .form-section .button-step-informations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#contact .forms-inner .form-section .button-step-informations__button {
  background: #ffcc33;
  font-size: 14px;
  font-family: "Renault Life";
  font-weight: bold;
  letter-spacing: 0;
  text-align: center;
  vertical-align: center;
  padding: 10px 30px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  -ms-flex-item-align: center;
      align-self: center;
}

#contact .forms-inner .form-section .button-step-informations__button, #contact .forms-inner .form-section .button-step-informations__button:hover, #contact .forms-inner .form-section .button-step-informations__button:focus, #contact .forms-inner .form-section .button-step-informations__button:visited, #contact .forms-inner .form-section .button-step-informations__button:active {
  color: #000000;
}

#contact .forms-inner .form-section .button-step-informations__button:hover {
  background: #ffc20a;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

#contact .forms-inner .form-section .button-step-informations__button:active {
  background: #b38600;
}

#contact .forms-inner .form-section .button-step-informations p {
  margin-top: 40px;
  font-size: 10px;
}

#news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#news-list .news-list-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 20px;
}

@media only screen and (min-width: 961px) {
  #news-list .news-list-inner {
    padding: 0px;
    max-width: 1170px;
    margin: 20px 0px 40px 0px;
  }
}

#news-list .news-list-inner .hero-news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eeeeee;
}

#news-list .news-list-inner .hero-news-list__title {
  color: #000000;
  font-family: "Renault Life";
  font-weight: normal;
  font-size: 50px;
  line-height: 50px;
  margin: 20px 0px 20px 0px;
}

@media only screen and (min-width: 961px) {
  #news-list .news-list-inner .hero-news-list__title {
    margin: 50px 0px 40px 0px;
  }
}

#news-list .news-list-inner .hero-news-list__description {
  color: #666666;
  font-family: "Read";
  font-weight: medium;
  font-size: 16px;
}

#news-list .news-list-inner .hero-news-list__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (min-width: 961px) {
  #news-list .news-list-inner .hero-news-list__categories {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

#news-list .news-list-inner .hero-news-list__categories .category {
  margin-right: 50px;
  padding: 10px 0px;
}

#news-list .news-list-inner .hero-news-list__categories .category:last-of-type {
  margin-right: 0px;
}

#news-list .news-list-inner .hero-news-list__categories .category__name, #news-list .news-list-inner .hero-news-list__categories .category__count {
  font-family: "Renault Life";
  font-size: 16px;
}

#news-list .news-list-inner .hero-news-list__categories .category__name {
  color: #000000;
}

#news-list .news-list-inner .hero-news-list__categories .category__count {
  margin-left: 5px;
  color: #999999;
}

#news-list .news-list-inner .hero-news-list__categories .category--active {
  border-bottom: 2px solid #ffcc33;
}

#news-list .news-list-inner .news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 50px;
}

#news-list .news-list-inner .news-list .news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#news-list .news-list-inner .news-list .news .news-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 30px 0px;
  border-bottom: 1px solid #eeeeee;
}

#news-list .news-list-inner .news-list .news .news-inner__category {
  font-family: "Read";
  font-size: 14px;
  color: #ffcc33;
}

#news-list .news-list-inner .news-list .news .news-inner__title {
  font-family: "Renault Life";
  font-size: 22px;
  font-weight: 500;
  color: #000000;
}

#news-list .news-list-inner .news-list .news .news-inner__intro {
  font-family: "Read";
  font-weight: 300;
  font-size: 16px;
  color: #666666;
}

#news-list .news-list-inner .news-list .news .news-inner__date {
  font-family: "Read";
  font-size: 14px;
  color: #666666;
}

#news-list .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-bottom: 50px;
}

@media only screen and (min-width: 961px) {
  #news-list .pagination {
    margin-bottom: 0px;
  }
}

#news-list .pagination .pagination-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#news-list .pagination .pagination-inner__item.active, #news-list .pagination .pagination-inner__item.active:hover {
  background-color: #ffcc33;
  color: #ffffff;
}

#news-list .pagination .pagination-inner__item.disabled {
  pointer-events: none;
}

#news-list .pagination .pagination-inner__item.disabled .icon {
  fill: #eeeeee;
}

#news-list .pagination .pagination-inner__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px;
  margin: 0px 4px;
  font-family: "Read";
  font-size: 16px;
  color: #666666;
  border: 1px solid #eeeeee;
  background: #ffffff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background 0.1s ease-in;
  transition: background 0.1s ease-in;
}

@media only screen and (min-width: 961px) {
  #news-list .pagination .pagination-inner__item {
    width: 50px;
  }
}

#news-list .pagination .pagination-inner__item .icon {
  width: 22px;
  height: 22px;
  fill: #666666;
}

#news-list .pagination .pagination-inner__item:hover {
  background: #53565a;
  color: #ffffff;
  -webkit-transition: background 0.1s ease-in;
  transition: background 0.1s ease-in;
}

#news-list .pagination .pagination-inner__item:hover .icon {
  fill: #ffffff;
}

#news-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#news-details .news-details-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 20px;
}

@media only screen and (min-width: 961px) {
  #news-details .news-details-inner {
    padding: 0px;
    max-width: 1170px;
    margin: 20px 0px 40px 0px;
  }
}

#news-details .news-details-inner .news-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px 0px;
}

@media only screen and (min-width: 961px) {
  #news-details .news-details-inner .news-hero {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0px;
  }
}

#news-details .news-details-inner .news-hero .news-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-bottom: 1px solid #eeeeee;
}

@media only screen and (min-width: 961px) {
  #news-details .news-details-inner .news-hero .news-inner {
    margin: 30px 0px;
  }
}

#news-details .news-details-inner .news-hero .news-inner .news-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 30px 0px;
  border-bottom: 1px solid #eeeeee;
}

#news-details .news-details-inner .news-hero .news-inner .news-head__category {
  font-family: "Read";
  font-size: 14px;
  color: #ffcc33;
}

#news-details .news-details-inner .news-hero .news-inner .news-head__title {
  font-family: "Renault Life";
  font-size: 50px;
  margin: 10px 0px 25px 0px;
  font-weight: 500;
  color: #000000;
  letter-spacing: 0;
  line-height: 54px;
}

#news-details .news-details-inner .news-hero .news-inner .news-head__date {
  font-family: "Read";
  font-size: 14px;
  color: #666666;
}

#news-details .news-details-inner .news-hero .news-inner .news-content h2 {
  font-family: "Renault Life";
  font-size: 28px;
  font-weight: 500;
  color: #000000;
  line-height: 36px;
}

#news-details .news-details-inner .news-hero .news-inner .news-content p {
  font-family: "Read";
  font-size: 16px;
  color: #666666;
  line-height: 28px;
}

#news-details .news-details-inner .news-hero .news-inner .news-content p.introduction {
  font-weight: bold;
  margin: 30px 0px;
}

#news-details .news-details-inner .news-hero .news-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  line-height: 0px;
  font-family: "Read";
  font-size: 16px;
  color: #000000;
}

#news-details .news-details-inner .news-hero .news-back a,
#news-details .news-details-inner .news-hero .news-back a:hover,
#news-details .news-details-inner .news-hero .news-back a:focus,
#news-details .news-details-inner .news-hero .news-back a:visited,
#news-details .news-details-inner .news-hero .news-back a:active {
  color: #000000;
  padding-top: 15px;
}

#news-details .news-details-inner .news-hero .news-back .icon {
  width: 30px;
  height: 30px;
}

@media only screen and (min-width: 961px) {
  #news-details .news-details-inner .news-hero .news-back {
    width: 130px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#news-details .news-details-inner .news-files {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#news-details .news-details-inner .news-files a.file .file-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: #faf9f8;
  height: 80px;
  margin: 0px 0px 10px 0px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
}

#news-details .news-details-inner .news-files a.file .file-inner:hover {
  -webkit-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
  background-color: #ffcc33;
}

#news-details .news-details-inner .news-files a.file .file-inner__icon {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px 30px;
}

#news-details .news-details-inner .news-files a.file .file-inner__icon .icon {
  width: 20px;
  height: 20px;
  fill: #000000;
}

#news-details .news-details-inner .news-files a.file .file-inner__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0px;
}

#news-details .news-details-inner .news-files a.file .file-inner__description__name, #news-details .news-details-inner .news-files a.file .file-inner__description__typesize {
  font-family: "Read";
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
}

#news-details .news-details-inner .news-files a.file .file-inner__description__name {
  color: #666666;
}

#news-details .news-details-inner .news-files a.file .file-inner__description__typesize {
  margin-left: 10px;
  color: #999999;
}

#not-found {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100vh - 170px);
}

#not-found .not-found-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
}

@media only screen and (min-width: 961px) {
  #not-found .not-found-inner {
    padding: 0px 250px;
  }
}

#not-found .not-found-inner__title {
  font-family: "Renault Life";
  font-size: 70px;
  font-weight: normal;
  text-align: center;
  color: #000000;
}

#not-found .not-found-inner__description {
  font-family: "Read";
  font-size: 16px;
  color: #666666;
  letter-spacing: 0;
  text-align: center;
  line-height: 28px;
  margin-bottom: 50px;
}

#not-found .not-found-inner__button .button-go-home {
  background: #ffcc33;
  font-size: 14px;
  font-family: "Renault Life";
  font-weight: bold;
  letter-spacing: 0;
  text-align: center;
  vertical-align: center;
  padding: 10px 30px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

#not-found .not-found-inner__button .button-go-home, #not-found .not-found-inner__button .button-go-home:hover, #not-found .not-found-inner__button .button-go-home:focus, #not-found .not-found-inner__button .button-go-home:visited, #not-found .not-found-inner__button .button-go-home:active {
  color: #000000;
}

#not-found .not-found-inner__button .button-go-home:hover {
  background: #ffc20a;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

#not-found .not-found-inner__button .button-go-home:active {
  background: #b38600;
}

/* ==========================================================================
    Print
   ========================================================================== */
@media print {
  /* 
    * Boilerplate print styles
    */
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /* Don't show links for logo, images, or javascript/internal links */
  .logo a:after,
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  img-left .logo,
  .logo img {
    float: none;
    height: 67px;
  }
  .logo a {
    display: block;
  }
  .page {
    margin: 0;
  }
  .layout-2col:after,
  .sidebar,
  .bottom,
  .header:before,
  .slider,
  .nav-tactile,
  .menu,
  .fu,
  .footer {
    display: none !important;
  }
  .layout-2col > .primary {
    float: none;
    padding-right: 0;
    width: 100%;
  }
}

.materialize-red {
  background-color: #e51c23 !important;
}

.materialize-red-text {
  color: #e51c23 !important;
}

.materialize-red.lighten-5 {
  background-color: #fdeaeb !important;
}

.materialize-red-text.text-lighten-5 {
  color: #fdeaeb !important;
}

.materialize-red.lighten-4 {
  background-color: #f8c1c3 !important;
}

.materialize-red-text.text-lighten-4 {
  color: #f8c1c3 !important;
}

.materialize-red.lighten-3 {
  background-color: #f3989b !important;
}

.materialize-red-text.text-lighten-3 {
  color: #f3989b !important;
}

.materialize-red.lighten-2 {
  background-color: #ee6e73 !important;
}

.materialize-red-text.text-lighten-2 {
  color: #ee6e73 !important;
}

.materialize-red.lighten-1 {
  background-color: #ea454b !important;
}

.materialize-red-text.text-lighten-1 {
  color: #ea454b !important;
}

.materialize-red.darken-1 {
  background-color: #d0181e !important;
}

.materialize-red-text.text-darken-1 {
  color: #d0181e !important;
}

.materialize-red.darken-2 {
  background-color: #b9151b !important;
}

.materialize-red-text.text-darken-2 {
  color: #b9151b !important;
}

.materialize-red.darken-3 {
  background-color: #a21318 !important;
}

.materialize-red-text.text-darken-3 {
  color: #a21318 !important;
}

.materialize-red.darken-4 {
  background-color: #8b1014 !important;
}

.materialize-red-text.text-darken-4 {
  color: #8b1014 !important;
}

.red {
  background-color: #F44336 !important;
}

.red-text {
  color: #F44336 !important;
}

.red.lighten-5 {
  background-color: #FFEBEE !important;
}

.red-text.text-lighten-5 {
  color: #FFEBEE !important;
}

.red.lighten-4 {
  background-color: #FFCDD2 !important;
}

.red-text.text-lighten-4 {
  color: #FFCDD2 !important;
}

.red.lighten-3 {
  background-color: #EF9A9A !important;
}

.red-text.text-lighten-3 {
  color: #EF9A9A !important;
}

.red.lighten-2 {
  background-color: #E57373 !important;
}

.red-text.text-lighten-2 {
  color: #E57373 !important;
}

.red.lighten-1 {
  background-color: #EF5350 !important;
}

.red-text.text-lighten-1 {
  color: #EF5350 !important;
}

.red.darken-1 {
  background-color: #E53935 !important;
}

.red-text.text-darken-1 {
  color: #E53935 !important;
}

.red.darken-2 {
  background-color: #D32F2F !important;
}

.red-text.text-darken-2 {
  color: #D32F2F !important;
}

.red.darken-3 {
  background-color: #C62828 !important;
}

.red-text.text-darken-3 {
  color: #C62828 !important;
}

.red.darken-4 {
  background-color: #B71C1C !important;
}

.red-text.text-darken-4 {
  color: #B71C1C !important;
}

.red.accent-1 {
  background-color: #FF8A80 !important;
}

.red-text.text-accent-1 {
  color: #FF8A80 !important;
}

.red.accent-2 {
  background-color: #FF5252 !important;
}

.red-text.text-accent-2 {
  color: #FF5252 !important;
}

.red.accent-3 {
  background-color: #FF1744 !important;
}

.red-text.text-accent-3 {
  color: #FF1744 !important;
}

.red.accent-4 {
  background-color: #D50000 !important;
}

.red-text.text-accent-4 {
  color: #D50000 !important;
}

.pink {
  background-color: #e91e63 !important;
}

.pink-text {
  color: #e91e63 !important;
}

.pink.lighten-5 {
  background-color: #fce4ec !important;
}

.pink-text.text-lighten-5 {
  color: #fce4ec !important;
}

.pink.lighten-4 {
  background-color: #f8bbd0 !important;
}

.pink-text.text-lighten-4 {
  color: #f8bbd0 !important;
}

.pink.lighten-3 {
  background-color: #f48fb1 !important;
}

.pink-text.text-lighten-3 {
  color: #f48fb1 !important;
}

.pink.lighten-2 {
  background-color: #f06292 !important;
}

.pink-text.text-lighten-2 {
  color: #f06292 !important;
}

.pink.lighten-1 {
  background-color: #ec407a !important;
}

.pink-text.text-lighten-1 {
  color: #ec407a !important;
}

.pink.darken-1 {
  background-color: #d81b60 !important;
}

.pink-text.text-darken-1 {
  color: #d81b60 !important;
}

.pink.darken-2 {
  background-color: #c2185b !important;
}

.pink-text.text-darken-2 {
  color: #c2185b !important;
}

.pink.darken-3 {
  background-color: #ad1457 !important;
}

.pink-text.text-darken-3 {
  color: #ad1457 !important;
}

.pink.darken-4 {
  background-color: #880e4f !important;
}

.pink-text.text-darken-4 {
  color: #880e4f !important;
}

.pink.accent-1 {
  background-color: #ff80ab !important;
}

.pink-text.text-accent-1 {
  color: #ff80ab !important;
}

.pink.accent-2 {
  background-color: #ff4081 !important;
}

.pink-text.text-accent-2 {
  color: #ff4081 !important;
}

.pink.accent-3 {
  background-color: #f50057 !important;
}

.pink-text.text-accent-3 {
  color: #f50057 !important;
}

.pink.accent-4 {
  background-color: #c51162 !important;
}

.pink-text.text-accent-4 {
  color: #c51162 !important;
}

.purple {
  background-color: #9c27b0 !important;
}

.purple-text {
  color: #9c27b0 !important;
}

.purple.lighten-5 {
  background-color: #f3e5f5 !important;
}

.purple-text.text-lighten-5 {
  color: #f3e5f5 !important;
}

.purple.lighten-4 {
  background-color: #e1bee7 !important;
}

.purple-text.text-lighten-4 {
  color: #e1bee7 !important;
}

.purple.lighten-3 {
  background-color: #ce93d8 !important;
}

.purple-text.text-lighten-3 {
  color: #ce93d8 !important;
}

.purple.lighten-2 {
  background-color: #ba68c8 !important;
}

.purple-text.text-lighten-2 {
  color: #ba68c8 !important;
}

.purple.lighten-1 {
  background-color: #ab47bc !important;
}

.purple-text.text-lighten-1 {
  color: #ab47bc !important;
}

.purple.darken-1 {
  background-color: #8e24aa !important;
}

.purple-text.text-darken-1 {
  color: #8e24aa !important;
}

.purple.darken-2 {
  background-color: #7b1fa2 !important;
}

.purple-text.text-darken-2 {
  color: #7b1fa2 !important;
}

.purple.darken-3 {
  background-color: #6a1b9a !important;
}

.purple-text.text-darken-3 {
  color: #6a1b9a !important;
}

.purple.darken-4 {
  background-color: #4a148c !important;
}

.purple-text.text-darken-4 {
  color: #4a148c !important;
}

.purple.accent-1 {
  background-color: #ea80fc !important;
}

.purple-text.text-accent-1 {
  color: #ea80fc !important;
}

.purple.accent-2 {
  background-color: #e040fb !important;
}

.purple-text.text-accent-2 {
  color: #e040fb !important;
}

.purple.accent-3 {
  background-color: #d500f9 !important;
}

.purple-text.text-accent-3 {
  color: #d500f9 !important;
}

.purple.accent-4 {
  background-color: #aa00ff !important;
}

.purple-text.text-accent-4 {
  color: #aa00ff !important;
}

.deep-purple {
  background-color: #673ab7 !important;
}

.deep-purple-text {
  color: #673ab7 !important;
}

.deep-purple.lighten-5 {
  background-color: #ede7f6 !important;
}

.deep-purple-text.text-lighten-5 {
  color: #ede7f6 !important;
}

.deep-purple.lighten-4 {
  background-color: #d1c4e9 !important;
}

.deep-purple-text.text-lighten-4 {
  color: #d1c4e9 !important;
}

.deep-purple.lighten-3 {
  background-color: #b39ddb !important;
}

.deep-purple-text.text-lighten-3 {
  color: #b39ddb !important;
}

.deep-purple.lighten-2 {
  background-color: #9575cd !important;
}

.deep-purple-text.text-lighten-2 {
  color: #9575cd !important;
}

.deep-purple.lighten-1 {
  background-color: #7e57c2 !important;
}

.deep-purple-text.text-lighten-1 {
  color: #7e57c2 !important;
}

.deep-purple.darken-1 {
  background-color: #5e35b1 !important;
}

.deep-purple-text.text-darken-1 {
  color: #5e35b1 !important;
}

.deep-purple.darken-2 {
  background-color: #512da8 !important;
}

.deep-purple-text.text-darken-2 {
  color: #512da8 !important;
}

.deep-purple.darken-3 {
  background-color: #4527a0 !important;
}

.deep-purple-text.text-darken-3 {
  color: #4527a0 !important;
}

.deep-purple.darken-4 {
  background-color: #311b92 !important;
}

.deep-purple-text.text-darken-4 {
  color: #311b92 !important;
}

.deep-purple.accent-1 {
  background-color: #b388ff !important;
}

.deep-purple-text.text-accent-1 {
  color: #b388ff !important;
}

.deep-purple.accent-2 {
  background-color: #7c4dff !important;
}

.deep-purple-text.text-accent-2 {
  color: #7c4dff !important;
}

.deep-purple.accent-3 {
  background-color: #651fff !important;
}

.deep-purple-text.text-accent-3 {
  color: #651fff !important;
}

.deep-purple.accent-4 {
  background-color: #6200ea !important;
}

.deep-purple-text.text-accent-4 {
  color: #6200ea !important;
}

.indigo {
  background-color: #3f51b5 !important;
}

.indigo-text {
  color: #3f51b5 !important;
}

.indigo.lighten-5 {
  background-color: #e8eaf6 !important;
}

.indigo-text.text-lighten-5 {
  color: #e8eaf6 !important;
}

.indigo.lighten-4 {
  background-color: #c5cae9 !important;
}

.indigo-text.text-lighten-4 {
  color: #c5cae9 !important;
}

.indigo.lighten-3 {
  background-color: #9fa8da !important;
}

.indigo-text.text-lighten-3 {
  color: #9fa8da !important;
}

.indigo.lighten-2 {
  background-color: #7986cb !important;
}

.indigo-text.text-lighten-2 {
  color: #7986cb !important;
}

.indigo.lighten-1 {
  background-color: #5c6bc0 !important;
}

.indigo-text.text-lighten-1 {
  color: #5c6bc0 !important;
}

.indigo.darken-1 {
  background-color: #3949ab !important;
}

.indigo-text.text-darken-1 {
  color: #3949ab !important;
}

.indigo.darken-2 {
  background-color: #303f9f !important;
}

.indigo-text.text-darken-2 {
  color: #303f9f !important;
}

.indigo.darken-3 {
  background-color: #283593 !important;
}

.indigo-text.text-darken-3 {
  color: #283593 !important;
}

.indigo.darken-4 {
  background-color: #1a237e !important;
}

.indigo-text.text-darken-4 {
  color: #1a237e !important;
}

.indigo.accent-1 {
  background-color: #8c9eff !important;
}

.indigo-text.text-accent-1 {
  color: #8c9eff !important;
}

.indigo.accent-2 {
  background-color: #536dfe !important;
}

.indigo-text.text-accent-2 {
  color: #536dfe !important;
}

.indigo.accent-3 {
  background-color: #3d5afe !important;
}

.indigo-text.text-accent-3 {
  color: #3d5afe !important;
}

.indigo.accent-4 {
  background-color: #304ffe !important;
}

.indigo-text.text-accent-4 {
  color: #304ffe !important;
}

.blue {
  background-color: #2196F3 !important;
}

.blue-text {
  color: #2196F3 !important;
}

.blue.lighten-5 {
  background-color: #E3F2FD !important;
}

.blue-text.text-lighten-5 {
  color: #E3F2FD !important;
}

.blue.lighten-4 {
  background-color: #BBDEFB !important;
}

.blue-text.text-lighten-4 {
  color: #BBDEFB !important;
}

.blue.lighten-3 {
  background-color: #90CAF9 !important;
}

.blue-text.text-lighten-3 {
  color: #90CAF9 !important;
}

.blue.lighten-2 {
  background-color: #64B5F6 !important;
}

.blue-text.text-lighten-2 {
  color: #64B5F6 !important;
}

.blue.lighten-1 {
  background-color: #42A5F5 !important;
}

.blue-text.text-lighten-1 {
  color: #42A5F5 !important;
}

.blue.darken-1 {
  background-color: #1E88E5 !important;
}

.blue-text.text-darken-1 {
  color: #1E88E5 !important;
}

.blue.darken-2 {
  background-color: #1976D2 !important;
}

.blue-text.text-darken-2 {
  color: #1976D2 !important;
}

.blue.darken-3 {
  background-color: #1565C0 !important;
}

.blue-text.text-darken-3 {
  color: #1565C0 !important;
}

.blue.darken-4 {
  background-color: #0D47A1 !important;
}

.blue-text.text-darken-4 {
  color: #0D47A1 !important;
}

.blue.accent-1 {
  background-color: #82B1FF !important;
}

.blue-text.text-accent-1 {
  color: #82B1FF !important;
}

.blue.accent-2 {
  background-color: #448AFF !important;
}

.blue-text.text-accent-2 {
  color: #448AFF !important;
}

.blue.accent-3 {
  background-color: #2979FF !important;
}

.blue-text.text-accent-3 {
  color: #2979FF !important;
}

.blue.accent-4 {
  background-color: #2962FF !important;
}

.blue-text.text-accent-4 {
  color: #2962FF !important;
}

.light-blue {
  background-color: #03a9f4 !important;
}

.light-blue-text {
  color: #03a9f4 !important;
}

.light-blue.lighten-5 {
  background-color: #e1f5fe !important;
}

.light-blue-text.text-lighten-5 {
  color: #e1f5fe !important;
}

.light-blue.lighten-4 {
  background-color: #b3e5fc !important;
}

.light-blue-text.text-lighten-4 {
  color: #b3e5fc !important;
}

.light-blue.lighten-3 {
  background-color: #81d4fa !important;
}

.light-blue-text.text-lighten-3 {
  color: #81d4fa !important;
}

.light-blue.lighten-2 {
  background-color: #4fc3f7 !important;
}

.light-blue-text.text-lighten-2 {
  color: #4fc3f7 !important;
}

.light-blue.lighten-1 {
  background-color: #29b6f6 !important;
}

.light-blue-text.text-lighten-1 {
  color: #29b6f6 !important;
}

.light-blue.darken-1 {
  background-color: #039be5 !important;
}

.light-blue-text.text-darken-1 {
  color: #039be5 !important;
}

.light-blue.darken-2 {
  background-color: #0288d1 !important;
}

.light-blue-text.text-darken-2 {
  color: #0288d1 !important;
}

.light-blue.darken-3 {
  background-color: #0277bd !important;
}

.light-blue-text.text-darken-3 {
  color: #0277bd !important;
}

.light-blue.darken-4 {
  background-color: #01579b !important;
}

.light-blue-text.text-darken-4 {
  color: #01579b !important;
}

.light-blue.accent-1 {
  background-color: #80d8ff !important;
}

.light-blue-text.text-accent-1 {
  color: #80d8ff !important;
}

.light-blue.accent-2 {
  background-color: #40c4ff !important;
}

.light-blue-text.text-accent-2 {
  color: #40c4ff !important;
}

.light-blue.accent-3 {
  background-color: #00b0ff !important;
}

.light-blue-text.text-accent-3 {
  color: #00b0ff !important;
}

.light-blue.accent-4 {
  background-color: #0091ea !important;
}

.light-blue-text.text-accent-4 {
  color: #0091ea !important;
}

.cyan {
  background-color: #00bcd4 !important;
}

.cyan-text {
  color: #00bcd4 !important;
}

.cyan.lighten-5 {
  background-color: #e0f7fa !important;
}

.cyan-text.text-lighten-5 {
  color: #e0f7fa !important;
}

.cyan.lighten-4 {
  background-color: #b2ebf2 !important;
}

.cyan-text.text-lighten-4 {
  color: #b2ebf2 !important;
}

.cyan.lighten-3 {
  background-color: #80deea !important;
}

.cyan-text.text-lighten-3 {
  color: #80deea !important;
}

.cyan.lighten-2 {
  background-color: #4dd0e1 !important;
}

.cyan-text.text-lighten-2 {
  color: #4dd0e1 !important;
}

.cyan.lighten-1 {
  background-color: #26c6da !important;
}

.cyan-text.text-lighten-1 {
  color: #26c6da !important;
}

.cyan.darken-1 {
  background-color: #00acc1 !important;
}

.cyan-text.text-darken-1 {
  color: #00acc1 !important;
}

.cyan.darken-2 {
  background-color: #0097a7 !important;
}

.cyan-text.text-darken-2 {
  color: #0097a7 !important;
}

.cyan.darken-3 {
  background-color: #00838f !important;
}

.cyan-text.text-darken-3 {
  color: #00838f !important;
}

.cyan.darken-4 {
  background-color: #006064 !important;
}

.cyan-text.text-darken-4 {
  color: #006064 !important;
}

.cyan.accent-1 {
  background-color: #84ffff !important;
}

.cyan-text.text-accent-1 {
  color: #84ffff !important;
}

.cyan.accent-2 {
  background-color: #18ffff !important;
}

.cyan-text.text-accent-2 {
  color: #18ffff !important;
}

.cyan.accent-3 {
  background-color: #00e5ff !important;
}

.cyan-text.text-accent-3 {
  color: #00e5ff !important;
}

.cyan.accent-4 {
  background-color: #00b8d4 !important;
}

.cyan-text.text-accent-4 {
  color: #00b8d4 !important;
}

.teal {
  background-color: #009688 !important;
}

.teal-text {
  color: #009688 !important;
}

.teal.lighten-5 {
  background-color: #e0f2f1 !important;
}

.teal-text.text-lighten-5 {
  color: #e0f2f1 !important;
}

.teal.lighten-4 {
  background-color: #b2dfdb !important;
}

.teal-text.text-lighten-4 {
  color: #b2dfdb !important;
}

.teal.lighten-3 {
  background-color: #80cbc4 !important;
}

.teal-text.text-lighten-3 {
  color: #80cbc4 !important;
}

.teal.lighten-2 {
  background-color: #4db6ac !important;
}

.teal-text.text-lighten-2 {
  color: #4db6ac !important;
}

.teal.lighten-1 {
  background-color: #26a69a !important;
}

.teal-text.text-lighten-1 {
  color: #26a69a !important;
}

.teal.darken-1 {
  background-color: #00897b !important;
}

.teal-text.text-darken-1 {
  color: #00897b !important;
}

.teal.darken-2 {
  background-color: #00796b !important;
}

.teal-text.text-darken-2 {
  color: #00796b !important;
}

.teal.darken-3 {
  background-color: #00695c !important;
}

.teal-text.text-darken-3 {
  color: #00695c !important;
}

.teal.darken-4 {
  background-color: #004d40 !important;
}

.teal-text.text-darken-4 {
  color: #004d40 !important;
}

.teal.accent-1 {
  background-color: #a7ffeb !important;
}

.teal-text.text-accent-1 {
  color: #a7ffeb !important;
}

.teal.accent-2 {
  background-color: #64ffda !important;
}

.teal-text.text-accent-2 {
  color: #64ffda !important;
}

.teal.accent-3 {
  background-color: #1de9b6 !important;
}

.teal-text.text-accent-3 {
  color: #1de9b6 !important;
}

.teal.accent-4 {
  background-color: #00bfa5 !important;
}

.teal-text.text-accent-4 {
  color: #00bfa5 !important;
}

.green {
  background-color: #4CAF50 !important;
}

.green-text {
  color: #4CAF50 !important;
}

.green.lighten-5 {
  background-color: #E8F5E9 !important;
}

.green-text.text-lighten-5 {
  color: #E8F5E9 !important;
}

.green.lighten-4 {
  background-color: #C8E6C9 !important;
}

.green-text.text-lighten-4 {
  color: #C8E6C9 !important;
}

.green.lighten-3 {
  background-color: #A5D6A7 !important;
}

.green-text.text-lighten-3 {
  color: #A5D6A7 !important;
}

.green.lighten-2 {
  background-color: #81C784 !important;
}

.green-text.text-lighten-2 {
  color: #81C784 !important;
}

.green.lighten-1 {
  background-color: #66BB6A !important;
}

.green-text.text-lighten-1 {
  color: #66BB6A !important;
}

.green.darken-1 {
  background-color: #43A047 !important;
}

.green-text.text-darken-1 {
  color: #43A047 !important;
}

.green.darken-2 {
  background-color: #388E3C !important;
}

.green-text.text-darken-2 {
  color: #388E3C !important;
}

.green.darken-3 {
  background-color: #2E7D32 !important;
}

.green-text.text-darken-3 {
  color: #2E7D32 !important;
}

.green.darken-4 {
  background-color: #1B5E20 !important;
}

.green-text.text-darken-4 {
  color: #1B5E20 !important;
}

.green.accent-1 {
  background-color: #B9F6CA !important;
}

.green-text.text-accent-1 {
  color: #B9F6CA !important;
}

.green.accent-2 {
  background-color: #69F0AE !important;
}

.green-text.text-accent-2 {
  color: #69F0AE !important;
}

.green.accent-3 {
  background-color: #00E676 !important;
}

.green-text.text-accent-3 {
  color: #00E676 !important;
}

.green.accent-4 {
  background-color: #00C853 !important;
}

.green-text.text-accent-4 {
  color: #00C853 !important;
}

.light-green {
  background-color: #8bc34a !important;
}

.light-green-text {
  color: #8bc34a !important;
}

.light-green.lighten-5 {
  background-color: #f1f8e9 !important;
}

.light-green-text.text-lighten-5 {
  color: #f1f8e9 !important;
}

.light-green.lighten-4 {
  background-color: #dcedc8 !important;
}

.light-green-text.text-lighten-4 {
  color: #dcedc8 !important;
}

.light-green.lighten-3 {
  background-color: #c5e1a5 !important;
}

.light-green-text.text-lighten-3 {
  color: #c5e1a5 !important;
}

.light-green.lighten-2 {
  background-color: #aed581 !important;
}

.light-green-text.text-lighten-2 {
  color: #aed581 !important;
}

.light-green.lighten-1 {
  background-color: #9ccc65 !important;
}

.light-green-text.text-lighten-1 {
  color: #9ccc65 !important;
}

.light-green.darken-1 {
  background-color: #7cb342 !important;
}

.light-green-text.text-darken-1 {
  color: #7cb342 !important;
}

.light-green.darken-2 {
  background-color: #689f38 !important;
}

.light-green-text.text-darken-2 {
  color: #689f38 !important;
}

.light-green.darken-3 {
  background-color: #558b2f !important;
}

.light-green-text.text-darken-3 {
  color: #558b2f !important;
}

.light-green.darken-4 {
  background-color: #33691e !important;
}

.light-green-text.text-darken-4 {
  color: #33691e !important;
}

.light-green.accent-1 {
  background-color: #ccff90 !important;
}

.light-green-text.text-accent-1 {
  color: #ccff90 !important;
}

.light-green.accent-2 {
  background-color: #b2ff59 !important;
}

.light-green-text.text-accent-2 {
  color: #b2ff59 !important;
}

.light-green.accent-3 {
  background-color: #76ff03 !important;
}

.light-green-text.text-accent-3 {
  color: #76ff03 !important;
}

.light-green.accent-4 {
  background-color: #64dd17 !important;
}

.light-green-text.text-accent-4 {
  color: #64dd17 !important;
}

.lime {
  background-color: #cddc39 !important;
}

.lime-text {
  color: #cddc39 !important;
}

.lime.lighten-5 {
  background-color: #f9fbe7 !important;
}

.lime-text.text-lighten-5 {
  color: #f9fbe7 !important;
}

.lime.lighten-4 {
  background-color: #f0f4c3 !important;
}

.lime-text.text-lighten-4 {
  color: #f0f4c3 !important;
}

.lime.lighten-3 {
  background-color: #e6ee9c !important;
}

.lime-text.text-lighten-3 {
  color: #e6ee9c !important;
}

.lime.lighten-2 {
  background-color: #dce775 !important;
}

.lime-text.text-lighten-2 {
  color: #dce775 !important;
}

.lime.lighten-1 {
  background-color: #d4e157 !important;
}

.lime-text.text-lighten-1 {
  color: #d4e157 !important;
}

.lime.darken-1 {
  background-color: #c0ca33 !important;
}

.lime-text.text-darken-1 {
  color: #c0ca33 !important;
}

.lime.darken-2 {
  background-color: #afb42b !important;
}

.lime-text.text-darken-2 {
  color: #afb42b !important;
}

.lime.darken-3 {
  background-color: #9e9d24 !important;
}

.lime-text.text-darken-3 {
  color: #9e9d24 !important;
}

.lime.darken-4 {
  background-color: #827717 !important;
}

.lime-text.text-darken-4 {
  color: #827717 !important;
}

.lime.accent-1 {
  background-color: #f4ff81 !important;
}

.lime-text.text-accent-1 {
  color: #f4ff81 !important;
}

.lime.accent-2 {
  background-color: #eeff41 !important;
}

.lime-text.text-accent-2 {
  color: #eeff41 !important;
}

.lime.accent-3 {
  background-color: #c6ff00 !important;
}

.lime-text.text-accent-3 {
  color: #c6ff00 !important;
}

.lime.accent-4 {
  background-color: #aeea00 !important;
}

.lime-text.text-accent-4 {
  color: #aeea00 !important;
}

.yellow {
  background-color: #ffeb3b !important;
}

.yellow-text {
  color: #ffeb3b !important;
}

.yellow.lighten-5 {
  background-color: #fffde7 !important;
}

.yellow-text.text-lighten-5 {
  color: #fffde7 !important;
}

.yellow.lighten-4 {
  background-color: #fff9c4 !important;
}

.yellow-text.text-lighten-4 {
  color: #fff9c4 !important;
}

.yellow.lighten-3 {
  background-color: #fff59d !important;
}

.yellow-text.text-lighten-3 {
  color: #fff59d !important;
}

.yellow.lighten-2 {
  background-color: #fff176 !important;
}

.yellow-text.text-lighten-2 {
  color: #fff176 !important;
}

.yellow.lighten-1 {
  background-color: #ffee58 !important;
}

.yellow-text.text-lighten-1 {
  color: #ffee58 !important;
}

.yellow.darken-1 {
  background-color: #fdd835 !important;
}

.yellow-text.text-darken-1 {
  color: #fdd835 !important;
}

.yellow.darken-2 {
  background-color: #fbc02d !important;
}

.yellow-text.text-darken-2 {
  color: #fbc02d !important;
}

.yellow.darken-3 {
  background-color: #f9a825 !important;
}

.yellow-text.text-darken-3 {
  color: #f9a825 !important;
}

.yellow.darken-4 {
  background-color: #f57f17 !important;
}

.yellow-text.text-darken-4 {
  color: #f57f17 !important;
}

.yellow.accent-1 {
  background-color: #ffff8d !important;
}

.yellow-text.text-accent-1 {
  color: #ffff8d !important;
}

.yellow.accent-2 {
  background-color: #ffff00 !important;
}

.yellow-text.text-accent-2 {
  color: #ffff00 !important;
}

.yellow.accent-3 {
  background-color: #ffea00 !important;
}

.yellow-text.text-accent-3 {
  color: #ffea00 !important;
}

.yellow.accent-4 {
  background-color: #ffd600 !important;
}

.yellow-text.text-accent-4 {
  color: #ffd600 !important;
}

.amber {
  background-color: #ffc107 !important;
}

.amber-text {
  color: #ffc107 !important;
}

.amber.lighten-5 {
  background-color: #fff8e1 !important;
}

.amber-text.text-lighten-5 {
  color: #fff8e1 !important;
}

.amber.lighten-4 {
  background-color: #ffecb3 !important;
}

.amber-text.text-lighten-4 {
  color: #ffecb3 !important;
}

.amber.lighten-3 {
  background-color: #ffe082 !important;
}

.amber-text.text-lighten-3 {
  color: #ffe082 !important;
}

.amber.lighten-2 {
  background-color: #ffd54f !important;
}

.amber-text.text-lighten-2 {
  color: #ffd54f !important;
}

.amber.lighten-1 {
  background-color: #ffca28 !important;
}

.amber-text.text-lighten-1 {
  color: #ffca28 !important;
}

.amber.darken-1 {
  background-color: #ffb300 !important;
}

.amber-text.text-darken-1 {
  color: #ffb300 !important;
}

.amber.darken-2 {
  background-color: #ffa000 !important;
}

.amber-text.text-darken-2 {
  color: #ffa000 !important;
}

.amber.darken-3 {
  background-color: #ff8f00 !important;
}

.amber-text.text-darken-3 {
  color: #ff8f00 !important;
}

.amber.darken-4 {
  background-color: #ff6f00 !important;
}

.amber-text.text-darken-4 {
  color: #ff6f00 !important;
}

.amber.accent-1 {
  background-color: #ffe57f !important;
}

.amber-text.text-accent-1 {
  color: #ffe57f !important;
}

.amber.accent-2 {
  background-color: #ffd740 !important;
}

.amber-text.text-accent-2 {
  color: #ffd740 !important;
}

.amber.accent-3 {
  background-color: #ffc400 !important;
}

.amber-text.text-accent-3 {
  color: #ffc400 !important;
}

.amber.accent-4 {
  background-color: #ffab00 !important;
}

.amber-text.text-accent-4 {
  color: #ffab00 !important;
}

.orange {
  background-color: #ff9800 !important;
}

.orange-text {
  color: #ff9800 !important;
}

.orange.lighten-5 {
  background-color: #fff3e0 !important;
}

.orange-text.text-lighten-5 {
  color: #fff3e0 !important;
}

.orange.lighten-4 {
  background-color: #ffe0b2 !important;
}

.orange-text.text-lighten-4 {
  color: #ffe0b2 !important;
}

.orange.lighten-3 {
  background-color: #ffcc80 !important;
}

.orange-text.text-lighten-3 {
  color: #ffcc80 !important;
}

.orange.lighten-2 {
  background-color: #ffb74d !important;
}

.orange-text.text-lighten-2 {
  color: #ffb74d !important;
}

.orange.lighten-1 {
  background-color: #ffa726 !important;
}

.orange-text.text-lighten-1 {
  color: #ffa726 !important;
}

.orange.darken-1 {
  background-color: #fb8c00 !important;
}

.orange-text.text-darken-1 {
  color: #fb8c00 !important;
}

.orange.darken-2 {
  background-color: #f57c00 !important;
}

.orange-text.text-darken-2 {
  color: #f57c00 !important;
}

.orange.darken-3 {
  background-color: #ef6c00 !important;
}

.orange-text.text-darken-3 {
  color: #ef6c00 !important;
}

.orange.darken-4 {
  background-color: #e65100 !important;
}

.orange-text.text-darken-4 {
  color: #e65100 !important;
}

.orange.accent-1 {
  background-color: #ffd180 !important;
}

.orange-text.text-accent-1 {
  color: #ffd180 !important;
}

.orange.accent-2 {
  background-color: #ffab40 !important;
}

.orange-text.text-accent-2 {
  color: #ffab40 !important;
}

.orange.accent-3 {
  background-color: #ff9100 !important;
}

.orange-text.text-accent-3 {
  color: #ff9100 !important;
}

.orange.accent-4 {
  background-color: #ff6d00 !important;
}

.orange-text.text-accent-4 {
  color: #ff6d00 !important;
}

.deep-orange {
  background-color: #ff5722 !important;
}

.deep-orange-text {
  color: #ff5722 !important;
}

.deep-orange.lighten-5 {
  background-color: #fbe9e7 !important;
}

.deep-orange-text.text-lighten-5 {
  color: #fbe9e7 !important;
}

.deep-orange.lighten-4 {
  background-color: #ffccbc !important;
}

.deep-orange-text.text-lighten-4 {
  color: #ffccbc !important;
}

.deep-orange.lighten-3 {
  background-color: #ffab91 !important;
}

.deep-orange-text.text-lighten-3 {
  color: #ffab91 !important;
}

.deep-orange.lighten-2 {
  background-color: #ff8a65 !important;
}

.deep-orange-text.text-lighten-2 {
  color: #ff8a65 !important;
}

.deep-orange.lighten-1 {
  background-color: #ff7043 !important;
}

.deep-orange-text.text-lighten-1 {
  color: #ff7043 !important;
}

.deep-orange.darken-1 {
  background-color: #f4511e !important;
}

.deep-orange-text.text-darken-1 {
  color: #f4511e !important;
}

.deep-orange.darken-2 {
  background-color: #e64a19 !important;
}

.deep-orange-text.text-darken-2 {
  color: #e64a19 !important;
}

.deep-orange.darken-3 {
  background-color: #d84315 !important;
}

.deep-orange-text.text-darken-3 {
  color: #d84315 !important;
}

.deep-orange.darken-4 {
  background-color: #bf360c !important;
}

.deep-orange-text.text-darken-4 {
  color: #bf360c !important;
}

.deep-orange.accent-1 {
  background-color: #ff9e80 !important;
}

.deep-orange-text.text-accent-1 {
  color: #ff9e80 !important;
}

.deep-orange.accent-2 {
  background-color: #ff6e40 !important;
}

.deep-orange-text.text-accent-2 {
  color: #ff6e40 !important;
}

.deep-orange.accent-3 {
  background-color: #ff3d00 !important;
}

.deep-orange-text.text-accent-3 {
  color: #ff3d00 !important;
}

.deep-orange.accent-4 {
  background-color: #dd2c00 !important;
}

.deep-orange-text.text-accent-4 {
  color: #dd2c00 !important;
}

.brown {
  background-color: #795548 !important;
}

.brown-text {
  color: #795548 !important;
}

.brown.lighten-5 {
  background-color: #efebe9 !important;
}

.brown-text.text-lighten-5 {
  color: #efebe9 !important;
}

.brown.lighten-4 {
  background-color: #d7ccc8 !important;
}

.brown-text.text-lighten-4 {
  color: #d7ccc8 !important;
}

.brown.lighten-3 {
  background-color: #bcaaa4 !important;
}

.brown-text.text-lighten-3 {
  color: #bcaaa4 !important;
}

.brown.lighten-2 {
  background-color: #a1887f !important;
}

.brown-text.text-lighten-2 {
  color: #a1887f !important;
}

.brown.lighten-1 {
  background-color: #8d6e63 !important;
}

.brown-text.text-lighten-1 {
  color: #8d6e63 !important;
}

.brown.darken-1 {
  background-color: #6d4c41 !important;
}

.brown-text.text-darken-1 {
  color: #6d4c41 !important;
}

.brown.darken-2 {
  background-color: #5d4037 !important;
}

.brown-text.text-darken-2 {
  color: #5d4037 !important;
}

.brown.darken-3 {
  background-color: #4e342e !important;
}

.brown-text.text-darken-3 {
  color: #4e342e !important;
}

.brown.darken-4 {
  background-color: #3e2723 !important;
}

.brown-text.text-darken-4 {
  color: #3e2723 !important;
}

.blue-grey {
  background-color: #607d8b !important;
}

.blue-grey-text {
  color: #607d8b !important;
}

.blue-grey.lighten-5 {
  background-color: #eceff1 !important;
}

.blue-grey-text.text-lighten-5 {
  color: #eceff1 !important;
}

.blue-grey.lighten-4 {
  background-color: #cfd8dc !important;
}

.blue-grey-text.text-lighten-4 {
  color: #cfd8dc !important;
}

.blue-grey.lighten-3 {
  background-color: #b0bec5 !important;
}

.blue-grey-text.text-lighten-3 {
  color: #b0bec5 !important;
}

.blue-grey.lighten-2 {
  background-color: #90a4ae !important;
}

.blue-grey-text.text-lighten-2 {
  color: #90a4ae !important;
}

.blue-grey.lighten-1 {
  background-color: #78909c !important;
}

.blue-grey-text.text-lighten-1 {
  color: #78909c !important;
}

.blue-grey.darken-1 {
  background-color: #546e7a !important;
}

.blue-grey-text.text-darken-1 {
  color: #546e7a !important;
}

.blue-grey.darken-2 {
  background-color: #455a64 !important;
}

.blue-grey-text.text-darken-2 {
  color: #455a64 !important;
}

.blue-grey.darken-3 {
  background-color: #37474f !important;
}

.blue-grey-text.text-darken-3 {
  color: #37474f !important;
}

.blue-grey.darken-4 {
  background-color: #263238 !important;
}

.blue-grey-text.text-darken-4 {
  color: #263238 !important;
}

.grey {
  background-color: #9e9e9e !important;
}

.grey-text {
  color: #9e9e9e !important;
}

.grey.lighten-5 {
  background-color: #fafafa !important;
}

.grey-text.text-lighten-5 {
  color: #fafafa !important;
}

.grey.lighten-4 {
  background-color: #f5f5f5 !important;
}

.grey-text.text-lighten-4 {
  color: #f5f5f5 !important;
}

.grey.lighten-3 {
  background-color: #eeeeee !important;
}

.grey-text.text-lighten-3 {
  color: #eeeeee !important;
}

.grey.lighten-2 {
  background-color: #e0e0e0 !important;
}

.grey-text.text-lighten-2 {
  color: #e0e0e0 !important;
}

.grey.lighten-1 {
  background-color: #bdbdbd !important;
}

.grey-text.text-lighten-1 {
  color: #bdbdbd !important;
}

.grey.darken-1 {
  background-color: #757575 !important;
}

.grey-text.text-darken-1 {
  color: #757575 !important;
}

.grey.darken-2 {
  background-color: #616161 !important;
}

.grey-text.text-darken-2 {
  color: #616161 !important;
}

.grey.darken-3 {
  background-color: #424242 !important;
}

.grey-text.text-darken-3 {
  color: #424242 !important;
}

.grey.darken-4 {
  background-color: #212121 !important;
}

.grey-text.text-darken-4 {
  color: #212121 !important;
}

.black {
  background-color: #000000 !important;
}

.black-text {
  color: #000000 !important;
}

.white {
  background-color: #FFFFFF !important;
}

.white-text {
  color: #FFFFFF !important;
}

.transparent {
  background-color: transparent !important;
}

.transparent-text {
  color: transparent !important;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

button,
input,
optgroup,
select,
textarea {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

ul:not(.browser-default) {
  padding-left: 0;
  list-style-type: none;
}

ul:not(.browser-default) > li {
  list-style-type: none;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.valign-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.clearfix {
  clear: both;
}

.z-depth-0 {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

/* 2dp elevation modified*/
.z-depth-1 {
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.z-depth-1-half {
  -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
}

/* 6dp elevation modified*/
.z-depth-2 {
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}

/* 12dp elevation modified*/
.z-depth-3 {
  -webkit-box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 17px 2px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}

/* 16dp elevation */
.z-depth-4 {
  -webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
          box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
}

/* 24dp elevation */
.z-depth-5 {
  -webkit-box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
          box-shadow: 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
}

.hoverable {
  -webkit-transition: -webkit-box-shadow .25s;
  transition: -webkit-box-shadow .25s;
  transition: box-shadow .25s;
  transition: box-shadow .25s, -webkit-box-shadow .25s;
}

.hoverable:hover {
  -webkit-box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.divider {
  height: 1px;
  overflow: hidden;
  background-color: #e0e0e0;
}

blockquote {
  margin: 20px 0;
  padding-left: 1.5rem;
  border-left: 5px solid #ee6e73;
}

i {
  line-height: inherit;
}

i.left {
  float: left;
  margin-right: 15px;
}

i.right {
  float: right;
  margin-left: 15px;
}

i.tiny {
  font-size: 1rem;
}

i.small {
  font-size: 2rem;
}

i.medium {
  font-size: 4rem;
}

i.large {
  font-size: 6rem;
}

img.responsive-img,
video.responsive-video {
  max-width: 100%;
  height: auto;
}

.pagination li {
  display: inline-block;
  border-radius: 2px;
  text-align: center;
  vertical-align: top;
  height: 30px;
}

.pagination li a {
  color: #444;
  display: inline-block;
  font-size: 1.2rem;
  padding: 0 10px;
  line-height: 30px;
}

.pagination li.active a {
  color: #fff;
}

.pagination li.active {
  background-color: #ee6e73;
}

.pagination li.disabled a {
  cursor: default;
  color: #999;
}

.pagination li i {
  font-size: 2rem;
}

.pagination li.pages ul li {
  display: inline-block;
  float: none;
}

@media only screen and (max-width: 992px) {
  .pagination {
    width: 100%;
  }
  .pagination li.prev,
  .pagination li.next {
    width: 10%;
  }
  .pagination li.pages {
    width: 80%;
    overflow: hidden;
    white-space: nowrap;
  }
}

.breadcrumb {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb i,
.breadcrumb [class^="mdi-"], .breadcrumb [class*="mdi-"],
.breadcrumb i.material-icons {
  display: inline-block;
  float: left;
  font-size: 24px;
}

.breadcrumb:before {
  content: '\E5CC';
  color: rgba(255, 255, 255, 0.7);
  vertical-align: top;
  display: inline-block;
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 25px;
  margin: 0 10px 0 8px;
  -webkit-font-smoothing: antialiased;
}

.breadcrumb:first-child:before {
  display: none;
}

.breadcrumb:last-child {
  color: #fff;
}

.parallax-container {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.parallax-container .parallax {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.parallax-container .parallax img {
  opacity: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.pin-top, .pin-bottom {
  position: relative;
}

.pinned {
  position: fixed !important;
}

/*********************
  Transition Classes
**********************/
ul.staggered-list li {
  opacity: 0;
}

.fade-in {
  opacity: 0;
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
}

/*********************
  Media Query Classes
**********************/
@media only screen and (max-width: 600px) {
  .hide-on-small-only, .hide-on-small-and-down {
    display: none !important;
  }
}

@media only screen and (max-width: 992px) {
  .hide-on-med-and-down {
    display: none !important;
  }
}

@media only screen and (min-width: 601px) {
  .hide-on-med-and-up {
    display: none !important;
  }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
  .hide-on-med-only {
    display: none !important;
  }
}

@media only screen and (min-width: 993px) {
  .hide-on-large-only {
    display: none !important;
  }
}

@media only screen and (min-width: 1201px) {
  .hide-on-extra-large-only {
    display: none !important;
  }
}

@media only screen and (min-width: 1201px) {
  .show-on-extra-large {
    display: block !important;
  }
}

@media only screen and (min-width: 993px) {
  .show-on-large {
    display: block !important;
  }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
  .show-on-medium {
    display: block !important;
  }
}

@media only screen and (max-width: 600px) {
  .show-on-small {
    display: block !important;
  }
}

@media only screen and (min-width: 601px) {
  .show-on-medium-and-up {
    display: block !important;
  }
}

@media only screen and (max-width: 992px) {
  .show-on-medium-and-down {
    display: block !important;
  }
}

@media only screen and (max-width: 600px) {
  .center-on-small-only {
    text-align: center;
  }
}

.page-footer {
  padding-top: 20px;
  color: #fff;
  background-color: #ee6e73;
}

.page-footer .footer-copyright {
  overflow: hidden;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0px;
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(51, 51, 51, 0.08);
}

table, th, td {
  border: none;
}

table {
  width: 100%;
  display: table;
  border-collapse: collapse;
  border-spacing: 0;
}

table.striped tr {
  border-bottom: none;
}

table.striped > tbody > tr:nth-child(odd) {
  background-color: rgba(242, 242, 242, 0.5);
}

table.striped > tbody > tr > td {
  border-radius: 0;
}

table.highlight > tbody > tr {
  -webkit-transition: background-color .25s ease;
  transition: background-color .25s ease;
}

table.highlight > tbody > tr:hover {
  background-color: rgba(242, 242, 242, 0.5);
}

table.centered thead tr th, table.centered tbody tr td {
  text-align: center;
}

tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

td, th {
  padding: 15px 5px;
  display: table-cell;
  text-align: left;
  vertical-align: middle;
  border-radius: 2px;
}

@media only screen and (max-width: 992px) {
  table.responsive-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    display: block;
    position: relative;
    /* sort out borders */
  }
  table.responsive-table td:empty:before {
    content: '\A0';
  }
  table.responsive-table th,
  table.responsive-table td {
    margin: 0;
    vertical-align: top;
  }
  table.responsive-table th {
    text-align: left;
  }
  table.responsive-table thead {
    display: block;
    float: left;
  }
  table.responsive-table thead tr {
    display: block;
    padding: 0 10px 0 0;
  }
  table.responsive-table thead tr th::before {
    content: "\A0";
  }
  table.responsive-table tbody {
    display: block;
    width: auto;
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
  }
  table.responsive-table tbody tr {
    display: inline-block;
    vertical-align: top;
  }
  table.responsive-table th {
    display: block;
    text-align: right;
  }
  table.responsive-table td {
    display: block;
    min-height: 1.25em;
    text-align: left;
  }
  table.responsive-table tr {
    border-bottom: none;
    padding: 0 10px;
  }
  table.responsive-table thead {
    border: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.12);
  }
}

.collection {
  margin: 0.5rem 0 1rem 0;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.collection .collection-item {
  background-color: #fff;
  line-height: 1.5rem;
  padding: 10px 20px;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
}

.collection .collection-item.avatar {
  min-height: 84px;
  padding-left: 72px;
  position: relative;
}

.collection .collection-item.avatar:not(.circle-clipper) > .circle,
.collection .collection-item.avatar :not(.circle-clipper) > .circle {
  position: absolute;
  width: 42px;
  height: 42px;
  overflow: hidden;
  left: 15px;
  display: inline-block;
  vertical-align: middle;
}

.collection .collection-item.avatar i.circle {
  font-size: 18px;
  line-height: 42px;
  color: #fff;
  background-color: #999;
  text-align: center;
}

.collection .collection-item.avatar .title {
  font-size: 16px;
}

.collection .collection-item.avatar p {
  margin: 0;
}

.collection .collection-item.avatar .secondary-content {
  position: absolute;
  top: 16px;
  right: 16px;
}

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

.collection .collection-item.active {
  background-color: #26a69a;
  color: #eafaf9;
}

.collection .collection-item.active .secondary-content {
  color: #fff;
}

.collection a.collection-item {
  display: block;
  -webkit-transition: .25s;
  transition: .25s;
  color: #26a69a;
}

.collection a.collection-item:not(.active):hover {
  background-color: #ddd;
}

.collection.with-header .collection-header {
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 20px;
}

.collection.with-header .collection-item {
  padding-left: 30px;
}

.collection.with-header .collection-item.avatar {
  padding-left: 72px;
}

.secondary-content {
  float: right;
  color: #26a69a;
}

.collapsible .collection {
  margin: 0;
  border: none;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.progress {
  position: relative;
  height: 4px;
  display: block;
  width: 100%;
  background-color: #acece6;
  border-radius: 2px;
  margin: 0.5rem 0 1rem 0;
  overflow: hidden;
}

.progress .determinate {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #26a69a;
  -webkit-transition: width .3s linear;
  transition: width .3s linear;
}

.progress .indeterminate {
  background-color: #26a69a;
}

.progress .indeterminate:before {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
          animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

.progress .indeterminate:after {
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
          animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -webkit-animation-delay: 1.15s;
          animation-delay: 1.15s;
}

@-webkit-keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}

@keyframes indeterminate {
  0% {
    left: -35%;
    right: 100%;
  }
  60% {
    left: 100%;
    right: -90%;
  }
  100% {
    left: 100%;
    right: -90%;
  }
}

@-webkit-keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}

@keyframes indeterminate-short {
  0% {
    left: -200%;
    right: 100%;
  }
  60% {
    left: 107%;
    right: -8%;
  }
  100% {
    left: 107%;
    right: -8%;
  }
}

/*******************
  Utility Classes
*******************/
.hide {
  display: none !important;
}

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

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

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

.left {
  float: left !important;
}

.right {
  float: right !important;
}

.no-select, input[type=range],
input[type=range] + .thumb {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.circle {
  border-radius: 50%;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.truncate {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.no-padding {
  padding: 0 !important;
}

select:focus {
  outline: 1px solid #c9f3ef;
}

button:focus {
  outline: none;
  background-color: #2ab7a9;
}

label {
  font-size: 0.8rem;
  color: #999999;
}

/* Text Inputs + Textarea
   ========================================================================== */
/* Style Placeholders */
::-webkit-input-placeholder {
  color: #cccccc;
}
::-ms-input-placeholder {
  color: #cccccc;
}
::placeholder {
  color: #cccccc;
}

/* Text inputs */
input:not([type]),
input[type="text"]:not(.browser-default),
input[type="password"]:not(.browser-default),
input[type="email"]:not(.browser-default),
input[type="url"]:not(.browser-default),
input[type="time"]:not(.browser-default),
input[type="date"]:not(.browser-default),
input[type="datetime"]:not(.browser-default),
input[type="datetime-local"]:not(.browser-default),
input[type="tel"]:not(.browser-default),
input[type="number"]:not(.browser-default),
input[type="search"]:not(.browser-default),
textarea.materialize-textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #999999;
  border-radius: 0;
  outline: none;
  height: 3rem;
  width: 100%;
  font-size: 16px;
  font-family: "Read";
  font-weight: 400;
  margin: 0 0 8px 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-transition: border 0.3s, -webkit-box-shadow 0.3s;
  transition: border 0.3s, -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s, border 0.3s;
  transition: box-shadow 0.3s, border 0.3s, -webkit-box-shadow 0.3s;
}

input:not([type]):disabled, input:not([type])[readonly="readonly"],
input[type="text"]:not(.browser-default):disabled,
input[type="text"]:not(.browser-default)[readonly="readonly"],
input[type="password"]:not(.browser-default):disabled,
input[type="password"]:not(.browser-default)[readonly="readonly"],
input[type="email"]:not(.browser-default):disabled,
input[type="email"]:not(.browser-default)[readonly="readonly"],
input[type="url"]:not(.browser-default):disabled,
input[type="url"]:not(.browser-default)[readonly="readonly"],
input[type="time"]:not(.browser-default):disabled,
input[type="time"]:not(.browser-default)[readonly="readonly"],
input[type="date"]:not(.browser-default):disabled,
input[type="date"]:not(.browser-default)[readonly="readonly"],
input[type="datetime"]:not(.browser-default):disabled,
input[type="datetime"]:not(.browser-default)[readonly="readonly"],
input[type="datetime-local"]:not(.browser-default):disabled,
input[type="datetime-local"]:not(.browser-default)[readonly="readonly"],
input[type="tel"]:not(.browser-default):disabled,
input[type="tel"]:not(.browser-default)[readonly="readonly"],
input[type="number"]:not(.browser-default):disabled,
input[type="number"]:not(.browser-default)[readonly="readonly"],
input[type="search"]:not(.browser-default):disabled,
input[type="search"]:not(.browser-default)[readonly="readonly"],
textarea.materialize-textarea:disabled,
textarea.materialize-textarea[readonly="readonly"] {
  color: rgba(0, 0, 0, 0.42);
  border-bottom: 1px dotted rgba(0, 0, 0, 0.42);
}

input:not([type]):disabled + label,
input:not([type])[readonly="readonly"] + label,
input[type="text"]:not(.browser-default):disabled + label,
input[type="text"]:not(.browser-default)[readonly="readonly"] + label,
input[type="password"]:not(.browser-default):disabled + label,
input[type="password"]:not(.browser-default)[readonly="readonly"] + label,
input[type="email"]:not(.browser-default):disabled + label,
input[type="email"]:not(.browser-default)[readonly="readonly"] + label,
input[type="url"]:not(.browser-default):disabled + label,
input[type="url"]:not(.browser-default)[readonly="readonly"] + label,
input[type="time"]:not(.browser-default):disabled + label,
input[type="time"]:not(.browser-default)[readonly="readonly"] + label,
input[type="date"]:not(.browser-default):disabled + label,
input[type="date"]:not(.browser-default)[readonly="readonly"] + label,
input[type="datetime"]:not(.browser-default):disabled + label,
input[type="datetime"]:not(.browser-default)[readonly="readonly"] + label,
input[type="datetime-local"]:not(.browser-default):disabled + label,
input[type="datetime-local"]:not(.browser-default)[readonly="readonly"] + label,
input[type="tel"]:not(.browser-default):disabled + label,
input[type="tel"]:not(.browser-default)[readonly="readonly"] + label,
input[type="number"]:not(.browser-default):disabled + label,
input[type="number"]:not(.browser-default)[readonly="readonly"] + label,
input[type="search"]:not(.browser-default):disabled + label,
input[type="search"]:not(.browser-default)[readonly="readonly"] + label,
textarea.materialize-textarea:disabled + label,
textarea.materialize-textarea[readonly="readonly"] + label {
  color: rgba(0, 0, 0, 0.42);
}

input:not([type]):focus:not([readonly]),
input[type="text"]:not(.browser-default):focus:not([readonly]),
input[type="password"]:not(.browser-default):focus:not([readonly]),
input[type="email"]:not(.browser-default):focus:not([readonly]),
input[type="url"]:not(.browser-default):focus:not([readonly]),
input[type="time"]:not(.browser-default):focus:not([readonly]),
input[type="date"]:not(.browser-default):focus:not([readonly]),
input[type="datetime"]:not(.browser-default):focus:not([readonly]),
input[type="datetime-local"]:not(.browser-default):focus:not([readonly]),
input[type="tel"]:not(.browser-default):focus:not([readonly]),
input[type="number"]:not(.browser-default):focus:not([readonly]),
input[type="search"]:not(.browser-default):focus:not([readonly]),
textarea.materialize-textarea:focus:not([readonly]) {
  border-bottom: 1px solid #000000;
  -webkit-box-shadow: 0 1px 0 0 #000000;
          box-shadow: 0 1px 0 0 #000000;
}

input:not([type]):focus:not([readonly]) + label,
input[type="text"]:not(.browser-default):focus:not([readonly]) + label,
input[type="password"]:not(.browser-default):focus:not([readonly]) + label,
input[type="email"]:not(.browser-default):focus:not([readonly]) + label,
input[type="url"]:not(.browser-default):focus:not([readonly]) + label,
input[type="time"]:not(.browser-default):focus:not([readonly]) + label,
input[type="date"]:not(.browser-default):focus:not([readonly]) + label,
input[type="datetime"]:not(.browser-default):focus:not([readonly]) + label,
input[type="datetime-local"]:not(.browser-default):focus:not([readonly]) + label,
input[type="tel"]:not(.browser-default):focus:not([readonly]) + label,
input[type="number"]:not(.browser-default):focus:not([readonly]) + label,
input[type="search"]:not(.browser-default):focus:not([readonly]) + label,
textarea.materialize-textarea:focus:not([readonly]) + label {
  color: #000000;
}

input:not([type]):focus.valid ~ label,
input[type="text"]:not(.browser-default):focus.valid ~ label,
input[type="password"]:not(.browser-default):focus.valid ~ label,
input[type="email"]:not(.browser-default):focus.valid ~ label,
input[type="url"]:not(.browser-default):focus.valid ~ label,
input[type="time"]:not(.browser-default):focus.valid ~ label,
input[type="date"]:not(.browser-default):focus.valid ~ label,
input[type="datetime"]:not(.browser-default):focus.valid ~ label,
input[type="datetime-local"]:not(.browser-default):focus.valid ~ label,
input[type="tel"]:not(.browser-default):focus.valid ~ label,
input[type="number"]:not(.browser-default):focus.valid ~ label,
input[type="search"]:not(.browser-default):focus.valid ~ label,
textarea.materialize-textarea:focus.valid ~ label {
  color: #4CAF50;
}

input:not([type]):focus.invalid ~ label,
input[type="text"]:not(.browser-default):focus.invalid ~ label,
input[type="password"]:not(.browser-default):focus.invalid ~ label,
input[type="email"]:not(.browser-default):focus.invalid ~ label,
input[type="url"]:not(.browser-default):focus.invalid ~ label,
input[type="time"]:not(.browser-default):focus.invalid ~ label,
input[type="date"]:not(.browser-default):focus.invalid ~ label,
input[type="datetime"]:not(.browser-default):focus.invalid ~ label,
input[type="datetime-local"]:not(.browser-default):focus.invalid ~ label,
input[type="tel"]:not(.browser-default):focus.invalid ~ label,
input[type="number"]:not(.browser-default):focus.invalid ~ label,
input[type="search"]:not(.browser-default):focus.invalid ~ label,
textarea.materialize-textarea:focus.invalid ~ label {
  color: #F44336;
}

input:not([type]).validate + label,
input[type="text"]:not(.browser-default).validate + label,
input[type="password"]:not(.browser-default).validate + label,
input[type="email"]:not(.browser-default).validate + label,
input[type="url"]:not(.browser-default).validate + label,
input[type="time"]:not(.browser-default).validate + label,
input[type="date"]:not(.browser-default).validate + label,
input[type="datetime"]:not(.browser-default).validate + label,
input[type="datetime-local"]:not(.browser-default).validate + label,
input[type="tel"]:not(.browser-default).validate + label,
input[type="number"]:not(.browser-default).validate + label,
input[type="search"]:not(.browser-default).validate + label,
textarea.materialize-textarea.validate + label {
  width: 100%;
}

/* Validation Sass Placeholders */
input.valid:not([type]), input.valid:not([type]):focus,
input.valid[type="text"]:not(.browser-default),
input.valid[type="text"]:not(.browser-default):focus,
input.valid[type="password"]:not(.browser-default),
input.valid[type="password"]:not(.browser-default):focus,
input.valid[type="email"]:not(.browser-default),
input.valid[type="email"]:not(.browser-default):focus,
input.valid[type="url"]:not(.browser-default),
input.valid[type="url"]:not(.browser-default):focus,
input.valid[type="time"]:not(.browser-default),
input.valid[type="time"]:not(.browser-default):focus,
input.valid[type="date"]:not(.browser-default),
input.valid[type="date"]:not(.browser-default):focus,
input.valid[type="datetime"]:not(.browser-default),
input.valid[type="datetime"]:not(.browser-default):focus,
input.valid[type="datetime-local"]:not(.browser-default),
input.valid[type="datetime-local"]:not(.browser-default):focus,
input.valid[type="tel"]:not(.browser-default),
input.valid[type="tel"]:not(.browser-default):focus,
input.valid[type="number"]:not(.browser-default),
input.valid[type="number"]:not(.browser-default):focus,
input.valid[type="search"]:not(.browser-default),
input.valid[type="search"]:not(.browser-default):focus,
textarea.materialize-textarea.valid,
textarea.materialize-textarea.valid:focus, .select-wrapper.valid > input.select-dropdown {
  border-bottom: 1px solid #4CAF50;
  -webkit-box-shadow: 0 1px 0 0 #4CAF50;
          box-shadow: 0 1px 0 0 #4CAF50;
}

input.invalid:not([type]), input.invalid:not([type]):focus,
input.invalid[type="text"]:not(.browser-default),
input.invalid[type="text"]:not(.browser-default):focus,
input.invalid[type="password"]:not(.browser-default),
input.invalid[type="password"]:not(.browser-default):focus,
input.invalid[type="email"]:not(.browser-default),
input.invalid[type="email"]:not(.browser-default):focus,
input.invalid[type="url"]:not(.browser-default),
input.invalid[type="url"]:not(.browser-default):focus,
input.invalid[type="time"]:not(.browser-default),
input.invalid[type="time"]:not(.browser-default):focus,
input.invalid[type="date"]:not(.browser-default),
input.invalid[type="date"]:not(.browser-default):focus,
input.invalid[type="datetime"]:not(.browser-default),
input.invalid[type="datetime"]:not(.browser-default):focus,
input.invalid[type="datetime-local"]:not(.browser-default),
input.invalid[type="datetime-local"]:not(.browser-default):focus,
input.invalid[type="tel"]:not(.browser-default),
input.invalid[type="tel"]:not(.browser-default):focus,
input.invalid[type="number"]:not(.browser-default),
input.invalid[type="number"]:not(.browser-default):focus,
input.invalid[type="search"]:not(.browser-default),
input.invalid[type="search"]:not(.browser-default):focus,
textarea.materialize-textarea.invalid,
textarea.materialize-textarea.invalid:focus, .select-wrapper.invalid > input.select-dropdown,
.select-wrapper.invalid > input.select-dropdown:focus {
  border-bottom: 1px solid #F44336;
  -webkit-box-shadow: 0 1px 0 0 #F44336;
          box-shadow: 0 1px 0 0 #F44336;
}

input:not([type]).valid ~ .helper-text[data-success],
input:not([type]):focus.valid ~ .helper-text[data-success],
input:not([type]).invalid ~ .helper-text[data-error],
input:not([type]):focus.invalid ~ .helper-text[data-error],
input[type="text"]:not(.browser-default).valid ~ .helper-text[data-success],
input[type="text"]:not(.browser-default):focus.valid ~ .helper-text[data-success],
input[type="text"]:not(.browser-default).invalid ~ .helper-text[data-error],
input[type="text"]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
input[type="password"]:not(.browser-default).valid ~ .helper-text[data-success],
input[type="password"]:not(.browser-default):focus.valid ~ .helper-text[data-success],
input[type="password"]:not(.browser-default).invalid ~ .helper-text[data-error],
input[type="password"]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
input[type="email"]:not(.browser-default).valid ~ .helper-text[data-success],
input[type="email"]:not(.browser-default):focus.valid ~ .helper-text[data-success],
input[type="email"]:not(.browser-default).invalid ~ .helper-text[data-error],
input[type="email"]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
input[type="url"]:not(.browser-default).valid ~ .helper-text[data-success],
input[type="url"]:not(.browser-default):focus.valid ~ .helper-text[data-success],
input[type="url"]:not(.browser-default).invalid ~ .helper-text[data-error],
input[type="url"]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
input[type="time"]:not(.browser-default).valid ~ .helper-text[data-success],
input[type="time"]:not(.browser-default):focus.valid ~ .helper-text[data-success],
input[type="time"]:not(.browser-default).invalid ~ .helper-text[data-error],
input[type="time"]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
input[type="date"]:not(.browser-default).valid ~ .helper-text[data-success],
input[type="date"]:not(.browser-default):focus.valid ~ .helper-text[data-success],
input[type="date"]:not(.browser-default).invalid ~ .helper-text[data-error],
input[type="date"]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
input[type="datetime"]:not(.browser-default).valid ~ .helper-text[data-success],
input[type="datetime"]:not(.browser-default):focus.valid ~ .helper-text[data-success],
input[type="datetime"]:not(.browser-default).invalid ~ .helper-text[data-error],
input[type="datetime"]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
input[type="datetime-local"]:not(.browser-default).valid ~ .helper-text[data-success],
input[type="datetime-local"]:not(.browser-default):focus.valid ~ .helper-text[data-success],
input[type="datetime-local"]:not(.browser-default).invalid ~ .helper-text[data-error],
input[type="datetime-local"]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
input[type="tel"]:not(.browser-default).valid ~ .helper-text[data-success],
input[type="tel"]:not(.browser-default):focus.valid ~ .helper-text[data-success],
input[type="tel"]:not(.browser-default).invalid ~ .helper-text[data-error],
input[type="tel"]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
input[type="number"]:not(.browser-default).valid ~ .helper-text[data-success],
input[type="number"]:not(.browser-default):focus.valid ~ .helper-text[data-success],
input[type="number"]:not(.browser-default).invalid ~ .helper-text[data-error],
input[type="number"]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
input[type="search"]:not(.browser-default).valid ~ .helper-text[data-success],
input[type="search"]:not(.browser-default):focus.valid ~ .helper-text[data-success],
input[type="search"]:not(.browser-default).invalid ~ .helper-text[data-error],
input[type="search"]:not(.browser-default):focus.invalid ~ .helper-text[data-error],
textarea.materialize-textarea.valid ~ .helper-text[data-success],
textarea.materialize-textarea:focus.valid ~ .helper-text[data-success],
textarea.materialize-textarea.invalid ~ .helper-text[data-error],
textarea.materialize-textarea:focus.invalid ~ .helper-text[data-error], .select-wrapper.valid .helper-text[data-success],
.select-wrapper.invalid ~ .helper-text[data-error] {
  color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

input:not([type]).valid ~ .helper-text:after,
input:not([type]):focus.valid ~ .helper-text:after,
input[type="text"]:not(.browser-default).valid ~ .helper-text:after,
input[type="text"]:not(.browser-default):focus.valid ~ .helper-text:after,
input[type="password"]:not(.browser-default).valid ~ .helper-text:after,
input[type="password"]:not(.browser-default):focus.valid ~ .helper-text:after,
input[type="email"]:not(.browser-default).valid ~ .helper-text:after,
input[type="email"]:not(.browser-default):focus.valid ~ .helper-text:after,
input[type="url"]:not(.browser-default).valid ~ .helper-text:after,
input[type="url"]:not(.browser-default):focus.valid ~ .helper-text:after,
input[type="time"]:not(.browser-default).valid ~ .helper-text:after,
input[type="time"]:not(.browser-default):focus.valid ~ .helper-text:after,
input[type="date"]:not(.browser-default).valid ~ .helper-text:after,
input[type="date"]:not(.browser-default):focus.valid ~ .helper-text:after,
input[type="datetime"]:not(.browser-default).valid ~ .helper-text:after,
input[type="datetime"]:not(.browser-default):focus.valid ~ .helper-text:after,
input[type="datetime-local"]:not(.browser-default).valid ~ .helper-text:after,
input[type="datetime-local"]:not(.browser-default):focus.valid ~ .helper-text:after,
input[type="tel"]:not(.browser-default).valid ~ .helper-text:after,
input[type="tel"]:not(.browser-default):focus.valid ~ .helper-text:after,
input[type="number"]:not(.browser-default).valid ~ .helper-text:after,
input[type="number"]:not(.browser-default):focus.valid ~ .helper-text:after,
input[type="search"]:not(.browser-default).valid ~ .helper-text:after,
input[type="search"]:not(.browser-default):focus.valid ~ .helper-text:after,
textarea.materialize-textarea.valid ~ .helper-text:after,
textarea.materialize-textarea:focus.valid ~ .helper-text:after, .select-wrapper.valid ~ .helper-text:after {
  content: attr(data-success);
  color: #4CAF50;
}

input:not([type]).invalid ~ .helper-text:after,
input:not([type]):focus.invalid ~ .helper-text:after,
input[type="text"]:not(.browser-default).invalid ~ .helper-text:after,
input[type="text"]:not(.browser-default):focus.invalid ~ .helper-text:after,
input[type="password"]:not(.browser-default).invalid ~ .helper-text:after,
input[type="password"]:not(.browser-default):focus.invalid ~ .helper-text:after,
input[type="email"]:not(.browser-default).invalid ~ .helper-text:after,
input[type="email"]:not(.browser-default):focus.invalid ~ .helper-text:after,
input[type="url"]:not(.browser-default).invalid ~ .helper-text:after,
input[type="url"]:not(.browser-default):focus.invalid ~ .helper-text:after,
input[type="time"]:not(.browser-default).invalid ~ .helper-text:after,
input[type="time"]:not(.browser-default):focus.invalid ~ .helper-text:after,
input[type="date"]:not(.browser-default).invalid ~ .helper-text:after,
input[type="date"]:not(.browser-default):focus.invalid ~ .helper-text:after,
input[type="datetime"]:not(.browser-default).invalid ~ .helper-text:after,
input[type="datetime"]:not(.browser-default):focus.invalid ~ .helper-text:after,
input[type="datetime-local"]:not(.browser-default).invalid ~ .helper-text:after,
input[type="datetime-local"]:not(.browser-default):focus.invalid ~ .helper-text:after,
input[type="tel"]:not(.browser-default).invalid ~ .helper-text:after,
input[type="tel"]:not(.browser-default):focus.invalid ~ .helper-text:after,
input[type="number"]:not(.browser-default).invalid ~ .helper-text:after,
input[type="number"]:not(.browser-default):focus.invalid ~ .helper-text:after,
input[type="search"]:not(.browser-default).invalid ~ .helper-text:after,
input[type="search"]:not(.browser-default):focus.invalid ~ .helper-text:after,
textarea.materialize-textarea.invalid ~ .helper-text:after,
textarea.materialize-textarea:focus.invalid ~ .helper-text:after, .select-wrapper.invalid ~ .helper-text:after {
  content: attr(data-error);
  color: #F44336;
}

input:not([type]) + label:after,
input[type="text"]:not(.browser-default) + label:after,
input[type="password"]:not(.browser-default) + label:after,
input[type="email"]:not(.browser-default) + label:after,
input[type="url"]:not(.browser-default) + label:after,
input[type="time"]:not(.browser-default) + label:after,
input[type="date"]:not(.browser-default) + label:after,
input[type="datetime"]:not(.browser-default) + label:after,
input[type="datetime-local"]:not(.browser-default) + label:after,
input[type="tel"]:not(.browser-default) + label:after,
input[type="number"]:not(.browser-default) + label:after,
input[type="search"]:not(.browser-default) + label:after,
textarea.materialize-textarea + label:after, .select-wrapper + label:after {
  display: block;
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-out, 0.2s color ease-out;
  transition: 0.2s opacity ease-out, 0.2s color ease-out;
}

.input-field {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.input-field.inline {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}

.input-field.inline input,
.input-field.inline .select-dropdown {
  margin-bottom: 1rem;
}

.input-field.col label {
  left: 0.75rem;
}

.input-field.col .prefix ~ label,
.input-field.col .prefix ~ .validate ~ label {
  width: calc(100% - 3rem - 1.5rem);
}

.input-field > label {
  color: #999999;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 16px;
  font-family: "Read";
  font-weight: 300;
  cursor: text;
  -webkit-transition: color 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: color 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out, color 0.2s ease-out;
  transition: transform 0.2s ease-out, color 0.2s ease-out, -webkit-transform 0.2s ease-out;
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
  text-align: initial;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.input-field > label:not(.label-icon).active {
  -webkit-transform: translateY(-14px) scale(0.8);
          transform: translateY(-14px) scale(0.8);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}

.input-field > label.bold-label {
  font-weight: bold;
}

.input-field > input[type]:-webkit-autofill:not(.browser-default):not([type="search"]) + label,
.input-field > input[type="date"]:not(.browser-default) + label,
.input-field > input[type="time"]:not(.browser-default) + label {
  -webkit-transform: translateY(-14px) scale(0.8);
          transform: translateY(-14px) scale(0.8);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}

.input-field .helper-text {
  position: relative;
  min-height: 18px;
  display: block;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.54);
}

.input-field .helper-text::after {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.input-field .prefix {
  position: absolute;
  width: 3rem;
  font-size: 2rem;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  top: 0.5rem;
}

.input-field .prefix.active {
  color: #000000;
}

.input-field .prefix ~ input,
.input-field .prefix ~ textarea,
.input-field .prefix ~ label,
.input-field .prefix ~ .validate ~ label,
.input-field .prefix ~ .helper-text,
.input-field .prefix ~ .autocomplete-content {
  margin-left: 3rem;
  width: 92%;
  width: calc(100% - 3rem);
}

.input-field .prefix ~ label {
  margin-left: 3rem;
}

@media only screen and (max-width: 992px) {
  .input-field .prefix ~ input {
    width: 86%;
    width: calc(100% - 3rem);
  }
}

@media only screen and (max-width: 600px) {
  .input-field .prefix ~ input {
    width: 80%;
    width: calc(100% - 3rem);
  }
}

/* Search Field */
.input-field input[type="search"] {
  display: block;
  line-height: inherit;
  -webkit-transition: 0.3s background-color;
  transition: 0.3s background-color;
}

.nav-wrapper .input-field input[type="search"] {
  height: inherit;
  padding-left: 4rem;
  width: calc(100% - 4rem);
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.input-field input[type="search"]:focus:not(.browser-default) {
  background-color: #fff;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #444;
}

.input-field input[type="search"]:focus:not(.browser-default) + label i,
.input-field input[type="search"]:focus:not(.browser-default) ~ .mdi-navigation-close,
.input-field input[type="search"]:focus:not(.browser-default) ~ .material-icons {
  color: #444;
}

.input-field input[type="search"] + .label-icon {
  -webkit-transform: none;
          transform: none;
  left: 1rem;
}

.input-field input[type="search"] ~ .mdi-navigation-close,
.input-field input[type="search"] ~ .material-icons {
  position: absolute;
  top: 0;
  right: 1rem;
  color: transparent;
  cursor: pointer;
  font-size: 2rem;
  -webkit-transition: 0.3s color;
  transition: 0.3s color;
}

/* Textarea */
textarea {
  width: 100%;
  height: 3rem;
  background-color: transparent;
}

textarea.materialize-textarea {
  line-height: normal;
  overflow-y: hidden;
  /* prevents scroll bar flash */
  padding: 0.8rem 0 0.8rem 0;
  /* prevents text jump on Enter keypress */
  resize: none;
  min-height: 3rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.hiddendiv {
  visibility: hidden;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  /* future version of deprecated 'word-wrap' */
  padding-top: 1.2rem;
  /* prevents text jump on Enter keypress */
  position: absolute;
  top: 0;
  z-index: -1;
}

/* Autocomplete */
.autocomplete-content li .highlight {
  color: #444;
}

.autocomplete-content li img {
  height: 40px;
  width: 40px;
  margin: 5px 15px;
}

/* Character Counter */
.character-counter {
  min-height: 18px;
}

/* Radio Buttons
   ========================================================================== */
[type="radio"]:not(:checked),
[type="radio"]:checked {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

[type="radio"]:not(:checked) + span,
[type="radio"]:checked + span {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  font-size: 16px;
  font-family: "Read";
  font-weight: 300;
  -webkit-transition: 0.28s ease;
  transition: 0.28s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #000000;
}

[type="radio"] + span:before,
[type="radio"] + span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 4px;
  width: 16px;
  height: 16px;
  z-index: 0;
  -webkit-transition: 0.28s ease;
  transition: 0.28s ease;
}

/* Unchecked styles */
[type="radio"]:not(:checked) + span:before,
[type="radio"]:not(:checked) + span:after,
[type="radio"]:checked + span:before,
[type="radio"]:checked + span:after,
[type="radio"].with-gap:checked + span:before,
[type="radio"].with-gap:checked + span:after {
  border-radius: 50%;
}

[type="radio"]:not(:checked) + span:before,
[type="radio"]:not(:checked) + span:after {
  border: 2px solid #bbbcbc;
}

[type="radio"]:not(:checked) + span:after {
  -webkit-transform: scale(0);
          transform: scale(0);
}

/* Checked styles */
[type="radio"]:checked + span:before {
  border: 2px solid transparent;
}

[type="radio"]:checked + span:after,
[type="radio"].with-gap:checked + span:before,
[type="radio"].with-gap:checked + span:after {
  border: 2px solid #bbbcbc;
}

[type="radio"]:checked + span:after,
[type="radio"].with-gap:checked + span:after {
  background-color: #bbbcbc;
}

[type="radio"]:checked + span:after {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

/* Radio With gap */
[type="radio"].with-gap:checked + span:after {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

/* Focused styles */
[type="radio"].tabbed:focus + span:before {
  -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Disabled Radio With gap */
[type="radio"].with-gap:disabled:checked + span:before {
  border: 2px solid rgba(0, 0, 0, 0.42);
}

[type="radio"].with-gap:disabled:checked + span:after {
  border: none;
  background-color: rgba(0, 0, 0, 0.42);
}

/* Disabled style */
[type="radio"]:disabled:not(:checked) + span:before,
[type="radio"]:disabled:checked + span:before {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.42);
}

[type="radio"]:disabled + span {
  color: rgba(0, 0, 0, 0.42);
}

[type="radio"]:disabled:not(:checked) + span:before {
  border-color: rgba(0, 0, 0, 0.42);
}

[type="radio"]:disabled:checked + span:after {
  background-color: rgba(0, 0, 0, 0.42);
  border-color: #949494;
}

/* Checkboxes
   ========================================================================== */
/* Remove default checkbox */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

[type="checkbox"] {
  /* checkbox aspect */
}

[type="checkbox"] + span:not(.lever) {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  font-size: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

[type="checkbox"] + span:not(.lever):before,
[type="checkbox"]:not(.filled-in) + span:not(.lever):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 0;
  border: 2px solid #bbbcbc;
  border-radius: 1px;
  margin-top: 3px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

[type="checkbox"]:not(.filled-in) + span:not(.lever):after {
  border: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}

[type="checkbox"]:not(:checked):disabled + span:not(.lever):before {
  border: none;
  background-color: rgba(0, 0, 0, 0.42);
}

[type="checkbox"].tabbed:focus + span:not(.lever):after {
  -webkit-transform: scale(1);
          transform: scale(1);
  border: 0;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
}

[type="checkbox"]:checked + span:not(.lever):before {
  top: -4px;
  left: -5px;
  width: 12px;
  height: 22px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #bbbcbc;
  border-bottom: 2px solid #bbbcbc;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

[type="checkbox"]:checked:disabled + span:before {
  border-right: 2px solid rgba(0, 0, 0, 0.42);
  border-bottom: 2px solid rgba(0, 0, 0, 0.42);
}

/* Indeterminate checkbox */
[type="checkbox"]:indeterminate + span:not(.lever):before {
  top: -11px;
  left: -12px;
  width: 10px;
  height: 22px;
  border-top: none;
  border-left: none;
  border-right: 2px solid #bbbcbc;
  border-bottom: none;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

[type="checkbox"]:indeterminate:disabled + span:not(.lever):before {
  border-right: 2px solid rgba(0, 0, 0, 0.42);
  background-color: transparent;
}

[type="checkbox"].filled-in + span:not(.lever):after {
  border-radius: 2px;
}

[type="checkbox"].filled-in + span:not(.lever):before,
[type="checkbox"].filled-in + span:not(.lever):after {
  content: "";
  left: 0;
  position: absolute;
  /* .1s delay is for check animation */
  -webkit-transition: border 0.25s, background-color 0.25s, width 0.2s 0.1s, height 0.2s 0.1s, top 0.2s 0.1s, left 0.2s 0.1s;
  transition: border 0.25s, background-color 0.25s, width 0.2s 0.1s, height 0.2s 0.1s, top 0.2s 0.1s, left 0.2s 0.1s;
  z-index: 1;
}

[type="checkbox"].filled-in:not(:checked) + span:not(.lever):before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  -webkit-transform: rotateZ(37deg);
          transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

[type="checkbox"].filled-in:not(:checked) + span:not(.lever):after {
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid #bbbcbc;
  top: 0px;
  z-index: 0;
}

[type="checkbox"].filled-in:checked + span:not(.lever):before {
  top: 0;
  left: 1px;
  width: 8px;
  height: 13px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #ffcc33;
  border-bottom: 2px solid #ffcc33;
  -webkit-transform: rotateZ(37deg);
          transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

[type="checkbox"].filled-in:checked + span:not(.lever):after {
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #bbbcbc;
  background-color: transparent;
  z-index: 0;
}

[type="checkbox"].filled-in.tabbed:focus + span:not(.lever):after {
  border-radius: 2px;
  border-color: #bbbcbc;
  background-color: rgba(0, 0, 0, 0.1);
}

[type="checkbox"].filled-in.tabbed:checked:focus + span:not(.lever):after {
  border-radius: 2px;
  background-color: #26a69a;
  border-color: #26a69a;
}

[type="checkbox"].filled-in:disabled:not(:checked) + span:not(.lever):before {
  background-color: transparent;
  border: 2px solid transparent;
}

[type="checkbox"].filled-in:disabled:not(:checked) + span:not(.lever):after {
  border-color: transparent;
  background-color: #949494;
}

[type="checkbox"].filled-in:disabled:checked + span:not(.lever):before {
  background-color: transparent;
}

[type="checkbox"].filled-in:disabled:checked + span:not(.lever):after {
  background-color: #949494;
  border-color: #949494;
}

/* Switch
   ========================================================================== */
.switch,
.switch * {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.switch label {
  cursor: pointer;
}

.switch label input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch label input[type=checkbox]:checked + .lever {
  background-color: #84c7c1;
}

.switch label input[type=checkbox]:checked + .lever:before, .switch label input[type=checkbox]:checked + .lever:after {
  left: 18px;
}

.switch label input[type=checkbox]:checked + .lever:after {
  background-color: #26a69a;
}

.switch label .lever {
  content: "";
  display: inline-block;
  position: relative;
  width: 36px;
  height: 14px;
  background-color: rgba(0, 0, 0, 0.38);
  border-radius: 15px;
  margin-right: 10px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  vertical-align: middle;
  margin: 0 16px;
}

.switch label .lever:before, .switch label .lever:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: 0;
  top: -3px;
  -webkit-transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform .1s ease;
  transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform .1s ease;
  transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease, transform .1s ease;
  transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease, transform .1s ease, -webkit-box-shadow 0.1s ease, -webkit-transform .1s ease;
}

.switch label .lever:before {
  background-color: rgba(38, 166, 154, 0.15);
}

.switch label .lever:after {
  background-color: #f1f1f1;
  -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

input[type=checkbox]:checked:not(:disabled) ~ .lever:active::before,
input[type=checkbox]:checked:not(:disabled).tabbed:focus ~ .lever::before {
  -webkit-transform: scale(2.4);
          transform: scale(2.4);
  background-color: rgba(38, 166, 154, 0.15);
}

input[type=checkbox]:not(:disabled) ~ .lever:active:before,
input[type=checkbox]:not(:disabled).tabbed:focus ~ .lever::before {
  -webkit-transform: scale(2.4);
          transform: scale(2.4);
  background-color: rgba(0, 0, 0, 0.08);
}

.switch input[type=checkbox][disabled] + .lever {
  cursor: default;
  background-color: rgba(0, 0, 0, 0.12);
}

.switch label input[type=checkbox][disabled] + .lever:after,
.switch label input[type=checkbox][disabled]:checked + .lever:after {
  background-color: #949494;
}

/* Select Field
   ========================================================================== */
select {
  display: none;
}

select.browser-default {
  display: block;
}

select {
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  padding: 5px;
  border: 1px solid #f2f2f2;
  border-radius: 2px;
  height: 3rem;
}

.select-label {
  position: absolute;
}

.select-wrapper {
  position: relative;
}

.select-wrapper.valid + label,
.select-wrapper.invalid + label {
  width: 100%;
  pointer-events: none;
}

.select-wrapper input.select-dropdown {
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #999999;
  outline: none;
  height: 3rem;
  line-height: 3rem;
  width: 100%;
  font-size: 16px;
  margin: 0 0 8px 0;
  padding: 0;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 1;
}

.select-wrapper input.select-dropdown:focus {
  border-bottom: 1px solid #000000;
}

.select-wrapper .caret {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 0;
  fill: rgba(0, 0, 0, 0.87);
}

.select-wrapper + label {
  position: absolute;
  top: -26px;
  font-size: 0.8rem;
}

select:disabled {
  color: rgba(0, 0, 0, 0.42);
}

.select-wrapper.disabled + label {
  color: rgba(0, 0, 0, 0.42);
}

.select-wrapper.disabled .caret {
  fill: rgba(0, 0, 0, 0.42);
}

.select-wrapper input.select-dropdown:disabled {
  color: rgba(0, 0, 0, 0.42);
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.select-wrapper i {
  color: rgba(0, 0, 0, 0.3);
}

.select-dropdown li.disabled,
.select-dropdown li.disabled > span,
.select-dropdown li.optgroup {
  color: rgba(0, 0, 0, 0.3);
  background-color: transparent;
}

body.keyboard-focused .select-dropdown.dropdown-content li:focus {
  background-color: rgba(0, 0, 0, 0.08);
}

.select-dropdown.dropdown-content li:hover {
  background-color: rgba(0, 0, 0, 0.08);
}

.select-dropdown.dropdown-content li.selected {
  background-color: rgba(0, 0, 0, 0.03);
}

.prefix ~ .select-wrapper {
  margin-left: 3rem;
  width: 92%;
  width: calc(100% - 3rem);
}

.prefix ~ label {
  margin-left: 3rem;
}

.select-dropdown li img {
  height: 40px;
  width: 40px;
  margin: 5px 15px;
  float: right;
}

.select-dropdown li.optgroup {
  border-top: 1px solid #eee;
}

.select-dropdown li.optgroup.selected > span {
  color: rgba(0, 0, 0, 0.7);
}

.select-dropdown li.optgroup > span {
  color: rgba(0, 0, 0, 0.4);
}

.select-dropdown li.optgroup ~ li.optgroup-option {
  padding-left: 1rem;
}

/* File Input
   ========================================================================== */
.file-field {
  position: relative;
}

.file-field .file-path-wrapper {
  overflow: hidden;
  padding-left: 10px;
}

.file-field input.file-path {
  width: 100%;
}

.file-field .btn {
  float: left;
  height: 3rem;
  line-height: 3rem;
}

.file-field span {
  cursor: pointer;
}

.file-field input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

.file-field input[type=file]::-webkit-file-upload-button {
  display: none;
}

/* Range
   ========================================================================== */
.range-field {
  position: relative;
}

input[type=range],
input[type=range] + .thumb {
  cursor: pointer;
}

input[type=range] {
  position: relative;
  background-color: transparent;
  border: none;
  outline: none;
  width: 100%;
  margin: 15px 0;
  padding: 0;
}

input[type=range]:focus {
  outline: none;
}

input[type=range] + .thumb {
  position: absolute;
  top: 10px;
  left: 0;
  border: none;
  height: 0;
  width: 0;
  border-radius: 50%;
  background-color: #bbbcbc;
  margin-left: 7px;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

input[type=range] + .thumb .value {
  display: block;
  width: 30px;
  text-align: center;
  color: #bbbcbc;
  font-size: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

input[type=range] + .thumb.active {
  border-radius: 50% 50% 50% 0;
}

input[type=range] + .thumb.active .value {
  color: #fff;
  margin-left: -1px;
  margin-top: 8px;
  font-size: 10px;
}

input[type=range] {
  -webkit-appearance: none;
}

input[type=range]::-webkit-slider-runnable-track {
  height: 3px;
  background: #c2c0c2;
  border: none;
}

input[type=range]::-webkit-slider-thumb {
  border: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #bbbcbc;
  -webkit-transition: -webkit-box-shadow .3s;
  transition: -webkit-box-shadow .3s;
  transition: box-shadow .3s;
  transition: box-shadow .3s, -webkit-box-shadow .3s;
  -webkit-appearance: none;
  background-color: #bbbcbc;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  margin: -5px 0 0 0;
}

.keyboard-focused input[type=range]:focus:not(.active)::-webkit-slider-thumb {
  -webkit-box-shadow: 0 0 0 10px rgba(187, 188, 188, 0.26);
          box-shadow: 0 0 0 10px rgba(187, 188, 188, 0.26);
}

input[type=range] {
  /* fix for FF unable to apply focus style bug  */
  border: 1px solid white;
  /*required for proper track sizing in FF*/
}

input[type=range]::-moz-range-track {
  height: 3px;
  background: #c2c0c2;
  border: none;
}

input[type=range]::-moz-focus-inner {
  border: 0;
}

input[type=range]::-moz-range-thumb {
  border: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #bbbcbc;
  -webkit-transition: -webkit-box-shadow .3s;
  transition: -webkit-box-shadow .3s;
  transition: box-shadow .3s;
  transition: box-shadow .3s, -webkit-box-shadow .3s;
  margin-top: -5px;
}

input[type=range]:-moz-focusring {
  outline: 1px solid #fff;
  outline-offset: -1px;
}

.keyboard-focused input[type=range]:focus:not(.active)::-moz-range-thumb {
  box-shadow: 0 0 0 10px rgba(187, 188, 188, 0.26);
}

input[type=range]::-ms-track {
  height: 3px;
  background: transparent;
  border-color: transparent;
  border-width: 6px 0;
  /*remove default tick marks*/
  color: transparent;
}

input[type=range]::-ms-fill-lower {
  background: #777;
}

input[type=range]::-ms-fill-upper {
  background: #ddd;
}

input[type=range]::-ms-thumb {
  border: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background: #bbbcbc;
  -webkit-transition: -webkit-box-shadow .3s;
  transition: -webkit-box-shadow .3s;
  transition: box-shadow .3s;
  transition: box-shadow .3s, -webkit-box-shadow .3s;
}

.keyboard-focused input[type=range]:focus:not(.active)::-ms-thumb {
  box-shadow: 0 0 0 10px rgba(187, 188, 188, 0.26);
}

/*# sourceMappingURL=styles.css.map*/
