:root {
    --dark-text: #f8fbff;
    --light-body: #f3f8fe;
    --light-main: #fdfdfd;
    --light-second: #c3c2c8;
    --light-hover: #f0f0f0;
    --light-text: #151426;
    --light-btn: #0A606F;
    --blue: #0000ff;
    --white: #fff;
    --shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    --font-family: consolas;
	}
.calendar {
	height: 79.5% !important;
	width: 100% !important; 
	background-color: white;
	border-radius: 0;
	padding: 0 0 20px 0px;
	position: relative;
	z-index: 10;
	margin: auto;
	}

.calendar-header {
    background: #0A606F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #eeeeee;
    padding: 10px;
  }
  .calendar-body {
    pad: 10px;
  }
  .calendar-week-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    font-weight: 600;
    cursor: pointer;
    color:rgb(104, 104, 104);
	margin: 20px 0 0 0;
  }
  .calendar-week-days div:hover {
  color:black;
  transform: scale(1.2);
  transition: all .2s ease-in-out;
  }
  .calendar-week-days div {
    display: grid;
    place-items: center;
    color: #0A606F;
  }
  .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    color: #0A606F;
  }
  .calendar-days div {
	margin: 10px auto;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    animation: to-top 1s forwards;
  }
  .month-picker {
    padding: 5px 10px;
    border-radius: 0px;
    cursor: pointer;
	transition: all 0.2s ease-in-out;
	border-bottom: 1px solid #eeeeeea5;
  }
  .month-picker:hover {
    background-color: #eeeeee;
  }
  .month-picker:hover {
    color: #0A606F;
  }
  .year-picker {
    display: flex;
    align-items: center;
  }
  .year-change {
    height: 30px;
    width: 30px;
    border-radius: 0%;
    display: grid;
    place-items: center;
    margin: 0px 10px;
    cursor: pointer;
	transition: all 0.2s ease-in-out;
  }
  .year-change:hover {
    background-color: #eeeeee;
    transition:all .2s ease-in-out ;
    transform: scale(1.12);
	color: #0A606F;
  }


  .calendar-footer{
	height: fit-content !important;
  }

  #year:hover{
    cursor: pointer;
    transform: scale(1.2);
    transition: all 0.2 ease-in-out;
  }
  .calendar-days div span {
    position: absolute;
  }
   .calendar-days div:hover {
    transition: width 0.2s ease-in-out, height 0.2s ease-in-out;
    background-color: #0A606F;
    border-radius: 0%;
    color: var(--dark-text);
  }
  .calendar-days div.current-date {
    color: var(--dark-text);
    background-color: var(--light-btn);
    border-radius: 0%;
  }
  .month-list {
    position: relative;
    left: 0;
    background-color: #ebebeb;
    color: var(--light-text);
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 5px;
    border-radius: 0px;
    top: -30px;
  }
  .month-list > div {
    display: grid;
    place-content: center;
    margin: 5px 10px;
    transition: all 0.2s ease-in-out;
  }
  .month-list > div > div {
    border-radius: 0;
    padding: 10px;
    cursor: pointer;
  }
  .month-list > div > div:hover {
    background-color:#ffffff;
    color: #151426;
    transform: scale(0.9);
    transition: all 0.2s ease-in-out;
  }
  .month-list.show {
    visibility: visible;
    pointer-events: visible;
    transition: 0.6s ease-in-out;
    animation: show-month .71s forwards;
  }
  .month-list.hideonce{
    visibility: hidden;
  }
  .month-list.hide {
    animation: hide-month 1s forwards;
    visibility: none;
    pointer-events: none;
  }
.date-time-value{
	position: relative;
	bottom: -80px !important;
}

  .time-formate {
    font-size: 1.5rem;
  }
  .time-formate.hideTime {
    animation: hidetime 1.5s forwards;
  }
  .day-text-formate.hidetime {
    animation: hidetime 1.5s forwards;
  }
  .date-formate.hideTime {
    animation: hidetime 1.5s forwards;
  }
  .day-text-formate.showtime{
    animation: showtime 1s forwards;
  }
  .time-formate.showtime {
    animation: showtime 1s forwards;
  }
  .date-formate.showtime {
    animation: showtime 1s forwards;
  }
  @keyframes to-top {
    0% {
      transform: translateY(0);
      opacity: 0;
    }
    100% {
      transform: translateY(100%);
      opacity: 1;
    }
  }
  @keyframes show-month {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
    @keyframes hide-month {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  /* @keyframes to-left {
    0% {
      transform: translatex(3000%);
      opacity: 1;
    }
    100% {
      transform: translatex(0);
      opacity: 1;
    }
  }
  @keyframes to-right {
    10% {
      transform: translatex(0);
      opacity: 1;
    }
    100% {
      transform: translatex(-1050%);
      opacity: 1;
    }
  } */
  @keyframes showtime {
    0% {
      transform: translatex(250%);
      opacity: 1;
    }
    100% {
      transform: translatex(0%);
      opacity: 1;
    }
  }
  @keyframes hidetime {
    0% {
      transform: translatex(0%);
      opacity: 1;
    }
    100% {
      transform: translatex(-370%);
      opacity: 1;
    }
  }
  @media (max-width:375px) {
    .month-list>div{
  
      margin: 5px 0px;
    }
  }