
#sponsor-container {
  display: flex;
  justify-content: center;
  padding: clamp(8px, 2vw, 26px);
  padding-top: clamp(1px, 1vw, 7px);
  width: 100%;
}
  
.footer-container {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-block: 20px;
  padding-inline: 10px;
  border-radius: 150px;
  box-shadow: 0 -16px 20px -16px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: clamp(200px, 100vw, 1600px);
  background: transparent;
  z-index: 1;
  backdrop-filter: blur(16px);
}
  

.footer-container::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: 150px;
  background: linear-gradient(to bottom, #00fbff 85% , #03979900 92%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.Sponsor-titre h5 {
  display: flex;
  justify-content: center;
  color: var(--color_color);
  text-transform: uppercase;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: var(--text-shadow0);
}

.div-icon {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-end;
  padding-inline: 10px;
  padding-bottom: 10px;
}

.div-icons img {
  height: auto;
}

.div-icons {
  display: flex;
  justify-content: center;
  	width: fit-content;
	margin-inline: auto;
}

.div-icons img {
  height: auto;
}

.div-icons  img{
	width: clamp(60px,13vw,250px);
}

.footer-ex {
  display: flex;
  justify-content: center;
}

.footer {
  display: flex;
  width: auto;
  gap: clamp(4px, 1vw, 14px);
  flex-wrap: wrap;
  white-space: wrap;
  justify-content: center;
  align-items: center;
}

.button-footer {
  color: white;
  width: auto;
  text-decoration: none;
  font-weight: 800;
  padding: 5px 15px;
  border-radius: 999px;
  border: 2px solid var(--border_backgroud);
  background: #ffffff6e;
  text-shadow: var(--text-shadow);
  white-space: nowrap;
  flex-shrink: 1; 
}

.footer-separator {
  width: clamp(4px, 0.8vw, 10px);
  height: clamp(12px, 2.5vw, 28px);
  border-radius: 5px;
  background: var(--backgroud_backgroud);
}
.creato {
  text-align: center;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
}

.creato p,
.creato span,
.creato a {
  color: #fff; /*Use variable*/
  font-weight: 900;
  white-space: wrap;
  display: flex;
  justify-content: center;
  width: auto;
}

.creato-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(6px, 1vw, 18px);
  flex-wrap: wrap
}

.creato-links span {
  flex: 0;
}

.creato a {
  text-decoration: underline;
  flex-shrink: 1;
}
.creato a:hover, .creato a:focus-visible {
  color: var(--accent-color);
}

.creato-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 1;
}

.footer-sponsor{
	display: flex;
	flex-direction: column;
	gap: 1em;
}

@media (max-width: 1000px) {
  .footer-container,.footer-container::before {
    border-radius: 90px;
  }
}


@media (max-width: 500px) {
  .footer-container, .footer-container::before {
    border-radius: 50px;
  }
  .footer-separator {
    display: none;
  }
  .footer{
    flex-wrap: wrap;
  }

}
/* End of footer.css < 230px */

@media (max-width: 300px) {

  .footer,
  .creato,
  .creato-links,
  .div-icon,
  .div-icons,
  .creato-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-sponsor,
  .div-icon,
  .div-icons,
  .creato-bottom {
    white-space: wrap;
  }

  .div-icon img, .div-icons img{
    width: clamp(15px,50vw,300px);
  }
}


@media (prefers-color-scheme: dark) {
  .header-live {
    background: rgba(153, 140, 140, 0.196)!important;
  }

  .button-footer {
    background: #c7c6c675;
  }

  .footer-separator {
    background: #e3eb00;
  }
}




/* 
 POPEP
*/

.modal-overlay {
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 1000;
  position: fixed;
  bottom: 0;
  overflow-y: hidden;
}

.modal-overlay.active {
	display: flex;
  	opacity: 1;
  	visibility: visible;
}



.modal-close {
  --danger-border-color:#fff;
  --danger-bg-color:#D20303;
  background: transparent;
  cursor: pointer;
  color: var(--danger-border-color);
  font-weight: 900;
  font-size: 30px;
  background-color: var(--danger-bg-color);
  border-radius: 50%;
  height: 2em;
  width: 2em;
  border: 3px solid var(--danger-border-color);
}


.modal-box {
  padding: clamp(2px,2vw,16px) clamp(1px,1vw,8px);
  background: #00a8ff;
  border-radius: 20px;
  border: 3px solid transparent;
  outline: 3px solid;
  outline-offset: 6px;
  box-shadow: 0 0px 30px #090909;
  backdrop-filter: blur(50px);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin-inline: clamp(0px,2vw,24px);
  overflow-y: auto;
  max-height: 80vh;
}

.modal-box h2 {
  margin-top: 0;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid #e5e5e5;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-box h3 {
  margin-top: 12px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-box p {
  margin: 6px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-box ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-box li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-box a {
  color: #00ff47;
  text-decoration: underline;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-box section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


::-webkit-scrollbar {
  width: 12px;
  background: #00fbff;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #00ff4755;
  outline: solid 2px #aaa;
  transition: background-color 0.2s ease-in;
}

::-webkit-scrollbar-thumb:hover{
	background-color: #00ff47aa;
	box-shadow: inset 0px 0px 2px 1px #0002;
}


.short-icons-container{
	display: flex;
	flex-direction: column;
	gap: clamp(13px, 1vw, 35px);
	flex: 1;
	justify-content: center;
	padding-bottom: clamp(6px, 2vw, 37px);
}