
@import url('https://fonts.googleapis.com/css?family=Muli:200,300,400');

body {
  background: #f5f5f5;
  font-family: 'Muli', sans-serif;
  font-style: normal;
  font-weight: 300;
  overflow-x: hidden;
  overflow-y: scroll;
}

html, body {
  width: 100%;
  height: 100%;
  font-size: 16px;
}



/*---------------------------------------
  Typorgraphy              
-----------------------------------------*/

h1,h2,h3,h4,h5,h6 {
  font-style: normal;
  font-weight: 200;
  letter-spacing: 0px;
}

h1 {
  color: #3d3d3f;
  font-size: 3.2rem;
  line-height: normal;
}

h2 {
  color: #3d3d3f;
  font-size: 2.5rem;
  line-height: 52px;
  margin-top: 0px;
}

h3 {
  color: #3d3d3f;
  font-size: 2rem;
  line-height: 52px;
  margin-top: 0px;
}

h4 {
  color: #3d3d3f;
  font-size: 1.6rem;
}

h5 {
  color: #3d3d3f;
  font-size: 1.4rem;
}

h5 {
  color: #3d3d3f;
  font-size: 1.2rem;
}

p {
    color: #3d3d3f;
    font-size: 1rem;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: 0.2px;
}

strong, span {
  /*color: #878787;*/
  font-weight: normal;
	text-transform: capitalize;
}



/*---------------------------------------
  Buttons               
-----------------------------------------*/

.btn{
	font-size: 1rem;
}

.section-btn {
  background: #d7b065;
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1.6px;
  padding: 14px 32px 18px 32px;
  margin-top: 32px;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.section-btn:focus,
.section-btn:hover {
  background: #000000;
  color: #ffffff;
}



/*---------------------------------------
    General               
-----------------------------------------*/

html{
  -webkit-font-smoothing: antialiased;
}

a {
  color: #575757;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none !important;
}

a:hover, a:active, a:focus {
  color: #000000;
  outline: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.section-title {
  margin: 0;
  padding-bottom: 32px;
}

#about, #work,
#contact {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

#about img, #team img {
  border-radius: 5px;
}

#work {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

#contact {
  text-align: center;
}

.paddingbottom{
	padding-bottom: 20px;
}

.active{
	display: block!important;
}
.notactive{
	display: none!important;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 300px;
  margin: auto;
  text-align: center;
	padding: 10px;
}

.card h2{
	text-transform: capitalize;
    font-size: 1.5em;
}

/*---------------------------------------
  Pre loader section              
-----------------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 #ffffff;
}

.spinner {
  border: 1px solid transparent;
  border-radius: 5px;
  position: relative;
}

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65px;
  height: 65px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 1px solid #000000;
  border-top-color: #f9f9f9;
  animation: spinner .9s linear infinite;
}

@-webkit-@keyframes spinner {
  to {transform: rotate(360deg);
    }
}

@keyframes spinner {
  to {transform: rotate(360deg);
    }
}



/*---------------------------------------
  Navigation section              
-----------------------------------------*/



.burgermenu{
    display: none;
}

.custom-navbar {
  border: none;
  margin-bottom: 0;
  background-color: #ffffff;
  padding-top: 10px;
}

.custom-navbar .navbar-brand {
  color: #444;
  font-weight: normal;
  font-size: 1.2rem;
}

.custom-navbar .nav li a {
  font-size: 0.8rem;
  font-weight: normal;
  color: #656565;
  letter-spacing: 1px;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  padding: 0;
  margin: 15px;
}

.custom-navbar .navbar-nav > li > a:hover,
.custom-navbar .navbar-nav > li > a:focus {
  background-color: transparent;
  color: #454545;
}

.custom-navbar .navbar-nav li a:after {
  content: "";
  position: absolute;
  display: block;
  width: 0px;
  height: 2px;
  margin: auto;
  background: transparent;
  transition: width .3s ease, background-color .3s ease;
}

.custom-navbar .navbar-nav li a:hover:after,
.custom-navbar .nav li.active > a:after {
  background: #000000;
  color: #ffffff;
  width: 100%;
}

.custom-navbar .nav li.active > a {
  background-color: transparent;
  color: #454545;
}

.custom-navbar .navbar-toggle {
  border: none;
  padding-top: 12px;
}

.custom-navbar .navbar-toggle {
  background-color: transparent;
}

.custom-navbar .navbar-toggle .icon-bar {
  background: #000000;
  border-color: transparent;
}

@media(min-width:768px) {
    .custom-navbar {
      border-bottom: 0;
      background: 0 0; 
    }
    .custom-navbar.top-nav-collapse {
      background: #ffffff;
      box-shadow:0 40px 100px rgba(0,0,0,.2);
      padding: 10px 0;
    }

}

[class*="col-"] {
    padding-right: 15px!important;
    padding-left: 15px!important;
}

.navbar-header {
    margin-left:-15px!important;
}

.navbar-right {
    transform: translate(0,40%);
}

/*--------------------------------
	Box Headers
---------------------------------*/

.holtaken{
	width: 100%;
	border: #B8B8B8 solid 1px;
	border-radius: 5px;
	margin: 5px;
	padding: 0 0 0 0;
	color: #000!important;
}

.holtaken a{
	float: right;
	padding-right: 10px;
}

.holtakenheader{
	color: #000;
	background: #B8B8B8;
    padding: 10px 0 10px 10px;
    margin-top: 0;
	border-radius: 5px;
}

.holtaken h4{
	background: #B8B8B8;
    padding: 10px 0 10px 10px;
    margin-top: 0;
	color: #000!important;
	font-size: 1.2rem;
}

.holtaken h3{
	background: #B8B8B8;
    padding: 10px 0 10px 10px;
    margin-top: 0;
	color: #000!important;
	font-size: 1rem;
}

.holtaken p{
    padding: 10px 0 10px 10px;
	text-align: center;
	font-size: 2rem;
	color: #000!important;
}


.userselect{
	width: 100%;
	border: #B8B8B8 solid 1px;
	border-radius: 5px;
	margin: 5px;
	padding: 0 0 0 0;
	color: #000!important;
}

.userselect a{
	font-size: 1rem;
	color: #000000;
	text-decoration: underline!important;
}

.userselect a:hover{
	font-size: 1rem;
	color: #fff;
	text-decoration: underline;
}

.userselect h3{
	background: #B8B8B8;
    padding: 10px 0 10px 10px;
    margin-top: 0;
	color: #000!important;
	font-size: 1rem;
}

.userselect p{
    padding: 10px 0 10px 10px;
	text-align: center;
	font-size: 2rem;
	color: #000!important;
}

/*---------------------------------------
  Search Form Users             
-----------------------------------------*/

form.users input[type=text] {
    padding: 5px;
    font-size: 1rem;
    border: 1px solid #b8b8b8;
    float: left;
    width: 80%;
    border-radius: 5px 0 0 5px;
}

form.users button {
    float: left;
    width: 20%;
    padding: 5px;
    background: #b8b8b8;
    color: #000;
    font-size: 1rem;
    border: 1px solid #b8b8b8;
    border-left: none;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
}

form.users button:hover {
  background: #0b7dda;
	color: #fff
}

form.users::after {
  content: "";
  clear: both;
  display: table;
}

/*---------------------------------------
  Tab Swap              
-----------------------------------------*/

/* Style tab links */
.tablink {
  background-color: grey;
  color: #000000;
  float: left;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  width: 33.333333%;
	border: none;
	font-size: 1.1rem;
    font-weight: normal;
}

.tablink:first-child {
  border-radius: 5px 0px 0px 5px;
}

.tablink:last-child {
  border-radius: 0px 5px 5px 0px;
}

.tablink:hover {
  background-color: #777;
}

.tabcontent {
  color: white;
  display: none;
  padding: 20px 0px;
  height: 100%;
}

/*---------------------------------------
  Hero sections              
-----------------------------------------*/

#home {
  display: -webkit-box;
  display: -webkit-flex;
   display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
   align-items: center;
  height: calc(100vh - 80px);
  height: calc(var(--vh, 1vh) * 97);
  position: relative;
  padding-top: 62px;
}

#home_users {
  display: -webkit-box;
  display: -webkit-flex;
   display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
   align-items: center;
  height: calc(30vh - 80px);
  position: relative;
  padding-top: 62px;
}



/*---------------------------------------
  About section              
-----------------------------------------*/

#about .section-title {
  padding-bottom: 16px;
}

#about .col-md-4 a {
  width: 100px;
  height: 100px;
  display: inline-block;
  margin: 6px 6px 0px 0;
}

#about .about-thumb {
  margin-top: 22px;
}

#about .about-thumb strong {
  font-weight: normal;
  display: block;
  padding-top: 4px;
}



/*---------------------------------------
  Skill section              
-----------------------------------------*/

#skill {
  border-top: 0px solid #f0f0f0;
  padding-top: 80px;
  padding-bottom: 30px 15px;
}

#skillmain {
  border-top: 0px solid #f0f0f0;
  padding-top: 80px;
  padding-bottom: 30px 15px;
}

.skill-thumb strong,
.skill-thumb span {
  color: #575757;
  font-size: 1rem;
  padding-bottom: 8px;
  display: inline-block;
}

.skill-thumb .progress {
  background: #ffffff;
  border-radius: 5px;
  box-shadow: none;
  height: 4px;
}

.skill-thumb .progress-bar-primary {
  background: #3d3d3f;
}



/*---------------------------------------
  Work section              
-----------------------------------------*/

#work .work-thumb {
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 0;
  overflow: hidden;
  position: relative;
  top: 0;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

#work .work-thumb:hover {
  background: #ffffff;
  box-shadow: 0px 16px 22px 0px rgba(90, 91, 95, 0.3);
  top: -5px;
}

#work .work-thumb img {
  border-radius: 5px;
}



/*---------------------------------------
  Contact section              
-----------------------------------------*/

#contact .form-control {
  border-radius: 0px;
  border-color: #f0f0f0;
  box-shadow: none;
  font-size: 1rem;
  margin-top: 12px;
  margin-bottom: 12px;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

#contact .form-control:focus {
  border-bottom: 2px solid #999999;
}

#contact input {
  height: 55px;
  border: none;
  border-bottom: 1px solid #f0f0f0;
}

#contact button#submit {
  background: #000000;
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-weight: 300;
  height: 55px;
  padding-bottom: 10px;
  margin-top: 24px;
}

#contact button#submit:hover {
  background: #d7b065;
  color: #ffffff;
}

/*---------------------------------------
  Footer section              
-----------------------------------------*/

#footer{
    text-align: center;
}

/*---------------------------------------
  Social icon             
-----------------------------------------*/

.social-icon {
  position: relative;
  padding: 0;
  margin: 0;
}

.social-icon li {
  display: inline-block;
  list-style: none;
}

.social-icon li a {
  background: #292929;
  border-radius: 100%;
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  vertical-align: middle;
  position: relative;
  margin: 20px 6px 10px 6px;
}

.social-icon li a:hover {
  background: #d7b065;
  transform: scale(1.1);
}


/*---------------------------------------
  Calendar Bits           
-----------------------------------------*/


.switch {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 34px;
  text-align: center;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

label.switch {
	font-weight: 400!important;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  padding: 6px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: transparent;
  -webkit-transition: .4s;
  transition: .4s;
}


input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

  .container_cal {
		font-family: 'Montserrat', sans-serif;
		margin: 10px auto;
		width: 100%;
	}
	.list-inline {
		text-align: center;
		margin-bottom: 30px;
	}
	.title {
		font-weight: bold;
		font-size: 1.6rem;
	}
	th {
		text-align: center;
		width: 18%;
	}
	td {
		width:auto;
		height: 130px;
	}

	.today {
		background: rgba(255,165,0,0.50);
	}
	.past {
		background: rgba(173,216,230,0.50);
	}
	.bank {
		background: rgba(147,192,126,0.50);
	}
	.bank:after {
		content: "Bank Holiday";
	}
	.company {
		background: rgba(96,82,195,0.50);
	}
	.company:after {
		content: "Company Holiday";
	}
	th:nth-of-type(1), td:nth-of-type(1) {
		color: #000000;
		width: 5%;
		background: rgba(99,99,99,0.50);
	}
	th:nth-of-type(7), td:nth-of-type(7) {
		color: #000000;
		width: 5%;
		background: rgba(99,99,99,0.50);
	}

.timeoff-full{
	display: block;
	padding: 5px;
	color: white;
	border-radius: 15px;
	text-align: center;
	margin-bottom: 2px;
	width: 100%;
	text-transform: uppercase;
    position: relative;
}
.timeoff-halfam{
	display: block;
	padding: 5px;
	color: white;
	border-radius: 15px;
	text-align: center;
	margin-bottom: 2px;
	width: 50%;
	text-transform: uppercase;
    position: relative;
}
.timeoff-halfpm{
	display: block;
	padding: 5px;
	color: white;
	border-radius: 15px;
	text-align: center;
	margin-bottom: 2px;
	width: 50%;
	text-transform: uppercase;
	float: right;
    position: relative;
}
.pasttimeoff-full{
	display: block;
	padding: 5px;
	color: white;
	border-radius: 15px;
	text-align: center;
	margin-bottom: 2px;
	width: 100%;
	text-transform: uppercase;
}
.pasttimeoff-halfam{
	display: block;
	padding: 5px;
	color: white;
	border-radius: 15px;
	text-align: center;
	margin-bottom: 2px;
	width: 50%;
	text-transform: uppercase;
}
.pasttimeoff-halfpm{
	display: block;
	padding: 5px;
	color: white;
	border-radius: 15px;
	text-align: center;
	margin-bottom: 2px;
	width: 50%;
	text-transform: uppercase;
	float: right;
}
.pasttimeoff-circle{
	display: block;
	padding: 5px;
	color: white;
	background: #C3C3C3;
	border-radius: 15px;
	text-align: center;
	margin-bottom: 2px;
	text-transform: uppercase;
	float: left;
	margin: 5px;
}

.pasttimeoff-circle-close{
	display: none;
}

.timeoff-full:hover, .timeoff-halfam:hover, .timeoff-halfpm:hover{
	color: black;
	background: rgba(186,186,186,1.00)!important;
	padding-left: 5px
}
.timeoff-full:hover:after, .timeoff-halfam:hover:after, .timeoff-halfpm:hover:after{
	content: "Delete";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: rgba(158,0,2,0.90);
	padding: 16px 0;
    width: 100%;
	border-radius: 15px;
    color: #fff;
}

.paddingLR{
    padding: 0 5px!important;
}

.calendarLR{
    padding: 0 15px!important;
}

.usertable  {
        overflow-x:unset;
}

.usertable table {
    border-collapse: collapse;
    width: 100%;
}

.usertable th, .usertable td {
    text-align: left;
	height: auto;
}


.usertable th:nth-of-type(1) {
	color: white;
	width: 5%;
	background: transparent;
}
.usertable th:nth-of-type(7){
	color: white;
	width: 5%;
	background: transparent;
}

.usertable td:nth-of-type(1) {
	color: black;
	width: 5%;
	background: transparent;
}
.usertable td:nth-of-type(7) {
	color: black;
	width: 5%;
	background: transparent;
}

.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  min-width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: -180%;
    display: none;
    font-size: 0.8em
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  display: block;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}

/*---------------------------------------
  Admin & Manager styles              
-----------------------------------------*/

.adminsidenavtop {
  height: 180px;
  width: 260px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #E4E4E4;
  overflow-x: hidden;
  padding-top: 0px;
}

.adminsidenavtop img{
    width: 100%;
}

.adminsidenav {
  height: calc(100% - 180px);
  width: 260px;
  position: fixed;
  z-index: 1;
  top: 180px;
  left: 0;
  background-color: #E4E4E4;
  overflow-x: hidden;
  padding-top: 0px;
}

.adminsidenav img{
    width: 100%;
}

.adminmain {
  margin-left: 280px; /* Same as the width of the sidenav */
  font-size: 1em; /* Increased text to enable scrolling */
  padding: 30px;
  min-height: 86.15vh;
}

.admin_homebox {
    text-align: center;
    padding: 10px 0;
    font-size: 1.5rem;
    min-height: 100px;
    border-radius: 5px;
    color: #fff;
    background-color: #CA0866;
    border-color: #CA0866;
}

.admin_homebox h4{
    color: #fff;
}

a:hover .admin_homebox {
	text-decoration: none!important;
    background-color: #1F2B4A;
}

.admin_homebox_info {
    padding: 10px 0;
    min-height: 100px;
    border-radius: 5px;
    border-top: 1px solid #e4e4e4;
    border-right: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    background: #fff;
    border-left: 3px solid #CA0866;
}

.admin_homebox_info h3{
    line-height: 2rem;
    padding-top: 10px;
}



.admin_backbox {
    text-align: center;
    padding: 10px 0;
    font-size: 1.2rem;
    min-height: 40px;
    border-radius: 5px;
    color: #fff;
    background-color: #1F2B4A;
    border-color: #CA0866;
}

a:hover .admin_backbox {
	text-decoration: none!important;
    background-color: #CA0866;
}

.admin-left-nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.admin-left-nav li a {
  display: block;
  color: #1F2B4A;
  padding: 8px 16px;
  text-decoration: none;
}

/* Change the link color on hover */
.admin-left-nav li a:hover {
  background-color: #CA0866;
  color: white;
}

.admin-left-nav-profile {
   list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
    width: calc(100% - 30px);
    bottom: 90px;
}

.admin-left-nav-profile li a {
  display: block;
  color: #1F2B4A;
  padding: 8px 16px;
  text-decoration: none;
}

/* Change the link color on hover */
.admin-left-nav-profile li a:hover {
  background-color: #CA0866;
  color: white;
}

.admin-left-nav-logout {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
    width: calc(100% - 30px);
    bottom: 50px;
}

.admin-left-nav-logout li a {
  display: block;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  background-color: #CA0866;
}

/* Change the link color on hover */
.admin-left-nav-logout li a:hover {
  background-color: #1F2B4A;
  color: white;
}

.panel-default>.panel-heading>.row{
    margin-left: 0;
    margin-right: 0;
}

.panel {
    margin-top: 20px;
    
}

/*---------------------------------------
  Mobile Responsive styles              
-----------------------------------------*/

@media (min-width: 768px) and (max-width: 1024px) {
  #home {
    height: 50vh;
  }
}

@media (min-width: 667px) and (max-width: 767px) {
  #home {
    height: 140vh;
  }
}

@media (min-width: 568px) and (max-width: 665px) {
  #home {
    height: 190vh;
  }
}

@media (max-width: 980px) {

 h1 {font-size: 2.1rem;}

 #work .work-thumb {
  margin-top: 30px;
 }

}


@media (max-width: 768px) {
    
    .admin-left-nav-profile {
        bottom: unset;
    }
    
    .admin-left-nav-logout {
        bottom: unset;
        margin: 15px 0;
    }
    
    [class*="col-"] {
    padding-right: 5px!important;
    padding-left: 5px!important;
}
    
.calendarLR{
    padding: 0 15px!important;
}

  h1 {
    font-size: 1.9rem;
    line-height: normal;
  }

  h2  {font-size: 1.5rem;}

  .custom-navbar {
    background-color: #ffffff;
    box-shadow:0 0px 50px rgb(0 0 0 / 10%);
    padding-top: 0px;
    padding-bottom: 0px;
    min-height: 90px;
  }

  .custom-navbar .nav {
    padding-bottom: 10px;
  }

  .custom-navbar .nav li a {
    display: inline-block;
    margin-bottom: 5px;
  }
    
    .adminsidenav{
        left: -300px;
        height: calc(100% - 90px);
        z-index: 99;
        top: 90px;
        transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
    }
    
    .adminmain{
        margin-left: 0px;
        margin-top: 80px;
    }
    
    #skill{
        margin-left: 0px!important;
    }
    
    
    #skillmain{
        margin-left: 0px!important;
        padding: 0px 15px 15px 15px!important;
    }
    
    .adminsidenavtop {
        height: 90px;
        width: 100%;
        overflow: hidden;

    }
    
    .adminsidenavtop img {
        width: 8rem;

    }
    
    .burgermenu{
        display: block;
        float: right;
        margin: 30px 15px;
        color: #c50966;
        font-size: 2em;
    }
    
    
.overlay3 {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 98;
    top: 90px;
    left:0;
    background-color: rgba(0,0,0, 0.9);
    overflow-y: auto;
    overflow-x: hidden;
    text-align: center;
    opacity:0;
    transition: opacity .5s;
}
    
    /* The actual popup */
.popup .popuptext {
  width: 90%;
    height: calc(100% - 40px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    /* margin: 20px; */
    padding: 25px;
    font-size: 1.3rem;
    background-color: rgb(85 85 85 / 90%);
}
    
    .popup .popuptext::after {
  display: none;
}
    
    .pasttimeoff-circle {
        width: 98%
    }
    
    

.pasttimeoff-circle-close{
display: block;
    padding: 15px 5px;
    color: white;
    background: #c50966;
    border-radius: 15px;
    text-align: center;
    text-transform: capitalize;
    margin: 10px;
    width: 20%;
    /* position: absolute; */
    /* top: 10px; */
    /* right: 0; */
    float: right;
}
    
    .admin-left-nav li a {
        font-size: 1.2rem;
        border-bottom: 1px solid #1F2B4A;
    }
    
    .admin-left-nav-profile li a, .admin-left-nav-logout li a{
        font-size: 1.2rem;
    }
    
}


@media (max-width: 580px) {
    
    
.usertable  {
        overflow-x:auto;
}

  #about .about-thumb {
    margin-top: 0px;
  }

  .about-thumb .social-icon {
    margin-bottom: 15px;
  }

}


@media (max-width: 425px) {

  .navbar-right {
    transform: translate(0,0%);
}

}


@media (max-width: 357px) {

  h1 {
    font-size: 1.7rem;
  }

  #about .col-md-4 a {
    width: 85px;
    height: 85px;
  }

}
