:root {
  --main-color: #E0E2E8;
  --color-medium: #B0C0D4;
  --color3: #5DA5B3;
  --color2: #394054;
  --secondary-color: #1C1C1F;
  --alternate-color: #FF584D;

  --classement-gris: #E0E2E8;
/*  --classement-vert: #82F2A7; */
  --classement-vert: #B6CDE8; 

  --classement-orange: #556C96;
  --classement-rouge: #EA5863;
  
}

.quick-menu{
  display:flex;
  position: relative;
  flex-direction:row;
  padding-top:10px;
  padding-bottom: 10px;
  justify-content: center;
  width:100%;
  max-width: 750px;
  align-items: center;
}
.quick-menu a{
  display: flex;
  width: 19%;
  margin:1px;
  justify-content: center;
}




body {
  font-family: "comfortaa";
  font-size: 20px;
  scroll-behavior: smooth;
  color: var(--text-color);
  margin: 0;
  background-color: var(--color2);
}

* {
  -webkit-tap-highlight-color: transparent;
}


body::-webkit-scrollbar {
  display: none;
}
.competition-form{
  padding:2px;
}
.ripple {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.ripple-animation {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
  }
  40% {
      transform: translateY(-10px);
  }
  60% {
      transform: translateY(-5px);
  }
}

@keyframes beat {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
}

.info-concours{
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.bounce-icon {
  position: relative;
  /*font-size: 50px;*/
  animation: beat 1s infinite; /* L'animation rebondit toutes les 1 seconde */
  animation-timing-function: steps(4, end);
}

.beat-effect {
 
  animation: beat 1s infinite; /* L'animation bat à un rythme de 1 seconde */
}

.button-alone{
  margin:15px;
}

.headline{
  font-style: italic;
  font-weight: 800;
  border-bottom: 3px solid white;
  border-radius: 5px;
  font-style: italic;
  font-family: "comfortaa", sans-serif;
  color:white;
  font-family: "comfortaa";
  font-size: xx-large;
}
.headline-quick-menu{
 /* font-style: italic;*/
  font-weight: 600;
  
  margin-bottom: 10px;
  font-family: tahoma, sans-serif;
  color:white;
  /*font-family: "comfortaa";*/
  font-size: xx-large;
  text-align: center;
  
}


.headline2{
  font-style: italic;
  text-align: center;
  padding:5px;
  padding-top: 20px;
  font-weight: 400;
  font-family: "comfortaa", Arial, sans-serif;
  color:white;
  font-family: "comfortaa";
  font-size: medium;
  position: relative;
  z-index: 3;
}
.headline3{
  width:95%;
  max-width: 700px;
  
  text-align: left;
  display:flex;
  padding-top:20px;
  padding-bottom:10px;
  font-weight: 900;
  font-family: "comfortaa", Arial, sans-serif;
  color:white;
  font-family: "comfortaa";
  font-size: large;
}
.cont-headline{
  margin-top: 12vh;
  margin-left: 3vh;
  
}
.headline-dark{
  margin-top: 1vh;
  margin-bottom: 3vh;
  color:var(--color2);
  font-family: "comfortaa";
  font-size: xx-large;
}
.headline-dark-small{
  margin-top: 1vh;
  margin-bottom: 3vh;
  color:var(--color2);
  font-family: "comfortaa";
  font-weight: 800;
  font-size: large;
}

.subtitle-dark{
  margin-top: 2vh;
  margin-bottom: 4vh;
  color:var(--secondary-color);
  font-family: "comfortaa";
  font-size: large;
  font-weight: bold;
  text-align: center;
}


.disable-on-error.disabled,
.disable-on-error:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.checkbox-container {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 14px;
  vertical-align: bottom;
  color: #646464;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  background-color: #eee;
  border: 2px solid #c9c9c9;
  border-radius: 3px;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container:has(input:checked) {
  font-weight: 500;
  color: var(--alternate-color);
}
.checkbox-container input:checked ~ .checkmark {
  background-color: #f9d5d3;
  border: 2px solid #f44336;
}
.checkbox-container .checkmark:after {
  left: 4px;
  top: 0px;
  width: 4px;
  height: 8px;
  border: solid var(--alternate-color);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

form{
  padding: 5%;
  align-content: center;
  
}
.page {
 
  flex-direction: column;
  color: var(--color2);
  background-color: var(--color2);
  position: relative;
  display: flex;
  margin: auto;
overflow-x: hidden;
  margin-top: 0vh;
  width: 100%;
  z-index: 2;
  background-image: url('/img/motif_fond.svg');
  background-repeat: repeat;
  background-position: top;
  background-size: auto 400px;
 
}
.custom-select {
  position: relative;
  font-size: 0.92em;
  font-weight: 600;
  align-self: center;
  width: 200px;
  max-width: 200px;
  padding-right: 5px;
}

.custom-select select {
  display: none;
  /*hide original SELECT element: */
}

.select-selected {
  background-color: var(--alternate-color);
  border-radius: 15px;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 12px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,
.select-selected {
  padding: 8px 16px;
  cursor: pointer;
}

.select-selected {
  color: #ffffff;
  padding-right: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: white;
  font-weight: 400;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 1px 1px 20px #0000008f;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div {
  color: var(--secondary-color);
  font-weight: 500;
}

.select-items div:hover:not(.same-as-selected) {
  color: #363636;
  background-color: rgb(157, 157, 157, 0.37);
}

.select-items .same-as-selected {
  background-color: rgb(232, 42, 0, 0.89);
  color: white;
}

button,
.button {
  background-color: var(--alternate-color);
  color: white;
  border: 0px;
  outline: none;
  border-radius: 3px;
  padding: 6px 18px;
  font-weight: 600;
  font-family: "comfortaa";
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s ease-out;
  text-decoration: none;
  font-size: 14px;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
}

button:disabled,
.button.disabled,
.button:disabled {
  opacity: 0.6;
  pointer-events: none;
  color: #ffffff8a;
}

button.bordered,
.button.bordered {
  border: 1px solid;
}
.button.x-small,
button.x-small {
  font-size: 0.83rem;
  padding: 6px 10px;
}
.button.small,
button.small {
  font-size: 0.9rem;
  padding: 8px 13px;
}

.button.large,
button.large {
  font-size: 1.18rem;
  padding: 10px 17px;
}

.button.x-large,
button.x-large {
  font-size: 1.35rem;
  padding: 10px 25px;
}

.button.secondary,
button.secondary {
  background-color: #2a2953;
  color: #ffffff;
}

.button.pronos,
button.secondary {
  background-color: #2a2953;
  color: #ffffff;
  border: 0px;
  outline: none;
  border-radius: 5px;
  font-weight: 600;
  font-family: "comfortaa";
  cursor: pointer;
  padding: 5px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s ease-out;
  text-decoration: none;
  font-size: 1rem;
  width: 75px;
  margin-right: auto;
  max-width: 100%;
  box-sizing: border-box;

}
.button:hover,
button:hover {
  text-decoration: none !important;
}
.button:hover:not(.left-to-right-hover),
button:not(:disabled):hover:not(.left-to-right-hover) {
  color: var(--alternate-color);
  background-color: white;
  font-weight: 700;
}

.button.secondary:hover:not(.left-to-right-hover),
button:not(:disabled).secondary:hover:not(.left-to-right-hover) {
  color: #2a2953;
}
.left-to-right-hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-105%);
  height: 100%;
  width: 100%;
  background-color: white;
  transition: all 0.3s ease-out;
  z-index: -1;
}
.left-to-right-hover:hover {
  color: var(--alternate-color);
}
.left-to-right-hover.secondary:hover {
  color: #2a2953;
}
.left-to-right-hover:hover::before {
  transform: translateX(0);
}

.input-pronos[type="number"] {
  outline: none;
  border: 0, 1px solid;
  color: var(--alternate-color);
  font-weight: 900;
  font-size: 1rem;
  border-radius: 4px;
  transition: color 0.3s, background-color 0.3s;
  font-family: "comfortaa";
  width: 40px;
  text-align: center;
  border-color: #1a194c46;
  box-sizing: border-box;
  margin-bottom: 0px;
}
.input-pronos-fix {
  outline: none;
  color: black;
  font-weight: 900;
  font-size: large;
  font-style: bold;
  font-family: "comfortaa";
  text-align: center;
  border-color: #1a194c46;
  
  margin-bottom: 0px;
}
.input-pronos[type="number"]::placeholder{
font-size: 900;
  color:black;
}

input,
select:not([type="checkbox"]),
textarea {
  background-color: transparent;
  outline: none;
  border: none;
  color: #1a194cb4;
  font-size: 1rem;
  width:100%;
  padding: 5px 5px;
  border-radius: 4px;
  transition: color 0.3s, background-color 0.3s;
  font-family: "comfortaa";
  font-weight: 500;
  border-bottom: 2px solid;
  margin-bottom: 20px;
  border-color: #1a194c46;
  box-sizing: border-box;
}

input,
select:not([type="checkbox"]).filled,
textarea.filled {
  background-color: #1a194c0c;
}

input:not([type="checkbox"]).filled.light,
textarea.filled.light {
  background-color: #ffffff12;
}

input:not([type="checkbox"]).bordered,
textarea.bordered {
  border: 2px solid;
}
input:not([type="checkbox"]):placeholder-shown,
textarea:placeholder-shown {
  border-color: #1a194c48;
}

input:not([type="checkbox"]).light:placeholder-shown,
textarea.light:placeholder-shown {
  border-color: rgba(255, 255, 255, 0.644);
}

input:not([type="checkbox"]).light,
textarea.light {
  color: white;
}

input:not([type="checkbox"]).light::placeholder,
textarea.light::placeholder {
  color: #ffffffd0;
}
input:not([type="checkbox"])::placeholder,
textarea::placeholder {
  color: #1a194c48;
  text-transform: initial;
}
input:not([type="checkbox"]):focus::placeholder,
textarea:focus::placeholder {
  color: var(--alternate-color);
}

input:not([type="checkbox"]):focus,
textarea:focus {
  border-color: var(--alternate-color) solid !important;
  color: var(--alternate-color);
  background-color: #f52d0015;
  font-weight: 600;
}

input:not([type="checkbox"]).x-small {
  font-size: 0.83rem;
  padding: 6px 5px;
}
input:not([type="checkbox"]).small {
  font-size: 0.9rem;
  padding: 8px 7px;
}

input:not([type="checkbox"]).large {
  font-size: 1.18rem;
  padding: 13px 12px;
}

input:not([type="checkbox"]).x-large {
  font-size: 1.35rem;
  padding: 14px 15px;
}

.input-with-end-icon {
  position: relative;
}
.input-with-end-icon input {
  width: 100%;
  box-sizing: border-box;
}

.input-with-end-icon .btn {
  position: absolute;
  top: 34%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}

.popup {
  z-index: 10;
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  color: black;
  transition: ease-out 0.3s;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  display: flex;
}
.popup.opened {
  pointer-events: initial;
  opacity: 1;
  visibility: initial;
}

.popup.opened .popup-content {
  margin-top: 0px;
}

.popup-title {
  color: var(--text-color);
  font-weight: 600;
  padding: 20px;
  padding-right: 50px;
  border-bottom: 2px solid #ffffff08;
  background-color: #2a2953;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.8px;
  font-size: 1em;
}
.popup-title .close-button {
  padding: 10px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  text-decoration: none;
  color: white;
}

.popup-body {
  padding: 20px;
}
.popup-actions {
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}
.popup-actions .button,
.popup-actions button {
  margin-left: 5px;
  margin-right: 5px;
  vertical-align: top;
}
.popup-content p {
  margin-top: 0px;
}
.popup-content {
  font-size: 0.95em;
  overflow: hidden;
  color: var(--main-color);
  width: 97%;
  max-width: 500px;
  max-height: 100%;
  height: max-content;
  z-index: 11;
  position: relative;
  border-radius: 15px;
  display: block;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  color: var(--text-color);
  background-color: var(--secondary-color);
  color: white;
  margin-top: 100px;
  transition: 0.3s;
}

.mb-0 {
  margin-bottom: 0px !important;
}
.mb-1 {
  margin-bottom: 4px !important;
}
.mb-2 {
  margin-bottom: 8px !important;
}
.mb-3 {
  margin-bottom: 12px !important;
}
.mb-4 {
  margin-bottom: 16px !important;
}
.mb-5 {
  margin-bottom: 20px !important;
}
.mb-6 {
  margin-bottom: 24px !important;
}
.mb-7 {
  margin-bottom: 28px !important;
}
.mb-8 {
  margin-bottom: 32px !important;
}
.mb-9 {
  margin-bottom: 36px !important;
}
.mb-10 {
  margin-bottom: 40px !important;
}
.mt-0 {
  margin-top: 0px !important;
}
.mt-1 {
  margin-top: 4px !important;
}
.mt-2 {
  margin-top: 8px !important;
}
.mt-3 {
  margin-top: 12px !important;
}
.mt-4 {
  margin-top: 16px !important;
}
.mt-5 {
  margin-top: 20px !important;
}
.mt-6 {
  margin-top: 24px !important;
}

.mr-0 {
  margin-right: 0px !important;
}
.mr-1 {
  margin-right: 4px !important;
}
.mr-2 {
  margin-right: 8px !important;
}
.mr-3 {
  margin-right: 12px !important;
}
.mr-4 {
  margin-right: 16px !important;
}
.mr-5 {
  margin-right: 20px !important;
}
.mr-6 {
  margin-right: 24px !important;
}
.mr-7 {
  margin-right: 28px !important;
}
.mr-8 {
  margin-right: 32px !important;
}
.mr-9 {
  margin-right: 36px !important;
}
.mr-10 {
  margin-right: 40px !important;
}

.ml-1 {
  margin-left: 4px !important;
}
.ml-2 {
  margin-left: 8px !important;
}
.ml-3 {
  margin-left: 12px !important;
}
.ml-4 {
  margin-left: 16px !important;
}
.ml-5 {
  margin-left: 20px !important;
}
.ml-6 {
  margin-left: 24px !important;
}
.ml-7 {
  margin-left: 28px !important;
}
.ml-8 {
  margin-left: 32px !important;
}
.ml-9 {
  margin-left: 36px !important;
}
.ml-10 {
  margin-left: 40px !important;
}

.menu-slider {
  background-color: var(--alternate-color);
  /*color: var(--main-color);*/
  color: white;
  width: auto;
  display: flex;
  justify-content: center;
  z-index: 10;
  margin-top: 10px;
  margin-bottom: 0;
  
}

.menu-slider-option {
  border-bottom: white solid 1px;
  height:38%;
  font-size:14px;
  padding: 11px 15px;
  font-weight: normal;
}
.menu-slider-option .icon {
  margin-right: 5px;
}

.menu-slider-option:hover {
  cursor: pointer;
}

.menu-slider-option.selected {
  border-bottom: white solid 3px;
  background-color: rgba(255, 255, 255, 0.322);
  font-weight: bold;
}

table {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-collapse: collapse;
  color: var(--text-color-dark);
  font-size: 0.92em;
  width:95%;
  max-width: 700px;
  text-overflow: ellipsis;
}

.container {
  display: flex;
  background-color: var(--secondary-color);
  height: 15vh;
}
.logo-competition{
    width: auto;
    
    height: 10vh;
    object-fit: cover;
    padding: 1px;
  }
.info-competition{
  height: 100%;
  width: 60%;
  padding-left: 6px;
  font-size: 15px;
  vertical-align: center;
}
.action-competition{
  height: 100%;
 /* width: 20%;*/
 
  text-align: center;
  align-items: center;
  font-size: medium;
  vertical-align: middle;
  margin: auto;
  margin-left: auto;
  margin-right: auto;
}
.container3 {
  display: flex;

  align-items: center;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  text-align: left;
  padding: 1vh;
  width: 92%;
  max-width: 700px;
  border-radius: 5px;
  border-color: #271c48;
  border-style: 2px solid;
}
.profil-info{
  font-size: medium;
  width: 100%;
  display: flex;
  flex-direction: row;

}
.profil-info-sub{
  position: relative;
  width: 40%;
}
.profil-info-sub3{
  display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  position: relative;
  text-align: center;
  width: 20%;
}
.profil-info-sub4{
  position: relative;
  margin:0;
  padding:0;
  width: 80%;
}
.profil-info-sub4 h5{
  font-weight: 400;
  margin: 5px;
  font-size: small;
}
.profil-info-sub2 h5,
.profil-info-sub3 h5,
.profil-info-sub h5{
  font-weight: 400;
  margin: 10px;
  font-size: small;
}
h5{
  font-weight: 400;
  margin:0;
  margin-top: 2px;
  font-size: 10px;
}
.profil-info-sub2{
  width: 60%; 
}

.container4{
  width: 90%;
  height:75px;
  max-width: 700px;
  padding: 4vh;
  background-color: var(--main-color);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  border-radius: 10px;
  border-color: var(--secondary-color);
  border-style: solid;
}
  .container5 {
    display: flex;
    flex-direction: column;

/*    background-color: var(--main-color);*/
    background-color: white;
   
    font-size: small;

    padding: 1vh;
    width: 90%;
    max-width: 400px;
    border-radius: 5px;
    justify-content: end;
    }
.bareme-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid lightgray;
  border-top: 1px solid lightgray;
  border-collapse: collapse;
}

.bareme-element-gauche{
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 5%;
  width: 80%;
  height: 35px;

}
.bareme-element-droite{
align-items: center;
display:flex;
justify-content: center;
  width: 20%;
height: 35px;
}


.container-espace {
  display: flex;
  text-align: left;
  height: 7px;
  width: 95%;
  
}
.container-competition {
  background-color: var(--main-color);
  text-align: center;
  display: flex;
  margin: auto;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  z-index: 2;
  background-color: var(--main-color);
  flex-direction: column;
  position: absolute;
  top: 40vh;
  color: var(--text-color);
}

.embleme-mini {
  width: 30px;
  height: 20px;
  margin-left: 10px;
  display: flex;
  position: absolute;
}
.embleme-mini img {
  object-fit: cover;
  position: absolute;
margin-top: 0px;
}
.tab-head1 {
  
  width:150px;
  color: var(--main-color);
  text-align: center;
  background-color: var(--secondary-color);
  font-weight: 400;
  height: 20px;
  
}
.tab-head2 {
  color: var(--main-color);
  text-align: center;
  background-color: var(--secondary-color);
  font-weight: 400;
  width:25px;
  height: 20px;
  
}
.tab-head3 {
  color: var(--main-color);
  text-align: center;
  background-color: var(--secondary-color);
  font-weight: 400;
  width:100px;
  height: 20px;
  
}

.col1{
display:flex;
text-align: left;
align-items: center;
height:30px;
white-space: nowrap !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
max-width: 150px;

}
.col1-range{
  margin-left: 3px;
  width: 5px;
}
.col1-team{
  max-width: 100%;
  white-space: nowrap !important;
overflow: hidden !important;
text-overflow: ellipsis !important;

  position:relative;
  margin-left: 55px;
  
}
.col2-team{
  max-width: 100%;
  white-space: nowrap !important;
overflow: hidden !important;
text-overflow: ellipsis !important;

  position:relative;
  margin-left: 40px;
  
}
.col2{
  width:20px;
}

.col3{
  display:flex;
  text-align: left;
  align-items: center;
  height:30px;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100px;
  }
  .col3 .embleme-mini{
margin-left:2px;
  }
table tbody tr{
  background-color: var(--main-color);
  align-items: center;
  text-align: center;
  height: 20px;
  margin-left: 5px;
}

l .tip {
  border-radius: 10px;
  background-color: #ffffff15;
  padding: 15px 20px;
  font-size: 0.9em;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url(/img/vignettage.png);
  background-size: 100% 100%;
}

@media only screen and (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .popup-overlay {
    background: linear-gradient(181deg, #000000ed, #00000099, #262572, black);
    opacity: 0.9;
  }
  table {
    font-size: 0.64em;
  }

  .embleme-mini {
    width: 24px;
    height: 16px;
    margin-left: 8px;
    display: flex;
    position: absolute;
  }
  .embleme-mini img {
    object-fit: cover;
    position: absolute;
  margin-top: 0px;
  }
 
  
  .col1{
  display:flex;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
  align-items: center;
  height: 30px;
  }
 
  .col1-team{
    margin-left: 40px;
  }
  .col2-team{
    margin-left: 32px;
  }
  .desktop-only {
    display: none !important;
  }

  .custom-select {
    width: 150px;
    max-width: 150px;
    padding-right: 5px;
  }

  .menu-slider {
    display: flex;
    align-items: center;
    background-color: var(--alternate-color);
    /*    background-color: var(--secondary-color);*/
   
    color: white;
    position: fixed;
    z-index: 10;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    height: 55px;
    justify-content: center;
    bottom: 0px;
    left: 0px;
    width: 100%;
  }

  .menu-slider-option {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 3px 3px 0 0;
    border-bottom: none;
    border-width: 4px !important;
  }

  .menu-slider-option .icon {
    font-size: 20px;
    margin-bottom: 4px;
    margin-right: initial;
  }
}
