@import url('https://fonts.googleapis.com/css2?family=Inter&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --base-color: #151515 !important;
  --main-color: #18A9B2;
  --hover-color:#119fa9;
}

html {
  height: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  letter-spacing: .050rem !important;
  background: var(--base-color);


}

.bg-container {
  background-image: url(/assets/img/new-images/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

a {
  text-decoration: none;
  color: white;
}

hr {
  margin: 0.25rem 0;
}

b,
.fw-bold {
  font-weight: 400 !important;
}


.navbar-toggler {
  border: 1px solid white !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.navbar-toggler:focus {
  box-shadow: none;
  border: 1px solid var(--main-color);
}


.btn-danger {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
}

.container-sportbook {
  padding: 2%;
  display: flex;
}

/* .btn-danger:hover {
  background-color: #2b3ba6 !important;
  border: 1px solid #2b3ba6 !important;
} */

.login-btn {
  border-radius: 5px;
  background: var(--main-color);
  padding: 10px 25px;
  color: white;
  font-weight: 600;
  border: 0px;
}

.login-btn:hover {
  background: var(--hover-color)!important;

}

.border-dark {
  border-color: #37386a !important;
}

.call {
  font-size: 0.8rem;
}

.logo {
  max-width: 300px;
}

/* .card {
  background: url(/assets/img/new-images/bg-cards.png)no-repeat;
  background-size: 100% 100%;
  background-position: center bottom;
  justify-content: flex-end;
} */

/* .card img {
  transform-origin: bottom;
  transition: scale3d(1, 1, 1);
  transition: all .3s cubic-bezier(.215, .61, .355, 1);
} */

.card:hover img {
  transition: all .3s cubic-bezier(.215, .61, .355, 1);
  transform: scale3d(1.1, 1.1, 1.1);
}


.carousel-indicators {
  margin-bottom: 0rem;
}

.login-box input {
  padding: 20px 57px !important;
}

.header-wrong-password {
  text-align: center;
  width: 100%;
  top: 200px;
  z-index: 2;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  transition: all 1s ease;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 14px;
  letter-spacing: 2px;
  -moz-transition: 1s;
  opacity: 0;
  padding: 11px 0px;
}

.opacity-1 {
  opacity: 1;
}

.card-custom {
  position: relative;
  overflow: hidden;
  background: transparent;
  border-radius: 4px;
}

.card-img-top {
  width: 100%;
  height: 200px;
  /* Ajusta esto según las necesidades de tu diseño */
  object-fit: cover;
}

.card-title {
  position: absolute;
  bottom: 6px;
  left: 20px;
  color: white;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 1.2rem;
}

.ligues-section {
  background: #000;
  border-top: 3px solid var(--main-color)
}

.ligues-section img {
  height: 70px;
}

.navbar-brand {
  width: 25%;
}

.navbar-brand img {
  height: 8vh;
}

/* Responsive: Portrait tablets and up */
@media only screen and (max-width: 768px) {
  .navbar-brand {
    width: 40%;
  }

  .brand {
    background-color: var(--base-color);
  }

  .brand img {
    max-width: 70%;
  }

  .hero.bg-dark {
    background-color: transparent !important;
  }

  .products {
    max-width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-bottom: 3rem !important;
  }

  .products .row {
    width: 750px;
  }

  .products .row-cols-5>* {
    width: 150px;
  }

  .products h5 {
    font-size: .75rem;
  }

  .ligues-section img {
    height: 30px;
  }

  .card-title {
    font-size: 0.8rem;
  }
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  width: 160px;
  height: 30px;
  border-radius: 20px;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  position: relative;
}

.loader::before {
  content: "";
  position: absolute;
  margin: 2px;
  inset: 0 100% 0 0;
  border-radius: inherit;
  background: currentColor;
  animation: l6 2s infinite;
}

@keyframes l6 {
  100% {
    inset: 0
  }
}

