/*--------------------------------------------------------------
# define SKIN colors
--------------------------------------------------------------*/
:root {
  --button-color: #3A9FC2;
  --button-hover-color: rgb(0 46 82 / 88%);
}
/*------------------------------------------------------------*/
@font-face {
  font-family: 'SuezLines';
  src: url("../../font/SuezLines-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

body {
  background-color: #f8f9fa;
  font-family:DIN Pro !important;
  color: rgb(0 46 82 / 88%);
  background-size: cover;
  position: relative;
}

body::before {
  background-color: #f8f9fa;
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 123%;
}

@media (min-width: 1024px) {
  body {
    background-attachment: fixed;
  }
}

a {
  color: var(--button-color);
  text-decoration: none;
}

a:hover {
  color: var(--button-hover-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DIN Pro", sans-serif;
}

#main {
  position: relative;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.intro-link{
  bottom: 65px !important;
}
.home-link{
  bottom: 115px !important;
}
.param-link{
  bottom: 165px !important;
}

.help-link{
  bottom: 215px !important;
}

.back-to-top {
  position: fixed;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--button-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2ed6c0;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: relative;
  width: 100%;
  padding: 20px 0;
  /* countdown */
}

#header h1 {
  margin: 0 0 10px 0;
  font-weight: 700;
  color: rgb(0 46 82 / 88%) !important;;
}

#header h2 {
  color: #eee;
  margin-bottom: 40px;
  font-size: 22px;
}

#header .countdown {
  margin-bottom: 80px;
}

#header .countdown div {
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  margin: 10px 10px;
  width: 100px;
  padding: 15px 0;
}

#header .countdown div h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 15px;
}

#header .countdown div h4 {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 575px) {
  #header .countdown div {
    width: 70px;
    padding: 10px 0;
    margin: 10px 8px;
  }

  #header .countdown div h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  #header .countdown div h4 {
    font-size: 14px;
    font-weight: 500;
  }
}

#header .subscribe {
  font-size: 15px;
  text-align: center;
}

#header .subscribe h4 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#header .subscribe .subscribe-form {
  min-width: 320px;
  margin-top: 10px;
  background: #f8f9fa;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
}

#header .subscribe .subscribe-form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#header .subscribe .subscribe-form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--button-color);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .subscribe .subscribe-form input[type=submit]:hover {
  background: #22ae9c;
}

#header .subscribe .error-message {
  display: none;
  color: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#header .subscribe .sent-message {
  display: none;
  color: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#header .subscribe .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

#header .subscribe .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading-notify 1s linear infinite;
}

@keyframes animate-loading-notify {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#header .social-links {
  margin-top: 40px;
}

#header .social-links a {
  font-size: 16px;
  color: #fff;
  margin: 0 3px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#header .social-links a i {
  line-height: 0;
}

#header .social-links a:hover {
  background: var(--button-color);
  border-color: var(--button-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "DIN Pro", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
/*  color: var(--button-color); */
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--button-color);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #28ccb7;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--button-color);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #314759;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(31, 45, 56, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #314759;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--button-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--button-color);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 10px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #d8f7f3;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--button-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.about .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.about .icon {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.about .icon i {
  color: #fff;
  font-size: 42px;
  line-height: 0;
}

.about .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: uppercase;
}

.about .title a {
  color: #fff;
  transition: 0.3s;
}

.about .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid var(--button-color);
  border-bottom: 3px solid var(--button-color);
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: var(--button-color);
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: var(--button-color);
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid var(--button-color);
  border-bottom: 3px solid var(--button-color);
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--button-color);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--button-hover-color);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: rgba(38, 55, 69, 0.4);
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
  position: relative;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: var(--button-hover-color);
}
.config-btn{
  margin-left: auto;
  margin-right: auto;
}
.config-buttons{
  margin-bottom: 20px;
  width: 100%;
}

.step-button{
  font-size: 13px;
  font-size: 18px;
  width: 160px;
  height: 50px;
  border-radius: 30px;
  background-color: var(--button-color);
  text-align: center;
  line-height: 50px;
}
.active-step{
 background-color: var(--button-hover-color) !important; 
}
.step-btn{
  cursor: pointer;
  color: white;
  margin-top: 20px;
}
.form-label{
  width: 25%;
  text-align: center;
}
.form-input{
  text-align: center;
}
#params-types-select{
  cursor: pointer;
}
/*.step-btn:hover{
  color: #d8f7f3;
  font-weight: bold;
}*/
.step-button:hover{
  background-color: var(--button-hover-color);
}
.container{
  width: 60%;
}
.accordion-button:not(.collapsed){
  background-color: var(--button-hover-color) !important;
  color: white !important;
}
#react-config{
  min-width: 100%;
}
.inline-div{
  display: inline-flex;
}

button:disabled,
button[disabled]{
  background-color: #707070 !important;
  cursor: not-allowed;
}

#params-types-select{
  border-color: #00ffff00;
  text-align: center;
}
.fieled-description{
font-size: 12px;
margin-left: 10px;
line-height: 23px;
}
.form-input:disabled{
  background-color: #707070;
  cursor: not-allowed;
}

/** Custom Select **/
.custom-select-wrapper {
  position: relative;
  display: inline-block;
  user-select: none;
  cursor: pointer;
}
.custom-select-wrapper select {
  display: none;
}
.custom-select {
  position: relative;
  display: inline-block;
  font: 12px/1.5 "Roboto", sans-serif;
  width: 350px;
}
.custom-select-trigger-active{
  background-color: var(--button-color) !important;
  cursor: pointer !important;
}
.custom-select-trigger {
  position: relative;
  display: block;
  min-width: 130px;
  padding: 0 60px 0 25px;
  font-weight: 100;
  color: #6e7c83;
  line-height: 50px;
  background-color: #ffffff;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.custom-select-trigger:hover {
  -webkit-box-shadow: 0px 10px 50px 0px rgba(43, 111, 246, 0.1);
  box-shadow: 0px 10px 50px 0px rgba(43, 111, 246, 0.1);
}
.custom-select-trigger:before {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 50px;
  top: 3px;
  right: 50px;
  margin-top: -3px;
  border-right: 1px solid #c7d1d6;
  transition: all 0.35s ease-out;
  transform-origin: 50% 0;
}
.custom-select-trigger:after {
  position: absolute;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  right: 20px;
  margin-top: -3px;
  border-bottom: 1px solid #c7d1d6;
  border-right: 1px solid #c7d1d6;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.35s ease-out;
  transform-origin: 50% 0;
}
.custom-select.opened .custom-select-trigger:after {
  margin-top: 3px;
  transform: rotate(-135deg) translateY(-50%);
}
.custom-options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0%;
  right: 0;
  width: 350px;

  margin: 10px 0;
  border-radius: 5px;
  box-sizing: border-box;
  /*  box-shadow: 0 2px 1px rgba(0, 0, 0, .1); */

  background: #fff;
  transition: all 0.2s ease-in-out;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
  border: 0;
}
.custom-select.opened .custom-options {
  opacity: 1;
  font-size: 12px;
  z-index: 10;
  text-align: center;
  visibility: visible;
  pointer-events: all;
  transform: translateY(-8px);

  -webkit-box-shadow: 0px 10px 50px 0px rgb(43 111 246 / 44%);
  box-shadow: 0px 10px 50px 0px rgb(43 111 246 / 44%);
}
.option-hover:before {
  background: #f9f9f9;
}
.custom-option {
  position: relative;
  display: block;
  padding: 0 22px;
  font: 12px/1.5 "Roboto", sans-serif;
  font-weight: 600;
  color: var(--button-hover-color);
  line-height: 47px;
  cursor: pointer;
  transition: all 0.05s ease-in-out;
}
.custom-option:first-of-type {
  border-radius: 4px 4px 0 0;

  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.custom-option:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 4px 4px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.custom-option:hover,
.custom-option.selection {
  color: #fff;
  background-color: var(--button-color);
}


.animate.pop {
  animation-name: animate-pop;
  animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
  animation-duration: 1s;
}

@keyframes animate-pop {
  0% {
    opacity: 0;
    transform: scale(0.5, 0.5);
  }

  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}

.accordion-button {
  background-color: var(--button-color);
  color: white;
}

.app-name-title{
  color: rgb(0 46 82 / 88%) !important;
  text-align: center;
  width: 80%;
}
.intro-picto{
  width: auto;
  height: 150px;
}
.intro-picto-block{
  margin-top: 10px;
  width: 100%;
}
.logo-bm{
  width: 50%;
  height: auto;
  float: right;
  max-width: 140px;
  max-height: auto;
}
.logo-suez{
  width: 50%;
  height: auto;
  float: right;
  max-width: 140px;
  max-height: auto;
}
.litle-app-description{
  font-size: 14px;
  margin-top: 10px;
  width: 100%;
  text-align: center;
}
.footer-logo{
  position: fixed;
  bottom: 20px;
  right: 10px;
  width: 22%;
  z-index: 100;
}
.back-to-top:hover{
  background-color: var(--button-hover-color) !important;
}
#navbar-details{
  position: fixed;
    width: 100%;
    z-index: 100;
    background-color: #3a9fc2 !important;
    color: white;
}
.dropdown-menu{
  background-color: #2e5371;
    min-width: 250px;
}
.show{
  display: flex ;
}
.show-more-btn{
  cursor: pointer;
  text-align: center;
  font-size: 16px;

}
.navbar-brand:hover{
  color: white !important;
}
.navbar-brand:hover{
  color: var(--button-hover-color) !important;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  padding-left: 20px;
  padding-right: 20px;
}
.nav-link:hover{
  color: var(--button-hover-color) !important;
}
.unclickable{
  pointer-events: none;
  cursor: none;
}
.nav-item{
  margin-left: 10px;
  margin-right: 10px;
}
.info-txt-blk{
  font-size: 14px;
}
.right-info-img{
  width: auto;
  height: 200px;
}
.flex-column
{
  margin-top: 20px;
  margin-bottom: 20px;
  height: auto;
}
.scroll-heading{
  font-weight: bold;
  margin: 20px;
  font-size: 16px !important;
}

#more-information-block{
  background-color: white !important;
}
.nav-pills{
  --bs-nav-pills-link-active-bg: var(--button-hover-color);
}
.navbar ul {
  display: flex !important;
}

/***** Slide Right *****/
.slide-right {
  animation: 1s slide-right;
}
@keyframes slide-right {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 20%;
  }
}
/***** Slide Left *****/
.slide-left {
  animation: 1s slide-left;
}
@keyframes slide-left {
  from {
    margin-left: 100%;
  }
  to {
    margin-left: 20%;
  }
}
.custom-select-wrapper{
  cursor: not-allowed;
}

.custom-select-trigger{
  background-color: var(--button-color) !important;
  pointer-events: none;
  color: white;
  font-weight: bold;
}
/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
  .nav-item{
   width: 100% !important;
  }
  /* CSS */
  .info-txt-blk{
    font-size: 15px;
  }

  #Accueil{
    margin-top: 140px !important;
  }

  .app-name-title{
    margin-top: 120px !important;
  }
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .nav-item{
    width: 100%;
   }
  /* CSS */
  .info-txt-blk{
    font-size: 15px;
  }
  .intro-picto{
    display: none;
  }

  .info-txt-blk{
    font-size: 13px;
  }

  #Accueil{
    margin-top: 140px !important;
  }

  .app-name-title{
    margin-top: 120px !important;
  }

}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
  .nav-item{
    width: 100%;
   }
  /* CSS */
  .info-txt-blk{
    font-size: 12px;
  }
  .intro-picto{
    display: none;
  }
  .navbar-brand {
    display: none !important;
  }
  .flex-column {
    height: auto !important; 
  }
  #Accueil{
    margin-top: 50px !important;
  }

  .app-name-title{
    margin-top: 50px !important;
  }
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
  .nav-item{
    width: 100%;
   }
  /* CSS */
  .info-txt-blk{
    font-size: 14px;
  }
  .app-name-title{
    font-size: 16px !important;
  }
  .intro-picto{
    display: none;
  }
  .flex-column {
    height: auto !important; 
  }
  .navbar-brand {
    display: none !important;
  }
  .container {
    width: 80%;
}
h4{
  font-size:14px;
}
.logo-bm{
  width: 100%;
  height: auto;
}
.logo-suez{
  width: 100%;
  height: auto;
}

#Accueil{
  margin-top: 50px !important;
}

.app-name-title{
  margin-top: 50px !important;
}
  
}


/* custom radio button style */
@import url("https://fonts.googleapis.com/css?family=Inter:400'");

.middle {
	width: 100%;
	text-align: center;

}

.middle h1 {
	font-family: "Inter", sans-serif;
	color: #fff;
}

.middle input[type="radio"] {
	display: none;
}

.middle input[type="radio"]:checked + .box {
	background-color: #3a9fc2;
  border-radius: 20px;
}

.middle input[type="radio"]:checked + .box span {
	color: white;
	transform: translateY(70px);
  border-style: none !important;
}

.middle input[type="radio"]:checked + .box span:before {
	transform: translateY(0px);
	opacity: 1;
}

.middle .box {
  border-radius: 17px;
  border-color: #3a9fc2;
  border-width: 2px;
  border-style: ridge;
	width: 120px;
	height: 120px;
	background-color: #f8f9fa;
	transition: all 250ms ease;
	will-change: transition;
	display: inline-block;
	text-align: center;
	cursor: pointer;
	position: relative;
	font-family: "Inter", sans-serif;
	font-weight: 900;
}

.middle .box:active {
	transform: translateY(10px);
}

.middle .box span {
	position: absolute;
  bottom: 100px;
	transform: translate(0, 60px);
	left: 0;
	right: 0;
	transition: all 300ms ease;
	font-size: 1.5em;
	user-select: none;
	color: #3a9fc2;
}

.middle .box span:before {
  border-style: none;
  border-color: transparent;
	font-size: 1.2em;
	font-family: FontAwesome;
	display: block;
	transform: translateY(-80px);
	opacity: 0;
	transition: all 300ms ease-in-out;
	font-weight: normal;
	color: white;
}


.middle p {
	color: #fff;
	font-family: "Inter", sans-serif;
	font-weight: 400;
}

.middle p a {
	text-decoration: underline;
	font-weight: bold;
	color: #fff;
}
/****************************/
.app-question{
  font-size: 16px;
  font-weight: bold;
}
.glo-title{
  font-weight: 600;
}
.glo-text{
  font-size: 14px;
}
.section-subtitle{
  font-weight: 500;
  text-transform: uppercase;
}
.step-button:hover {
  color: white;
}
.important-txt{
  font-weight: bold;
}
#sol-btn{
  align-items: center;
  justify-content: center;
  display: flex;
}
#fruit-btn{
  align-items: center;
  justify-content: center;
  display: flex;
}
.custom-linky{
  color: var(--button-color);
  cursor: pointer;
}
.custom-linky:hover{
  color: var(--button-hover-color);
  font-weight: bold;
}

.dropdown-menu {
  --bs-dropdown-link-active-bg: rgb(0 46 82 / 88%) !important;
}

.external-link-icon{
  margin-right: 10px;
  margin-left: 10px;
  width: 17px;
  height: 17px;
  font-weight: bold;
}

