/*######################################### MENU STYLE #####################################*/
 @import url("boostrap3.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*.image-fluid{
  width:20%;
  height:80%;
}*/
/*body {
  font-family: "Poppins", sans-serif;
}*/

#cont3 {
  max-width: 1050px;
  width: 90%;
  margin: auto;
}

.navbar {
  width: 100%;
  box-shadow: 0 1px 4px rgb(146 161 176 / 15%);
  background: linear-gradient(90deg, #5D54A4, #7C78B8);
  z-index: 1
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
}

.navbar .menu-items {
  display: flex;
}

.navbar .nav-container .li1 {
  list-style: none;
}

.navbar .nav-container .anchor1 {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.7rem;
}

.navbar .nav-container .anchor1:hover{
    font-weight: bolder;
}

.nav-container {
  display: block;
  position: relative;
  height: 60px;
}

.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 20px;
  left: 20px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.nav-container .hamburger-lines {
  display: block;
  height: 26px;
  width: 32px;
  position: absolute;
  top: 17px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-container .hamburger-lines .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: white;
}

.nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.navbar .menu-items {
  padding-top: 120px;
/*  box-shadow: inset 0 0 2000px rgb(99, 125, 150);*/
  background: rgb(99, 125, 150);
  height: 100vh;
  width: 100%;
  transform: translate(-150%);
  display: flex;
  flex-direction: column;
  margin-left: -40px;
  padding-left: 50px;
  transition: transform 0.5s ease-in-out;
  text-align: center;
}

.navbar .menu-items .li1 {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.logo {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 1.2rem;
  color: white;
}

.nav-container #input[type="checkbox"]:checked ~ .menu-items {
  transform: translateX(0);
}

.nav-container #input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

.nav-container #input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.nav-container #input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.nav-container #input[type="checkbox"]:checked ~ .logo{
  display: none;
}


/*################# HOME STYLE ######################################33*/
/*.button-92 {
  --c: #fff;
  background: linear-gradient(90deg, #0000 33%, #fff5, #0000 67%) var(--_p,100%)/300% no-repeat,
    floralwhite;
  color: #ffff;
  border: none;
  transform: perspective(500px) rotateY(calc(20deg*var(--_i,-1)));
  text-shadow: calc(var(--_i,-1)* 0.08em) -.01em 0   var(--c),
    calc(var(--_i,-1)*-0.08em)  .01em 2px #0004;
  outline-offset: .1em;
  transition: 0.3s;
}
.button-92:hover,
.button-92:focus-visible {
  --_p: 0%;
  --_i: 1;
}
.button-92:active {
  text-shadow: none;
  color: var(--c);
  box-shadow: inset 0 0 9e9q #ffff;
  transition: 0s;
}
.button-92 {
  font-weight: bold;
  font-size: 2rem;
  margin: 0;
  cursor: pointer;
  padding: .1em .3em;
}
.dot {
  justify-content:center;
  height: 230px;
  width: 230px;
  background-color:floralwhite;
  border-radius: 50%;
  display: inline-block;
}
.text {display:flex;justify-content:center;align-items:center;color:#4C489D;
    float: left;font-family: Cursive;font-size: 30px;font-weight: bold;letter-spacing: 2px;
    margin-top: 80px;padding-bottom: 10px;text-align: center;width: 100%;}




*//*######################################## SELECT STYLE #########################################333    */
.select_submit{
  background: #fff;
  font-size: 25px;
  margin-top: 90px;
  padding: 14px 20px;
  border-radius: 30px;
  border: 1px solid #D4D3E8;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
/*  align-items: center;*/
  width: 100%;
  color: #4C489D;
  box-shadow: 0px 2px 2px #5C5696;
  cursor: pointer;
  transition: .2s;

}

.select_submit:active,
.select_submit:focus,
.select_submit:hover {
  border-color: #6A679E;
  outline: none;
}

.button_icon {
  font-size: 24px;
  margin-left: auto;
  color: #7875B5;
}



/*######################################### LOGIN AND SIGNUP#############################*/
@import url('form.css');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;	
	font-family: Raleway, sans-serif;
}

#cont {
	display: flex;
	align-items: center;
	justify-content: center;
/*	min-height: 100vh;*/
	margin-top:5%;
}

.screen {		
	background: linear-gradient(90deg, #5D54A4, #7C78B8);		
	position: relative;	
	height: 600px;
	width: 360px;	
	box-shadow: 0px 0px 24px #5C5696;
}

.screen__content {
	z-index: 1;
	position: relative;	
	height: 100%;
}

.screen__background {		
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);	
}

.screen__background__shape {
	transform: rotate(45deg);
	position: absolute;
}

.screen__background__shape1 {
	height: 520px;
	width: 520px;
	background: #FFF;	
	top: -50px;
	right: 120px;	
	border-radius: 0 72px 0 0;
}
/*
.screen__background__shape2 {
	height: 220px;
	width: 220px;
	background: #6C63AC;	
	top: -172px;
	right: 0;	
	border-radius: 32px;
}*/
/*
.screen__background__shape3 {
	height: 540px;
	width: 190px;
	background: linear-gradient(270deg, #5D54A4, #6A679E);
	top: -24px;
	right: 0;	
	border-radius: 32px;
}

.screen__background__shape4 {
	height: 400px;
	width: 200px;
	background: #7E7BB9;	
	top: 420px;
	right: 50px;	
	border-radius: 60px;
}*/

.login {
	width: 320px;
	padding: 30px;
	padding-top: 100px;
}

.login__field {
	padding: 20px 0px;	
	position: relative;	
}

.login__icon {
	position: absolute;
	top: 30px;
	color: #7875B5;
}

.login__input {
	border: none;
	border-bottom: 2px solid #D1D1D4;
	background: none;
	padding: 10px;
	padding-left: 24px;
	font-weight: 700;
	width: 75%;
	transition: .2s;
}
.login__combo{
  padding: 10px 0px;  
  position: absolute;
  
}
.login__input:active,
.login__input:focus,
.login__input:hover {
	outline: none;
	border-bottom-color: #6A679E;
}

.login__submit {
	background: #fff;
	font-size: 14px;
	margin-top: 30px;
	padding: 16px 20px;
	border-radius: 26px;
	border: 1px solid #D4D3E8;
	text-transform: uppercase;
	font-weight: 700;
	display: flex;
	align-items: center;
	width: 100%;
	color: #4C489D;
	box-shadow: 0px 2px 2px #5C5696;
	cursor: pointer;
	transition: .2s;
}

.login__submit:active,
.login__submit:focus,
.login__submit:hover {
	border-color: #6A679E;
	outline: none;
}

.button__icon {
	font-size: 24px;
	margin-left: auto;
/*	color: #7875B5;*/
}

.social-login {	
	position: absolute;
	height: 140px;
	width: 160px;
	text-align: center;
	bottom: 0px;
	right: 0px;
	color: #fff;
}

.social-icons {
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-login__icon {
	padding: 20px 10px;
	color: #fff;
	text-decoration: none;	
	text-shadow: 0px 0px 8px #7875B5;
}

.social-login__icon:hover {
	transform: scale(1.5);	
}


/*############################## HOSTEL STYLE ##########################*/

.screen2 {   
  background: linear-gradient(90deg, #5D54A4, #7C78B8);   
  position: relative; 
  height: 400px;
  width: 360px; 
  box-shadow: 0px 0px 24px #5C5696;
  padding: 5%;
}

.screen__content {
  z-index: 1;
  position: relative; 
  height: auto;
/*  chhhhhhhanged*/
}
.head{
  color: white;
  font-weight: 900;
  font-size: 25px;
  text-align: center;
}
.login2 {
  width: 320px;
  padding: 30px;
  padding-top: 100px;
}
.loginfield {
  padding: 20px 0px;  
  position: relative; 
}
.loginput {
/*  border: none;*/
border-top:0;border-right:0;border-left:0;
  border-bottom: 2px solid #D1D1D4;
  border-radius: 5px;
  background: none;
  padding: 10px;
  padding-left: 24px;
  font-weight: 700;
  width: 95%;
  transition: .2s;
  color: white;
}

.loginput:active,
.loginput:focus,
.loginput:hover {
  outline: none;
  border-bottom-color: #6A679E;
}


/*############################# USER_SELECT STYLE ##################################*/

.menu_btn {
  position: relative;
  padding: 15px 45px;
  background-image: linear-gradient(to right, #5d5a99, #51548d, #454d82, #3b4776, #31406a, #2c395d, #283251, #232b45, #1f2336, #1a1b27, #14131a, #090909);
  font-size: 17px;
  font-weight: 900;
  color: whitesmoke;
  cursor: pointer;
  border: 1px solid #486f9a;
  border-radius: 8px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
  width:100%;
}

 .menu_btn:hover {
  border: 1px solid ghostwhite;
  background: ghostwhite;
  color:black;

  animation: wind 2s ease-in-out infinite;
}

@keyframes wind {
  0% {
    background-position: 0% 50%;
  }

  0% {
    background-position: 50% 100%;
  }

  0% {
    background-position: 0% 50%;
  }
}

.icon-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  transform-origin: 0 0;
  transform: rotate(10deg);
  transition: all 0.5s ease-in-out;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
}

.menu_btn:hover .icon-1 {
  animation: slay-1 3s cubic-bezier(0.52, 0, 0.58, 1) infinite;
  transform: rotate(10deg);
}

@keyframes slay-1 {
  0% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(10deg);
  }
}

.icon-2 {
  position: absolute;
  top: 0;
  left: 25px;
  width: 12px;
  transform-origin: 50% 0;
  transform: rotate(10deg);
  transition: all 1s ease-in-out;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

.menu_btn:hover .icon-2 {
  animation: slay-2 3s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
  transform: rotate(0);
}

@keyframes slay-2 {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(15deg);
  }

  100% {
    transform: rotate(0);
  }
}

.icon-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  transform-origin: 50% 0;
  transform: rotate(-5deg);
  transition: all 1s ease-in-out;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

.menu_btn:hover .icon-3 {
  animation: slay-3 2s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
  transform: rotate(0);
}

@keyframes slay-3 {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0);
  }
}

/*###################### PREVIOUS BUTTON ####################*/
.previous {
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
  font-size:35px;
}

.previous:hover {
/*  background-color: #ddd;*/
  color: black;
  text-decoration: none;
}

.previous {
/*  background-color: #f1f1f1;*/
  color: black;
  text-decoration: none;
}


/*#################### INMATE_ CALENDER ###################*/


#ul {
  display: grid;
/*  grid-template-columns: 1fr;*/
  flex-wrap: wrap;
  list-style: none;

  #li {
    display: flex;
    width: 15rem;
    height: 6rem;
    margin: 0.15rem;
/*    flex-flow: column;*/
/*    border-radius: 0.2rem;*/
    padding: 1rem;
    font-weight: 300;
    font-size: 0.8rem;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);

    time {
      font-size: 2rem;
      margin: 0 0 1rem 0;
      font-weight: 500;
    }
  }
  .today {
      time {
        font-weight: 800;
      }
      background: #ffffff70;
    }
  }

  .item{
   font-size: clamp(1.5rem, 3vmin, 4rem);
    font-family: sans-serif;
  /*  color: hsl(0 0% 98%);*/
  color: black;
    position:relative;
    
  }
  .checkbox-wrapper-31:hover .check {
    stroke-dashoffset: 0;
  }

  .checkbox-wrapper-31 {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
  }
  .checkbox-wrapper-31 .background {
    fill: #efeae9;
    transition: ease all 0.6s;
    -webkit-transition: ease all 0.6s;
  }
  .checkbox-wrapper-31 .stroke {
    fill: none;
    stroke: #fff;
    stroke-miterlimit: 10;
    stroke-width: 2px;
    stroke-dashoffset: 100;
    stroke-dasharray: 100;
    transition: ease all 0.6s;
    -webkit-transition: ease all 0.6s;
  }
  .checkbox-wrapper-31 .check {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2px;
    stroke-dashoffset: 22;
    stroke-dasharray: 22;
    transition: ease all 0.6s;
    -webkit-transition: ease all 0.6s;
  }
  .checkbox-wrapper-31 .input[type=checkbox] {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    margin: 0;
    opacity: 0;
    -appearance: none;
    -webkit-appearance: none;
  }
  .checkbox-wrapper-31 .input[type=checkbox]:hover {
    cursor: pointer;
  }
  .checkbox-wrapper-31 .input[type=checkbox]:checked + svg .background {
    fill:  #6c73d1;
  }
  .checkbox-wrapper-31 .input[type=checkbox]:checked + svg .stroke {
    stroke-dashoffset: 0;
  }
  .checkbox-wrapper-31 .input[type=checkbox]:checked + svg .check {
    stroke-dashoffset: 0;
  }

  /*  *************************calender********************************/

.wrapper{
  width: 100%;
  background:#6c73d1;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.wrapper .header{
  display: flex;
  align-items: center;
  padding: 25px 30px 10px;
  justify-content: space-between;
}
.header .icons{
  display: flex;
}
.header .icons .material-symbols-rounded{
  height: 38px;
  width: 38px;
  margin: 0 1px;
  cursor: pointer;
  color: #000000;
  text-align: center;
  line-height: 38px;
  font-size: 1.9rem;
  user-select: none;
  border-radius: 50%;
}
.icons .material-symbols-rounded:last-child{
  margin-right: -10px;
}
.header .icons .material-symbols-rounded:hover{
  background: #f2f2f2;
}
.header .current-date{
  color: white;
  font-size: 1.45rem;
  font-weight: 500;
}

/*############################# VIEW FOOD #######################################*/
.table-box{
  display: flex;
  width: 100%;
  height: 8rem;
  border-radius: 10px;
  padding: 1rem;
  font-weight: 300;
  font-size: 0.8rem;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin: 0 0 1rem 0;
}
.table_text{
  border:none;width:100%;background:0;text-align: center;color:midnightblue;
  font-size:18px;
  font-weight:900;
}
.delete_cross_btn
{
    color:white; 
    border-radius:50px 20px;
    width:40px;
    background-color:rgba(255, 255, 255, 0.25);
    
}
.delete_cross_btn:hover
{
    color:white ;
    background-color:midnightblue;

}

/*############################ FOOD COUNT SHOW #########################*/
#grid_show{
    height:30rem;width:20rem;box-sizing: border-box;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding:10%;
}