@charset "UTF-8";
/* BASIC */
body {
  font-family: "Poppins", sans-serif;
  height: auto;
}

a {
  color: #92badd;
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
}

h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin: 40px 8px 10px 8px;
  color: #cccccc;
}

input[type="checkbox"].checking {
  display: none;
}

#contCheckin {
  display: none;
  position: fixed;
  right: 0;
  bottom: 100px;
  background: #385DDC;
  color: #FFF;
  padding: 14px;
  font-weight: bold;
}

.status {
  position: fixed;
  bottom: 10px;
  right: 5px;
}

/* STRUCTURE */
.clickAction, .cursorPointer {
  cursor: pointer;
}

.clickAction :hover, .cursorPointer :hover {
  text-decoration: underline;
}

.displayNONE {
  display: none;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
}

.bi {
  cursor: pointer;
}

#formContent #icon {
  width: 268px;
}

#formContent {
  border-radius: 10px 10px 10px 10px;
  background: #FFF;
  padding: 30px;
  width: 90%;
  max-width: 450px;
  position: relative;
  padding: 0px;
  -webkit-box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.3);
  text-align: center;
}

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

/* TABS */
h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}

/* FORM TYPOGRAPHY*/
input[type=reset] {
  background-color: #000 !important;
}

input[type=button], input[type=submit], input[type=reset] {
  font-weight: bold;
  letter-spacing: 5px;
  font-size: 14px;
  background-color: #0e9d25;
  border: none;
  color: white;
  padding: 6px 40px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  -webkit-box-shadow: 0 10px 30px 0 rgba(95, 186, 233, 0.4);
  box-shadow: 0 10px 30px 0 rgba(95, 186, 233, 0.4);
  border-radius: 5px 5px 5px 5px;
  margin: 5px 5px 15px 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
  background-color: #0e691d;
}

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

select, textarea, input[type=text], input[type=date], input[type=password], input[type=email], input[type=phone], input[type=number], input[type=time] {
  background-color: #fafafa;
  border: none;
  color: #44443f;
  padding: 6px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  width: 85%;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-radius: 5px 5px 5px 5px;
}

input[type=password]:focus, input[type=email]:focus, input[type=text]:focus, input[type=date]:focus, input[type=number]:focus {
  background-color: #fff;
  color: #3c3c3c;
  border-bottom: 2px solid #5fbae9;
}

input[type=password]:placeholder, input[type=email]:placeholder, input[type=text]:placeholder {
  color: #cccccc;
}

/* ANIMATIONS */
/* Simple CSS3 Fade-in-down Animation */
.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;
  }
}

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

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

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

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

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

.fadeIn.fourth {
  -webkit-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: "";
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
}

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

.underlineHover:hover:after {
  width: 100%;
}

/* OTHERS */
*:focus {
  outline: none;
}

#icon {
  width: 60%;
}

/*Main CSS*/
/*Login Signup Page*/
a:focus, a:hover, a {
  outline: none;
  text-decoration: none;
}

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

.header-top i {
  font-size: 18px;
}

.bg-image {
  background: url(../images/background-login.jpg) no-repeat 0 0/cover;
  position: relative;
  width: 100%;
  height: 100vh;
  display: table;
}

.login-header {
  display: inline-block;
  width: 100%;
  background: #0e1a35;
}

.login-signup {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.login-logo img {
  cursor: pointer;
  max-width: 171px;
  padding: 23px 15px 22px;
  width: 100%;
}

.login-header .navbar-right {
  margin-right: 0px;
}

.login-header .nav-tabs > li.active > a,
.login-header .nav-tabs > li.active > a:focus,
.login-header .nav-tabs > li.active > a:hover {
  background-color: transparent;
  border: none;
  color: #fff;
}

.login-header .nav-tabs > li > a {
  border: medium none;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 48px;
  padding: 15px 30px;
  color: #fff;
}

.login-header .nav-tabs {
  border-bottom: none;
}

.login-header .nav-tabs > li {
  margin-bottom: 0px;
}

.login-header .nav > li > a:focus,
.login-header .nav > li > a:hover {
  background: none;
  text-decoration: none;
}

.login-header .nav-tabs > li.active {
  border-bottom: 6px solid #5584ff;
}

.login-inner h1 {
  color: #8492af;
  font-size: 48px;
  font-weight: 300;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
}

.login-inner h1 span {
  color: #5584ff;
}

.login-form {
  text-align: center;
}

.login-form input {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border-color: -moz-use-text-color -moz-use-text-color #d4d9e3;
  -o-border-image: none;
     border-image: none;
  border-style: none none solid;
  border-width: medium medium 1px;
  font-size: 13px;
  font-weight: 300;
  width: 100%;
  color: #8492af;
  padding: 15px 50px;
  font-size: 17px;
  max-width: 550px;
}

.login-form label {
  margin-bottom: 30px;
  width: 100%;
}

.user input {
  background: rgba(0, 0, 0, 0) url("../images/user.png") no-repeat scroll 7px 12px;
}

.pass input {
  background: rgba(0, 0, 0, 0) url("../images/password.png") no-repeat scroll 7px 12px;
}

.mail input {
  background: rgba(0, 0, 0, 0) url("../images/mail.png") no-repeat scroll 4px 12px;
}

.login-signup .tab-content {
  background: #ffffff none repeat scroll 0 0;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
  display: inline-block;
  margin-top: -8px;
  width: 100%;
}

.form-btn {
  background: #5584ff none repeat scroll 0 0;
  border: medium none;
  border-radius: 100px;
  color: #ffffff;
  font-weight: 400;
  max-width: 250px;
  padding: 10px 0;
  position: relative;
  width: 100%;
  margin: 40px 0;
  box-shadow: 0 2px 8px #d2d2d2;
  -moz-box-shadow: 0 2px 8px #d2d2d2;
  -webkit-box-shadow: 0 2px 8px #d2d2d2;
}

.form-btn::before {
  content: "";
  font-family: FontAwesome;
  position: absolute;
  right: 17px;
  top: 9px;
}

.form-details {
  padding: 35px 0;
}

.tab-content .tab-pane {
  padding: 70px 0;
}

/*Login Signup Page*/
/*Home Page*/
.home {
  background: #f6f7fa;
}

.clr {
  clear: both;
}

#navigation {
  background: #0e1a35;
  height: 100vh;
}

#addguest {
  font-size: 44px;
  float: right;
  border: 4px solid #3c3c3c;
  height: 66px;
  width: 56px;
  border-radius: 14px;
}

#navigation {
  padding: 0;
}

td img {
  width: 100%;
  cursor: pointer;
}

.display-table {
  display: table;
  padding: 0;
  height: 100%;
  width: 100%;
}

.display-table-row {
  display: table-row;
  height: 100%;
}

.display-table-cell {
  display: table-cell;
  float: none;
  height: 100%;
}

.v-align {
  vertical-align: top;
}

.logo img {
  max-width: 180px;
  padding: 16px 0 17px;
  width: 100%;
}

.header-top {
  margin: 0;
  padding-top: 2px;
}

.header-top img {
  border-radius: 50%;
  max-width: 48px !important;
  width: 100%;
}

.add-project {
  background: #5584ff none repeat scroll 0 0;
  border-radius: 100px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 27px 10px 45px;
  position: relative;
}

.header-rightside .nav > li > a:focus,
.header-rightside .nav > li > a:hover {
  background: none;
  text-decoration: none;
}

input[type=time]::-webkit-datetime-edit-ampm-field {
  display: none;
}

.add-project::before {
  background: rgba(0, 0, 0, 0) url("../images/plus.png") no-repeat scroll 0 0;
  content: "";
  height: 12px;
  left: 17px;
  position: absolute;
  top: 12px;
  width: 12px;
}

.colouredSplit {
  background: #0f0;
  height: 10px;
}

#spacer {
  margin: 10px 0px;
}

.cntSplt {
  margin: 10px 0px;
}

.cntSplt .anscont {
  margin: 5px 20px;
}

.add-project:hover {
  color: #ffffff;
}

.header-top i {
  color: #0e1a35;
}

.icon-info {
  position: relative;
}

.navi i {
  font-size: 20px;
}

.label.label-primary {
  border-radius: 50%;
  font-size: 9px;
  left: 8px;
  position: absolute;
  top: -9px;
}

.icon-info .label {
  border: 2px solid #ffffff;
  font-weight: 500;
  padding: 3px 5px;
  text-align: center;
}

.header-top li {
  display: inline-block;
  text-align: center;
}

.header-top .dropdown-toggle {
  color: #0e1a35;
}

.header-top .dropdown-menu {
  border: medium none;
  left: -85px;
  padding: 17px;
}

.view {
  background: #5584ff none repeat scroll 0 0;
  border-radius: 100px;
  color: #ffffff;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  padding: 10px 15px;
}

.navbar-content > span {
  font-size: 13px;
  font-weight: 700;
}

.img-responsive {
  width: 100%;
}

#navigation {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.search input {
  border: none;
  font-size: 15px;
  padding: 15px 9px;
  width: 100%;
  background: rgba(0, 0, 0, 0) url("../images/search.png") no-repeat scroll 99% 12px;
  color: #8492af;
}

header {
  background: #ffffff none repeat scroll 0 0;
  -webkit-box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
          box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
  display: inline-block !important;
  line-height: 23px;
  padding: 15px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.logo {
  text-align: center;
}

.navi a {
  border-bottom: 1px solid #0d172e;
  border-top: 1px solid #0d172e;
  color: #ffffff;
  display: block;
  font-size: 17px;
  font-weight: 500;
  padding: 28px 20px;
  text-decoration: none;
}

.navi i {
  margin-right: 15px;
  color: #5584ff;
}

.navi .active a {
  background: #122143;
  border-left: 5px solid #5584ff;
  padding-left: 15px;
}

.navi a:hover {
  background: #122143 none repeat scroll 0 0;
  border-left: 5px solid #5584ff;
  display: block;
  padding-left: 15px;
}

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

.navbar-toggle {
  border: none;
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
  background-color: rgba(0, 0, 0, 0);
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #0e1a35;
}

.circle-logo {
  margin: 0 auto;
  max-width: 30px !important;
  text-align: center;
}

.hidden-xs {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.user-dashboard {
  padding: 0 20px;
}

.user-dashboard h1 {
  color: #0e1a35;
  font-size: 30px;
  font-weight: 500;
  margin: 0;
  padding: 21px 0;
}

.sales {
  background: #ffffff none repeat scroll 0 0;
  border: 1px solid #d4d9e3;
  display: inline-block;
  padding: 15px;
  width: 100%;
}

.sales button {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 1px solid #dadee7;
  border-radius: 100px;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding-right: 32px;
  color: #0e1a35;
}

.sales button::before {
  content: "";
  font-family: FontAwesome;
  position: absolute;
  right: 12px;
  top: 11px;
}

.sales .btn-group {
  float: right;
}

.sales h2 {
  color: #8492af;
  float: left;
  font-size: 21px;
  font-weight: 600;
  margin: 0;
  padding: 9px 0 0;
}

.btn.btn-secondary.btn-lg.dropdown-toggle > span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.sales .dropdown-menu {
  margin: 0px;
  padding: 0px;
  border: 0px;
  border-radius: 8px;
  width: 100%;
  color: #0e1a35;
}

.sales .btn-group.open .dropdown-toggle, .btn.active, .btn:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.sales .dropdown-menu > a {
  color: #0e1a35;
  display: inline-block;
  font-weight: 800;
  padding: 9px 0;
  text-align: center;
  width: 100%;
}

#my-cool-chart svg {
  width: 100%;
}

.sales .dropdown-menu > a:hover {
  color: #5584FF;
}

.shield-buttons {
  display: none;
}

.close, .close:focus, .close:hover {
  color: #fff;
  opacity: 1;
  text-shadow: none;
}

.modal-body input {
  border: 1px solid #d4d9e3;
  font-size: 14px;
  font-weight: 300;
  margin: 5px 0;
  padding: 14px 10px;
  width: 100%;
  color: #8492af;
}

.modal-body textarea {
  border: 1px solid #d4d9e3;
  font-size: 14px;
  font-weight: 300;
  height: 200px;
  margin-top: 5px;
  padding: 9px 10px;
  width: 100%;
  color: #8492af;
}

.modal-header.login-header h4 {
  color: #ffffff;
}

.modal-footer .add-project {
  background: #5584ff none repeat scroll 0 0;
  border: medium none;
  border-radius: 100px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 30px;
  position: relative;
}

.modal-footer .add-project::before {
  display: none;
}

.modal-footer {
  border: 0 none;
  padding: 10px 15px 26px;
  text-align: right;
}

.cancel {
  background: #0E1A35;
  border: medium none;
  border-radius: 100px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 30px;
  position: relative;
}

.modal {
  top: 20%;
}

.modal-header .close {
  margin-top: 2px;
}

.search input:focus {
  border-bottom: 1px solid #BDC4D4;
  line-height: 22px;
  -webkit-transition: 0.1s all;
  transition: 0.1s all;
}

.modal-header.login-header {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

/*Main CSS*/
@media only screen and (max-device-width: 767px) {
  .login-logo img {
    margin: 0 auto;
  }
  .login-details .nav-tabs > li {
    text-align: center;
    width: 50%;
  }
  .login-signup .login-inner h1 {
    font-size: 26px;
    margin-bottom: 0;
    margin-top: 10px;
  }
  .login-inner .login-form input {
    font-size: 15px;
    max-width: 100%;
    padding: 15px 45px;
  }
  .login-inner .form-details {
    padding: 25px;
  }
  .login-inner .login-form label {
    margin-bottom: 20px;
    width: 100%;
  }
  .login-inner .form-btn {
    margin: 0;
    max-width: 180px;
  }
  .tab-content .tab-pane {
    padding: 20px 0;
  }
  #navigation .navi a {
    font-size: 14px;
    padding: 20px;
    text-align: center;
  }
  #navigation .navi i {
    margin-right: 0px;
  }
  #navigation .navi a:hover,
  #navigation .navi .active a {
    background: #122143 none repeat scroll 0 0;
    border-left: none;
    display: block;
    padding-left: 20px;
  }
  header .header-top img {
    max-width: 38px !important;
  }
  .v-align header {
    padding: 12px 15px;
  }
  header .header-top li {
    padding-left: 13px;
    padding-right: 6px;
  }
  .navbar-default .navbar-toggle {
    border-color: rgba(0, 0, 0, 0);
  }
  .navbar-header .navbar-toggle {
    float: left;
    margin: 0;
    padding: 0;
    top: 12px;
  }
  button,
  html [type="button"],
  [type="reset"],
  [type="submit"] {
    outline: medium none;
  }
  .user-dashboard .sales h2 {
    color: #8492af;
    float: left;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    padding: 13px 0 0;
  }
  .user-dashboard .btn.btn-secondary.btn-lg.dropdown-toggle > span {
    font-size: 11px;
  }
  .user-dashboard .sales button {
    font-size: 11px;
    padding-right: 23px;
  }
  .user-dashboard .sales h2 {
    font-size: 12px;
  }
  .gutter {
    padding: 0;
  }
}

@media only screen and (max-device-width: 992px) {
  header .header-top li {
    padding-left: 20px !important;
    padding-right: 0;
  }
  header .logo img {
    max-width: 125px !important;
  }
}

@media only screen and (min-device-width: 767px) and (max-device-width: 998px) {
  .user-dashboard .header-top {
    padding-top: 5px;
  }
  .user-dashboard .header-rightside {
    display: inline-block;
    float: left;
    width: 100%;
  }
  .user-dashboard .header-rightside .header-top img {
    max-width: 41px !important;
  }
  .user-dashboard .sales button {
    font-size: 10px;
  }
  .user-dashboard .btn.btn-secondary.btn-lg.dropdown-toggle > span {
    font-size: 12px;
  }
  .user-dashboard .sales h2 {
    font-size: 15px;
  }
}

@media only screen and (min-device-width: 998px) and (max-device-width: 1350px) {
  #navigation .logo img {
    max-width: 130px;
    padding: 16px 0 17px;
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */