@charset "utf-8";
/* CSS Document */
body{
	font-family: 'Open Sans', sans-serif;
	background:#fff;
	overflow-x:hidden 
}
.align-center {
  display: flex;
  align-items: center;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
  min-height: 100%;
}

#formContent {
  background: #fff;
  padding: 20px;
  max-width: 450px;
  position: relative;
}

#formFooter {
  background-color: #f6f6f6;
  border-top: 1px solid #dce8f1;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}
h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}
/* FORM TYPOGRAPHY*/
input[type=button], input[type=submit], input[type=reset]  {
  background-color: #1E5D91 !important;
  border-radius: 8px;
  border: none;
  color: white;
  padding: 15px 20px;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 20px 0px 20px 0px;
  font-size: 18px;
	line-height: 21px;
	text-align: center;
	color: #FFFFFF;
}
#formContent h4{
  font-size:25px;
  color:#38395a;
  font-weight:normal
}
input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
  background-color: #39ace7;
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

input[type=text], input[type=email], input[type=password] {
  background-color: #fff;
  border: none;
  color: #996633;
  padding: 5px 10px;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 7px 0;
  border: 1px solid #996633;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  height:45px;

}
.underlineHover{
  text-decoration:none !important;
  box-shadow:none !important;
  font-style:normal !important;
  text-align:left;
  color:#999999;
  margin-top:20px
}
input[type=text]:focus {
  background-color: #fff;
}

input::placeholder {
  color: #996633 !important;
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;
  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;
  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}
.sidenav {
  height: 100%;
  width: 200px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  padding-top: 20px;
}

.sidenav a, .dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  color: #818181;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.sidenav a:hover, .dropdown-btn:hover {
  color: #f1f1f1;
}

.main {
  margin-left: 200px; /* Same as the width of the sidenav */
  font-size: 20px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}

.active {
  color: white;
}

.dropdown-container {
  display: none;
  background-color: #262626;
  padding-left: 8px;
}

.fa-caret-down {
  float: right;
  padding-right: 8px;
}

.nav-link[data-toggle].collapsed:before {
    content: "\f105";
    font: normal normal normal 20px fontawesome;
    position: absolute;
    right: 15px;
    top: 10px;
}
.nav-link[data-toggle]:not(.collapsed):before {
    content: "\f107";
    font: normal normal normal 20px fontawesome;
    position: absolute;
    right: 15px;
    top: 10px;
}
#sidebar{
    height: 100%;
    width: 23%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    overflow-x: hidden;
    padding: 0 !important;
    box-shadow: 2px 0px 3px 2px #00000021;
	transition-duration: 1.5s;
}
#sidebar ul{
	width:100%;
	padding-left:0 !important
}
#sidebar li{
	border-top: 1px solid #ddd;  padding: 0px 0px;
  width:100%;
  position:relative
}
.disable-btn{
	position: absolute;
    top: 10px;
    right: 10px;
}
.ul-list-icon i{
    background-color: #E8ECF2;
    height: 24px;
    width: 24px;
    display: block;
    font-size: 14px;
    border-radius: 50px;
    text-align: center;
    line-height: 25px;
    position: absolute;
    right: 8px;
    top: 11px;
}
.logo-sidebar {
    padding: 30px 20px;
}
.logo-sidebar img{
	width:80%
}
#sidebar li.nav-item.active a{
	background:#996633;
	color:#fff;
	font-size:18px;
	text-transform:uppercase;
	font-family:roboto
}
#sidebar .nav-item ul{
	background-color:#E8EDF2;;
}
.remove-sidebar{
	left: -99% !important;
}
.remove-spece{
    margin-left: 0 !important;
}
.right-side .menu-btn{
	display:none
}
.remove-spece.right-side .menu-btn{
	display:block
}
.disable-btn i{
	font-size:20px;
	cursor: pointer;
}
.menu-btn{
	position:absolute;
	top: 20px;
	left: 42px;
}
.menu-btn i{
	font-size:24px;
	color:#996633;
	cursor: pointer;
}
#sidebar ul img{
	height: 25px;
	margin-right:10px;
}
#sidebar ul a{
	font-size:15px;
	font-weight:bold;
	color:#000
}
.logout-btn{
  background-color:#E8ECF2;
}
.logout-btn, .addchild-btn {
    width: 50% !important;
    float: left;
    position:relative;
	height:45px
}
.logout-btn i{
	  background-color: #E8EDF2;
	  padding: 7px;
	  height: 24px;
	  width: 24px;
	  display: block;
	  font-size: 14px;
	  border-radius: 50px;
	  text-align: center;
	  line-height: 11px;
	  position: absolute;
	  right: 8px;
	  top: 11px;
}
.addchild-btn{
  border-color:#E8EDF2 !important
}
.addchild-btn i{
    background-color: #E8EDF2;
    height: 24px;
    width: 24px;
    display: block;
    font-size: 14px;
    border-radius: 50px;
    text-align: center;
    line-height: 25px;
    position: absolute;
    right: 8px;
    top: 11px;
}
.nav-link.page-active{
	border-right: 5px solid #963;
}
#sidebar a{
	color:#444444;
	padding: 20px 20px !important;
	display: block;
	font-size:18px;
	font-family:roboto
}
.right-side{
    margin-left: 23%;
    font-size: 20px; 
    padding: 35px 25px !important;
	padding-bottom:0 !important;
	transition-duration: 1.3s;
}
.left-side h1{
	font-style: normal;
	font-weight: 600;
	font-size: 30px;
	line-height: 35px;
	color: #0D406D;
}
.right-siide{
	text-align:right;
	font-size:16px
}
.right-siide i{
	font-size:14px
}
.search-box input[type=text] {
	  border: 1px solid #E5E5E5;
	  box-sizing: border-box;
	  font-size: 16px;
	  background-color: white;
	  background-image: url('images/searchicon.png');
	  background-position: 97%;
	  background-repeat: no-repeat;
	  padding: 15px 20px 15px 20px;
	  -webkit-transition: width 0.4s ease-in-out;
	  transition: width 0.4s ease-in-out;
	  width: 100%;
	  margin: 0;
	  height: 50px;
	  border-radius: 8px;
	  background-size: 24px;
	  font-family: 'Roboto';
}
.user-profile {
    text-align:right
}
.user-profile a{
	font-size:14px;
	font-family:roboto;
	font-weight:bold;
	color:#000;
	text-decoration: none;
}
.user-profile img{
	background-color:#f2f2f2;
	padding:10px;
	margin-right:10px;
	height: 45px;
	border-radius: 50px;
}
.box-row .col-md-10{
	margin-left:auto !important;
	margin-right:auto !important;
	float: none;
}
.inner-box{
	border:1px solid #963;
	padding:30px;
	position: relative;
	margin-bottom:30px;
	border-radius:10px;
    min-height: 367px;
}
.title-box{
	width: 80%;
}
.title-box h3{
	font-size: 26px;
	margin-top:0;
	font-family:roboto;
	font-weight:bold;
	position:relative;
	padding-bottom:20px
}
.title-box h3:before{
    content:"";
    height:4px;
    width:70px;
    background-color:#963;
    position:absolute;
    bottom:0
}
.title-box h2{
	font-size:44px;
	font-family:roboto;
	font-weight:bold;
}
.other-points{
	margin-top: 30px;
}
.other-points p{
	font-size: 24px;
	font-family: 'Roboto';
	font-weight:600;
}
.image-box{
	position:absolute;
	top: 30px;
	right: 30px;
}
.image-box img{
	height:90px
}

.title-section{
	margin-bottom: 15px;
}
.child-table h3{
	margin-top: 0;
	font-weight: normal;
	font-size: 20px;
	line-height: 30px;
	color: #000000;
	margin-bottom:0
}
.child-table td{
	font-weight: normal;
	font-size: 18px;
	line-height: 21px;
    color: #444444;
}

.child-table tr{
	background-color:#fff;
	padding:10px 10px !important;
	border:1px solid #ddd
}

footer{
	margin-top:50px;
	margin-bottom:20px
}
footer p{
	font-weight: normal;
	font-size: 16px;
	line-height: 19px;
	color: #0D406D;
}
footer img{
	margin-left:auto;
	display:block;
	height:50px
}
.button-switch {
  font-size: 16px;
  height: 35px;
  margin-bottom: 0;
  position: relative;
  width: 80px;
}
.button-switch .lbl-off,
.button-switch .lbl-on {
  cursor: pointer;
  display: block;
  font-size: 10px;
  font-weight: normal;
  line-height: 17px;
  position: absolute;
  top: 0.5em;
  transition: opacity 0.25s ease-out 0.1s;
}
.button-switch .lbl-off {
  right: 15px;
  margin-bottom: 0;
  color: #fff;
  top: 6px;
}
.button-switch .lbl-on {
  color: #fefefe;
  opacity: 0;
  left: 9px;
  margin-bottom: 0;
  top: 6px;
}
.button-switch .switch {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 0;
  font-size: 1em;
  left: 0;
  line-height: 0;
  outline: none;
  position: absolute;
  top: 0;
  width: 0;
}
.button-switch .switch:before, .button-switch .switch:after {
  content: "";
  font-size: 1em;
  position: absolute;
}
.button-switch .switch:before {
  border-radius: 1.25em;
  background: #bdc3c7;
  height: 28px;
  left: -0.25em;
  top: -0.1875em;
  transition: background-color 0.25s ease-out 0.1s;
  width: 80px;
}
.button-switch .switch:after {
  box-shadow: 0 0.0625em 0.375em 0 #666;
  border-radius: 50%;
  background: #fff;
  height: 20px;
  transform: translate(0, 0);
  transition: transform 0.25s ease-out 0.1s;
  width: 20px;
}
.button-switch .switch:checked:after {
  transform: translate(50px, 0);
}
.button-switch .switch:checked ~ .lbl-off {
  opacity: 0;
}
.button-switch .switch:checked ~ .lbl-on {
  opacity: 1;
}
.button-switch .switch#switch-orange:checked:before {
  background: #e67e22;
}
.button-switch .switch#switch-blue:checked:before {
  background: #5CB702;
}
.heading-row{
	background-color:#20202f;
	margin-left:15px !important;
	margin-right:15px !important;
	color:#fff;
	padding:15px
}
.heading-row h4{
	margin-bottom:0;
	font-weight:normal;
	font-size:20px
}
.heading-row h5{
	margin-bottom:0;
	font-weight:normal;
	font-size:16px;
	text-align:right;
}
.heading-row h5 i{
	 background-color: #4c4d6b;
	 height: 24px;
	 width: 24px;
	 display: inline-block;
	 font-size: 14px;
	 border-radius: 50px;
	 text-align: center;
	 line-height: 25px;
	 margin-left: 12px;
}
.child-table tr td:nth-last-child(1){
	width:10% !important
}
.progress-list{
	padding-left:0;
	list-style:none;
	text-align:right;
	margin-bottom:0
}
.progress-list li{
	height:25px;
	width:30px;
	display:inline-block;
	background-color:#f7931ea3
}
.progress-list li.activelist{
	height:25px;
	width:29px;
	display:inline-block;
	background-color:#f7931e
}
.blue-clr-list li{
	    background-color: #00b5ae59;
}
.blue-clr-list li.activelist{
	    background-color: #00b5ae;
}
.heading-row span{
	color:#00b5ae;
	font-size:18px
}
.personal-detail{
	background-color:#fff;
	padding:15px
}
.personal-detail input{
	height:45px;
	width:100%;
	background-color:#eee;
	padding: 10px;
	border: 1px solid #ddd !important;
	font-size: 16px;
	margin: 7px 0;
}

.personal-detail select{
	width:100%;
	height:45px;;
	width:100%;
	margin: 7px 0;
    border: 1px solid #ddd;
    font-size: 16px;
   padding: 5px 10px;;
   background-color:#eee
}
.blue-btn{
	background-color: #38395a !important;
    border: none;
    color: white !important;
    padding: 15px 20px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 20px 0px 20px 0px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position:relative;
    padding-right:60px;
    text-decoration:none !important
}
.blue-btn i{
	background-color: #4c4d6b;
    height: 24px;
    width: 24px;
    display: block;
    font-size: 14px;
    border-radius: 50px;
    text-align: center;
    line-height: 25px;
    position: absolute;
    right: 10px;
    top: 15px;
}
.over-all textarea{
	height:100px;
	margin-bottom:10px;
	background-color:#eee
}
.title{
	color:#38395a
}
.red-clr i{
    background-color:#ef8689;
}
.textarea{
	height: 45px;
    width: 100%;
    margin: 7px 0;
    border: 1px solid #ddd;
    font-size: 16px;
    padding: 10px 10px;
    background-color: #eee;
    line-height:22px
}

.add-assist{
	display:inline-block;
	vertical-align:middle;
	margin-top:15px;
	margin-right:10px;
	line-height:0
}
.grey-bg{
	background-color: #b3b3b3 !important;
}
.personal-detail .bootstrap-select{
	width: 97% !important;
    height: 41px;
    margin-left: 15px !important;
    margin-right: 15px !important;
    display: block !important;
    border-radius: 0;
}
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
.top-screen{
	height: 190px;
	background:#996633;
	transform: rotate(-3deg);
	margin-top: -60px;
	width: 105%;
	margin-left: -15px;
	margin-right: -15px;
	display: block;
}
.login-register{
	width:45%;
	background:#fff;
	display: block;
	z-index: 999999999999999;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 1px 1px 13px 2px #00000017;
	margin-top: -45px;
	border-radius:10px;
	margin-bottom: 60px;
}
.login-box{
	padding:60px
}
.logo-section{
	text-align:center;
	margin-bottom: 25px;
}
.logo-section img{
    height: auto !important;
}
.box-title{
	text-align:center;
	text-transform:uppercase;
	font-weight:bold;
	font-size:40px;
	margin-bottom: 30px;
}
.login-btn{
	display:block;
	width:100%;
	font-size:18px;
	text-transform:uppercase;
	font-weight:bold;
	padding:10px;
	background-image: linear-gradient(#996633 60%, #c1976c 100%);
	color:#fff !important;
	margin-top:30px;
	border:1px solid #c0956a
}
@media(min-width:1349px){
	.login-register{
		width:550px;
	}
}
.box-row .row-width{
	float:none;
	margin-left:auto;
	margin-right:auto
}
.heading-page h1{
	font-size:30px;
	text-transform:uppercase;
	font-weight:bold;
	margin-bottom:50px;
	color:#333
}
.category-list label{
	font-weight:700;
	width:25%;
	font-size:24px;
	line-height:35px
}
.category-list select{
	padding: 10px 10px;
	width: 74%;
	border: 1px solid #ddd;
	border-radius: 6px;
}
.all-document input[type="text"]{
	padding: 10px 10px;
	width: 74%;
	border: 1px solid #ddd;
	border-radius: 6px;
}
.file-list{
	margin-top:30px;
	margin-bottom:30px
}
.all-document label{
    font-weight:700;
	width:25%;
	font-size:24px;
	line-height:35px;
	display:inline-block;
}
.file-list #myFile{
	display:inline-block;
	width:74%
}
.file-list b{
	padding-left:25%;
	display: block;
	margin-top: 25px;
	font-size:16px
}
.submit-add input{
	display: block;
    width: 74%;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 12px;
    background-image: linear-gradient(#996633 60%, #c1976c 100%);
    color: #fff !important;
    margin-top: 30px;
    border: 1px solid #c0956a;
    margin-left:25%
}
.file-list b span{
	font-weight:normal
}
.table-top{
	border:1px solid #ddd;
	border-radius:10px;
	overflow:hidden;
}
.notice-table th{
	background-color:#996633;
	padding:15px 20px;
	font-weight:normal;
	font-size:22px;
	color:#fff
}
.notice-table td{
	padding:15px 20px;
	font-weight:normal;
	font-size:22px;
}
.notice-table tr:nth-last-child(even) td{
	background-color:#f6eee6
}
.notice-table i{
	border-right:1px solid #333;
	padding-right:20px
}
.notice-table tr td:nth-child(3), .notice-table tr td:nth-child(4) , .notice-table tr td:nth-child(5){
	padding-right:0
}
.notice-table tr td:nth-child(5) i{
	border:0
}
.addnotice{
	text-align:right;
}
.addnotice a{
	background:#963;
	color:#fff;
	font-size: 20px !important;
	padding: 12px 22px;
	border-radius: 10px;
	font-weight: 400;
	text-transform: uppercase;
	text-decoration:none !important
}
.top-heading h1{
    color:#333333 !important;
    font-size:30px;
    font-weight:bold;
}
.top-heading h3{
	font-size:24px;
	font-weight:bold;
	color:#666666
}
.all-forum{
	border:1px solid #ddd;
	border-radius:15px;
	overflow:hidden;
	margin-top: 35px;
    margin-bottom: 50px;
}
.all-forum .single-forum:nth-child(odd){
	background-color:#f7f0e9
}
.all-forum .single-forum{
	padding:30px;
	display:flex;
}
.all-forum .single-forum .left-image img{
	margin-right:20px;
	width: 130px;
}
.first-line div{
	display:inline-block;
	font-size:18px;
	font-weight:bold;
	color:#996633;
	border-right:1px solid;
	line-height: 21px;
	padding-right: 12px;
	padding-left: 10px;
}
.first-line {
	margin-bottom:15px
}
.first-line div.profile-name{
	padding-left:0;
}
.date-name{
	border-right:0 !important
}
.content-line{
	font-size:18px;
	line-height:30px;
	margin-bottom:20px;
	color:#000
}
.last-line a{
	font-size:20px;
	color:#000;
	margin-right:10px;
	border-right:1px solid #000;
	padding-right: 12px;
	padding-left: 0;
	line-height: 20px;
	display: inline-block;
}
.last-line a:hover{
	color:#963;
}
.last-line a:nth-last-child(1){
	border:0 !important
}
.heading-h2{
	font-size:24px;
	font-weight:700;
	margin-top:0 !important;
	margin-bottom:0;
	color:#333333
}
.ans-forum.all-forum .single-forum:nth-child(even){
	background-color:#f9f5f1
}
.ans-forum.all-forum .single-forum:nth-child(odd){
	background-color:#ffffff
}
#cke_editor1{
	width: 73%;
	display:inline-block;
	vertical-align: text-top;
}#cke_editor2{
	width: 73%;
	display:inline-block;
	vertical-align: text-top;
}
#cke_editor3{
	width: 73%;
	display:inline-block;
	vertical-align: text-top;
}
.title-name{
	margin-bottom:20px
}
.all-detail{
	border:1px solid #fbf9f7;
	border-radius:10px;
	overflow:hidden
}
.notice-detail label{
	font-size:28px;
	font-weight:600;
	text-align:center;
	margin-bottom:0

}
.notice-detail td:nth-child(1){
	width: 23%;
	padding: 20px 30px;
}
.notice-detail h3{
		font-size:28px;
	font-weight:600;
	margin-top:0;
	margin-bottom:0
}
.notice-detail td{
	padding: 20px;
	vertical-align: top;
}
.notice-detail p{
	line-height:30px;
	font-size:18px
}
.notice-detail tr:nth-child(even){
	background-color:#f6efe8
}
.notice-detail tr:nth-child(odd){
	background-color:#fbf9f7
}
.notice-detail .date{
	font-size:25px;
	color:#333333
}
.all-document input[type="text"]{
	font-size: 22px;
	padding: 12px 20px !important;
	display: inline-block;
	height: auto;
	color: #333;
}
.all-document input[type="date"]{
	font-size: 22px;
	padding: 12px 20px !important;
	display: inline-block;
	height: auto;
	color: #333;
	    width: 74%;
    border: 1px solid #ddd;
    border-radius: 6px;
}
.date-edit{
	    margin-top: 20px;
}
.modal-backdrop{
	background-color: #0000007a;
}
.modal {
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
}
.delete-popup .close span{
	font-size:30px !important;
	opacity:1 !important
}
.delete-popup .close{
	opacity:1 !important;
}
.delete-popup .modal-box{
	padding:40px 80px;
	text-align:center
}
.delete-popup h2{
	margin-top:0;
	font-size:30px !important;
	text-transform:uppercase;
	font-weight:bold;
}
.delete-popup p{
	font-size:20px !important;
	line-height:33px;
	margin-top:20px;
	margin-bottom:20px;
	font-weight:500
}
.delete-popup .btn{
	color:#cc9966;
	border:1px solid #cc9966;
	font-size:20px;
	background-color:transparent;
	padding:10px 30px;
	border-radius:10px;
	margin-left:10px;
	margin-right:10px
}
.delete-popup .btn:hover{
	background-color:#c96;
	color:#fff
}
.box-row i{
	cursor: pointer;
}
.delete-popup .modal-content{
	border-radius:20px;
}
.view-enq{
	background:#963;
	color:#fff !important;
	font-size: 20px !important;
	padding: 12px 22px;
	border-radius: 10px;
	font-weight: 400;
	text-transform: uppercase;
	text-decoration:none !important;
	margin-left:auto;
	display: block;
	width: max-content;
}
.dashboard-detail.notice-detail td:nth-child(1) {
    width: 35%;
}
.dashboard-detail.notice-detail tr:nth-child(even){
	background-color:#fbf9f7
}
.dashboard-detail.notice-detail tr:nth-child(odd){
	background-color:#f6efe8
}
.enq-table.notice-table td{
	padding: 20px;
}
.enq-table.notice-table select{
	background-color:transparent;
	border:0
}
.enq-table.notice-table .fa-trash{
	border:0;
	padding-right:0
}
.enq-table.notice-table .fa-eye{
	padding-right:15px;
	margin-right:15px
}
.status-filter{
	text-align:right;
}
.status-filter .status-option{
	display:inline-block;
	width:30%
}
.search-filter{
	display:inline-block;
	width:30%;
	margin-left:10px
}
.status-option select{
    width:100%;
    font-size:16px;
    padding:10px 15px;
    border-radius:10px
}
.search-filter input{
	font-size:18px;
	padding:10px 15px;
    border-radius:10px;
    width:100%
}
.obs-product tr td:nth-child(2){
	font-size: 24px;
}
.booked-table .enq-table.notice-table td{
	padding:15px;
	font-size:20px
}
.booked-table .enq-table.notice-table th{
	padding:15px;
	font-size:20px
}
.user-table td:nth-last-child(1){
	text-align:right;
}
.user-table.enq-table.notice-table .fa-trash{
	    padding-right: 15px;
	    margin-right: 8px;
	    border-right: 1px solid #333;
}
.user-table.enq-table.notice-table .fa-plus{
	padding-right:0;
	border: 1px solid #333;
	border-radius: 39px;
	width: 24px;
	height: 24px;
	text-align: center;
	display: inline-block;
	line-height: 24px;
	color: #333;
	font-size: 15px;
}
.user-table img{
	height: 16px;
}
.user-detail.notice-detail td:nth-child(1){
	width: 57%;
}
.upload-doc{
	display:flex;
	align-items: center;
	margin-bottom: 15px;
}
.upload-doc img{
	margin-right:10px;
	height: 60px;
}
.upload-doc p{
	margin-bottom:0;
	font-size:16px;
}
.upload-doc3{
	margin-bottom:0
}
.upload-doc b{
	font-size:16px;
}
.all-user-detail label, .all-user-detail p{
	display:inline-block;
	font-size: 24px;
}
.all-user-detail label{
	margin-right:10px
}
.left-label{
	display:inline-block;
	width: 15%;
	vertical-align: top;
}
.right-document{
	display:inline-block;
	width: 84%;
}
.right-edit-document{
	width: 100%;
	margin-bottom: 50px;
}
.right-edit-document .upload-doc{
	margin-right: 23px;
	margin-bottom: 0;
	display: inline-block;
	width: 24%;
}
.document-upload{
	margin-top: 50px;
	margin-bottom: 50px;
}
.input-file{
	display: inline-block;
	width: 35%;
	vertical-align: top;
}
.Category-edit{
	display: inline-block;
	width: 37%;
	vertical-align: top;
}
.right-edit-document .upload-doc img{
	display:inline-block !important;
}
.right-edit-document .upload-doc .doc-right{
    display:inline-block !important;
    vertical-align: middle;
}
.input-file input{
	font-size:16px;
	margin-bottom:10px
}
.input-file b{
	font-size:20px;
	line-height: 35px;
	display: block;
}
.input-file span{
	font-weight:normal
}
.Category-edit label{
	font-size:24px;
	width: 30%;
}
.Category-edit select{
	border:1px solid #ddd;
	width:100%;
	display: inline-block;
	padding: 10px;
	border-radius: 10px;
	width: 68%;
}
.update-submit{
	display: block;
    width: 74%;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 12px;
    background-image: linear-gradient(#996633 60%, #c1976c 100%);
    color: #fff !important;
    margin-top: 30px;
    border: 1px solid #c0956a;
}
.notice-detail{
	width:100%;
}
.search-filter .filter-btn{
	border:1px solid #333 !important;
	background:none !important;
	color:#000;
	padding: 10px 15px;
	border-radius: 10px;
	height: 45px;
}
.flat-detail{
	margin-top:15px;
	margin-bottom: 20px;
}
.flat-detail input{
	border: 1px solid #ddd;
	display: inline-block;
	padding: 10px;
	border-radius: 10px;
	width: 55%;
	margin-left: auto;
	color:#231f20;
	font-size: 16px;
}
.flat-detail label{
	width: 42%;
}
.date-detail{
	margin-top:15px;
	margin-bottom:15px;
}
.date-detail input{
	border: 1px solid #ddd;
	display: inline-block;
	padding: 10px;
	border-radius: 10px;
	width: 55%;
	margin-left: auto;
	color:#231f20;
	font-size: 16px;
}
.date-detail label{
	width: 42%;
}
.contract-date{
	padding-left:0;
	margin-bottom: 0;
}
.contract-date li{
	list-style:none;
	font-size: 20px;
	line-height: 35px;
}
@media(max-width:1400px){
	.inner-box{
		min-height: 266px;
	    padding: 25px;
	}
	.other-points p {
		font-size: 16px;
		font-family: 'Roboto';
		font-weight: 600;
	}
	.title-box h2 {
		font-size: 30px;
		font-family: roboto;
		font-weight: bold;
	}
	.title-box h3 {
		font-size: 22px;
	}
	.image-box img {
		height: 70px;
	}
	.other-points p:nth-last-child(1){
	    margin-bottom:0
    }
	.notice-table th{
		background-color:#996633;
		padding:15px 20px;
		font-weight:normal;
		font-size: 16px;
		color:#fff;
	}
	.notice-table td{
		padding: 15px 14px;
		font-weight:normal;
		font-size: 16px;
	}
	.notice-detail h3{
		font-size: 20px;
		font-weight:600;
		margin-top:0;
		margin-bottom:0;
	}
	.notice-detail p{
		line-height: 28px;
		font-size: 16px;
	}
	.notice-detail .date{
		font-size: 20px;
		color:#333333;
	}
	.notice-detail label {
    	font-size: 20px;
	}
	.view-enq{
		font-size: 16px !important;
	}
	.all-document input[type="text"]{
		font-size: 18px;
	}
	.all-document label {
      	font-size: 20px;
	}
	.all-document input[type="date"] {
    	font-size: 18px;
    	padding: 10px 20px !important;
	}
	.last-line a{
		font-size:18px;
	}
	.content-line {
		font-size: 16px;
		line-height: 28px;
	}
	.obs-product tr td:nth-child(2) {
		font-size: 20px;
	}
	.booked-table .enq-table.notice-table td{
		padding: 10px;
		font-size: 16px;
	}
	.booked-table .enq-table.notice-table th{
		padding: 10px;
		font-size: 16px;
	}
	.status-option select{
		width:100%;
		font-size:16px;
		padding: 7px 14px;
		border-radius:10px;
	}
	.search-filter .filter-btn{
		height: 40px;
	}
	#sidebar a{
		    padding: 15px 20px !important;
	}
	.all-user-detail label, .all-user-detail p {
		display: inline-block;
		font-size: 18px;
	}
	.left-label label{
		font-size:18px;
	}
	.right-edit-document .upload-doc p {
		margin-bottom: 0;
		font-size: 14px;
	}
	.right-edit-document .input-file b {
		font-size: 14px;
		line-height: 24px;
	}
	.right-edit-document .input-file{
		width: 34%;
	}
	.Category-edit label{
		font-size:18px
	}
	.Category-edit select{
		font-size:16px;
		padding: 8px;
	}
	.search-box input[type=text]{
		height: 41px;
	}
}

.notice-table .fa-eye{
	border-right:1px solid !important;
	padding-right: 10px !important;
    margin-right: 10px !important;
}
.notice-table .fa-pencil-square-o{
	border-right:1px solid !important;
	padding-right: 10px;
	margin-right: 10px;
}
.user-table.enq-table.notice-table .fa-trash{
	padding-right:10px !important;
}
.notice-new  .fa-trash{
	border-right:0;
}
.notice-new tr td:nth-child(3){
	text-align:right
}
.pagination {
	display: inline-block;
	padding-left: 0;
	margin: 20px 0;
	border-radius: 4px;
}
.pagination > li {
display: inline;
}
.pagination > li > a,
.pagination > li > span {
	position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.42857143;
	color: #20202f;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
	margin-left: 0;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
	color: #23527c;
	background-color: #eee;
	border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
	z-index: 2;
	color: #fff;
	cursor: default;
	background-color: #996633;
	border-color: #996633;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
	color: #777;
	cursor: not-allowed;
	background-color: #fff;
	border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
	padding: 10px 16px;
	font-size: 18px;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
	padding: 5px 10px;
	font-size: 12px;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
@media(max-width:1250px) and (min-width:1078px){
	.other-points {
		margin-top: 0;
	}
}


    .submit-add.col-md-6 {
    margin-left: 73%;
}

input.all-text-cl {
    width: 50% !important;
}
.login-box input[type="text"] {
    width: 100% !important;
}
input[type=button], input[type=submit], input[type=reset]  {
  background-color: #996633 !important;
  border-radius: 8px;
  border: none;
  color: white;
  padding: 15px 20px;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 20px 0px 20px 0px;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: #FFFFFF;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #e32222;
}

span.select2.select2-container.select2-container--default.select2-container--below.select2-container--focus {
    width: 51%;
}

   label#flatno-error {
    margin-left: 27%;
    margin-top: 10%;
    display: initial;
    font-size: 12px;
}

   label#date-error {
    margin-left: 27%;
    margin-top: 10%;
    display: initial;
    font-size: 12px;
}

select#userDetail {
    width: 50%;
    height: 46px;
}
   label#user_id-error {
    margin-left: 27%;
    margin-top: 10%;
    display: initial;
    font-size: 12px;
}
select {
    width: 50%;
    height: 45px;
}

label#show-flatno-error {
    display: none;
}