h1.page-header {
    margin-top: -5px;
}

.sidebar {
	padding-left: 0;
}

.main-container { 
	background: #FFF;
	padding-top: 15px;
	margin-top: -20px;
}

.footer {
	width: 100%;
}  

:focus {
	outline: none;
}

.side-menu {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #f8f8f8;
	border-right: 1px solid #e7e7e7;
}
.side-menu .navbar {
	border: none;
}
.side-menu .navbar-header {
	width: 100%;
	border-bottom: 1px solid #e7e7e7;
}
.side-menu .navbar-nav .active a {
	background-color: transparent;
	margin-right: -1px;
	border-right: 5px solid #e7e7e7;
}
.side-menu .navbar-nav li {
	display: block;
	width: 100%;
	border-bottom: 1px solid #e7e7e7;
}
.side-menu .navbar-nav li a {
	padding: 15px;
}
.side-menu .navbar-nav li a .glyphicon {
	padding-right: 10px;
}
.side-menu #dropdown {
	border: 0;
	margin-bottom: 0;
	border-radius: 0;
	background-color: transparent;
	box-shadow: none;
}
.side-menu #dropdown .caret {
	float: right;
	margin: 9px 5px 0;
}
.side-menu #dropdown .indicator {
	float: right;
}
.side-menu #dropdown > a {
	border-bottom: 1px solid #e7e7e7;
}
.side-menu #dropdown .panel-body {
	padding: 0;
	background-color: #f3f3f3;
}
.side-menu #dropdown .panel-body .navbar-nav {
	width: 100%;
}
.side-menu #dropdown .panel-body .navbar-nav li {
	padding-left: 15px;
	border-bottom: 1px solid #e7e7e7;
}
.side-menu #dropdown .panel-body .navbar-nav li:last-child {
	border-bottom: none;
}
.side-menu #dropdown .panel-body .panel > a {
	margin-left: -20px;
	padding-left: 35px;
}
.side-menu #dropdown .panel-body .panel-body {
	margin-left: -15px;
}
.side-menu #dropdown .panel-body .panel-body li {
	padding-left: 30px;
}
.side-menu #dropdown .panel-body .panel-body li:last-child {
	border-bottom: 1px solid #e7e7e7;
}
.side-menu #search-trigger {
	background-color: #f3f3f3;
	border: 0;
	border-radius: 0;
	position: absolute;
	top: 0;
	right: 0;
	padding: 15px 18px;
}
.side-menu .brand-name-wrapper {
	min-height: 50px;
}
.side-menu .brand-name-wrapper .navbar-brand {
	display: block;
}
.side-menu #search {
	position: relative;
	z-index: 1000;
}
.side-menu #search .panel-body {
	padding: 0;
}
.side-menu #search .panel-body .navbar-form {
	padding: 0;
	padding-right: 50px;
	width: 100%;
	margin: 0;
	position: relative;
	border-top: 1px solid #e7e7e7;
}
.side-menu #search .panel-body .navbar-form .form-group {
	width: 100%;
	position: relative;
}
.side-menu #search .panel-body .navbar-form input {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	width: 100%;
	height: 50px;
}
.side-menu #search .panel-body .navbar-form .btn {
	position: absolute;
	right: 0;
	top: 0;
	border: 0;
	border-radius: 0;
	background-color: #f3f3f3;
	padding: 15px 18px;
}
/* Main body section */
.side-body {
	margin-left: 310px;
}
/* small screen */
@media (max-width: 768px) {
	.side-menu {
		position: relative;
		width: 100%;
		height: 0;
		border-right: 0;
	}

	.side-menu .navbar {
		z-index: 999;
		position: relative;
		height: 0;
		min-height: 0;
		background-color:none !important;
		border-color: none !important;
	}
	.side-menu .brand-name-wrapper .navbar-brand {
		display: inline-block;
	}
	/* Slide in animation */
	@-moz-keyframes slidein {
		0% {
			left: -300px;
		}
		100% {
			left: 10px;
		}
	}
	@-webkit-keyframes slidein {
		0% {
			left: -300px;
		}
		100% {
			left: 10px;
		}
	}
	@keyframes slidein {
		0% {
			left: -300px;
		}
		100% {
			left: 10px;
		}
	}
	@-moz-keyframes slideout {
		0% {
			left: 0;
		}
		100% {
			left: -300px;
		}
	}
	@-webkit-keyframes slideout {
		0% {
			left: 0;
		}
		100% {
			left: -300px;
		}
	}
	@keyframes slideout {
		0% {
			left: 0;
		}
		100% {
			left: -300px;
		}
	}
	/* Slide side menu*/
	/* Add .absolute-wrapper.slide-in for scrollable menu -> see top comment */
	.side-menu-container > .navbar-nav.slide-in {
		-moz-animation: slidein 300ms forwards;
		-o-animation: slidein 300ms forwards;
		-webkit-animation: slidein 300ms forwards;
		animation: slidein 300ms forwards;
		-webkit-transform-style: preserve-3d;
		transform-style: preserve-3d;
	}
	.side-menu-container > .navbar-nav {
		/* Add position:absolute for scrollable menu -> see top comment */
		position: fixed;
		left: -300px;
		width: 300px;
		top: 43px;
		height: 100%;
		border-right: 1px solid #e7e7e7;
		background-color: #f8f8f8;
		overflow: auto;
		-moz-animation: slideout 300ms forwards;
		-o-animation: slideout 300ms forwards;
		-webkit-animation: slideout 300ms forwards;
		animation: slideout 300ms forwards;
		-webkit-transform-style: preserve-3d;
		transform-style: preserve-3d;
	}
	@-moz-keyframes bodyslidein {
		0% {
			left: 0;
		}
		100% {
			left: 300px;
		}
	}
	@-webkit-keyframes bodyslidein {
		0% {
			left: 0;
		}
		100% {
			left: 300px;
		}
	}
	@keyframes bodyslidein {
		0% {
			left: 0;
		}
		100% {
			left: 300px;
		}
	}
	@-moz-keyframes bodyslideout {
		0% {
			left: 300px;
		}
		100% {
			left: 0;
		}
	}
	@-webkit-keyframes bodyslideout {
		0% {
			left: 300px;
		}
		100% {
			left: 0;
		}
	}
	@keyframes bodyslideout {
		0% {
			left: 300px;
		}
		100% {
			left: 0;
		}
	}
	/* Slide side body*/
	.side-body {
		margin-left: 5px;
		margin-top: 70px;
		position: relative;
		-moz-animation: bodyslideout 300ms forwards;
		-o-animation: bodyslideout 300ms forwards;
		-webkit-animation: bodyslideout 300ms forwards;
		animation: bodyslideout 300ms forwards;
		-webkit-transform-style: preserve-3d;
		transform-style: preserve-3d;
	}
	.body-slide-in {
		-moz-animation: bodyslidein 300ms forwards;
		-o-animation: bodyslidein 300ms forwards;
		-webkit-animation: bodyslidein 300ms forwards;
		animation: bodyslidein 300ms forwards;
		-webkit-transform-style: preserve-3d;
		transform-style: preserve-3d;
	}
	/* Hamburger */
	.navbar-toggle-sidebar {
		border: 0;
		float: left;
		padding: 18px;
		margin: 0;
		border-radius: 0;
		background-color: #f3f3f3;
	}
	/* Search */
	#search .panel-body .navbar-form {
		border-bottom: 0;
	}
	#search .panel-body .navbar-form .form-group {
		margin: 0;
	}
	.side-menu .navbar-header {
		/* this is probably redundant */
		position: fixed;
		z-index: 3;
		background-color: #f8f8f8;
	}
	/* Dropdown tweek */
	#dropdown .panel-body .navbar-nav {
		margin: 0;
	}
}

.navbar-default {
    background-color: #24b7a9;
    border-color: #21a296;
}
.navbar-default .navbar-brand {
    color: #fff;
}
.navbar-default .navbar-nav>li>a {
    color: #f5f5f5;
}
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
    color: #fff;
    background-color: transparent;
}
.navbar-default .navbar-brand:focus, .navbar-default .navbar-brand:hover {
    color: #fff;
    background-color: transparent;
}
a {
    color: #24b7a9;
    text-decoration: none;
}
.footer{
	    text-align: center;
    background: #dcfffc;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    position: fixed;
	bottom: 0px;
	z-index: 10
}
.boxe{
	border-radius: 20px;
    width: 100%;
    min-height: 200px;
    /* background-image: linear-gradient(to left bottom, #76e3df, #34bcb1, #34bcb1, #d6f4f3); */
    text-align: center;
    color: #fff;
    font-size: 21px;
    padding: 45px 0px 10px 0px;
    /* border-bottom-left-radius: 0px; */
    /* border-bottom-right-radius: 0px; */
	background: #2aa19f;
	margin-bottom: 30px;
}
.boxe img{
	display: inline-block;
    text-align: center;
    margin: auto;
    /* padding-top: 50px; */
    padding-bottom: 10px;
        height:70px;
}
.boxe span{
	display: block;
}
.boxe1{
	border-radius: 20px;
    width: 100%;
    min-height: 200px;
    /* background-image: linear-gradient(to left bottom, #76e3df, #34bcb1, #34bcb1, #d6f4f3); */
    text-align: center;
    color: #fff;
    font-size: 21px;
    padding: 45px 0px 10px 0px;
    /* border-bottom-left-radius: 0px; */
    /* border-bottom-right-radius: 0px; */
	background:#316ac0;
	margin-bottom: 30px;
}
.boxe1 img{
	display: inline-block;
    text-align: center;
    margin: auto;
    /* padding-top: 50px; */
    padding-bottom: 10px;
        height: 70px;
}
.boxe1 span{
	display: block;
}
.boxe2{
	border-radius: 20px;
    width: 100%;
    min-height: 200px;
    /* background-image: linear-gradient(to left bottom, #76e3df, #34bcb1, #34bcb1, #d6f4f3); */
    text-align: center;
    color: #fff;
    font-size: 21px;
    padding: 45px 0px 10px 0px;
    /* border-bottom-left-radius: 0px; */
    /* border-bottom-right-radius: 0px; */
	background: #059dc0;
	margin-bottom: 30px;
}
.boxe2 img{
	display: inline-block;
    text-align: center;
    margin: auto;
    /* padding-top: 50px; */
    padding-bottom: 10px;
        height: 70px;
}
.boxe2 span{
	display: block;
}
.smalboxe{
	background: #025656;
    height: 10px;
    text-align: center;
    line-height:10px;
    color: #fff;
        margin-bottom: 30px;
}
.secpdng{
	    padding: 30px 30px;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}
.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background-color: #025656;
}
.navbar-toggle-sidebar {
    display: none;
}
.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
    color: #fff;
	background-color: #025656;
    padding-right: 25px;
    padding-left: 25px;
}
.agent_add_table th
{
	text-align: center;
}
a:focus, a:hover {
    color: #23527c;
    text-decoration: none;
}
.zoom{
	transition: transform .2s; /* Animation */
}
.zoom:hover{
	transform: scale(1.05);
    width: 100%;
    overflow: hidden;
}
.zoom1{
	-webkit-box-shadow: 3px 3px 3px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 3px 3px 3px 0px rgba(0,0,0,0.75);
box-shadow: 3px 3px 3px 0px rgba(0,0,0,0.75);
	cursor: pointer;
	transition: transform .2s; /* Animation */
}
.zoom1:hover{
	transform: scale(1.05);
    /* width: 100%; */
	overflow: hidden;
	background-color:#009688!important;
}

.ngx-spinner{
	position: fixed !important;
  }
.overlay{
	position: fixed !important;
}


a{
	cursor: pointer;
}


.hfnt{
	font-size: 22px;
	margin-top: 10px !important;
	margin-bottom: 20px !important;
	font-weight: 600;
  }
  .dates{
	margin-top: 12px;
    display: block;
    text-align: left;
  }
  .datediv{
	float: left;
    padding-right: 40px;
  }

  .subhd{
	font-size: 22px;
    font-weight: bold;
    margin-top: 0px;
    padding-top: 7px;
}
.datepicker{
	position: absolute;
    right: 25px;
    top: 32px;

}

.datepicker1{
position: absolute;
right: 87px;
top: 25px;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

.loginbtn1{
	width: 100%;
	 float: left;
	 display: flex;
	 height: 42px;
   }

   .swal2-title {
    font-size: 1.7em !important;
    font-weight: 300 !important;
}
.swal2-content {
	font-size: 1.55em !important;
	/* text-align: justify !important; */
}

.swal2-content {
    justify-content: center;
   
}

  .title img{
	  max-width: 150px;
	  margin: auto !important; 
	  display: block;
  }
  .title {
	  display: block;
	  position: relative;
  }
 
.bggchange{
    /* background-image: url(../images/LakshadweepIsland.jpg); */
    background-size: cover;
    font-family: "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* background-image: linear-gradient(to right top, #2ce6df, #34bcb1, #38bbb0, #48dad5, #d6f4f3); */
    /* background: #009688!important; */
    /* height: 100vh; */
    color: #333;
    /* background-position: center; */
    display: flex;
    flex-wrap: wrap;
}
.mglevel{
	right: 52px;
}
.prfl-hd{
	padding-left: 13px;
  }
.changeform{
	background: rgb(36, 183, 169) !important;     
	margin: 50px auto !important; 
}
.breadcrumb {
    z-index: 90;
    position: relative;
}
.innerfrmpdng{
	margin-bottom: 15px;
}
.setbtn{
	margin-top: 25px;
}
.cff {
	background: #24b7a9;
	;
	color: #fff;
  }
.infopopup th{
  text-align: center;
}
/* .agent_add_table td p {
	word-break: break-all;
} */