/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

.wrapper {
  width: 400px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.wrapper section {
  display: flex;
  align-items: center;
  padding: 25px 30px 10px;
  justify-content: space-around;
}
section .icons {
  display: flex;
}
section .icons span {
  height: 38px;
  width: 38px;
  margin: 0 1px;
  cursor: pointer;
  color: #878787;
  text-align: center;
  line-height: 38px;
  font-size: 1.9rem;
  user-select: none;
  border-radius: 50%;
}
.icons span:last-child {
  margin-right: -10px;
}
section .icons span:hover {
  background: #f2f2f2;
}
section .current-date {
  font-size: 1.45rem;
  font-weight: 500;
}
.calendar {
  padding: 20px;
}
.calendar ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  text-align: center;
}
.calendar .days {
  margin-bottom: 20px;
}
.calendar li {
  color: #333;
  width: calc(100% / 7);
  font-size: 1.07rem;
}
.calendar .weeks li {
  font-weight: 500;
  cursor: default;
}
.calendar .days li {
  z-index: 1;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
}
.days li.inactive {
  color: #aaa;
}
.days li.active {
  color: #fff;
}

.days li::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  height: 40px;
  width: 40px;
  z-index: -1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.days li.active::before {
  background: #283e59;
}
.days li:not(.active):hover::before {
  background: #f2f2f2;
}

/* Estilos generales */
.about {
  justify-content: space-around !important;
}
.row {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border: 1px solid #ffffff;
  margin-bottom: 10px;
}
.about-content1 {
  width: 75%;
}
.about-content1 h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 2em;
}

/* Estilo de la primera columna */
.column1 {
  flex: 0 0 20%;
  text-align: center;
  box-sizing: border-box;
}
.day1 {
  background-color: #ce1105;
}

.day2 {
  background-color: #eeb001;
}
.day3 {
  background-color: #1839d4;
}
.day4 {
  background-color: #7130a0;
}

.day {
  color: #fff;
  font-weight: 400;
  font-size: 1.1em;
}

/* Estilo de la segunda columna */
.column2 {
  flex: 0 0 20%;
  padding-left: 30px;
  padding-right: 20px;
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap;
}

/* Estilo de la tercera columna */
.column3 {
  flex: 0 0 20%;
  box-sizing: border-box;
  text-align: center;
}

.span {
  font-size: 1.1rem;
}
/* Estilo responsive para dispositivos pequeños */
@media (max-width: 767px) {
  .row {
    flex-direction: column; /* Cambia a una columna en dispositivos pequeños */
  }

  .column1,
  .column2,
  .column3 {
    flex: 0 0 100%; /* Ocupa el 100% del ancho en dispositivos pequeños */
  }
}
