@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
:root {
  --primary:#20A1DE;
  --primary-hover:#1589be;
  --secondary:#12324A;
  --secondary-hover:#0D2436;
  --text-body-primary:#60758A;
  --surface-soft:#EEF8FF;
  --surface-soft-strong:#DDF3FD;
  --surface-card:rgba(255,255,255,0.94);
  --border-soft:#D7E6F0;
  --border-strong:#A9CFE2;
  --ink-strong:#17324D;
  --ink-muted:#5F7485;
}

body {
  font-family: "Poppins", serif;
  background-color: #eef3f8;
  background-image: var(--user-bg-image, none);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: block;
  min-height: 100vh;
}

.bottom-spacer {
  height: 50px;
}

.license-form-outer {
  max-width: 1100px;
}
.license-form-outer .form-check {
  padding-left: 2.25rem;
}

h1 {
  font-size: 20px;
}

h2 {
  font-size: 18px;
}

h3 {
  font-size: 16px;
}

h4 {
  font-size: 14px;
}

p {
  font-size: 14px;
}

.text-gray {
  color: var(--ink-muted);
}

.text-warning {
  color: #f57605 !important;
}

.badge {
  padding: 8px 14px;
}

.badge-warning {
  background-color: #F4C167;
}

.btn-black {
  background-color: var(--secondary) !important;
}
.btn-black:hover {
  background-color: var(--secondary-hover) !important;
}

.btn-theme {
  background-color: var(--primary) !important;
  color: #fff !important;
}
.btn-theme:hover {
  background-color: var(--primary-hover) !important;
}

.btn-sm {
  padding: 4px 6px !important;
  border-radius: 5px;
}

.btn i {
  padding: 0;
}
.btn.text-white i {
  color: #fff !important;
}

.alert-info-custom {
  background-color: var(--surface-soft-strong);
  border-color: var(--border-strong);
  color: var(--ink-strong);
}

img {
  max-width: 100%;
}

.text-greay-500 {
  color: #99a1b7;
}

.square-button-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.square-button-grid li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 150px;
    background-color: var(--surface-soft-strong);
    color: var(--ink-strong);
    border-radius: 8px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: solid 1px var(--border-strong);
}

.square-button-grid li a i {
    font-size: 24px;
    margin-bottom: 8px;
}

.square-button-grid li a span {
    font-size: 16px;
    font-weight: bold;
}

.square-button-grid li a:hover {
    background-color: var(--primary);
    color:#ffffff;
    box-shadow: 0 10px 24px rgba(18, 50, 74, 0.18);
    transform: translateY(-2px);
}

.bg-primary {
  background-color: var(--primary) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-body-primary {
  color: var(--text-body-primary);
}

a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  color: var(--primary-hover);
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.775rem 1rem;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink-strong);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid var(--border-soft);
  border-radius: 0.475rem;
  box-shadow: false;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: rgba(32, 161, 222, 0.45);
  box-shadow: 0 0 0 0.18rem rgba(32, 161, 222, 0.16);
}

.btn-submit {
  background-color: var(--secondary);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}
.btn-submit.text-primary .aplybx-ico {
  margin-left: 15px;
}
.btn-submit.text-primary .aplybx-ico i {
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 25px;
  width: 28px;
  height: 28px;
  text-align: center;
  padding-top: 6px;
}
.btn-submit:hover, .btn-submit:focus, .btn-submit.active {
  background-color: var(--secondary-hover);
  color: #fff;
}
.btn-submit:hover.text-primary, .btn-submit:focus.text-primary, .btn-submit.active.text-primary {
  color: #fff !important;
}
.btn-submit:hover.text-primary .aplybx-ico i, .btn-submit:focus.text-primary .aplybx-ico i, .btn-submit.active.text-primary .aplybx-ico i {
  color: #fff;
  border: 2px solid #fff;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  background-color: var(--secondary-hover);
  border-color: var(--secondary-hover);
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(169, 207, 226, 0.5);
  box-shadow: 0 10px 28px rgba(18, 50, 74, 0.08);
}

.impersonation-banner {
  background: linear-gradient(90deg, var(--secondary), #184766);
  color: #fff;
  padding: 10px 0;
  box-shadow: 0 8px 18px rgba(18, 50, 74, 0.12);
}

.outer-container {
  max-width: 1400px;
}

.logo {
  max-width: 350px;
  float: left;
}

.footer {
  width: 100%;
  padding-top: 35px;
  padding-bottom: 35px;
  z-index: 1;
  min-height: 100px;
  border-top: 1px solid rgba(169, 207, 226, 0.45);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink-strong);
  box-shadow: 0 -8px 24px rgba(18, 50, 74, 0.04);
}

.login-outer {
  background-image: url(img/bg1.jpg);
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 48px;
  /*height: 100vh;*/
  width: 100%;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
.login-outer::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(2, 69, 103);
  background: linear-gradient(295deg, rgb(2, 69, 103) 0%, rgb(26, 135, 205) 100%);
  opacity: 0.8;
}

.log-reg-box {
  max-width: 500px;
  z-index: 1;
}

.login-form {
  background-color: #fff;
  padding: 30px 50px;
  border-radius: 20px;
}
.login-form h1 {
  font-size: 22px;
}
.login-form .sub-cap {
  color: #A1A5B7;
  width: 100%;
}
.login-form label {
  margin-bottom: 10px;
  color: #3e3a3a;
  font-size: 14px;
}
.login-form .form-control {
  font-size: 14px;
  color: #a7a7a7;
  border: 1px solid #000;
}
.login-form .form-control::-moz-placeholder {
  color: #a7a7a7;
}
.login-form .form-control::placeholder {
  color: #a7a7a7;
}
.login-form .btn-submit {
  background-color: #3e3a3a;
  border-radius: 10px;
  margin-top: 15px;
}
.login-form .btn-submit:hover {
  background-color: #111;
}

.separator.separator-content {
  display: flex;
  align-items: center;
  border-bottom: 0;
  text-align: center;
}
.separator.separator-content::after {
  content: " ";
  width: 50px;
  border-bottom: 1px solid var(--bs-border-color);
  margin-left: 1.25rem;
}
.separator.separator-content::before {
  content: " ";
  width: 50px;
  border-bottom: 1px solid var(--bs-border-color);
  margin-right: 1.25rem;
}

.log-left {
  z-index: 1;
  max-width: 640px;
  padding-right: 80px;
  color: #fff;
}
.log-left h3 {
  font-size: 14px;
  margin-bottom: 40px;
}
.log-left h2 {
  font-size: 48px;
  margin-bottom: 50px;
}
.log-left h4 {
  font-size: 16px;
  margin-bottom: 30px;
}
.log-left p {
  font-size: 15px;
}

.input-group-append {
  cursor: pointer;
}

.cstm-calender {
  padding: 11px 14px;
  border-color: #000;
  border-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.datepicker-days {
  font-size: 13px;
}

.edit-rel {
  position: relative;
}

.edit-abs {
  position: absolute;
  right: 15px;
  bottom: 14px;
  text-decoration: underline;
}

.h-right-btn {
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
}
.notification-header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-right: 10px;
  border-radius: 16px;
  color: var(--ink-strong);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.notification-header-link:hover {
  background: var(--surface-soft);
  color: var(--primary-hover);
  transform: translateY(-1px);
}

.main-header .dropdown span.avatar {
  list-style: none;
  display: inline-block;
  cursor: pointer;
  width: 48px;
  margin-right: 15px;
}
.main-header .dropdown span.avatar img {
  border-radius: 50px;
  border: 1px solid var(--primary);
}
.main-header .dropdown-menu {
  padding: 30px 25px;
  width: 100%;
  border: 1px solid rgba(169, 207, 226, 0.45);
  min-width: 300px;
  right: 0 !important;
  left: inherit !important;
  border-radius: 18px;
  box-shadow: 0 22px 44px rgba(18, 50, 74, 0.12);
}
.main-header .dropdown-menu li {
  display: block;
  border-bottom: 1px solid #E8EFF4;
  margin-bottom: 10px;
}
.main-header .dropdown-menu li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.main-header .dropdown-menu li a {
  text-decoration: none;
  font-size: 13px;
  color: var(--ink-strong);
  padding: 7px;
  display: block;
  border-radius: 10px;
}
.main-header .dropdown-menu li a:hover {
  background-color: var(--surface-soft);
}
.main-header .dropdown-menu li a i {
  color: var(--primary);
  font-size: 20px;
}

.h-notifc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.h-notifc i {
  font-size: 26px;
  display: block;
}
.h-notifc .not-fic-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ed1c24;
  border: 2px solid #fff;
  box-shadow: 0 7px 16px rgba(237, 28, 36, 0.28);
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 999px;
  position: absolute;
  right: -9px;
  top: -10px;
  text-align: center;
  line-height: 1;
}
.h-notifc.has-unread i {
  color: #0b8fc8;
}

.notifc-header {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 10px;
  font-size: 16px;
  color: #fff;
}
.notifc-header span {
  font-size: 12px;
}

.main-outer {
  padding-top: 140px;
  min-height: 1000px;
}

.profile-avatar {
  position: relative;
  max-width: 300px;
}

.profile-av-img {
  max-width: 100px;
}
.profile-av-img img {
  border-radius: 50%;
  border: 3px solid rgba(32, 161, 222, 0.18);
  box-shadow: 0 10px 24px rgba(18, 50, 74, 0.08);
}

.profile-achivments {
  position: relative;
  padding-top: 10px;
}
.profile-achivments h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
}
.profile-achivments p {
  margin-bottom: 0;
  color: var(--text-body-primary);
}

.achive-imge {
  position: absolute;
  top: -33px;
  width: 40px;
  transform: translate(-50%);
  left: 50%;
}

.profile-desc p {
  margin-bottom: 0;
  font-size: 13px;
}

.read-more {
  font-size: 13px;
  border-bottom: 1px solid var(--primary);
}

.license-img img {
  max-width: 240px;
  border: 2px solid var(--secondary);
  border-radius: 5px;
}

.custom-card {
  border-radius: 10px;
  background: var(--surface-card);
  border: 1px solid rgba(169, 207, 226, 0.38);
  box-shadow: 0 18px 38px rgba(18, 50, 74, 0.08);
}

.apply-lcns-slider .slider-img {
  background-color: var(--primary);
  width: 76px;
  height: 76px;
  display: inline-block;
  border-radius: 50%;
  padding-top: 20px;
}
.apply-lcns-slider .slider-img i {
  color: #fff;
  font-size: 36px;
}
.apply-lcns-slider h4 {
  font-size: 14px;
  margin-top: 15px;
}
.apply-lcns-slider h4 span {
  display: block;
}
.apply-lcns-slider .carousel-control-next, .apply-lcns-slider .carousel-control-prev {
  width: 30px;
  height: 30px;
  top: 50%;
  margin-top: -15px;
}
.apply-lcns-slider .carousel-control-next-icon, .apply-lcns-slider .carousel-control-prev-icon {
  border: 1px solid var(--text-body-primary);
  width: 26px;
  height: 26px;
  background-size: 7px;
  background-repeat: no-repeat;
  border-radius: 50%;
}
.apply-lcns-slider .carousel-control-next-icon {
  background-image: url(img/next-arrow.svg);
}
.apply-lcns-slider .carousel-control-prev-icon {
  background-image: url(img/prew-arrow.svg);
}

.evant-box img {
  border-radius: 10px;
}
.evant-box h4 {
  font-size: 13px;
  color: var(--ink-strong);
  margin-top: 10px;
  font-weight: 600;
}
.evant-box p {
  margin-bottom: 0;
  font-size: 13px;
}
.evant-box a {
  color: var(--text-body-primary);
  font-size: 12px;
}
.evant-box a:hover {
  color: var(--primary);
}

.profile-tab {
  margin-top: 25px;
}
.profile-tab .nav-tabs {
  background-color: rgba(255,255,255,0.9);
  padding: 0 20px;
  border-radius: 10px;
  padding-top: 10px;
  padding: 0;
}
.profile-tab .nav-tabs .nav-item {
  margin-right: 5px;
}
.profile-tab .nav-tabs .nav-item .nav-link {
  border: none;
  color: var(--ink-strong);
  border-bottom: 2px solid #E8EFF4;
  padding: 10px 15px;
  display: block;
  font-size: 14px;
  background-color: #F4F8FB;
}
.profile-tab .nav-tabs .nav-item .nav-link.active {
  color: #fff;
  border-bottom-color: var(--secondary);
  background-color: var(--primary);
}

.divider {
  height: 1px;
  background-color: rgba(61, 62, 62, 0.18);
}

.overview-dc h4 {
  margin-bottom: 15px;
}
.overview-dc p {
  margin-bottom: 15px;
}

.license-box {
  display: inline-block;
  padding-right: 15px;
  max-width: 295px;
}

.dd-lsnc {
  margin-top: 30px;
}

.trophy {
  display: flex;
  justify-content: center;
}
.trophy img {
  max-width: 50px;
}

.application-table {
  background-color: var(--surface-soft-strong);
}
.application-table.table.dataTable {
  margin-top: 5px !important;
}
.application-table thead tr {
  background-color: var(--secondary);
  color: #fff !important;
}
.application-table thead tr th {
  padding: 10px 20px !important;
  background-color: transparent;
  border-right: 1px solid #a0bcc9 !important;
}
.application-table thead tr th:last-child {
  border-right: none !important;
}
.application-table tbody tr {
  border-bottom: 1px solid #a0bcc9 !important;
}
.application-table tbody tr td {
  padding: 10px 20px !important;
  background-color: transparent;
  border-right: 1px solid #a0bcc9 !important;
}
.application-table tbody tr td:last-child {
  border-right: none !important;
}

.apply-license-outr p {
  color: var(--ink-muted);
}
.apply-license-outr ul {
  color: var(--ink-muted);
}

.max-w-450 {
  max-width: 450px;
}

.max-w-350 {
  max-width: 350px;
}

.chekout-wrap {
  background-color: var(--surface-soft);
  border: 1px dashed var(--border-strong);
  padding: 30px;
  border-radius: 10px;
  color: var(--text-body-primary);
}

.chekout-table table {
  color: var(--text-body-primary);
  width: 100%;
  margin-bottom: 10px;
}
.chekout-table table thead {
  font-size: 14px;
}
.chekout-table table thead th {
  font-weight: 400;
  padding: 10px 5px;
}
.chekout-table table thead th:last-child {
  text-align: right;
}
.chekout-table table tbody {
  font-size: 16px;
}
.chekout-table table tbody tr {
  border-bottom: 1px solid #D9D9D9;
  font-weight: 500;
}
.chekout-table table tbody tr:last-child {
  border-bottom: none;
}
.chekout-table table tbody tr td {
  padding: 10px 5px;
}
.chekout-table table tbody tr td:last-child {
  text-align: right;
}

.lndng-menu {
  list-style: none;
  padding: 0;
}
.lndng-menu li {
  display: inline-block;
  padding-right: 10px;
  padding-left: 10px;
  border-left: 2px solid var(--secondary);
}
.lndng-menu li:first-child {
  border-left: 0;
  padding-left: 0;
}
.lndng-menu li a {
  color: var(--secondary);
  border-bottom: 2px solid var(--text-body-primary);
}
.lndng-menu li a:hover {
  color: var(--primary);
}

.aply-box {
  max-width: 220px;
}
.aply-box a {
  border: 2px solid var(--secondary);
  padding: 25px;
  border-radius: 10px;
  display: block;
  color: var(--secondary);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 12px 28px rgba(18, 50, 74, 0.08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background-color .24s ease, color .24s ease;
}
.aply-box a span {
  font-size: 15px;
}
.aply-box a .aplbx-img {
  float: left;
  margin-right: 15px;
}
.aply-box a .aplbx-img i {
  color: var(--secondary);
  font-size: 26px;
}
.aply-box a .aplybx-ico i {
  color: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 25px;
  width: 28px;
  height: 28px;
  text-align: center;
  padding-top: 5px;
}
.aply-box a:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(18, 50, 74, 0.16);
}
.aply-box a:hover i {
  color: #fff;
}
.aply-box a:hover .aplybx-ico i {
  border-color: #fff;
}

/* === EMSO Calendar Right Date Card - Final Alignment === */
.select-evnt {
  background-color: var(--surface-soft);
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 26px rgba(18, 50, 74, 0.08);
  margin-left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  min-height: 100%;
  
}

.select-evnt .display-selected {
  text-align: center;
}

.select-evnt .display-selected span {
  display: block;
  color: #002c41;
}

.select-evnt .display-selected span.selected-day-and-m {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  color: #002c41;
}

.select-evnt .display-selected span.selected-date {
  font-size: 130px;
  font-weight: 300;
  line-height: 120px;
  color: var(--primary);
}

.select-evnt .display-selected span.selected-year {
  font-size: 28px;
  font-weight: 500;
  color: #002c41;
  margin-top: 5px;
}


.knowmorebtn {
  display: inline-block;
  color: var(--secondary);
  font-size: 16px;
  font-weight: 500;
}
.knowmorebtn i {
  color: var(--secondary);
  border: 2px solid var(--secondary);
  border-radius: 25px;
  width: 28px;
  height: 28px;
  text-align: center;
  padding-top: 5px;
  margin-left: 15px;
}
.knowmorebtn:hover i {
  color: var(--primary);
  border-color: var(--primary);
}

.arrow-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.arrow-list li {
  margin-bottom: 7px;
}
.arrow-list li:before {
  content: "\f101";
  font: normal normal normal 14px/1 FontAwesome;
  display: inline-block;
  margin-right: 15px;
}

.choos-ctetgry-img {
  background-color: #fff;
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  text-align: center;
  padding-top: 15px;
  margin-right: 15px;
}
.choos-ctetgry-img img {
  max-width: 40px;
}

.category-box {
  list-style: none;
  padding: 0;
}
.category-box li {
  margin-bottom: 15px;
}
.category-box a {
  color: #1d1d1d;
}
.category-box a .cstm-aply-btn {
  background-color: #fff;
  padding: 8px 18px;
  border-radius: 10px;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  margin-left: 15px;
}
.category-box a:hover .cstm-aply-btn {
  background-color: var(--secondary);
  color: #fff;
  border-color: #fff;
}
.category-box a .sub-cstm-icon {
  background-color: #fff;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  margin-right: 15px;
  width: 45px;
  height: 45px;
  padding-top: 12px;
}

.choo-icon i {
  color: #000;
  border: 2px solid #000;
  border-radius: 25px;
  width: 28px;
  height: 28px;
  text-align: center;
  padding-top: 5px;
  margin-left: 15px;
}

.iti {
  position: relative;
  display: block;
}

.custom-btn-list {
  list-style: none;
  text-align: center;
  padding: 0;
}
.custom-btn-list li {
  display: inline-block;
  margin: 0 5px;
  margin-bottom: 15px;
}
.custom-btn-list li a {
  padding: 25px 20px;
  display: block;
  color: #fff;
  border-radius: 15px;
  font-size: 18px;
  overflow: hidden;
  background-color: var(--secondary);
}
.custom-btn-list li a i {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 25px;
  width: 28px;
  height: 28px;
  text-align: center;
  padding-top: 6px;
  margin-left: 10px;
}
.custom-btn-list li a:hover {
  border-color: transparent;
}
.custom-btn-list li a:hover i {
  color: #fff;
  border-color: #fff;
}

.delete-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  color: red;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.delete-btn:hover {
  color: darkred;
}

.search-btn {
  position: absolute;
  right: 10px;
  top: 13px;
}

@media screen and (max-width: 992px) {
  .main-header {
    position: relative;
  }
  .footer {
    position: relative;
  }
  .login-outer {
    padding-top: 40px;
    padding-bottom: 32px;
    min-height: auto;
    background-attachment: scroll;
  }
  .login-data-wrapper {
    row-gap: 24px;
  }
  .login-form {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .log-left {
    padding-right: 0;
    margin-bottom: 0;
  }
  .log-left h2 {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .log-left p {
    font-size: 14px;
  }
  .profile-outer {
    display: block !important;
  }
  .profile-left {
    display: block !important;
    text-align: center;
  }
  .profile-avatar {
    display: block;
    text-align: center;
  }
  .profile-av-img {
    display: inline-block;
  }
  .profile-desc {
    text-align: center;
    display: block !important;
  }
  .profile-desc div {
    display: block !important;
  }
  .profile-right {
    display: block !important;
    text-align: center;
  }
  .profile-right {
    margin-top: 15px;
  }
  .profile-right div {
    display: block !important;
    text-align: center;
  }
  .profile-right div .license-img {
    display: inline-block !important;
  }
  .event-calenter {
    padding-bottom: 15px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .select-evnt {
    border-radius: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .bottom-spacer {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .login-outer {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .footer {
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: auto;
  }
  .login-form h1 {
    font-size: 20px;
  }
  .separator.separator-content::before,
  .separator.separator-content::after {
    width: 28px;
  }
}

.permit-flow-page .permit-flow-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.permit-flow-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.permit-flow-head h1 {
  margin: 0 0 8px;
  color: #172033;
  font-size: 30px;
  font-weight: 700;
}

.permit-flow-head p {
  max-width: 780px;
  margin: 0;
  color: #5c667a;
  font-size: 15px;
}

.permit-eyebrow {
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 6px !important;
}

.permit-stepper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.permit-stepper li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid #e3e8f2;
  border-radius: 8px;
  background: #f7f9fc;
  color: #566172;
}

.permit-stepper span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #dfe6f1;
  color: #263043;
  font-weight: 700;
}

.permit-stepper li.active,
.permit-stepper li.completed {
  border-color: var(--secondary);
  background: #fff8f2;
  color: #172033;
}

.permit-stepper li.active span,
.permit-stepper li.completed span {
  background: var(--secondary);
  color: #fff;
}

.permit-step-panel {
  display: none;
}

.permit-step-panel.active {
  display: block;
}

.permit-section-title {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.permit-section-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
}

.permit-section-title h2,
.permit-price-panel h3,
.permit-review-card h3,
.permit-terms-box h3 {
  margin: 0 0 6px;
  color: #172033;
  font-size: 20px;
  font-weight: 700;
}

.permit-section-title p,
.permit-price-panel p,
.permit-review-card p,
.permit-file-note {
  margin: 0;
  color: #667085;
  font-size: 14px;
}

.other-field-wrap {
  display: none;
}

.permit-price-panel,
.permit-review-card,
.permit-terms-box {
  border: 1px solid #e3e8f2;
  border-radius: 8px;
  background: #fbfcfe;
  padding: 20px;
}

.permit-price-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 22px;
  align-items: start;
}

.permit-price-panel dl,
.permit-review-card ul {
  margin: 0;
}

.permit-price-panel dl div,
.permit-review-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid #e8edf5;
}

.permit-price-panel dl div:last-child,
.permit-review-card li:last-child {
  border-bottom: 0;
}

.permit-price-panel dt,
.permit-review-card span {
  color: #667085;
  font-weight: 500;
}

.permit-price-panel dd,
.permit-review-card strong {
  margin: 0;
  color: #172033;
  text-align: right;
  font-weight: 700;
}

.permit-price-panel .total {
  font-size: 17px;
}

.permit-doc-grid,
.permit-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.permit-doc-upload {
  min-height: 134px;
  padding: 16px;
  border: 1px solid #e3e8f2;
  border-radius: 8px;
  background: #fff;
}

.permit-file-note {
  margin-top: 8px;
}

.permit-review-card ul,
.permit-terms-box ul {
  padding: 0;
  list-style: none;
}

.permit-terms-box {
  margin-top: 18px;
}

.permit-terms-box li {
  position: relative;
  padding: 0 0 10px 22px;
  color: #4b5565;
  font-size: 14px;
}

.permit-terms-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
}

.permit-accept {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #d9e2ef;
  border-radius: 8px;
  background: #fff;
  color: #344054;
}

.permit-accept input {
  margin-top: 4px;
}

.permit-flow-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}

#permit_prev_step,
#permit_submit_btn {
  display: none;
}

@media screen and (max-width: 768px) {
  .permit-flow-head,
  .permit-price-panel {
    display: block;
  }

  .permit-flow-head .btn {
    margin-top: 16px;
  }

  .permit-stepper,
  .permit-doc-grid,
  .permit-review-grid {
    grid-template-columns: 1fr;
  }

  .permit-stepper li {
    min-height: 50px;
  }

  .permit-flow-head h1 {
    font-size: 24px;
  }
}

.emso-epermit-shell {
  min-height: 100vh;
  background: #f4f8fb;
}

.emso-epermit-shell .header {
  z-index: 1030;
}

.emso-epermit-shell .header .logo img {
  max-height: 64px;
  width: auto;
}

.emso-epermit-shell .welcome-action {
  margin-bottom: 0;
}

.emso-epermit-shell .welcome-action .action a {
  position: relative;
}

.emso-notification-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #e04444;
  color: #fff;
  font-size: 10px;
  line-height: 18px;
  text-align: center;
}

.emso-epermit-shell .hamburger_icon {
  border: 0;
  background: transparent;
  padding: 0;
}

.emso-epermit-shell .side-navbar .nav-link {
  padding: 0;
}

.emso-epermit-shell .side-navbar .nav li a {
  text-decoration: none;
}

.emso-epermit-shell .page-main-wrapper {
  min-height: calc(100vh - 160px);
}

.emso-epermit-shell .main-outer {
  padding: 28px 0 64px;
}

.emso-epermit-shell .license-form-outer,
.emso-epermit-shell .main-container,
.emso-epermit-shell .outer-container {
  max-width: 1180px;
}

.emso-epermit-shell .custom-card {
  border-radius: 8px !important;
}

.emso-epermit-footer {
  margin-left: 110px;
}

.emso-epermit-footer .content-wrapper {
  margin-bottom: 0;
}

.emso-dashboard-page .profile-head {
  margin-bottom: 28px;
}

.emso-permit-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.emso-recent-events li p {
  line-height: 1.5;
}

.emso-list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.emso-list-toolbar .search-wrap {
  position: relative;
  flex: 1 1 320px;
  max-width: 420px;
}

.emso-list-toolbar .search-wrap img {
  position: absolute;
  left: 15px;
  top: 50%;
  width: 18px;
  transform: translateY(-50%);
  opacity: 0.55;
}

.emso-list-toolbar .search-wrap input {
  min-height: 46px;
  padding-left: 44px;
  border: 1px solid #e4e8ef;
  border-radius: 8px;
  background: #fff;
}

.emso-table-shell {
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(24, 39, 75, 0.06);
}

.emso-table-shell .table {
  margin-bottom: 0;
}

.emso-table-shell .emso-hidden-data-source {
  display: none !important;
}

.emso-table-shell .table thead th {
  color: #3b4658;
  font-weight: 700;
  border-bottom-color: #e7ecf4;
}

.emso-table-shell .dataTables_wrapper .dataTables_paginate .paginate_button {
  border-radius: 6px;
}

.emso-epermit-shell .permit-flow-page .permit-flow-card {
  border-radius: 8px;
}

.emso-login-shell {
  min-height: 100vh;
  background: #f5f8fb;
}

.emso-login-shell .header {
  position: relative;
}

.emso-login-shell .header .logo img {
  max-height: 72px;
  width: auto;
}

.emso-login-shell .login-Wrapper {
  min-height: calc(100vh - 160px);
}

.emso-login-shell .theme-btn {
  border: 0;
}

.emso-login-shell .form-sec .alert {
  border-radius: 8px;
}

.emso-login-footer {
  margin-left: 0;
}

.emso-login-footer .content-wrapper {
  margin-bottom: 0;
}

.emso-form-panel {
  padding: 24px;
  border: 1px solid #e3e8f2;
  border-radius: 8px;
  background: #fff;
}

.emso-profile-form-head {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e7ecf4;
}

.emso-check-row {
  display: flex;
  gap: 18px;
  min-height: 46px;
  align-items: center;
}

.emso-check-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.row-full {
  width: 100%;
}

.emso-download-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.emso-download-list li,
.emso-notification-item {
  border: 1px solid #e3e8f2;
  border-radius: 8px;
  background: #fff;
}

.emso-empty-state {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 40px 24px;
  border: 1px solid #e3e8f2;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.emso-empty-state img {
  max-width: 54px;
}

.emso-empty-state h3 {
  margin: 0;
  color: #172033;
  font-size: 20px;
  font-weight: 700;
}

.emso-empty-state p {
  max-width: 520px;
  margin: 0;
  color: #667085;
}

.emso-date-filter {
  max-width: 260px;
  min-height: 46px;
  border-radius: 8px;
}

.emso-photo-editor {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.emso-photo-editor .profile-pic {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 50%;
}

.emso-photo-editor .profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.emso-notification-list {
  display: grid;
  gap: 12px;
}

.emso-notification-item {
  display: flex;
  gap: 16px;
  padding: 18px;
}

.emso-notification-item.is-unread {
  border-color: rgba(32, 161, 222, 0.35);
  background: #f2f9fd;
}

.notification-icon {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #eef8ff;
  color: var(--secondary);
}

.notification-content {
  min-width: 0;
  width: 100%;
}

.notification-title-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.notification-title-row h3 {
  margin: 0;
  color: #172033;
  font-size: 16px;
  font-weight: 700;
}

.notification-title-row span,
.notification-message {
  color: #667085;
  font-size: 14px;
}

.mark-as-read {
  border: 0;
  border-radius: 6px;
  background: var(--secondary);
  color: #fff;
  padding: 8px 12px;
  white-space: nowrap;
}

.emso-file-preview-list {
  border-radius: 8px;
  overflow: hidden;
}

.emso-calendar-module {
  margin-top: 26px;
}

.emso-calendar-tabs {
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  border: 0;
}

.emso-calendar-tabs li:last-child {
  margin-left: auto;
}

.emso-calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.emso-calendar-search {
  flex: 1 1 360px;
  max-width: 520px;
}

.emso-calendar-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid #dce5e9;
  border-radius: 8px;
  background: #fff;
}

.emso-calendar-status button {
  min-width: 82px;
  height: 36px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #4d5c63;
  font-weight: 600;
}

.emso-calendar-status button.active {
  background: #006b4f;
  color: #fff;
}

.emso-calendar-view {
  display: none;
}

.emso-calendar-view.is-active {
  display: block;
}

.emso-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.emso-calendar-head h4 {
  margin: 0;
  color: #102c35;
  font-size: 22px;
  font-weight: 700;
}

.emso-calendar-nav,
.emso-table-action,
.emso-calendar-detail-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #dce5e9;
  border-radius: 8px;
  background: #fff;
  color: #0d3d4c;
}

.emso-calendar-weekdays,
.emso-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.emso-calendar-weekdays {
  margin-bottom: 8px;
  color: #68777e;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.emso-calendar-day {
  position: relative;
  min-height: 84px;
  padding: 10px;
  border: 1px solid #dce5e9;
  border-radius: 8px;
  background: #fff;
  text-align: left;
}

.emso-calendar-day.is-empty {
  border-color: transparent;
  background: transparent;
}

.emso-calendar-day.is-today {
  border-color: #006b4f;
}

.emso-calendar-day.is-selected {
  box-shadow: inset 0 0 0 2px #006b4f;
}

.emso-calendar-day.has-events {
  background: #f7fbfa;
}

.emso-calendar-day .day-number {
  display: block;
  color: #102c35;
  font-size: 15px;
  font-weight: 700;
}

.emso-calendar-day .day-events {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.event-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e0a800;
}

.event-dot.approved {
  background: #008a62;
}

.event-dot.pending {
  background: #e0a800;
}

.event-more {
  color: #4d5c63;
  font-size: 11px;
  font-weight: 700;
}

.emso-calendar-module .event-add-wrap .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.emso-calendar-module .event-add-wrap .head span {
  color: #68777e;
  font-size: 13px;
  font-weight: 600;
}

.emso-calendar-module .event-list-cards .text-wrap {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.status-chip.pending,
.status-chip.approved {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.status-chip.pending {
  background: #fff5d7;
  color: #946100;
}

.status-chip.approved {
  background: #dff6ec;
  color: #006b4f;
}

.emso-calendar-empty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  border: 1px dashed #b8c7cd;
  border-radius: 8px;
  background: #fbfdfd;
}

.emso-calendar-empty[hidden] {
  display: none;
}

.emso-calendar-empty img {
  width: 34px;
  height: 34px;
}

.emso-calendar-empty p {
  margin: 0;
  color: #4d5c63;
  font-weight: 600;
}

.emso-calendar-detail {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1050;
  width: min(420px, calc(100vw - 32px));
  padding: 22px;
  border: 1px solid #dce5e9;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(13, 61, 76, 0.18);
}

.emso-calendar-detail[hidden] {
  display: none;
}

.emso-calendar-detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.emso-calendar-detail h4 {
  margin: 14px 46px 16px 0;
  color: #102c35;
  font-size: 20px;
  font-weight: 800;
}

.emso-calendar-detail dl {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.emso-calendar-detail dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
}

.emso-calendar-detail dt {
  color: #68777e;
  font-weight: 700;
}

.emso-calendar-detail dd {
  margin: 0;
  color: #102c35;
  font-weight: 600;
}

@media screen and (max-width: 992px) {
  .emso-epermit-footer {
    margin-left: 0;
  }

  .emso-epermit-shell .page-main-wrapper {
    padding-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .emso-list-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .emso-list-toolbar .search-wrap {
    max-width: none;
  }

  .emso-permit-stats {
    grid-template-columns: 1fr;
  }

  .emso-download-list,
  .emso-photo-editor {
    grid-template-columns: 1fr;
  }

  .notification-title-row {
    display: block;
  }

  .emso-calendar-tabs li:last-child {
    width: 100%;
    margin-left: 0;
  }

  .emso-calendar-tabs li:last-child .theme-btn,
  .emso-calendar-search {
    width: 100%;
    max-width: none;
  }

  .emso-calendar-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .emso-calendar-status button {
    flex: 1 1 auto;
  }

  .emso-calendar-weekdays,
  .emso-calendar-grid {
    gap: 4px;
  }

  .emso-calendar-day {
    min-height: 58px;
    padding: 7px;
  }

  .emso-calendar-day .day-events {
    right: 7px;
    bottom: 7px;
  }

  .emso-calendar-detail {
    right: 16px;
    bottom: 16px;
  }

  .emso-calendar-detail dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
/*# sourceMappingURL=style.css.map */
