@charset "UTF-8";
* {
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  -ms-box-sizing: border-box !important;
  box-sizing: border-box !important;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  line-height: 160%; }

body {
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
  right: 0;
  color: #333; }

.bold {
  font-weight: bold;
  color: #333; }

#header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: stretch;
  align-items: center;
  flex-direction: row;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 20px;
  color: #f9d016;
  background-color: #091638; }

h2 {
  font-weight: normal; 
  font-size: 1.4em;
}

#page {
  padding: 20px; }

#rgpd {
  background-color: #f2f2f2;
  padding: 10px; }

input {
  width: 340px;
  height: 40px;
  border: none;
  border: none;
  border-bottom: 1px solid #333;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #333;
  font-size: 1em;
  outline: none; }

.iban_helper {
  font-style: italic;
  font-size: .8em; }

.iban_helper.wait {
  color: #888; }

.iban_helper.error {
  color: #f00; }

.iban_helper.valid {
  color: #0f0; }

#page_loading {
  display: table;
  margin: 0 auto;
  margin-top: 40px; }

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #091638;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1.5s linear infinite; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
#button_valid {
  width: 200px;
  height: 40px;
  background-color: #091638;
  color: white;
  font-size: 1em;
  border: none;
  text-align: center; }

/*  -----   */
.button_container {
  margin-left: auto;
  margin-right: auto;
  left: auto;
  right: auto;
  margin-top: 20px;
  width: 300px;
  height: 60px;
  text-align: center; }

button {
  outline: none;
  height: 60px;
  text-align: center;
  width: 300px;
  border-radius: 60px;
  color: white;
  background: #091638;
  letter-spacing: .25em;
  text-shadow: 0;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.25s ease; }
  button:hover {
    color: #f4f6ff;
    background: #222a4f; }
  button:active {
    letter-spacing: 2px; }
  button:after {
    content: "VALIDER →"; }
  button:disabled {
    opacity: .5; }

.onclic {
  width: 40px;
  height: 40px;
  border-color: #bbbbbb;
  border-width: 3px;
  font-size: 0;
  border-left-color: #091638;
  animation: rotating 2s 0.25s linear infinite;
  background-color: white; }
  .onclic:after {
    content: ""; }
  .onclic:hover {
    color: #091638;
    background: white; }

.validate {
  font-size: 13px;
  color: white;
  background: #091638; }
  .validate:after {
    font-family: 'FontAwesome';
    content: "\f00c"; }

@keyframes rotating {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

