
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: rgb(255, 255, 255);
    font-family: "Quicksand", sans-serif;
  }
  
  html {
    font-size: 62%;
  }
  
  @keyframes slideIndown{
	from{
		transform: translate(-50%, -100%);
	}
	
	to{
		transform: translate(-50%, 55px);
	}
}

@keyframes slidedownhide{
	from{
		transform: translate(-50%, 55px);
	}
	
	to{
		transform: translate(-50%, -100%);
		
	}
}
  
  .calendar {
    position: fixed;
    top: 0%;
    left: 50%;
    animation: slideIndown 1000ms forwards;
    /*transform: translate(-50%, 55px);*/
    display: none;
    /* position: relative; */
    text-align: center;
    border-radius: 1.2em;
    margin: auto;
    width: 38rem;
    height: 47.5rem;
    background-color: #fff;
    box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.4);
    z-index: 999;
  }
  
  
  .calendar[closing] {
    position: fixed;
    top: 0%;
    left: 50%;
    animation: slidedownhide 500ms forwards;
    /*transform: translate(-50%, 55px);*/
    display: none;
    /* position: relative; */
    text-align: center;
    border-radius: 1.2em;
    margin: auto;
    width: 38rem;
    height: 47.5rem;
    background-color: #fff;
    box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.4);
    z-index: 999;
  }
  
  .month {
    width: 100%;
    height: 12rem;
    border-radius: 1.2em 1.2em 0em 0em;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    text-align: center;
    text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
  }
  
  .month i {
    font-size: 4rem;
    cursor: pointer;
  }
  
  .month h1 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
  }
  
  .month p {
    font-size: 1.6rem;
  }
  
  .weekdays {
    width: 100%;
    height: 5rem;
    padding: 0 0.4rem;
    display: flex;
    align-items: center;
  }
  
  .weekdays div {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
    width: calc(40rem / 7);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
  }
  .date p {
    font-size: 2rem;
    margin: 0.3rem;
    height: 5rem;
    display: flex;
    color: #000;
    justify-content: center;
    align-items: center;
  }
  .days {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0.2rem;
  }
  
  .days div {
    position: relative;
    font-size: 1.8rem;
    margin: 0rem;
    width: calc(37.5rem / 7);
    height: 5rem;
    display: inline-block;
    color: #000;
    justify-content: center;
    align-items: center;
    /* text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5); */
    /* transition: background-color 0.2s; */
  }
  /* .days div p{
    font-size: 1rem;
    margin: 0.3rem;
    display: block;
    justify-content: center;
    align-items: center;
    color: #fff;
    /transition: background-color 0.2s; 
  } */
  
  .days div:hover {
    background-color: #000000;
    border: 0.2rem solid #777;
    cursor: pointer;
  }
  
  .prev-date,.offday,
  .next-date,.offday_today {
    opacity: 0.3;
  }
  .offday p{
    position: relative;
    color: #000;
    font-size: 1rem;
    bottom: 0px;
    right: 0px;
  }

.prev-date p{
    position: relative;
    color: #000;
    font-size: 1rem;
    bottom: 0px;
    right: 0px;
  }

  .today p{
    position: relative;
    color: #000;
    font-size: 1rem;
    bottom: 0px;
    right: 0px;
  }

  .date_element p{
    position: relative;
    color: #000;
    font-size: 1rem;
    bottom: 0px;
    right: 0px;
  }

  .offday_today p{
    position: relative;
    color: #000;
    font-size: 1rem;
    bottom: 0px;
    right: 0px;
  }
  .today,.offday_today {
    border-style: solid;
    border-color: 000;
    border-width: thin;
  }
  