<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("class.css?v=19");
nav{
    z-index: 1001;
}
.find-course{
  width: 75%;
  justify-content: end;
}
.find-course-text{
  font-size: 20px;
}
.find-course-hrf {
  padding: 6px 16px;
}
.overlay{
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  opacity: 0;
  transition: var(--main-transition--);
}
#top-nav {
  background-color: transparent;
  color: var(--main-white--);
}

.link-change span {
  border: 1px solid var(--main-white--);
  color: var(--main-white--);
  transition: var(--main-transition--);
}

.link-change span:first-child{
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}
.link-change span:last-child{
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.link-change span a {
  font-size: 14px;
  text-decoration: none;
  color: var(--main-white--);
}
.link-change span:hover {
  background-color: var(--main-color-use);
}
#right-nav{
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow-y:scroll;
    width: 400px;
    z-index: 1000;
    transition: var(--main-transition--);
    transform: translateX(400px);
}
#selectLanguage .d-flex{
  cursor: pointer;
  width: fit-content;
}
.other-language{
  left: 10px;
  bottom: -70px;
  transition: var(--main-transition--);
}
.lang-translate{
  transform: translateX(-50px);
  opacity: 0;
}
.rotate-icon{
  transform: rotate(90deg);
}
.nav-lnk-right  .d-flex:hover , #selectLanguage .d-flex:hover{
  background-color:rgb(255, 255, 255 ,0.15);
}
/* Progress Butttons */
#progress {
  position: fixed;
  bottom: 90px;
  right: 30px;
  height: 50px;
  width: 50px;
  display: none;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999999;
  transition: 0.8s;
}

#progress-value {
  display: block;
  height: calc(100% - 5px);
  width: calc(100% - 6px);
  background-color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #dbac7a;
  margin-top: 1px;
  margin-bottom: 2px;

}
/* Code for the blinking css */
.blink {
  transition: var(--main-transtion--);
  animation: blink-animation 2s infinite;
}
.swal2-spinner {
  border-top-color: var(--main-color-use); /* Couleur du spinner */
}
/**
Code for the pop-up sign in
**/
.pop-sign{
  transition: 0.6s;
  z-index: 1001;
  width: 100%;
  bottom: 70px;
  opacity: 0;
  transition: 0.4s;
  transform: translateY(100px);
  pointer-events: none;
}
.pop-up-item{
width:50%
}
.pop-sign .img-bc{
  height: 400px;
}
.pop-sign-on{
  opacity: 1;
  transform: translateY(0);
  pointer-events: visible;
}
.close-pop-sign{
  cursor: pointer;
}

@keyframes blink-animation {
  0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0;
  }
}
/*  */
@media (max-width: 767px) {
  .pop-sign{
    width: 100%;
  }
  .pop-up-item{

    width:90%;
  }
  .pop-sign .img-bc{
    height: 200px;
  }
  
  .find-course{
    width: 100%;
    justify-content: left;
  }
  .find-course-container{
    flex-wrap: wrap;
  }
  .find-course-text{
    font-size: 15px;
  }
  .find-course-hrf {
    padding: 10px 15px;
  }
  #top-nav .row .row{
    flex-direction: column-reverse;
  }
  #top-nav .top-chn{
    position: absolute;
    bottom: 20px;
    right: 0 ;
    width: fit-content;
  }
}
</pre></body></html>