﻿/* ==========================================================
   1. BASE & RESET
   ========================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

/******Font Face**********/

/* One 'Lato' family with three weights; consumers use font-family:"Lato" + font-weight.
   Paths are CSS-relative (this file is /css/, the fonts live in /lib/fonts/). The old
   '~/fonts/...' was a Razor convention that does not resolve in a static .css file. */
@font-face {
    font-family: 'Lato';
    src: url('../lib/fonts/lato-regular-webfont.woff2') format('woff2'),
         url('../lib/fonts/lato-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../lib/fonts/lato-bold-webfont.woff2') format('woff2'),
         url('../lib/fonts/lato-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../lib/fonts/lato-black-webfont.woff2') format('woff2'),
         url('../lib/fonts/lato-black-webfont.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif !important;
  font-size: 12px !important;
  background: #fff;
}

Sup,
sub {
  font-size: 100% !important;
}

a {
  color: #0366d6;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

header.bb1 {
  background: #fff;
}

main {
  background-color: #fff;
  position: relative;
  scroll-behavior: smooth;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100vh;
  min-height: 100%;
}

textarea {
  font-size: 14px !important;
}

input::placeholder {
  color: #d8d8d8 !important;
}

/* ==========================================================
   2. SCROLLBAR
   ========================================================== */

* {
  scrollbar-width: auto;
  /* scrollbar-color: #0000005c #ffffff; */
}

*::-moz-scrollbar {
  scrollbar-width: auto;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: #0000005c;
  border-radius: 10px;
  border: 3px solid #ffffff;
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

/* ==========================================================
   3. UTILITY — TYPOGRAPHY
   ========================================================== */

.font-12 {
  font-size: 12px;
}

.font14 {
  font-size: 14px;
}

.text-sm {
  font-size: 13px;
}

.text_primary {
  color: #084693;
}

.text_secondary {
  color: #5b9ef2;
}

.primary_link {
  color: #f0363d;
}

.text-ssl {
  color: #688cba;
}

.text-wrap_sty {
  word-break: break-word;
}

/* ==========================================================
   4. UTILITY — BACKGROUNDS & COLORS
   ========================================================== */

.bg-grey {
  background: #eaeaea;
}

.bg-light-grey {
  background: #fafbff;
}

.bg_primary {
  background: #084693;
}

.bg_sky_blue {
  background: #6e99cf;
}

.bg-darkgray {
  background: #636363;
}

.bg_blue_sty {
  background: #04397f;
}

.bg-black {
  background-color: #000000 !important;
}

.bg-transparent {
  background-color: transparent !important;
  font-size: 13px;
}

/* ==========================================================
   5. UTILITY — BORDERS, SPACING & MISC
   ========================================================== */

.border-top {
  border-top: 1px solid #e5e5e5;
}

.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}

.border-1 {
  border: 1px solid #000;
}

.border-grey {
  border-color: #ccc;
}

.border_grey_1 {
  border: 1px solid #ddd;
}

.border_primary {
  border: 2px solid #7794c1;
}

.br-14 {
  border-radius: 14px;
}

.br-0 {
  border-radius: 0;
}

.btmMargin {
  padding-bottom: 3.5%;
}

.displayNone {
  display: none;
}

.clickable-cursor:hover {
  cursor: pointer;
}

.disable {
  pointer-events: none;
  cursor: default;
}

.w-50 {
  width: 50%;
}

.add,
.edit {
  max-width: 70px;
}

.update_txt {
  padding: 7px 3px !important;
}

.update-txt {
  padding: 7px 0px 7px 8px;
}

.usr_active {
  background: #073b76;
  color: #fff;
}

/* ==========================================================
   6. LAYOUT SHELL (App Frame)
   ========================================================== */

.container-body {
  display: flex;
  height: 100vh;
  width: 100vw;
}

.main-content {
  display: flex;
  width: 100%;
}

.side-bar-panel {
  background: #004282;
  width: 260px;
  height: 100vh;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
  overflow-y: auto;
  padding: 0px;
  background: #f6f6f6;
}

/* ==========================================================
   7. HEADER — APP BAR
   ========================================================== */

.fleet-plus-logo img {
  margin-left: 15px;
}

#navbarDropdownMenuLink {
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  text-transform: capitalize;
  max-width: 95px;
}

.UserProfileDropdown {
  padding: 7px 10px;
  font-size: 13px;
}

.UserProfileDropdown:focus,
.UserProfileDropdown:hover {
  color: #231f20;
  text-decoration: none;
  background-color: #f3efef;
}

/* ==========================================================
   8. FORMS & INPUTS
   ========================================================== */

label {
  margin-bottom: 0rem;
  font-size: 13px;
  text-transform: capitalize;
}
.form-group {
  margin-bottom: 20px;
}

.form-control:not(textarea) {
    font-size: 14px;
    height: auto !important;
}
.form-select {
  font-size: .875rem !important;
}
textarea.form-control {
  height: 36px !important;
  resize: none;
  padding: 6px 12px;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #dc3545;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control-file {
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 5px 10px;
  height: 36px;
}

.handle-search-icon i {
  position: absolute;
  top: 11px;
  left: 15px;
}
.handle-search-icon  {
  position: relative;
}
.search-input-txt {
  padding: 5px 10px 5px 30px;
}

.input-validation-error {
  border: 2px solid #dc3545;
}

.field-validation-valid {
  position: absolute;
  bottom: -20px;
}

.field-validation-error {
  font-size: 11px;
  margin-top: 1px;
  display: block;
}

.long_error_message {
  font-size: 11px;
  color: #f00;
  display: block;
  min-height: 25px;
  line-height: 13px;
  max-height: 35px;
  padding-bottom: 5px;
}

.comment_error {
  width: 100%;
  float: left;
  font-size: 12px;
  color: #f00;
  top: 100%;
}

.error {
  font-size: 11px;
  color: #f00;
  display: block;
}

.CustomError {
  position: absolute;
}

.password-container {
  position: relative;
  width: 100%;
}

/* Input styling */
.password-container input[type="password"],
.password-container input[type="text"] {
  width: 100%;
  padding: 10px 40px 10px 12px; /* space for eye icon */
  box-sizing: border-box;
}

/* Eye icon */
.fa-eye-password {
  position: absolute;
  top: 50%;
  right: 12px; /* fixed spacing instead of % */
  transform: translateY(-50%); /* perfect vertical center */
  cursor: pointer;
  color: #004282;
  font-size: 14px;
  line-height: 1;
}

/* Hover effect */
.fa-eye-password:hover {
  color: #000;
}

.form-check-inline-new {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
}

.custom_form_feild input,
.custom_form_feild select {
  margin: 0px 5.5px 5px 5.5px;
}

.custom_select {
  /* word-wrap: break-word; */
  width: 100%;
}

.custom_select input[type="radio"] {
  vertical-align: middle;
}

.custom-checkbox .custom-control-label {
  line-height: 24px !important;
}

.chk_sty input[type="checkbox"] {
  vertical-align: middle;
}

.form-check.form-check-inline.chk_sty {
  position: absolute;
  top: 44px;
  z-index: 10;
  left: 24px;
}

.check_box_pos_sty {
  position: absolute;
  left: 28px;
  z-index: 10;
  top: 2px;
}

.edit-feild {
  border: 1px solid #7a7a7a !important;
}

.form_tabs {
  border: none;
}

.form_tabs li {
  margin-bottom: 0 !important;
}

.form_tabs li a {
  border: none !important;
  color: #5c5c5c !important;
  font-size: 14px;
}

.form_tabs li a.active {
  color: #084693 !important;
  font-weight: 500;
}

.form_tabs li:first-child a {
  padding-left: 0;
}

.form_info {
  position: absolute;
  right: -15px;
  width: 25px;
  height: 25px;
  background: #4aa1fe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50px;
  top: 5px;
}

.form_info:hover {
  color: #fff;
}

.searchFileds {
  position: absolute;
  background: #fff;
  left: 0;
  border: 1px solid #ddd;
  border-top: none;
  padding: 15px;
  right: 0;
  display: none;
  z-index: 10;
}

.searchUserInput {
  position: relative;
}

textarea#DeclarationText {
  height: 65px;
}

/* SumoSelect plugin */
.SumoSelect > .CaptionCont {
  padding-left: 10px !important;
  padding-top: 7px;
}

.SumoSelect > .CaptionCont > span {
  padding-right: 18px !important;
}

.SumoSelect > .optWrapper > .options {
  border-radius: 2px;
  position: relative;
  max-height: 210px !important;
}

/* Custom select widget */
.select-selected {
  background-color: #084693;
  border-radius: 30px;
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 17px;
  right: 25px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 10px;
}

.select-items div,
.select-selected {
  color: #ffffff;
  padding: 10px 55px 11px 35px;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  font-size: 12px;
}

.select-items {
  position: absolute;
  background-color: #084693;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

p.warnMsg {
  text-align: left;
}

.yellow-border {
  color: #495057;
  background-color: #fff;
  border-color: #ffeb3b !important;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(228 161 26 / 25%) !important;
}

.yellow-border .CaptionCont {
  color: #495057;
  background-color: #fff;
  border-color: #ffeb3b !important;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(228 161 26 / 25%) !important;
}

/* Date-picker calendar icon overlays */
.fromdate-Calender-icon,
.todate-Calender-icon {
  position: relative;
}

.fromdate-Calender-icon:after {
  position: absolute;
  top: 4px;
  content: "\f073";
  right: 10px;
  z-index: 10;
  color: #9f9a9a;
  font-family: "FontAwesome";
  font-size: 14px;
}

.todate-Calender-icon:after {
  position: absolute;
  top: 4px;
  content: "\f073";
  right: 10px;
  z-index: 10;
  color: #9f9a9a;
  font-family: "FontAwesome";
  font-size: 14px;
}

/* ==========================================================
   9. MODAL & POPUP
   ========================================================== */

.modal-header {
    padding: 10px 15px;
    background: #0088a5;
}

.modal-content {
  border: none;
}

.modal-title {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.popup_body_txt {
  font-size: 15px;
  text-align: center;
}

.white-box-bg {
    background: #fff;
    border-radius: 8px;
    /* box-shadow: 0 0 3px rgba(98, 93, 93, .25); */
    border: 1px solid #e7e7e7;
}

/* Change password — policy / client errors (must stay in document flow; avoid .field-validation-valid absolute) */
.pwd-new-password-policy-errors,
.pwd-inline-field-error {
  position: static !important;
}

/* Change password — live policy rule checkmarks */
.pwd-rule-row .pwd-rule-icon {
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pwd-rule-row.pwd-rule-met .pwd-rule-icon {
    background-color: #198754 !important;
    border-color: #198754 !important;
    color: #fff !important;
}

.pwd-rule-row.pwd-rule-met {
    border-color: rgba(25, 135, 84, 0.35) !important;
}

.box-head-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;
    /* background: #f8fafc; */
    border-radius: 8px 8px 0px 0px;
    color: #000;
    /* padding: 10px 15px; */
    margin: 10px 0;
    /* border-bottom: 1px solid #d7d5d5; */
}

.box-head-title[data-toggle="collapse"] {
  cursor: pointer;
}

.createmessagearea {
  padding: 20px;
  margin: 10px auto;
  font-weight: bold;
  text-align: center;
}

.createmessagearea p {
  font-size: 14px;
  margin-bottom: 0;
}

.createmessagearea p a {
  border: 1px solid #007bff;
  padding: 7px 10px;
  margin-top: 15px;
  display: inline-block;
  border-radius: 4px;
}

.createmessagearea p a:hover,
.createmessagearea p a:active,
.createmessagearea p a:focus {
  background: #007bff;
  color: #fff;
}

/* ==========================================================
   10. STEP PROGRESS BAR
   ========================================================== */

.step-progressbar {
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 0px;
  padding: 0;
}

.step-progressbar::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  height: 0px;
  background: #d6d6d6;
  z-index: 0;
}

.step-progressbar .nav-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-progressbar .nav-link {
  border: none;
  background: transparent !important;
  padding: 0;
}

.step-progressbar .nav-link.active::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 100px;
  width: 100%;
  height: 2px;
  background: #1f4e79;
  z-index: 1;
}

.step-progressbar .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #d6d6d6;
  z-index: 0;
}

.step-progressbar .nav-link.active ~ .nav-item::after {
  background: #d6d6d6;
}

.step-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #d6d6d6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.nav-link.active .step-dot {
  background: #1f4e79;
  color: #fff;
}

.step-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #6c757d;
}

.nav-link.active .step-label {
  color: #1f4e79;
  font-weight: 600;
}

/* ==========================================================
   11. LOADERS
   ========================================================== */

div#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

div#micloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.loader_overlay {
  background: #00000038;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.loader_img {
  position: absolute;
  width: 140px;
  max-width: 100%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 10px;
}

/* ==========================================================
   12. LOGIN & AUTH PAGES
   ========================================================== */

.login_heading {
  color: #314970;
  font-size: 20px;
  padding-bottom: 20px;
  position: relative;
  display: inline-block;
}

.login_heading:after {
  position: absolute;
  content: "";
  left: 25%;
  top: 70%;
  width: 50%;
  height: 2px;
  background: #ee1820;
}

.login_input {
  padding: 8px 12px;
}

.note_1 {
  background: #073b76;
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}

.termsConditionsarea p {
  font-size: 14px;
}

.termsConditionsarea ul li,
.termsConditionsarea ol li {
  font-size: 14px;
  margin-bottom: 10px;
  margin-left: 10px;
}

.Term_con_area h3 {
  font-size: 16px;
  font-weight: bold;
  color: #084594;
}

.Term_con_area ul,
.Term_con_area ol {
  font-size: 14px;
}

.Term_con_area ul li,
.Term_con_area ol li {
  padding-bottom: 5px;
}

/* ==========================================================
   13. DASHBOARD & CARDS
   ========================================================== */

.page-name-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
}

.page-head-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #6d6e71;
  margin-bottom: 0;
}

.dashboard_thumb {
  background: linear-gradient(150deg, #d0d0d0, #ffffff);
  border-radius: 4px;
  color: #000;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center !important;
  text-align: center;
  border: 1px solid #ccc;
  min-height: 155px;
}

.dashboard_thumb:hover {
  color: #000;
}

.thumb_icon {
  background: #084693;
  border-radius: 4px;
  padding: 5px 7px;
  margin-bottom: 5px;
}

.thumb_icon img {
  max-width: 30px;
}

.dashboard_thumb h4 {
  font-size: 14px;
  margin-bottom: 4px;
  margin-top: 5px;
}

.dashboard_thumb p {
  font-size: 12px;
  margin: 0;
  line-height: 1.2;
  height: 30px;
}

.customer-carousel {
  margin-bottom: 10px;
  box-shadow: 0px 3px 14px #231f2024;
  border-radius: 18px;
}

.carousel-item {
  border-radius: 18px;
}

.key-event-merchant {
  display: flex;
  gap: 4px;
  margin: 3px 0;
}

.merchant-img {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  height: 25px;
  width: 25px;
  padding: 3px;
  border-radius: 50%;
  border: 3px solid #efefef;
}

.merchant-img img {
  width: 100%;
  object-fit: contain;
}

.links_cards_box {
  width: 50%;
  background: #dfdcdc;
  height: 80px;
  text-align: center;
  padding: 0px 15px;
  line-height: 18px;
  border-bottom: 2px solid #ff0000;
  position: relative;
  margin: 0px 2%;
  display: flex;
  align-items: center;
}

.links_cards_box:after {
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 20px;
  border-bottom: solid 10px rgb(221 28 51);
  border-left: solid 10px rgb(221 35 57);
  border-right: solid 10px transparent;
  border-top: solid 10px transparent;
  content: "";
  left: 0;
}

.links_cards_box:hover a {
  color: #fff;
}

.links_cards_box:hover {
  background: #084594;
}

.download_cards_box {
  width: 50%;
  margin: 0 2%;
  font-size: 14px;
  height: 100px;
  text-align: center;
  color: #fff;
}

.download_cards_box i {
  font-size: 30px;
  display: block;
  text-align: center;
  width: 100%;
  color: #fff;
  padding-top: 20px;
  padding-bottom: 5px;
  line-height: 24px;
}

.download_cards_box a {
  color: #fff;
}

.product_guide_bg {
  background: #3298fa;
}

.web_user_guide_bg {
  background: #e67f22;
}

.feedback_Area i {
  font-size: 36px;
}

.feedback_Area {
  background: #417fcf;
  color: #fff;
  margin: 0px 10px;
  padding: 5px 10px;
  font-size: 24px;
  margin-bottom: 10px;
}

.customer_dashboard table td,
.customer_dashboard table th {
  padding: 5px;
}

.light_blue {
  background: #417fcf;
  border-top: 1px solid #74a3e1;
}

.Pending_approval_list {
  list-style: none;
  margin: 0px;
  padding: 9px;
}

.Pending_approval_list li a {
  font-size: 14px;
  line-height: 28px;
  font-weight: 600;
  color: #04397f;
}

.Pending_approval_list li a:hover {
  text-decoration: underline;
}

.PGSuccessIcon i,
.PGfailedIcon i {
  font-size: 36px;
  vertical-align: middle;
  padding-right: 5px;
}

.PGSuccessIcon p,
.PGfailedIcon p {
  font-size: 22px;
  margin-bottom: 0;
}

/* ==========================================================
   14. MARQUEE & ANIMATIONS
   ========================================================== */

.marquee_new {
  height: 25px;
  width: 100%;
  background-color: #f5f5f5;
  overflow: hidden;
  position: relative;
}

.marquee_new div {
  display: flex;
  align-items: center;
  width: 200%;
  height: 30px;
  position: absolute;
  overflow: hidden;
  animation: marquee_new 10s linear infinite;
}

.marquee_new span {
  float: left;
  width: 50%;
  text-wrap: nowrap;
}

@keyframes marquee_new {
  0% {
    left: 0;
  }

  100% {
    left: -100%;
  }
}

.text_width_area {
  width: 100%;
  height: 390px;
  margin: 0 auto;
  overflow: hidden;
  background: transparent;
  position: relative;
  box-sizing: border-box;
  font-size: 14px;
}

.Notification_list {
  background: url(../../assets/images/fuel_drive.jpg) no-repeat;
  height: 100%;
  width: 100%;
  background-size: cover;
}

.marquee {
  top: 6em;
  position: relative;
  box-sizing: border-box;
  animation: marquee 15s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    left: 100%;
  }

  100% {
    left: -100%;
  }
}

.microsoft .marquee {
  margin: 0;
  padding: 0 1em;
  line-height: 1.5em;
  font:
    1em "Segoe UI",
    Tahoma,
    Inter,
    Sans-Serif;
}

.microsoft:before,
.microsoft::before,
.microsoft:after,
.microsoft::after {
  left: 0;
  z-index: 1;
  content: "";
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 2em;
  background-image: linear-gradient(top, #fff, rgba(255, 255, 255, 0));
}

.microsoft:after,
.microsoft::after {
  bottom: 0;
  transform: rotate(180deg);
}

.microsoft:before,
.microsoft::before {
  top: 0;
}

/* ==========================================================
   15. DOCUMENT UPLOAD & IMAGES
   ========================================================== */

div#idPfrontImg,
#idPbackImg,
#idAfrontImg,
#idAbackImg,
#panCardImg,
#incorpImg,
#vehicleDetailsImg,
#customerFormImg,
div#idLfrontImg,
#vehicleDetailsImg,
#DeclarationImg {
  text-align: left;
  border-radius: 3px;
  max-width: 100%;
  margin-bottom: 25px;
}

div#idPfrontImg img,
#idPbackImg img,
div#idAfrontImg img,
#idAbackImg img,
#panCardImg img,
#incorpImg img,
#vehicleDetailsImg img,
#CustFormFrontSrc img,
#customerFormImg img,
#idLfrontImg img,
#incorpImg img,
#DeclarationImg img {
  max-width: 100%;
  max-height: 100px;
  width: 100% !important;
  margin-bottom: 20px;
}

img#IdProofFront,
img#IdProofBack,
#AddressProofFront,
#IdProofBackSrc,
#AddressProofBack,
#CustFormFrontSrc,
#VEHFrontSrc,
#IdProofFrontSrc,
#LetterHeadProofSrc,
img#idLfrontImg,
#LetterHead,
#PANFrontSrc,
#AddressProofFrontSrc,
#AddressProofBackSrc,
#incorpImgFrontSrc,
#DeclarationImgFrontSrc,
#AadhaarFrontImageEKYC,
#AadhaarBackImageEKYC,
#PanCardImageEKYC,
img#PanCard,
img#VehicleDetails,
img#CustomerForm {
  max-width: 100%;
  max-height: 100px;
  width: 100%;
  margin-bottom: 25px !important;
}

img#IdProofFrontPDFDOC,
#AddressProofFrontPDFDOC,
img#IdProofBackPDFDOC,
#AddressProofBackPDFDOC,
#IdProofBackSrcPDFDOC,
#IdProofFrontSrcPDFDOC,
#AddressProofFrontSrcPDFDOC,
#AddressProofBackSrcPDFDOC,
#PANFrontSrcPDFDOC,
#incorpImgSrcPDFDOC,
#LetterHeadPDFDOC,
#LetterHeadProofSrcPDFDOC,
#VEHFrontSrcPDFDOC,
#downloadVEHFrontDoc,
#CustFormFrontSrcPDFDOC,
#downloadCustFormFrontDoc,
#custFormSrcPDFDOC,
#DeclarationImgSrcPDFDOC,
#AadhaarFrontImageEKYCPDFDOC,
#AadhaarBackImageEKYCPDFDOC,
#PanCardImageEKYCPDFDOC,
img#PanCardPDFDOC,
img#VehicleDetailsPDFDOC,
img#CustomerFormPDFDOC {
  max-width: 50px !important;
  height: auto !important;
  display: block;
  margin-bottom: 20px;
}

#IdProofFrontDownloadlnk,
#IdProofBackDownloadlnk,
#AddressProofFrontDownloadlnk,
#AddressProofBackDownloadlnk,
#downloadIdFrontDoc,
#downloadIdFrontDoc1,
#downloadIdBackDoc1,
#downloadAddFrontDoc1,
#downloadAddBackDoc1,
#downloadPANFrontDoc1,
#downloadincorpImgDoc1,
#downloadVEHFrontDoc1,
#downloadCustFormFrontDoc,
#downloadCustFormFrontDoc1,
#downloadLetterHeadProofDoc,
#PanCardDownloadlnk,
#downloadLetterHeadProofDoc1,
#LetterHeadDownloadlnk,
#LetterHeadProofDownloadlnk,
#PanCardFrontDownloadlnk,
#VehicleDetailsFrontDownloadlnk,
#CustomerFormFrontDownloadlnk,
#custFormDownloadlnk,
#downloadincorpImgDoc1,
#downloadDeclarationImgDoc1,
#CustomerSelfieDownloadlnk,
#RBESelfieDownloadlnk,
#CustomerWithRBESelfieDownloadlnk,
#AadhaarFrontImageEKYCDownloadlnk,
#AadhaarBackImageEKYCDownloadlnk,
#PanCardImageEKYCDownloadlnk,
#VehicleDetailsDownloadlnk,
#CustomerFormDownloadlnk {
  background: transparent;
  border: 2px solid #084693;
  padding: 6px 10px;
  border-radius: 4px;
  margin: 10px 0;
  text-transform: uppercase;
  color: #084693;
}

#IdProofFrontDownloadlnk:hover,
#IdProofBackDownloadlnk:hover,
#AddressProofFrontDownloadlnk:hover,
#AddressProofBackDownloadlnk:hover,
#downloadIdFrontDoc:hover,
#downloadIdFrontDoc1:hover,
#downloadIdBackDoc1:hover,
#downloadAddFrontDoc1:hover,
#downloadAddBackDoc1:hover,
#downloadPANFrontDoc1:hover,
#downloadincorpImgDoc1:hover,
downloadLetterHeadProofDoc:hover,
#LetterHeadProofDownloadlnk:hover,
#downloadLetterHeadProofDoc1:hover,
#custFormDownloadlnk:hover,
#downloadVEHFrontDoc1:hover,
#downloadCustFormFrontDoc1:hover,
#CustomerSelfieDownloadlnk:hover,
#RBESelfieDownloadlnk:hover,
#CustomerWithRBESelfieDownloadlnk:hover,
#AadhaarFrontImageEKYCDownloadlnk:hover,
#AadhaarBackImageEKYCDownloadlnk:hover,
#PanCardImageEKYCDownloadlnk:hover,
#PanCardDownloadlnk:hover,
#VehicleDetailsDownloadlnk:hover,
#CustomerFormDownloadlnk:hover {
  background: #084693;
  color: #fff;
}

a.Icons_sty {
  float: left;
}

a.Icons_diff_sty {
  font-size: 16px;
  padding-right: 10px;
  color: #073b76 !important;
  cursor: pointer;
  padding-top: 6px;
}

/* ==========================================================
   16. ROLE / LOCATION MANAGEMENT PANELS
   ========================================================== */

.UserRoleArea {
  background: #f4f4f4;
  height: 100%;
}

.UserRoleArea h2,
.LocationsArea h2 {
  font-size: 14px;
  font-weight: bold;
  background: #0088a5;
  color: #fff;
  padding: 6px 15px;
  margin-bottom: 0px;
}

.UserRoleArea ul {
  margin: 0px;
  padding: 0;
  list-style: none;
}

.UserRoleArea ul li {
  padding: 5px 15px;
  cursor: pointer;
}

.UserRoleArea ul li:hover,
.UserRoleArea ul li:active,
.UserRoleArea ul li:focus {
  background: #e8e5e5;
}

.LocationsArea #accordion,
.ManageRoleArea #accordion {
  margin: 15px;
}

.ManageRoleArea .panel-group,
.ManageRoleArea .panel-group .panel,
.ManageRoleArea .panel-group .panel-heading,
.ManageRoleArea .panel-group .panel-heading a,
.ManageRoleArea .panel-group .panel-title,
.ManageRoleArea .panel-group .panel-title a,
.ManageRoleArea .panel-group .panel-body,
.ManageRoleArea
  .panel-group
  .panel-group
  .panel-heading
  + .panel-collapse
  > .panel-body {
  border-radius: 2px;
  border: 0;
}

.LocationsArea .panel-group,
.LocationsArea .panel-group .panel,
.LocationsArea .panel-group .panel-heading,
.LocationsArea .panel-group .panel-heading a,
.LocationsArea .panel-group .panel-title,
.LocationsArea .panel-group .panel-title a,
.LocationsArea .panel-group .panel-body,
.LocationsArea
  .panel-group
  .panel-group
  .panel-heading
  + .panel-collapse
  > .panel-body {
  border-radius: 2px;
  border: 0;
}

.LocationsArea .panel-group .panel-heading,
.ManageRoleArea .panel-group .panel-heading {
  padding: 0;
}

.LocationsArea .panel-group .panel-heading {
  position: relative;
}

.LocationsArea .panel-group .panel-heading a {
  display: block;
  background: #edeaea;
  color: #000;
  padding: 5px 42px;
  text-decoration: none;
  position: relative;
  font-size: 12px;
}

.ManageRoleArea .panel-group .panel-heading a {
    display: block;
    background: #ffffff;
    color: #000000;
    padding: 10px 30px;
    text-decoration: none;
    position: relative;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #e2e2e2;
}

.LocationsArea .panel-group .panel-heading a.collapsed {
  background: #fff;
  color: inherit;
  font-size: 12px;
}

.ManageRoleArea .panel-group .panel-heading a.collapsed {
    background: #ffffff;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
}

.LocationsArea .panel-group .panel-heading a:after,
.ManageRoleArea .panel-group .panel-heading a:after {
  content: "-";
  position: absolute;
  left: 15px;
  top: 10px;
  font-size: 14px;
  font-weight: bold;
}

.LocationsArea .panel-group .panel-heading a.collapsed:after,
.ManageRoleArea .panel-group .panel-heading a.collapsed:after {
  content: "+";
}

.LocationsArea .panel-group .panel-collapse,
.ManageRoleArea .panel-group .panel-collapse {
  margin-top: 5px !important;
}

.LocationsArea .panel-group .panel-body,
.ManageRoleArea .panel-group .panel-body {
  background: #ffffff;
  padding: 5px 0px;
  margin-top: 0;
}

.LocationsArea .panel-group .panel-body ul {
  list-style: none;
}

.LocationsArea .panel-group .panel,
.ManageRoleArea .panel-group .panel {
  background-color: transparent;
}

.LocationsArea .panel-group .panel-body p:last-child,
.LocationsArea .panel-group .panel-body ul:last-child,
.LocationsArea .panel-group .panel-body ol:last-child {
  margin-bottom: 0;
}

.LocationsArea #accordion {
  max-height: 400px;
  overflow-y: scroll;
  min-height: 200px;
}

/* ==========================================================
   17. APP-SPECIFIC COMPONENTS
   ========================================================== */

.payment_gateway_form {
  max-width: 100%;
  padding: 0px;
}

.CCMSRechargePaygateway h3 {
  background: #073b76;
  padding: 10px 30px;
  font-size: 16px;
  border-radius: 5px 5px 0 0;
  margin-bottom: 0;
  color: #fff;
  font-weight: 400;
}

.verify_form .input-group-text {
  padding: 2px 10px;
}

.last_rw_dt_txt {
  font-size: 14px;
  background: #feffb3;
  color: #000;
  padding: 7px 10px;
  margin-bottom: 0;
}

.updateStatus {
  max-width: 100px;
  width: 100%;
}

.down_btn_sty {
  max-width: 125px;
}

.refresh_btn {
  display: block;
  right: -30px;
  position: absolute;
  top: -3px;
  padding: 10px 5px 10px 10px;
}

.help_txt {
  position: absolute;
  top: 9px;
  right: 16px;
  z-index: 100;
  color: #404282 !important;
  font-weight: bold;
  cursor: pointer;
}

.help_txt:hover {
  text-decoration: underline !important;
}

.Help_Area p {
  margin-bottom: 5px;
  font-size: 12px;
}

.Help_Area ol {
  padding: 0 25px;
}

.Help_Area ol li {
  font-size: 13px;
  padding-bottom: 6px;
}

div#searchResponse > span {
  font-weight: bold;
  letter-spacing: 0.5px;
}

#MerchantSummaryData div {
  word-break: break-word;
}

.planVal,
.actionVal {
  padding: 5px 3px;
}

table#alternameMobSection tr td {
  vertical-align: middle;
}

a[data-toggle="tooltip"] {
    position: relative;
    transition: all 0.2s;
    padding: 3px;
}

a[data-toggle="tooltip"]:hover:after {
  position: absolute;
  content: attr(tooltip);
  background: #0000008a;
  padding: 3px 5px;
  border-radius: 3px;
  color: #fff;
  font-size: 10px;
  right: 100%;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
  word-break: initial;
  z-index: 100;
  max-width: 200px;
}

/* Many pages use title= only (no tooltip attribute). Empty content: attr(tooltip) drew a stray dark box on hover. */
a[data-toggle="tooltip"]:not([tooltip]):hover:after,
a[data-toggle="tooltip"][tooltip=""]:hover:after {
  content: attr(title);
}

a[data-toggle="tooltip"]:hover:before {
  position: absolute;
  content: "";
  bottom: 50%;
  border-color: transparent transparent transparent #0000008a;
  border-width: 3px 4px 3px 4px;
  border-style: solid;
  left: 0px;
  pointer-events: none;
}

/* ==========================================================
   18. RESPONSIVE — MEDIA QUERIES
   ========================================================== */

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 910px) {
  .searchheader {
    display: none;
  }

  .sidemenu-button {
    display: inline-block;
    top: 15px;
    left: 15px;
    margin-right: 10px;
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #084594;
    outline: none;
  }

  .sidemenu-button:hover,
  .sidemenu-button:focus,
  .sidemenu-button:active {
    outline: none;
  }

  #sidenav {
    position: absolute;
    top: 50px;
    left: 0;
    width: 30%;
    height: calc(100vh - 50px);
    z-index: 2;
    overflow-y: auto;
    transition: transform 0.3s ease-in-out;
    transform: translateX(-100%);
  }

  #sidenav.open {
    transform: translateX(0);
  }

  .content {
    flex: 1;
    overflow-y: auto;
    width: 100vw;
  }

  .footer {
    z-index: 3;
    flex-direction: column;
    height: auto;
  }

  .main-content {
    overflow-y: auto;
    width: 100%;
    height: 100vh;
  }

  .side-bar-panel {
    padding: 0px;
    width: 0px;
  }
}

@media (max-width: 810px) {
  .content {
    flex: 1;
    overflow-y: auto;
    background-color: #fff;
    padding: 20px;
    scroll-behavior: smooth;
  }

  .footer {
    height: auto;
    background-color: #ebf1f7;
    text-align: center;
    line-height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }

  .container-body {
    display: grid;
    grid-template-rows: 30px 1fr auto;
    grid-template-columns: 1fr;
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
  }

  .header {
    height: 50px;
    width: 100%;
    display: flex;
  }

  .header div a {
    display: flex;
    align-items: center;
    max-height: 100%;
  }

  .header div a img {
    height: auto;
    width: auto;
    max-height: 90% !important;
  }
}

@media (max-width: 767px) {
  .sidenav {
    width: 35% !important;
  }
}

@media (max-width: 520px) {
  .sidenav {
    width: 40% !important;
  }
}

@media (max-width: 475px) {
  .sidenav {
    width: 45% !important;
  }
}

@media screen and (max-width: 992px) {
  .top_navs {
    position: absolute;
    left: 0;
    right: 0;
    top: 110%;
    background: #030b42;
    z-index: 1000;
  }

  .trigger {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .header_logo {
    max-width: 170px;
  }
}

@media screen and (max-width: 576px) {
  .refresh_btn {
    position: static;
  }
}

@media screen and (min-width: 768px) {
  .CCMSRechargePaygateway {
    min-height: 390px;
  }

  .note_1 {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .MobileMainHeight {
    min-height: 360px;
    max-height: 100%;
  }

  .main_footer {
    position: static;
  }

  main {
    padding-bottom: 0px;
    margin-bottom: 0px !important;
  }

  .Know_About_txt {
    font-size: 16px;
    font-weight: 500 !important;
  }

  .top_header {
    background: #fff;
    position: static;
    z-index: 1000;
    top: 0;
    width: 100%;
  }

  .Mb_button_width {
    max-width: 160px;
    margin: 0px auto;
  }
}


/*******New CSS****/
.addbankacc {
    position: absolute;
    top: 10px;
    right: 20px;
}
.avail-balance-area {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 6px 20px;
    border: 1px solid #e2e2e2;
}
.avail-amount{
    font-size: 18px;
    font-weight: 900;
}

.payment-txt-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
.pine-lab-logo-area {
    justify-content: center;
    /* display: flex; */
    background: #fff;
    border-radius: 10px;
    padding-top: 20px;
    text-align: center;
}
.secure-icon {
    background: #f7f7f7;
    width: 75px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin: 0px auto;
}
.secure-icon i {
    font-size: 42px;
}
.paymrnt-gate-bg {
    background: #fff;
    border-radius: 8px;
    /* margin-top: 15px; */
    padding: 10px 20px;
    /* display: flex; */
    /* align-items: center; */
}
.current-balance {
    background: #d1ecf1;
    padding: 15px 25px;
    border-radius: 10px;
    border-left: 5px solid #2d5378;
    outline: 1px solid #b6d8df;
}
.current-balance p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}
.amount-txt {
    font-size: 18px;
    font-weight: 800;
    color: #004282;
}
.payment-gateway {
    padding: 20px;
    background: #d1ecf1;
    border-radius: 10px;
    /* margin-top: 20px; */
    border: 1px solid #b6d8df;
}
.pg-wallet-item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
.pg-wallet-cb {
    margin-top: 0;
    transform: scale(1.25);
    transform-origin: left center;
    border: 1px solid #aba9a9;
}
.pg-wallet-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.6rem;
    margin-bottom: 0;
}
.pg-wallet-logo {
    max-width: 150px;
    height: 32px;
    object-fit: contain;
}
.dropdown.header-avatar-dropdown a {
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 5px;
}
.dropdown-menu.show {
    display: block;
    padding: 0px;
}
.dropdown-divider {
    margin: 0px;
    border-top: 1px solid #f1f1f1;
}
.progress {
    height: 5px;
}
.modal-header .close {
    background: transparent;
    border: none;
    font-size: 24px;
}
.seg_tab {
    border-bottom: 2px solid #0ab39c;
    font-weight: 600;
}
button.btn-close {
    filter: invert(1);
}

/* ==========================================================
   Universal document preview modal (images / PDFs)
   Reusable across pages: add class="document-preview-modal" on modal root.
   ========================================================== */
.document-preview-modal .document-modal-content {
    border-radius: 8px;
    overflow: hidden;
    max-height: calc(100vh - 1.5rem);
    display: flex;
    flex-direction: column;
}
.document-preview-modal .document-modal-header {
    background-color: #0ab39c;
}
.document-preview-modal .document-modal-body {
    overflow-y: auto;
    flex: 1 1 auto;
    background: #fff;
}
.document-preview-modal .document-preview-image {
    max-width: 100%;
    max-height: 70vh;
}
.document-preview-modal .document-preview-pdf {
    min-height: 70vh;
}
.document-preview-modal .document-modal-footer {
    border-top: 1px solid #eef1f4 !important;
    justify-content: center !important;
    gap: 0.75rem;
}
.document-preview-modal .document-modal-close-btn {
    font-size: 13px;
    border: 1px solid #0ab39c;
    color: #0ab39c;
    border-radius: 6px;
}
.document-preview-modal .document-modal-close-btn:hover {
    background-color: rgba(10, 179, 156, 0.08);
    color: #0ab39c;
}

/* Financial — verify account number field width */
.form-control.max-w-220 {
    max-width: 220px;
}
/* Shared message modals (success/failure/error/confirmation) — guarantee a visible
   dimmed overlay even if a CSS reset zeroed Bootstrap's default backdrop opacity. */
.modal-backdrop {
    background-color: #000;
}
.modal-backdrop.show {
    opacity: 0.5;
}
