@import url("https://fonts.googleapis.com/css?family=Poppins:400,600,700");
@import url("https://fonts.googleapis.com/css?family=Courgette");
.bg-mattBlackLight {
  background-color: #3A393B;
}

.text-mattBlackLight {
  color: #303337;
}

.bg-mattBlackDark, body, .nav-link:hover, .nav-link.active {
  background-color: #212121;
}

.text-mattBlackDark {
  color: #212121;
}

.bg-mattGray {
  background-color: #878d8d;
}

.text-mattGray, body, .nav-link .icon, .nav-link .text {
  color: white;
}

.bg-mattRed {
  background-color: #ec6271;
}

.text-mattRed, .nav-link:hover .icon,
.nav-link:hover .text, .nav-link.active .icon,
.nav-link.active .text {
  color: #FCC011;
}

* {
  font-family: 'Poppins', sans-serif;
}

body {
  height: 1000px;
}

.wrapper {
  margin-top: 3.5rem;
}
h3 {
  color: red;
}
h3 .succeful {
  background-color: green;
}

.wrapper .sideMenu {
  position: fixed;
  top: 0;
  bottom: 0;
  margin: 3.5rem auto auto;
  margin-top: 2%;
  width: 12.5rem;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  z-index: 500;
}


.wrapper .content {
  width: 100%;
  margin-left: 0rem;
  margin-top: 2%;
  -webkit-transition: all ease 0.25s;
  transition: all ease 0.25s;
}

.wrapper.active .sideMenu {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.nav-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: block;
  white-space: nowrap;
}

.nav-link .icon {
  margin-right: 0.25rem;
  font-size: 1.875rem;
  vertical-align: middle;
  height: 2rem;
  width: 2rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-link .text {
  font-size: 0.875rem;
}
.navbar .navbar-dark .navbar-expand-md {
  height: 2px;
}


#staff-footer {
  padding: 0.2%;
  background-color:#3A393B;
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index:1000;
}
#staff-footer h6 {
  font-size: 1em;
  color: #f2f3f4;
  text-align: center;
  font-family: 'Nunito Sans', sans-serif;
  letter-spacing: 0.3em;
  padding-top: 0.2%;
}
@media (max-width: 1024px) {

  #staff-footer h6 {
    font-size: 0.6em;
    letter-spacing: 0.2em;
    padding-top: 1%;
  }
}


@media (min-width: 992px) {
  .sideMenu {
    margin-top: 0%;
  }
  .wrapper .sideMenu {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    
  }
  .wrapper .content {
    margin-left: 12.5rem;
  }
  .wrapper.active .sideMenu {
    width: 5rem;
  }
  .wrapper.active .sideMenu .nav-link {
    text-align: center;
  }
  .wrapper.active .sideMenu .nav-link .icon {
    margin-right: 0;
  }
  .wrapper.active .sideMenu .nav-link .text {
    display: none;
  }
  .wrapper.active .content {
    margin-left: 5rem;
  }
}
/*# sourceMappingURL=style.css.map */





#admin-login {
  background-color: #f2f3f4;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  display: table;
  position: relative;
  background-color: #212121;
  height: 100%;
  width: 100%;
  padding: 12% 0;
  padding-right: 22%;
  padding-left: 22%;
}
#admin-login .card {
  width: 60%;
  padding: 10%;
  margin: auto;
  text-align: center;
}
#admin-login .card-title{
  color: #212529;
}
#admin-login input {
  margin: 1%;
  padding-left: 5%;
  padding-right: 5%;
  text-align: center;
  width: 100%;
}
#admin-login a {
  color: #6D6F71;
  font-weight: bold;
}
#admin-login b {
  color: #FCC011;
  font-weight: bolder;
}
@media (max-width: 1024px) {
  #admin-login {
    padding-right: 10%;
    padding-left: 10%;
  }
  #admin-login .card {
    padding-top: 10%;
    margin-top: 30%;
    width: 100%;
    
  }
  #admin-login input {
    font-size: 0.9em;
    padding: 0;
    width: 100%;
  }
  #admin-login a {
    font-size: 0.8em;
  }
}

ul li {
  text-align: right;
}

.button {
  display: inline-block;
  border-radius: 4px;
  background-color: #FCC011;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.4em;
  font-family: 'Jost', sans-serif;
  padding: 10px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
  color: #FFFFFE;

  margin-left: 10%;;
}
.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  align-content: center;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
  transform: scale(1.1);
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}


main .button {
  width: 60%;
}
main .row {
  width: 80%;
}
main i {
  vertical-align: middle;
  font-size:1.5em !important;
  color: white;
}

main .card {
  width: 150%;
  margin: auto;
  text-align: center;
  background-color: #3A393B;
}

main form {
  padding-bottom: 10%;
}

main .card button{
  width: 30%;
  margin-left: 0;
}

main .card-title{
  padding-bottom: 5%;
}
main input {
  background-color: white;
  color: black;
  border-width: 2;
  border-color: black;
  text-align: center;
  padding: 1%;
  margin: 1%;
}

main ul {
  font-size : 1.3em;
}

/* the user list styling : */


body {
	color: #3A393B;
	background: #f5f5f5;
	font-family: 'Varela Round', sans-serif;
	font-size: 13px;
}
#bookingContainer {
  margin-right: 20%;
}

#bookingContainer .table-responsive {
  width: 120%;
  /* margin: 30px 0; */
}

#usersContainer {
  margin-right: 25%;
}

#packegesContainer {
  margin-right: 25%;
}
#spacesContainer {
  margin-right: 25%;
}

#userProfileContainer {
  margin-right: 25%;
}

#bookingProfileContainer {
  margin-right: 25%;
}

#membershipProfileContainer {
  margin-right: 25%;
}
#servicesContainer {
  margin-right: 25%;
}
#membershipContainer {
  margin-right: 20%; /*margin-left: ;*/
}

#revenueContainer {
  margin-right: 25%; /*margin-left: ;*/
}
#expensesContainer {
  margin-right: 20%; /*margin-left: ;*/
}

#controlPanelContainer {
  margin-right: 20%; /*margin-left: ;*/
}
#membershipContainer .table-responsive{
  width: 120%;
}

.table-responsive {
  margin: 30px 0;
}
.table-wrapper {
	background: #fff;
	padding: 20px 25px;
	border-radius: 3px;
	min-width: 1000px;
	box-shadow: 0 1px 1px rgba(0,0,0,.05);
}
.table-title {        
	padding-bottom: 15px;
	background: #3A393B;
	color: #fff;
	padding: 16px 30px;
	min-width: 100%;
	margin: -20px -25px 10px;
	border-radius: 3px 3px 0 0;
}
.table-title h2 {
	margin: 5px 0 0;
	font-size: 24px;
}
.table-title .btn-group {
	float: right;
}
.table-title .btn {
	color: #fff;
	float: right;
	font-size: 13px;
	border: none;
	min-width: 50px;
	border-radius: 2px;
	border: none;
	outline: none !important;
	margin-left: 10px;
}
.table-title .btn i {
	float: left;
	font-size: 21px;
	margin-right: 5px;
}
.table-title .btn span {
	float: left;
	margin-top: 2px;
}
table.table tr th, table.table tr td {
	border-color: #e9e9e9;
	padding: 12px 15px;
	vertical-align: middle;
}
/* table.table tr th:first-child {
	width: 60px;
} */
table.table tr th:last-child {
	width: 100px;
}
table.table-striped tbody tr:nth-of-type(odd) {
	background-color: #fcfcfc;
}
table.table-striped.table-hover tbody tr:hover {
	background: #f5f5f5;
}
table.table th i {
	font-size: 13px;
	margin: 0 5px;
	cursor: pointer;
}	
table.table td:last-child i {
	opacity: 0.9;
	font-size: 22px;
	margin: 0 5px;
}
table.table td a {
	font-weight: bold;
	color: #3A393B;
	display: inline-block;
	text-decoration: none;
	outline: none !important;
}
table.table td a i {
  color: #3A393B;

}
table.table td a i:hover{
  color: #FCC011;

}
table.table td a:hover {
	color: #FCC011;
}
table.table td a.edit {
	color: #FCC011;
}
table.table td a.delete {
	color: #F44336;
}
table.table td i {
	font-size: 19px;
}
table.table .avatar {
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 10px;
}

th{
  background-color:#FCC011;
}
.pagination {
	float: right;
	margin: 0 0 5px;
}
.pagination li a {
	border: none;
	font-size: 13px;
	min-width: 30px;
	min-height: 30px;
	color: #999;
	margin: 0 2px;
	line-height: 30px;
	border-radius: 2px !important;
	text-align: center;
	padding: 0 6px;
}
.pagination li a:hover {
	color: #666;
}	
.pagination li.active a, .pagination li.active a.page-link {
	background: #03A9F4;
}
.pagination li.active a:hover {        
	background: #0397d6;
}
.pagination li.disabled i {
	color: #ccc;
}
.pagination li i {
	font-size: 16px;
	padding-top: 6px
}
.hint-text {
	float: left;
	margin-top: 10px;
	font-size: 13px;
}    

.modal-body small {
  color: red;
}
/* Custom checkbox */
.custom-checkbox {
  position: relative;
  
}
.btn-danger{
  background-color: #6D6F71;
}
.btn-success {
  background-color: #FCC011;
  box-shadow: #FCC011;
}
.btn-success:hover {
  background-color: #cf9f0e !important;
  box-shadow: #FCC011 !important

}
.btn-warning {
  background-color: #FCC011;
  box-shadow: #FCC011;
}
.page-item :active {
  background-color: #FCC011 !important;
}
.pagination li.active a, .pagination li.active a.page-link{
  background : #FCC011;
}
.hint-text {
  color:#3A393B;
}

.custom-checkbox input[type="checkbox"] {    
	opacity: 0;
	position: absolute;
	margin: 5px 0 0 3px;
	z-index: 9;
}
.custom-checkbox label:before{
	width: 18px;
	height: 18px;
}
.custom-checkbox label:before {
	content: '';
	margin-right: 10px;
	display: inline-block;
	vertical-align: text-top;
	background: white;
	border: 1px solid #bbb;
	border-radius: 2px;
	box-sizing: border-box;
	z-index: 2;
}
.custom-checkbox input[type="checkbox"]:checked + label:after {
	content: '';
	position: absolute;
	left: 6px;
	top: 3px;
	width: 6px;
	height: 11px;
	border: solid #000;
	border-width: 0 3px 3px 0;
	transform: inherit;
	z-index: 3;
	transform: rotateZ(45deg);
}
.custom-checkbox input[type="checkbox"]:checked + label:before {
	border-color: #FCC011;
	background: #FCC011;
}
.custom-checkbox input[type="checkbox"]:checked + label:after {
	border-color: #fff;
}
.custom-checkbox input[type="checkbox"]:disabled + label:before {
	color: #b8b8b8;
	cursor: auto;
	box-shadow: none;
	background: #ddd;
}

/* change width of modal  */

.modal-dialog.modal-xl {
  width: 1140px !important;
  
  
}
/* end change width of modal  */

/* Modal styles */


.modal .modal-dialog {
  width: 400px;
  
}



.modal .modal-header, .modal .modal-body, .modal .modal-footer {
	padding: 20px 30px;
}
.modal .modal-content {
	border-radius: 3px;
	font-size: 14px;
}
.modal .modal-footer {
	background: #ecf0f1;
	border-radius: 0 0 3px 3px;
}
.modal .modal-title {
	display: inline-block;
}
.modal .form-control {
	border-radius: 2px;
	box-shadow: none;
	border-color: #dddddd;
}
.modal textarea.form-control {
	resize: vertical;
}
.modal input {
    margin: 1%;
    padding-left: 20%;
    padding-right: 20%;

}
input[type="file"] {
  display: none;
}
.custom-file-upload {
  display: inline-block;
  border-radius: 4px;
  background-color: #FCC011;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.2em;
  font-family: 'Jost', sans-serif;
  width: 100%;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
  color: #FFFFFE;
}
.modal select {
  margin: 1%;
  padding-left: 22%;
  padding-right: 22%;
  text-align: center;
}
.modal .btn {
	border-radius: 2px;
	min-width: 100px;
}	
.modal form label {
	font-weight: normal;
}	

/* style of table ends here  */
