
@font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-BlackItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}
@font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-BookItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-ThinItalic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}
@font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-Ultra.otf') format('opentype');
    font-weight: 950;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-UltraItalic.otf') format('opentype');
    font-weight: 950;
    font-style: italic;
}
@font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-XLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-XLightItalic.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
}
.gotham-bold{
    font-family: 'Gotham', sans-serif;
    font-weight: 900;
    font-style: normal;
}
.gotham-normal {
    font-family: 'Gotham', sans-serif;
    font-weight: 200;
    font-style: normal;
}

html{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.clear {
  width: 100%;
  clear: both;
}

button {
  float: left;
}

.c-card {
  display: flex;
  flex-direction: column;
  aspect-ratio: 1;
  min-width: 300px;
  max-width: 80%;
  padding: .5em;
}

.n {
  display: flex;
  height: 80%;
  gap: .5em;
}

.headers {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.headers > div span {
    color:#ffffff;
    font-weight: 1000;
    font-size: 2rem;
}

.column {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: .5em;
}

.number {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
  height: 20%;
}

.center_number {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 20%;
}
.text-number{
  font-weight: bold;
  font-size: 1.5rem;
  color: #123950;
}

.number span {
  font-weight: bold;
  font-size: 1.5rem;
  color: #123950;
}

.figura {
  width: 100%;
  padding: 2%;
  height: auto;
  aspect-ratio: 1 / 1;
  background-color: #f7f7f7;
}

.f-row {
  width: 100%;
  height: 20%;
  display: flex;
  padding: 2px;
}

.f-col {
  height: 100%;
  width: 20%;
  background-color: #e0e0e0;
  border-radius: 50%;
  margin: 2px;
}

.div-center {
  display: flex;
  gap: .5em;
}
body{
    font-family: 'Gotham', sans-serif;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: white;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    top: 15px; left: 10px; right: 10px; bottom: 15px;
    background: url("../img/FONDO.svg") no-repeat center center;
    background-size: cover;
    z-index: -1;
}

.login-modal{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    min-height: 45vh;
    max-height: 70vh;
    background: url('../img/LOGIN.svg') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

.motorola{
    width: 0.2rem;
}

.nav-link{
    cursor:pointer;
}
.form-check-input.circular-checkbox {
    border-radius: 50% !important;
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #fff;
    background-color: transparent;
    cursor: pointer;
}

.form-check-input.circular-checkbox:checked {
    background-color: black;
}

.navbar-custom {
  background-color: rgba(0, 0, 0, 0) !important;
  /*border-bottom: 1px solid #53ffd4;*/
}

.navbar-custom * {
  color: #ffffff !important;
}

/* .main-section {
  max-height: calc(100vh - 57px);
  min-height: calc(100vh - 57px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  /*background-image: url(../img_fonts/ondas_bg.png);*/
  /*background-position: right top;*/
  /*background-repeat: no-repeat;*/
  /*background-size: auto 100%;
}
*/
.main-section{
    min-height: 85vh;
}
.slider {
    width: 98vw;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.slider .slide {
    width: 120px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.5rem;
}

.slider .slide img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.slider .slide:hover img {
    transform: translateY(-6px);
}

.slider .slide-track {
    display: flex;
    width: calc(136px * 14);
    animation: scroll 60s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-136px * 7)); }
}


.text-cyan {
  color: #ffffff;
}
.text-cian {
  color: #ffffff;
}

.input{
    background-color: #566C79 !important;
    border-color: 2px solid white !important;
    border-radius: 10px !important;
    width: 50% !important;
}

.form-control::placeholder {
  color: white;
}
.form-control:focus {
  color: white;
}
/*.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    background-color: #18223c;
    background-clip: padding-box;
    border: 1px solid #ffaf0e;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 1.5rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

 .form-control:focus {
    color: #ffffff;
    background-color: #18223c;
    background-clip: padding-box;
    border: 1px solid #ffaf0e;
} */

/* .form-control1 {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    background-color: #174898;
    background-clip: padding-box;
    border: 1px solid #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 1.5rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
} */

/* .form-control1:focus {
    color: #ffffff;
    background-color: #174898;
    background-clip: padding-box;
    border: 1px solid #ffaf0e;
} */
.form-control:focus{
 color: black;
}

.btn-custom1 {
    font-weight: bold;
    color: black;
    background-color: white;
    min-width: 90px;
    border-radius: 0.5rem;
}

.btn-custom2 {
    color: black;
    font-weight: bold;
    background-color: #ffffff;
    width: 100%;
    border-radius: 1.5rem;
}

.btn-custom3 {
    color: black;
    font-weight: bold;
    background-color: #ffffff;
    max-width: 50%;
    min-width: 30%;
    border-radius: 0.5rem;
}

.bg-magenta2 {
  background-color: #77B9BD;
  margin: 2%;
  box-sizing: border-box;
}

.bg-magenta3 {
  background-image: url("../img_fonts/fondo_popup.png");
  background-position-x: center;
  background-position-y: center;
}

.bg-darkblue {
  background-color: #18223c;
}

.bg-cian {
  background-color: #ffaf0e;
}

.bg-magenta {
  background-color: #941b80;
  box-shadow: 0px 0px 26px 7px #000000;
  border-radius: 0 !important;
  aspect-ratio:  16/9;
}

.video-content {
  position: relative;
}

.video-content img {
  width: 100%;
}

.video-content .iframe {
  top: 4%;
  position: absolute;
  left: 3%;
  aspect-ratio: 16/9;
  width: 94%;
}

.custom-box {
  background-color: #000945;
  border-radius: 1em;
}

.cartones-scroll {
  height: calc(83vh - 100px);
  overflow-y: auto;
}

.cartones-winners {
  height: calc(89vh - 100px);
  overflow-y: auto;
}
