/*
a {
  color: @green-text;
  text-decoration: none;
}*/
/* --------------------------------

Form

-------------------------------- */
.cd-form {
  width: 100%;
}
.cd-form::after {
  clear: both;
  content: "";
  display: table;
}
.cd-form fieldset {
  margin: 0;
  padding: 0 5%;
}
.cd-form fieldset.smallFieldset {
  width: 47.5%;
}
.cd-form fieldset.smallFieldset.leftFieldset {
  margin-right: 5%;
}
.cd-form fieldset.smallFieldset .cd-input-container {
  width: 100%;
  min-width: 0px;
  margin-left: 0% !important;
}
.cd-form fieldset.smallFieldset .cd-input-container input {
  width: 100%;
}
.cd-form fieldset.largeFieldset {
  width: 100%;
}
.cd-form fieldset.largeFieldset .cd-input-container {
  width: 100%;
  min-width: 0px;
  margin-left: 0% !important;
}
.cd-form fieldset.largeFieldset .cd-input-container input {
  width: 100%;
}
.cd-form fieldset.floatingFieldset {
  padding: 0px !important;
  float: left;
  margin-bottom: 10px;
}
.cd-form legend {
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 2rem;
  border-bottom: 1px solid #ecf0f1;
}
.cd-input-container {
  width: 45%;
  min-width: 279px;
  float: left;
}
.cd-input-container:last-child {
  margin-left: 10% !important;
}
.nofloat .cd-input-container {
  float: none;
}
.cd-input-container-large {
  width: 100%;
}
.cd-input-container-large input {
  width: 100% !important;
  padding-right: 116px !important;
}
.cd-form div {
  /* form element wrapper */
  position: relative;
  margin: 20px 0;
}
.cd-form h4,
.cd-form .cd-label {
  font-size: 11px;
  color: #94aab0;
  margin-bottom: 10px;
}
.cd-form h4 {
  position: absolute;
  top: -17px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
.cd-form .cd-label {
  display: block;
}
.cd-form input,
.cd-form textarea,
.cd-form select,
.cd-form label {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  color: #1c535e;
}
.cd-form input[type="text"],
.cd-form input[type="password"],
.cd-form input.typeNumber,
.cd-form input[type="email"],
.cd-form textarea,
.cd-form select,
.cd-form legend {
  display: block;
  width: 280px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cd-form input[type="text"],
.cd-form input[type="password"],
.cd-form input.typeNumber,
.cd-form input[type="email"],
.cd-form textarea,
.cd-form select {
  /* general style for input elements */
  padding: 12px;
  border: 1px solid #cfd9db;
  background-color: #ffffff;
  border-radius: 0.5em;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}
.cd-form input[type="text"]:focus,
.cd-form input[type="password"]:focus,
.cd-form input[type="email"]:focus,
.cd-form textarea:focus,
.cd-form select:focus {
  outline: none;
  border-color: #96ced9;
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.2);
}
.cd-form select.birthdaySmallInput,
.cd-form input.birthdaySmallInput {
  font-size: 1.1em;
  display: inline-block;
  width: 22.5% !important;
  margin-right: 2.5%;
}
.cd-form select.birthdayLargeInput,
.cd-form input.birthdayLargeInput {
  font-size: 1.1em;
  display: inline-block;
  width: 50% !important;
}
.cd-form .cd-select {
  /* select element wapper */
  position: relative;
}
.cd-form .cd-select:focus {
  outline: 0;
}
.cd-form .cd-select::after {
  /* arrow icon for select element */
  content: '';
  position: absolute;
  z-index: 1;
  right: 16px;
  top: 50%;
  margin-top: -8px;
  display: block;
  width: 16px;
  height: 16px;
  background: url("?pf=citc/img/cd/cd-icon-arrow-blue.svg") no-repeat center center;
  pointer-events: none;
}
.cd-form select {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.cd-form select::-ms-expand {
  display: none;
}
.cd-form .cd-form-list {
  margin-top: 16px;
}
.cd-form .cd-form-list::after {
  clear: both;
  content: "";
  display: table;
}
.cd-form .cd-form-list li {
  /* wrapper for radio and checkbox input types */
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0 26px 16px 0;
  float: left;
}
.cd-form input[type=radio],
.cd-form input[type=checkbox] {
  /* hide original check and radio buttons */
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: 2;
}
.cd-form input[type="radio"] + label,
.cd-form input[type="checkbox"] + label {
  padding-left: 24px;
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after {
  /* custom radio and check boxes */
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="checkbox"] + label::before {
  border: 1px solid #cfd9db;
  background: #ffffff;
}
.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::after {
  background-color: #ED5A5C;
  background-position: center center;
  background-repeat: no-repeat;
  display: none;
}
.cd-form input[type="radio"] + label::after {
  /* custom image for radio button */
  background-image: url("?pf=citc/img/cd/cd-icon-radio.svg");
}
.cd-form input[type="checkbox"] + label::after {
  /* custom image for checkbox */
  background-image: url("?pf=citc/img/cd/cd-icon-check.svg");
}
.cd-form input[type="radio"]:focus + label::before,
.cd-form input[type="checkbox"]:focus + label::before {
  /* add focus effect for radio and check buttons */
}
.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::after {
  display: block;
}
.cd-form input[type="radio"]:checked + label::before,
.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::before,
.cd-form input[type="checkbox"]:checked + label::after {
  -webkit-animation: cd-bounce 0.3s;
  -moz-animation: cd-bounce 0.3s;
  animation: cd-bounce 0.3s;
}
.cd-form textarea {
  min-height: 200px;
  resize: vertical;
  overflow: auto;
}
.cd-form input[type="submit"] {
  /* button style */
  border: none;
  background: #7ed49a;
  border-radius: 0.25em;
  padding: 16px 20px;
  color: #ffffff;
  font-weight: bold;
  float: right;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.no-touch .cd-form input[type="submit"]:hover {
  background: #42a2e1;
}
.cd-form input[type="submit"]:focus {
  outline: none;
  background: #2b3e51;
}
.cd-form input[type="submit"]:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}
/*.cd-form [required] {
  background: url("?pf=citc/img/cd/cd-required.svg") no-repeat top right;
}*/
.cd-form .error-message p {
  background: #e94b35;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 0.25em;
  padding: 16px;
}
.cd-form .error {
  border-color: #e94b35 !important;
}
.dialog .cd-form .dialog__footer div {
  margin: 0;
}
.dialog .cd-form .dialog__footer .condition-general {
  display: inline-block;
  position: relative;
  text-align: right;
}
.dialog .cd-form .dialog__footer .condition-general label {
  font-size: 15px;
  font-style: italic;
  color: #B0B0B0;
}
.dialog .cd-form .dialog__footer .condition-general a {
  text-decoration: underline;
}
.dialog .cd-form .dialog__footer .create-button-container {
  display: inline-block;
  width: 50%;
  padding-left: 38px;
}
.dialog .cd-form .dialog__footer .create-button-container .create-button {
  cursor: pointer;
  padding: 20px;
  width: 219px;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5em;
  background-color: #f05757;
}
@media only screen and (max-width: 600px) {
  .cd-input-container {
    width: 100%;
  }
  .cd-input-container:last-child {
    margin-left: 0 !important;
  }
  .cd-form input[type="text"],
  .cd-form input[type="password"],
  .cd-form input[type="email"],
  .cd-form textarea,
  .cd-form select {
    width: 100%;
  }
}
@media only screen and (min-width: 600px) {
  .cd-form div {
    /* form element wrapper */
    margin: 32px 0;
  }
  .cd-form legend + div {
    /* reduce margin-top for first form element after the legend */
    margin-top: 20px;
  }
  .cd-form h4,
  .cd-form .cd-label {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .cd-form input[type="text"],
  .cd-form input[type="password"],
  .cd-form input[type="email"],
  .cd-form textarea,
  .cd-form select {
    padding: 17.5px;
    padding-right: 40px;
  }
}
@-webkit-keyframes cd-bounce {
  0%,
  100% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes cd-bounce {
  0%,
  100% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(0.8);
  }
}
@keyframes cd-bounce {
  0%,
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@-webkit-keyframes cd-valid {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes cd-valid {
  0% {
    -moz-transform: scale(0);
  }
  1000% {
    -moz-transform: scale(1);
  }
}
@keyframes cd-valid {
  0% {
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.4);
    -ms-transform: scale(0.4);
    -o-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
/* --------------------------------

Custom icons

-------------------------------- */
.cd-form .icon input,
.cd-form .icon select,
.cd-form .icon textarea {
  padding-left: 54px !important;
}
/*.cd-form .user {
  background: url("?pf=citc/img/cd/cd-icon-user.svg") no-repeat 16px center;
}
.cd-form [required].user {
  background: url("?pf=citc/img/cd/cd-icon-user.svg") no-repeat 16px center, url("?pf=citc/img/cd/cd-required.svg") no-repeat top right;
}


.cd-form .company {
  background: url("?pf=citc/img/cd/cd-icon-company.svg") no-repeat 16px center;
}
.cd-form [required].company {
  background: url("?pf=citc/img/cd/cd-icon-company.svg") no-repeat 16px center, url("?pf=citc/img/cd/cd-required.svg") no-repeat top right;
}
.cd-form .email {
  background: url("?pf=citc/img/cd/cd-icon-email.svg") no-repeat 16px center;
}
.cd-form [required].email {
  background: url("?pf=citc/img/cd/cd-icon-email.svg") no-repeat 16px center, url("?pf=citc/img/cd/cd-required.svg") no-repeat top right;
}
.cd-form .budget {
  background: url("?pf=citc/img/cd/cd-icon-budget.svg") no-repeat 16px center;
}
.cd-form .message {
  background: url("?pf=citc/img/cd/cd-icon-message.svg") no-repeat 16px 16px;
}
.cd-form [required].message {
  background: url("?pf=citc/img/cd/cd-icon-message.svg") no-repeat 16px 16px, url("?pf=citc/img/cd/cd-required.svg") no-repeat top right;
}*/
.cd-wiwork-email:after {
  content: ".youcut.fr";
  position: absolute;
  z-index: 1;
  right: 75px;
  top: 50%;
  margin-top: -11px;
  display: block;
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.cd-form .cd-error {
  display: none;
  position: absolute;
  top: -18px;
  font-size: 11px;
  font-style: italic;
  color: #F05757;
  right: 0;
}
.cd-form .cd-error.active {
  display: block;
}
.cd-form .cd-valid {
  /*&:after {
      content: "";
      position: absolute;
      z-index: 1;
      right: 16px;
      top: 50%;
      margin-top: -8px;
      display: block;
      width: 16px;
      height: 16px;
      background: transparent url("?pf=citc/img/cd/cd-icon-arrow-blue.svg") no-repeat scroll center center;
      pointer-events: none;
    }*/
}
.cd-form .cd-valid.new:after {
  -webkit-animation: cd-valid 0.5s;
  -moz-animation: cd-valid 0.5s;
  animation: cd-valid 0.5s;
}
/* --------------------------------

FLoating labels

-------------------------------- */
.js .floating-labels div {
  margin: 17px 0;
}
.js .nofloat.floating-labels div {
  margin: 17px auto !important;
}
.js .floating-labels .cd-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 18px;
  cursor: text;
  -webkit-transition: top 0.2s, left 0.2s, font-size 0.2s;
  -moz-transition: top 0.2s, left 0.2s, font-size 0.2s;
  transition: top 0.2s, left 0.2s, font-size 0.2s;
}
.js .floating-labels .icon .cd-label {
  left: 56px;
}
.js .floating-labels .cd-label.float {
  /* move label out the input field */
  font-size: 11px;
  top: -17px;
  left: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 600px) {
  .js .floating-labels legend + div {
    /* reduce margin-top for first form element after the legend */
    margin-top: 16px;
  }
  .js .floating-labels .cd-label {
    top: 20px;
  }
}
.brand-news-list h2 {
  text-align: center;
}
.brand-news-list .brand-news {
  padding: 5px;
}
.collaborator-list {
  display: table;
}
.collaborator-list .collaborator-row {
  display: table-row;
}
.collaborator-list .collaborator {
  display: table-cell;
  width: 330px;
  vertical-align: top;
  padding: 5px;
}
.collaborator-list .collaborator .collaborator-picture {
  vertical-align: top;
  display: inline-block;
  width: 120px;
}
.collaborator-list .collaborator .collaborator-info {
  display: inline-block;
}
.collaborator-front-picture {
  width: 100px;
}
.form-social-button {
  border: 1px solid #dce0e0;
  display: block;
  font-weight: bold;
  margin: 0 auto;
  padding: 15px;
  text-align: left;
  text-decoration: none;
  width: 200px;
  cursor: pointer;
}
.form-social-button:hover {
  text-decoration: none;
}
#page-home .form-social-button.facebook {
  background: none repeat scroll 0 0 #4568b2;
  color: white;
}
#page-home .front-message {
  border-radius: 10px;
  margin-bottom: 2rem;
  padding: 1rem;
  font-size: 15px;
  padding-left: calc(1rem + 5px);
  position: relative;
  overflow: hidden;
}
#page-home .front-message:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #000;
}
.salon-presentation {
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: 15px;
  border: 1px solid #ccc;
  background: linear-gradient(to bottom, #fff 21%, #fcfcfc 99%);
  margin: 2rem 0;
}
.salon-presentation > *:last-child {
  margin-bottom: 0;
}
