
.logo_create{
    border: 1px solid white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 1px 5px;
    
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    
    transition: all 0.5s;
}

.logo_create:hover{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }

  .logo_create:active{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
  }

  .disparu .logo_create {
    transform: scale(0.5);
    opacity: 0;
    visibility: hidden;
  }



.cont_logo_create{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
  
.logo_preview{
    position: fixed;
    
    right: 3em;
    z-index:3;


    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.kCenter{
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  
}

.modalFiltre{
  position:fixed;
  left:0.2em;
}
  
.logo_createFilter{
  border-radius: 10%;
  margin-left:1em;
}

.logo_trashFilter{
  
  margin:0px;

  /*border: 1px solid grey;*/
  box-shadow: rgba(0, 0, 0, 0.35) 0px 1px 5px;
  font-style: 1.2em;
  padding:4em;
  /*margin:0.4em;*/
  margin-right:0.3em;
  border-radius: 50%;
  width:2em;
  height: 2em;

}

.animation_move {
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#body-child{
  overflow: scroll;
  margin:0;
  padding:0;
}

#body-child:-webkit-full-screen {
	width: 100%;
	height: 100%;
	background-color: #f6f9ff;
	margin: 0;
}

#body-child:-moz-full-screen {
	background-color: #f6f9ff;
	margin: 0;
}

#body-child:-ms-fullscreen {
	background-color: #f6f9ff;
	margin: 0;
}

/* W3C proposal that will eventually come in all browsers */
#body-child:fullscreen { 
	background-color: #f6f9ff;
	margin: 0;
}

/*
CALENDAR
*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");
*, *:after, *:before {
  box-sizing: border-box;
}

:root {
  --c-theme-primary: #008FFD;
  --c-theme-primary-accent: #CBE8FF;
  --c-bg-primary: #D6DAE0;
  --c-bg-secondary: #EAEBEC;
  --c-bg-tertiary: #FDFDFD;
  --c-text-primary: #1F1F25;
  --c-text-secondary: #999FA6;
}



.datepicker button {
  font: inherit;
  cursor: pointer;
}
.datepicker button:focus {
  outline: 0;
}

.datepicker {
  margin:auto;
  width: 95%;
  max-width: 350px;
  background-color: var(--c-bg-tertiary);
  border-radius: 10px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.6), 0 5px 10px 0 rgba(0, 0, 0, 0.3);
  padding: 1rem;
}

.datepicker .datepicker-top {
  margin-bottom: 1rem;
}

.datepicker .btn-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  margin-top: -0.5rem;
}

.datepicker .tag {
  margin-right: 0.5rem;
  margin-top: 0.5rem;
  border: 0;
  background-color: var(--c-bg-secondary);
  border-radius: 10px;
  padding: 0.5em 0.75em;
  font-weight: 600;
}

.datepicker .month-selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*
.datepicker .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background-color: #FFF;
  border-radius: 12px;
  width: 2.5rem;
  height: 2.5rem;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25), 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
*/

.datepicker .month-name {
  font-weight: 600;
}

.datepicker .datepicker-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-row-gap: 1rem;
}

.datepicker .day, .datepicker .date {
  justify-self: center;
}

.datepicker .day {
  color: var(--c-text-secondary);
  font-size: 0.875em;
  font-weight: 500;
  justify-self: center;
}

.datepicker .date {
  border: 0;
  padding: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 600;
  border: 2px solid transparent;
  background-color: transparent;
  cursor: pointer;
}
/*
.datepicker .date:focus {
  outline: 0;
  color: var(--c-theme-primary);
  border: 2px solid var(--c-theme-primary-accent);
}
*/

.datepicker .faded {
  color: var(--c-text-secondary);
}

.datepicker .faded:disabled {
  color: #fff0;
}

.datepicker .invisible{
  color: #fff0;
}

.datepicker .invisible:disabled{
  color: #fff0;
}

.datepicker .current-day {
  color: #FFF;
  border-color: var(--c-theme-primary);
  background-color: var(--c-theme-primary);
}

.datepicker .datepicker-calendar button:disabled{
  cursor:auto;
  color: #fff0;
}
.datepicker .datepicker-calendar button:disabled:after{
  content: "\00274C";
  position:absolute;
  color:#d9534f;
}

/*
.datepicker .current-day:focus {
  background-color: var(--c-theme-primary-accent);
}
*/

#warningConnexionServeur{
  right:0;
  z-index: 1999;
  transition: all 1s; 

   
}

.inverse{
  transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
}

.bord-rond-extremite-gauche{
  border-radius: 50% 0 0 50%;
}
.bord-rond-extremite-droite{
  border-radius: 0 50% 50% 0;
}

.cont_choix_logo{
  overflow: scroll;
  white-space: nowrap;
  max-height: 200px;
  
}

.animated {
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation: rotateSquare 1s 4s ease-in forwards;
  transition: all 4s ease-out;
}


:root {
  --bg: #0f39e4;
  --bgT: #e3e4e800;
  --fg: #17181c;
  --inputBg: #fff;
  --handleBg: #255ff4;
  --handleDownBg: #0b46da;
  --handleTrackBg: #5583f6;
  
}

.arrow-rotate{
  transition: transform 600ms ease-in-out;
}

.arrow-rotate-180{
  transform: rotate(180deg);
}

.z-index-2000{
  z-index: 2000;
}

#resizeIcons {
  cursor: pointer;
}

.inner_border{
  position: absolute;

  left:0;
  top:0;
  
  width: 100%;
  height: 100%;
  border-radius: 10%;

  z-index:2;
  
}




.logo_actu_anim .inner_border{
  

  animation: pulse 1s ease-out;
  -webkit-animation : pulse 1s ease-out;
  -moz-animation: pulse 1s ease-out;

  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;

  z-index: 1;

}


@-webkit-keyframes pulse {
  0% {
    opacity: 1;
    background: #fd500040;
    -webkit-transform: scale(1.3);
  }
  80% {
    opacity: 0.4;
    background: #fd500030;
    
  }
  100% {
    opacity: 0;
    background: #fd500040;
    -webkit-transform: scale(2.2);
  }
}

@-moz-keyframes pulse {
  0% {
    opacity: 1;
    background: #fd500040;
    -moz-transform: scale(1.3);
  }
  80% {
    opacity: 0.4;
    background: #fd500030;
    
  }
  100% {
    opacity: 0;
    background: #fd500040;
    -moz-transform: scale(2.2);
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
    background: #fd500040;
    transform: scale(1.3);
  }
  80% {
    opacity: 0.4;
    background: #fd500030;
    
  }
  100% {
    opacity: 0;
    background: #fd500040;
    transform: scale(2.2);
  }
}


/*animation loader*/
.lds-spinner {
  color: official;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: rgb(255, 255, 255);
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


.spinner-elt{
  background:#0006; 
  border-radius:1em; 
  position: absolute; 
  top:0px; 
  width:100%; 
  height:100%;
}

.elt_prog{
  margin:auto;
  position: absolute;
  top:0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 25%;
  height: 1.5em;

  font-weight: bold;
  font-size: 1.2em;

  border-radius: 2em;
  box-shadow:  rgba(0, 0, 0, 0.35) 0px 1px 5px;
}

.elt_prog_text{
  position: absolute;
  top:0; right:0; left: 0; bottom:0;
  margin:auto;
  background: #ffffff00;

  text-align: center;
  text-shadow: #0d2a52 0px 0px 5px;
  color:rgb(255, 255, 255);
}

.spinner-cible{
  position: relative;
  /*
  -webkit-filter: grayscale(80%);
  -moz-filter: grayscale(80%);
  -o-filter: grayscale(80%);
  -ms-filter: grayscale(80%);
  filter: grayscale(80%);
*/
}

.cursor-crosshair{
  cursor:crosshair;
}

.cursor-pointer{
  cursor:pointer;
}

