/*variables*/
:root {
  --white: #fff;
  --main: #eaedf0;
  /*
  --accent: #777777;
  */
  --accent: #8c0000;
  --accent-2: #ebedf0;
}

/*styles*/
.raleway-dots-regular {
  font-family: "Raleway Dots", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.roboto-thin {
  font-family: "Roboto", serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", serif;
  font-weight: 300;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", serif;
  font-weight: 900;
  font-style: normal;
}

.roboto-thin-italic {
  font-family: "Roboto", serif;
  font-weight: 100;
  font-style: italic;
}

.roboto-light-italic {
  font-family: "Roboto", serif;
  font-weight: 300;
  font-style: italic;
}

.roboto-regular-italic {
  font-family: "Roboto", serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-medium-italic {
  font-family: "Roboto", serif;
  font-weight: 500;
  font-style: italic;
}

.roboto-bold-italic {
  font-family: "Roboto", serif;
  font-weight: 700;
  font-style: italic;
}

.roboto-black-italic {
  font-family: "Roboto", serif;
  font-weight: 900;
  font-style: italic;
}
body {
  background-color: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
   font-family: roboto-bold;
}


.container {
  display: inline-block;
  background-color: var(--white);
  border-radius: 35px;
  padding: 0 1em;
  margin-top: 2em;
}

header {
  margin: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.header-display {
  display: flex;
  align-items: center;
}

.header-display p {
  color: var(--accent);
  margin: 5px;
  font-size: 1.2rem;
  word-spacing: 0.5rem;
}

/* arrows */
pre {
  padding: 10px;
  margin: 0;
  cursor: pointer;
  font-size: 1.2rem;
 color: var(--accent);
}

.week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin: auto;
  padding: 0 20px;
  justify-content: space-between;
}
.week div{
  display: flex;
  justify-content: center;
  background-color: #3b23f2;
  font-family: Arial, Helvetica, sans-serif;

}
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: 100px 100px 100px 100px 100px 100px;
  margin: auto;
  padding: 0 20px;
  justify-content: space-between;
}
.days div {
  

  
  /*
  justify-content: center;
  align-items: center;
  */
  
  /* position: relative; */


 
  /* 
  grid-template-columns: repeat(1, 1fr); 1 column  */
  /*
grid-template-columns: repeat(2, 1fr);  2 columns */
/*
padding-top: 100%;  1:1 Aspect Ratio */
/*
  position: relative;  If you want text inside of it */
  /*
  width:100px;
  height:100px;
  */

  border-bottom: 1px solid #da9711;
  border-right: 1px solid #da9711;
  text-align: right;
  /* padding: 14px 20px; */
  padding-right:4px;  /* lame */
  letter-spacing: 1px;
  font-size: 1.5rem;
  box-sizing: border-box;
  color: #5f5f6f;  /* day th MON, Tue*/
  position: relative;
  /* this was part of the above 
    pointer-events: none;
    z-index: 1;
  */
  /*
  height: 3rem;
  width: 3em;
  border-radius: 100%;
  */
}
.days div:hover {
 
  color: rgb(25, 25, 201);
  
}

.days:nth-of-type(7n + 7) {
    border-right: 0;
  }
  .days:nth-of-type(n + 1):nth-of-type(-n + 7) {
    grid-row: 2;
  }
  .days:nth-of-type(n + 8):nth-of-type(-n + 14) {
    grid-row: 3;
  }
  .days:nth-of-type(n + 15):nth-of-type(-n + 21) {
    grid-row: 4;
  }
  .days:nth-of-type(n + 22):nth-of-type(-n + 28) {
    grid-row: 5;
  }
  .days:nth-of-type(n + 29):nth-of-type(-n + 35) {
    grid-row: 6;
  }
  .days:nth-of-type(7n + 1) {
    grid-column: 1/1;
  }
  .days:nth-of-type(7n + 2) {
    grid-column: 2/2;
  }
  .days:nth-of-type(7n + 3) {
    grid-column: 3/3;
  }
  .days:nth-of-type(7n + 4) {
    grid-column: 4/4;
  }
  .days:nth-of-type(7n + 5) {
    grid-column: 5/5;
  }
  .days:nth-of-type(7n + 6) {
    grid-column: 6/6;
  }
  .days:nth-of-type(7n + 7) {
    grid-column: 7/7;
  }





.week div {
  opacity: 0.5;
}
.current-date {
  background-color: #b2bfe7;
  color: #FFF !important;
}
.display-selected {
  margin-bottom: 10px;
  padding: 20px 20px;
  text-align: center;
}

.mystyle {
  width: 100%;
  padding: 25px;
  background-color: coral;
  color: white;
  font-size: 25px;
  opacity: var(--accent);
}
.disabled-day{
    background-color: rgb(215, 215, 215);
    pointer-events: none;
}

.event-day{
  background-color: salmon;
  z-index: 1;
}
.display-tab{
  position:absolute;
  top:10px;
  left:0px;
  width:90%;
  height:10px;
  border:2px solid black;
  z-index: 2;
  background-color: rgb(70, 187, 117);
}
.outerbox{
  /*position:absolute; */
  top:1.7rem;;
  left:0px;
  width:90%;
  padding: 2px;
  /*
  font-family: "roboto-medium" !important; not working 
  */
  font-family: Arial, Helvetica, sans-serif;
  color:#8c0000 !important;
  font-size:.8rem !important;
  font-weight:500;
  letter-spacing: 4px;
  text-align: left !important;
border:1px solid rebeccapurple;
border-radius: 6px;
  background-color: rgb(175, 217, 232);
  z-index: 2;
}
.eventday:hover {
  cursor: pointer;
  background-color: #8ab9ff;
}
.day-text{
position:absolute;
top: 2px;
right: 2px;
}
.roboto-medium-fak{
  font-family: "arial";
  color:green;
}