
/*-----------------------------------*\
  #CALENDARIO
\*-----------------------------------*/
.calendar-custom{
  width: 100%;
  height: 400px;
  border-radius: 20px;
  background-color: white;
  display: flex;
  color: black;
  flex-direction: row-reverse;
}
.rig-cal{
  width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height: auto;
}
.left-cal{
  width: 40%;
    height: 400px;
    border-radius: 20px 0px 0px 20px;
    background-color: #8DC997;
    color: white;
}


.calendar-base {
  width: 100%;
  height: 430px;
  border-radius: 20px;
  background-color: white;
  position: relative;
  z-index: -1;
  color: black;
}


.year {
  color: #E8E8E8;
  font-size: 30px;
  float: right;
  position: absolute;
  right: 75px;
  top: 20px;
  font-weight: bold;
  display: flex;
  gap: 10px;
}

.ysel{
  color: #cdcbcb;
}

.month:hover,.month:focus,.month::selection {
  color: #27AE60;
  font-weight: 600;
}


.months {
    font-size: 1.4rem;
  color: #AAAAAA;
    display: flex;
    gap: 15px;
    margin-left: 20px;
    word-spacing: 10px;
}
.month-select{
  color: #27AE60;
  font-weight: 600;
}
.month-line {
  border-color: #E8E8E8;
  width: 70%;
}
.semanas{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.gris{
  color: #AAAAAA;
}
.dia{
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  margin-right: 15px;
}

.dia-select{
  background-color: #ffcb2e;
  color: #fff;
}
.disableday{
  background-color: #d8d8d86b;
  color: #ffffff;
}
.days {
  color: #AAAAAA;
    margin-left: 20px;
    margin-top: 20px;
    font-size: 18px;
    word-spacing: 35px;
    font-weight: 600;
}

.num-dates {
  float: left;
    margin-left: 30px;
}


.calendar-left {
  width: 300px;
  height: 500px;
  border-radius: 20px 0px 0px 20px;
  background-color: #8DC997;
  position: relative;
  z-index: -1;
  bottom: 500px;
  color: white;
}

.hamburger {
  position: relative;
  top: 25px;
  left: 25px;
}



.burger-line {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 15%;
  margin-bottom: 3px;
}
.selectdia{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: -50px;
  height: 250px;
  line-height: 1.5;
  
}
.num-date {
  font-size: 150px;
  font-weight: 700;
}

.day {
  font-size: 30px;
  position: relative;
  bottom: 60px;
}

.horario{
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  overflow: auto;
  width: auto;
  
}
.hoe{
  display: flex;
  /* grid-template-columns: repeat(3, 1fr); */
}
.l1l{
  text-align: center;
}
.horad{
  width: 90px;
  background-color: #46ab71;
  display: flex;
  justify-content: center;
  border-radius: 15px;
  padding: 7px;
  margin: 7px;
  color: #fff;

}
.horad:focus,.horad:hover{
  background-color: #3b9160;
}
.hsel{
  background-color: #3b9160;
}
.current-events {
  font-size: 15px;
  position: relative;
  margin-left: 25px;
  bottom: 30px;
}

.posts {
  text-decoration: underline dotted;
}
.posts:hover{
  color:#27e879 !important;
}

.create-event {
  font-size: 18px;
  position: relative;
  margin-top: 30px;
  margin-left: 25px;
}

.event-line {
  width: 90%;
}

.add-event {
  width: 20px;
  height: 20px;
  padding: 0px;
  border-radius: 50%;
  border: solid white 2px;
  position: relative;
  bottom: 42px;
  left: 260px;
}

.add {
  font-size: 25px;
  position: relative;
  left: 4px;
  bottom: 10px;
}

.add:hover, .create-event:hover, .add-event:hover{
  color:#27e879 !important;
  border-color: #27e879 !important;
}

@media (max-width: 999px) {
  .calendar-custom {
    flex-direction: column-reverse;
    height: 88vh;
  }
   .rig-cal {
    width: 100%;
    height: 50vh;
  }
   .year {
    font-size: 23px;
    right: 15px;
    top: 5px;
  }
   .months {
    gap: 5px;
    font-size: 1.8rem;
    margin-left: 0px;
  }
   .month-line {
    width: 90%;
  }
   .days {
    margin-left: -4px;
    word-spacing: 26px;
  }
   .num-dates {
    margin-left: 0;
  }
    .dia {
    width: 40px;
    height: 40px;
    margin-left: 10px;
    margin-right: 10px;
  }
   .left-cal {
    width: 100%;
    height: 40vh;
    border-radius: 20px 20px 0px 0px;
  }
   .selectdia {
    margin-bottom: 25px;
    height: 49px;
    line-height: 1.3;
    margin-top: 30px;

  }
    .num-date {
    font-size: 85px;
  }
    .day {
    font-size: 30px;
    bottom: 30px;
  }
}
@media (max-width: 600px) {
  .calendar-custom {
    flex-direction: column-reverse;
    height: 88vh;
  }
  .rig-cal {
    width: 100%;
    height: 50vh;
  }
    .year {
    font-size: 23px;
    right: 15px;
    top: 5px;
  }
    .months {
    gap: 5px;
    font-size: 1.2rem;
    margin-left: 0px;
    width: 90%;
    overflow: auto;
  }
  .month-line {
    width: 90%;
  }
    .days {
    margin-left: 2px;
    word-spacing: 5px;
  }
    .num-dates {
    margin-left: 0;
  }
  .dia {
    width: 30px;
    height: 30px;
    margin-left: 5px;
    margin-right: 5px;
  }
    .left-cal {
    width: 100%;
    height: 40vh;
    border-radius: 20px 20px 0px 0px;
  }
  .d5 {
    font-size: 35px;
  }
    .selectdia {
    margin-bottom: 25px;
    height: 49px;
    line-height: 1.3;
  }
   .num-date {
    font-size: 85px;
  }
    .day {
    font-size: 30px;
    bottom: 30px;
  }
}
/*-----------------------------------*\
  #FIN CALENDARIO
\*-----------------------------------*/

