html, body {
  padding: 0;
  margin: 0;
  height: 100vh;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #f2f2f2;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.login-wrapper {
  height: 100vh;
  display: flex;
}
.login-wrapper .login-box {
  width: 360px;
  padding: 2rem;
  height: -moz-max-content;
  height: max-content;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
  margin: auto;
  background-color: white;
}
.login-wrapper .login-box img {
  display: block;
  width: 100px;
  margin: 0 auto 1rem;
}
.login-wrapper .login-box h4, .login-wrapper .login-box p {
  text-align: center;
}

header {
  display: flex;
  padding: 0 1rem;
  position: relative;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  z-index: 100;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
header .logo {
  display: block;
  background-image: url("https://viralflight.in/assets/img/logo_viral_flight.svg");
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
  height: 40px;
  width: 160px;
}
header nav {
  display: flex;
  flex-flow: column;
  flex-grow: 1;
}
header nav a {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  text-decoration: none;
  padding: 1em;
  color: #333;
  border-bottom: thin solid #eee;
  width: -moz-fit-content;
  width: fit-content;
}
header nav a:hover {
  color: black;
  background-color: #f9f9f9;
}
header nav a span {
  flex-grow: 1;
}
header nav .active {
  border-bottom: thin solid #330c69;
  font-weight: 600;
  color: 330c69;
  background-color: #f5f5f5;
}
header nav .active:hover {
  background-color: #f5f5f5;
}
header .btnLogout {
  padding: 0.5rem;
  color: rgb(159, 29, 29);
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0.24em;
  text-decoration: none;
  font-size: 14px;
  line-height: 16px;
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
header .btnLogout:hover {
  background-color: #ddd;
}

.body-wrapper {
  height: calc(100vh - 56px);
  display: flex;
}

aside {
  width: 230px;
  box-shadow: 4px 0 0px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  z-index: 1000;
  overflow: auto;
}

@media (max-width: 1199px) {
  .openSidebar {
    width: 230px;
    border-radius: 0.5rem;
    overflow: auto;
    position: absolute;
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 767px) {
  .openSidebar {
    width: 100%;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  }
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  display: block;
}

button:active, a:active {
  transform: scale(0.98);
  opacity: 0.9;
}

main {
  display: block;
  flex-grow: 1;
  overflow: auto;
  position: relative;
}
main .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
main .header a {
  text-decoration: none;
}
main .header .link-back {
  color: #666;
  margin-bottom: 1rem;
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
main .header .cta-link {
  background-color: #330c69;
  color: white;
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

@media (max-width: 1199px) {
  aside {
    width: 0px;
  }
}
@keyframes fadeInZoom {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.lead-wrapper {
  display: flex;
  position: relative;
  height: calc(100vh - 57px);
}

.lead-list {
  overflow: auto;
  position: relative;
  background-color: white;
  width: 350px;
  height: 100%;
  flex-shrink: 0;
  box-shadow: 1px 0px 1px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
@media (max-width: 991px) {
  .lead-list {
    width: 250px;
  }
}
@media (max-width: 767px) {
  .lead-list {
    width: 100%;
  }
}
.lead-list .item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-bottom: thin solid #eee;
  line-height: 1.3;
  cursor: pointer;
}
.lead-list .item:hover {
  background-color: #f6f6f6;
}
.lead-list .item span {
  display: block;
}
.lead-list .item .fullname {
  font-weight: 600;
  display: flex;
  align-items: center;
  flex-grow: 1;
  gap: 0.5rem;
}
.lead-list .item .fullname b {
  flex-shrink: 1;
  font-weight: 500;
  font-size: 12px;
  display: flex;
}
.lead-list .item .fullname b::before {
  content: "-";
  padding-right: 0.5rem;
}
.lead-list .item .comp_name {
  font-size: 14px;
}
.lead-list .item .datestamp {
  font-size: 12px;
  margin-top: 8px;
  opacity: 0.8;
}
.lead-list .newLead {
  background-color: #eee;
}
.lead-list .newLead .fullname {
  font-weight: bold;
}
.lead-list .newLead .fullname b {
  font-weight: bold;
  color: green;
}
.lead-list .closeLead .fullname b {
  color: gray;
}
.lead-list .openLead .fullname b {
  color: orange;
}
.lead-list .pendingLead .fullname b {
  color: red;
}
.lead-list .active {
  background-color: #f5f5f5;
}

.lead-body {
  position: relative;
  display: block;
  background-color: white;
  flex-grow: 1;
  overflow: auto;
}
.lead-body .btnCloseBody {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  outline: none;
  background-color: white;
}
.lead-body .content {
  display: none;
  padding: 1rem;
}
.lead-body .openContent {
  display: block;
  height: 100%;
}

#content-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
#content-placeholder div {
  flex-grow: 1;
}
#content-placeholder .action {
  flex-grow: 0;
  flex-shrink: 1;
  background-color: white;
  border-top: thin solid #eee;
  padding-top: 1rem;
}
.blank-body::after {
  content: "Please choose one lead from the list at left side to view full details";
  position: absolute;
  font-weight: 600;
  font-size: 14px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}

.lead-counts {
  padding: 1rem;
  display: flex;
  justify-content: space-evenly;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: white;
}
.lead-counts span {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
.lead-counts span b {
  font-size: 24px;
}
.lead-counts .new b {
  color: green;
}
.lead-counts .open b {
  color: orange;
}
.lead-counts .closed b {
  color: gray;
}
.lead-counts .pending b {
  color: red;
}

@media (max-width: 767px) {
  .openMobContent .lead-list {
    width: 0px;
  }
}/*# sourceMappingURL=main.css.map */