/* @import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@400;500;700&display=swap"); */
/* @import url("https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap"); */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
  --text: #090909;
  --primary-light: #f0f0f0;
  --primary-dark: #002841;
  --light: #e8eaf6;
  --primary: #090909;
  --secondary: #303030;
  --secondary-light: #f3f3f3;
  --informative: #6c757d;
  /* --background : rgba(232, 234, 246, 0.6); */
  --background: #f8f8f8;
  --nav: #fefefe;
  --nav-link: #505050;
  --card: #fff;
  --tertiary: #101113;
  --danger: #ec0b43;
  --danger-light: #feedf0;
  --success: #49aa49;
  --success-light: rgb(224, 255, 224);
}

/* .dark:root{

    --text : #fff;
    --primary-dark: #fff;
    --light: #e8eaf6;
    --primary: #fff;
    --secondary: #ff1744;
    --secondary-light: #ffe3e9;
    --informative : #6c757d;
    --background :#111827;
    --nav :#1f2937;
    --nav-link : #fff;
    --card : #1f2937;
} */

html {
  transition: all 0.5;
}

body {
  font-family: "Outfit", sans-serif;
  /* font-optical-sizing: auto; */
  background-color: var(--background);
}

a {
  text-decoration: unset;
}

.pointer {
  cursor: pointer;
}

#wrapper {
  display: flex;
}

#header {
  /* background: var(--primary-dark); */
  padding: 1rem 0;
  margin-bottom: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

h1 {
  color: var(--secondary);
}

h4 {
  color: var(--secondary);
}

h6 {
  font-size: 1.2rem !important;
}

p,
td,
tr {
  color: var(--primary);
}


tr,
td,
th {
  border: none !important;
  border-bottom: 1px solid var(--primary-light) !important;
  vertical-align: middle;
}

thead {
  /* background: var(--secondary-light); */
}

thead th {
  color: var(--informative);
}

.sorted-asc::after {
  content: " ▲";
  font-size: 10px;

}

.sorted-desc::after {
  content: " ▼";
  font-size: 10px;
}

.main {
  width: 100%;
  padding-left: 1.5rem;
  /* padding-right : 1.5rem; */
}

.content {
  margin-left: 15%;
  margin-right: 1%;
  /* margin-top : -150px; */
}

a {
  color: var(--primary);
}

a:hover {
  text-decoration: none;
}

.nav-sidebar ul {
  list-style: none;
  padding: 0;
}

ul li a {
  color: var(--secondary);
}

.keep-all {
  word-break: keep-all;
}

/* IMG  */
.invert {
  filter: invert(100%);
}

.img-success {
  filter: brightness(0) saturate(100%) invert(42%) sepia(16%) saturate(3537%) hue-rotate(112deg) brightness(86%) contrast(80%);
}

.img-success-light{
  filter: brightness(0) saturate(100%) invert(81%) sepia(4%) saturate(2892%) hue-rotate(186deg) brightness(117%) contrast(112%);
}

/* END IMG  */
/* TEXT  */

.text-primary {
  color: var(--primary) !important;
}

.text-primary-dark {
  color: var(--primary-dark);
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-tertiary {
  color: var(--tertiary) !important;
}

.text-green {
  color: rgb(71, 226, 104);
}

.text-success-light {
  color: var(--success-light);
}


.fw-700 {
  font-weight: 700;
}

/* END TEXT  */
.separator-dot {
  width: 5px;
  height: 5px;
  border-radius: 50px;
  background-color: black;
  margin: 0 12px 0 12px;
}

.separator-primary {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: var(--primary);
  margin: 0 12px 0 12px;
}

.separator-tertiary {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: var(--danger);
  margin: 0 12px 0 12px;
}

/* CARDS */

.card {
  box-shadow: .1454px 10.1454px 18.5999px rgba(24, 19, 58, 0.06) !important;
  /* transition: all 0.5s;
  border: 0 solid rgba(0, 0, 0, 0.125);
  background-color: var(--card); */
  background: var(--card);
  /* box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.1 ); */
  backdrop-filter: blur(6.5px);
  -webkit-backdrop-filter: blur(6.5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.card-stat {
  text-align: center;
  padding: 1rem !important;
}

.card-media {
  background-color: var(--primary-light);
  /* border: 1px solid var(--primary); */
}

.card-media a {
  color: var(--primary) !important;
}

.card-stat p {
  font-size: 14px;
  text-transform: uppercase;
}

.card-header {
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none !important;
  padding: 0;
  margin-bottom: 10px;
}

.card-stat .stat {
  font-size: 42px;
  font-weight: 700;
  font-family: "Roboto", Arial sans-serif;
}

.bulles-container {
  padding: 10px 20px;
  margin-bottom: 10px;
  border-radius: 10px;
  width: 70%;
}

.left {
  background: rgb(231, 226, 255);
}

.right {
  background: #e8f9fd;
  margin-left: auto;
}

/* background */

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-primary-light {
  background-color: var(--primary-light) !important;
}

.bg-light {

  background-color: var(--light) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-tertiary {
  background-color: var(--tertiary) !important;
}

.bg-tertiary-light {
  background-color: var(--tertiary-light) !important;
}

.bg-secondary-light {
  background-color: var(--secondary-light);
}

.bg-success-light {
  background-color: var(--success-light) !important;
}

.bg-danger-light {
  background-color: var(--danger-light) !important;
}

.bg-success {
  background-color: var(--success);
}

.text-informative {
  color: var(--informative);
}

.text-success {
  color: var(--success);
}

/* .card {
  box-shadow: -2px 2px 10px -3px rgba(195, 185, 251, 0.5);
  border: 0 solid rgba(0, 0, 0, 0.125);
  background-color: var(--card);
} */

.dark .card {
  box-shadow: none;
}

.card-title {
  font-size: 20px;
  margin-bottom: 0;
}

.p-heading-xs {
  font-size: 18px;
  font-weight: 700;
}

.p-heading {
  font-size: 20px;
  font-weight: 700;
}

.p-heading-xl {
  font-size: 28px;
  font-weight: 700;
}

.p-heading-xxl {
  font-size: 36px;
  font-weight: 700;
}

.p-heading-xxxl {
  font-size: 48px;
  font-weight: 700;
}

hr {
  border-top: 1px solid #ddd;
}

/* ----- BACKEND MARQUEs ASSOC -------- */
#assign:focus-visible {
  /* border-radius: 25px 25px 0 0; */
}

#entries-assign {
  display: none;
  padding: 0;
}

#assign>div:hover>#entries-assign {
  display: block;
}

#entries-assign div {
  cursor: pointer;
  margin: 10px 0 0 15px;
}

#entries-assign div p:hover {
  color: var(--primary);
}

.pointer {
  cursor: pointer;
}

/* header NAV  */

.item {
  margin-right: 20px;
  text-align: center;
}

.item:last-child {
  margin-right: 0px !important;
}

/* .item a,
.item p {
  color: #000;
  font-size: 12px;
} */

/* NAV SIDE BAR */

#navSidebar {
  /* overflow-y: scroll; */
  overflow-x: hidden;
  top: 0;
  bottom: 0;
  z-index: 1000;
  border-right: 1px solid var(--nav);
  background-color: var(--nav);
}

.nav-row {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}


.nav-sidebar a,
.nav-mobile a,
.title-nav {
  color: var(--nav-link);
  transition: color 0.3s;
  /* font-weight: 500; */
  font-size: 18px;
}

.nav-sidebar a:hover {
  color: var(--primary);
}

.nav-side {
  background-color: rgba(195, 185, 251, 0.5);
  width: 18%;
  min-height: 100%;
  box-shadow: 0 5px 25px 0.3px #efefef;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.navbar-brand {
  display: initial;
}

.nav-sidebar-container {
  padding: 30px 10px;
}

.current-link {
  color: red !important;
}

.nav-side ul {
  padding: 0 20px;
}

.nav-sidebar li.active a {
  color: var(--primary);
  font-weight: 700 !important;
}

.nav-sidebar li img {
  filter: brightness(0) saturate(100%) invert(31%) sepia(1%) saturate(0%) hue-rotate(2deg) brightness(94%) contrast(88%);
}

.nav-sidebar li.active img {
  filter: initial
}

.collapse-nav {
  padding: 5px 15px !important;
}

.collapse-nav li {
  margin-bottom: 7px;
}


.collapse-nav a {
  font-size: 14px;
}



.nav-sidebar div {
  /* text-transform: uppercase; */
  padding: 10px 5px;
  cursor: pointer;
}

.logo-mobile {
  display: none;
}

.nav-mobile {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  background: #fff;
  border-top: 1px solid #ccc;
  z-index: 1000;
}



/* ----- END NAV SIDE BAR -------- */

/*------ NAV MOBILE --------*/

.inner-nav-mobile {
  display: flex;
  text-align: center;
  margin: 0;
  align-items: end;
  overflow-x: scroll;
  justify-content: space-around;
}

.nav-mobile-item {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ------- END NAV MOBILE ------- */

/* -------------- Dropdown  -------------- */

.collapse-container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.collapse-button {
  width: 100%;
  padding: 10px;
  background-color: #f1f1f1;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
}

.collapse-button .arrow {
  display: inline-block;
  transition: transform 0.3s;
}

.collapse-content {
  display: none;
}

.collapse-content p {
  margin: 0;
}

.collapse-container.active .collapse-content {
  display: block;
}

.collapse-container.active .collapse-button .arrow {
  transform: rotate(90deg);
  /* rotation de la flèche */
}


/* PROGRESS BAR */


.progress-container {
  width: 100%;
  height: 50px;
  background: #DDD;
  border-radius: 10px;
  position: relative;
  z-index: 0;
}

.progress-content {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  z-index: 3;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(25, 135, 84, 0.3), var(--success));
  transition: width 1s ease-out;
  width: 0%;
}

.progress-content-expected {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  z-index: 1;
  height: 100%;
  border-radius: 10px;
  background: var(--success-light);
  transition: width 1s ease-out;
  width: 0%;
}

.progress-content-pending {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  z-index: 2;
  height: 100%;
  border-radius: 10px;
  background: #9aff9a;
  transition: width 1s ease-out;
  width: 0%;
}


#currentRevenue {
  width: 2%;
  transition: width 1s ease-out;

}


/* --------- FORM --------- */

/* FORMS */

input[type="text"],
textarea,
input[type="password"] {
  /* border: 1px solid var(--informative); 
  padding: 10px 20px; */
  transition: box-shadow 0.3s;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus {
  /* box-shadow: none; */
  box-shadow: 0px 3px 20px var(--light);
  border: 1px solid var(--light);
}

input[type="submit"] {
  border: none;
  box-shadow: 0px 10px 20px rgba(86, 146, 228, 0.1);
  border-radius: 5px;
}

label {
  color: var(--primary);
  display: block;
  margin-bottom: 5px !important;
  font-weight: normal;
}

textarea {
  height: 120px;
  resize: none;
  border: 1px solid #00002a;
}

select.custom-select {
  color: #000;
  border: 2px solid #ff1e00;
  width: auto;
}

select.custom-select:focus {
  border-bottom: 1px solid #000051;
  box-shadow: none;
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
textarea:focus {
  border-color: none;
}

.btn-link {
  margin-bottom: -15px;
  margin-top: 20px;
}

.btn-link a {
  color: #0fff00;
  border-radius: 100px;
  border: 3px solid #1a237e;
  padding: 8px 15px;
  background: #fff;
}

.btn-sm {
  padding: 2px 4px;
}

.search-input select,
.search-input input[type="date"] {
  border: 2px solid #fff;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

select option {
  font-family: inherit !important;
}

.tag {
  font-size: 12px;
  padding: 3px 5px 0;
  border-radius: 3px;
  font-weight: 500;
}

/* --------- ENDFORM --------- */

.btn-primary {
  background-color: var(--primary) !important;
  color: white;
  border: none;
  transition: all 0.5s;
}

.btn-primary:hover {
  background-color: var(--light) !important;
  color: var(--primary);
  border: none;
}

.btn-secondary {
  background-color: var(--secondary) !important;
  color: white;
  border: none;
  transition: all 0.5s;
}

.btn-secondary:hover {
  background-color: var(--primary) !important;
  border: none;
}

.btn-danger {
  background-color: var(--danger) !important;
  color: white;
  border: none;
  transition: all 0.5s;
}

.btn-tertiary:hover {
  background-color: var(--secondary) !important;
  color: white;
  border: none;
}

.trashbtn:hover {
  filter: brightness(0) saturate(100%) invert(24%) sepia(96%) saturate(6543%) hue-rotate(338deg) brightness(92%) contrast(102%);
}

.trashbtn.position-absolute {
  transform: translate(-50%, -50%);
  top: 50%;
  right: 10px;
}

.btn-secondary img {
  filter: invert(100%);
}

/* Badges */

.badge {
  font-weight: 500;
  border-radius: 0.45rem;
}

.badge-type {
  font-weight: 500;
  border-radius: 0.45rem;
  padding: 3px;
  font-size: 12px;
}

.badge-color {
  width: 15px;
  height: 15px;
  border-radius: 100%;
}


.badge-success {
  background-color: var(--success-light);
  color: var(--success);
}


.badge-danger {
  background-color: #ffd5df;
  /* color: rgb(182, 80, 80); */
  color: var(--tertiary);
}

.badge-orange {
  background-color: rgb(255, 241, 215);
  color: rgb(212, 149, 66);
}

.badge-yellow {
  background-color: rgb(249, 250, 167);
  color: rgb(194, 184, 40);
}

.badge-danger img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(96%) saturate(6543%) hue-rotate(338deg) brightness(92%) contrast(102%);
}

.badge-success img {
  filter: brightness(0) saturate(100%) invert(61%) sepia(67%) saturate(416%) hue-rotate(71deg) brightness(81%) contrast(91%);
}

.badge-orange img {
  filter: brightness(0) saturate(100%) invert(55%) sepia(55%) saturate(480%) hue-rotate(354deg) brightness(101%) contrast(92%);
}

.badge-yellow img {
  filter: brightness(0) saturate(100%) invert(58%) sepia(96%) saturate(352%) hue-rotate(18deg) brightness(103%) contrast(86%);
}

.badge-primary-light {
  background-color: var(--primary-light) !important;
  color: var(--primary);
}

.badge-secondary-light {
  background-color: var(--secondary-light) !important;
  color: var(--secondary);
}

.badge-danger {
  background-color: var(--danger-light) !important;
  color: var(--danger);
}

/* END badge */

/* ALERTS */

.alert-success {
  background-color: var(--success-light);
  color: rgb(25, 135, 84);
  font-weight: 500;
}

.alert-info{
    background-color: var(--secondary-light);
  color: black;
  font-weight: 500;
  border : 1px solid var(--light);
}

.alert-danger {
  background-color: var(--danger-light);
  color: var(--danger);
}

/* ---- Collazpse section STYLE ----- */

.section-hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s;
}

.show-signaler {
  max-height: 100px !important;
  overflow: initial !important;
}

.button-signaler {
  background: none;
  border: none;
}

/* ----  END  Signaler section STYLE ----*/

@keyframes bouncingText {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.bouncing-text {
  font-size: 20px !important;
  animation: bouncingText 0.5s infinite;
  display: inline-block;
  margin-left: 10px;
}

.border-radius-10 {
  border-radius: 10px !important;
}

.rounded {
  border-radius: 100% !important;
}





/*------------END---------*/
/* ----  Show WebTv ----*/
.webtv-banner {
  background-image: linear-gradient(90deg,
      rgba(2, 0, 36, 1) 0%,
      rgba(20, 20, 20, 1) 11%,
      rgba(255, 255, 255, 0) 100%);
}

.emission-content {
  width: 76%;
}

.emission-date {
  background-color: var(--primary-light);
  color: var(--primary);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  width: 12%;
}

.emission-full {
  background-color: var(--success-light);
  color: var(--success);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 12%;
}

.emission-full img {
  filter: brightness(0) saturate(100%) invert(61%) sepia(67%) saturate(416%) hue-rotate(71deg) brightness(81%) contrast(91%);
}

.emission-not-full {
  background-color: #ffd5df;
  color: var(--tertiary);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 12%;
}

.emission-not-full img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(96%) saturate(6543%) hue-rotate(338deg) brightness(92%) contrast(102%);
}

/* ----  End WebTv ----*/
/* ----  Show Broadcast ----*/
.timeline-container {
  position: relative;
  border: solid #c9c9c9 1px;
  border-top: none;
  border-right: none;
  min-height: 200px;
}

.timeline-slot {
  display: flex;
  cursor: pointer;
}

.timeline-slot:hover {
  filter: brightness(0.9);
}

.slot-preparation,
.slot-passage,
.timeline-slot {
  height: 40px;
  position: relative;
}

.slot-preparation {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color: #9ad7fd;
}

.slot-passage {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: var(--primary);
}

.slot-logo {
  border-radius: 400px;
  width: 60px;
}

.free-slot .slot-preparation {
  background-color: var(--tertiary-light);
  /* border: 2px #9ad7fd solid; */
}

.free-slot .slot-passage {
  background-color: #f04671;
  /* border: 2px var(--primary) solid; */
}

.timeline-broadcast-start {
  position: absolute;
  width: 2px;
  height: 100%;
  border-left: 1px grey dashed;
  z-index: 2;
}

.timeline-broadcast-start::after {
  content: "Début";
  position: absolute;
  bottom: 0;
  left: 10px;
}

.timeline-cursor {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--primary);
  pointer-events: none;
}

.timeline-cursor-time {
  position: absolute;
  top: -20px;
  border-radius: 3px;
  background-color: var(--primary-light);
  color: var(--primary);
  padding: 2px 5px;
  font-size: 16px;
  pointer-events: none;
}

.slot-info-container {
  box-sizing: border-box;
  background-color: white;
  position: absolute;
  z-index: 4000;
  width: 50%;
  /* height: 70%; */
  /* bottom: 0; */
  right: 0;
  box-shadow: -8px -5px 35px 5px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  transform: translate(-50%);
  top: 10%;
  left: 50%;
}

.slot-info-container #close {
  cursor: pointer;
}

/*Suggestion*/
.suggestions-container {
  position: absolute;
  display: none;
  width: 65%;
  top: 38px;
  background-color: white;
  box-shadow: 2px 18px 23px 6px rgba(0, 0, 0, 0.17);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: 4;
}

.graduation {
  position: absolute;
  bottom: -5px;
  height: 5px;
  /* Ajustez la hauteur selon vos besoins */
  width: 1px;
  background-color: var(--secondary);
}

.graduation-label {
  position: absolute;
  top: 12px;
  /* Ajustez la position selon vos besoins */
  font-size: 12px;
  /* Ajustez la taille de la police selon vos besoins */
  transform: translateX(-50%);
}

/* ---- END Show Broadcast ----*/

/* BANNER WEBTV */
.deal-card {
  position: relative;
  width: 100%;
  border-radius: 10px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.15));
  z-index: 2;
  transition: transform 0.3s;
}

.mask {
  position: relative;
  z-index: 2;
  opacity: 1;
  background-image: url("lefigaro.jpg");
  background-size: cover;
  -webkit-mask-image: -webkit-gradient(linear,
      right top,
      right bottom,
      from(rgba(3, 0, 24, 1)),
      to(rgba(0, 0, 0, 0)));
  width: 100%;
  /* height: 300px; */
  overflow: hidden;
  background-position: 50%;
}

.mask img {
  filter: saturate(110%);
}

.mask:before {
  position: absolute;
  content: "";
  z-index: 4;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(3, 0, 24, 0.3);
}

.sortable-sales, .sortable-bu {
  cursor: pointer;
  user-select: none;
}

.sort-indicator {
  font-size: 1em;
  margin-left: 5px;
}

#burgerGroup{
  display : none;
}

.overlay{
  width : 100%;
  height : 100%;
  position: fixed;
  top : 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 900;
  display: none;
  transition: opacity 0.3s ease;
}

.overlay.visible {
  display: block;
}

.body-no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* CHART */

.chart-container {
  position: relative;
  height: 500px;
  width: 100%;
  max-width: 100%;
}



/*------------RESPONSIVE---------*/

/* VUE tablettes + mobiles */

@media screen and (max-width: 991px) {
  /* NAV BURGER */

  /* On vire le menu latérial sur petits écrans */
  .nav-side {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width : 30%;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    box-shadow: none;
  }

  .nav-active{
    transform : translateX(0);
  }

  /* Le contenu de la page prend donc maintenant toute la largeur vu que la sidebar a disparu */

  .main {
    padding-left: 0;
    width: 100%;
  }

  /* On fait appraitre le menu en bas de l'écran  */
  .nav-mobile {
    display: block;
  }

  #burgerGroup{
    display : flex;
  }

  /* END NAV BURGER */

  h1 {
    font-size: 24px;
  }

  .logo-mobile {
    display: block;
  }



  .content {
    margin-left: 0;
  }

  .card-stat p {
    font-size: 12px;
  }

  .card-stat .stat {
    font-size: 30px;
  }

  .slot-info-container {
    width: 100%;
  }

  .emission-content,
  .emission-date,
  .emission-full,
  .emission-not-full {
    width: 100%;
  }
}

/* END VUE tablettes + mobiles */

/*----- EXTRA SMALL ---*/

@media screen and (max-width: 575px) {
  .nav-mobile a {
    font-size: 10px;
  }

  .card-header>input {
    /* display : none; */
  }

  #search {
    width: 100%;
  }

  .card-header {
    display: block;
  }

  input[type='date'] {
    font-size: 0.8rem;
  }

  .progress-container {
    border-radius: 5px;
    height: 30px;
  }

  .p-heading{
    font-size: 1rem;
  }

  .p-heading-xxxl{
    font-size: 36px;
  }

  #expectedRevenue{
    display: none !important;
  }
  .nav-side {

    width : 75%;
  }

  .p-heading-xs {
    font-size: 14px;
  }
}

/*-----  SMALL ---*/

@media screen and (min-width: 576px) and (max-width: 767px) {
  .card-header>input {
    display: none;
  }

  #search {
    width: 100%;
  }
}

/*------- MEDIUM --------*/

@media screen and (min-width: 768px) and (max-width: 991px) {
  .card-header>input {
    display: none;
  }

  #search {
    width: 100%;
  }
}

/*------- Large --------*/

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .content {
    margin-left: 20%;
  }

  .slot-info-container {
    width: 80%;
  }
}

/* Large and +  */

@media screen and (min-width: 992px) {
  .navbar {
    display: none;
  }

  .emission-content {
    width: 68%;
  }

  .emission-date {
    width: 16%;
  }

  .emission-full {
    width: 16%;
  }

  .emission-not-full {
    width: 16%;
  }
}

/*------- XLarge --------*/

@media screen and (min-width: 1200px) and (max-width: 1599px) {
  .content {
    margin-left: 18%;
  }
}

/* Large+++ and +  */

@media screen and (min-width: 1600px) {
  .nav-side {
    width: 15%;
  }
}