body{
  position: relative;
}
.lohToday{
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.472);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.lohTd{
  width: 80%;
  height: 85%;
  border-radius: 15px;
  background-color: rgba(248, 248, 248, 0.93);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border: 3px solid black;
}
.lohTodayGroup{
  width: 100%;
  height: 95%;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}
.showharAmeJoke{
  width: 100%;  
  height: 8%;
  border-radius: 0 0 10px 10px;
  background-color: rgba(156, 156, 156, 0.93);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
    border-top: 3px solid black;
}
.lohToday .ltgroup{
  width: 49%;
  /* padding: 3%; */
  margin: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.ltgroup .avatar{
  /* max-width: 60%;
  max-height: 70%; */
  max-width: 220px;
  max-height: 300px;
}
.avatarL{
  max-width: 20px;
  max-height: 30px;
}
.group{
  width:20%;
  margin:0px 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.holyday {
  border: 1px solid var(--secondary);
  background-color: var(--holyday);
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
}
.birthday {
  border: 1px solid var(--secondary);
  background-color: var(--birthday);
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
}
.alert{
  width: 40%;
  height: 10%;
  position: fixed;
  z-index: 2;
  top: 90px;
  left:25%;
  color: #fff;
  align-content: center;
  text-align: center;
  display: flex; flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--gray);
  background-color: var(--primary);
  border-radius: 20px;
  transition: all 1s;
  /* display: none; */
  opacity: 0%;
}
.today {
  border: 1px solid var(--secondary);
  background-color: var(--primary);
  color: #fff;
  border-radius: 10px;
}
.todaybtn {
  width: 100%;
  height: max-content !important;
  text-align: center;
  padding: 5px;
  border: 1px solid var(--secondary);
  background-color: var(--primary);
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
.displayNone {
  opacity: 50%;
}
.calendar {
  height: 80%;
  width: 95%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 15px;
}
.calendar_header {
  height: 10%;
  width: 100%;
  padding: 0px 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  background-color: #f3791b;
}
.arrow {
  width: 40px;
  cursor: pointer;
}
.calendar_section{
  width: 100%;
  display: flex;
  max-height: 80vh;
  overflow-y: scroll;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.calendar_body1{
  width: 60%;
}
.calendar_body2{
  width: 40%;
}
.calendar_body {
  margin: 10px;
  height: 95%;
  padding: 10px;
  display: flex;
  background-color: rgba(0, 0, 0, 0.15);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #000;
}
.calendar_table-tr:last-child ,.calendar_tableC-tr:last-child  {
  border: none;
  margin-bottom: 0;
}
.calendar_table {
  /* height: 100%; */
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.calendar_table-tr {
  height: 30px;
  margin: 10px;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 5px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.calendar_table-td {
  height: 100%;
  width: 8%;
  text-align: center;
}
.calendar_table-name {
  width: 45%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}
.calendar_tableC-tr {
  height: 30px;
  margin: 10px;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 5px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.calendar_tableC-td {
  height: 100%;
  width: 80%;
    display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
.calendar_tableC-tdCell{

  margin: 10px;
  width: 10%;
}
.calendar_tableC-name {
  width: 36%;
}


@media (max-width: 850px) {
  body{
    height: max-content !important;
  }
.calendar_section {
flex-direction: column;
}
.calendar_body1,.calendar_body2{
  width: 90%;
}
}

@media (max-width: 550px) {

.calendar_table-tr {
  margin: 5px;
  height: 30%;
}

}