@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

.body {
  font-family: "Roboto", sans-serif;
}

.button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0 107 179);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button:hover .icon {
  transform: translate(4px);
}

.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

.navbar {
  background-color: black;
}

.navbar-nav {
  margin-left: 200px;
  margin-right: 103px;
  justify-content: space-between;
}

.nav-link {
  position: relative;
  color: #ffffff !important;

  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #1e90ff !important;
}

.nav-link:hover::before {
  content: "";
  position: absolute;
  left: -10px;

  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #1e90ff;
  border-radius: 5px;
}

.nav-assistance {
  color: #1e90ff !important;
}

.nav-assistance:hover {
  color: #1e90ff !important;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.dropdown-menu {
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.title {
  font-size: 44px;
}

.emojiball {
  width: 40px;
}

.card-body ul li {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.8;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background-color: #007bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.packsrow {
  margin-top: 61px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.scrolling-row-container {
  overflow: hidden;
}

.scrolling-row {
  display: flex;
  gap: 15px;
  padding: 10px;
  white-space: nowrap;
  animation: scroll 10s linear infinite;
}

.scrolling-row img {
  width: 200px;
  height: auto;
  border-radius: 8px;
}

.feature-card {
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 450px;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-icon {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 15px;
}

.feature-title {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.feature-divider {
  width: 50px;
  height: 2px;
  background-color: #ddd;
  margin: 0 auto 20px;
}

.feature-text {
  color: #666;
  font-size: 1rem;
  line-height: 2.4;
}

.feature-card:hover {
  background-color: #000;
  color: #fff;
}

.feature-card:hover .feature-icon,
.feature-card:hover .feature-title,
.feature-card:hover .feature-text {
  color: #fff;
}

.feature-card:hover .feature-divider {
  background-color: #888;
}

.extra-bold {
  font-weight: 900;
}

/* Product section */
.product-card {
  border: none;
  text-align: center;
  transition: color 0.3s ease;
  padding: 15px;
  border-radius: 10px;
}

.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-title {
  font-weight: bold;
  font-size: 1rem;
  margin-top: 10px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-price {
  color: #333;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.product-card:hover .product-title,
.product-card:hover .product-price {
  color: #007bff !important;
}

/* Footer*/

footer .list-unstyled a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .list-unstyled a:hover {
  color: #007bff;
  text-decoration: none;
}

.footerdown {
  padding: 80px 0px;
  background-color: #000;
}

.custom-line {
  border: none;
  border-top: 1px solid #ffffff;
  width: 80%;
  margin: 20px auto;
  opacity: 0.7;
}

/* Whatsapp Buttons */
.Btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: #00d757;
  z-index: 1;
  right: 20px;
  bottom: 20px;
}

.sign {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign svg {
  width: 25px;
}

.sign svg path {
  fill: white;
}

.text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: 0.3s;
}

.Btn:hover {
  width: 150px;
  border-radius: 40px;
  transition-duration: 0.3s;
}

.Btn:hover .sign {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 10px;
}

.Btn:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 10px;
}

.Btn:active {
  transform: translate(2px, 2px);
}

/* image product zoom*/

.zoom-container {
  position: relative;
  width: 300px;
  overflow: hidden;
}

.zoom-image {
  width: 100%;
  transition: transform 0.3s ease;
}

.zoom-container:hover .zoom-image {
  transform: scale(1.1);
  /* Zooms in the image slightly */
}

.zoom-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-icon .icon {
  width: 20px;
  height: 20px;
  fill: white;
  /* White color for the icon */
}

/* End image product zoom*/

.counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f1f1;
  border-radius: 70px;
  padding: 5px;
  width: 60px;
  height: 40px;
  position: relative;
}

.counter-input {
  width: 30px;
  text-align: center;
  border: none;
  background-color: transparent;
  font-weight: bold;
  font-size: 1rem;
  color: #333;
  pointer-events: none;
}

.counter-btn {
  border: none;
  background: none;
  cursor: pointer;
  color: gray;
  font-size: 0.8rem;
  line-height: 1;
  padding: 0;
  margin: 0;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 70px;
}

.counter-btn:first-of-type {
  position: absolute;
  top: 5px;
  right: 5px;
}

.counter-btn:last-of-type {
  position: absolute;
  bottom: 5px;
  right: 5px;
}

/*this container */
.component-title {
  width: 100%;
  position: absolute;
  z-index: 999;
  top: 30px;
  left: 0;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #888;
  text-align: center;
}

.tab-container {
  position: relative;

  display: flex;
  flex-direction: row;
  align-items: flex-start;

  padding: 2px;

  background-color: #dadadb;
  border-radius: 9px;
}

.indicator {
  content: "";
  width: 130px;
  height: 28px;
  background: #ffffff;
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 9;
  border: 0.5px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.12), 0px 3px 1px rgba(0, 0, 0, 0.04);
  border-radius: 7px;
  transition: all 0.2s ease-out;
}

.tab {
  width: 130px;
  height: 28px;
  position: absolute;
  z-index: 99;
  outline: none;
  opacity: 0;
}

.tab_label {
  width: 130px;
  height: 28px;

  position: relative;
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;

  font-size: 0.75rem;
  opacity: 0.6;

  cursor: pointer;
}

.tab--1:checked ~ .indicator {
  left: 2px;
}

.tab--2:checked ~ .indicator {
  left: calc(130px + 2px);
}

.tab--3:checked ~ .indicator {
  left: calc(130px * 2 + 2px);
}

.star-rating {
  color: #ffc107;
  /* Gold color for stars */
  font-size: 1em;
  /* Adjust size as needed */
  display: inline-flex;
}

.star-rating i {
  margin-right: 2px;
  /* Optional spacing between stars */
}

/* product infos on IPTV TEST */

.product-info {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.product-info p {
  margin-bottom: 0.5rem;
}

.product-info strong {
  font-weight: bold;
}

.product-info a {
  color: inherit;
  text-decoration: none;
}

.product-info a:hover {
  color: #007bff;
  text-decoration: underline;
}

/* remboursé tag*/

.description-section {
  font-size: 1rem;
  line-height: 1.6;
}

.tab-button {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 15px;
  font-weight: bold;
  margin-bottom: 20px;
}

.highlighted-text {
  color: #e63946;
  font-weight: bold;
  text-align: center;
  margin: 10px 0;
}

.center-image {
  text-align: center;
  margin: 20px 0;
}

.rembourse-image {
  width: 150px;
}

.note {
  color: red;
  font-weight: bold;
}

.refund-text {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}

/* Mon compte Form*/

.form-container {
  margin-top: 50px;
}

.card {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: #007bff;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
}

.form-label {
  font-weight: bold;
}

.page-title {
  font-size: 2rem;
  font-weight: bold;
}





