@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

/******* Common ********/
body {
  font-family: 'Lato', sans-serif;
  ;
}
html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
.content {
  flex: 1 0 auto;
}
footer {
  flex-shrink: 0;
}
a {
  color: #0E1B4D;
}

a:hover {
  text-decoration: none;
  color: #0E1B4D;
}
.bg-light-blue {
  background: #F7FCFE;
}
.btn {
  border-radius: 6px;
  border-width: 2px;
  padding: 7px 30px;
}

.btn-primary {
  color: #fff;
  background-color: #272b5c;
  border-color: #272b5c;
}

.btn-primary:hover {
  color: #272b5c;
  background-color: #ffffff;
  border-color: #272b5c;
}

.btn-outline-primary {
  color: #272c5c;
  border-color: #272c5c;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #272c5c;
  border-color: #272c5c;
}

.btn.focus,
.btn:focus {
  box-shadow: none;
}

.btn-primary.focus,
.btn-primary:focus {
  color: #fff;
  background-color: #2d315f;
  border-color: #2d315f;
  box-shadow: 0 0 0 0.2rem rgb(38 143 255 / 50%);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #2d315f;
  border-color: #2d315f;
}

.bg-gray-100 {
  background: #f2f2f2 !important;
}

.form-row>.col,
.form-row>[class*=col-] {
  padding-right: 10px;
  padding-left: 10px;
}

form label {
  color: #0E1B4D;
  font-size: 13px;
  font-weight: 400;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: #fff;
  background-color: #272c5c;
}
.nav-pills .nav-link {
  border-radius: .25rem;
  padding: 25px 30px;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url('../images/chevron_down.svg');
  background-repeat: no-repeat;
  background-position-x: calc(100% - 8px);
  background-position-y: 15px;
}
/******* End Common ********/

/******* Navigation ********/
.navigation {
  background: #fff;
}
.navigation .navbar {
  padding: 0;
}

.navigation .navbar-brand img {
  height: 84px;
}

.logo-web {
  display: inline-block;
}

.logo-mobile {
  display: none;
}

.select_wrap {
  margin: 10px auto;
  position: relative;
  user-select: none;
}

.select_wrap .default_option {
  background: #fff;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  padding-left: 0;
  width: fit-content;
  overflow: hidden;
  margin-left: 20px;
}

.select_wrap .default_option li {
  padding: 2px 20px 2px 10px;
  border: solid 2px #272c5c;
  border-radius: 6px;
}

.select_wrap .default_option:before {
  content: "";
  position: absolute;
  top: 16px;
  right: 10px;
  width: 6px;
  height: 6px;
  border: 2px solid;
  border-color: transparent transparent #555555 #555555;
  transform: rotate(-45deg);
}

.select_wrap .select_ul {
  position: absolute;
  top: 50px;
  right: 0;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  display: none;
  border: solid 1px #efefef;
  list-style: none;
}

.select_wrap .select_ul li {
  padding: 8px 15px;
  cursor: pointer;
}

.select_wrap.active .option p {
  width: auto;
}

.select_wrap .default_option .option p {
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  line-height: 2;
}

.select_wrap .default_option li img,
.select_wrap .select_ul li img {
  height: 32px;
  margin-right: 5px;
}

.select_wrap .select_ul li:first-child:hover {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select_wrap .select_ul li:last-child:hover {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select_wrap .select_ul li:hover {
  background: #f1f2ff;
}

.select_wrap .option {
  display: flex;
  align-items: center;
}

.select_wrap .option p {
  margin-bottom: 0;
}


.select_wrap.active .select_ul {
  display: block;
  width: 200px;
  padding-left: 0;
  background: #ffffff;
  z-index: 5;
}

.select_wrap.active .default_option:before {
  top: 25px;
  transform: rotate(-225deg);
}

.navigation .navbar-nav li a img {
  height: 18px;
}

.navigation .navbar-nav li a.nav-link {
  font-size: 14px;
  color: #565F82;
  padding: 35px 20px;
  border-bottom: solid 3px transparent;
  transition: all 0.3s ease-in-out;
}

.navigation .navbar-nav li.active a.nav-link,
.navigation .navbar-nav li a.nav-link:hover {
  border-bottom: solid 3px #0E1B4D;
  color: #0E1B4D;
}

/******* End nvigation ********/



/******* Hero ********/
.hero {
  padding: 60px 0 150px;
  background: #fafafa url('../images/bg-hero.png') no-repeat right top;
  background-size: cover;
}

.hero h1 {
  color: #1E647F;
  font-size: 36px;
}

.hero h1 img {
  height: 36px;
}

.hero p {
  color: #959BB1;
}

.hero p span {
  display: inline-block;
  margin: 1px 10px;
  color: #959BB1;
  font-size: 18px;
  font-weight: 300;
}

/*******End  Hero ********/


/******* Card services ********/
.cards-services {
  position: relative;
  background: #F7FCFE;
}

.cards {
  margin-top: 60px;
}

.cards.cards-home {
  margin-top: -100px;
}

.cards .card {
  background: linear-gradient(180deg, #FFFFFF 36.46%, rgba(245, 251, 252, 0) 75.52%), #F1F9FA;
  border: 1px solid #E3E3E3;
  box-shadow: 0px 15px 24px rgba(179, 210, 233, 0.25);
  border-radius: 15px;
  padding: 25px;
  position: relative;
}

.cards .card .card-title {
  display: flex;
  align-items: center;
}

.cards .card .card-desc {
  font-size: 13px;
  color: #878DA6;
}

.cards .card .card-desc p.mh-38{
  min-height: 38px;
}
.cards .card .card-title h1 {
  font-size: 20px;
}

.cards .card .card-title img {
  margin-right: 14px;
}

.cards .card-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.cards .card-logos img {
  height: 50px;
  margin: 15px;
}
.card .card-logos img.override-touchpoint {
  height: 80px;
  margin: 0px;
}
.card .overlay {
  display: inline-block;
  opacity: 1;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0px;
  top: 0px;
  width: 100%;
  background: radial-gradient(81.18% 91.64% at 100% 125.94%, rgba(0, 56, 255, 0.215) 0%, rgba(179, 210, 233, 0) 100%), radial-gradient(52.65% 59.43% at 7.79% 82.97%, rgba(0, 240, 255, 0.115) 0%, rgba(179, 210, 233, 0) 100%), linear-gradient(180deg, rgba(179, 210, 233, 0) 0%, rgba(179, 210, 233, 0.4) 100%);
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
}
.card:hover .overlay {
  display: inline-block;
  opacity: 1;
}
.card .overlay a {
  position: absolute;
    bottom: 25px;
    width: calc(100% - 50px);
    margin-left: 25px;
}

/******* End card service ********/



/******* Page-title ********/
.page-title {
  background: #F8F8F8;
  color: #0E1B4D;
  padding: 20px 0;
}

.page-title .search {
  width: 100%;
  max-width: 300px;
  margin: auto;
}

.page-title .title-back {}

.page-title .title-back h3 {
  margin-bottom: 0;
  border-left: solid 1px #7C7F9C;
  padding-left: 20px;
  font-size: 22px;
}

.page-title .title-back a {}

.page-title .title-back a img {
  margin-right: 10px;
}

.page-title .title-back a p {
  color: #565F82;
}

.search form {
  position: relative;
}

.search form input {
  border-color: #C4C4C4;
}

.search form input::-webkit-input-placeholder {
  color: #9497A3;
  font-weight: 300;
  font-size: 14px;
}

.search form button {
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px 10px;
}

/******* End Page-title ********/


/******* Page service ********/
.entites {
  padding: 60px 0;
}

.entites h5 {
  color: #1E647F;
  font-size: 16px;
  margin-bottom: 20px;

}

.une-entite {
  background: linear-gradient(180deg, #FFFFFF 36.46%, rgba(245, 251, 252, 0) 75.52%), #F1F9FA;
  border: 1px solid #E3E3E3;
  box-shadow: 0px 15px 24px rgba(179, 210, 233, 0.25);
  border-radius: 15px;
  padding: 15px 25px;
}

.entites .une-entite img {
  height: 55px;
  max-width : 60px;
}

.une-entite .desc {}

.une-entite .desc h6 {
  color: #000000;
  padding-bottom: 3px;
}

.une-entite .desc h6 strong {
  display: inline-block;
  margin-right: 7px;
  padding-right: 7px;
  border-right: solid 1px #000000;
}

.une-entite .desc p {
  color: #656565;
  font-weight: 300;
}

/******* End Page service ********/


/******* formulaire ********/
/* Style the form */
#payForm {
  padding: 30px 40px;
}

/* Style the input fields */
input {}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffe7e7;
  border-color: #e24d4d;
}

#payForm .custom-checkbox label {
  color: #1E647F;
}

#payForm .custom-checkbox label a {
  color: #42BAEA;
  text-decoration: underline;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

#accordionInfo .card {
  background: #FBFBFB;
  margin-top: 30px;
}

#accordionInfo .card-header {
  background: transparent;
  border-bottom: none;
}

#accordionInfo .card-header h2 {}

.title-bloc-paiement,
#accordionInfo .card-header h2 button {
  padding: 0;
  color: #1E647F;
  font-size: 18px;
}

#accordionInfo .card-header h2 button:hover {
  text-decoration: none;
}

#accordionInfo .card-header h2 button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#accordionInfo .card-header h2 button img {
  height: 8px;
}
.formulaire .title-bloc-paiement {
  color: #000;
}
.infos .un-info {
  padding: 0 15px 0 0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.infos .un-info .libelle {
  margin-bottom: 0px;
  color: #575f81;
  font-size: 14px;
  font-weight: 400;
}

.infos .un-info .value {
  margin-bottom: 0;
  color: #3f3f3f;
  font-size: 14px;
}
.infos .un-info.total .libelle,
.infos .un-info.un-info.total .value {
  font-size: 18px;
  color: #000;
  font-weight: 600;
}

.formulaire .operateurs {
  
}

.formulaire .operateurs .un-operateur {
  margin-bottom: 15px;
}

.formulaire .operateurs .un-operateur a {
  display: inline-block;
  padding: 5px;
  margin-right: 15px;
  background: #FFFFFF;
  border: 1.5px solid #D3D3D3;
  /* Drop shadow */
  box-shadow: 0px 15px 24px rgba(179, 210, 233, 0.25);
  border-radius: 3px;
}

.formulaire .operateurs .un-operateur a img {
  height: 70px;
}



.custom-radio input[type=radio] {
  display: none;
}

.custom-radio input[type=radio]:not(:disabled)~label {
  cursor: pointer;
}

.custom-radio input[type=radio]:disabled~label {
  color: #bcc2bf;
  border-color: #bcc2bf;
  box-shadow: none;
  cursor: not-allowed;
}

.custom-radio label svg {
  fill: #565F82;
  transition: all 0.3s ease-in-out;
  margin-right: 5px;
}
.custom-radio label {
  height: 100%;
  display: block;
  background: white;
  border: 2px solid #d3d3d3;
  border-radius: 3px;
  padding: 1rem;
  margin-bottom: 15px;
  margin-right: 15px;
  text-align: center;
  position: relative;
  box-shadow: 0px 15px 24px rgb(179 210 233 / 25%);
}

.custom-radio input[type=radio]:checked+label {
  background: #272c5c;
  color: white;
  box-shadow: 0px 15px 24px rgb(179 210 233 / 25%);
  border-color: #272c5c;
}
.custom-radio input[type=radio]:checked+label svg path {
  fill: #59BFC9;
}

/*  Universite */

.mychoicecustom-radio input[type=radio]:not(:disabled)~label {
  cursor: pointer;
}

.mychoicecustom-radio input[type=radio]:disabled~label {
  color: #bcc2bf;
  border-color: #bcc2bf;
  box-shadow: none;
  cursor: not-allowed;
}

.mychoicecustom-radio label svg {
  fill: #565F82;
  transition: all 0.3s ease-in-out;
  margin-right: 5px;
}
.mychoicecustom-radio {
  background: white;
  border: 2px solid #d3d3d3;
  border-radius: 3px;
  padding: 0.5rem;
  margin-bottom: 5px;
  margin-right: 5px;
  text-align: center;
  position: relative;
  box-shadow: 0px 15px 24px rgb(179 210 233 / 25%);
}

.mychoicecustom-radio input[type=radio]:checked+label { 
  color: white;
}
.mychoicecustom-radio:has(input[type=radio]:checked) {
  background-color: #A81735;
  color: white;
  box-shadow: 0px 15px 24px rgb(179 210 233 / 25%);
  border-color: #A81735;
  padding-top : 10px;
  padding-bottom :px
}

.mychoicecustom-radio input[type=radio] {
  appearance: none;
  border: 2px solid #d3d3d3;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative; /* Assure que l'input reste au-dessus du pseudo-élément */
  z-index: 1; /* Place l'input au-dessus */
}
.mychoicecustom-radio input[type=radio]:checked {
	width: 15px; /* Taille de l'input + bordure + marge */
	height: 15px;
	border:none
	
}

.mychoicecustom-radio input[type=radio]::before {
 
	content: '';

	position: absolute;

	TOP:-4PX; /* Ajuste pour ajouter une marge autour de la bordure */

	left: -4px;
	width: 23px; /* Taille de l'input + bordure + marge */
	height: 23px;
	border: 2px solid transparent; /* Bordure par défaut (invisible) */

	border-radius: 50%;

	transition: all 0.3s ease;
	z-index: 0; /* Place la bordure derrière l'input */
}
/* Bordure colorée lorsque le radio est sélectionné */
.mychoicecustom-radio input[type=radio]:checked::before {
	border-color: white; /* Bordure active */
}

.mychoicecustom-radio input[type=radio]:checked+label svg path {
  fill: #59BFC9;
}


.mycustom-radio input[type=radio] {
  display: none;
}

.mycustom-radio input[type=radio]:not(:disabled)~label {
  cursor: pointer;
}

.mycustom-radio input[type=radio]:disabled~label {
  color: #bcc2bf;
  border-color: #bcc2bf;
  box-shadow: none;
  cursor: not-allowed;
}

.mycustom-radio label svg {
  fill: #565F82;
  transition: all 0.3s ease-in-out;
  margin-right: 5px;
}
.mycustom-radio label {
  height: 100%;
  display: block;
  background: white;
  border: 2px solid #d3d3d3;
  border-radius: 3px;
  padding: 0.8rem;
  margin-bottom: 5px;
  margin-right: 5px;
  text-align: center;
  position: relative;
  box-shadow: 0px 15px 24px rgb(179 210 233 / 25%);
}

.mycustom-radio input[type=radio]:checked+label {
  background: #272c5c;
  color: white;
  box-shadow: 0px 15px 24px rgb(179 210 233 / 25%);
  border-color: #272c5c;
}
.mycustom-radio input[type=radio]:checked+label svg path {
  fill: #59BFC9;
}



.services-clients .operateurs.custom-radio label {
  padding: 22px 30px;
}
/******* End formulaire ********/


/******* Service client ********/
.page-title-bg-image {
  background: #E2F1FA url('../images/bg-header.png') no-repeat center center;
  background-size: cover;
  padding: 40px 0 20px 0;
}

.page-title.page-title-bg-image .title h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #1E647F;
  border-left: none;
  padding-left: 0;
}
.page-title.page-title-bg-image .title p {
    font-weight: 300;
    color: #959BB1;
    font-size: 16px;
}
.services-clients {}
.services-clients #pills-tab {}
.services-clients #pills-tab .nav-item {}
.services-clients #pills-tab .nav-item a {}
.services-clients #pills-tab .nav-item a svg {
    display: inline-block;
    margin-right: 5px;
}
.operateurs label svg path,
.services-clients #pills-tab .nav-item a svg path {
    fill: #565F82;
    transition: all 0.3s ease-in-out;
}
.services-clients #pills-tab .nav-item a.active svg path {
    fill: #59BFC9;
}
.services-clients h4.section-title {
  font-size: 20px;
  margin-bottom: 5px;
}
.services-clients p.section-desc {
  font-weight: 300;
  color: #656565;
}

/******* End Service client ********/


/******* Confirmation ********/
.intro-confirmation {
    text-align: center;
    margin-top: 30px;
}
.intro-confirmation img {
    height: 48px;
    display: inline-block;
    margin-bottom: 10px;
}
.intro-confirmation h3 {
    font-size: 24px;
    margin-bottom: 15px;
}
.intro-confirmation h3 img {
    height: 36px;
}
.intro-confirmation h3 strong {
    color: #272c5c;
}
.intro-confirmation p {
    color: #656565;
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 8px;
}
.intro-confirmation p.num-transaction {
    display: inline-block;
    margin: auto;
    padding: 8px 20px;
    background: #E2F1FA;
    border-radius: 30px;
    color: #1E647F;
    font-weight: 400;
}
span.email {
  color: #1E647F;
  font-weight: 400;
}
/******* End Confirmation ********/


/******* CGU ********/
.cgu {
    color: #3F3F3F;
    font-size: 14px;
    font-weight: 400;
}
.cgu h3 {
    color: #000000;
    font-size: 24px;
    margin-top: 15px;
    display: block;
}
.cgu h4 {
    color: #0E1B4D;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    display: block;
}
.cgu .id-touch {
    background: #ECF4FA;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #0E1B4D;
    display: inline-block;
}
.cgu .id-touch p {}
.cgu ul {}
.cgu ul li {}

/******* End CGU ********/



/******* Footer ********/
footer {
  background: #272B5C;
  padding: 20px 0;
  font-size: 14px;
  color: #9193AC;
}

footer .copyright a {
  color: #fff;
}

footer .social-network {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

footer .social-network a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #1d214c;
}

footer .social-network a:hover {
  background-color: #33396d;
}

footer .social-network img {
  height: 20px;
}

/******* End Footer ********/

/******* Popup Orange Money ********/
div.om-popup {
  width: 242px;
  min-height: 83px;
  padding: 13px 18px;
  margin-top: -3rem;
  transform: scale(0);
  display: none;
  transition: transform 0.5s ease-out ;
  box-shadow: -1px 2px 5px 2px rgba(227, 227, 227, 0.5);
  border: solid 1px #f1f1f1;
  background-color: #fff;
}
div.om-popup.show{
  transform: scale(1);
  display: block;
  transition: transform 1s ease-in-out;
  transform-origin: center center;
}
span.popup-text{
    /*margin: 18px 63px 64px 18px;*/
    font-family: Lato;
    font-size: 12px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #464545;
}
span.text-code{
  font-weight: bold;
}
div.Shape {
  width: 14px;
  height: 14px;
  background-color: #454f76;
}
.mtcustom-5{
  margin-top: 5.5rem !important;
}
.mbcustom-5{
  margin-bottom: 5.5rem !important;
}
.t-bold{
	font-weight: bold;
}
/******* End Popup Orange Money ********/
.service-item-img {
  cursor: pointer;
}
/***** Integration canal+ ****
.service-item-img{
  height: auto;
  width: 150px;
}
.service-item-img.reabonnement{
  height: auto;
  width: 156px;
}*/
.text-color-intouch {
  color: #272B5C;
}
.show_info_btn{
  display: block;
  width: 15px;
  height: 15px;
  line-height: 14px;
  text-align: center;
  background-color: #272B5C;
  color: white;
  border-radius: 50%;
}

#itemMenuBurger {
	display : none;
}

/******* Responsivite ******/
@media screen and (max-width: 992px) {
  .logo-web {
    display: none;
  }

  .logo-mobile {
    display: inline-block;
  }

  .navigation .navbar-nav li a.nav-link span {
    display: none;
  }

  .navigation .nav-item .btn {
    padding: 7px 15px;
  }
}

@media screen and (max-width: 410px) {
  .navigation .navbar-nav li a.nav-link {
    font-size: 13px;
    color: #565F82;
    margin-right: 8px;
    padding: 2px;
  }

  .navigation .nav-item .btn {
    padding: 5px 10px;
    font-size: 14px;
  }

  .select_wrap .default_option {
    margin-left: 10px;
  }

  .select_wrap .default_option li {
    padding: 0px 15px 0px 8px;
    border: solid 2px #272c5c;
    border-radius: 6px;
  }

  .select_wrap .default_option:before {
    right: 7px;
  }
}

@media screen and (max-width: 560px) {
  .navigation .navbar-nav li a.nav-link {
    padding: 10px 5px;
}

#itemMenuBurger {
	display : block;
}

.entites {
  padding: 20px 0;
}
.une-entite .desc p {
  font-size: 14px;
}
.custom-radio label {
  padding: 5px;
}

#itemCollectes, #itemProfessionnels {
	display : none;
}

#identifier:before {
    top: 45px;
    right: -10px;
}
   
  .hero h1 {
    color: #1E647F;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 12px;
    padding-left: 25px;
  }
  .hero-desc p {
    padding-left: 25px;
  }
  .hero h1 img {
    height: 22px;
  }

  .hero {
    padding: 30px 0px;
    background: url('../images/bg-hero.jpg') no-repeat right 40% top;
    background-size: cover;
  }

  .cards {
    margin-top: 30px !important;
  }

  .hero p span {
    font-size: 15px;
  }

  .cards .card-logos img {
    height: 40px;
    margin: 12px;
    margin-top: 5px;
}
.hide-on-phone {
  display: none;
}
.navigation .navbar-brand img {
  height: 50px;
  margin: 10px 0;
}
.cards .card {
padding: 15px 20px;
}

  footer .social-network {
    margin-top: 20px;
  }

  footer .social-network a {
    width: 30px;
    height: 30px;
  }

  footer .social-network img {
    height: 12px;
  }

  footer .social-network {
    justify-content: center;
  }

  footer .social-network p {
    display: none;
  }

  .page-title .title-back h3 {
    font-size: 18px;
    padding-left: 15px;
  }

  .page-title .title-back a {
    font-size: 14px;
  }

  .page-title .title-back a img {
    margin-right: 5px;
    height: 12px;
  }

  #payForm {
    padding: 20px 0px;
  }
}

/******* End Responsivite ******/