/* estilos globales */
:root {
  --light: #99bbbc;
  --green: #4e767c;
  --dark: #355659;
  --white: #fff;
  --black: #000;
  --gris: #f2f2f2;
  --amarillo: #ffdd7d;
  --grisDato1:#e6e6e6 ;
  --grisDato2:#cccccc ;
  --grisDato3: #b3b3b3;
  --grisDato4: #999999 ;
  --grisDato5: #808080;
  --12: 1.2rem;
  --16: 1.6rem;
  --20: 2rem;
  --24: 2.4rem;
  --28: 2.8rem;
  --32: 3.2rem;
  --36: 3.6rem;
  --40: 4rem;
  --56: 5.6rem;
  --60: 6rem;
  --80: 8rem;
  --wix: font-family: 'Wix Madefor Display', sans-serif;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  font-size: 62.5%;
  font-family: 'Wix Madefor Display', sans-serif;
}

/* estilos para el overlay */
.overlay {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 80%;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.7);
}

/* Style for the content container */
.contenedor {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  max-width: 640px;
  width: 100%;
  height: 100%;
  padding-top: 40px;
}

/* Style for the title */
.title {
  color: var(--dark);
  font-size: var(--24);
  font-weight: 800;
  margin: 8px 0;
}

/* Style for the list */
.list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin: 8px 0;
}

/* Style for list items */
.list-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: transparent;
  border: none;
  color: var(--dark);
  font-size: var(--20);
  font-weight: 400;
  padding: 4px 0; 
  cursor: pointer;
}

.list-item span{
  background-color: var(--dark);
  border-radius: 4px;
  padding: 4px;
  margin-right: 12px;
}

.list-item img{
  width: 24px;
  height: 24px;
}

.list hr{
  border: none;
  border-top: solid 1px var(--dark);
  width: 100%;
  margin: 4px 0;
}

.contenedor__close{
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
}

.closeButton{
  color: var(--dark);
  background-color: var(--white);
  border: solid 2px var(--dark);
  border-radius: 40px;
  padding: 4px 20px;
  margin: 12px;
  font-size: var(--16);
  font-weight: 600;
}

.MotionPulse{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 80px 0px 20px 0px;
}

.MotionPulse__divisor{
  max-width: 400px;
  width: 240px;
  border: none;
  border-top: 2px solid var(--dark);
  margin-top: 12px;
}
.MotionPulse__title{
  color: var(--dark);
  font-size: var(--20);
  font-weight: 400;
  text-align: center;
  margin: 12px 0;
}

.MotionPulse__btn{
  text-decoration: none;
}

.MotionPulse__boxDark{
  background-color: #242A8E;
  border-radius: 20px;
  padding: 8px;
  box-shadow: 2px 2px 12px 0px #000;
}

.MotionPulse__boxVioleta{
  background-color: #1a1a1a ;
  border-radius: 16px;
  box-shadow: 2px 2px 8px 0px #000;
  transition: all .5s ease;
}

.MotionPulse__boxVioleta:hover{
  box-shadow: -2px -2px 8px 0px #000
}

.MotionPulse__img{
  width: 120px;
  height: auto;
}

.maintenance-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.maintenance-message .message-content {
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  color: var(--dark);
  font-size: var(--20);
  font-weight: 400;
  max-width: 400px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mindar-ui-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  flex-direction: column;
  gap: 10px;
}

.mindar-ui-loading .progress-text {
  color: var(--white);
  font-size: var(--20);
  font-weight: 400;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px;
  border-radius: 8px;
}