@charset "UTF-8";
/*-----------------------------------------------------------------------------------------------------
    Projet : 
    Website : 
    
    Copyright (C) 2014
    
    Sommaire :  Reset
                Header
                Contenu
                Footer
          
    Memo :  
    Inline-block pour ie < 8 : .class { display: inline;  zoom:1; } 
    
    Transitions :   
    -webkit-transition: all 0.4s ease 0s;
       -moz-transition: all 0.4s ease 0s;
            transition: all 0.4s ease 0s;         
-------------------------------------------------------------------------------------------------------*/
/*!
* Custom Knacss v0.1
*
* www.KNACSS.com V2.9 (2013-10) @author: Raphael Goetter, Alsacreations
* Licence WTFPL http://www.wtfpl.net/ 
*/
/* ----------------------------- */
/* ==reset                       */
/* ----------------------------- */
/* alternate font-sizing */
.smaller {
  font-size: .7143em;
  /* equiv 10px */
}

.small {
  font-size: .8571em;
  /* equiv 12px */
}

.big {
  font-size: 1.1429em;
  /* equiv 16px */
}

.bigger {
  font-size: 1.2857em;
  /* equiv 18px */
}

.biggest {
  font-size: 1.4286em;
  /* equiv 20px */
}

/* soft reset */
html,
body {
  margin: 0;
  padding: 0;
}

ul,
ol {
  padding-left: 2em;
}

ul.unstyled {
  list-style: none;
}

code,
pre,
samp,
kbd {
  white-space: pre-wrap;
  font-family: consolas, 'DejaVu Sans Mono', courier, monospace;
  line-height: 1em;
}

code, kbd, mark {
  border-radius: 2px;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

kbd {
  padding: 0 2px;
  border: 1px solid #999;
}

code {
  padding: 2px 4px;
  background: rgba(0, 0, 0, 0.04);
  color: #b11;
}

mark {
  padding: 2px 4px;
  background: #ff0;
}

sup,
sub {
  vertical-align: 0;
  position: relative;
}

sup {
  bottom: 1ex;
}

sub {
  top: .5ex;
}

table {
  margin-bottom: 1.5em;
}

/* avoid margins on nested elements */
li p,
li ul,
li ol {
  margin-top: 0;
  margin-bottom: 0;
}

/* max values */
img, table, td, blockquote, code, pre, textarea, input, video {
  max-width: 100%;
}

/* pictures */
img {
  vertical-align: middle;
}

/* Google Gmap3 bug fix on images */
:not(.gm-style) img {
  /*height: auto !important;*/
}

.ie678 .gm-style img {
  height: 100%;
  /* IE678 hack */
}

.gm-style img,
.gmnoscreen img,
.gmnoprint img {
  max-width: none !important;
}

a img {
  border: 0;
}

/* scripts */
body > script {
  display: none !important;
}

/* skip-links */
.skip-links {
  position: absolute;
}

.skip-links a {
  position: absolute;
  left: -7000px;
  padding: 0.5em;
  background: #000;
  color: #fff;
  text-decoration: none;
}

.skip-links a:focus {
  position: static;
}

/* ----------------------------- */
/* ==layout and modules          */
/* ----------------------------- */
/* switching box model for all elements */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* float layout */
/* module, gains superpower "BFC" Block Formating Context */
.mod {
  overflow: hidden;
}

/* blocks that needs to be placed under floats */
.clear,
.line,
.row {
  clear: both;
}

/* blocks that must contain floats */
.clearfix:after,
.line:after,
.mod:after {
  content: "";
  display: table;
  clear: both;
}

/* table layout */
.row {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.row > *,
.col {
  display: table-cell;
  vertical-align: top;
}

/* inline-block */
.inbl {
  display: inline-block;
  vertical-align: top;
}

/* alignments (blocks and inline) */
/* ------------------------------ */
/* left elements */
.left {
  float: left;
}

img.left {
  margin-right: 1em;
}

/* right elements */
.right {
  float: right;
}

img.right {
  margin-left: 1em;
}

img.left, img.right {
  margin-bottom: 5px;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.txtleft {
  text-align: left;
}

.txtright {
  text-align: right;
}

.txtcenter {
  text-align: center;
}

/* blocks widths (percentages and pixels) */
.w10 {
  width: 10%;
}

.w20 {
  width: 20%;
}

.w25 {
  width: 25%;
}

.w30 {
  width: 30%;
}

.w33 {
  width: 33.3333%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w66 {
  width: 66.6666%;
}

.w70 {
  width: 70%;
}

.w75 {
  width: 75%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

.w50p {
  width: 50px;
}

.w100p {
  width: 100px;
}

.w150p {
  width: 150px;
}

.w200p {
  width: 200px;
}

.w300p {
  width: 300px;
}

.w400p {
  width: 400px;
}

.w500p {
  width: 500px;
}

.w600p {
  width: 600px;
}

.w700p {
  width: 700px;
}

.w800p {
  width: 800px;
}

.w960p {
  width: 960px;
}

.mw960p {
  max-width: 960px;
}

.w1140p {
  width: 1140px;
}

.mw1140p {
  max-width: 1140px;
}

/* spacing helpers
p,m = padding,margin
a,t,r,b,l = all,top,right,bottom,left
s,m,l,n,0 = small(10px),medium(20px),large(30px), zero or none(0)
source https://github.com/stubbornella/oocss/blob/master/core/spacing/space.css
*/
.m-reset, .ma0 {
  margin: 0;
}

.p-reset, .pa0 {
  padding: 0;
}

.ma1, .mas {
  margin: 10px;
}

.ma2, .mam {
  margin: 20px;
}

.ma3, .mal {
  margin: 30px;
}

.pa1, .pas {
  padding: 10px;
}

.pa2, .pam {
  padding: 20px;
}

.pa3, .pal {
  padding: 30px;
}

.mt0, .mtn {
  margin-top: 0;
}

.mt1, .mts {
  margin-top: 10px;
}

.mt2, .mtm {
  margin-top: 20px;
}

.mt3, .mtl {
  margin-top: 30px;
}

.mr0, .mrn {
  margin-right: 0;
}

.mr1, .mrs {
  margin-right: 10px;
}

.mr2, .mrm {
  margin-right: 20px;
}

.mr3, .mrl {
  margin-right: 30px;
}

.mb0, .mbn {
  margin-bottom: 0;
}

.mb1, .mbs {
  margin-bottom: 10px;
}

.mb2, .mbm {
  margin-bottom: 20px;
}

.mb3, .mbl {
  margin-bottom: 30px;
}

.ml0, .mln {
  margin-left: 0;
}

.ml1, .mls {
  margin-left: 10px;
}

.ml2, .mlm {
  margin-left: 20px;
}

.ml3, .mll {
  margin-left: 30px;
}

.pt0, .ptn {
  padding-top: 0;
}

.pt1, .pts {
  padding-top: 10px;
}

.pt2, .ptm {
  padding-top: 20px;
}

.pt3, .ptl {
  padding-top: 30px;
}

.pr0, .prn {
  padding-right: 0;
}

.pr1, .prs {
  padding-right: 10px;
}

.pr2, .prm {
  padding-right: 20px;
}

.pr3, .prl {
  padding-right: 30px;
}

.pb0, .pbn {
  padding-bottom: 0;
}

.pb1, .pbs {
  padding-bottom: 10px;
}

.pb2, .pbm {
  padding-bottom: 20px;
}

.pb3, .pbl {
  padding-bottom: 30px;
}

.pl0, .pln {
  padding-left: 0;
}

.pl1, .pls {
  padding-left: 10px;
}

.pl2, .plm {
  padding-left: 20px;
}

.pl3, .pll {
  padding-left: 30px;
}

/* hiding content */
.visually-hidden {
  position: absolute;
  left: -7000px;
  overflow: hidden;
}

[dir=rtl] .visually-hidden {
  left: auto;
  right: -7000px;
}

.desktop-hidden {
  display: none;
}

/* hidden on desktop */
/* ----------------------------- */
/* ==iefix                       */
/* ----------------------------- */
/* hasLayout for IE6/IE7 */
.ie67 .clearfix,
.ie67 .line,
.ie67 .mod,
.ie67 .row,
.ie67 .col {
  zoom: 1;
}

/* inline-block and table-cell for IE6/IE7 */
/* warning: .col needs a width on IE6/IE7 */
.ie67 .btn,
.ie67 .col,
.ie67 .inbl {
  display: inline;
  zoom: 1;
}

.ie8 img {
  width: auto;
  /* @bugfix for IE8 */
}

/* Active box-sizing for IE6/IE7 */
/* @source https://github.com/Schepp/box-sizing-polyfill */
/*
.ie67 * {
	behavior: url(/js/boxsizing.htc);
}
*/
/* ----------------------------- */
/* ==print                       */
/* ----------------------------- */
/* quick print reset */
@media print {
  p,
  blockquote {
    orphans: 2;
    widows: 2;
  }

  blockquote,
  ul,
  ol {
    page-break-inside: avoid;
  }

  h1,
  h2,
  h3,
  caption {
    page-break-after: avoid;
  }

  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* Black prints faster: h5bp.com/s */
  a, a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }

  /* Don't show links for images, or javascript/internal links */
  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;
  }
}
/* debug helper */
.knacss-debug {
  background: pink;
  outline: 3px solid maroon;
}

/* orientation iOS font-size fix */
@media (orientation: landscape) and (max-device-width: 768px) {
  html,
  body {
    -webkit-text-size-adjust: 100%;
  }
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  background: #FFFFFF;
  font-size: 14px;
  line-height: 1.4em;
  font-family: 'Oxygen', 'sans-serif';
  color: #333333;
  font-weight: 300;
}

h1, h2, h3, h4, h5 {
  color: #333333;
  font-weight: 400;
  line-height: 1.2em;
  margin: 0;
}

h1, .h1-like {
  font-size: 30px;
  font-weight: 300;
}

h2, .h2-like, .title-section {
  font-size: 30px;
  margin-bottom: 20px;
}

.title-section {
  font-weight: 400;
}

h3, .h3-like {
  font-size: 20px;
}

h4, .h4-like {
  font-size: 16px;
}

h5, .h5-like {
  font-size: 14px;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  text-decoration: none;
  color: #333;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.tablet-only {
  display: none !important;
}

.mobile-tablet-only {
  display: none !important;
}

.mobile-only {
  display: none !important;
}

/* =======================
  Buttons
======================= */
.primary-btn {
  display: inline-block;
  height: 40px;
  font-weight: 700;
  padding: 8px 20px 0 20px;
  -webkit-appearance: none;
  border-radius: 20px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

/* === Primary === */
.primary-btn {
  /* color: #248ACF;
  border: 1px solid #fff;
  background: #fff; */
  color: #fff;
  background: #248ACF;
  border: 1px solid #248ACF;

}

.primary-btn:hover {
  color: #248ACF;
  background: #fff;
  border: 1px solid #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.primary-btn:active {
  color: #248ACF;
  background: none;
}

/* === Backtop === */
.backtop:before {
  content: "";
  display: block;
  background: url("../images/icons.png") no-repeat 0 -170px;
  width: 30px;
  height: 30px;
  margin: 0 auto 10px auto;
}

/* =======================
  Unsemantic Grid
  Doc : http://unsemantic.com/
======================= */
.grid-container {
  max-width: 960px;
}

.grid-container.container-alt {
  max-width: 800px;
}

/* Header
-------------------------------------------------------------------------------------------------------*/
.header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 60px;
  z-index: 9999;
}

.header.fixed {
  top: -60px;
  position: fixed;
  background: #202b3c;
}

.header.fixed.animated {
  top: 0px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.header .logo {
  float: left;
  margin-top: 12px;
}

/* =======================
  Menu
======================= */
.menu {
  float: right;
}

.menu li {
  float: left;
}

.menu li a {
  color: #FFF;
  display: block;
  padding: 18px 20px 0 20px;
  height: 60px;
}

.menu ul li a:hover,
.menu ul li a.current {
  font-weight: bold;
  color: #248ACF;
}

/* Contenu
-------------------------------------------------------------------------------------------------------*/
.content {
  padding: 30px 0 40px 0;
}

.content.landing {
  padding-top: 60px;
  padding-bottom: 0;
  background: url("../images/atelier-bg-01.jpg") rgb(32,43,60) no-repeat center top;
  background-size: 100% auto;
}

.content p {
  margin: 0 0 10px 0;
}

/* =======================
  Landing
======================= */
.opentime {
  display: block;
  margin: 30px auto 0 auto;
}

.content.landing {
  text-align: center;
}

.content.landing h1 {
  color: #FFF;
  margin: 30px 0 30px 0;
}

.content.landing h1 + p {
  font-size: 20px;
  color: #FFF;
  margin-bottom: 30px;
}

.content.landing h1 + p + a {
  margin-bottom: 60px;
}

.screen-area {
  background: url("../images/bg-grey.png") repeat-x left bottom;
  padding-bottom: 30px;
}

.screen-area > div {
  position: relative;
}

.screen-area .laptop {
  background: url("../images/macbook.png") no-repeat left top;
  width: 650px;
  height: 403px;
  margin: 0 auto;
  padding: 26px 0 0 75px;
}

.screen-area .laptop .screen-content {
  width: 500px;
  height: 312px;
  overflow: hidden;
}

.screen-area .phone {
  width: 178px;
  height: 340px;
  position: absolute;
  bottom: 0;
  right: 95px;
}

.screen-area .phone p {
  position: relative;
  z-index: 99;
  margin-top: 150px;
  padding: 0 20px;
}

.screen-area .phone p strong {
  font-weight: 400px;
  font-size: 16px;
}

.screen-area .phone .screen-content {
  width: 145px;
  height: 210px;
  overflow: hidden;
  position: absolute;
  top: 71px;
  left: 15px;
}

/* =======================
  Sections
======================= */
.section-05 h1,
.section-05 h2 {
  color: #FFF;
}

/* BG */
.section-02 {
  background: #efefef;
  padding-bottom: 0;
  overflow: hidden;
}

.section-03 {
  padding: 50px 0;
  background: url("../images/atelier-bg-02.jpg") no-repeat center center;
  background-size: 100% auto;
}

.section-04 {
  padding-bottom: 0;
  overflow: hidden;
}

.section-05 {
  padding: 50px 0;
  background: url("../images/atelier-bg-03.jpg") rgb(32,43,60) no-repeat center center;
  background-size: 100% auto;
}

.signup {
  background: #efefef;
}

/* Screen */
.small-screen {
  width: 280px;
  height: 200px;
  border-radius: 10px;
  -webkit-box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.big-screen {
  padding-top: 17px;
  background: url("../images/browser.png") no-repeat 0 0;
  width: 600px;
  height: 390px;
  margin: 30px auto 0 auto;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  -webkit-box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 4px 0px rgba(0, 0, 0, 0.25);
}

/* Title */
.title-icon:before {
  background: url("../images/icons.png") no-repeat 0 0;
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 10px auto;
}

.title-icon.calendar:before {
  background: url("../images/icons.png") no-repeat 0 0;
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 10px auto;
}

.title-icon.quote:before {
  background-position: -50px 0;
}

.title-icon.chart:before {
  background-position: -100px 0;
}

.title-icon.tick:before {
  background-position: -150px 0;
}

.title-icon.left-icon {
  position: relative;
  padding-left: 150px;
  text-align: left;
}

.title-icon.left-icon + p {
  padding-left: 150px;
  text-align: left;
}

.title-icon.left-icon:before {
  background: url("../images/icons.png") no-repeat 0 -50px;
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  position: absolute;
  left: 0;
  top: 0;
}

/* List */
.key-point {
  max-width: 860px;
  margin: 40px auto 40px auto;
}

.key-point li {
  margin: 0 10px 20px 10px;
  color: #248ACF;
  border: 1px solid #fff;
  background-color: #fff;
  display: inline-block;
  height: 40px;
  font-weight: 700;
  padding: 8px 20px 0 20px;
  border-radius: 20px;
}

.price {
  margin: 40px 0 0 0;
}

.price li {
  margin-bottom: 20px;
}

.price li span {
  color: #248ACF;
  border: 1px solid #fff;
  background-color: #fff;
  display: inline-block;
  height: 40px;
  font-weight: 400;
  padding: 8px 20px 0 20px;
  border-radius: 40px;
}

.price li:first-child span {
  color: #FFF;
  border: 1px solid #248ACF;
  background: #248ACF;
  font-size: 28px;
  height: 50px;
  padding: 12px 50px 0 50px;
}

.price li + li span {
  font-size: 20px;
}

.price li + li + li span {
  font-size: 16px;
}

/* =======================
  Form
======================= */
form {
  position: relative;
}

form p {
  position: relative;
  margin: 0 0 10px 0;
}

form input[type="text"],
form input[type="email"],
form input[type="date"],
form input[type="password"],
form textarea,
form select {
  border: 1px solid #e4e4e4;
  background: #FFF;
  padding: 6px 10px;
  width: 100%;
  height: 40px;
  color: #333;
  -webkit-border-radius: 0;
  -webkit-appearance: none !important;
  border-radius: 2px;
  font-size: 16px;
  font-family: arial, 'sans-serif';
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="date"]:focus,
form input[type="password"]:focus,
form textarea:focus,
form select:focus {
  border-color: #248ACF;
}

form textarea {
  min-height: 100px;
  width: 340px;
  vertical-align: top;
}

form input[type="submit"] {
  border: none;
  cursor: pointer;
}

/* Input icon */
form .icon-input {
  padding-left: 50px;
}

/* Date Field */
form .date-field {
  color: #000;
  margin: 15px 0 20px 0;
}

form .date-field label {
  display: block;
  color: #000;
  margin-bottom: 10px;
}

form .date-field input {
  width: 100px;
  margin: 0 5px;
}

/* Custom Checkbox */
/* DOC : http://www.creativejuiz.fr/blog/tutoriels/personnaliser-aspect-boutons-radio-checkbox-css */
form .no-field-label label {
  margin-left: 190px;
  margin-bottom: 10px;
  display: block;
}

.oldie form .no-field-label label {
  margin-left: 0;
  display: inline;
}

form .custom-radio input + label {
  margin-right: 20px;
  padding-top: 4px;
}

form .custom-checkbox input[type="checkbox"]:not(:checked),
form .custom-checkbox input[type="checkbox"]:checked,
form .custom-radio input[type="radio"]:not(:checked),
form .custom-radio input[type="radio"]:checked {
  position: absolute;
  left: -9999px;
}

form .custom-checkbox input[type="checkbox"]:not(:checked) + label,
form .custom-checkbox input[type="checkbox"]:checked + label,
form .custom-radio input[type="radio"]:not(:checked) + label,
form .custom-radio input[type="radio"]:checked + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}

/* Aspect des checkboxes */
form .custom-checkbox label {
  margin-bottom: 20px;
}

form .custom-checkbox input[type="checkbox"]:not(:checked) + label:before,
form .custom-checkbox input[type="checkbox"]:checked + label:before,
form .custom-radio input[type="radio"]:not(:checked) + label:before,
form .custom-radio input[type="radio"]:checked + label:before {
  content: '';
  position: absolute;
  left: 1px;
  top: 3px;
  width: 16px;
  height: 16px;
  border: 1px solid #CCC;
  background: #FFF;
}

form .custom-checkbox input[type="checkbox"]:checked + label:before,
form .custom-radio input[type="radio"]:checked + label:before {
  /*border: 1px solid #333;*/
}

form .custom-checkbox input[type="checkbox"]:not(:checked) + label:before,
form .custom-checkbox input[type="checkbox"]:checked + label:before {
  top: -1px;
}

form .custom-radio input[type="radio"]:not(:checked) + label:before,
form .custom-radio input[type="radio"]:checked + label:before {
  border-radius: 20px;
}

/* Aspect général de la coche */
form .custom-checkbox input[type="checkbox"]:not(:checked) + label:after,
form .custom-checkbox input[type="checkbox"]:checked + label:after,
form .custom-radio input[type="radio"]:not(:checked) + label:after,
form .custom-radio input[type="radio"]:checked + label:after {
  content: '✔';
  position: absolute;
  top: 0;
  left: 6px;
  font-size: 14px;
  color: #333;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  transition: all .2s;
}

form .custom-radio input[type="radio"]:not(:checked) + label:after,
form .custom-radio input[type="radio"]:checked + label:after {
  content: '';
  top: 8px;
  left: 6px;
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 10px;
}

/* Aspect si "pas cochée" */
form .custom-checkbox input[type="checkbox"]:not(:checked) + label:after,
form .custom-radio input[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
}

/* Aspect si "cochée" */
form .custom-checkbox input[type="checkbox"]:checked + label:after,
form .custom-radio input[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}

/* aspect désactivée */
form .custom-checkbox input[type="checkbox"]:disabled:not(:checked) + label:before,
form input[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}

/* styles de la coche (si cochée/désactivée) */
form .custom-checkbox input[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}

/* on style aussi le label quand désactivé */
form .custom-checkbox input[type="checkbox"]:disabled + label {
  color: #aaa;
}

/* aspect au focus de l'élément */
form .custom-checkbox input[type="checkbox"]:checked:focus + label:before,
form .custom-checkbox input[type="checkbox"]:not(:checked):focus + label:before {
  /*border: 1px dotted blue; */
}

/* === Error === */
form .alert-field input[type="text"],
form .alert-field input[type="email"],
form .alert-field input[type="date"],
form .alert-field input[type="password"],
form .alert-field textarea,
form .alert-field select,
form .alert-field .customSelect {
  border: 1px solid #EF4343;
}

.signup form {
  background: #FFF;
}

.signup h3 {
  margin-bottom: 30px;
}

.signup h3 strong {
  color: #248ACF;
}

.signup form + p {
  font-size: 20px;
  margin: 30px 0 0 0;
}

.signup form fieldset {
  margin: 20px 0 0 0;
  padding: 0 20px;
  float: left;
  width: 33%;
  display: block;
  vertical-align: top;
  border: none;
  text-align: left;
  min-height: 340px;
  margin-bottom: 20px;
}

.signup form fieldset + fieldset {
  border-left: 1px solid #efefef;
}

.signup form fieldset legend {
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
  font-size: 20px;
}

.signup form fieldset legend:before {
  content: "1";
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 20px auto;
  border: 1px solid #efefef;
  color: #efefef;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  line-height: 1.6em;
  font-size: 30px;
}

.signup form fieldset + fieldset legend:before {
  content: "2";
}

.signup form fieldset + fieldset + fieldset legend:before {
  content: "3";
}

.signup form fieldset:hover legend:before {
  /*color: $yellow;
  border-color: $yellow;*/
}

.signup form fieldset.focus legend:before {
  color: #248ACF;
  border-color: #248ACF;
}

.signup form fieldset .itemsform > li {
  margin-bottom: 10px;
}

.signup form fieldset label {
  display: block;
  color: #999;
  margin-bottom: 6px;
}

.signup form fieldset + .itemsform {
  background: #202b3c;
  clear: both;
  text-align: right;
  position: relative;
  padding: 30px 20px;
}

.signup form fieldset + .itemsform:after {
  position: absolute;
  top: 0;
  right: 15%;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 25px 0 25px;
  border-color: #ffffff transparent transparent transparent;
}

.signup form .itemsform-submit {
  display: inline-block;
  text-align: center;
  width: 33%;
}

.signup form .itemsform-submit input {
  display: inline-block;
  height: 40px;
  font-weight: 700;
  padding: 0 20px 0 20px;
  -webkit-appearance: none;
  border-radius: 20px;
  background: none;
  color: #fff;
  border: 1px solid #248ACF;
  background-color: #248ACF;
  font-weight: 400;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  font-size: 16px;
}

.signup form .itemsform-submit input:hover {
  background: #fff;
  color: #248ACF;
  border: 1px solid #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.signup form .field_complement li {
  color: #FFF;
  padding: 6px 8px;
  position: relative;
  display: block;
  font-size: 12px;
  margin: 0 0 10px 0;
  position: relative;
}

.signup form .field_complement li:after {
  display: block;
  content: "";
  position: absolute;
  top: -5px;
  left: 25px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 5px 5px;
}

.signup form .field_complement .errors {
  color: #FFF;
  background: #E83348;
}

.signup form .field_complement .errors li:after {
  border-color: transparent transparent #E83348 transparent;
}

.signup form .field_complement .placeholder {
  color: #FFF;
  background: #55BF2B;
}

.signup form .field_complement .placeholder li:after {
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #55BF2B transparent;
}

/* =======================
  Signed up
======================= */

.content.landing.signedup {
  padding-top: 60px;
  padding-bottom: 0;
  background: url("../images/archi-bg-03.jpg") #202b3c no-repeat center top;
  background-size: cover;
}

.signedup h1 {
	font-size: 30px;
	font-weight: 800;
}

.signedup p {
	font-size: 25px !important;
}

.signedup ul {
	font-size: 20px;
}

.price li a {
  color: #248ACF;
}

.signedup .price li:first-child span {
  color: #248ACF;
  background: none;
  font-size: 20px;
  height: 50px;
  padding: 12px 50px 0 50px;
}


/* Footer
-------------------------------------------------------------------------------------------------------*/
.footer {
  background: #999;
  padding: 20px 0;
  font-size: 12px;
  color: #333;
}

.itemsform .itemsform-cgv div.cgv .cvg-text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

h2 .go-summary {
    display: inline-block;
    position: relative;
    width: 12px;
    height: 8px;
    text-indent: -9999px;
    background: url(../images/arrow-top.png) no-repeat right top;
    float: right;
}

a#account-link { font-weight: bold; text-decoration: underline; }
