/* Download selection */
.backgrond_platform_blocker {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	opacity: 0;
	background: rgba(0, 0, 0, 0.4);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
  z-index: 10;
  display: flex;
  justify-content: center;
}
.md-show {
	opacity: 1 !important;
	visibility: visible !important;
}

  a { text-decoration: none; }

  .platforms {
    z-index: 12;
    height: 200px;
    background: #fff;
    border-radius: 12px;
    visibility: hidden;
    transform: scale(.9);
    opacity: 0;
    overflow: hidden;
    transition: all .3s cubic-bezier(.67,.13,.1,.81);
    margin: auto;
    display: flex;
    flex-direction: row;
    width: min-content;
    padding: 0px 10px;
  }
  .platforms_target {
    visibility: visible;
    transform: scale(1);
    opacity: 1;
  }
  .platforms a {
    position: relative;
    top: 200px;
    width: 180px;
    height: 180px;
    border-radius: 6px;
    color: #fc6b3f;
    text-transform: uppercase;
    transition: top .5s cubic-bezier(.67,.13,.1,.81);
  }
  .platforms a:nth-child(1) {
    transition-delay: .1s;
  }
  .platforms a:nth-child(3) {
    transition-delay: .1s;
  }
  .platforms_target_a {
    top: 10px !important;
  }
  .platforms a:hover {
    background: #fde3d9;
    box-shadow: 0 0 0 1px #ffa886;
  }
  .platforms a:before {
    content: attr(data-os);
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
  }
  .platforms a:after {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 120px;
    line-height: 140px;
    text-align: center;
    font-size: 300%;
    transform: scale(1.25);
    transform-origin: center center;
  }
  
  .windows-a:after {
    content: '';
    background-image: url("../IMG/windows_logo_dl.svg");
    background-repeat: no-repeat;
    background-position: center;
  }
  .macos-a:after {
    content: '';
    background-image: url("../IMG/apple_logo_dl.svg");
    background-repeat: no-repeat;
    background-position: center;
  }
  .portable-a:after {
    content: '';
    background-image: url("../IMG/portable_dl.svg");
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .installer {
    z-index: 12;
    position: fixed;
    top: calc(50% - 150px);
    left: calc(50% - 350px);
    width: 700px;
    height: 300px;
    background: #fff;
    border-radius: 12px;
    visibility: hidden;
    transform: scale(.9);
    opacity: 0;
    transition: all .3s cubic-bezier(.67,.13,.1,.81);
  }
  .installer_target {
    visibility: visible;
    transform: scale(1);
    opacity: 1;
  }
  .installer a.back {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    font-size: 200%;
    color: #bbb;
    cursor: pointer;
  }
  .installer a.back:before {
    content: '//';
    color: rgba(0, 0, 0, 0);
    background-image: url("../IMG/back_dl.svg");
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(10%);
  }
  .installer a.back:after {
    content: 'Retour aux différents installateurs';
    position: absolute;
    top: 7px;
    left: 30px;
    height: 20px;
    width: max-content;
    line-height: 20px;
    font-size: 40%;
    text-align: center;
    color: #acacac;
    border-radius: 5px;
    pointer-events: none;
    opacity: 0;
    transition: all .2s cubic-bezier(.67,.13,.1,.81);
  }
  .installer a.back:hover:after {
    left: 38px;
    opacity: 1;
    width: max-content;
  }
  .installer a.close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 200%;
    color: #bbb;
    cursor: pointer;
  }
  .installer a.close:before {
    content: '//';
    color: rgba(0, 0, 0, 0);
    background-image: url("../IMG/close_dl.svg");
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(10%);
  }
  .installer a.close:after {
    content: 'Fermer';
    position: absolute;
    top: 7px;
    right: 30px;
    height: 20px;
    line-height: 20px;
    font-size: 40%;
    text-align: center;
    color: #acacac;
    border-radius: 5px;
    pointer-events: none;
    opacity: 0;
    transition: all .2s cubic-bezier(.67,.13,.1,.81);
    font-weight: 600;
  }
  .installer a.close:hover:after {
    right: 38px;
    opacity: 1;
  }
  
  .installer .info {
    position: absolute;
    top: 40px;
    left: 40px;
    height: calc(100% - 80px);
    width: 200px;
  }
  .installer .info:before {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 180px;
    height: 220px;
    line-height: 220px;
    text-align: center;
    font-size: 1000%;
    color: #fc6b3f;
  }
  .installer .info:after {
    content: attr(data-weight);
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 180px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 100%;
    font-weight: bolder;
    letter-spacing: 2px;
    color: #a2a2a2;
  }
  .installer#windows .info:before {
    content: '';
    background-image: url("../IMG/windows_logo_dl.svg");
    background-repeat: no-repeat;
    background-position: center;
  }
  .installer#macos .info:before {
    content: '';
    background-image: url("../IMG/apple_logo_dl.svg");
    background-repeat: no-repeat;
    background-position: center;
  }
  .installer#portable .info:before {
    content: '';
    background-image: url("../IMG/portable_dl.svg");
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .installer .details {
    position: absolute;
    top: 40px;
    right: 40px;
    height: 200px;
    width: calc(100% - 280px);
    padding: 10px;
  }
  .installer .details p {
    margin: 0px;
    font-weight: bolder;
    font-size: 120%;
    color: rgb(61, 61, 61);
  }
  .installer .details span {
    color: #959595;
  }
  .installer .details ul {
    padding-left: 0px;
    list-style: none;
    color: rgb(126, 126, 126);
  }
  .installer .details ul li {
    margin-left: 10px;
    margin-bottom: 8px;
    opacity: 0;
    transition: all .3s cubic-bezier(.67,.13,.1,.81);
  }
  .installer .details ul li:before {
    content: '';
    margin-right: 0;
  }
  .installer_target_details_ul_li {
    margin-left: 0px !important;
    opacity: 1 !important;
  }
  .installer .details ul li:nth-child(1) {
    transition-delay: .1s;
  }
  .installer .details ul li:nth-child(2) {
    transition-delay: .2s;
  }
  .installer .details ul li:nth-child(3) {
    transition-delay: .3s;
  }
  .installer .details ul li:nth-child(4) {
    transition-delay: .4s;
  }
  
  .installer label {
    position: absolute;
    bottom: 20px;
    right: 90px;
    width: calc(100% - 320px);
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
  }


  /* download button CSS */
.btn-dl {
  margin-top: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  background: rgb(245, 195, 185);
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.3);
  border-radius: 8px;
  transition: all 0.25s ease;
  min-width: 300px;
  width: fit-content;
}
.btn-dl .--icon {
  box-sizing: border-box;
  position: relative;
  width: 8px;
  height: 45px;
  background: #f33c03;
  float: left;
  transition: all 0.25s ease;
}

.btn-dl .--text {
  box-sizing: border-box;
  float: left;
  color: #000;
  white-space: nowrap;
  padding-left: 13px;
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.btn-dl:active {
  transform: translateY(1px);
}
  .btn-dl:hover {
    background: #f33c03;
  }
  .btn-dl:hover .face-primary {
    margin-top: -64px;
  }
  .img-dl {
    width: 20px;
    height: 20px;
    transition: all 0.25s ease;
    vertical-align: sub;
  }
  .btn-dl:hover .--icon {
    width: 0%;
  }
  .btn-dl:hover .--text {
    color: rgb(255, 236, 231);
  }
  .btn-dl:hover .img-dl {
    filter: invert(100%);
  }


  /* download button (-> open os dl selector) */

  @import url("//fonts.googleapis.com/css?family=Roboto:500");
  @import url("//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css");
  
  .face-button {
    height: 64px;
    display: inline-block;
    border: 3px solid #f33c03;
    font-size: 21px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    color: #f33c03;
    overflow: hidden;
    border-radius: 3px;
    
  }
  .face-button .icon {
    margin-right: 6px;
  }
  .face-button .face-primary,
  .face-button .face-secondary {
    display: block;
    padding: 0 32px;
    line-height: 64px;
    transition: margin 0.4s;
    background-color: #e4e4e4;
  }
  .face-button .face-primary {
    background-color: #f33c03;
    color: #fff;
  }
  .face-button:hover .face-primary {
    margin-top: -64px;
  }


  /* Loading CSS svg */

.MuiCircularProgress-root{
  display:inline-block
}.MuiCircularProgress-static{
  transition:transform .3s cubic-bezier(.4,0,.2,1) 0s
}.MuiCircularProgress-indeterminate{
  animation:MuiCircularProgress-keyframes-circular-rotate 1.4s linear infinite
}.MuiCircularProgress-determinate{
  transition:transform .3s cubic-bezier(.4,0,.2,1) 0s
}.MuiCircularProgress-svg{
  display:block;
  color: #e4e4e4;
}.MuiCircularProgress-circle{
  stroke:currentColor
}.MuiCircularProgress-circleStatic{
  transition:stroke-dashoffset .3s cubic-bezier(.4,0,.2,1) 0s
}.MuiCircularProgress-circleIndeterminate{
  animation:MuiCircularProgress-keyframes-circular-dash 1.4s ease-in-out infinite;
  stroke-dasharray:80px,200px;stroke-dashoffset:0
}.MuiCircularProgress-circleDeterminate{
  transition:stroke-dashoffset .3s cubic-bezier(.4,0,.2,1) 0s
}@keyframes MuiCircularProgress-keyframes-circular-rotate{
  0%{
    transform-origin:50% 50%
  }
  100%{
    transform:rotate(360deg)
  }
}
@keyframes MuiCircularProgress-keyframes-circular-dash{
  0%{
    stroke-dasharray:1px,200px;
    stroke-dashoffset:0
  }
  50%{
    stroke-dasharray:100px,200px;
    stroke-dashoffset:-15px
  }100%{
    stroke-dasharray:100px,200px;
    stroke-dashoffset:-125px
  }
}
.MuiCircularProgress-circleDisableShrink{
  animation:none
}

/* top illustation */
.hero-image {
  height: 450px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.hero-image::before {
  filter: blur(5px);
}
.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
.top-app-ico {
  height: 86px;
  border-radius: 10px;
  margin: auto;
  filter: drop-shadow(0px 0px 10px #00000061);
  margin-right: 10px;
}
.top-app-name {
  color: rgb(255, 255, 255);
  font-weight: 700;
  font-size: 50px;
  margin: auto;
  text-align: center;
  margin-left: 10px;
}
.top-app-name_img-container {
  display: flex;
  padding-bottom: 10px;
}
@media screen and (max-width:720px) {
  .top-app-name_img-container {
    display: flex;
    flex-direction: column;
  }
  .top-app-ico {
    margin: auto !important;
  }
  .top-app-name {
    margin: auto !important;
    padding-top: 4px;
  }
  .top-app-ico {
    height: 68px;
  }
  .top-app-name {
    font-size: 42px;
  }
}
@media screen and (max-width:500px) {
  .top-app-ico {
    height: 58px;
  }
  .top-app-name {
    font-size: 36px;
  }
}

/* image and caption in slider */
.swiffy-slider .container {
  position: relative;
  height: 600px;
  justify-content: center;
  display: flex;
}

.text-block {
  position: absolute;
  bottom: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 5px;
}

/* Counter cards section */
.wrapper-cpt {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  box-sizing: border-box;
}

.container-cpt {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 1em 1rem;
  position: relative;
  font-size: 18px;
  border-radius: 10px;
  background-color: #2b2321;
  border-bottom: 10px solid #f33c03;
  width: 100%;
}

.i-cpt {
  color: #188cf9;
  font-size: 2.5em;
  text-align: center;

}

.num-cpt {
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 3em;
  margin-bottom: 15px;
}

.text-cpt {
  color: #e0e0e0;
  font-size: 1.4em;
  text-align: center;
  pad: 0.7em 0;
  font-weight: 400;
  line-height: 0;
  margin-bottom: 15px;
}

@media screen and (max-width:1350px) {
  .container-cpt {
    font-size: 12px;
    border-radius: 8px;
    border-bottom: 8px solid #f33c03;
  }
}

@media screen and (max-width: 950px) {
  .wrapper-cpt {
    flex-wrap: wrap;
    gap: 30px;
  }
  .container-cpt {
    width: calc(50% - 47px);
    font-size: 13px;
  }
}
@media screen and (max-width: 550px) {
  .wrapper-cpt {
    gap: 15px;
  }
  .container-cpt {
    width: 100%;
    font-size: 12px;
    border-radius: 6px;
    border-bottom: 6px solid #f33c03;
  }
}
.img-in-gallery-slider {
  width: auto;
  max-width: 100%;
  border-radius: 10px;
  max-height: 100%;
  height: max-content;
}

/* text beside path steps */
.grandAxe {
  line-height: 30px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  padding: 0 10px;
  background-color: #f33c03;
  display: inline-block;
  margin: 0px 0 8px 0px;
}
.txt {
  font-size: 18px;
  color: rgb(255, 240, 235);
}
.txtBeforeList {
  color: rgb(255, 240, 235);
  padding-bottom: 0px;
  padding-top: 8px;
}
.infoTxt {
  color: rgb(255, 240, 235);
  background-color: #00172b;
  border-left: 5px solid #0060af;
  padding: 5px 0px 5px 0px;
  border-radius: 5px;
}
.attentionTxt {
  color: rgb(255, 240, 235);
  background-color: #3b2d00;
  border-left: 5px solid #e8a90b;
  padding: 5px 0px 5px 0px;
  border-radius: 5px;
}
.importantTxt {
  color: rgb(255, 240, 235);
  background-color: #2b1211;
  border-left: 5px solid #f44336;
  padding: 5px 0px 5px 0px;
  border-radius: 5px;
}
.inDevelopmentTxt {
  color: rgb(255, 255, 255);
  background: repeating-linear-gradient( 45deg, #6d5900ad, #6d5900ad 15px, #362c008a 15px, #362c008a 30px );
  border: 1px solid #f56c00;
  border-left: 6px solid #f56c00;
  padding: 6px 0px 6px 5px;
  border-radius: 6px;
  margin-top: 18px;
}
.isDisabled {
  color: currentColor;
  cursor: not-allowed !important;
  filter: grayscale(100%);
  text-decoration: none;
  pointer-events: none;
}
.imgInHighLightDevMsg {
  width: 42px;
  margin-right: 5px;
}
.titleMsgDev {
  font-size: 26px;
  text-align: start;
}
.detailMsgDev {
  font-size: 17px;
}

.txtInHighlight {
  padding: 0px 38px;
  margin: 2 2 5px;
  display: inline-block;
  max-width: 100%;
  font-weight: bold;
  vertical-align: inherit;
}
.titreHighlight {
  margin: 2 2 2px;
  display: inline-block;
  max-width: 100%;
  font-weight: bold;
  vertical-align: inherit;
}
.liste {
  margin: 0px 0px 0px 0px;
  line-height: 1.5;
}
.conteneurInHighlight {
  float: left;
  width: 100%;
}
.conteneurImgInHighlight {
  float: left;
  width: 100%;
  font-weight: bold;
  color: #ffffff;
}
.imgInHighLight {
  width: 35px;
  margin-right: 5px;
}
.listeChevron {
  margin: 0px 0px 0px 0px;
  line-height: 1.5;
  list-style: url('../IMG/chevron-right.svg');
}
.listeNbe {
  list-style: decimal;
  margin: 0px 0px 0px 0px;
  line-height: 1.5;
}
.imgInHighlight {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.imgCentree {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.divInHighlight {
  margin-top: -6px;
  padding-right: 6px;
}
.landing-card {
  display: grid;
  grid-template-columns: 4.25rem auto;
  grid-column-gap: 1.25rem;
  color: white;
}
.landing-card .title-icon-col, .sub-title-icon-col {
  text-align: center;
  width: 4.25rem;
  position: relative;
}
.landing-card .title-icon-col img {
  position: relative;
  z-index: 8;
  border-radius: 5px;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
.landing-card .title-icon-col::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 2px solid #f5f2f1;
}
.landing-card .title-icon-col, .sub-title-icon-col {
  text-align: center;
}
.landing-card .description {
  margin-top: 1.25rem;
  margin-bottom: 40px;
}
.landing-card .icon-wrap {
  width: 54px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}
.landing-card .icon-wrap .vscom-icon {
  font-size: 1.5rem;
  border: 2px solid #f5f2f1;
  border-radius: 50%;
  background-color: #f33c03;
  width: 50px;
  height: 50px;
  display: flex;
}
.sub-title-icon-col::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 2px solid #f5f2f1;
}

/* Config requirement CSS */
.configs_req-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}
.config-card {
  width: calc(50% - 5px);
  border-radius: 8px;
  background-color: #2b2321;
  border: 1px solid #f33c03;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.title-card {
  color: white;
  background-color: #f33c03;
  border-radius: 6px 6px 0px 0px;
  margin-bottom: 2px;
  font-size: larger;
  justify-content: center;
  display: flex;
}
.spec_line-card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 6px;
}
.img-spec_line {
  height: 26px;
  filter: invert(40%);
  padding-right: 10px;
  margin: auto;
}
.title-spec_line {
  color: rgb(165, 165, 165);
  font-weight: 600;
  margin: auto;
  text-align: center;
}
.val-spec_line {
  color: white;
  margin: auto;
  font-weight: 400;
}
@media screen and (max-width: 950px) {
  .configs_req-container {
    flex-direction: column;
  }
  .config-card {
    width: 100% !important;
    margin-bottom: 10px;
  }
}
.cara-liste {
  list-style-image: url("../IMG/checkmark.svg");
  font-weight: 600;
  color: white;
}
.cara-liste li {
  padding-bottom: 10px;
}

/* CSS style responsive image side-by-side like home page */
  .img-app-expo {
    max-width: 100%;
    border: 1px solid rgba(255,255,255,.082);
    border-radius: 0.6vw;
    box-shadow: 0 0px 64px rgba(0,0,0,.5),0 0px 68px rgba(0,0,0,.25);
  }
  .table-app-expo {
    color: white;
    border-spacing: 0 80px;
    margin: 0px 2vw 0px 2vw;
  }
  .title-app-expo {
    font-size: 24px;
  }
  .p-app-expo {
    font-size: 14px;
    font-weight: 400;
  }
  .txt-part-app-expo {
    margin: 0px 6vw 0px 6vw;
    text-align: left !important;
    position: relative;
    z-index: 2;
  }
  .right-col-app-expo {
    width: 50%;
    text-align: right;
  }
  .left-col-app-expo {
    width: 50%;
    text-align: left;
  }

  /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 800px) {
    .row-app-expo {
      display: flex;
      flex-direction: column;
      padding-bottom: 64px;
    }
    .row-app-expo-inverted {
      display: flex;
      flex-direction: column-reverse;
      padding-bottom: 64px;
    }
    .table-app-expo {
        display: flex;
        flex-direction: column;
        margin-top: 64px;
    }
    .right-col-app-expo {
      width: 100%;
      text-align: center;
    }
    .left-col-app-expo {
      width: 100%;
      text-align: center;
    }
    .txt-part-app-expo {
      margin: 0px 8vw 0px 8vw;
    }
    .img-app-expo {
      border-radius: 1.2vw;
    }
  }

  /* check mark anim */
  #checkmark {
    stroke-dasharray: 640;
    stroke-dashoffset: 0;
    transform-origin: center;
    animation: draw-around 0.8s;
  }
  @-ms-keyframes draw-around {
    0% {
      stroke-dashoffset: 640;
    }
    10% {
      stroke-dashoffset: 640;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }
  @-webkit-keyframes draw-around {
    0% {
      stroke-dashoffset: 640;
    }
    10% {
      stroke-dashoffset: 640;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }
  @keyframes draw-around {
    0% {
      stroke-dashoffset: 640;
    }
    10% {
      stroke-dashoffset: 640;
    }
    100% {
      stroke-dashoffset: 0;
    }
  }