.wrapperDashboard {
  display: block;
  position: relative;
  width: 100vw;
  min-height: calc(100vh - var(--menuHeight));
  padding: 0 20px;
  overflow: hidden;
  font-family: "Alef", sans-serif;
}

.wrapperDashboard .title {
  font-family: "Alef", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 20px 0;
  font-size: 20px;
}

.wrapperDashboard .subtitle {
  font-family: "Alef", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 2px 0;
  font-size: 12px;
}

.calendar.calendar-dash {
  padding: 20px 10px 0px 10px;
  border-radius: 4px;
  width: 70%;
  border: 2px solid black;
  margin: 0;
  height: 100%;

  .date {
    position: unset;
  }
}

.timeline-dash {
  display: grid;
  grid-template-rows: repeat(var(--numHours), var(--timeHeightDash));
}

.space-dash,
.date-dash {
  height: 30px;
  margin-bottom: 10;
}

.events-dash {
  display: grid;
  grid-template-rows: repeat(var(--numHours), var(--timeHeightDash));
  border-radius: 5px;
  background: var(--calBgColor);
  grid-template-columns: 100%;
}

.cardNote {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 0 5px;
  width: 30%;
}

.wrapperInfo {
  display: flex;
  width: 70%;
}

.secondWrapper {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cardNoteTextWrapper {
  height: 80%;
  overflow-y: scroll;
}

.cardNote--week {
  height: 50%;
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 2px solid black;
  background-color: var(--eventColor4);
}

.cardNote--day {
  height: 50%;
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 2px solid black;
  margin-bottom: 0px;
  background-color: var(--eventColor1);
}

.cardNote--title {
  margin-bottom: 5px;
}

.cardNote--text {
  font-size: 14px;
  white-space: pre-wrap;
  box-sizing: border-box;
  display: block;
  word-wrap: break-word;
  &::-webkit-scrollbar {
    width: 1px;
  }
}

.cardNote--weekShop {
  width: 100%;
  height: 50%;
  display: block;
  position: relative;
  padding: 5px;
  border: 2px solid black;
  border-radius: 4px;
  background: var(--eventColor8);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  font-family: "Alef", sans-serif;
}

.wrapperCard {
  position: relative;
  display: flex;
  flex-direction: row;
  height: calc(100vh - 200px);
}

.meteoWidget {
  display: block;
  position: relative;
  height: 50%;
  padding: 5px;
  border: 2px solid black;
  border-radius: 4px;
  background: transparent;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  font-family: "Alef", sans-serif;
}

/* MODIFICA WIDGET */
.weatherapi-weather-cover {
  background-image: none !important;
  background: transparent;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  color: var(--color-black) !important;
}

.weatherapi-weather-more-weather-link {
  display: none;
}

.shm_4 .weatherapi-weather-todays-stats-location {
  padding: 0 0 0 !important;
}

.eventDash {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  border: 1px solid var(--eventBorderColor);
  border-radius: 5px;
  padding: 0.5rem;
  margin: 0 0.5rem;
}

.headerWrapper {
  margin: 10px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.headerWrapper button {
  background: transparent;
  cursor: pointer;
  border: none;
}

@media only screen and (max-width: 1024px) {
  .wrapperDashboard {
    padding: 0 10px;
  }
  
  .calendar.calendar-dash {
    padding: 10px;
    height: 450px;
  }
  
  .cardNote {
    width: 50%;
    padding: 0 0 0 5px;
  }
  
  .cardNote--week {
    height: 200px;
    width: 100%;
    padding: 5px;
    border-radius: 4px;
    border: 2px solid black;
  }
  
  .cardNote--day {
    height: 240px;
    width: 100%;
    padding: 5px;
    border-radius: 4px;
    border: 2px solid black;
    margin-bottom: 0px;
  }
  
  .wrapperCard {
    flex-direction: column;
    width: 100%;
    height: fit-content;
  }
  
  .secondWrapper,
  .wrapperInfo {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .meteoWidget {
    margin: 0px;
    height: unset;
  }
  
  .shm_4 .weatherapi-weather-todays-stats-location {
    padding: unset;
  }
  
  .timeline-dash {
    display: none;
  }
  
  .timeline__mobile-dash {
    grid-column: 1;
    display: grid;
    grid-template-rows: repeat(var(--numHours), var(--timeHeight));
  }
  
  .eventDash {
    grid-column: 2;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .events-dash {
    grid-template-rows: repeat(var(--numHours), var(--timeHeight));
    grid-template-columns: 10% 90%;
  }

  .cardNote--weekShop {
    min-height: 200px;
  }

  .meteoWidget {
    min-height: 200px;
  }
}
