/* POLICES */
.defaultPolice {
  font-family: "proxima-nova-extra-condensed", "Open Sans Condensed", sans-serif;
  font-size: 18px;
}
.proximaLight {
  font-family: "proxima-nova-extra-condensed", sans-serif;
  font-style: normal;
  font-weight: 300;
}
html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
* {
  box-sizing: border-box;
}
body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #f6f6f6;
}
body header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
body header img {
  width: 100%;
  max-width: 250px;
  margin: 100px 10px 50px 10px;
}
body main {
  width: 100%;
  display: flex;
  flex-direction: column;
}
body main form#paiementForm {
  width: 100%;
  height: auto;
  margin: 0 auto;
  font-family: "proxima-nova-extra-condensed", "Open Sans Condensed", sans-serif;
  font-size: 16px;
  text-align: center;
}
body main form#paiementForm fieldset {
  max-width: 500px;
  width: 100%;
  -moz-border-radius: 0.3125em;
  -webkit-border-radius: 0.3125em;
  border-radius: 0.3125em;
  border: none;
  padding: 0 5px;
  margin: 0 auto;
}
body main form#paiementForm h1 {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  margin: 0px;
  padding: 0px;
  color: #525252;
  font-size: 40px;
  font-family: "proxima-nova-extra-condensed", "Open Sans Condensed", sans-serif;
  font-weight: 300;
}
body main form#paiementForm .g-recaptcha {
  margin: 20px auto 10px auto;
  display: flex;
  justify-content: center;
}
body main form#paiementForm label {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
}
body main form#paiementForm label.center {
  justify-content: center;
}
body main form#paiementForm label span {
  text-align: left;
}
body main form#paiementForm label strong {
  text-align: right;
}
body main form#paiementForm input[type="text"] {
  width: 100%;
  height: 40px;
  line-height: 20px;
  margin: 0;
  padding: 0;
  border: none;
  outline-offset: none;
  color: #000000;
  font-size: 18px;
  -moz-border-radius: 0.3125em;
  -webkit-border-radius: 0.3125em;
  border-radius: 0.3125em;
}
body main form#paiementForm select {
  background: transparent;
  border: solid 1px rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  -moz-border-radius: 0.3125em;
  -webkit-border-radius: 0.3125em;
  border-radius: 0.3125em;
}
body main form#paiementForm input[type="submit"] {
  width: 250px;
  height: 42px;
  line-height: 42px;
  margin: 10px auto 0 auto;
  color: #FFF;
  background-color: #84bb7f;
  text-transform: uppercase;
  -moz-border-radius: 0.3125em;
  -webkit-border-radius: 0.3125em;
  border-radius: 0.3125em;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: "proxima-nova-extra-condensed", "Open Sans Condensed", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 22px;
  margin-bottom: 5px;
}
body main form#paiementForm input[type="submit"]:hover {
  box-shadow: 10px 10px 5px rgba(33, 55, 108, 0.2);
}
body main a {
  color: #84bb7f;
  text-decoration: none;
  font-size: 14px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  margin-top: 5px;
}
body main a:hover {
  text-decoration: underline;
}
