@import url('https://fonts.googleapis.com/css?family=Nunito:400,700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=PT+Sans+Caption:700&display=swap');
/*End of including Font */

/*Start Some Basic CSS for reset some Important Properties*/

html, body {}

* {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, p {
  margin: 0;
}

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  background: #c7eeff;
  position: relative;
}

input[type="file"] {
  display: none;
}

/*End of Basic Properties*/

/*Start Designing Button*/

.button {
  color: white;
  font-family: 'PT Sans Caption', sans-serif;
  font-weight: normal;
  font-size: 13px;
  border: 1px solid transparent;
  padding: 7px 10px;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none !important;
  display: inline-block;
}

.button i {
  margin-right: 5px;
}

.button:hover {
  color: white !important;
}

.button-default {
  background: #777;
}

.button-default:hover {
  background: #555;
}

.button-primary {
  background: #337ab7;
}

.button-primary:hover {
  background: #414141;
}

.button-success {
  background: #E65100;
}

.button-success:hover {
  background: #414141;
}

.button-danger {
  background: #444;
}

.button-danger:hover {
  background: #222;
}

/*End Designing Button*/

/*Start Design Form*/

.form button {
  margin-left: 15px;
}

.form label {
  display: block;
  position: relative;
  margin-bottom: 10px;
}

.form input, .form select, .form textarea {
  transition: all 0.8s ease-in-out;
  width: 100%;
  height: 32px;
  padding-left: 15px;
  border: 1px solid #cfdce2;
  outline: none;
  font-size: 14px;
  color: #999;
  font-weight: normal;
}

.form input.with-icon {
  padding-left: 44px;
}

.form span.form-icon {
  position: absolute;
  top: 0;
  left: 0;
}

.form span.form-icon i {
  position: relative;
  top: 10px;
  left: 20px;
  font-size: 16px;
  color: #999;
}

.form input:hover, .form input:focus, .form select:hover, .form select:focus, .form textarea:hover, .form textarea:focus {
  transition: all 0.8s ease-in-out;
  border: 1px solid #E65100;
  color: #444;
}

.form textarea {
  padding-top: 10px;
  resize: none;
  height: inherit;
}

.form input::-webkit-input-placeholder, .form textarea::-webkit-input-placeholder {
  color: #999;
}

.form input::-moz-placeholder, .form textarea::-moz-placeholder {
  color: #999;
}

.form input:-ms-input-placeholder, .form textarea:-ms-input-placeholder {
  color: #999;
}

.form input[type="radio"], .form input[type="checkbox"] {
  width: inherit;
  height: inherit;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  display: none;
}

.checkbox-custom label, .radio-custom label {
  font-size: 16px;
  font-weight: normal;
  outline: none;
  cursor: pointer;
  position: relative;
  padding-left: 21px;
  display: inline-block;
  margin: 0 20px 0 0;
}

.radio-custom label:before {
  content: "";
  border: 3px solid #cfdce2 !important;
  position: absolute;
  top: 4px;
  left: 0;
  border-radius: 64px;
  width: 16px;
  height: 16px;
}

.radio-custom input[type="radio"]:checked+label:after {
  background-color: #e75b0f;
  color: #e75b0f;
  content: "";
  position: absolute;
  top: 8px;
  left: 4px;
  border-radius: 64px;
  width: 8px;
  height: 8px;
}

.radio-custom, .checkbox-custom {
  margin-bottom: 10px;
}

.checkbox-custom label:before {
  border: 3px solid #cfdce2;
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 2px;
}

.checkbox-custom input[type="checkbox"]:checked+label:after {
  background-color: #e75b0f;
  color: #e75b0f;
  position: absolute;
  font-family: "FontAwesome";
  content: "\f00c";
  font-size: 14px;
  top: 1px;
  left: 1px;
  width: 0;
  height: 0;
  transform: rotate(-9deg);
}

.form-element p, .radio-custom p {
  color: #E65100;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
}

/*End Design Form*/

/*Start loading Icon*/

.se-pre-con {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../image/preloader.gif) center no-repeat #fff;
}

/*End Loading Icon*/

/*Start registration.html CSS*/

.reg-log-bg>img {
  min-height: 100%;
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
}

.parent-login {
  position: relative;
  height: 100vh;
}

.parent-reg-log {
  background: #fff;
  position: absolute;
  ;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 768px;
  padding: 25px;
  box-shadow: 0 1px 40px 0 rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width:991px) {
  .parent-reg-log {
    max-width: 100%;
    width: 100%;
    left: 0;
    transform: translate(0, -50%);
  }
}

.registration-logo-box {}

.registration-logo-box img {
  width: 250px inherit;
  display: block;
  margin: 0 0 10px;
  float: left;
}

.registration-login-form h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #E65100;
}

.registration-login-form {}

.for-signup-user {
  float: right;
  font-size: 15px;
  font-weight: 500;
  color: #999;
}

.for-signup-user a {
  margin-left: 5px;
}

.agreement-button-part {
  margin-top: 10px;
}

.agreement-button-part label {
  color: #E65100;
  font-size: 17px;
}

/*End registration.html CSS*/

/*Start Bootstrap Customization CSS*/

.container-fluid {
  padding: 0 20px;
}

.navbar {
  min-height: 60px;
}

.navbar-default {
  background: #fff;
  border-color: #fff;
}

.navbar-brand {
  height: 60px;
}

.navbar-nav>li>a {
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:hover, .navbar-default .navbar-nav>.open>a:focus {
  background-color: #fff;
}

.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 1px 5px 6px rgba(0, 0, 0, 0.03);
}

.dropdown-menu>li>a {
  color: #888;
}

.dropdown-menu>li>a:hover {
  background: none;
  color: #e65100;
}

.navbar-nav {
  margin: 0;
}

.panel {
  border-radius: 0;
}

.input-group-addon {
  padding: 2px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  position: absolute;
  right: 15px;
  top: 10px;
  background: none;
  border: none;
  border-radius: 0;
}

@media (min-width: 250px) {
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-header {
    float: left !important;
  }
}

@media (max-width: 310px) {
  .nav>li>a {
    padding: 20px 5px;
  }
}

/*End Bootstrap Customization CSS*/

/*Start navigation CSS*/

.branding-nav {}

.branding-nav img {
  width: 55px;
  display: inline-block;
  margin-top: -7px;
}

.branding-nav p {
  display: inline-block;
  margin-left: 10px;
  font-size: 22px;
  font-weight: 400;
  color: #aaa;
}

.dropdown-toggle span {
  /* padding: 0 3px; */
}

.navbar-round {
  width: 48px;
  display: inline-block;
  margin: -20px 0;
  height: 48px;
  border: 3px solid #ddd;
  border-radius: 24px;
  overflow: hidden;
}

.navbar-round img {
  width: 100%;
}

.collapse-menu {
  float: left;
}

.collapse-menu a {
  font-size: 23px;
  margin: 14px 10px 14px 0;
  display: block;
  color: #E65100;
  transition: all 0.5s ease-in-out;
}

.collapse-menu a i {}

.collapse-menu a:hover {
  color: #313131;
}

@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: absolute;
    width: auto;
    margin-top: 0;
    background-color: #fff;
    box-shadow: 1px 5px 6px rgba(0, 0, 0, 0.03);
    right: 0;
  }
}

@media (max-width: 446px) {
  .branding-nav>p {
    display: none !important;
  }
}

/*End navigation CSS*/

/*Start Side-menu CSS*/

.side-menu {
  background: #2d3243;
  width: 50px;
  height: 100%;
  position: absolute;
  top: -10px;
  z-index: 2;
}

.side-menu>ul {
  margin-top: 20px;
}

.side-menu>ul>li {
  display: block;
  float: left;
  width: 100%;
}

.side-menu-a {
  clear: both;
  color: #ccc !important;
  display: block;
  padding: 15px;
  font-size: 15px;
  transition: all 0.3s ease-in-out;
  float: left;
  width: 100%;
}

.side-menu-a:hover {
  color: white !important;
  background: #2d3243;
}

.side-menu-a p {
  float: left;
  margin-left: 9px;
  display: none;
}

.side-menu-a i {
  float: left;
  margin-top: 3px;
}

.side-menu-a span {
  float: right;
  margin-top: 5px;
  margin-right: 5px;
  display: none;
}

.side-dropdown {
  float: left;
  width: 100%;
  background: #1f2435;
  padding-left: 20px;
  display: none;
}

.side-dropdown li {}

.side-dropdown li a {
  text-decoration: none;
  display: block;
  padding: 10px;
  color: white;
  transition: all 0.3s ease-in-out;
}

.side-dropdown li a:hover {
  color: #e65100;
}

.block {
  display: block !important;
}

.opened {
  width: 232px;
}

.side-menu-a.actived {
  color: white !important;
}

/*End Side-Menu CSS*/

/*Start content CSS*/

.table-custom>tbody>tr:nth-of-type(odd) {
  background: #fff;
}

.table-custom>tbody>tr:nth-of-type(even) {
  background: #fff;
}

.table-custom>thead>tr>th, .table-custom>tbody>tr>th, .table-custom>tfoot>tr>th, .table-custom>thead>tr>td, .table-custom>tbody>tr>td, .table-custom>tfoot>tr>td {
  padding: 15px;
}

.table-custom>thead>tr>th {
  border-bottom: 0;
  font-size: 1.5rem;
  font-weight: normal;
}

.table-custom>tbody>tr>td {
  color: #2d3243;
  font-size: 15px;
}

.side-menu+.content {
  margin-left: 50px;
  padding-left: 15px;
  padding-top: 15px;
}

.side-menu.opened+.content {
  margin-left: 232px;
}

.content-path {}

.content-path ul {}

.content-path ul li {
  display: inline-block;
  color: #777;
  font-size: 12px;
  font-weight: 500;
}

.content-path ul li a {
  color: #777;
}

.content-path ul li span {
  margin: 0 3px;
}

.custom-file-upload {
  cursor: pointer;
}

.img-box {
  border: 4px solid #cfdce2;
  width: 150px;
  height: auto;
  overflow: hidden;
}

.img-box img {
  width: 100%;
}

.file-custom div {
  margin-bottom: 20px;
}

.common-content-parent h1 {
  font-size: 2.8rem;
  font-weight: 400;
  margin: 20px 0;
  color: #E65100;
}

.form-search {
  float: right;
  position: relative;
  height: 45px;
  margin-bottom: 15px;
}

.form-search input {
  height: 100%;
  text-indent: 10px;
  border: 1px solid #E65100;
  color: #E65100;
  font-weight: normal;
  outline: none;
}

.form-search a {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  background: #E65100;
  bottom: 0;
  width: 35px;
  color: white;
  text-align: center;
  padding: 11px;
}

.form label p {
  color: #ff7165;
}

.clearfix button {
  margin-left: 10px !important;
}

.normal {
  margin-bottom: 10px;
}

.normal button {
  margin-left: 0;
  margin-right: 10px;
}

.margin-10 {
  margin-bottom: 10px;
}

.margin-20 {
  margin-bottom: 20px;
}

.margin-30 {
  margin-bottom: 30px;
}

.file-custom label {
  width: 150px;
}

/*End content CSS*/

/*Start index CSS*/

.index-summary {
  margin: 20px 0;
}

.index-summary .info {
  padding: 25px 15px 35px;
  color: white;
}

.index-summary .info-green {
  background: #469749;
}

.info-blue {
  background: #E65100;
}

.info-red {
  background: #444;
}

.info-violet {
  background: #6d5cae;
}

.info .info-icon {
  text-align: center;
}

.info .info-icon i {
  font-size: 30px;
  border: 3px solid;
  border-radius: 50%;
  padding: 15px;
}

.info .info-detail {
  text-align: center;
}

.info-detail h2 {
  font-size: 40px;
  font-weight: 700;
}

.info-detail h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
}

.last-week-info {
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 5px;
  width: 77%;
  padding: 0 5px;
  color: white;
}

.parent-info {
  position: relative;
  margin-bottom: 20px;
}

.index-table {
  margin-bottom: 30px;
}

.panel-heading {
  padding: 15px 25px;
}

.panel-heading h3 {
  font-size: 19px;
}

.bg-dark-blue {
  background: #242529;
  color: #dbdcdf;
}

.index-table .panel {
  box-shadow: 1px 2px 0 #e5eaee;
}

.stat {
  padding: 0px 9px;
  color: white;
  width: inherit;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  font-weight: normal;
  font-size: 14px;
}

.stat:hover {
  color: white !important;
  text-decoration: none !important;
}

.stat-success {
  background: #449D44;
}

.stat-success:hover {
  background: #3b3b3b;
}

.stat-failed {
  background: #444;
}

.stat-failed:hover {
  background: #222;
}

.stat-progress {
  background: #E65100;
}

.table-custom img {
  width: 200px;
}

.clearfix .button {
  /*margin-left: 10px;*/
}

.table-select tr {
  cursor: pointer;
}

.tr-selected {
  background: #fff0f0 !important;
}

@media (min-width: 992px) {
  .index-summary .parent-info:first-child {
    padding-left: 0;
  }
}

@media screen and(max-width:400px) {
  .info-detail h2 {
    font-size: 24px;
  }
  .table-responsive {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .parent-info {
    padding-left: 0;
  }
}

@media (max-width: 500px) {
  .side-menu.opened+.content {
    margin-left: 0;
  }
}

/*End index CSS*/

/*Start Footer CSS*/

.footer {
  margin: 40px 0;
  text-align: center;
  font-size: 13px;
}

.footer hr {
  border-top: 1px solid #ccc;
  width: 70%;
  margin: 0 auto 20px;
}

.footer p {
  margin-bottom: 10px;
  color: #999;
}

.footer a {
  display: inline-block;
  margin: 0 5px;
  color: #555;
}

/*End Footer CSS*/

/*start setting CSS*/

label.bold {
  font-weight: 700;
  color: #E65100;
}

.role-div {
  background: #fff;
  padding: 15px;
  margin-bottom: 30px;
  height: 100%;
}

.parent-role {
  margin: 30px 0;
}

@media (min-width: 769px) {
  .row.is-flex {
    display: flex;
    flex-wrap: wrap;
  }
  .row.is-flex>[class*="col-"] {
    display: flex;
    flex-direction: column;
  }
  /*
    * And with max cross-browser enabled.
    * Nobody should ever write this by hand.
    * Use a preprocesser with autoprefixing.
    */
  .row.is-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .row.is-flex>[class*="col-"] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

/*End Setting CSS*/

/*Start Report CSS*/

.main-report {}

.main-report div {
  background: #fff;
  padding: 20px;
}

.main-report h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #E65100;
}

.main-report button {
  margin: 0;
}

.parent-report {
  margin: 20px 0;
}

.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus {
  background-color: #2d3243;
  border-color: #2d3243;
}

.pagination>li>a, .pagination>li>span {
  border: 2px solid #ddd;
  font-size: 16px;
  font-weight: 700;
  color: #2d3243;
  padding: 8px 15px;
}

.pagination>li>a:hover, .pagination>li>span:hover, .pagination>li>a:focus, .pagination>li>span:focus {
  color: #2d3243;
}

/*End Report CSS*/

.status-message {
  text-align: center;
  color: white;
  display: none;
  padding: 5px 0;
}

.status-message h3 {
  font-size: 17px;
  font-weight: normal;
}

.st-primary {
  background: #1976d2;
}

.st-success {
  background: #2e7d32;
}

.st-warning {
  background: #e53935;
}

.st-pending {
  background: #E65100;
}

.product-label {}

.product-label h4 {
  margin: 14px 0;
  color: #2a2f92;
  text-align: right;
}

.product-label .label-default {
  background-color: #2c3092;
}

.pdf-table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

.pdf-table td, .pdf-table th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 5px;
}

.pdf-table tr:nth-child(even) {
  background-color: #dddddd;
}

.pdf-form p {
  font-size: 17px;
  margin-bottom: 20px;
}

.pdf-form {
  margin-bottom: 30px;
}

.total-amount {}

.total-amount p {
  padding: 5px 15px;
  background: #2d3243;
  color: white;
  font-weight: 700;
}

.total-amount a {
  margin-right: 5px;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%;
}

.bootstrap-select>.dropdown-toggle {
  margin-left: 0;
  transition: all 0.8s ease-in-out;
  width: 100%;
  height: 40px;
  padding-left: 15px;
  border: 1px solid #cfdce2;
  outline: none;
  font-size: 16px;
  color: #999;
  border-radius: 0;
  line-height: 27px;
  font-weight: 400;
}

.bootstrap-select>.dropdown-toggle:hover, .bootstrap-select>.dropdown-toggle:focus {
  transition: all 0.8s ease-in-out !important;
  border: 1px solid #E65100 !important;
  color: #444 !important;
  background-color: #fff !important;
}

.dropdown-toggle .bs-caret {
  padding: 0;
}

.bootstrap-select .dropdown-menu>.disabled>a, .bootstrap-select .dropdown-menu>.disabled>a:hover, .bootstrap-select .dropdown-menu>.disabled>a:focus {
  color: #fff;
}

.employee-profile-list-group {
  text-align: center;
}

.profile-image img{

  width: 100%;
}

.employee-profile-list-group a {
  font-weight: bold;
  font-size: 16px;
  padding: 15px 0;
  color: #2d3243;
}

.employee-profile-list-group a img {
  margin-bottom: 20px;
}

.table>tbody>tr:first-child>td {
  border-top: none;
}

.employee-canvas {
  background: white;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.reciept-header {
  margin: 1rem 0;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media (max-width:767px){
  .reciept-header{
    grid-template-columns: 1fr;
  }
}
.reciept-header>div {
  padding: 2rem;
}

.reciept-header h3 {
  margin-bottom: 1rem;
  text-decoration: underline;
}

.invoice-detail table {
  width: 100%;
}

.invoice-detail .balance {
  font-size: 1.4rem;
  font-weight: 700;
}

.invoice-detail table th, .invoice-detail table td {
  padding: 0.5rem 0;
  font-size: 1.5rem;
}

.d-grid {
  display: grid;
  grid-gap: 2rem;
}

.history-detail .list-group-item {
  background: transparent;
  border: 1px solid #31708f
}

.history-detail ul li {
  font-size: 1.5rem;
}

.history-detail ul li span{
  font-weight:700;
}
.payment-mode h3{
  margin-bottom:1rem;
}
.payment-mode button{
  margin-left:0;
}