/****** BASE ******/

html {
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

footer {
  position: fixed;
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1vh;
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
}

footer p {
  margin: auto;
}


/*** SCROLL ***/

*::-webkit-scrollbar{
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: #585858;
  border: 1px solid #424242;
  box-shadow: inset 0 0 6px rgb(0, 0, 0);
}

*::-webkit-scrollbar-thumb {
  border: 1px solid #601111;
  border-radius: 8px;
  background-color: #850c16;
}

/*** BODY Y GENERALES ***/

body {
  background: #1c1c1c;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 1px;
}

* {
  letter-spacing: 1px;
}

h2 {
  font-family: Impact;
  text-transform: uppercase;
  letter-spacing: 1px;
}

hr {
  background-color: #dc0210 !important;
  border-color: #dc0210 !important;
  opacity: 1 !important;
}

::placeholder {
  color: rgb(120, 120, 120) !important;
  opacity: 1;
}

/****** MENÚ ******/

.navbar {
  background: #1c1c1c!important;
  margin-bottom: 50px;
  font-size: larger;
}

.navbar-nav .nav-link {
  font-family: Impact;
  color: #bf1522;
  padding-left: 5px;
  border-radius: 5px;
  transition: background 0.3s, box-shadow 0.5s;
}

.navbar-nav .nav-link:hover {
  background: #929292b2;
  box-shadow: inset 10px 10px 12px #000000;
  transition: background 0.3s, box-shadow 0.3s;
}

/**** DROPDOWN MENU ****/

.dropdown-menu {
  background: #1c1c1c;
  padding: 7px 10px;
}

.dropdown-item {
  border-radius: 5px;
  font-family: Impact;
  color: #bf1522;
  font-size: larger;
  transition: background 0.3s, box-shadow 0.5s;
}

.dropdown-item:hover {
  padding: 0 auto;
  background: #929292b2;
  box-shadow: inset 10px 10px 12px #000000;
  transition: background 0.3s, box-shadow 0.3s;
}

/*** INICIO ***/

.avisos {
  position: relative;
  /* overflow: hidden; */
  padding: 10px;
  box-sizing: border-box;
}

.avisos .aviso-texto {
  position: relative;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  /* background: linear-gradient(135deg, #ff6600, #ffcc00, #00ccff, #0066ff); */
  background: black;
  z-index: 6;
  overflow: hidden;
}

/* Animación de gradiente */
@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.avisos .aviso-texto::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.3), transparent);
  z-index: -1;
}

.avisos::before {
  content: '';
  position: absolute;
  --osize: 15px;
  top: var(--osize);
  left: var(--osize);
  width: calc(100% - (var(--osize) * 2));
  height: calc(100% - (var(--osize) * 2));
  border-radius: 10px;
  pointer-events: none;
  background: rgba(255, 25, 0, 0.8);
  animation: warnAnimation 1.5s linear infinite;
  z-index: 4;
  filter: blur(7px);
}

@keyframes warnAnimation {
  0% {
    background: rgb(74, 255, 234);
    transform: scale(1);
  }
  25% {
    background: rgba(255, 128, 38, 0.8);
  }
  50% {
    background: rgba(213, 0, 0, 0.8);
    width: calc(100% + var(--osize));
    height: calc(100% + var(--osize));
    top: calc(var(--osize) / 2 - var(--osize));
    left: calc(var(--osize) / 2 - var(--osize));
  }
  75% {
    background: rgba(255, 128, 38, 0.8);
  }
  100% {
    background: rgb(74, 255, 234);
    transform: scale(1);
  }
}

/* Textos inicio */

.first-line {
  color: rgb(176, 0, 0);
  text-align: center;
  font-size: 20px;
  text-decoration: underline;
  text-shadow: 1px 1px 1px black;
  margin-bottom: 10px;
}

.rest-of-text {
  text-align: left;
  margin-left: 0;
  -webkit-text-stroke: 1px black;
}

/*** BOTÓN ADMIN ***/

.border-gradient {
  border-image: linear-gradient(40deg, #28a745, #17a2b8, #de3646) 1 !important;
  background-image: linear-gradient(45deg, #2f1659, #0c5c60, #7e1f28), linear-gradient(45deg, #28a745, #17a2b8, #de3646) !important;
  background-clip: padding-box,border-box !important;
  background-origin: border-box,border-box !important;
}

/*** TOGGLER ***/

.navbar-toggler {
  border: 2px solid #dc0210 !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler:active {
  filter: brightness(1.5);
}

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

/*** CONTENIDO ***/

.container {
  padding: 20px;
  border-radius: 10px;
  background: #0f0f0f;
  border: 3px solid #969696b0;
}

/*** MODAL LOGIN ***/

.modal {
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1 !important;
}

.modal .container{
  border: none;
}

.container h1 {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group label {
  position: absolute;
  top: 0;
  left: 10px;
  font-size: 12px;
  color: black;
  pointer-events: none;
  transition: 0.3s;
}

.form-group input {
  width: 100%;
  height: 40px;
  padding: 10px 40px;
  border: none;
  background: white;
  color: black;
  outline: none;
  box-shadow: inset 4px 4px 10px #b3b3b3, inset -4px -4px 10px #ffffff;
}

.form-group input:focus + label {
  top: -10px;
  left: 0;
  font-size: 10px;
  color: #66ccff;
}

.form-group i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: black;
}

/****** BOTONES ******/

.custom {
  width: 150px;
  height: 40px;
  border: none;
  border-radius: 20px;
  transition: 0.3s;
}

.custom-close {
  background: white;
  color: black;
}

.custom-button {
  background-color: #00CED1; /* Color turquesa */
  border: None;
  color: white;
  transition: background-color 0.3s, color 0.3s ease; /* Efecto de transición a hover */
}

.custom-button:hover {
  background-color: #008B8B; /* Cambio de color al pasar el ratón */
}

.custom-button:active {
  background-color: #006c6c !important;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
}

/*** BOTON VOLVER ARRIBA ***/

#upBtn {
  display: none;
  position: fixed;
  justify-content: center;
  /* vertical-align: middle; */
  left: 0;
  right: 0;
  bottom: 25px;
  width: 50px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1000;
  outline: none;
  border: 1px solid #2f2f2f;
  box-shadow: inset 0px 1px 0px rgba(255, 255, 255, .5), 0px 0px 10px 2px rgba(0, 0, 0, 0.8);
  background-color: rgba(100, 100, 100, 0.5);
  backdrop-filter: blur( 4px );
  color: rgb(255, 255, 255);
  cursor: pointer;
  border-radius: 50%;
  opacity: 0;
  scale: 0.6;
  text-shadow: 2px 1px 0px #770d16;
  animation: animator 3s ease-out infinite;
}

@keyframes animator {
  40% { bottom: 25px; border-radius: 50%;}
  45% { bottom: 10px; border-radius: 50%;}
  48% { bottom: 5px; border-radius: 50% 50% 25% 25% / 50% 50% 25% 25%;}
  50% { bottom: 0px; border-radius: 50% 50% 5% 5% / 70% 70% 5% 5%;}
  52% { bottom: 5px; border-radius: 50% 50% 25% 25% / 50% 50% 25% 25%;}
  55% { bottom: 10px; border-radius: 50%;}
  60% { bottom: 25px; border-radius: 50%;}
}

#upBtn i {
  font-size: 50px;
  position: relative;
  line-height: 1;
  top: -2px;
}

#upBtn:hover {
  border: 1px solid #2f2f2fa2;
  background-color: rgba(48, 48, 48, 0.5);
}

#upBtn:active {
  border: 1px solid #2f2f2f9d;
  background-color: rgba(72, 72, 72, 0.5);
}


/*** PLAN UI ***/

.panel-plan {
  height: 30em;
}

.custom-plan-btn {
  position: relative;
  background: linear-gradient(180deg,#555 0%,#222 39%, #000 41%,#222 100%);
  border: 1px solid #2f2f2f !important;
  box-shadow: inset 0px 1px 0px rgba(255,255,255,.5), 0px 1px 3px rgba(0,0,0,0.3);
  border-radius: 10px !important;
  transition: 0.2s ease-in-out;
  text-shadow: 0 0 2px black;
  height: inherit;
  max-height: 17em;
  width: 16em;
}

.custom-plan-btn a, .custom-plan-btn2 button {
  background: none !important;
  border: none !important;
}

.custom-plan-btn:hover {
  transform: scale(1);
  z-index: 1;
  filter: brightness(1.5);
}

.custom-plan-btn:active {
  transform: scale(0.90);
}

.bi-chevron-compact-down::before {
  transition: 1s ease;
}

.rotar::before {
  transform: rotateX(180deg); /* Puedes ajustar el ángulo según tus necesidades */
}

#contPlanes {
  max-height: 0; /* makes the element invisible due to no height */
  overflow: hidden; /* hides the visual overflow when the elements height is smaller then the contents height */
  transition: max-height 1s ease-out; /* smooth-transition between both "states" */
}

#contPlanes.visible {
  max-height: 1000vh; /* insanely high value */
  transition: max-height 1s ease-in; /* smooth-transition between both "states" */
}

/* Info plan */
.plan-info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  padding-top: 20px;
  width: auto;
  border: 3px solid #0000;
  background: linear-gradient(#0f0f0f, #0f0f0f) padding-box, 
              conic-gradient(from var(--angle), #070707 25%, #c50606 75%, #070707) border-box;
  animation: 4s rotate linear infinite;
}

@keyframes rotate {
  to {
    --angle: 360deg;
  }
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.plan-info h3 {
  padding: 5px;
  position: absolute;
  background-color: #0f0f0f;
  top: -7px;
  margin: 0 auto !important;
}

/*** ANIMATIONS ***/

.animation-border {
  border:
      inset 30px 0 80px #f0f, 
      inset -30px 0 80px #0ff; 
  animation: shadows 2s infinite
}

@keyframes shadows {
  0% {
    text-shadow: #48abe0 0 0 10px;
    box-shadow: inset 0px 0px 20px 10px #48abe0;
  }
  50% {
    text-shadow: blueviolet 0 0 10px;
    box-shadow: inset 0px 0px 20px 10px blueviolet;
  }
  75% {
    text-shadow: rebeccapurple 0 0 10px;
    box-shadow: inset 0px 0px 20px 10px rebeccapuprle;
  }
  100% {
    text-shadow: #48abe0 0 0 10px;
    box-shadow: inset 0px 0px 20px 10px #48abe0;
  }
}

/* Superseries */

.card-ss {
  overflow: visible !important;
}

.ss-box {
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid;
  border-radius: 5px;
  justify-content: center;
  margin: 1rem 0;
}

.ss-title {
  display: flex;
  position: absolute;
  justify-content: center;
  top: -1rem;
  left: 0;
  width: 100%;
}

.ss-title h5 {
  backdrop-filter: blur(2px);
}

.ss-box-azul {
  border-color: rgb(59, 79, 255);
  box-shadow:0 0 30px rgb(59, 79, 255, 0.6);
}

.ss-box-naranja {
  border-color: rgb(255, 149, 56);
  box-shadow: 0 0 30px rgba(255, 149, 56, 0.6);
}

.ss-box-verde {
  border-color: rgb(87, 255, 36);
  box-shadow: 0 0 30px rgba(87, 255, 36, 0.6);
}

.ss-box-violeta {
  border-color: rgb(238, 130, 238);
  box-shadow: 0 0 30px rgb(238, 130, 238, 0.6);
}

.ss-box-rojo {
  border-color: rgb(255, 54, 54);
  box-shadow: 0 0 30px rgb(255, 54, 54, 0.6);
}

.ss-box-turquesa {
  border-color: rgb(0, 229, 225);
  box-shadow: 0 0 30px rgb(0, 229, 225, 0.6);
}

.ss-box-amarillo {
  border-color: rgb(255, 255, 106);
  box-shadow: 0 0 30px rgb(255, 255, 106, 0.6);
}

.ss-box-coral {
  border-color: rgb(255, 127, 80);
  box-shadow: 0 0 30px rgb(255, 127, 80, 0.6);
}

.ss-box-cian {
  border-color: rgb(135, 206, 235);
  box-shadow: 0 0 30px rgb(135, 206, 235, 0.6);
}

.ss-box-oro {
  border-color: rgb(255,215,0);
  box-shadow: 0 0 30px rgb(255,215,0, 0.6);
}

.ss-color .btn {
  width: 100%;
  height: 100%;
}

.ss-color::after {
  content: "";
  width: 7%;
  height: 100%;
  position: absolute;
  right: 0;
  border-radius: 0 10px 10px 0;
}

.ss-azul::after {
  background: linear-gradient(180deg, #e6e6e6ae 0%, rgba(0, 0, 0, 0.25) 39%, rgba(38, 38, 38, 0.6) 41%, rgba(0, 0, 0, 0.25) 100%);
  background-color: rgb(59, 79, 255);
  box-shadow:0 0 30px rgb(59, 79, 255, 0.6);
}

.ss-naranja::after {
  background: linear-gradient(180deg, #e6e6e6ae 0%, rgba(0, 0, 0, 0.25) 39%, rgba(38, 38, 38, 0.6) 41%, rgba(0, 0, 0, 0.25) 100%);
  background-color: rgb(255, 149, 56);
  box-shadow: 0 0 30px rgba(255, 149, 56, 0.6);
}

.ss-verde::after {
  background: linear-gradient(180deg, #e6e6e6ae 0%, rgba(0, 0, 0, 0.25) 39%, rgba(38, 38, 38, 0.6) 41%, rgba(0, 0, 0, 0.25) 100%);
  background-color: rgb(87, 255, 36);
  box-shadow: 0 0 30px rgba(87, 255, 36, 0.6);
}

.ss-violeta::after {
  background: linear-gradient(180deg, #e6e6e6ae 0%, rgba(0, 0, 0, 0.25) 39%, rgba(38, 38, 38, 0.6) 41%, rgba(0, 0, 0, 0.25) 100%);
  background-color: rgb(238, 130, 238);
  box-shadow: 0 0 30px rgb(238, 130, 238, 0.6);
}

.ss-rojo::after {
  background: linear-gradient(180deg, #e6e6e6ae 0%, rgba(0, 0, 0, 0.25) 39%, rgba(38, 38, 38, 0.6) 41%, rgba(0, 0, 0, 0.25) 100%);
  background-color: rgb(255, 54, 54);
  box-shadow: 0 0 30px rgb(255, 54, 54, 0.6);
}

.ss-turquesa::after {
  background: linear-gradient(180deg, #e6e6e6ae 0%, rgba(0, 0, 0, 0.25) 39%, rgba(38, 38, 38, 0.6) 41%, rgba(0, 0, 0, 0.25) 100%);
  background-color: rgb(0, 229, 225);
  box-shadow: 0 0 30px rgb(0, 229, 225, 0.6);
}

.ss-amarillo::after {
  background: linear-gradient(180deg, #e6e6e6ae 0%, rgba(0, 0, 0, 0.25) 39%, rgba(38, 38, 38, 0.6) 41%, rgba(0, 0, 0, 0.25) 100%);
  background-color: rgb(255, 255, 106);
  box-shadow: 0 0 30px rgb(255, 255, 106, 0.6);
}

.ss-coral::after {
  background: linear-gradient(180deg, #e6e6e6ae 0%, rgba(0, 0, 0, 0.25) 39%, rgba(38, 38, 38, 0.6) 41%, rgba(0, 0, 0, 0.25) 100%);
  background-color: rgb(255, 127, 80);
  box-shadow: 0 0 30px rgb(255, 127, 80, 0.6);
}

.ss-cian::after {
  background: linear-gradient(180deg, #e6e6e6ae 0%, rgba(0, 0, 0, 0.25) 39%, rgba(38, 38, 38, 0.6) 41%, rgba(0, 0, 0, 0.25) 100%);
  background-color: rgb(135, 206, 235);
  box-shadow: 0 0 30px rgb(135, 206, 235, 0.6);
}

.ss-oro::after {
  background: linear-gradient(180deg, #e6e6e6ae 0%, rgba(0, 0, 0, 0.25) 39%, rgba(38, 38, 38, 0.6) 41%, rgba(0, 0, 0, 0.25) 100%);
  background-color: rgb(255,215,0);
  box-shadow: 0 0 30px rgb(255,215,0, 0.6);
}

/*** CARDS ***/

.card {
  font-family: Impact;
  background: #0f0f0f !important;
  color: white;
  border: none !important;
  overflow: hidden;
  letter-spacing: 1px;
}

.card-header {
  font-family: Impact;
  background: #0f0f0f;
  border: none !important;
}

.card h2, h3 {
  font-family: Impact;
  color: #bf1522;
  text-transform: uppercase;
}

.card h4, h5 {
  font-family: Impact;
  color: white;
  margin: 0;
  letter-spacing: 1px;
}

.card .form-label {
  font-family: Impact;
  text-transform: uppercase;
}

.card .custom-info textarea {
  width: 100%;
  height: 5em;
}

.card input {
  font-family: Impact;
}

.card #id_year {
  max-width: 6em;
}

.card #id_mes {
  max-width: fit-content;
}

b {
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: underline;
}

/*** Efecto reflejo ***/

.div-reflejo {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.div-reflejo form {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.div-reflejo:hover {
  background-size: 100% 100%; /* Tamaño expandido */
}

.div-reflejo::before {
  content: "";
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-45deg) translate(100%);
  transition: 0.5s ease-in-out; /* Transición suave */
  filter: blur(0px);
  z-index: 1;
}

.div-reflejo:hover::before {
  transform: skewX(-45deg) translate(20%);
}

/*** LISTS ***/

.list-group-item.custom-list {
  background: linear-gradient(180deg,#555 0%,#222 39%, #000 41%,#222 100%);
  border: 1px solid #2f2f2f !important;
  box-shadow: inset 0px 1px 0px rgba(255,255,255,.5), 0px 1px 3px rgba(0,0,0,0.3);
  border-radius: 10px !important;
  transition: 0.3s ease-in-out;
  text-shadow: 0 0 2px black;
}

.list-group-item.custom-list a, .list-group-item.custom-list button {
  background: none !important;
  border: none !important;
  text-align: left;
}

.list-group-item.custom-list:hover {
  transform: scale(1);
  z-index: 1;
  filter: brightness(1.5);
}

.list-group-item.custom-list:active {
  transform: scale(0.95);
}

/*** BACK ARROWS ***/

.back-btn {
  width: 4em;
  display: inline-block;
  background: linear-gradient(180deg,#555 0%,#222 39%, #000 41%,#222 100%);
  border: 1px solid #2f2f2f !important;
  box-shadow: inset 0px 1px 0px rgba(255,255,255,.5), 0px 1px 3px rgba(0,0,0,0.3);
  border-radius: 10px;
  transition: 0.1s;
}

.back-btn:hover {
  filter: brightness(70%);
}

.back-btn:active {
  transform: scale(0.95);
}

/*** ADMIN ***/

.admin-custom-btn {
  text-shadow: rgb(0, 0, 0) 0px 0 5px;
  background: linear-gradient(180deg,#e6e6e6ae 0%,rgba(0, 0, 0, 0.25) 49%, rgba(38, 38, 38, 0.6) 51%,rgba(0, 0, 0, 0.25) 100%);
}

.admin-custom-btn i {
  line-height: 1.5;
}

.admin-custom-btn:hover {
  color: white !important;
}

.admin-custom-btn:active {
  transform: scale(0.95);
}

.admin-nav {
  background: rgba(27, 27, 27, 1) !important;
  border-top: 1px solid rgba(60, 60, 60, 1) !important;
  border-bottom: 1px solid rgba(60, 60, 60, 1) !important;
  border-radius: 30px;
}

/*** LIST ADMIN ***/

.admin-list-group {
  background: rgba(27, 27, 27, 1);
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.3);
  border-radius: 10px!important;
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.274) 0%, rgba(27, 27, 27, 1) 40%) !important;
  border-bottom: 1px solid rgba(60, 60, 60, 1) !important;
  border-top: 1px solid rgba(60, 60, 60, 1) !important;
}

.admin-list-group-item {
  border-color: #dc0210 !important;
  background: none !important;
}

/*** MENSAJE DE INFORMACIÓN ***/

#mensaje-container {
  position: fixed;
  top: 1em;
  right: 1em;
  width: 20%;
  z-index: 4;
}

.mensaje-container {
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
  padding: 50px 10px;
  text-align: center;
  border-radius: 5px;
}

.mensaje-success {
  background: linear-gradient(180deg,#4a594b 0%,#1f281f 39%, #000000 41%,#192119 100%);
  border: 2px solid rgb(40 167 69);
  color: #fff;
}

.mensaje-error {
  background: linear-gradient(180deg,#594a4a 0%,#281f1f 39%, #000000 41%,#211919 100%);
  border: 2px solid rgb(220 2 16);
  color: #fff;
}

/* Selector */

.ss-div {
  position: relative;
}

.color-picker-ss {
  display: flex;
  flex-direction: column;
  max-height: 0;
  max-width: fit-content;
  left: 55px;
  bottom: 0;
  position: absolute;
  z-index: 2;
  border-radius: 50% / 10%;
  box-shadow: 0 0 16px 0 rgba(255, 255, 255, 0.519);
  overflow-y: auto;
  transition: max-height 0.5s ease-in-out;
}
.color-picker-ss::-webkit-scrollbar {
  display: none;
}

.color-picker-ss-div {
  border: 1px solid #ddd;
  border-radius: 50% / 4%;
  background-color: rgba(40, 40, 40, 0.734);
  padding: 5px;
}

.color-option {
  cursor: pointer;
  margin: 2px;
  width: 2em;
  height: 2em;
  border-radius: 25%;
  border: 1 solid black;
  margin: 5px 0;
  transition: transform 0.3s ease;
}

.btn-seleccion-ss {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 25%;
  transition: transform 0.3s ease;
}

.btn-seleccion-ss, .color-option {
  background: linear-gradient(180deg, #e6e6e6ae 0%, rgba(0, 0, 0, 0.25) 39%, rgba(38, 38, 38, 0.6) 41%, rgba(0, 0, 0, 0.25) 100%);
}

.btn-seleccion-ss:hover, .color-option:hover {
  transform: scale(1.1);
}

.btn-seleccion-ss:active, .color-option:active {
  transform: scale(0.9);
}

.custom-option-no {
  border: 2px solid rgb(192, 0, 0);
  background-color: rgba(59, 79, 255, 0);
}

.custom-option-azul {
  background-color: rgb(59, 79, 255);
}

.custom-option-naranja {
  background-color: rgb(255, 149, 56);
}

.custom-option-verde {
  background-color: rgb(87, 255, 36);
}

.custom-option-violeta {
  background-color: rgb(238, 130, 238);
}

.custom-option-rojo {
  background-color: rgb(255, 54, 54);
}

.custom-option-turquesa {
  background-color: rgb(0, 229, 225);
}

.custom-option-amarillo {
  background-color: rgb(255, 255, 106);
}

.custom-option-coral {
  background-color: rgb(255, 127, 80);
}

.custom-option-cian {
  background-color: rgb(135, 206, 235);
}

.custom-option-oro {
  background-color: rgb(255,215,0);
}

/*** BOTONES HABILITAR MÚSCULOS DE PLAN ***/

.muscle-activators {
  overflow-x: auto;
}

.btn-musculo {
  padding: 15px 20px;
  font-size: 16px;
  border: 2px solid #414141;
  color: white;
  background-color: transparent;
  cursor: pointer;
  border-radius: 10px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.btn-musculo:hover {
  border-color: #09cef1;
  box-shadow: 0 0 20px rgba(9, 187, 241, 0.8);
  background-color: #254246;
}

.btn-musculo:active {
  box-shadow: 0 0 10px rgba(9, 218, 241, 0.4);
  transform: scale(0.95);
}

.musculo-activo {
  border-color: #09cef1;
  box-shadow: 0 0 20px rgba(9, 187, 241, 0.8);
  background-color: #254246;
}

.musculo-container {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.musculo-container-activo {
  max-height: 1000em;
  transition: max-height 1s ease-in-out;
}

.select-musculo {
  font-size: 25px;
  border: 1px solid #595959;
}

.select-musculo:active, .select-musculo:valid:focus {
  box-shadow: 0 0 8px #09cef1;  
  border: 1px solid #595959;
}

/****** LOADING SCREEN *******/

#loading {
  flex-direction: column;
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  top: 0;
  left: 0;
  padding: auto;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.loadingText {
  margin-top: 4em;
  color: rgb(28, 28, 28);
  text-shadow: 1px 1px 4px rgb(125, 240, 255), 0 0 1em rgb(0, 240, 255);
  animation: light 0.85s infinite alternate linear;
}

@keyframes light {
  to {
    text-shadow:1px 1px 4px rgb(125, 240, 255), 0 0 0 rgb(0, 240, 255);
  }
} 

.spinner {
  filter: drop-shadow(0px 0px 5px rgb(125, 240, 255));
  display: flex;
  position: relative;
  border-radius: 50px;
  animation: spinning 1.7s linear infinite;
  justify-content: center;
  z-index: 2001;
  width: 100px;
  height: 100px;
}

.spinner::after {
  content: "";
  position: absolute;
  mask: radial-gradient(circle closest-side at 50% ,#0000 85%, #000000 1px);
  background-image: conic-gradient(rgb(16, 16, 16) 50%,rgb(0, 225, 255));
  border-radius: 50%;
  filter: blur(4px);
  z-index: inherit;
  margin: auto;
  width: 100%;
  height: 100%;
}
  
.spinner::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  margin: auto;
  background: rgb(0, 225, 255);
  border-radius: 50%;
  z-index: 2011;
  top: -3px;
  box-shadow: 0 0 10px 2px rgb(125, 240, 255);
}

@keyframes spinning {
  to {
    transform: rotate(360deg);
  }
}
