@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  --primary-font: "Figtree", sans-serif;
  --black-color: #000;
  --font-weight-300: 300;
  --font-weight-400: 400;
  --font-weight-500: 500;
  --font-weight-600: 600;
  --font-weight-Bold: 700;
  --font-size-12: 12px;
  --font-size-13: 13px;
  --font-size-14: 14px;
  --font-size-15: 15px;
  --font-size-16: 16px;
  --font-size-17: 17px;
  --font-size-18: 18px;
  --font-size-21: 21px;
  --font-size-22: 22px;
  --font-size-24: 24px;
  --font-size-26: 26px;
  --font-size-45: 45px;
  --font-size-31: 31px;
  --font-size-32: 32px;
  --secondery-font: "";
}



* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--primary-font);
  background-image: url(../images/body-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.trs-page {
  flex: 1;                
}


h2 {
  color: #000000;
  font-family: var(--primary-font);
}

/* header */

/*Dec 2025*/
    
        a.navbar-brand {
            margin: 0 auto;
            position: relative;
        }
        .container.logo-center {
            display: flex;
            margin: 0 auto;
            text-align: center;
            justify-content: center !important;
        }
        .notification-badge {
          position: absolute;
          top: -5px;
          right: -6px;
          font-size: 10px;
          padding: 4px 6px;
          border-radius: 50%;
          background-color: #E41863;
        }
/*Dec 2025*/


.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-lg,
.navbar>.container-md,
.navbar>.container-sm,
.navbar>.container-xl,
.navbar>.container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: flex-start;
  justify-content: space-between;
}

div#dashboard-nav ul.navbar-nav.nav.nav-tabs.dashboard-nav {
  border: none;
}

div#dashboard-nav a {
  padding: 0 10px;
}

.right-menu a {
  padding-right: 10px;
}

.bg-body-tertiary {
  --bs-bg-opacity: 0.8;
  background-color: rgb(233 231 231) !important;
}

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  background: #e3e3e3;
  padding-top: 0px;
}

.prof-details.green {
  background-color: #C6ECC6 !important;
}

.dropdown.header-drop .custom-dropdown::after {
  display: none !important;
}

.header-drop {
  position: relative;
}

.header-drop .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -95px;
  margin-top: 0;
  z-index: 1000;
  padding: 20px 0 5px;
}

.header-drop.profile .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -25px;
  margin-top: 0;
  z-index: 1000;
}

.dropdown.header-drop li {
  padding: 5px;
}

.header-drop:hover .dropdown-menu,
.header-drop .dropdown-menu:hover {
  display: block;
}

.header-drop.profile .dropdown-menu {
  min-width: unset;
  padding: 10px;
  text-align: center;
}

a.dropdown-item.logout {
  color: #E41863;
}

.dropdown.header-drop .dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background: none;
}

.dropdown.header-drop ul.dropdown-menu p {
  color: #E41863;
  font-size: 13px;
  line-height: normal;
  font-weight: 400;
  font-family: var(--primary-font);
  padding-left: 15px;
  margin-bottom: 3px;
}

a.dropdown-item.img {
  font-size: 12px;
  font-weight: 500;
  color: #777777;
}

a.dropdown-item.img img {
  margin-right: 5px;
}

.right-menu {
  display: flex;
  justify-content: space-evenly;
}

.right-menu a.navbar-brand {
  margin-right: 0;
}

div#business-dashboard-nav .navbar-expand-lg .navbar-nav .nav-link {
  padding: 7px 11px;
  margin-right: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  border: none;
}

ul.navbar-nav.nav.nav-tabs.dashboard-nav {
  border: none;
}

div#business-dashboard-nav .nav-tabs .nav-link.active {
  color: #E41863;
  border-bottom: 1px solid #E41863;
  background: none;
}

/*.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  transition: top 0.3s ease-in-out;
}

.nav-up {
  top: -100px; 
}

.nav-down {
  top: 0;
}
*/


/* header-end */

/*.errormsg {
    position: absolute;
    background-color: #E41863;
    font-size: 11px;
    display: none;
    top: 45px;
    color: var(--white-color);
    padding: 1px 6px 1px 6px;
    border-radius: 4px;
    z-index: 99;
    left: 5px;
}*/
.errormsg {
  position: absolute;
  background-color: #E41863;
  font-size: 10px;
  top: 93%;
  left: 5px;
  color: #fff;
  padding: 1px 6px;
  border-radius: 4px;
  z-index: 999;
  display: none;
  white-space: nowrap;
  margin-top: 4px;
}

.trs-page {
  margin-top: 9rem;
}


.main-page {
  position: relative;
}


.form-group {
  /* display: flex; */
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  position: relative;
}

.form-group input {
  font-family: var(--primary-font);
  padding: 10px 15px;
  border: 1px solid #D9D9D9;
  border-radius: 25px;
  font-size: 14px;
  width: 100%;
  background-color: #F7F7F7;
}

.verify-group {
  position: relative;
  width: 100%;
}


.confirm-btn {
  position: relative;
  width: 100%;
  background-color: #41b655;
  color: #fff;
  border: none;
  font-family: var(--primary-font);
  padding: 11px 20px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

/* Confirm text */
.confirm-btn .btn-text {
  transition: transform 0.3s ease;
}

/* Arrow icon positioned to the right */
.confirm-btn .right-arrow {
  position: absolute;
  right: 100px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover effects */
.confirm-btn:hover {
  background-color: #E41863;
}

.confirm-btn:hover .btn-text {
  transform: translateX(-15px);
  /* Slide text left */
}

.confirm-btn:hover .right-arrow {
  opacity: 1;
  /* Reveal arrow */
}

/* buttons animation start*/
/* Arrow icon positioned to the right */
.confirm-btn.common-btn .right-arrow {
  position: absolute;
  right: 125px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.confirm-btn.common-btn:hover .right-arrow {
  opacity: 1;
  /* Reveal arrow */
}

/* buttons animation end*/
img.right-arrow {
  width: 24px !important;
}



/* login form start */
section#business-login-section-form .login-form {
  max-width: 422px;
  background: #FFFFFF;
  margin: auto;
  border-radius: 30px;
  padding: 55px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.login-form h2 {
  margin-bottom: 30px;
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
}

form.login-form p {
  font-family: var(--primary-font);
  font-weight: 300;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #777777;
  padding-bottom: 10px;
  margin-bottom: 0;
}

.login-text a {
  font-family: var(--primary-font);
  color: #777777;
  font-size: 13px;
  font-weight: 300;
  text-decoration: none;
}

.login-link.text p {
  color: #000000;
}

section#business-login-section-form button#login-btn {
  margin: 0px 0 0px;
}

input#businessloginotp::placeholder {
  color: #A8A8A8;
  letter-spacing: 10px;
  text-align: center;
  font-size: 32px;
  height: 20px;
}

.verify-group {
  position: relative;
  width: 100%;
}

.verify-btn {
  font-family: var(--primary-font);
  background: none;
  border: none;
  color: #58AA58;
  font-weight: 400;
  cursor: pointer;
  position: absolute;
  right: 10px;
  font-size: 12px;
  top: 10px;
}

/* login form end */


.form-group ::placeholder {
  color: #A8A8A8;
  opacity: 1;
  font-size: 14px;
  font-weight: 400;
}

.form-section {
  margin-bottom: 20px;
}

.form-section h3 {
  font-size: 18px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 25px;
  font-weight: 400;
  color: #000000;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  color: #000000;
  font-weight: 400;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 18px;
  border-radius: 25px;
  border: none;
  background-color: #f9f9f9;
  font-size: 14px;
  color: #333;
}

:focus-visible {
  outline: 1px solid #D9D9D9;
  box-shadow: none;
}







/* footer css start  */
.footer-text p,
a {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #777777;
  text-decoration: none;
  margin-bottom: 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer.footer {
  padding: 50px 0 10px;
}

/* footer css start  */

/* forms hide show end */

/* Dashboard section start */
.dashboard-template {
  background: #FFFFFF80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.dashboard-left-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.dashboard-left-icon h6 {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  font-family: var(--primary-font);
  padding-left: 30px;
}

.main-dashboard-content .top-status {
  text-align: right;
  color: #777777;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 400;
  font-family: var(--primary-font);
}

.dashboard-template.inner {
  background: none;
  padding: 0;
}

.certification-content {
  background-color: #FFFFFF80;
  border-radius: 20px;
  padding: 10px 20px 50px;
}

.pdf-view {
  background: #FFFFFF80;
  padding: 10px 30px;
  border-radius: 23px;
  margin: 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-pdf-inner-content {
  margin: 0 70px;
}

button.btn.ftp-btn {
  text-align: left;
  padding: 20px 15px;
}

button.btn.ftp-btn img {
  margin-right: 10px;
}

.dashboard-right-download {
  display: flex;
  align-items: center;
  align-content: center;
}

.dashboard-right-download p {
  margin-bottom: 0;
}

.dashboard-right-download p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  margin-right: 20px;
}

.dashboard-right-download span.text-small {
  font-size: 12px;
  font-weight: 400;
  color: #58AA58;
  padding-right: 5px;
}



div#file-preview {
  padding: 10px 43px;
  background-color: #ffffff;
  border-radius: 20px;
  margin-right: 15px;
}

.pdf-view span {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  font-family: var(--primary-font);
}

.pdf-view a {
  font-size: 14px;
  color: #777777;
  font-weight: 400;
  font-family: var(--primary-font);
}

.pdf-view img {
  margin-right: 5px;
}

.delivery-address {
  margin: 35px 70px 35px;
}

.delivery-address input.form-control {
  padding: 4px 25px;
}

.delivery-address input.form-control {
  padding: 7px 25px;
  border-radius: 30px;
  border: none;
}

.delivery-address .form-control:focus {
  color: var(--bs-body-color);
  background: #ffffff;
  border: none;
  outline: 0;
  box-shadow: none;
}

.delivery-address label.form-label {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
  font-family: var(--primary-font);

}

.delivery-address input::placeholder {
  color: #000000;
  opacity: 1;
  font-size: 12px;
  font-weight: 400;
  font-family: var(--primary-font);
}

.pdf-view label {
  color: #777777;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--primary-font);
}

.main-dashboard-content div#statusText a {
  font-size: 14px;
  color: #E41863;
  font-weight: 400;
  text-decoration: underline;
}

.pdf-view.upload {
  background: none;
  padding: 10px 11px;
  border-radius: 23px;
  margin: 0px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 25px;
}

a.text-dashboard.upload {
  display: flex;
  justify-content: space-between;
  width: 55px;
}

.dashboard-tab-exel {
  background: #FFFFFF80;
  border-radius: 20px;
}

.dashboard-template.dash-exel {
  background: none;
}

.upload-pdf-exel .pdf-view {
  background: #FFFFFF;
  padding: 9px 30px;
  border-radius: 23px;
  margin: 15px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  width: 80%;
}

.upload-pdf-exel {
  padding: 20px 0 80px;
}

.upload-pdf-exel label span {
  padding-left: 10px;
}

.upload-pdf-exel {
  display: none;
}

.upload-pdf-exel {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.uploading-text span {
  font-size: 12px;
  color: #E41863;
  font-weight: 400;
  line-height: 20px;
}

.uploading-text p {
  font-size: 12px;
  color: #777777;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0;
}

/* Dashboard section end */

/* my-tag-request section start */
.accordion-button:not(.collapsed) .request-text:first-child {
  color: #E41863;
  font-weight: 400;
  transition: color 0.3s ease;
}

.accordion-button:not(.collapsed) .request-number {
  color: #E41863;
  font-weight: 400;
  transition: color 0.3s ease;
}

.progress-tracker {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 30px 30px 20px 40px;
  counter-reset: step;
}

.progress-tracker::before {
  content: "";
  position: absolute;
  top: 39px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #D9D9D9;
  z-index: 0;
}

.progress-tracker::after {
  content: "";
  position: absolute;
  top: 39px;
  left: 0;
  height: 2px;
  background-color: #28a745;
  z-index: 0;
  width: 9%;
  transition: width 0.4s ease;
}

.progress-indicator {
  position: absolute;
  top: 35px;
  width: 10px;
  left: 95px;
  height: 10px;
  background-color: #fff;
  border: 1px solid #28a745;
  border-radius: 50%;
  z-index: 2;
  transition: left 0.4s ease;
}

.progress-fill {
  position: absolute;
  top: 39px;
  left: 0;
  height: 2px;
  /*background-color: #28a745;*/
  z-index: 1;
  transition: width 0.4s ease;
}

.step {
  position: relative;
  text-align: center;
  flex: 1;
  z-index: 1;
}

.step .circle {
  width: 9px;
  height: 9px;
  background-color: #ec407a;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.step.active .circle {
  background-color: #ec407a;
}

.step.done .circle {
  background-color: #28a745;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  top: -7px;
}

.step.done .circle img {
  width: 10px;
  height: 10px;
}

.label {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 5px;
}

.sub-label {
  font-size: 10px;
  font-weight: 400;
  color: #777777;
  line-height: 16px;
  position: absolute;
  bottom: -20px;
}

div#myrequests .confirm-btn {
  margin-bottom: 30px;
}

.request-content-box {
  display: flex;
  width: 100%;
  align-items: baseline;
  align-content: center;
  justify-content: space-around;
}

.request-number {
  width: auto;
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  font-family: var(--primary-font);
}

.request-content-left span.request-text {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  font-family: var(--primary-font);
}

.request-content-left small.request-text {
  font-size: 10px;
  color: #777777;
  font-weight: 400;
  padding-left: 20px;
}

span.business.request-status {
  font-size: 11px;
  color: #777777;
  font-weight: 400;
  margin-right: 0px;
  background: #E3E3E3;
  padding: 6px 18px;
  border-radius: 30px;
}

span.request-status-info {
  font-size: 11px;
  color: #58AA58;
  font-weight: 400;
}

.my-tag-request-content .accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: #ffffff;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
  border-radius: 15px 15px 0px 0px !important;
}

span.business.delivered.request-status-info {
  font-size: 11px;
  color: #58AA58;
  font-weight: 400;
  background: #C6ECC6;
  padding: 8px 13px;
  border-radius: 30px;
}

span.business.request-status-info {
  font-size: 11px;
  color: #58AA58;
  font-weight: 400;
  background: #C6ECC6;
  padding: 5px 14px;
  border-radius: 30px;
}

.request-content-right {
  text-align: right;
}


.my-tag-request-content .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: #FFFFFF80;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

section#new-brands .accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: #FFFFFF;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
  border-radius: 15px 15px 0px 0px !important;
}

section#new-brands .accordion-body {
  background: #FFFFFF;
  border-radius: 0 0 15px 15px;
  padding: 5px 50px 30px 60px;
}

.request-information .request-content-left span.request-text {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  font-family: var(--primary-font);
  margin-left: -5px;
}

.request-information label.info-label {
  font-size: 10px;
  color: #777777;
  font-weight: 400;
  line-height: 20px;
}

.request-information .info-value {
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  border: none;
}

.request-information .common-box-label {
  width: 12%;
  margin-top: 0;
      padding-bottom: 10px;
}

.request-information .common-box-label-report {
  width: 12%;
  margin-top: 0;
}

.request-information .info-value.pdf {
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  display: flex;
  justify-content: flex-start;
}

.request-information {
  padding-bottom: 20px;
}



.vendor-details p {
  font-size: 12px;
  color: #000000;
  margin-bottom: 0;
  text-align: left;
}

.vendor-details.pdf {
  padding: 7px 70px 7px 15px;
  background-color: #FFFFFF;
  border-radius: 30px;
  font-size: 12px;
  color: #000000;
  margin-bottom: 0;
  text-align: left;
}

.vendor-status span.request-status {
  font-size: 10px;
  color: #777777;
  font-weight: 400;
  margin: 0 15px;
}

.vendor-info-content .form-group {
  margin-bottom: 0;
}

.vendor-details.pdf img {
  margin-right: 25px;
}

.accordion-main-inner-body {
  margin: 0 0 0 40px;
}

.my-tag-request-content .accordion {
  --bs-accordion-border-color: none;
}


.vendor-status {
  display: flex;
  align-items: center;
}

button.finance-btn {
  background-color: #58AA58;
  padding: 4px 11px;
  border-radius: 30px;
  border: none;
}

button.finance-btn span.btn-text {
  font-size: 11px;
  color: #FFFFFF;
  font-weight: 400;
}

.view-po-details a {
  color: #E41863;
  font-size: 12px;
  font-weight: 400;
  text-decoration: underline;
  margin-right: 15px;
}

.vendor-po-details {
  display: flex;
  align-items: center;
}

.business-po-details {
  border: 1px solid #E41863;
  border-radius: 15px;
  padding: 15px 20px;
  margin-bottom: 15px;
}

.business-po-details p {
  margin-bottom: 0;
}

.business-po-details .form-group {
  margin-bottom: 0px;
  position: relative;
}

.business-po-details .prof-details {
  background-color: #F9F0F3;
  border-radius: 30px;
  padding: 7px 20px;
}

input.prof-details p {
  font-size: 12px;
  color: #000000;
  font-weight: 400;
  margin-bottom: 8px;
}

.accordion-main-inner-body .form-group {
  margin-bottom: 0px;
  position: relative;
}


.accordion-main-inner-body .accordion-body.request h6 {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  padding: 10px 0 0px 40px;
}

.accordion-main-inner-body .progress-tracker {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 30px 0px 20px 0px;
  counter-reset: step;
}


span.business.request-status.notify {
  font-size: 11px;
  color: #FFFFFF;
  font-weight: 400;
  margin-right: 0px;
  background: #E41863;
  padding: 5px 18px;
  border-radius: 30px;
}

span.business.request-status.notify img {
  filter: brightness(10);
}

h2.accordion-header {
  position: relative;
}

.request-content-right.business {
  position: absolute;
  right: 60px;
  top: 3px;
  z-index: 9;
}

section#new-tag-request .common-box-label {
  width: 12%;
  margin-bottom: 15px;
}

section#new-tag-request .common-box-label-report {
  width: 37%;
}

.aprove-reject-btn {
  display: flex;
  gap: 12px;
  padding-bottom: 20px;
  margin-top: 5px;
}

section#new-brands .aprove-reject-btn {
  display: flex;
  gap: 12px;
  padding-bottom: 0px;
}

.btn-approve,
.btn-reject {
  padding: 4px 17px;
  font-size: 11px;
  border: none;
  border-radius: 999px;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.btn-approve {
  background-color: #4caf50;
}

.btn-reject {
  background-color: #f8a7b3;
  color: #E41863;
}

.btn-disabled {
  color: #999 !important;
  pointer-events: none;
  opacity: 0.6;
}

.btn-approve.btn-disabled,
.btn-reject.btn-disabled {
  color: #aaa !important;
}


.check-icon {
  font-weight: bold;
}

.cross-icon {
  font-weight: bold;
}


section#new-brands .form-group label {
  font-size: 10px;
  margin-bottom: 6px;
  display: block;
  color: #777777;
  font-weight: 400;
}

section#new-brands .request-information {
  padding-bottom: 0px;
  border-bottom: 1px solid #D9D9D9;
  margin: 0 60px 0 0;
}

.comapany-details-row h4 {
  font-weight: 400;
  font-size: 14px;
  color: #E41863;
}

section#new-brands .comapany-details-row {
  padding-top: 20px;
}

button.btn.ok-button {
  background-color: #58AA58;
  font-size: 14px;
  color: #FFFFFF;
  padding: 10px 46px;
  border-radius: 30px;
  margin-top: 20px;
}

div#rejectModal h5 {
  font-size: 26px;
  font-weight: 400;
  color: #000000;
  padding-bottom: 10px;
}

input#businessloginotp {
  width: 100%;
  max-width: 100%;
  height: 42px;
  font-size: 14px;
  border-radius: 40px;
  padding: 0 0;
  font-weight: 400;
  text-align: center;
  outline: none;
  letter-spacing: 20px;
  color: #333;
}

/* / */
.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}



section#business-main-dashboard .request-content-left {
  padding: 0px;
  margin-left: -5px;
}

.progress-tracker .label {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 14px;
  height: 30px;
  text-align: left;
}

button#confirm-tag-btn {
  position: relative;
  width: auto;
  background-color: #41b655;
  color: #fff;
  border: none;
  font-family: var(--primary-font);
  padding: 11px 27px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-color 0.3s ease;
  margin-left: 40px;
  margin-top: 60px;
}

button#confirm-tag-btn .right-arrow {
  position: absolute;
  right: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

button#confirm-tag-btn:hover {
  background-color: #E41863;
}

button#confirm-tag-btn:hover .btn-text {
  transform: translateX(-10px);
}

button#confirm-tag-btn:hover .right-arrow {
  opacity: 1;
}



.accordion-item {
  border-radius: 15px;
  background: none;
}

.my-tag-request-content .accordion-body {
  padding: 2rem 1rem;
  background: #ffffff;
  border-radius: 0 0 15px 15px;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
  border-radius: 30px 30px 30px 30px;
}

button.accordion-button.d-flex.justify-content-between.align-items-center.collapsed {
  border-radius: 30px;
}

span.request-status-info.rejected {
  font-size: 11px;
  color: #E41863;
  font-weight: 400;
  background: #F9E2EB;
  padding: 5px 14px;
  border-radius: 30px;
}

span.request-status-info.review {
  font-size: 11px;
  color: #FFFFFF;
  font-weight: 400;
  background: #A8A8A8;
  padding: 5px 14px;
  border-radius: 30px;
}

.pagination a.page-link {
  background: none;
  color: #000000;
  font-size: 11px;
  font-weight: 400;
  font-family: var(--primary-font);
  height: 24px;
  width: 24px;
  padding: 7px;
  text-align: center;
}

.pagination a.page-link:hover {
  z-index: 2;
  color: #ffffff;
  background-color: #E41863;
  border: none;
  border-radius: 30px;
  text-align: center;
}

.page-item.active .page-link {
  background-color: #E41863;
  color: #fff;
  border-radius: 30px;
  border: none;
}

.pagination .page-item:first-child .page-link {
  border-radius: 30px;
}

.pagination .page-item:last-child .page-link {
  border-radius: 30px;
}

li.page-item {
  padding: 15px;
}

.page-link {
  background: none;
  border: none;

}

.page-link:hover {
  z-index: 2;
  color: #ffffff;
  background-color: #E41863;
  border-radius: 30px;
}

.page-link:focus {
  z-index: 3;
  color: none;
  background: none;
  outline: 0;
  box-shadow: none;
}

.pagination-content {
  padding: 50px 0 0;
}

.dropdown.request-right a.btn.dropdown-toggle {
  background: #f1f1f180;
  border-radius: 30px;
  padding: 8px 37px;
  font-size: 12px;
  color: #777777;
  font-weight: 400;
}

.dropdown.request-right {
  text-align: right;
  padding: 20px 0;
}

.dropdown.request-right .btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: var var(--bs-btn-active-color) (--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border: none;
}



.dropdown.request-right .custom-dropdown::after {
  display: none !important;
}

.dropdown.request-right .custom-arrow {
  margin-left: 30px;
  transition: transform 0.3s ease;
}


.dropdown.request-right .custom-dropdown[aria-expanded="true"] .custom-arrow {
  transform: rotate(180deg);
}


span.request-status-info.reorder {
  font-size: 11px;
  color: #58AA58;
  font-weight: 400;
  background: #FFFFFF;
  padding: 5px 14px;
  border-radius: 30px;
}


.company-flex {
  display: flex;
  justify-content: space-between;
}

.company-edit span {
  font-size: 14px;
  color: #777777;
  font-weight: 400;
  padding-left: 15px;
}

.company-edit {
  cursor: pointer;
}


.info-value.pdf img {
  padding-right: 5px;
}

.past-report {
  padding-right: 28px;
}

.tag-rejected-heading h2 {
  font-weight: 400;
  font-size: 24px;
}

.tag-rejected-heading p {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0;
}


button#re-submit-btn {
  position: relative;
  width: auto;
  background-color: #41b655;
  color: #fff;
  border: none;
  font-family: var(--primary-font);
  padding: 11px 27px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-color 0.3s ease;
  margin-left: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
}

button#re-submit-btn .right-arrow {
  position: absolute;
  right: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

button#re-submit-btn:hover {
  background-color: #E41863;
}

button#re-submit-btn:hover .btn-text {
  transform: translateX(-10px);
}

button#re-submit-btn:hover .right-arrow {
  opacity: 1;
}

.tag-rejected-heading {
  padding-left: 40px;
}


.dashboard-content-details .common-box-label {
  width: 12%;
}

.dashboard-content-details .common-box-label-report {
  width: 35%;
}

.dashboard-content-details label.info-label {
  font-size: 10px;
  color: #777777;
  font-weight: 400;
  line-height: 20px;
}

.dashboard-content-details .info-value {
  font-size: 12px;
  font-weight: 400;
  color: #000000;
}

.dashboard-content-details .info-value.pdf {
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  display: flex;
  justify-content: flex-start;
}

.dashboard-content-details {
  padding-left: 90px;
  padding-bottom: 35px;
}

.verify-info-details span {
  color: #E41863;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.verify-info-details p {
  color: #777777;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0;
  padding: 25px 0 0;
}

div#rejectModal .form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border: 1px solid #D9D9D9;
  outline: 0;
  box-shadow: none;
}


/* New css */
.dispatch-no.business-address.details .heading h5 {
  font-size: 14px;
  color: #000000;
  font-weight: 600;
  line-height: 20px;
  padding-left: 25px;
}
.vendor-info-content {
  display: flex;
  background-color: #F9F0F3;
  border-radius: 15px;
  padding: 11px 10px 13px;
  align-items: flex-end;
      margin-left: 15px;
}
/* .vendor-details {
  padding: 7px 15px 7px 15px;
  background-color: #FFFFFF;
  border-radius: 30px;
  width: 100%;
} */
.vendor-info-content .form-group {
  margin-bottom: 0px;
  position: relative;
  width: 100%;
  margin-right: 20px;
}
.dispatch-no.business-address {
  background-color: #F9F0F3;
  padding: 16px 5px 15px 0px;
  border-radius: 15px;
  margin-top: 0px;
      margin-right: 15px;
}
.form-buttons {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  gap: 15px;
}
.form-buttons.business .confirm-btn {
  position: relative;
  width: auto;
  background-color: #41b655;
  color: #fff;
  border: none;
  font-family: var(--primary-font);
  padding: 11px 25px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
.form-buttons.business .confirm-btn:hover {
  background-color: #E41863;
}
.form-buttons.business .confirm-btn .right-arrow {
  position: absolute;
  right: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.form-buttons.business .confirm-btn:hover .right-arrow {
  opacity: 1;
}
.form-group.poc label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  color: #000000;
  font-weight: 400;
}
.form-group.poc .prof-details {
  background-color: #F9F0F3;
  border-radius: 30px;
  padding: 7px 20px;
}
.form-group.poc input.prof-details  {
  font-size: 12px;
  color: #000000;
  font-weight: 400;
  margin-bottom: 0;
}
.sub-time {
  font-size: 10px;
  font-weight: 400;
  color: #777777;
  line-height: 16px;
  position: absolute;
  bottom: -35px;
}
.my-tag-request-content .accordion-main-inner-body {
  /* padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x) 2.25rem; */
  background: #ffffff;
  border-radius: 0 0 15px 15px;
}
.modal-content.business .modal-header {
  border-bottom: none; 
}
section#new-tag-request .common-box-label.tag {
  width: 15%;
}
.form-group.custom-select-wrapper label {
  font-size: 10px;
  color: #777777;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0;
}
button.btn.dropdown-toggle {
  font-size: 14px;
  font-weight: 400;
  color: #A8A8A8;
}
.dropdown.register-dropdown {
  width: 100%;
  border: none;
  border: none;
  background-color: #f9f9f9;
  font-size: 14px;
  color: #333;
  /* padding: 11px 40px 11px 100px; */
  border-radius: 50px;
  border: none;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  /* z-index: 1; */
  box-shadow: inset 0 0 0 1px #eee;
  background-image: url(../images/pink-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 17px;
}
button.btn.dropdown-toggle {
  width: 100%;
  padding: 2px 50px 2px 0px;
}
.form-group.custom-select-wrapper .dropdown-toggle::after {
  display: none;
}
.form-group.custom-select-wrapper .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0px;
  font-size: 12px;
  color: #777777;
  border: none;
  background: transparent;
  padding: 5px 25px 0 15px;
}
.form-group.custom-select-wrapper .dropdown-item input[type="checkbox"] {
  accent-color: #E41863;
}

.form-group .dropdown.register-dropdown input,
.form-group select {
  width: 20px !important;
  padding: 11px 18px;
  border-radius: 25px;
  border: none;
  background-color: #f9f9f9;
  font-size: 14px;
  color: #333;
}
button.btn.dropdown-toggle {
  font-size: 12px;
  font-weight: 400;
  color: #A8A8A8;
}
.reason-reject-box {
  background-color: #F9F0F3;
  padding: 20px;
  border-radius: 15px;
}
.reject-box {
  background-color: #FFFFFF;
  padding: 10px;
  border-radius: 30px;
}
.reject-box p {
  margin-bottom: 0;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
}
.reject-name p {
  font-size: 10px;
  color: #777777;
  font-weight: 400;
  line-height: 20px;
  margin-top: 20px;
}
section#new-brands .comapany-details-row.poc {
  padding-top: 0;
}
button#pendingBtn {
  background-color: #777777;
  border: none;
  color: #ffffff;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 400;
  padding: 4px 17px;
}
.comapany-details-row.inner-poc .form-group.poc .prof-details {
  background: none;
  border-radius: 30px;
  padding: 7px 0px;
}
button.trigger-alert {
  background-color: #E41863;
  border: none;
  border-radius: 30px;
  color: #FFFFFF;
  font-size: 11px;
  padding: 7px 14px;
  float: right;
  margin-top: 28px;
}
button.trigger-alert img {
  filter: brightness(10);
}

/* On Behalf Section Start */
nav.file-request .dashboard-template.dash-exel {
  margin-bottom: 0px;
  padding: 10px 92px;
}


.dashboard-template.dash-exel {
  background: none;
}

.dashboard-template {
  background: #FFFFFF80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-radius: 20px;
  margin-bottom: 10px;
}
nav.file-request .nav-tabs .nav-link {
  margin: 0;
  padding: 0;
  position: relative;
}

nav.file-request .nav-link.active {
  border-radius: 20px;
  padding: 0;
}
.or h4 {
  margin-bottom: 0;
  width: 58px;
  padding: 20px 10px;
}
.register-form-content.request-content .company-details-form {
  margin: auto;
  padding: 40px 80px 15px;
  background: #FFFFFf;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  font-family: var(--primary-font);
}
.register-form-content.request-content {
  padding: 10px 0;
}
button.btn.dropdown-toggle {
  font-size: 14px;
  font-weight: 400;
  color: #A8A8A8;
}

button.btn.dropdown-toggle {
  width: 100%;
  padding: 10px 30px;
}
form#raise-request-form .form-group.custom-select-wrapper .dropdown-menu.show {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 15px !important;
  overflow-y: auto;
  justify-content: center;
}
form#raise-request-form .form-group label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  color: #000000;
  font-weight: 400;
}
.form-group.custom-select-wrapper .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0px;
  font-size: 14px;
  color: #333;
  border: none;
  background: transparent;
  padding: 5px 25px 0 15px;
}
form#raise-request-form button.dropdown-item label {
  margin-bottom: 0;
}
form#raise-request-form .form-buttons .confirm-btn {
  position: relative;
  width: auto;
  background-color: #58AA58;
  color: #fff;
  border: none;
  font-family: var(--primary-font);
  padding: 11px 55px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
form#raise-request-form .form-buttons .confirm-btn:hover {
  background-color: #E41863;
}
.form-buttons .confirm-btn .right-arrow {
  position: absolute;
  right: 45px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
button#views-btn {
  position: relative;
  width: 100%;
  background-color: #58AA58;
  color: #fff;
  border: none;
  font-family: var(--primary-font);
  padding: 11px 48px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
.confirm-btn:hover .btn-text {
  transform: translateX(-15px);
}

.confirm-btn .btn-text {
  transition: transform 0.3s ease;
}
button#views-btn:hover {
  background-color: #E41863;
}
.confirm-btn .right-arrow {
  position: absolute;
  right: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
button#close-btns {
  position: relative;
  width: 100%;
  background-color: #58AA58;
  color: #fff;
  border: none;
  font-family: var(--primary-font);
  padding: 11px 48px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
button#close-btns:hover {
  background-color: #E41863;
}
.certification-content.address {
  margin-top: 10px;
}
button#dash-upload-btn {
  position: relative;
  width: auto;
  margin-left: 70px;
  background-color: #58AA58;
  color: #fff;
  border: none;
  font-family: var(--primary-font);
  padding: 11px 42px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
button#dash-upload-btn:hover {
  background-color: #E41863;
}
.certification-content.address .delivery-address {
  margin: 5px 70px 15px;
}
.filled-excel-doc {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px 85px;
}
.request-content.upload-box .upload-box {
  background: #fff5f7;
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
}
.request-content.upload-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.request-content.upload-box button#upload-btn {
  position: relative;
  width: auto;
  color: #fff;
  border: none;
  font-family: var(--primary-font);
  padding: 11px 40px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
section#on-behalf .confirm-btn {
  padding: 11px 33px;
}
nav.file-request .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: -1px;
  height: 2px;
  background-color: #E41863;
  border-radius: 2px;
  width: 70%;
  margin: 0 auto;
}


/* Invoice Tracking */
section#invoice-tracking h6 {
  font-size: 24px;
  color: #000000;
  font-weight: 400;
  line-height: 20px;
  margin-top: 20px;
  margin-bottom: 0;
}
section#invoice-tracking .dropdown.request-right {
  text-align: right;
  padding: 20px 0 0;
}
section#invoice-tracking .pdf-view {
  background: #FFFFFF80;
  padding: 10px 30px;
  border-radius: 23px;
  margin: 15px 0 0;
  width: auto;
  display: block;
}
section#invoice-tracking .pdf-view a {
padding-left: 20px;
}
section#invoice-tracking .pdf-view img {
  margin-right: 20px;
}
section#invoice-tracking .pdf-view a img {
  margin-right: 5px;
}
.invoice-po-details p {
  color: #E41863;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 0;
  text-decoration: underline;
}
button.fina-team-btn {
  background: #58AA58;
  border: none;
  border-radius: 30px;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 400;
  padding: 14px 26px;
}
.invoice-po-details {
  text-align: center;
}
.invoice-tracking-content {
  background-color: #FFFFFF80;
  border-radius: 15px;
  padding: 20px;
  margin-top: 30px;
}
button.re-upd {
    color: #E41863;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    border: none;
    text-decoration: underline;
}
.reason-reject-box h4 {
    font-size: 14px;
    font-weight: 400;
}
section#new-tag-request .request-information {
    padding-bottom: 0px;
}
section#new-tag-request button.btn.dropdown-toggle {
    width: 100%;
    padding: 3px 50px 3px 0;
}
form#raise-request-form .form-group.custom-select-wrapper .dropdown-menu.show {
    display: grid !important
;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 15px !important;
    overflow: hidden;
    justify-content: center;
    width: 100%;
}
.company-details-form h2 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 400;
}
.comapany-details-row.inner-poc .form-group {
    margin-bottom: 10px;
    position: relative;
}
.form-group.bus-request {
    margin-bottom: 0;
}
.aprove-reject-btn.bus-btn {
    margin-top: 20px;
}
.invoice-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-content: center;
}
.invoice-col {
    flex: 0 0 73%;
}
.invoice-row .pdf-view span {
    font-size: 12px;
}
.invoice-row .pdf-view a {
    font-size: 12px;
}
section#new-tag-request .reject-box p {
    font-size: 12px;
}
.accordion-body.request.new-tag {
    padding-bottom: 10px;
    padding-top: 20px;
}
.certification-content.bus-content {
    padding-bottom: 15px;
}
.certification-content.address.bus-content {
    padding-bottom: 30px;
}
.vendor-dp {
    justify-content: end;
}
.dropdown.request-right.left {
    margin-right: 15px;
}
section#invoice-tracking .dropdown.request-right a.btn.dropdown-toggle {
    background: #f1f1f180;
    border-radius: 30px;
    padding: 8px 14px;
    font-size: 12px;
    color: #777777;
    font-weight: 400;
}
.accordion-collapse {
  overflow: visible !important;
}


input.vendor-details {
  padding: 7px 15px 7px 15px;
    background-color: #FFFFFF;
    border-radius: 30px;
    width: 100%;
    font-size: 12px;
      color: #000000;
      margin-bottom: 0;
      text-align: left;
}
input.prof-details.green  {
  background-color: #C6ECC6 !important;
}
section#new-tag-request button.btn.dropdown-toggle span {
  font-size: 12px;
}

section#new-tag-request .dropdown-menu.show {
  display: block;
  border: none;
  background-color: #F7F7F7;
  border-radius: 15px;
  width: 100%;
}
.reject-box.reason {
  background-color: #FFFFFF;
  padding: 10px;
  border-radius: 30px;
  width: 100%;
  border: none;
      font-size: 12px;
        padding: 0;
}
.reject-box.reject {
  background-color: #FFFFFF;
  padding: 4px 15px;
  border-radius: 30px;
}
input.prof-details {
  font-size: 12px;
  color: #000000;
  font-weight: 400;
  margin-bottom: 0px;
  background: none;
  padding: 4px 0;
}
input.prof-details:focus-visible {
  outline: none;
  box-shadow: none;
}
.form-group.poc.bus-request input.prof-details {
  background-color: #F9F0F3;
  border-radius: 30px;
  padding: 12px 20px;
}
div#on-behalf .main-dashboard-content {
  padding-top: 20px;
}
input:focus-visible {
  outline-offset: 0px;
  box-shadow: none;
  border: none;
  outline: none;
}
.selected-tag {
  display: inline-block;
  background: #E41863;
  color: #fff;
  border-radius: 20px;
  padding: 2px 10px;
  margin: 2px 4px;
  font-size: 12px;
  position: relative;
}
button.btn.dropdown-toggle span {
  display: flex;
  flex-wrap: wrap;
    justify-content: center;
}

section#new-tag-request .common-box-label.tag button.btn.dropdown-toggle {
    width: 100%;
    padding: 3px 25px 3px 0;
}



@media (max-width: 1280px) { 
.dashboard-left-icon {
    width: 100%;
  }
    nav.file-request {
      width: 100%;
    }
.or h4 {
    margin-bottom: 0;
    width: 40px;
    padding: 20px 3px;
}
.dashboard-left-icon.bus-content {
    width: 60%;
}
nav.file-request div#nav-tab
 {
    gap: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
}
nav.file-request .dashboard-template.dash-exel {
    margin-bottom: 0px;
    padding: 10px 75px;
}
}


@media (max-width: 1366px) {
    
nav.file-request .dashboard-template.dash-exel {
    margin-bottom: 0px;
    padding: 10px 85px !important;
}


}


@media (max-width: 1440px) {

nav.file-request {
    width: 100%;
}
nav.file-request div#nav-tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav.file-request .dashboard-template.dash-exel {
    margin-bottom: 0px;
    padding: 10px 100px;
}
}

/*New Css*/
.info-texts {
    display: flex;
    align-items: center;
    padding:0;
}
.info-texts p {
    margin-bottom: 0;
    color: #777777;
    font-size: 9px;
    padding-left: 3px;
}
.info-head-text {
    position: absolute;
    right: 0px;
    top: 20px;
    z-index: 9;
    width: 100%;
}
.request-content-right.business {
    top: 0px;
}
span.business.request-status.notify {
    position: relative;
    z-index: 99;
}
.request-content-right.business.info-head {
    width: 23%;
}

/*new css 1 Dec 2025*/
.business-popups section.thank-you.register-popup .thank-you-box {
    max-width: 450px;
    background: #fff;
    margin: auto;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.thank-you-text h3 {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 32px;
    line-height: 113.99999999999999%;
    letter-spacing: 0%;
    text-align: center;
    color: #000000;
}
.business-popups .thank-you-text a {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 32px;
    line-height: 113.99999999999999%;
    letter-spacing: 0%;
    text-align: center;
    color: #E41863;
}
.business-popups .ok-btn .confirm-btn {
    color: #fff;
    border: none;
    font-family: var(--primary-font);
    padding: 11px 48px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
    width: auto !important;
    margin: 30px 0 0;
}
.business-popups .ok-btn {
    text-align: center;
    display: inline-block;
    margin: 0 auto;
}
.business-popups .ok-btn .confirm-btn.common-btn .right-arrow {
    position: absolute;
    right: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.business-popups .ok-btn .confirm-btn.common-btn:hover .right-arrow {
    opacity: 1;
}