/* Reset and base styles */

:root {
  --header-height: 45px;
  --eol-text-primary: #374c54;
  --eol-bg-primary: #f7d72b;
}

.mobile-only {
  display: none;
}
.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
  .desktop-only {
    display: none;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f8fafc;
  line-height: 1.6;
  color: var(--eol-text-primary);
  font-size: 0.94rem;
}
body ul {
  color: var(--eol-text-primary);
}
#app {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header & Navigation */
.header {
  background-color: var(--eol-bg-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  position: fixed;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  height: var(--header-height);
  z-index: 999;
}

.header-content {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--eol-text-primary);
  white-space: nowrap;
  margin-right: 5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
  width: 100%;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  white-space: nowrap;
  padding: 4px;
  border-radius: 5px;
}

.nav-link:hover {
  background: rgba(255, 247, 2, 0.552);
  cursor: pointer;
}

.direct2-message-wrapper {
  padding: 0 10px;
}

.contact-form-main .v-overlay__content {
  margin: 15px;
  width: 100%;
}

.contact-form-main p,
.contact-form-main h4 {
  color: var(--eol-text-primary);
}

.contact-modal-title {
  position: relative;
}

.btn,
.btn2 {
  background-color: #1a73e8;
  color: white;
  padding: 8px 4px;
  min-width: 106px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn:hover,
.btn2:hover {
  background-color: #1557b0;
}

.btn-disabled {
  background-color: #7d7d7d;
}

.btn-disabled:hover {
  background-color: #7d7d7d;
  cursor: not-allowed;
}

.submit-btn {
  text-align: center;
}

.file-remove-button:hover {
  text-decoration: underline;
}
.main-body-wrapper {
  flex: 1;
  max-width: 1100px;
  width: 100%;
  margin: calc(var(--header-height) + 0px) auto 0 auto;
}
/* Hero Section */
.hero {
  text-align: center;
  padding: 0;
  max-width: 1100px;
  margin: 0 auto 0 auto;
}

.hero-title {
  font-size: 1.8rem;
  line-height: 1;
}

.hero-margin {
  margin-top: 8px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 5px;
}
.hero-animated-subtitle {
  font-size: 1.3rem;
}

.hero-animated-big-subtitle {
  font-size: 1.5rem;
}

.hero-animated-title {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  width: 100%;
  text-align: center;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  top: 50%;
}

#hero-messages {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 auto;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.animated-img-container {
  max-width: 260px;
  height: auto;
  margin: auto;
}

.animated-img-container img {
  width: 100%;
  padding: 0 4px;
  /* color tint to match font color */
  filter: invert(34%) sepia(98%) saturate(1200%) hue-rotate(196deg)
    brightness(91%) contrast(101%);
}

/* Services Section */
.services {
  padding: 15px;
  text-align: center;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 10px;
  line-height: 1.1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 60px 5px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  cursor: pointer;
  height: 200px;
}

.service-card:hover {
  cursor: pointer;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: #f9eec5;
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.service-description {
  color: #666;
  font-size: 1.2rem;
  max-width: 96%;
  height: 50px;
  margin: 0 auto;
  font-style: italic;
}

/* Why Us Section */
.why-us {
  background-color: #f8fafc;
  padding: 15px;
  text-align: center;
}

/* Testimonials Section */
.testimonials {
  padding: 15px;
  text-align: center;
}

.testimonial-quote {
  max-width: 800px;
  margin: 0 auto;
}

/* CTA Section */
.cta {
  background-color: #1a73e8;
  color: white;
  padding: 25px 15px;
  text-align: center;
}

.cta-title {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.cta-description {
  margin-bottom: 20px;
}

.cta .btn {
  background-color: white;
  color: #1a73e8;
}

.cta .btn:hover {
  background-color: #f5f5f5;
}

/* Footer */
.footer {
  background-color: #222;
  color: white;
  padding: 8px 5px;
  text-align: center;
}

.footer-links {
  margin-top: 10px;
}

.footer-link {
  color: #ddd;
}

.footer-left-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0 3px;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.contact-logo-wrapper {
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: end;
  margin-top: 5px;
}

.contact-logo-wrapper img {
  max-width: 250px;
}

.modal-footer-wrapper {
  display: flex;
  gap: 8px;
}

@media (max-width: 501px) {
  .modal-footer-wrapper {
    flex-wrap: wrap;
  }
  .modal-footer-btn-wrapper {
    margin-bottom: 6px;
  }
}

.modal-footer-btn-wrapper {
  text-align: left;
  flex-grow: 1;
  margin-top: 20px;
  max-width: max-content;
  width: 100%;
}

/* Media Queries */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .nav-links {
    gap: 6px;
  }

  .service-card {
    padding: 40px 5px;
    height: 200px;
  }

  .service-title {
    font-size: 1.1rem;
  }

  .service-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .contact-form-main .v-overlay__content {
    margin: 0;
  }
  .hero {
    text-align: left;
    /* padding: 35px 20px 25px 20px;
    margin: 0 auto;
    max-width: 1100px; */
  }
  .hero-animated-title {
    text-align: left;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card {
    padding: 30px 2px;
    height: 180px;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .hero-title {
    font-size: 1.6rem;
    text-align: left;
  }
}

@media (max-width: 628px) {
  .hero {
    padding: 0 15px 5px 15px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 0 15px 5px 15px;
  }

  .animated-img-container {
    max-width: 205px;
  }

  #hero-messages {
    height: 200px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-animated-subtitle {
    font-size: 1rem;
  }
  .hero-animated-big-subtitle {
    font-size: 1.2rem;
  }

  .services {
    padding: 15px;
  }
  .service-title {
    font-size: 1rem;
  }
  .service-description {
    font-size: 1rem;
  }
  .why-us {
    padding: 15px;
  }
  .testimonials {
    padding: 15px;
  }

  .section-title {
    font-size: 1.3rem;
  }
  .hero-title {
    font-size: 1.4rem;
  }

  .nav {
    gap: 4px;
  }

  .btn.mobile-only {
    font-size: 0.9rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .service-card {
    padding: 20px 2px;
    height: 160px;
  }

  .header {
    padding: 15px;
  }

  .logo {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .btn {
    padding: 4px 5px;
  }

  .header {
    padding: 15px 0;
  }

  .header-content {
    padding: 0 15px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--eol-bg-primary);
    z-index: 10;
    padding: 20px 0;
    text-align: center;
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    margin: 0;
    /* font-size: 1rem; */
  }

  .menu-toggle {
    display: block;
  }

  .submit-btn {
    margin-left: 0;
  }

  .service-card {
    width: 100%;
    max-width: 100%;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: background-color 0.3s ease, opacity 0.3s ease,
    visibility 0.3s ease;
}

.modal-content-title {
  font-size: 1.18rem;
  line-height: 1.1;
  width: calc(100% - 35px);
}

.logo-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}

.logo-item img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.img-container {
  max-width: 100%;
  height: auto;
}

.img-container img {
  width: 100%;
  padding: 0 4px;
  max-height: 100px;
  /* color tint to match font color */
  filter: invert(25%) sepia(27%) saturate(451%) hue-rotate(151deg)
    brightness(99%) contrast(89%);
}

@media screen and (max-width: 600px) {
  .logo-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.modal.active {
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: white;
  margin: auto;
  padding: 30px 20px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-height: 100vh;
  overflow-y: auto;
}

.modal.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

/* Add animation classes */
.modal.fade-out {
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  visibility: hidden;
}

.modal-content.fade-out {
  transform: translateY(20px);
  opacity: 0;
}

#estimate-content-header-id {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
}

.modal-close {
  position: sticky;
  top: 0;
  right: 0;
  float: right;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s;
  z-index: 1001;
  background: white;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: -15px -15px 15px 15px;
}

.modal-close2 {
  font-size: 24px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s;
  background: white;
  width: 30px;
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
  color: #000;
}

.top-50 {
  top: 50px;
}

.modal-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--eol-text-primary);
}

.modal-body {
  color: var(--eol-text-primary);
  line-height: 1.6;
  /* overflow-y: auto; */
}

.modal-body ul {
  list-style-type: disc;
  padding-left: 20px;
}

.modal-body ul li {
  padding: 2px 0;
  position: relative;
}

.modal-img-wrapper {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 380px;
}

.modal-img-wrapper-left {
  margin-top: 10px;
  margin-bottom: 10px;
  max-width: 380px;
}

.modal-img-wrapper-left img {
  width: 100%;
  border-radius: 10px;
}

.modal-img-wrapper img {
  width: 100%;
  border-radius: 10px;
}

.testimonial-content {
  text-align: left;
}

.testimonial-quote {
  font-size: 1.1rem;
  color: var(--eol-text-primary);
  margin-bottom: 8px;
  line-height: 1.6;
}

.testimonial-project {
  font-weight: 500;
  color: #1a73e8;
  margin-bottom: 5px;
}

.testimonial-value {
  color: #666;
  font-size: 0.9rem;
}

/* Removing the custom bullet styling */
/* .modal-body ul li:before {
  content: "✓";
  color: #1a73e8;
  position: absolute;
  left: 0;
  font-weight: bold;
} */

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    padding: 20px;
  }

  .modal-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .modal-close {
    right: 20px;
  }
}

/* Custom Footer Styles */
.footer-container {
  font-size: 0.8rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer.custom-footer {
  background: #fff;
  color: #111;
  border-top: 1px solid #eee;
  text-align: left;
}
.footer-left {
  max-width: 70%;
  margin-right: 8px;
}
.footer-copyright {
  display: block;
  margin-bottom: 8px;
  font-weight: 400;
}
.footer-links {
  margin-top: 0;
}
.blue-link {
  color: #1565d8 !important;
  font-weight: 500;
}
.blue-link:hover {
  color: #0d47a1 !important;
  text-decoration: underline;
}
.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 200px;
}
.footer-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  margin-left: 30px;
}

@media (max-width: 768px) {
  .footer {
    padding: 10px;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    text-align: center;
  }
  .footer.custom-footer {
    text-align: center;
  }

  .footer-left {
    max-width: 100%;
    margin-right: 0;
  }
  .footer-left,
  .footer-links,
  .footer-copyright {
    text-align: left;
    width: 100%;
  }
  .footer-right {
    margin-top: 0;
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
    display: flex;
    flex: 1;
  }
  .footer-logo {
    margin-left: 0;
    max-width: 270px;
    margin-top: 5px;
  }
}

.testimonial-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.testimonial-name {
  font-weight: bold;
  font-size: 1rem;
  color: #1a73e8;
}

@media (max-width: 600px) {
  .testimonial-name {
    font-size: 14px;
  }
}

.testimonial-stars {
  color: #ffcb05;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--eol-text-primary);
  margin-bottom: 8px;
  line-height: 1.6;
}

.testimonial-company {
  font-weight: 500;
  color: var(--eol-text-primary);
  margin-top: 10px;
  font-size: 1rem;
}

.testimonial-position {
  color: var(--eol-text-primary);
  font-size: 1rem;
}

/* Utils */
.italic {
  font-style: italic;
}

.bold {
  font-weight: bold;
}
.unbold {
  font-weight: 400;
}

.no-wrapping {
  white-space: nowrap;
}

.my-mb-2 {
  margin-bottom: 2px;
}

.mb-br {
  margin-bottom: 8px;
}

.my-mb-14 {
  margin-bottom: 14px;
}

.m-auto {
  margin: auto;
}

/* Dashboard Cards */
.dashboard-card-grid {
  margin-top: 15px;
  padding: 0 10px;
}

.dashboard-service-card {
  position: relative;
}
.dashboard-card-number {
  position: absolute;
  top: 15px;
  right: 15px;
  height: 30px;
  width: 30px;
  background: #e1151a;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

.link-text {
  color: #1a73e8;
}

.font-tint {
  filter: invert(25%) sepia(27%) saturate(451%) hue-rotate(151deg)
    brightness(99%) contrast(89%);
}

.estimator-modal-logo {
  margin: 15px 0 0 0;
  max-width: 220px;
}

.ml-20 {
  margin-left: 30px;
}

.text-md {
  font-size: 16px;
}

/* +++++++++++++++ */

.address-pop-wrapper {
  border: 1px solid #a8a8a8;
  padding: 10px 0;
  border-radius: 5px;
  position: absolute;
  background: white;
  z-index: 10;
  height: 300px;
  overflow: auto;
}

.address-pop-item {
  padding: 10px 15px;
}

.address-pop-item.group {
  box-shadow: -6px 2px 15px -11px rgba(0, 0, 0, 0.75);
}

.address-pop-item:hover {
  background: #ededed;
  cursor: pointer;
}

.v-messages {
  margin-bottom: 8px;
}
.eol_cap_answer {
  display: none;
}

/* -------- */

.thankyou-container {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: 2rem auto;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 15px;
}

.login-container {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  margin: 2rem auto;
  background-color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .login-container {
    flex-direction: row;
  }
}

.login-panel {
  padding: 2.5rem 25px;
  flex: 1;
}

.login-panel:first-child {
  border-bottom: 1px solid #dee2e6;
}

@media (min-width: 768px) {
  .login-panel:first-child {
    border-right: 1px solid #dee2e6;
    border-bottom: none;
  }
}

.login-title {
  color: var(--eol-text-primary);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  position: relative;
}

.login-form-group {
  margin-bottom: 1.25rem;
}

.login-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.login-input:focus {
  border-color: #5d8edb;
  box-shadow: 0 0 0 3px rgba(48, 102, 190, 0.15);
  outline: none;
}

.login-input::placeholder {
  color: #6c757d;
}

.login-btn {
  height: 35px;
  line-height: 15px;
}

.disabled-btn {
  background-color: darkgray;
}

.disabled-btn:hover {
  background-color: darkgray;
}

.login-link {
  display: inline-block;
  margin-top: 1rem;
  color: #1565d8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.login-link:hover {
  color: #1557b0;
  text-decoration: underline;
}

.login-error {
  padding: 0.75rem;
  margin-bottom: 1.25rem;
  border-radius: 4px;
  background-color: rgba(220, 53, 69, 0.1);
  border-left: 4px solid #dc3545;
  color: #dc3545;
  font-size: 0.9rem;
}

.register-img-container {
  margin-top: 1.5rem;
  text-align: left;
}

.register-img-container img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.dashboard-menu-item {
  border-bottom: 1px solid rgb(234, 234, 234);
  cursor: pointer;
  padding: 4px 8px 4px 8px;
}

.bg-eol {
  background: var(--eol-bg-primary);
}

.dashboard-menu-item-active {
  background: #f9eec5;
}

.dashboard-category-item-active {
  background: #dae9f7;
}
.dashboard-menu-item:hover {
  background: #f8fafc;
}
.bg-eol.dashboard-menu-item:hover {
  background: #f9eec5;
}
.dashboard-menu-item-active:hover {
  background: #f9eec5;
}
.dashboard-category-item-active:hover {
  background: #dae9f7;
}

.dashboard-menu-wrapper {
  width: 250px;
  background: white;
}
.pricing-dashboard-content-wrapper,
.dashboard-menu-wrapper {
  height: calc(100vh - 127px);
  overflow: auto;
}

.estimate-dashboard-content-wrapper {
  height: calc(100vh - 127px);
}
@media (max-width: 768px) {
  .pricing-dashboard-content-wrapper,
  .dashboard-menu-wrapper {
    height: calc(100vh - 146px);
  }

  .estimate-dashboard-content-wrapper {
    height: calc(100vh - 146px);
  }

  .dashboard-menu-item:hover {
    background: unset;
  }

  .dashboard-menu-item-active:hover {
    background: unset;
  }
  .dashboard-category-item-active:hover {
    background: #dae9f7;
  }
  .dashboard-menu-item-active {
    background: unset;
  }
}

/* _______pdf viewer */
.pdf-viewer-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.pdf-viewer-wrapper {
  max-width: calc(100% - 250px);
  height: calc(100vh - 40px);
}

.pdf-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}
.page-navigation-buttons {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  gap: 10px;
}

.zoom-controls {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 99;
  display: flex;
  align-items: center;
}

.page-navigation-buttons .btn,
.zoom-controls .btn {
  padding: 0;
  height: 30px;
  min-width: 30px;
}

.controls-section-file {
  display: flex;
  align-items: center;
  gap: 10px;
}

.url-input {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  min-width: 300px;
}

.control-button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
}

.control-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.pdf-scroll-container {
  flex: 1;
  overflow: auto;
  position: relative;
  background-color: #f8fafc;
  min-width: 0;
}

.pdf-scroll-container.hidden {
  display: none;
}

#pdf-canvas-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100%;
  min-width: min-content;
  width: 100%;
}

#pdf-canvas {
  background-color: white;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  display: block;
  max-width: none;
}

.loading-spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes profile-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.info-text {
  color: #666;
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}

.page-info {
  color: #666;
  font-size: 14px;
}

.zoom-percentage {
  text-align: center;
  padding: 2px 8px;
  background: white;
  border-radius: 5px;
  margin: 0 5px;
}
.pdf-mobile-close {
  display: none;
  position: absolute;
}

.sample-detail-menu-wrapper {
  background: white;
  border-right: 1px solid rgb(234, 234, 234);
}

@media (max-width: 768px) {
  .sample-detail-menu-wrapper {
    width: 100%;
    display: none;
  }
  .page-navigation-buttons {
    left: 50%;
    top: 15px;
    transform: translate(-50%, 0);
  }
  .zoom-controls {
    top: 15px;
  }
  .zoom-percentage {
    padding: 0;
    margin: 0 2px;
  }
  .pdf-mobile-close {
    display: block;
    position: absolute;
    z-index: 999;
    left: 10px;
    top: 10px;
    padding: 5px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid lightgray;
  }
  .dashboard-menu-wrapper {
    width: 100%;
  }
}

/* Pricing */

.confirmation-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 10px;
  background: white;
  margin: 30px;
  padding: 10px 20px;
}

.confirmation-card__content {
  grid-column: 2;
  text-align: left;
}

.confirmation-card__actions {
  grid-column: 1;
  text-align: left;
}

.confirmation-card__title {
  font-size: 1.2rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .confirmation-card {
    margin: 15px;
    padding: 0;
  }
  .confirmation-card__content {
    grid-column: 1;
    text-align: left;
  }
}

/* Pricing page mobile navigation */
.pricing-menu-wrapper {
  width: 250px;
  background: #f8f9fa;
  border-right: 1px solid #dee2e6;
  transition: transform 0.3s ease;
}

.pricing-menu-wrapper.profile-menu-wrapper {
  width: 182px;
}

.pricing-dashboard-content-parent {
  flex: 1;
  transition: transform 0.3s ease;
}

.back-button {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: var(--eol-text-primary);
  font-weight: 500;
}

.back-button svg {
  width: 20px;
  height: 20px;
}
.dashboard-category-wrapper {
  /* margin-top: 30px; */
  user-select: none;
}
.associated-choice {
  background: white;
  margin: 30px 20px;
  padding: 10px 20px;
  font-size: 14px;
}

@media (max-width: 768px) {
  #vue-pricing-app {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  .associated-choice {
    margin: 0;
    padding: 0px 15px 10px 15px;
  }

  .pricing-menu-wrapper {
    width: 100%;
    transform: translateX(0);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 10;
    background: white;
    overflow: auto;
  }
  .pricing-menu-wrapper.profile-menu-wrapper {
    width: 100%;
  }

  .pricing-menu-wrapper.hidden {
    transform: translateX(-100%);
  }

  .pricing-dashboard-content-parent {
    transform: translateX(100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9;
    overflow-y: auto;
  }

  .pricing-dashboard-content-parent.visible {
    transform: translateX(0);
  }

  .back-button {
    display: flex;
  }

  .dashboard-menu-item {
    padding: 4px 8px 4px 8px;
    border-bottom: 1px solid #eee;
  }

  .sample-detail-menu-wrapper {
    width: 100%;
    transform: translateX(0);
    /* position: absolute;
    top: 0;
    left: 0; */
    height: 100%;
    z-index: 10;
    background: white;
    overflow: auto;
  }
  .sample-detail-menu-wrapper.hidden {
    /* transform: translateX(-100%); */
    display: none;
  }
  .pdf-viewer-wrapper {
    display: none;
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: calc(100vh - 146px);
    background: white;
    z-index: 999;
    overflow-y: auto;
  }
  .pdf-viewer-wrapper.visible {
    display: flex;
  }
}

.upload-info {
  background: white;
  margin: 30px 0;
  padding: 10px 20px;
}

.upload-checkbox {
  color: #1565d8;
}

.upload-checkbox:hover {
  color: #0d47a1 !important;
}
.notes-checkbox .v-selection-control {
  min-height: 14px;
}
.notes-checkbox label {
  font-size: 14px;
  margin-left: 5px;
}

.artificial-check {
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
}

.upload-info__title {
  font-size: 1.2rem;
  line-height: 1.2;
}

/* Breadcrumb Styles */
.breadcrumb-wrapper {
  padding: 15px 20px;
  background: white;
  border-bottom: 1px solid #eee;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.breadcrumb-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--eol-text-primary);
  min-width: max-content;
  padding-bottom: 4px;
}

.breadcrumb-item {
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.breadcrumb-item:hover {
  background: #dae9f7;
}

.breadcrumb-item.active {
  /* color: #1a73e8; */
  background: #dae9f7;
}

.breadcrumb-separator {
  color: #b8b8b8;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .breadcrumb-wrapper {
    padding: 10px 15px;
  }

  .breadcrumb {
    font-size: 13px;
    gap: 4px;
  }

  .breadcrumb-item {
    padding: 4px 6px;
  }
}

/* Date Grid Styles */
.date-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 500px;
  margin-bottom: 20px;
}

.date-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 5px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.date-card:hover {
  transform: translateY(-2px);
  background: #f9eec5;
}

.date-card-selected {
  border-color: #1a73e8;
  background: #f9eec5;
}

.date-card-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #f5f5f5;
  border-color: #ccc;
}

.date-card-disabled:hover {
  transform: none;
  background: #f5f5f5;
  border-color: #ccc;
  cursor: not-allowed;
}

.date-day {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.date-number {
  font-size: 24px;
  font-weight: bold;
  color: var(--eol-text-primary);
  margin-bottom: 2px;
}

.date-month {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .date-grid {
    gap: 10px;
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .date-card {
    padding: 12px;
    min-height: 70px;
  }

  .date-number {
    font-size: 20px;
  }

  .date-day,
  .date-month {
    font-size: 12px;
  }
}

/* file upload */

.my-dropzone {
  border: 2px dashed #ccc;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
  position: relative;
}
.my-dropzone--active {
  border-color: #1976d2;
  background: #e3f2fd;
}
.my-dropzone-label {
  font-size: 1.2rem;
  color: #666;
}

/* stripe */
#card-element {
  padding: 10px 5px;
  border: 1px lightgray solid;
  border-radius: 5px;
  margin-bottom: 15px;
}

/* ______ */

.project-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 1.08rem;
  font-weight: 600;
  color: #1a73e8;
  margin-bottom: 0;
  transition: background 0.2s;
}
.project-option__icon {
  font-size: 1.2rem;
  margin-right: 10px;
}
.project-option:hover {
  background: #dae9f7;
}

.project-or-divider-wrapper {
  display: flex;
  align-items: center;
  margin: 5px 0;
}
.project-or-divider {
  margin: 0 16px;
  color: #bbb;
  font-weight: bold;
}
.project-or-divider-line {
  flex: 1;
  height: 1px;
  background: #eee;
}

.v-btn__content {
  letter-spacing: 0 !important;
  text-transform: capitalize !important;
}

/* Profile component layout replacements for Vuetify rows/cols */
.my-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2px;
}
.my-col,
.left-my-col {
  flex: 1 1 0;
  padding: 0px 2px;
  min-width: 0;
  justify-content: flex-start;
  display: flex;
}

.line-h-18 {
  line-height: 18px;
}

.align-center {
  align-items: center;
}
.my-col-12 {
  flex-basis: 100%;
  max-width: 100%;
}
.my-col-md-4 {
  flex-basis: 33.3333%;
  max-width: 33.3333%;
}
.my-col-md-6 {
  flex-basis: 50%;
  max-width: 50%;
}
@media (max-width: 768px) {
  .my-col-md-4,
  .my-col-md-6 {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.v-data-table__td input {
  padding: 0 2px 0 5px;
}

/* Profile Details 2-column layout */
.profile-details-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.profile-details-col {
  flex: 1 1 300px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 600px) {
  .profile-details-row {
    flex-direction: column;
    gap: 0;
  }
  .profile-details-col {
    min-width: 100%;
    gap: 8px;
  }
}

/* Make v-text-field inputs in profile-section (profile sections) more compact */

.materials-header .v-field__field .v-label.v-field-label {
  font-size: 14px;
}
.profile-section {
  font-size: 14px;
}

.profile-section .v-data-table {
  font-size: 14px;
}

.profile-section .v-data-table tr th span {
  color: var(--eol-text-primary);
  font-size: 14px;
  font-weight: 600;
}

.profile-section .v-data-table__td {
  padding: 2px 4px !important;
  height: 22px !important;
  min-height: 18px !important;
  color: var(--eol-text-primary);
}
.profile-section .v-data-table__tr {
  height: 40px !important;
  min-height: 40px !important;
  align-items: center;
}
.profile-section .v-data-table__td input {
  padding: 0 2px !important;
  min-height: 16px !important;
  height: 16px !important;
  font-size: 14px !important;
}
.profile-section .v-text-field {
  margin-bottom: 0px !important;
  min-height: 18px !important;
  height: 26px !important;
  font-size: 14px !important;
}

.profile-section .v-data-table .v-text-field {
  width: 70px;
}

.profile-section
  .v-data-table-footer
  .v-data-table-footer__items-per-page
  .v-field__input {
  padding: 0;
  min-height: 30px;
}

.profile-section .v-text-field__suffix {
  padding: 0;
  min-height: 30px;
}

.profile-section .v-input__control .v-field input,
.profile-section .v-input__slot,
.profile-section .v-field {
  min-height: 28px !important;
  height: 28px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 2px !important;
  padding-right: 4px !important;
  font-size: 14px;
}

.v-data-table-footer__items-per-page .v-field {
  padding-left: 4px !important;
}

.profile-section .v-input__slot input {
  min-height: 16px !important;
  height: 16px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  font-size: 14px !important;
}

/* Labour Rates input width fix */
.labour-rate-input input {
  max-width: 80px;
  min-width: 60px;
  text-align: right;
  width: 100%;
}

.profile-input {
  max-width: 350px;
  width: 100%;
  margin-left: 0;
}

.save-btn {
  margin-left: 30px;
  margin-top: -20px;
}
@media (max-width: 768px) {
  .save-btn {
    margin-left: 15px;
    margin-top: 0px;

    margin-right: 0;
  }
}

/* Save button spinner */
.save-btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid #e3e3e3;
  border-top: 3px solid var(--eol-text-primary);
  border-radius: 50%;
  animation: profile-spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

/* table grid */

.grid-container {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 1px;
  /* background-color: #ddd; */
  /* border: 1px solid #ccc; */
  max-width: 800px;
  margin: 0 auto;
}

#profile-materials-id
  thead
  tr
  th:nth-child(4)
  .v-data-table-header__content
  span {
  text-align: left;
}

#profile-materials-id tbody tr td:nth-child(4) {
  text-align: right;
  padding-right: 55px !important;
}

.grid-item {
  background-color: white;
  padding: 3px 0px;
  font-size: 14px;
  border: none;
  display: flex;
  align-items: center;
}

.grid-header {
  /* background-color: #f0f0f0; */
  font-weight: bold;
  /* border-bottom: 2px solid #ddd; */
}

.grid-item:nth-child(4n + 1) {
  text-align: left;
}

.grid-item:nth-child(4n + 2),
.grid-item:nth-child(4n + 3) {
  text-align: center;
  justify-content: center;
}

.grid-item:nth-child(4n) {
  text-align: right;
  justify-content: right;
}

/* Responsive design */
@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: 1fr;
  }

  .grid-container .grid-item {
    text-align: left;
    justify-content: flex-start;
  }

  .grid-container .grid-item:nth-child(4n + 2),
  .grid-container .grid-item:nth-child(4n + 3),
  .grid-container .grid-item:nth-child(4n) {
    text-align: left;
    justify-content: flex-start;
  }

  .grid-container .grid-item:before {
    content: attr(data-label);
    font-weight: bold;
    margin-right: 4px;
  }

  .grid-container .grid-header {
    display: none;
  }
  .grid-container .grid-item:nth-child(4n) {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    padding-bottom: 15px;
  }
}

/* Materials filter styles */
.materials-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 6px;
}

.search-filter-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex-grow: 1;
  justify-content: flex-end;
}

.materials-header h2 {
  margin: 0;
}

@media (max-width: 860px) {
  .materials-header {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .search-filter-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }
  .search-filter-wrapper .v-text-field {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Carousel */

.carousel-container {
  width: 100%;
  margin: 0 auto;
  user-select: none;
  position: relative;
}

.carousel-wrapper {
  overflow: hidden;
  min-height: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 22px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  scroll-behavior: smooth;
  flex: 1 1 auto;
}

.carousel-slide {
  min-width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.carousel-slide img {
  width: 100%;
  height: calc(100% - 100px);
  object-fit: cover;
  object-position: top;
}

.carousel-slide .testimonial-quote {
  line-height: 1.4;
}

.testimonial-in-container {
  padding: 8px 10px;
  box-shadow: 2px 0px 8px -5px #373737;
  border-radius: 10px;
  max-width: 810px;
}

.carousel-slide .testimonial-quote {
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .testimonial-in-container {
    padding: 0;
    box-shadow: none;
  }

  .carousel-slide .testimonial-quote {
    font-size: 14px;
  }
}

.testimonimal-cite {
  font-size: 12px;
  color: #1a73e8;
  font-weight: 600;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  position: absolute;
  bottom: 3px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.dot.active {
  background: #1a73e8;
  transform: scale(1.2);
}

.dot:hover {
  background: #666;
  transform: scale(1.1);
}

/* Touch sliding styles */
.carousel-track {
  touch-action: pan-x;
}

.v-data-table tr th span {
  color: var(--eol-text-primary);
  font-weight: 600;
}

.estimates-component-table
  .v-data-table-footer
  .v-data-table-footer__items-per-page
  .v-field__input {
  font-size: 14px;
}

.estimates-component-table * {
  color: var(--eol-text-primary);
}

/* @media (max-width: 600px) {
  #hero-messages,
  .carousel-container {
    max-width: 99vw;
    height: 200px;
  }
  .hero-carousel-title {
    margin-left: 10px;
  }
  .carousel-slide .testimonial-quote {
    line-height: 1.2;
  }
} */

.animated-logo-parent {
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 0px 25px 0px 20px;
}

.animated-logo-wrapper {
  --logo-width: 60px; /* default fallback if not set inline */
  position: relative;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 500px) {
  .animated-logo-wrapper {
    --logo-width: 45px;
  }
}
/* Logo scales everything */
.animated-logo-wrapper img {
  width: var(--logo-width);
  z-index: 990;
}

/* Tape */
.animated-logo-wrapper .tape {
  position: absolute;
  height: calc(var(--logo-width) * 0.045);
  background: var(--eol-text-primary);
  width: 5px;
  bottom: 14%;
  left: calc(0% + var(--logo-width) - 2px);
  transform-origin: left;
  transition: width 0.8s ease-in-out; /* Main tape width transition */
}

/* When the tape extends, show the ::before content */
.animated-logo-wrapper .tape.extend {
  transition-duration: 1.8s;
}

.animated-logo-wrapper .tape::after {
  content: "";
  position: absolute;
  top: 60%;
  right: 0;
  transform: translateY(-50%);
  width: calc(var(--logo-width) * 0.05);
  height: calc(var(--logo-width) * 0.2);
  background: var(--eol-text-primary);
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.animated-logo-wrapper .tape::before {
  content: attr(data-secondary-label);
  position: absolute;
  top: 13px;
  right: 2px;
  transform: translateY(-50%);
  font-size: 15px;
  font-style: italic;
  font-weight: 600;
  white-space: nowrap;
  display: inline-block;
  margin-right: 5px;
  letter-spacing: -0.045em;
  padding-left: 5px;
  line-height: 1;
  color: var(--eol-text-primary);
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease-in-out; /* Smooth transition for opacity */
}

/* When the tape extends, show the ::before content */
.animated-logo-wrapper .tape.extend::before {
  transition-delay: 2.5s;
  opacity: 1; /* Fade in */
}

/* When the tape retracts, hide the ::before content */
.animated-logo-wrapper .tape.retract::before {
  transition: unset;
  opacity: 0; /* Fade out */
}

/* Label container: positioned and sized relative to logo */
.label-container {
  position: absolute;
  left: calc(var(--logo-width) - 14px);
  bottom: 18%;
  overflow: hidden;
  text-align: left;
}

/* Label text */
.animated-logo-wrapper .label {
  font-size: 1.7rem;
  font-weight: 700;
  white-space: nowrap;
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.8s ease-in-out;
  margin-left: 25px;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

/* Slide out during retract */
.animated-logo-wrapper .label.retracting {
  transform: translateX(-105%);
  transition: transform 0.8s ease-in-out;
}

/* Slide in during extend */
.animated-logo-wrapper .label.extending {
  transform: translateX(0);
  transition: transform 1.8s ease-in-out;
}

@media (max-width: 768px) {
  .animated-logo-wrapper .label {
    font-size: 1.5rem;
  }

  .animated-logo-wrapper .tape::before {
    font-size: 13px;
  }
  .animated-logo-parent {
    padding: 0px 15px;
  }
}

@media (max-width: 650px) {
  .animated-logo-wrapper .label {
    font-size: 1.15rem;
    white-space: wrap;
  }

  .animated-logo-wrapper .tape::before {
    font-size: 12px;
  }
  .animated-logo-parent {
    margin: 10px 15px;
    padding: 0;
  }
}

@media (max-width: 600px) {
  .animated-logo-parent {
    margin: 25px 0;
  }
}

@media (max-width: 500px) {
  .animated-logo-wrapper .label {
    font-size: 0.95rem;
    white-space: wrap;
    margin-left: 18px;
  }
}

.prelim-grid-5-cols,
.sum-grid-5-cols,
.labour-rate-5-cols {
  display: grid;
  grid-template-columns: 3fr 1fr 1.5fr 1fr 1.5fr;
  gap: 1px;
  max-width: 1000px;
  margin: 0 auto;
  min-width: 480px;
  padding-right: 15px;
}

.sum-grid-5-cols {
  grid-template-columns: 3fr 1.5fr 1fr 1fr 1.5fr;
}

.labour-rate-5-cols {
  grid-template-columns: 2.5fr 1fr 1.5fr 1.2fr 2fr;
}

.sum-grid-2-cols {
  grid-template-columns: 3fr 1fr 1fr;
}

.prelim-grid-5-cols .grid-item:nth-child(5n + 1) {
  text-align: left;
  justify-content: left;
}

.prelim-grid-5-cols .grid-item:nth-child(5n + 2),
.prelim-grid-5-cols .grid-item:nth-child(5n + 3),
.prelim-grid-5-cols .grid-item:nth-child(5n + 4) {
  text-align: center;
  justify-content: center;
}
.labour-rate-5-cols .grid-item:nth-child(5n + 4) {
  text-align: left;
  justify-content: left;
}

.prelim-grid-5-cols .grid-item:nth-child(5n) {
  text-align: right;
  justify-content: right;
}

.contract-value-grid-3-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 1px;
  max-width: 500px;
  margin: 0;
}

.contract-value-grid-3-cols .grid-item:nth-child(3n + 1) {
  text-align: left;
  justify-content: left;
}

.contract-value-grid-3-cols .grid-item:nth-child(3n + 2) {
  text-align: center;
  justify-content: center;
}

.contract-value-grid-3-cols .grid-item:nth-child(3n) {
  text-align: right;
  justify-content: right;
}

.contract-value-input input {
  text-align: right;
}
.contract-value-input .v-text-field__prefix {
  padding-top: 0;
}

#vue-estimate-update-app .associated-choice {
  margin-top: 5px;
  margin-bottom: 5px;
}

.input-to-right input {
  text-align: right;
}

.editor-wrapper {
  min-height: 30px;
  border: 1px dashed grey;
  border-radius: 5px;
  background-color: #eee;
  padding: 3px;
  margin-bottom: 10px;
}

.mce-edit-focus {
  outline: none !important;
}

.v-textarea--no-resize .v-field__input {
  resize: vertical;
}

.contractValueWrapper {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.contractValueWrapper h2 {
  text-align: right;
  font-size: 18px;
}

@media (max-width: 956px) {
  .contractValueWrapper {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
  }
  .contractValueWrapper h2 {
    text-align: left;
  }
}

.my-tooltip {
  color: #1565d8 !important;
  font-weight: 600;
}
.my-tooltip:hover {
  cursor: pointer;
  color: #0d47a1 !important;
  text-decoration: underline;
}

.input-has-changed .v-field__overlay {
  background-color: #c6ebfc !important;
}

.associated-divider {
  height: 4px;
  width: 100%;
  background: #f8fafc;
}
.learn-more-close-btn {
  font-size: 24px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 0;
  cursor: pointer;
}

.color-main {
  color: var(--eol-text-primary);
}
.border-main {
  border-color: var(--eol-text-primary);
}

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

.v-tooltip > .v-overlay__content {
  background: white;
  color: var(--eol-text-primary);
  box-shadow: 2px 0px 12px -5px #373737;
}

#branchFormDiv input {
  font-size: 15px !important;
}

#branchFormDiv .v-field-label {
  font-size: 15px !important;
}

.paperless-img-container img {
  width: 47%;
}

@media (max-width: 500px) {
  .paperless-img-container img {
    width: 100%;
  }
}

.square-tick-box {
  height: 26px;
  width: 26px;
  background-color: #d9d9d9;
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  align-self: center;
}
.square-tick-box:hover {
  background-color: var(--eol-bg-primary);
  cursor: pointer;
}

.custom-download-bar {
  max-width: 840px;
  position: fixed;
  height: 55px;
  top: var(--header-height);
}

@media (max-width: 768px) {
  .custom-download-bar {
    width: 100%;
  }
}

.estimate-update-content-header {
  background: white;
  padding: 10px 20px;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 4px 15px;
  border-bottom: 4px solid #f8fafc;
}
.mce-tinymce.mce-tinymce-inline.mce-container.mce-panel.mce-floatpanel {
  transform: translateY(-30px);
}

.bg-estimate-docs {
  background: #dae9f7;
}

.tick-bg-eol {
  background: var(--eol-bg-primary);
}

.color-red {
  color: #dc3545;
}
