  /*.cookies-msg {
    z-index: 1500;
    position: fixed;
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.7);
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 12px;
	font-weight:bold;
    box-sizing: border-box;
    padding: 10px 40px 10px 10px;
    font-weight: bold;
    text-align: left;
  }*/
  
  /**
  *REM le 08/11/2023
  *Des modification sur l'afficahge de popup des ookies
  **/
  
  /**
  * Ancien affichage
  **/
  
   /*.cookies-msg {
    z-index: 1500;
    position: fixed;
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.7);
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 12px;
	font-weight:bold;
    box-sizing: border-box;
    padding: 10px 40px 10px 10px;
    font-weight: bold;
    text-align: left;
  }*/
  
  /**
  * Nouveau afficahge
  **/
  .cookies-msg {
    display: none;
    width: 25%;
    z-index: 1500;
    position: fixed;
    /* color: black; */
    background-color: whitesmoke;
    bottom: 3%;
    left: 10px;
    font-size: 12px;
    font-weight: bold;
    box-sizing: border-box;
    padding: 10px 10px 10px 10px;
    font-weight: bold;
    text-align: left;
    height: fit-content;
    border-radius: 10px;
	}

	.list-group-item{
		color: black;
	}
	 .cookies-msg__text {
		margin: 0;
		font-size: 14px;
		max-height: 180px;
		overflow-x: auto;
		padding-top: 10px;
		padding-top: 10px;
		margin-bottom: 10px;
	}

  .btn-ck-grey{
    color: white;
    background-color: #7d8c8d;
  }
  .ck-item{
    display: flex;
    justify-content: space-between;
    background-color: white;
    padding-left: 10px;
    align-items: center;
    margin-bottom: 5px;
  }
  /**
  *Fin
  **/
  .cookies-msg--hidden {
    transition: opacity 0.4s, visibility 0s 0.4s;
    visibility: hidden;
    opacity: 0;
  }
  .cookies-msg__content{
	vertical-align : middle;
    max-width: 1090px;
    margin: 0 auto;
    text-align: left;
    display: inline-block;
  }
  .cookies-msg__title{
    font-size: 1.5em;
    font-weight: inherit;
    margin-top: 0;
  }

  /**
  *	REM le 08/11/2023
  **/
 /** .cookies-msg__text{
    margin: 0;
  }**/
  
  .cookies-msg__close-btn{

    font-size: 16px;
    color: inherit;
    position: relative;				/* absolute */
	float :right;					/* ajout srh*/
    right: 0;
    top: 0;
    border: 0;
    border-radius: 0;
    height: 40px;
    width:  42px;                /* 40 */
	background: #2BA6CB;		/* none */
  }
  .cookies-msg__link{
    color: inherit;
    text-decoration: underline;
  }

@media(max-width: 500px){
    .cookies-msg {
      font-size: 11px;
      font-weight: normal;
    }
    .cookies-msg__title{
      display: none;
    }
    .cookies-msg__close-btn{
      top: 50%;
      margin: -20px 0;
    }
  }
  
.icon {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

/**
* Style pour le checkbox
**/
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(23px);
  -ms-transform: translateX(23px);
  transform: translateX(23px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.ck-toggle{
  display: flex;
  align-items: center;
}
.ck-name{
  font-size: 15px;
  margin-left: 5px;
}
/**
* Fin Style pour le checkbox
**/

@media only screen and (max-width: 767px){
	.cookies-msg {
		width: 100%;
	}
}