@font-face {
    font-weight: normal;
    font-style: normal;
    font-family: 'icomoon';
    src:url('../fonts/icomoon/icomoon.eot?-9heso');
    src:url('../fonts/icomoon/icomoon.eot?#iefix-9heso') format('embedded-opentype'),
    url('../fonts/icomoon/icomoon.woff?-9heso') format('woff'),
    url('../fonts/icomoon/icomoon.ttf?-9heso') format('truetype'),
    url('../fonts/icomoon/icomoon.svg?-9heso#icomoon') format('svg');
}

.simform {
    position: relative;
    margin: 0 auto;
    padding: 0px 0;
    max-width: 860px;
    width: 100%;
    text-align: left;
    font-size: 2.5em;
    margin-bottom: 2em;
}

.simform .submit {
    display: none;
}

/* Question list style */
.simform ol {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    -webkit-transition: height 0.4s;
    transition: height 0.4s;
}

.simform ol:before {
    content: '';
    background-color: rgba(0,0,0,0.1);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 46px;
    /*height: 2.35em;*/
    border-radius: 11px;
}

.questions li {
    z-index: 100;
    position: relative;
    visibility: hidden;
    height: 0;
    -webkit-transition: visibility 0s 0.4s, height 0s 0.4s;
    transition: visibility 0s 0.4s, height 0s 0.4s;
}

.questions li.current,
.no-js .questions li {
    visibility: visible;
    height: auto;
    -webkit-transition: none;
    transition: none;
}

/* Labels */
.questions li > span {
    display: block;
    overflow: hidden;
}

.questions li > span label {
    display: block;
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.questions li.current > span label,
.no-js .questions li > span label {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.show-next .questions li.current > span label {
    -webkit-animation: moveUpFromDown 0.4s both;
    animation: moveUpFromDown 0.4s both;
}

@-webkit-keyframes moveUpFromDown {
    from { -webkit-transform: translateY(100%); }
    to { -webkit-transform: translateY(0); }
}

@keyframes moveUpFromDown {
    from { -webkit-transform: translateY(100%); transform: translateY(100%); }
    to { -webkit-transform: translateY(0); transform: translateY(0); }
}

/* Input field */
.questions input {
    display: block;
    margin: 0 0 0 0;
    padding: 7px 1em 7px 4px;
    width: calc(100%);
    border: none;
    background: rgba(255, 255, 255, 0.50);
    color: rgba(0,0,0,0.8);
    font-size: 25px;
    text-align: center;
    color: #565554;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.questions .current input,
.no-js .questions input {
    opacity: 1;
}

.questions input:focus,
.simform button:focus {
    outline: none;
}

/* Next question button */
.next {
    position: absolute;
    right: 0;
    /*bottom: 5em;*/
    top: 0;
    display: block;
    padding: 0;
    width: 2em;
    height: 1em;
    border: none;
    background: none;
    color: rgba(208, 59, 89, 0.85);
    text-align: center;
    opacity: 0;
    z-index: 100;
    cursor: pointer;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
    pointer-events: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.next:hover {
    color: rgb(37, 86, 119);
}

.next::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 87%;
    content: "\e600";
    text-transform: none;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    font-family: 'icomoon';
    line-height: 1.5;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.next.show {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    pointer-events: auto;
}

/* Progress bar */
.simform .progress {
    width: 0%;
    height: 0.05em;
    background: rgb(48, 118, 170);
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
}

.simform .progress::before {
    position: absolute;
    top: 2%;
    width: 100%;
    height: inherit;
    background: none;
    content: '';
}

/* Number indicator */
.simform .number {
    position: absolute;
    right: 0;
    overflow: hidden;
    margin: 0;
    width: 3em;
    font-weight: 700;
    font-size: 0.6em;
    color: #bf629a;
}

.simform .number:after {
    position: absolute;
    left: 50%;
    content: '/';
    opacity: 0.4;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.simform .number span {
    float: right;
    width: 40%;
    text-align: center;
}

.simform .number .number-current {
    float: left;
}

.simform .number-next {
    position: absolute;
    left: 0;
}

.simform.show-next .number-current {
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.simform.show-next .number-next {
    -webkit-animation: moveUpFromDown 0.4s both;
    animation: moveUpFromDown 0.4s both;
}

/* Error and final message */
.simform .error-message,
.simform .final-message {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.simform .error-message {
    padding: 0.4em 3.5em 0 0;
    width: 100%;
    color: rgba(0,0,0,0.7);
    font-style: italic;
    font-size: 0.4em;
}

.final-message {
    top: 50%;
    left: 0;
    padding: 0.5em;
    width: 100%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.error-message.show, .final-message.show {
    visibility: visible;
    opacity: 1;
    margin-top: 30px;
    color: #666;
}

.final-message.show {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

/* Final hiding of form / showing message */
.simform-inner.hide {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s, visibility 0s 0.3s;
    transition: opacity 0.3s, visibility 0s 0.3s;
}

/* No JS Fallback */
.no-js .simform {
    font-size: 1.75em;
}

.no-js .questions li {
    padding: 0 0 2em;
}

.no-js .simform .submit {
    display: block;
    float: right;
    padding: 10px 20px;
    border: none;
    background: rgba(0,0,0,0.3);
    color: rgba(0,0,0,0.4);
}

.no-js .simform .controls {
    display: none;
}

/* Remove IE clear cross */
input[type=text]::-ms-clear {
    display: none;
}


.custom-checkbox {
  min-height: 1rem;
  padding-left: 0;
  margin-right: 0;
  cursor: pointer; 
}
  .custom-checkbox .custom-control-indicator {
    content: "";
    display: inline-block;
    position: relative;
    width: 30px;
    height: 10px;
    background-color: #818181;
    border-radius: 15px;
    margin-right: 10px;
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
    vertical-align: middle;
    box-shadow: none; 
  }
    .custom-checkbox .custom-control-indicator:after {
      content: "";
      position: absolute;
      display: inline-block;
      width: 18px;
      height: 18px;
      background-color: #f1f1f1;
      border-radius: 21px;
      box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
      left: -2px;
      top: -4px;
      -webkit-transition: left .3s ease, background .3s ease, box-shadow .1s ease;
      transition: left .3s ease, background .3s ease, box-shadow .1s ease; 
    }
  .custom-checkbox .custom-control-input:checked ~ .custom-control-indicator {
    background-color: #de608b;
    background-image: none;
    box-shadow: none !important; 
  }
    .custom-checkbox .custom-control-input:checked ~ .custom-control-indicator:after {
      background-color: rgb(210, 30, 91);
      left: 15px; 
    }
  .custom-checkbox .custom-control-input:focus ~ .custom-control-indicator {
    box-shadow: none !important; 
  }
  #editMyvyouItem{
      display: none;
  }
    .link a {
        color: rgb(209, 31, 92);
        margin: 2px auto;
        display: block;
        /* float: right; */
        font-size: 16px;
        /* margin-right: 68px; */
        text-align: center;
        text-decoration: underline;
        /* margin-top: .8em; */
        width: 100%;
    }
    p#paragraphtitle {
        margin-top: 60px;
}
     .register a.infoText {
        color: #807e7e;
        text-decoration: none;
        font-size: 14px;
        font-weight: 300;
    }
     .paragraphGeneral#paragraphtitle {
         color: #3076AA;
         font-size: 28px;
     }
     .custom-control.custom-checkbox {
         color: #3076AA;
     }
     .number-current, .number-total, .next, .simform .number:after {
         color: #3076AA;
     }
     .custom-checkbox .custom-control-input:checked ~ .custom-control-indicator {
    background-color: #337ab7;
    background-image: none;
    box-shadow: none !important;
}
     .custom-checkbox .custom-control-input:checked ~ .custom-control-indicator:after {
        background-color: #1f588a;
        left: 15px;
    }
     .link.main-conto a {
         color: #1f588a;
         margin-top: 20px;
     }
     .codrops-header img {
    height: 50px;
    margin-bottom: 00px;
}
     #footerTextNew a.firstText {
         color: #ccc;
     }
     .footerText#footerTextNew a.firstText {
        font-size: 15px;
        color: #444040;
    }
     .register {
    padding-top: 25px;
}
/* Adjust form for smaller screens */
@media screen and (max-width: 44.75em) {
    .simform {
        font-size: 1.8em;
    }
}

@media screen and (max-width: 33.5625em) {
    .simform {
        font-size: 1.2em;
    }
}
.register a:hover{
    cursor: text;
}
strong.emailheighlight {
    color: rgba(209, 31, 92, .85);
}