@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('../fonts/yellix/yellix.css');
@import url('../fonts/icofont/icofont.min.css');

body{
  font-family: 'span', sans-serif;
}

h1{
  font-size: 49px !important;
  line-height: 60px !important;
  margin-bottom: 12px !important;
  color: white;
  font-weight: 800;
  letter-spacing: 2px;
}
h2{
  letter-spacing: 0.1em;
  font-size: 4em;
  font-weight: 900;
  line-height: 1.5em;
}

p{
  font-weight: 100;
  letter-spacing: 1.3px;
}
p.emphasis{
  font-size: 1.5rem;
  letter-spacing: .1rem;
  line-height: 2.5rem;
}
a{
  -moz-transition: all .4s;
  -webkit-transition: all .4s;
  transition: all .4s;
  color: #b1b1b1;
  text-decoration: none;
  letter-spacing: .08rem;
}
a:hover{
  color: #8d8c8c;
}
h1{
  position: relative;
}
h1:after, h1:before {
  content: "\A";
  display: inline-block;
  height: 10px;
  position: absolute;
  top: -25px;
}
/*
h1:before {
  background: linear-gradient(270.2deg, #646eff 1.41%,#32ffff 88.61%);
  border-radius: 10px;
  width: 40px;
}
h1:after {
  background: #fff;
  border-radius: 100%;
  left: 30px;
  width: 10px;
  z-index: 1000;
}*/
.bg-colored{
  /*
  background : #036477;
  background-image:linear-gradient(to top, #112129 0%, #036477 100%);
  */
  background-color: black;
  background-image: url(../images/background_grad.jpeg);
  background-position: 50%;
  background-size: cover;
}

.poweredBy{
  position: absolute;
  color: white;
  margin: 20px 0px 0px 50px;
  width: auto;
}
.poweredBy a{
  color: white;
}
.poweredBy:before{
  content: '';
  position: absolute;
  width: 36px;
  background-color: white;
  height: 2px;
  left: -50px;
  top: 12px;
}


.container-75{
  width: 75%;
}
.leftCol{
  padding: 70px 0px;
  position: relative;
}
.rightCol{
  min-height: 100vh;
}

button,button:active,button:focus{
  outline: none !important;
  box-shadow : none !important;
}
button.btn-huge, a.btn-huge{
  background: #FFFFFF;
  color: #222222;
  padding: 24px;
  width: 100%;
  border: 2px solid #DDDDDD;
  -moz-transition: all .4s;
  -webkit-transition: all .4s;
  transition: all .4s;
}
button.btn-primary, a.btn-primary{
  background: #21e2e2;
  border: 2px solid #21e2e2;
  color: white;
}
button.btn-primary:hover, a.btn-primary:hover{
  background: #1ad5d5 !important;
  border-color: #21e2e2;
}
.bg-primary{
  background-color: #21e2e2 !important;
}
.c-primary{
  color: #21e2e2;
}
.c-secondary{
  color: #646EFF;
}
button.btn-huge:hover, a.btn-huge:hover{
  background: #fafafa;
}


.footer-questionnaire{
  bottom: 0px !important;
  position: fixed !important;
  z-index: 2 !important;
  width: 50vw;
  background: rgb(255, 255, 255, .7);
}
.footer-questionnaire .progress{
  height: 3px;
  background-color: #ced4d9;
}
.footer-questionnaire .progress .progress-bar{
  background-color: black;
}


.btn{
  border-radius: 0px;
  padding: 10px 38px;
}


input[type="number"] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none;
}

input.ng-invalid-number ~ label, .ng-touched.ng-invalid-required ~ label{
  color: #ef2b2b;
}

.table>:not(caption)>*>* {
  padding: 1.3rem .5rem;
  font-weight: 100;
}
.table>:not(:first-child) {
    border-top: 0px;
}
.table td, .table thead th{
  text-align: center;
}
.table thead th{
  font-weight: 300;
}
.table tbody th span{
  font-weight: 300;
  color: #3e94b1;
  font-size: 16px;
}
td{
  vertical-align: middle;
}

table.small >:not(caption)>*>*{
  padding: 0.7rem 0.5rem;
}


.circle1, .circle2{
  position: absolute;
  animation: mooving 5s linear infinite;  
}
.circle1{
  width: 250px;
  top: 15%;
  right: 15%;
}
.circle2{
  top: 50%;
  animation: mooving 10s linear infinite;
}
.overlay{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background : rgba(0, 0, 0, .22);
  z-index: 0;
}
/*** Adaptation simulateur 2 ***/
.simulateur_2 h1{
  font-size: 55px !important;
}
.simulateur_2 .bg-colored{
  background-image: url(../images/bg-2.jpg);
  background-size: cover;
}
.simulateur_2 .circle1, .simulateur_2 .circle2{
  display: none;
}
.selection a{
  color: #000000;
  font-weight: 700;
}
.selection a:hover{
  color: white;
}
.selection a.active{
  text-decoration: underline;
}

@keyframes mooving {
  0% {
    transform: translate3d(0px, 0px, 0px);
  }
  25% {
    transform: translate3d(0px, -13px, 0px);
  }
  50% {
    transform: translate3d(0px, 0px, 0px);
  }
  75% {
    transform: translate3d(0px, 13px, 0px);
  }
  100% {
    transform: translate3d(0px, 0px, 0px);
  }
}

@media (max-width: 1569px){
  label{
    font-size: 13px;
    padding-top: 19px;
  }
}
@media (max-width: 1347px){
  .container-75{
    width: 85%;
  }
}

@media (max-width: 767.27px){
  .leftCol{
    padding: 100px 0px 40px 0px;
  }
  .rightCol{
    min-height: calc(100vh - 300px);
    align-items: start !important;
  }
  .footer-questionnaire{
    width: 100vw;
  }
  .footer-questionnaire .container{
    max-width: 100%;
  }

  .container-75{
    margin-bottom: 160px !important;
  }
}

@media (max-width: 550px){
  h1{
    font-size: 40px !important;
  }
  .poweredBy{
    display: none;
  }
}

@media (max-width: 475px){
  .footer-questionnaire .col.t-right button{
    padding: 10px 31px;
  }
  .footer-questionnaire .col.t-right button:first-child {
    margin-right: 15px !important;
  }
}



.page-break  { display: none; }
@media print {
  body{
    width: 900px;
  }
  .page-break  { display: block; page-break-before: always; }
  .noPrint{
    display: none;
  }
  h1{
    color: #36186f;
  }
  #myChart{
    width: 900px !important;
  }
}



