/***
* MEDIC EXPAT - SITE - PAGE DEFAULT CSS
* 
* 
***/



/* --- CSS ROOT --- 
:root {


}*/



/* ----- GENERALS PAGE CLASS CSS ----- */
.txt-red { color:#aa0000; }

.txt-08em { font-size: 0.8em !important; }


html, body {
    margin: 0;
}

.hidden-elem {
    opacity: 0;
    transform: translateY(50px);
}

.reveal-elem {
    opacity: 1;
    transform: translateY(0);
    transition: 1s cubic-bezier(0.5, 0, 0, 1);
    -webkit-transition: 1s cubic-bezier(0.5, 0, 0, 1);
    -moz-transition: 1s cubic-bezier(0.5, 0, 0, 1);
}

.disp-inline {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: inline-flex;
}

.disp-flex-between {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.disp-flex-around {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}

.display {
    display: block;
}
.display-flex {
    display: inline-flex;
}
.not-display {
    display: none;
}



/* ----- UTILS NOTIF MESSAGE STYLE ----- */
.anim-notif-msg-class {
  animation: anim_notif_msg 15s ease-in-out;
}

.site-notif-msg-cont {
  position: absolute;
  z-index: 1000;
  max-width: 60%;
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 5px;
  padding-bottom: 5px;
  top: 25px;
  right: 2%;

  border:none;
  border-radius: 5px;
  box-shadow: 2px 2px 4px #505050;

  background-color: #ffffff;
  
  transform: translate(-100px);
  opacity: 0;
  /*transition: transform 1000ms ease-in-out, opacity 1000ms ease-in-out;*/
}
.site-notif-msg {
  position: relative;
  width: 100%;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  /*gap: 0px;*/
}
.site-notif-msg p {
  position: relative;
  width: 100%;

  text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;
    font-size: calc(1.1em * var(--lateral-preview-reduc-ratio, 1));
    font-weight: normal;
    color: #050505;
    text-align: left;

    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    margin-top: calc(10px * var(--lateral-preview-reduc-ratio, 1));
    margin-bottom: calc(10px * var(--lateral-preview-reduc-ratio, 1));

}

.site-notif-timeline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0; /* Commence invisible */
  background-color: var(--me-color-1);
  animation: timeline_progress 15s linear; /* Même durée que l'animation principale */
}





/* ----- GENERALS ANIMATION CSS ----- */
/* Background Transla */
@-webkit-keyframes anim_background_transla {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes anim_background_transla {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* Background Size Zoom Effect */
@-webkit-keyframes anim_background_zoom {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 120%;
  }
  100% {
    background-size: 100%;
  }
}
@keyframes anim_background_zoom {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 120%;
  }
  100% {
    background-size: 100%;
  }
}


/* Background Lines Effect */
@-webkit-keyframes drop {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}
@keyframes drop {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}

/* Background Transla */
@-webkit-keyframes anim_rotate_360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes anim_rotate_360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg); 
  }
}


/* NOTIF MSG ANIMATION */
@-webkit-keyframes anim_notif_msg {
  0% {
    transform: translate(0px, -100px);
    opacity: 0;
  }
  20% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
  80% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
  100% {
    transform: translate(0px, -100px);
    opacity: 0;
  }
}
@keyframes anim_notif_msg {
  0% {
    transform: translate(0px, -100px);
    opacity: 0;
  }
  20% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
  80% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
  100% {
    transform: translate(0px, -100px);
    opacity: 0;
  }
}
/* NOTIF TIMELINE */
@-webkit-keyframes timeline_progress {
  0% {
    width: 0;
  }
  20% {
    width: 0;
  }
  80% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}
@keyframes timeline_progress {
  0% {
    width: 0;
  }
  20% {
    width: 0;
  }
  80% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}




/* ----- PAGE GENEREALS ANIMATION ----- */

/* SMOOTH_DISPLAY : Apparition par opacité */
.onload-anim_smooth_opa_reveal {
    opacity: 0;  
}
.anim_smooth_opa_reveal { 
    animation: anim_smooth_opa_reveal 1s ease-in-out; 
    opacity: 1;  
}
@-webkit-keyframes anim_smooth_opa_reveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes anim_smooth_display {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/* TOP_OPA_TRANSLA : Apparition par opacité et translation de haut en bas */
.scroll-anim-top_opa_transla {
    transform: translateY(100%);
    opacity: 0;  
}
.anim-top_opa_transla { 
    animation: anim-top_opa_transla 1s ease-in-out; 
    transform: translateY(0%);
    opacity: 1;  
}
@-webkit-keyframes anim-top_opa_transla {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes anim-top_opa_transla {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

/* RIGHT_OPA_TRANSLA : Apparition par opacité et translation de droite à gauche */
.scroll-anim-right_opa_transla {
    transform: translateX(100%);
    opacity: 0;  
}
.anim-right_opa_transla { 
    animation: anim-right_opa_transla 1s ease-in-out; 
    transform: translateX(0%);
    opacity: 1;  
}
@-webkit-keyframes anim-right_opa_transla {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes anim-right_opa_transla {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}

/* LEFT_OPA_TRANSLA : Apparition par opacité et translation de gauche à droite */
.scroll-anim-left_opa_transla {
    transform: translateX(-100%);
    opacity: 0;  
}
.anim-left_opa_transla { 
    animation: anim-left_opa_transla 1s ease-in-out; 
    transform: translateX(0%);
    opacity: 1;  
}
@-webkit-keyframes anim-left_opa_transla {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes anim-left_opa_transla {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}











/* ---------- MEDIA QUERIES SYSTEM ------------------------------------------------------------*/
/* --- > 1200 ----------------------------------------- */
@media screen and (width > 1200px) {

}

/* --- 1200 - 1025 ----------------------------------------- */
@media screen and (width <= 1200px) and (width > 1024px) {
    
    

}

/* --- 1024 - 769 ------------------------------------------ */
@media screen and (width <= 1024px) and (width > 768px) {
      
    

}

/* --- 768 - 481 ------------------------------------------- */
@media screen and (width <= 768px) and (width > 480px) {
    
  
}

/* --- 480 - 321 ------------------------------------------- */
@media screen and (width <= 480px) and (width > 320px) {

  


}

/* --- 320  ------------------------------------------------ */
@media screen and (width <= 320px) {

    

}




