*{
    padding: 0;
    margin: 0;
}
input:autofill {
    background: inherit;
  }
body
{
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    display: flex;
}
#LoginContrainer {
	background: no-repeat url("../image/login-background.jpg");
    position: relative;
	margin: 40px;
	width: calc(100vw - 80px);
	height: calc(100vh - 80px);
	box-shadow: 0 0 10px #d6008b;
	border-radius: 10px;
    background-size: 100% 100%;
}

.scrollbar{
    overflow-y: scroll;
	scrollbar-width: thin;
	height: calc(100vh / 4);
}
.login_form {
	background-color: #fffefe78;
  opacity: 0.8;
  display: none;
  margin-right: 100%;
  height: inherit;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.form_section
{
	/* position: absolute;
  top: 0;
  bottom: 0;
  width: calc((100vw - 80px) * 3 / 4); */
  /* margin-left: calc((100vw - 80px) / 3); */
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70%;
  left: 50%;
  transform: translate(-50%,0);
}
.form_border
{
	width: 40%;
	margin: auto;
	padding: 20px 10px;
}
.login_logo
{
    margin: 10px auto;
    height: 90px;
    display: block;
    border-radius: 15px;
}

.login-grid-container {
    display: grid;
    grid-template-columns: auto auto ;
    color:#f2f2f2;
  }

.grid-item {
    padding: 20px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #d6008b;
  }

.grid-item.disabled {
	background-color:#07b2d9 ;
	cursor: pointer;
}

form
{
	background-color: #d6008b;
	padding: 60px;
    color:#f2f2f2;
}
input:not([type = checkbox]) , select,textarea
{
    background-color: inherit;
    color: inherit;
    outline: none;
    width: 100%;
    padding: 2px 20px;
    margin: 8px 0;
    display: block;
    border: none;
    border-bottom: 1px solid #f2f2f2;
    box-sizing: border-box;
    margin-bottom: 17px;
    line-height: 2em;
}

input[type=checkbox]{
    margin-right: 1em;
}

button:hover, .addmoreLocation:hover {
    background: #33a0c1;
    color: #ffffff;
    box-shadow: none;
    border: 1px solid #81da00;
  }
  button {
    border: 1px solid #d6008b;
    color: #f2f2f2;
    font-size: 1em;
    padding: 8px 35px;
    background: #d6008b;
    cursor: pointer;
    display: block;
    text-transform: uppercase;
    font-weight: 800;
    margin: 6px auto;
    box-shadow: inset 2px 2px 5px rgba(455,255,255,0.5), inset 1px 1px 5px rgba(0,0,0,.5), 2px 2px 5px #ffffff;
  }
.addmoreLocation
{
    border: 1px solid #07b2d9;
    color: #f2f2f2;
    font-size: 1em;
    padding: 8px 35px;
    background: #07b2d9;
    cursor: pointer;
    display: block;
    text-transform: uppercase;
    font-weight: 800;
    margin: 6px auto;
    box-shadow: inset 2px 2px 2px #62e1f7, inset 2px 2px 2px #06abfb;
}

fieldset > label
{
    margin-top:5px;
    font-weight: bold;
}
.psw{
    margin-top: 18px;
    display: block;
    cursor: pointer;
}
#FormHeader
{
    background-color:#f2f2f2;
    color: #07b2d9;
    display: grid;
    grid-template-columns: auto auto ;
    padding: 0 3em;
}
#FormHeader section {
    padding: 10px;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
  }
  .dashboard_logo {
	height: 90px;
	padding: 20px;
	align-self: center;
}



.sidebar {
	background: #e6e7e9;
  height: 100vh;
  display: inline-flex;
  flex-direction: column;
  padding: 0px 0px 0px 10px;
  width: 18vw;
  white-space: nowrap;
  /* cursor: pointer; */
  border-right: 2px solid #d6008b;
}
.sidebar a{
    text-decoration: none;
    padding: 10px;
	color:  #d6008b;
    display: block;
    text-align: left;
    text-transform: capitalize;
    border-bottom: 1px solid #d6008b;
    padding: 20px;
    font-weight: bold;
}
.sidebar a:first-child {
    border-top: 1px solid #d6008b;
  }


.sidebar a:hover
{
    background-color:  #d6008b;
    color: #f2f2f2;
}

.dropdown
{
  text-decoration: none;
  color:  #d6008b;
  text-align: left;
  text-transform: capitalize;
  padding: 20px;
  font-weight: bold;
  margin-top: auto;
  position: relative;
}
.dropdown-content {
  display: none;
  position: absolute;
  min-width: 210px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.42);
  z-index: 1;
  left: 100%;
  bottom: 0;
  font-size: 0.8em;
}
.dropdown-content a {
  padding: 22px;
  text-decoration: none;
  display: block;
  text-align: left;
  text-transform: capitalize;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.dropdown-content a:hover {
  background-color: #ddd;
  color:#d6008b;
}

.dropdown:hover .dropdown-content {
  display: block;
  background-color:  #162440;
  color: #f2f2f2;
}
.dropdown:hover {
    background-color:  #d6008b;
    color: #f2f2f2;
  }
  .sidebar .active, .sidebar a.active:hover {
	color: #f2f2f2;
	background: #d6008b;
	display: flex;
	border-top: 1px solid #d6008b;
}
.sidebar a.active::after {
	display: inline-block;
	height: 1.5em;
	width: .75em;
	content: "";
	margin-left: auto;
	background: url(../image/caret-right-solid-hover.svg) no-repeat;
}
#MenuItems {
	height: calc(100vh - 194px);
	overflow-y: scroll;
    scrollbar-width: thin;
}
#mainSection{
    background: #e6e7e9;
    width: 82vw;
    height: 100vh;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}
.left_section {
	padding: 10px 20px 20px;
	/* background: #07b2d9; */
    background-color: #192b60;
	/* border: 1px solid #f2f2f2; */
	border-radius: 5px;
	margin-left: auto;
	margin-right: auto;
    height: fit-content;
}
.right_section {
	text-align: left;
	color:  #192b60;
	background:#f2f2f2;
    /* background-image: url(../image/bg.jpg) ; */
	min-width: 20vw;
	/* padding: 10px; */
	overflow-y: auto;
	overflow-y: scroll;
	align-self: stretch;
}
.right_section ul li {
	margin: 1em;
}
.right_section label {
	/* font-weight: bold; */
	/* margin-top: 10px; */
	display: block;
}
#calenderTable
{
    text-align: center;
    border-collapse: collapse;
    background-color: #192b60;
    max-width: 41vw;
}
#calenderTable th
{
    background-color: #192b60;
    color: #f2f2f2;
    text-transform:capitalize;
    cursor: default;
}
#calenderTable td
{
    color: #f2f2f2;
}
#calenderTable tr
{
    background-color: #192b60;
}
/* #calenderTable tr:nth-child(odd) td:nth-child(odd){background-color: #d6e7f0;}
#calenderTable tr:nth-child(even) td:nth-child(even){background-color: #d6e7f0;} */

#calenderTable .table_text:hover{
    box-shadow: inset 0 0 5px #777;
    /* border-radius: 50%; */
}
#calenderTable .currentday{
    color: #07b2d9;
    box-shadow: inset 0 0 5px #777;
}
.holiday{
    opacity: .3;
    cursor: default;
}
#calenderTable td, #calenderTable .calenderevent{
    width: 50px;
    height: 50px;
    cursor: pointer;
    }
.table_text {
    background-color: rgba(255, 255, 255, 0.035);
    border-radius: 50%;
    padding: 10px;
    /* display: flex; */
    justify-content: center;
}
.error {
	display: block;
	background: rgb(125,0,0);
	margin-bottom: 2em;
	text-shadow: 0px 0px 1px rgba(255,255,255, 1);
	font-size: 0.7em;
	padding: 1em .5em;
    color: #f2f2f2;
}
#loginForm {
	overflow-y: scroll;
	height: calc(100vh - 400px);
}
.formDiv {
	position: fixed;
	left: 30px;
	margin-top: 2em;
	border-radius: 10px;
	background: #f2f2f2;
	color: #d6008b;
	right: 30px;
	top: 30px;
	bottom: 30px;
	scrollbar-width: thin;
    overflow-y: scroll;
}
.formDiv input , .formDiv select,.formDiv textarea,.allowanceForm input
{
    border-bottom: 1px solid #d6008b;
}

.PopUpButton {
	background: #d6008b;
	border: 0;
	box-shadow: inset 2px 2px 5px rgba(455,255,255,0.5), inset 1px 1px 5px rgba(0,0,0,.5), 2px 2px 5px #000;
	padding: 1em 2em;
	grid-column: 1 / 3;
}
.PopUpButton:hover {
	background: #d6008b;
	color: #ffffff;
	box-shadow: none;
}
#FormHeader {
	position: fixed;
	text-transform: capitalize;
	background-color: #d6008b;
	margin-bottom: 15px;
	padding: 20px;
	color: #f2f2f2;
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	z-index: 1;
	top: 30px;
	left: 30px;
	right: 30px;
}
#PopUpForm {
	position: fixed;
	top: 0;
	background: rgba(22, 22, 22, 0.6);
	left: 0;
	right: 0;
	bottom: 0;
}
.grid{
    display: grid;
    grid-template-columns: auto auto ;
    grid-column-gap: 50px;
  }
.gridreport{
    display: grid;
    grid-column-gap: 50px;
  }
  .fieldset
  {
      border: 0;
  }
#PopUpClose{
    width: 1em;
    justify-self: right;
    cursor: pointer;
}

#PopUpAlert{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    /* margin: 0; */
    /*padding-left: 9vw;*/
     padding: 0;
    background-color: rgba(0,0,0,0.6);
    z-index : 50;
}
#PopUpAlertMessage {
	border-radius: 10px;
	background: #07b2d9;
	color: #f2f2f2;
	margin: calc((100vh - 228.167px - 100px) / 2) auto 0;
	padding: 20px 25px;
	display: block;
    font-size: 1.3em;
	text-align: center;
	max-width: fit-content;
    animation: zoom 1s ease-out;
}
#PopUpAlertButton , #PopUpAlertButtonLogout ,#PopUpAlertButtonLogin
{
	background: #d6008b;
	border: 0;
    border-radius: 10px;
	padding: 0.6em 1.5em;
	grid-column: 1 / 3;
    margin-top: 30px;
}
#PopUpAlertButton:hover , #PopUpAlertButtonLogout:hover , #PopUpAlertButtonLogin:hover {
	background: #d6008b;
	color: #ffffff;
	box-shadow: none;
}

@keyframes zoom {
    from{
        transform: scale(0.1,0.1);
    }
    to{
        transform: scale(1.0,1.0);
    }
}
.mainHeader {
	color: #d6008b;
	text-transform: capitalize;
}
.sidebar_item {
    color: #d6008b;
  }
#mainSection.mainfortable {
	flex-direction: column;
	align-items: stretch;
    justify-content: flex-start; 
    overflow: scroll;
    min-height:100vh ;
}
.breadcrumbs ,.dashboardList{
	background: #f2f2f2;;
	font-size: 1.2em;
}
.mainHeader > *{
	padding: 20px;
    border-bottom: 3px solid #fff;
}
.mainHeader .breadcrumbs .sidebar_item:hover{
    cursor: pointer;
    color:  #07b2d9;
}
#Pagination {
	background: #e6e7e9;
	display: flex;
	align-content: center;
	justify-content: center;
}
.pagination_button {
	padding: 5px;
	background: #f2f2f2;
	color: #d6008b;
	margin: 10px;
	min-width: 70px;
	text-align: center;
	font-size: .8em;
	border-radius: .25rem;
	font-weight: 800;
    cursor: default;
}

.pagination_button.clickable {
    cursor: pointer;
  }
.adminDeshboard {
	display: grid;
	grid-template-columns: auto auto auto;
	margin: 0 25px;
}
.adminDeshboardgrid {
	border-radius: 12px;
	background:  #d6008b;
	margin: 18px;
    color: #f2f2f2;
    box-shadow: 0 12px 6px -5px #d6008b;
}
.dashboardText {
	font-weight: bold;
	align-self: center;
	justify-self: end;
	margin-right: 15px;
    text-align: right;
}
.adminDeshboardfooter {
	background-color: #f2f2f2;
	color: #d6008b;
	padding: 8px;
	grid-column: 1 / 3;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	text-align: center;
    cursor: pointer;
}
.LocationCheckbox
{
    /*! border:2px solid #077ad9; */
    /*! width:fit-content; */
    max-height: 100px;
    overflow-y: scroll;
    /*! color: #000; */
    /*! align-content: start; */
}
.MedicineCheckbox {
	margin: .25rem 1rem;
	height: 4.5rem;
	overflow-y: scroll;
}
.list{
    list-style: none;
    text-align: left;
}
.locationLi, .dobLi,.annLi,.planLi {
	padding: 5px;
	font-weight: bold;
	border-bottom: 2px solid #d6008b;
}
.VisibleHeaderLi
{
    border-bottom: 1px solid #d6008b;
    padding: 5px;
    font-weight: bold;
    margin-left: 2em;
}
.VisibleNameLi
{
    margin-left: 1.5em;
    padding: 5px;
    font-weight: 200;
}
.locationLi.show > ul , .dobLi.show > ul ,.annLi.show > ul,.planLi.show >ul {
	display: block;
}
.locationLi > ul ,.dobLi> ul,.annLi> ul,.planLi >ul {
	display: none;
}
.searchdiv
{
    position: relative;
    justify-self: end;
    align-self: center;
    grid-column: 2 / 3;
    background-color: #d6008b;
    padding: 2px 10px;
    border-radius: 5px;
}
.halfPlanPopup {
	position: fixed;
	left: calc(50vw - (5em + 60px));
	height: 6em;
	border-radius: 10px;
	background: #f2f2f2;
	color: #d6008b;
	width: 10em;
	top: calc(50vh - (3em + 60px));
}
#PopUpButtonSlot
{
    background: #d6008b;
	border: 0;
	box-shadow: inset 2px 2px 5px rgba(455,255,255,0.5), inset 1px 1px 5px rgba(0,0,0,.5), 2px 2px 5px #000;
	padding: 0.7em;
	grid-column: 1 / 3;
}
#PopUpFormhalfplan{
    position: fixed;
    top: 0;
    /* background: rgba(22, 22, 22, 0.6); */
    left: 0;
    right: 0;
    bottom: 0;
}
.listheading{
    color: #f2f2f2;
	font-size: 1.2em;
    font-weight:800;
}
.listheadingtag {
	color: #d6008b;
	display: flex;
	font-size: 0.9em;
	margin-left: 10px;
}
.listheadinglist {
	color: #d6008b;
	/* margin-left: 18px; */
	display: flex;
	font-weight: 700;
	font-size: 0.9em;
    margin: 0;
}
.right_section_heading
{
    color: #d6008b;
}
.headingLi
{
	color: #d6008b;
}
.sidebar nav > a {
	cursor: pointer;
}
.editimg {
  cursor: pointer;
}
.MainDashboardSection{
    display: flex;
    height: 100%;
}
.responsive_table_heading {
	display: none;
    font-weight: bold;
}
.responsive_pegination {
	display: none;
}
.ulbackground{
    background-color:#e6e0e0;
}
.visitLi {
	list-style: none;
	text-align: left;
	padding: 5px;
	font-weight: 700;
	/* border-bottom: 2px solid #d6008b; */
	background: #051851;
	font-size: 0.9em;
}
.allowanceForm {
	background: #f2f2f2;
	color: #d6008b;
	margin: 10px;
}

