@import "datatables.min.css";
@import "glider.css";
@import "jquery.dataTables.min.css";
@import "responsive.dataTables.min.css";
@import "spinner.css";
* {
  font-family: "Montserrat", sans-serif;
}

html:has(#home_page) {
  overflow-y: hidden;
  height: 100%;
}
html:has(#home_page) body,
html:has(#home_page) .content,
html:has(#home_page) #home_page,
html:has(#home_page) .profile-page {
  height: 100%;
}

body {
  position: relative;
  margin: 0px;
  font-family: "Montserrat", sans-serif;
}

ul, li, a {
  color: inherit;
  list-style: none;
  text-decoration: none;
  padding: 0px;
}

h1 {
  margin: 0;
  font-size: 17px;
  text-transform: capitalize;
}

.hidden {
  display: none !important;
}

.flex-mobile {
  display: flex;
}

section {
  margin: 90px 0;
}

section:last-of-type {
  margin-bottom: 0;
}

.content {
  max-width: 100%;
  background-color: #FFFFFF;
}

.page-content {
  background: #eeeeee;
  padding: 100px 50px 50px 120px;
  min-height: calc(100vh - 150px);
}

img {
  max-width: 100%;
}

#bit-notification-bar-spacer {
  display: none;
}

/* HEADER */
.main-header {
  position: fixed;
  display: flex;
  height: 50px;
  width: 100%;
  background-color: #FFFFFF;
  padding: 10px 0;
  margin: 0;
  box-shadow: 1px 1px 2px rgba(136, 136, 136, 0.3098039216);
  z-index: 3;
}
@media screen and (max-width: 600px) {
  .main-header {
    height: 70px;
  }
}
.main-header .header-infos {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-left: 30px;
  gap: 20px;
}
@media screen and (max-width: 600px) {
  .main-header .header-infos {
    margin-left: 60px;
  }
}
.main-header .header-infos .box-logo {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  text-align: center;
  margin: auto 0;
  grid-column: 1;
}
@media screen and (max-width: 550px) {
  .main-header .header-infos .box-logo {
    flex-direction: column;
    gap: 5px;
  }
}
.main-header .header-infos .box-logo .logo {
  display: flex;
}
.main-header .header-infos .box-logo .logo img {
  height: 30px;
}
@media screen and (max-width: 600px) {
  .main-header .header-infos .box-logo .logo img {
    height: 20px;
  }
}
@media screen and (max-width: 450px) {
  .main-header .header-infos .box-logo .logo img {
    height: 7vw;
  }
}
@media screen and (max-width: 550px) {
  .main-header .header-infos .box-logo h1 {
    align-self: baseline;
    font-size: 18px;
  }
}
.main-header .header-infos .user {
  display: flex;
  align-items: center;
  margin-right: 45px;
}
.main-header .header-infos .user img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 450px) {
  .main-header .header-infos .user img {
    height: 13vw;
    width: 13vw;
  }
}
.main-header .header-infos .user .name {
  margin: auto 20px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 450px) {
  .main-header .header-infos .user .name {
    margin: -47px 10px 0;
  }
}
@media screen and (max-width: 450px) {
  .main-header .header-infos .user .name > span {
    display: none;
  }
}
.main-header .header-infos .user .name .accordion {
  position: relative;
}
.main-header .header-infos .user .name .accordion input {
  position: absolute;
  top: -24px;
  right: -43px;
  left: inherit;
  height: 30px;
  width: 30px;
  opacity: 0;
  visibility: 0;
}
.main-header .header-infos .user .name .accordion input:checked ~ label svg {
  transform: rotate(360deg);
  transition: 0.5s;
}
.main-header .header-infos .user .name .accordion input:checked ~ .accordion-content {
  display: block;
  height: 20px;
}
.main-header .header-infos .user .name .accordion label {
  position: absolute;
  top: -24px;
  right: -40px;
  display: flex;
  align-items: center;
  opacity: 0.8;
  cursor: pointer;
}
.main-header .header-infos .user .name .accordion label:hover {
  opacity: 1;
}
.main-header .header-infos .user .name .accordion label svg {
  transform: rotate(270deg);
  transition: 0.5s;
}
@media screen and (max-width: 450px) {
  .main-header .header-infos .user .name .accordion input,
.main-header .header-infos .user .name .accordion label {
    top: 7px;
  }
}
.main-header .header-infos .user .name .accordion .accordion-content {
  display: none;
  height: 0;
  transition: 0.5s;
}
.main-header .header-infos .user .name .accordion .accordion-content #openProfile {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
.main-header .header-infos .user .name a {
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

/* menu mobile */
.mobile-menu #ham-menu {
  display: none;
}

.mobile-menu label[for=ham-menu] {
  display: block;
  position: fixed;
  height: 60px;
  width: 60px;
  margin: 0;
  z-index: 999;
  border-radius: 15px;
}

.mobile-menu .mobile-icon-menu {
  display: none;
  justify-content: center;
  margin: 0;
}

.mobile-menu .mobile-icon-menu div {
  display: flex;
  flex-direction: column;
  margin: 0 10px;
  cursor: pointer;
}

.mobile-menu .mobile-icon-menu span {
  width: 25px;
  margin: 4px;
  padding: 1px;
  background-color: #000;
}

.mobile-menu .ham-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0;
  height: 100%;
  width: 50vw;
  margin: 0;
  justify-content: space-evenly;
  visibility: hidden;
  transform: translate(-110%);
  z-index: 998;
  background-color: #ededed;
  transition: 1s;
}

.mobile-menu .ham-menu > ul {
  display: flex;
  flex-flow: column nowrap;
  padding: 10%;
  gap: 20px;
  list-style: none;
}

.mobile-menu .ham-menu .mobile-user {
  font-size: 12px;
}

.mobile-user #user_photo-2 {
  height: 20px;
  margin: 0 20px;
}

.mobile-menu .ham-menu > ul > li > a {
  display: flex;
  white-space: nowrap;
  gap: 10px;
  cursor: pointer;
  color: #000;
}

.mobile-menu .ham-menu > ul > li > a > img {
  height: 30px;
}

.mobile-menu .ham-menu > ul > li > a > p {
  display: inline;
  margin: 0;
  font-size: 15px;
  align-self: center;
  line-height: 1.5em;
  word-spacing: 0.5em;
  letter-spacing: 0.1em;
}

.mobile-menu #ham-menu:checked + label {
  background-color: transparent;
  border-color: #000;
}

.mobile-menu #ham-menu:checked ~ div.ham-menu {
  transform: translate(0px);
  visibility: visible;
}

.mobile-menu [for=ham-menu] > div {
  height: 100%;
  width: 100%;
  flex-flow: column wrap;
  align-content: center;
}

.mobile-menu #ham-menu:checked + label span {
  background-color: #000;
}

.mobile-menu .ham-menu .logout {
  margin: 0 20px;
  font-size: 12px;
  text-decoration: underline;
}

/* nav */
.nav {
  position: fixed;
  min-height: calc(100vh - 70px);
  margin: 0 !important;
  padding-top: 70px;
  text-align: center;
  background-color: #FFF;
  box-shadow: 5px 0px 20px rgba(136, 136, 136, 0.3098039216);
  z-index: 2;
}
.nav:hover > ul {
  width: 160px;
  transition: 0.5s;
}
.nav:hover > ul a span,
.nav:hover > ul #openMajPopin span {
  opacity: 1;
  transition: 1s;
}
.nav > ul {
  width: 60px;
  transition: 0.5s;
}
.nav > ul > li {
  margin: 25px 0;
}
.nav > ul > li a,
.nav > ul > li #openMajPopin {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
}
.nav > ul > li a i,
.nav > ul > li #openMajPopin i {
  font-size: 20px;
  padding: 15px;
}
.nav > ul > li a span,
.nav > ul > li #openMajPopin span {
  opacity: 0;
  transition: 0.2s;
}
.nav > ul > li #openMajPopin:hover {
  cursor: pointer;
}
.nav > ul > li:hover a,
.nav > ul > li:hover #openMajPopin, .nav > ul > li.active a,
.nav > ul > li.active #openMajPopin {
  background-color: aliceblue;
  border-right: 5px solid #007bff;
}
.nav > ul > li > ul {
  display: none;
  transition: 0.5s;
}
.nav > ul > li:hover > ul {
  display: block;
  margin: 0;
  transition: 0.5s;
}
.nav > ul > li:hover > ul li a {
  background-color: initial;
  font-size: 12px;
}
.nav > ul > li:hover > ul li:hover a {
  background-color: aliceblue;
}

.container-logo {
  max-width: 200px;
}

.container-logo img {
  margin: auto;
}

/* nav responsive */
@media screen and (max-width: 550px) {
  .mobile-icon-menu {
    display: flex !important;
  }
  .page-content {
    padding: 100px 50px;
  }
  h1 {
    font-size: 20px;
    align-self: center;
  }
  .user {
    display: none;
  }
  .nav {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .page-content {
    padding: 100px 30px;
  }
}
@media screen and (max-width: 500px) {
  .mobile-menu .ham-menu {
    width: 100vw;
  }
  .mobile-menu .ham-menu li {
    border-bottom: solid 1px black;
    padding-bottom: 20px;
  }
  .mobile-menu .ham-menu li:last-child {
    border-bottom: none;
    padding-bottom: 0px;
  }
  .mobile-menu .ham-menu > ul > li > a {
    gap: 30px;
  }
}
/* Home page */
.page-content#home_page {
  padding: 85px 50px 50px 120px;
}
@media screen and (max-width: 675px) {
  .page-content#home_page {
    padding: 85px 20px 50px 90px;
  }
}
@media screen and (max-width: 600px) {
  .page-content#home_page {
    padding: 110px 20px 50px 90px;
  }
}
@media screen and (max-width: 550px) {
  .page-content#home_page {
    padding: 110px 20px 50px 20px;
    background-color: #FFF;
  }
}
.page-content#home_page .title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1.3vw;
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 675px) {
  .page-content#home_page .title {
    font-size: 17px;
  }
}
@media screen and (max-width: 450px) {
  .page-content#home_page .title {
    display: none;
  }
}
.page-content#home_page .title img {
  height: 2vw;
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .title img {
    height: 25px;
  }
}
@media screen and (max-width: 675px) {
  .page-content#home_page .title img {
    font-size: 23px;
  }
}
.page-content#home_page .body {
  display: flex;
  flex-direction: column;
  min-height: 60vh;
  max-height: 70vh;
  padding: 2vw;
  background-color: #FFF;
  border-radius: 50px;
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .body {
    max-height: inherit;
    padding: 4vw;
  }
}
@media screen and (max-width: 600px) {
  .page-content#home_page .body {
    padding: 4vw 2vw;
  }
}
@media screen and (max-width: 400px) {
  .page-content#home_page .body {
    padding: 20px;
  }
}
.page-content#home_page .body .top {
  display: flex;
  justify-content: space-between;
  gap: 2vw;
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .body .top {
    flex-direction: column;
  }
}
.page-content#home_page .body .top .left {
  display: flex;
  flex-direction: column;
  width: 45%;
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .body .top .left {
    width: 100%;
  }
}
.page-content#home_page .body .top .left #home_shortlinks {
  display: flex;
  justify-content: center;
  gap: 2.5vw;
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .body .top .left #home_shortlinks {
    gap: 5vw;
    align-self: center;
  }
}
@media screen and (max-width: 475px) {
  .page-content#home_page .body .top .left #home_shortlinks {
    margin-top: 20px;
  }
}
.page-content#home_page .body .top .left #home_shortlinks h2 {
  display: flex;
  align-items: center;
  width: 38px;
  font-size: 0.7vw;
  text-transform: uppercase;
}
@media screen and (max-width: 1700px) {
  .page-content#home_page .body .top .left #home_shortlinks h2 {
    font-size: 0.9vw;
  }
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .body .top .left #home_shortlinks h2 {
    font-size: 1vw;
  }
}
@media screen and (max-width: 550px) {
  .page-content#home_page .body .top .left #home_shortlinks h2 {
    display: none;
  }
}
.page-content#home_page .body .top .left #home_shortlinks h2,
.page-content#home_page .body .top .left #home_shortlinks a {
  height: 3vw;
  width: 3vw;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 1700px) {
  .page-content#home_page .body .top .left #home_shortlinks h2,
.page-content#home_page .body .top .left #home_shortlinks a {
    height: 4vw;
    width: 4vw;
  }
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .body .top .left #home_shortlinks h2,
.page-content#home_page .body .top .left #home_shortlinks a {
    height: 50px;
    width: 50px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 675px) {
  .page-content#home_page .body .top .left #home_shortlinks h2,
.page-content#home_page .body .top .left #home_shortlinks a {
    height: 40px;
    width: 40px;
  }
}
@media screen and (max-width: 475px) {
  .page-content#home_page .body .top .left #home_shortlinks h2,
.page-content#home_page .body .top .left #home_shortlinks a {
    height: 50px;
    width: 50px;
  }
}
.page-content#home_page .body .top .left #home_shortlinks a {
  border-radius: 1vw;
  box-shadow: 0 0 10px 2px #d1d1d1;
  transition: 0.3s;
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .body .top .left #home_shortlinks a {
    border-radius: 10px;
  }
}
.page-content#home_page .body .top .left #home_shortlinks a:hover {
  box-shadow: 0 0 1px 1px #c5c5c5;
  transform: scale(0.95);
  transition: 0.2s;
}
.page-content#home_page .body .top .left #home_shortlinks a img {
  height: 3vw;
}
@media screen and (max-width: 1700px) {
  .page-content#home_page .body .top .left #home_shortlinks a img {
    height: 4vw;
  }
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .body .top .left #home_shortlinks a img {
    height: 50px;
  }
}
@media screen and (max-width: 675px) {
  .page-content#home_page .body .top .left #home_shortlinks a img {
    height: 40px;
  }
}
@media screen and (max-width: 475px) {
  .page-content#home_page .body .top .left #home_shortlinks a img {
    height: 50px;
  }
}
.page-content#home_page .body .top .left #home_shortlinks a .tooltiptext {
  position: absolute;
  bottom: -28px;
  left: -30px;
  width: 120px;
  margin: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  z-index: 1;
  visibility: hidden;
}
.page-content#home_page .body .top .left #swipers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 30px;
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .body .top .left #swipers {
    width: 100%;
  }
}
.page-content#home_page .body .top .left #swipers .swiper {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 475px) {
  .page-content#home_page .body .top .left #swipers .swiper {
    text-align: -webkit-center;
  }
}
@media screen and (max-width: 475px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper {
    height: 165px;
    width: 80%;
  }
}
@media screen and (max-width: 400px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper {
    height: 245px;
    width: 90%;
  }
}
.page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  gap: 0.8vw;
  height: 8vw;
  align-items: center;
  text-align: center;
  font-size: 18px;
  background: #fff;
}
@media screen and (max-width: 1450px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide {
    height: 9vw;
  }
}
@media screen and (max-width: 1200px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide {
    gap: 0.2vw;
  }
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide {
    gap: 3vw;
    height: 17vh;
  }
}
@media screen and (max-width: 675px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide {
    gap: 2vw;
    height: 16vh;
  }
}
@media screen and (max-width: 475px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    justify-items: center;
    gap: 10px;
    height: 10vh;
    width: 75% !important;
  }
}
@media screen and (max-width: 400px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
  }
}
.page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 9px;
  align-items: center;
  text-align: center;
  height: 105px;
  width: 5.5vw;
}
@media screen and (max-width: 1450px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide a {
    height: 85px;
  }
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide a {
    height: 90px;
    width: 8vw;
  }
}
@media screen and (max-width: 675px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide a {
    height: 70px;
    width: 10vw;
  }
}
@media screen and (max-width: 550px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide a {
    justify-content: center;
    width: 60px;
  }
}
.page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide a img {
  height: 2.5vw;
  padding: 10px;
  border-radius: 1vw;
  box-shadow: 0 0 10px 2px #d1d1d1;
  transition: 0.3s;
}
@media screen and (max-width: 1700px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide a img {
    height: 3vw;
  }
}
@media screen and (max-width: 1200px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide a img {
    height: 2.5vw;
  }
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide a img {
    height: 35px;
    padding: 8px;
  }
}
@media screen and (max-width: 675px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide a img {
    height: 25px;
    padding: 8px;
  }
}
@media screen and (max-width: 550px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide a img {
    height: 45px;
    padding: 5px;
    border-radius: 2vw;
  }
}
.page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide a img:hover {
  box-shadow: 0 0 1px 1px #c5c5c5;
  transform: scale(0.95);
  transition: 0.2s;
}
.page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide a p {
  margin: 0;
  font-size: 0.8vw;
}
@media screen and (max-width: 1700px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide a p {
    font-size: 0.9vw;
  }
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide a p {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 675px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide a p {
    font-size: 2vw;
  }
}
@media screen and (max-width: 550px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-wrapper .swiper-slide a p {
    display: none;
  }
}
.page-content#home_page .body .top .left #swipers .swiper .swiper-button-prev,
.page-content#home_page .body .top .left #swipers .swiper .swiper-button-next {
  color: #0F5F9A;
}
.page-content#home_page .body .top .left #swipers .swiper .swiper-button-prev::after,
.page-content#home_page .body .top .left #swipers .swiper .swiper-button-next::after {
  font-size: 2vw;
}
@media screen and (max-width: 675px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-button-prev::after,
.page-content#home_page .body .top .left #swipers .swiper .swiper-button-next::after {
    font-size: 4vw;
  }
}
@media screen and (max-width: 400px) {
  .page-content#home_page .body .top .left #swipers .swiper .swiper-button-prev::after {
    position: absolute;
    left: -10px;
  }
  .page-content#home_page .body .top .left #swipers .swiper .swiper-button-next::after {
    position: absolute;
    right: -10px;
  }
}
.page-content#home_page .body .top .right {
  display: flex;
  justify-content: space-between;
  gap: 2vw;
  width: 52%;
}
@media screen and (max-width: 1200px) {
  .page-content#home_page .body .top .right {
    width: 53%;
  }
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .body .top .right {
    width: 100%;
  }
}
@media screen and (max-width: 475px) {
  .page-content#home_page .body .top .right {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.page-content#home_page .body .top .right .history {
  padding: 10px;
  background-color: #f7f7f7;
  border-radius: 10px;
}
.page-content#home_page .body .top .right .history#history_stock {
  width: 65%;
}
.page-content#home_page .body .top .right .history#history_advancePayment {
  width: 35%;
}
.page-content#home_page .body .top .right .history#history_advancePayment ul {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1700px) {
  .page-content#home_page .body .top .right .history {
    height: 23vw;
  }
}
@media screen and (max-width: 1200px) {
  .page-content#home_page .body .top .right .history {
    height: 24vw;
  }
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .body .top .right .history {
    height: inherit;
  }
}
@media screen and (max-width: 675px) {
  .page-content#home_page .body .top .right .history {
    width: 42% !important;
  }
}
@media screen and (max-width: 475px) {
  .page-content#home_page .body .top .right .history {
    width: 80% !important;
  }
}
.page-content#home_page .body .top .right .history h2 {
  margin: 0 0 3vh;
  font-size: 0.7vw;
  text-transform: uppercase;
}
@media screen and (max-width: 1700px) {
  .page-content#home_page .body .top .right .history h2 {
    font-size: 0.9vw;
  }
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .body .top .right .history h2 {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 675px) {
  .page-content#home_page .body .top .right .history h2 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 475px) {
  .page-content#home_page .body .top .right .history h2 {
    font-size: 3vw;
  }
}
.page-content#home_page .body .top .right .history ul {
  display: flex;
  gap: 2%;
  margin: 0;
}
.page-content#home_page .body .top .right .history ul .first-part,
.page-content#home_page .body .top .right .history ul .second-part {
  display: flex;
  flex-direction: column;
  width: 49%;
  margin: 0;
}
@media screen and (max-width: 675px) {
  .page-content#home_page .body .top .right .history ul .first-part {
    width: 100%;
  }
}
@media screen and (max-width: 675px) {
  .page-content#home_page .body .top .right .history ul .second-part {
    display: none;
  }
}
.page-content#home_page .body .top .right .history ul hr {
  width: 100%;
  margin: 0 0 5px 0;
}
.page-content#home_page .body .top .right .history ul li {
  display: flex;
  flex-direction: column;
  font-size: 0.7vw;
  margin: 0 5px 1vh;
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .body .top .right .history ul li {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 675px) {
  .page-content#home_page .body .top .right .history ul li {
    font-size: 2vw;
  }
}
@media screen and (max-width: 475px) {
  .page-content#home_page .body .top .right .history ul li {
    font-size: 3vw;
  }
}
.page-content#home_page .body .top .right .history ul li .header {
  display: flex;
  justify-content: space-between;
}
.page-content#home_page .body .top .right .history ul li .header .source_id {
  font-weight: 600;
}
.page-content#home_page .body .top .right .history ul li .value {
  text-transform: uppercase;
}
.page-content#home_page .body .top .right .history ul li:last-child {
  margin-bottom: 0;
}
.page-content#home_page .body .bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 27vh;
  margin-top: 3vh;
}
@media screen and (max-width: 475px) {
  .page-content#home_page .body .bottom {
    display: none;
  }
}
.page-content#home_page .body .bottom #graph_brand {
  width: 100%;
}
.page-content#home_page .body .bottom #graph_brand .syncro-card {
  background-color: #f7f7f7;
  border: none;
  border-radius: 10px;
}
.page-content#home_page .body .bottom #graph_brand .syncro-card .syncro-card-title {
  font-size: 0.8vw;
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .body .bottom #graph_brand .syncro-card .syncro-card-title {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 775px) {
  .page-content#home_page .body .bottom #graph_brand .syncro-card .syncro-card-title {
    font-size: 15px;
  }
}
.page-content#home_page .body .bottom #graph_brand .syncro-card .syncro-progress-stepped {
  height: 20px;
}
.page-content#home_page .body .bottom #graph_brand .syncro-card .syncro-progress-stepped > div:hover {
  cursor: pointer;
}
.page-content#home_page .body .bottom #graph_brand .syncro-card .syncro-row {
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .page-content#home_page .body .bottom #graph_brand .syncro-card .syncro-row {
    justify-content: center;
  }
}
.page-content#home_page .body .bottom #graph_brand .syncro-card .syncro-row button {
  opacity: 0.6;
}
.page-content#home_page .body .bottom #graph_brand .syncro-card .syncro-row button.active {
  opacity: 1;
}
.page-content#home_page .body .bottom #graph_brand .syncro-card .syncro-row button span {
  font-size: 0.6vw;
}
@media screen and (max-width: 1000px) {
  .page-content#home_page .body .bottom #graph_brand .syncro-card .syncro-row button span {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 775px) {
  .page-content#home_page .body .bottom #graph_brand .syncro-card .syncro-row button span {
    font-size: 12px;
  }
}
.page-content.profile-page {
  display: none;
  padding: 85px 50px 50px 8vw;
}
@media screen and (max-width: 1000px) {
  .page-content.profile-page {
    padding: 85px 50px 50px 90px;
  }
}
@media screen and (max-width: 792px) {
  .page-content.profile-page {
    min-height: 90vh;
  }
}
@media screen and (max-width: 600px) {
  .page-content.profile-page {
    padding: 105px 50px 50px 90px;
  }
}
@media screen and (max-width: 550px) {
  .page-content.profile-page {
    padding: 105px 10px 50px 10px;
  }
}
.page-content.profile-page .body {
  position: absolute;
  display: flex;
  flex-direction: column;
  max-height: 80vh;
  width: 85%;
  padding: 2vw;
  background-color: #FFF;
  border-radius: 50px;
}
@media screen and (max-height: 850px) {
  .page-content.profile-page .body {
    max-height: inherit;
  }
}
@media screen and (max-width: 792px) {
  .page-content.profile-page .body {
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    width: 80%;
    padding: 4vh 3vw;
  }
}
@media screen and (max-width: 600px) {
  .page-content.profile-page .body {
    width: 76%;
  }
}
@media screen and (max-width: 550px) {
  .page-content.profile-page .body {
    width: 90%;
    padding: 4vh 4vw;
  }
}
@media screen and (max-width: 450px) {
  .page-content.profile-page .body {
    width: 85%;
  }
}
.page-content.profile-page .body .close {
  position: absolute;
  top: 25px;
  right: 30px;
  height: 30px;
  width: 30px;
  opacity: 0.8;
}
.page-content.profile-page .body .close:hover {
  opacity: 1;
  cursor: pointer;
}
.page-content.profile-page .body > div {
  width: 80%;
  margin: 0 1vw;
}
@media screen and (max-width: 1550px) {
  .page-content.profile-page .body > div {
    width: 90%;
  }
}
@media screen and (max-width: 1350px) {
  .page-content.profile-page .body > div {
    width: 99%;
  }
}
.page-content.profile-page .body > div .title-1,
.page-content.profile-page .body > div .title-2 {
  font-weight: 600;
}
.page-content.profile-page .body > div .title-1 {
  margin: 5px 0 10px;
  font-size: 20px;
}
@media screen and (max-height: 850px) {
  .page-content.profile-page .body > div .title-1 {
    font-size: 17px;
  }
}
@media screen and (max-width: 732px) {
  .page-content.profile-page .body > div .title-1 {
    font-size: 20px;
  }
}
.page-content.profile-page .body > div .title-2 {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
}
.page-content.profile-page .body > div .header {
  display: flex;
  justify-content: space-between;
  margin-top: 2vw;
}
@media screen and (max-width: 732px) {
  .page-content.profile-page .body > div .header {
    margin-top: 30px;
  }
}
.page-content.profile-page .body > div .header .photo {
  width: 35%;
}
@media screen and (max-width: 1550px) {
  .page-content.profile-page .body > div .header .photo {
    width: 40%;
  }
}
@media screen and (max-width: 1000px) {
  .page-content.profile-page .body > div .header .photo {
    width: 50%;
  }
}
@media screen and (max-width: 792px) {
  .page-content.profile-page .body > div .header .photo {
    width: 60%;
  }
}
@media screen and (max-width: 732px) {
  .page-content.profile-page .body > div .header .photo {
    width: 75%;
  }
}
@media screen and (max-width: 550px) {
  .page-content.profile-page .body > div .header .photo {
    width: 100%;
  }
}
.page-content.profile-page .body > div .header .photo .title-1 {
  font-size: 17px;
}
.page-content.profile-page .body > div .header .photo .upload {
  display: flex;
  justify-content: space-between;
  margin-top: 1vw;
}
@media screen and (max-width: 600px) {
  .page-content.profile-page .body > div .header .photo .upload {
    flex-direction: column;
    gap: 10px;
  }
}
.page-content.profile-page .body > div .header .photo .upload #profile_img a {
  display: block;
  height: 100%;
}
.page-content.profile-page .body > div .header .photo .upload #profile_img a img {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: zoom-in;
}
@media screen and (max-height: 850px) {
  .page-content.profile-page .body > div .header .photo .upload #profile_img a img {
    height: 100px;
    width: 100px;
  }
}
@media screen and (max-width: 732px) {
  .page-content.profile-page .body > div .header .photo .upload #profile_img a img {
    height: 120px;
    width: 120px;
  }
}
.page-content.profile-page .body > div .header .photo .upload .buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 200px;
}
.page-content.profile-page .body > div .header .photo .upload .buttons label,
.page-content.profile-page .body > div .header .photo .upload .buttons button {
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  opacity: 0.8;
}
.page-content.profile-page .body > div .header .photo .upload .buttons label:hover,
.page-content.profile-page .body > div .header .photo .upload .buttons button:hover {
  opacity: 1;
  cursor: pointer;
}
.page-content.profile-page .body > div .header .photo .upload .buttons label {
  color: #FFF;
  background-color: #0788d3;
}
.page-content.profile-page .body > div .header .photo .upload .buttons input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.page-content.profile-page .body > div .header .photo .upload .buttons button {
  color: #000;
  background-color: #FFF;
  border: 1px solid #000;
}
.page-content.profile-page .body > div .header .photo .upload .buttons button.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.page-content.profile-page .body > div .header .advice {
  position: relative;
  height: 17vh;
  width: 400px;
  margin-top: 20px;
  padding: 20px;
  background-color: #eaeaea;
}
@media screen and (max-width: 1350px) {
  .page-content.profile-page .body > div .header .advice {
    margin-right: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .page-content.profile-page .body > div .header .advice {
    display: none;
  }
}
@media screen and (max-height: 850px) {
  .page-content.profile-page .body > div .header .advice {
    height: 12vh;
    width: 325px;
  }
}
.page-content.profile-page .body > div .header .advice .title-1,
.page-content.profile-page .body > div .header .advice .title-2 {
  width: 287px;
}
@media screen and (max-height: 850px) {
  .page-content.profile-page .body > div .header .advice .title-1,
.page-content.profile-page .body > div .header .advice .title-2 {
    width: 222px;
  }
}
.page-content.profile-page .body > div .header .advice .title-2 {
  text-align: justify;
  font-size: 13px;
}
@media screen and (max-height: 850px) {
  .page-content.profile-page .body > div .header .advice .title-2 {
    font-size: 11px;
  }
}
.page-content.profile-page .body > div .header .advice img {
  position: absolute;
  top: 10px;
  right: -30px;
  height: 170px;
}
@media screen and (max-height: 850px) {
  .page-content.profile-page .body > div .header .advice img {
    right: -20px;
    height: 110px;
  }
}
.page-content.profile-page .body > div .infos {
  margin-top: 2vw;
}
@media screen and (max-width: 732px) {
  .page-content.profile-page .body > div .infos {
    margin-top: 30px;
  }
}
.page-content.profile-page .body > div .infos .title-1 {
  font-size: 17px;
}
.page-content.profile-page .body > div .infos > div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
}
.page-content.profile-page .body > div .infos > div > div {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 20vw;
  margin: 0 40px 20px 0;
}
@media screen and (max-width: 1550px) {
  .page-content.profile-page .body > div .infos > div > div {
    width: 22vw;
  }
}
@media screen and (max-width: 1000px) {
  .page-content.profile-page .body > div .infos > div > div {
    width: 23vw;
  }
}
@media screen and (max-width: 792px) {
  .page-content.profile-page .body > div .infos > div > div {
    width: 34vh;
  }
}
@media screen and (max-width: 732px) {
  .page-content.profile-page .body > div .infos > div > div {
    width: 50vh;
  }
}
@media screen and (max-width: 450px) {
  .page-content.profile-page .body > div .infos > div > div {
    width: 100%;
    margin-right: 0;
  }
}
.page-content.profile-page .body > div .infos > div > div #password_label {
  margin: 0;
}
.page-content.profile-page .body > div .infos > div > div input {
  padding: 10px 20px;
  border-radius: 10px;
}
@media screen and (max-width: 450px) {
  .page-content.profile-page .body > div .infos > div > div input {
    width: 85%;
  }
}
.page-content.profile-page .body > div .infos > div > div #showPassword {
  position: absolute;
  right: 10px;
  bottom: 3px;
}
.page-content.profile-page .body > div .infos > div > div #showPassword input[type=checkbox] {
  position: relative;
  height: 30px;
  width: 30px;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}
.page-content.profile-page .body > div .infos > div > div #showPassword .eye-close,
.page-content.profile-page .body > div .infos > div > div #showPassword .eye-open {
  position: absolute;
  top: 3px;
  right: 3px;
  height: 30px;
  width: 30px;
  opacity: 0.8;
  z-index: 1;
}
.page-content.profile-page .body > div .infos > div > div #showPassword .eye-close:hover,
.page-content.profile-page .body > div .infos > div > div #showPassword .eye-open:hover {
  opacity: 1;
  cursor: pointer;
}
@media screen and (max-width: 792px) {
  .page-content.profile-page .body > div .infos > div > div #showPassword .eye-close svg,
.page-content.profile-page .body > div .infos > div > div #showPassword .eye-open svg {
    height: 25px;
    width: 25px;
  }
}
.page-content.profile-page .body > div .infos > div > div #showPassword .eye-open {
  display: none;
}
.page-content.profile-page .body > div #saveProfile {
  margin-top: 2vh;
  padding: 10px 20px;
  text-align: center;
  color: #FFF;
  background-color: #0788d3;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  opacity: 0.8;
}
.page-content.profile-page .body > div #saveProfile:hover {
  opacity: 1;
  cursor: pointer;
}
.page-content.profile-page .body > div #saveProfile.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.page-content.profile-page .body > div .title-2,
.page-content.profile-page .body > div .photo .buttons label,
.page-content.profile-page .body > div .photo .buttons button,
.page-content.profile-page .body > div .advice .title-1,
.page-content.profile-page .body > div .infos label,
.page-content.profile-page .body > div #password_label,
.page-content.profile-page .body > div .infos input,
.page-content.profile-page .body > div #saveProfile {
  font-size: 15px !important;
}
@media screen and (max-height: 850px) {
  .page-content.profile-page .body > div .title-2,
.page-content.profile-page .body > div .photo .buttons label,
.page-content.profile-page .body > div .photo .buttons button,
.page-content.profile-page .body > div .advice .title-1,
.page-content.profile-page .body > div .infos label,
.page-content.profile-page .body > div #password_label,
.page-content.profile-page .body > div .infos input,
.page-content.profile-page .body > div #saveProfile {
    font-size: 12px !important;
  }
}
@media screen and (max-width: 732px) {
  .page-content.profile-page .body > div .title-2,
.page-content.profile-page .body > div .photo .buttons label,
.page-content.profile-page .body > div .photo .buttons button,
.page-content.profile-page .body > div .advice .title-1,
.page-content.profile-page .body > div .infos label,
.page-content.profile-page .body > div #password_label,
.page-content.profile-page .body > div .infos input,
.page-content.profile-page .body > div #saveProfile {
    font-size: 15px !important;
  }
}
.page-content.majpopin-page {
  display: none;
}

/* List */
.app-list {
  display: inline-grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 150px;
  grid-row-gap: 50px;
  width: 90%;
  text-align: center;
}

.app-list a {
  text-transform: uppercase;
}

.app-list li:hover {
  transform: scale(1.2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.app-list img {
  margin: auto;
}

.disabled {
  position: relative;
  opacity: 0.5;
}

.disabled .travaux {
  position: absolute;
  top: 30px;
  max-width: 200px;
  left: -10px;
  transform: rotate(-35deg);
}

/* menu datatable */
/* onglets */
.onglets {
  display: block;
}

.page-content .onglets ul {
  position: relative;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 0;
  background-color: #d8e5ef;
  border-radius: 10px;
}

.nav_slider {
  position: absolute;
  top: 5px;
  height: 84%;
  padding: 0 5px;
  background-color: rgba(15, 95, 154, 0.2588235294);
  border-radius: 10px;
  z-index: 0;
}

.page-content .onglets ul a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  min-width: 11vw;
  margin: 5px;
  background-color: #d8e5ef;
  border-radius: 10px;
}

.page-content .onglets ul a li {
  padding: 0.7vw;
  color: #000;
  font-size: 85%;
  font-weight: 200;
  text-align: center;
  text-transform: uppercase;
  z-index: 1;
}

.page-content .onglets ul .active {
  background-color: #0f5f9a;
}

.page-content .onglets ul .active:hover {
  background-color: #0f5f9a;
  cursor: default;
}

.page-content .onglets ul .active li {
  color: #FFF;
}

.onglets .active a,
.onglets .active a:hover {
  background-color: #FFF !important;
  color: #000 !important;
  cursor: default;
}

@media screen and (max-width: 1400px) {
  .page-content .onglets ul a {
    min-width: 9vw;
  }
  .page-content .onglets ul a li {
    padding: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .page-content .onglets ul a li {
    font-size: 75%;
  }
}
@media screen and (max-width: 1000px) {
  .page-content .onglets ul a li {
    font-size: 65%;
    font-weight: bold;
  }
}
/* onglets mobile */
.mobile_onglets_box {
  display: none;
  margin: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 200;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .onglets {
    display: none;
  }
  .mobile_onglets_box {
    display: block;
    font-size: inherit;
    margin: auto;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
  }
  .mobile_onglets {
    width: 100%;
    overflow: hidden;
  }
  .mobile_onglets_label {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    height: 3vh;
    margin: 10px 10px 0;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 10px;
    background-color: #d8e5ef;
    cursor: pointer;
    transition: 0.5s;
  }
  .mobile_onglets_title {
    font-size: 2.2vw;
    font-weight: bold;
    text-transform: uppercase;
  }
  .mobile_onglets_content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    max-height: 0;
    padding: 0 1em;
    opacity: 0;
    transition: all 0.35s;
  }
  .mobile_onglets_checkbox {
    position: absolute;
    opacity: 0;
    z-index: -1;
  }
  .mobile_onglets_label.open_mobile_onglets {
    transition: 0.5s;
  }
  .mobile_onglets_arrow.open_mobile_onglets {
    transform: rotate(180deg);
  }
  .mobile_onglets_content.open_mobile_onglets {
    max-height: 100%;
    padding: 30px 20px;
    background-color: #FFF;
    opacity: 1;
  }
  .mobile_onglets_arrow {
    height: 15px;
    width: 15px;
    margin: auto;
    background: url("../img/arrow-down.png");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
  }
  .mobile_onglets_arrow {
    margin: 0;
    transition: ease-in-out 0.5s;
  }
  .mobile_onglets_label:hover ~ .mobile_onglets_arrow {
    opacity: 1 !important;
  }
  .mobile_onglet a {
    font-size: 15px;
    text-transform: uppercase;
  }
  .active {
    color: #0F5F9A;
    font-weight: bold;
  }
}
@media screen and (max-width: 550px) {
  .mobile_onglets_title {
    font-size: 3.5vw;
  }
}/*# sourceMappingURL=main.css.map */