﻿/* User project overrides */
:root {
  --pbmit-global-color: #de7436;
}

.ep-page-banner {
  position: relative;
  overflow: hidden;
  padding: 54px 0 48px;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(8, 23, 39, .94), rgba(11, 64, 86, .82)),
    url("../images/finance/bg-img-02.jpg") center/cover no-repeat;
}

.ep-page-banner .container {
  position: relative;
  z-index: 1;
}

.ep-page-breadcrumb {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.ep-page-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.ep-page-breadcrumb a:hover {
  color: #fff;
}

.ep-page-breadcrumb span {
  color: inherit;
}

.ep-page-breadcrumb strong {
  color: inherit;
  font-weight: inherit;
}

.ep-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: #ffb27a;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.ep-page-title {
  max-width: 820px;
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(28px, 3.35vw, 44px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.ep-page-lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 400;
  line-height: 1.65;
}

.integration-page-hero {
  position: relative;
  padding: 72px 0 64px;
  background: #f6f9fb;
  overflow: hidden;
}

.integration-page-hero::after {
  position: absolute;
  content: "";
  right: -90px;
  top: -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(15, 117, 188, .09);
}

.integration-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #6d7380;
  font-size: 14px;
  font-weight: 800;
}

.integration-breadcrumb a {
  color: #0f75bc;
  text-decoration: none;
}

.integration-breadcrumb a:hover {
  color: var(--pbmit-global-color, #de7436);
}

.integration-breadcrumb span {
  color: rgba(7, 28, 52, .36);
}

.integration-breadcrumb strong {
  color: #071c34;
}

.integration-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 0 14px;
  border: 1px solid rgba(15, 117, 188, .14);
  border-radius: 999px;
  background: #fff;
  color: #0f75bc;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.integration-page-hero .pbmit-title {
  max-width: 900px;
  margin-bottom: 16px;
}

.integration-page-hero .lead {
  max-width: 760px;
  color: #6d7380;
  font-weight: 600;
  line-height: 1.7;
}

.integration-page-section {
  padding: 92px 0 110px;
  background: #fff;
}

.integration-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 42px;
}

.integration-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(7, 28, 52, .10);
  border-radius: 999px;
  background: #f8fafc;
  color: #071c34;
  font-size: 14px;
  font-weight: 800;
  transition: all .22s ease;
}

.integration-filter-btn i {
  color: var(--pbmit-global-color, #de7436);
}

.integration-filter-btn:hover,
.integration-filter-btn.active {
  border-color: var(--pbmit-global-color, #de7436);
  background: var(--pbmit-global-color, #de7436);
  color: #fff;
}

.integration-filter-btn:hover i,
.integration-filter-btn.active i {
  color: #fff;
}

.integration-grid {
  align-items: stretch;
}

.integration-grid-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .18s ease, transform .22s ease;
}

.integration-card {
  position: relative;
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(7, 28, 52, .10);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 28, 52, .06);
  transition: box-shadow .22s ease, border-color .22s ease, transform .22s ease;
}

.integration-card:hover {
  border-color: rgba(222, 116, 54, .34);
  box-shadow: 0 28px 70px rgba(7, 28, 52, .11);
  transform: translateY(-4px);
}

.integration-grid-item.is-hidden {
  display: none;
}

.integration-grid-item.is-hiding {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) !important;
}

.integration-card-logo {
  position: relative;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #0f75bc 0 50%, #de7436 50% 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .04em;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
}

.integration-card-logo.has-logo {
  padding: 10px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(7, 28, 52, .08), 0 10px 24px rgba(7, 28, 52, .06);
}

.integration-card-logo.has-logo img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}

.integration-card-body {
  margin-top: 24px;
}

.integration-card-body span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--pbmit-global-color, #de7436);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.integration-card-body h2 {
  margin: 0 0 10px;
  color: #071c34;
  font-size: 24px;
  line-height: 1.2;
}

.integration-card-body p {
  margin: 0;
  color: #6d7380;
  font-size: 15px;
  line-height: 1.65;
}

.ep-reference-section {
  padding: 82px 0 96px;
  background: #f7f8fa;
}

.ep-reference-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(7, 28, 52, .10);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 28, 52, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ep-reference-card:hover {
  border-color: rgba(222, 116, 54, .34);
  box-shadow: 0 28px 70px rgba(7, 28, 52, .11);
  transform: translateY(-4px);
}

.ep-reference-shot {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e9eef2;
}

.ep-reference-shot::after {
  position: absolute;
  content: "";
  inset: 0;
  box-shadow: inset 0 -1px 0 rgba(7, 28, 52, .08);
  pointer-events: none;
}

.ep-reference-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform .28s ease;
}

.ep-reference-card:hover .ep-reference-shot img {
  transform: scale(1.025);
}

.ep-reference-body {
  padding: 24px;
}

.ep-reference-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.ep-reference-meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(222, 116, 54, .10);
  color: var(--pbmit-global-color, #de7436);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.ep-reference-body h2 {
  margin: 0 0 8px;
  color: #071c34;
  font-size: 24px;
  line-height: 1.22;
}

.ep-reference-body a {
  color: #6d7380;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}

.ep-reference-body a:hover {
  color: var(--pbmit-global-color, #de7436);
}

.ep-home-hero-slider-section {
  position: relative;
  background: #f7fafc;
  border-top: 1px solid rgba(7, 28, 52, .06);
  overflow: hidden;
}

.ep-home-hero-slider {
  position: relative;
}

.ep-home-hero-slider .swiper-slide {
  min-height: 585px;
  display: flex;
  align-items: center;
  background: transparent;
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 1;
}

.ep-home-hero-slider:not(.swiper-initialized) .swiper-slide:first-child,
.ep-home-hero-slider .swiper-slide-active,
.ep-home-hero-slider .swiper-slide-duplicate-active {
  opacity: 1 !important;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.ep-home-hero-slider .container {
  width: 100%;
}

.ep-home-hero-slider .swiper-buttons {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.ep-home-hero-slider .swiper-button-next,
.ep-home-hero-slider .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 54px;
  margin: 0;
  border: 1px solid rgba(7, 28, 52, .14);
  background: #fff;
  color: var(--pbmit-blackish-color, #071c34);
  box-shadow: 0 12px 28px rgba(7, 28, 52, .08);
  transform: translateY(-50%);
  pointer-events: auto;
  transition: all .25s ease;
}

.ep-home-hero-slider .swiper-button-prev {
  left: 38px;
  right: auto;
  order: 1;
}

.ep-home-hero-slider .swiper-button-next {
  left: auto;
  right: 38px;
  order: 2;
}

.ep-home-hero-slider .swiper-button-next:after,
.ep-home-hero-slider .swiper-button-prev:after {
  color: currentColor !important;
  font-size: 20px;
}

.ep-home-hero-slider .swiper-button-prev:after {
  display: inline-block;
  transform: rotate(180deg);
}

.ep-home-hero-slider .swiper-button-next:after {
  transform: none;
}

.ep-home-hero-slider .swiper-button-next:hover,
.ep-home-hero-slider .swiper-button-prev:hover {
  background: var(--pbmit-global-color, #de7436);
  border-color: var(--pbmit-global-color, #de7436);
  color: #fff;
}

.ep-home-hero-slider .swiper-button-next:hover:after,
.ep-home-hero-slider .swiper-button-prev:hover:after {
  color: #fff !important;
}

.ep-home-hero-slider .swiper-pagination {
  bottom: 42px;
  left: 50%;
  width: auto;
  transform: translateX(-50%);
}

.ep-home-hero-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(7, 28, 52, .24);
  opacity: 1;
}

.ep-home-hero-slider .swiper-pagination-bullet-active {
  background: var(--pbmit-global-color, #de7436);
}

.ep-home-hero-copy .pbmit-subtitle {
  display: inline-block;
  margin-bottom: 18px;
}

.ep-home-hero-desc {
  max-width: 560px;
  margin: 0 0 34px;
  color: #6d7380;
  font-size: 20px;
  line-height: 1.55;
}

.ep-hero-dashboard {
  position: relative;
  width: min(720px, 100%);
  margin-left: auto;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(7, 28, 52, .13);
}

.ep-hero-dashboard::before {
  position: absolute;
  content: "";
  inset: -18px 30px auto;
  height: 46px;
  border-radius: 999px;
  background: rgba(222, 116, 54, .14);
  filter: blur(26px);
  z-index: -1;
}

.ep-hero-dashboard img {
  width: 100%;
  display: block;
  border-radius: 6px;
  object-fit: cover;
}

.ep-hero-dashboard__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  background: #fff;
  color: #071c34;
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(7, 28, 52, .14);
}

.ep-hero-dashboard__chip i {
  color: var(--pbmit-global-color, #de7436);
}

.ep-hero-dashboard__chip--top {
  top: 42px;
  right: -26px;
}

.ep-hero-dashboard__chip--bottom {
  left: -28px;
  bottom: 42px;
}

.ep-hero-dashboard--stack {
  transform: translateY(8px);
}

.ep-hero-dashboard__mini {
  position: absolute;
  right: -34px;
  bottom: -38px;
  width: 48%;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 66px rgba(7, 28, 52, .16);
}

.ep-hero-dashboard__chart {
  position: absolute;
  left: -26px;
  bottom: -22px;
  width: 150px;
  height: 112px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 18px;
  border-radius: 8px;
  background: #071c34;
  box-shadow: 0 20px 54px rgba(7, 28, 52, .18);
}

.ep-hero-dashboard__chart span {
  flex: 1;
  min-width: 0;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #de7436, #ffb27a);
}

.ep-hero-panel,
.ep-hero-metrics {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ep-hero-panel__screen {
  position: relative;
  width: min(430px, 88vw);
  min-height: 300px;
  padding: 34px;
  border: 1px solid rgba(7, 28, 52, .08);
  border-radius: 8px;
  background: linear-gradient(145deg, #fff, #f7fafc);
  box-shadow: 0 26px 70px rgba(7, 28, 52, .10);
}

.ep-hero-panel__bar {
  height: 14px;
  width: 150px;
  border-radius: 999px;
  background: #de7436;
  opacity: .9;
}

.ep-hero-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.ep-hero-panel__grid span {
  height: 70px;
  border-radius: 8px;
  background: #eef4f8;
}

.ep-hero-panel__flow {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 18px;
  transform: translateX(-50%);
}

.ep-hero-panel__flow i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #071c34;
  color: #fff;
  font-size: 20px;
}

.ep-hero-panel__badge {
  position: absolute;
  min-width: 112px;
  padding: 12px 18px;
  border-radius: 8px;
  background: #fff;
  color: #071c34;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 18px 44px rgba(7, 28, 52, .12);
}

.ep-hero-panel__badge--left {
  left: 20px;
  top: 70px;
}

.ep-hero-panel__badge--right {
  right: 10px;
  top: 120px;
}

.ep-hero-panel__badge--bottom {
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
}

.ep-hero-metrics {
  gap: 22px;
  flex-wrap: wrap;
}

.ep-hero-metric {
  position: relative;
  z-index: 1;
  width: 180px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(7, 28, 52, .10);
}

.ep-hero-metric--main {
  width: 210px;
  min-height: 210px;
  border: 10px solid #452b90;
  border-radius: 50%;
  align-items: center;
  text-align: center;
}

.ep-hero-metric strong {
  color: #071c34;
  font-size: 52px;
  line-height: 1;
  letter-spacing: 0;
}

.ep-hero-metric span {
  margin-top: 12px;
  color: #6d7380;
  font-size: 15px;
  font-weight: 700;
}

.ep-hero-metric-line {
  position: absolute;
  inset: 54px 40px;
  border: 1px dashed rgba(222, 116, 54, .35);
  border-radius: 8px;
}

@media (max-width: 1199px) {
  .ep-home-hero-slider .swiper-slide {
    min-height: auto;
    padding: 72px 0 86px;
  }

  .ep-home-hero-slider .swiper-button-prev {
    left: 18px;
  }

  .ep-home-hero-slider .swiper-button-next {
    right: 18px;
  }

  .ep-home-hero-slider .swiper-pagination {
    bottom: 32px;
  }

  .ep-hero-dashboard {
    margin: 46px auto 0;
  }

  .ep-hero-dashboard__chip--top {
    right: 16px;
  }

  .ep-hero-dashboard__chip--bottom {
    left: 16px;
  }

  .ep-hero-dashboard__mini {
    right: 10px;
  }

  .ep-hero-dashboard__chart {
    left: 10px;
  }
}

@media (max-width: 767px) {
  .ep-page-banner {
    padding: 42px 0 36px;
  }

  .ep-page-breadcrumb {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .ep-page-kicker {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .ep-page-title {
    font-size: clamp(25px, 8vw, 34px);
  }

  .ep-page-lead {
    font-size: 15px;
    line-height: 1.55;
  }

  .integration-page-hero {
    padding: 56px 0 50px;
  }

  .integration-page-section {
    padding: 64px 0 74px;
  }

  .ep-reference-section {
    padding: 60px 0 72px;
  }

  .integration-breadcrumb {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .integration-filter {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .integration-filter-btn {
    flex: 0 0 auto;
  }

  .ep-home-hero-slider .swiper-slide {
    padding: 46px 0 86px;
  }

  .ep-home-hero-slider .pbmit-element-title {
    font-size: 46px;
    line-height: 1.08;
  }

  .ep-home-hero-desc {
    font-size: 17px;
  }

  .ep-home-hero-slider .swiper-button-next,
  .ep-home-hero-slider .swiper-button-prev {
    width: 44px;
    height: 44px;
  }

  .ep-hero-panel,
  .ep-hero-metrics {
    min-height: 320px;
    margin-top: 34px;
  }

  .ep-hero-dashboard {
    padding: 10px;
  }

  .ep-hero-dashboard__chip {
    min-height: 42px;
    padding: 0 12px;
    font-size: 13px;
  }

  .ep-hero-dashboard__mini {
    width: 54%;
    bottom: -26px;
  }

  .ep-hero-dashboard__chart {
    width: 120px;
    height: 92px;
    bottom: -18px;
    padding: 14px;
  }

  .ep-hero-panel__screen {
    min-height: 250px;
    padding: 24px;
  }

  .ep-hero-panel__badge {
    min-width: 96px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .ep-hero-panel__badge--left {
    left: 0;
  }

  .ep-hero-panel__badge--right {
    right: 0;
  }

  .ep-hero-metric {
    width: calc(50% - 12px);
    min-height: 128px;
    padding: 18px;
  }

  .ep-hero-metric--main {
    width: 180px;
    min-height: 180px;
  }

  .ep-hero-metric strong {
    font-size: 40px;
  }

  .ep-hero-metric-line {
    inset: 38px 18px;
  }
}

@media (max-width: 575px) {
  .integration-card {
    min-height: auto;
    padding: 16px 14px;
  }

  .integration-card-logo {
    width: 52px;
    height: 52px;
    font-size: 15px;
  }

  .integration-card-body {
    margin-top: 16px;
  }

  .integration-card-body span {
    margin-bottom: 7px;
    font-size: 10px;
    line-height: 1.25;
  }

  .integration-card-body h2 {
    margin-bottom: 7px;
    font-size: 17px;
    line-height: 1.2;
    word-break: break-word;
  }

  .integration-card-body p {
    font-size: 13px;
    line-height: 1.45;
  }

  .ep-reference-body {
    padding: 20px;
  }

  .ep-reference-body h2 {
    font-size: 21px;
  }

  .ep-home-hero-slider .pbmit-element-title {
    font-size: 38px;
  }

  .ep-home-hero-slider .coworing-video {
    align-items: flex-start;
    flex-direction: column;
  }

  .ep-home-hero-slider .swiper-buttons {
    inset: auto 18px 24px;
    display: flex;
    justify-content: space-between;
  }

  .ep-home-hero-slider .swiper-button-next,
  .ep-home-hero-slider .swiper-button-prev {
    position: static;
    transform: none;
  }

  .ep-home-hero-slider .swiper-pagination {
    left: 50%;
    right: auto;
    bottom: 36px;
    transform: translateX(-50%);
  }

  .ep-hero-dashboard__chip {
    display: none;
  }

  .ep-hero-dashboard__mini,
  .ep-hero-dashboard__chart {
    display: none;
  }

  .ep-hero-metric {
    width: 100%;
  }
}

.ep-mobile-header-cta {
  display: none;
}

.ep-footer-logo-image {
  height: 160px;
}

.site-footer,
.site-footer p,
.site-footer a,
.site-footer li,
.site-footer input,
.site-footer button,
.site-footer .pbmit-content-box,
.site-footer .pbmit-contact-box,
.site-footer .pbmit-footer-copyright-text-area,
.site-footer .pbmit-footer-menu li a,
.site-footer .mc4wp-form-fields {
  font-size: 15.5px !important;
  font-weight: 400 !important;
  line-height: 1.7;
}

.site-footer .pbmit-footer-big-area h3 {
  font-size: clamp(34px, 2.45vw, 42px) !important;
  font-weight: 400 !important;
  line-height: 1.28;
}

.site-footer .widget .widget-title {
  font-size: 21px !important;
  font-weight: 500 !important;
  letter-spacing: 0;
}

.site-footer .pbmit-footer-contact-info .pbmit-contact-box a,
.site-footer .pbmit-footer-newsletter input[type="email"] {
  font-size: 17px !important;
  font-weight: 400 !important;
}

.site-footer .pbmit-footer-contact-info .pbmit-content-box,
.site-footer .pbmit-footer-newsletter,
.site-footer .pbmit-footer-newsletter input[type="email"]::placeholder {
  font-size: 15.5px !important;
}

.site-footer .pbmit-footer-copyright-text-area,
.site-footer .pbmit-footer-copyright-text-area a,
.site-footer .pbmit-footer-menu li a {
  font-size: 14.5px !important;
}

.ep-mobile-account-link {
  display: none;
}

.ep-mobile-menu-actions {
  display: none;
}

.ep-mobile-menu-head {
  display: none;
}

.ep-header-selectors,
.ep-header-mini-links {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ep-header-selectors {
  margin-left: 28px;
}

.ep-header-selector,
.ep-header-mini-links a {
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pbmit-blackish-color, #071c34);
  font-family: var(--pbmit-body-typography-font-family, 'DM Sans', sans-serif);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}

.ep-header-selector select {
  min-width: 56px;
  border: 0;
  background: transparent;
  color: var(--pbmit-blackish-color, #071c34);
  font: inherit;
  line-height: 1;
  outline: 0;
  padding: 0 20px 0 0;
  cursor: pointer;
}

.ep-header-selector:hover,
.ep-header-selector:focus,
.ep-header-mini-links a:hover,
.ep-header-mini-links a:focus {
  color: var(--pbmit-global-color, #de7436);
}

.ep-header-selector i {
  font-size: 12px;
  line-height: 1;
}

.ep-header-flag {
  width: 24px;
  height: 16px;
  display: block;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(17, 28, 45, .08);
}

.ep-announcement-slider {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(560px, 48vw);
  min-height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--pbmit-blackish-color, #071c34);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.ep-announcement-slider::before {
  position: absolute;
  content: "";
  left: -70px;
  right: -70px;
  top: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(222, 116, 54, .11) 18%,
    rgba(222, 116, 54, .28) 50%,
    rgba(222, 116, 54, .11) 82%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: -1;
}

.ep-announcement-track {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: 100%;
  height: 53px;
  overflow: hidden;
}

.ep-announcement-item {
  position: absolute;
  inset: 0;
  display: block;
  color: var(--pbmit-blackish-color, #071c34);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 53px;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity .24s ease, transform .24s ease;
  pointer-events: none;
}

.header-style-3 .pre-header-wrapper {
  height: 53px;
  line-height: 53px;
  border-bottom-color: #f3f3f3;
}

.ep-announcement-item.active {
  opacity: 1;
  transform: translateX(100%);
  animation: ep-announcement-marquee 12s linear infinite;
  pointer-events: auto;
}

@keyframes ep-announcement-marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.ep-announcement-item:hover,
.ep-announcement-item:focus {
  color: var(--pbmit-global-color, #de7436);
}

.ep-announcement-nav {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--pbmit-blackish-color, #071c34);
  padding: 0;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.ep-header-line-icon {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ep-announcement-nav .ep-header-line-icon {
  width: 24px;
  height: 24px;
}

.ep-announcement-nav:hover,
.ep-announcement-nav:focus {
  color: var(--pbmit-global-color, #de7436);
}

.site-header .site-navigation ul.navigation > li > a,
.site-header .site-navigation ul.navigation a,
.site-header .main-menu .navigation > li > ul a,
.site-header .pbmit-contact-info,
.site-header .pbmit-contact-info a,
.site-header .ep-header-selector,
.site-header .ep-header-selector select,
.site-header .ep-announcement-item,
.site-header .header-button .pbmit-btn,
.site-header .pbmit-btn,
.site-header .ep-mobile-header-cta .pbmit-btn {
  font-weight: 400 !important;
}

.site-header .pre-header-wrapper,
.site-header .pre-header-wrapper a,
.site-header .pre-header-wrapper button,
.site-header .pre-header-wrapper select,
.site-header .pre-header-wrapper span,
.site-header .pre-header-wrapper i,
.site-header .ep-announcement-slider,
.site-header .ep-announcement-slider *,
.site-header .ep-pre-header-action-links,
.site-header .ep-pre-header-action-links *,
.site-header .pbmit-right-main-box,
.site-header .pbmit-right-main-box *,
.site-header .ep-teklif-trigger {
  font-weight: 400 !important;
}

@media (min-width: 1201px) {
  .header-style-3 .site-header-menu .col-md-12 > .d-flex {
    position: relative;
    display: flex !important;
    align-items: center;
    min-height: 97px;
  }

  .header-style-3 .site-header-menu .header-flex {
    width: 100%;
    align-items: center !important;
  }

  .header-style-3 .site-header-menu .site-branding {
    width: 31.1% !important;
    display: flex;
    align-items: center;
    min-height: 97px;
  }

  .header-style-3 .site-header-menu .site-branding .site-title {
    height: auto;
    line-height: 1;
    margin: 0;
  }

  .header-style-3 .site-header-menu .site-branding img.logo-img {
    display: block;
  }

  .header-style-3 .site-header-menu .site-navigation {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    margin-left: 0 !important;
  }

  .header-style-3 .site-header-menu .main-menu .navigation {
    display: flex;
    justify-content: center;
  }

  .header-style-3 .site-header-menu .pbmit-right-main-box {
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
  }
}

.ep-header-phone-quote {
  flex: 0 0 auto;
  margin-right: 26px;
}

.header-style-3 .site-header-menu .ep-header-phone-quote a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 97px;
  padding-left: 36px;
  color: #071c34;
  font-family: Quicksand, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .5px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.header-style-3 .site-header-menu .ep-header-phone-quote a::before {
  position: absolute;
  content: "\e82b";
  left: 0;
  top: 50%;
  color: var(--pbmit-global-color, #de7436);
  font-family: "pbminfotech-base-icons";
  font-size: 24px;
  line-height: 24px;
  transform: translateY(-46%);
}

.pbmit-right-main-box {
  display: inline-flex;
  align-items: center;
  min-height: 97px;
}

.pre-header-wrapper .d-flex {
  position: relative;
  align-items: center;
}

.pbmit-pre-header-left .pbmit-contact-info,
.pbmit-pre-header-right .pbmit-contact-info {
  display: flex;
  align-items: center;
  gap: 0;
}

.ep-pre-header-icon-links,
.ep-pre-header-action-links {
  display: inline-flex;
  align-items: center;
  gap: 34px;
}

.ep-pre-header-icon-links,
.ep-pre-header-action-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-style-3 .pre-header-wrapper .ep-pre-header-action-links {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  height: 53px;
  line-height: 1;
}

.header-style-3 .pre-header-wrapper .ep-pre-header-search {
  display: inline-flex !important;
  position: static;
  float: none;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  line-height: 1;
}

.ep-pre-header-icon-links a,
.ep-pre-header-action-links a,
.ep-pre-header-search a,
.ep-header-action-link--top {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #071c34;
  line-height: 1;
  text-decoration: none;
}

.header-style-3 .pre-header-wrapper .ep-pre-header-search a {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #071c34;
  line-height: 1;
}

.ep-pre-header-icon-links a:hover,
.ep-pre-header-action-links a:hover,
.ep-pre-header-search a:hover,
.ep-header-action-link--top:hover {
  background: transparent;
  color: var(--pbmit-global-color, #de7436);
}

.ep-pre-header-search i,
.ep-pre-header-action-links i,
.ep-header-action-link--top i {
  font-size: 20px !important;
}

.ep-pre-header-search .ep-header-line-icon,
.ep-pre-header-action-links .ep-header-line-icon {
  width: 21px;
  height: 21px;
  stroke-width: 2;
}

.header-style-3 .pre-header-wrapper .ep-pre-header-icon-links li,
.header-style-3 .pre-header-wrapper .ep-pre-header-action-links li {
  padding: 0;
}

.header-style-3 .pre-header-wrapper .ep-pre-header-icon-links i,
.header-style-3 .pre-header-wrapper .ep-pre-header-action-links i {
  margin: 0;
  font-size: 20px !important;
}

.ep-pre-header-cart a {
  position: relative;
}

.ep-cart-count {
  position: absolute;
  top: -10px;
  right: -12px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--pbmit-white-color, #fff);
  border-radius: 999px;
  background: var(--pbmit-global-color, #de7436);
  color: var(--pbmit-white-color, #fff);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 0 0 1px rgba(17, 28, 45, .08);
}

.ep-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 14px;
}

.ep-header-action-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8, 28, 49, .14);
  border-radius: 50%;
  color: #071c34;
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s;
}

.ep-header-action-link:hover {
  border-color: var(--pbmit-global-color, #de7436);
  background: var(--pbmit-global-color, #de7436);
  color: #fff;
}

.ep-header-action-link i {
  font-size: 18px;
  line-height: 1;
}

.ep-header-action-link.ep-header-action-link--top {
  width: auto;
  height: auto;
  display: inline-flex;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #071c34;
  line-height: 1;
}

.ep-header-action-link.ep-header-action-link--top:hover {
  border-color: transparent;
  background: transparent;
  color: var(--pbmit-global-color, #de7436);
}

.ep-header-action-link.ep-header-action-link--top i {
  font-size: 17px;
}

.ep-auth-page {
  background: #f6f9fb;
}

.section-lg.ep-auth-hero {
  position: relative;
  overflow: hidden;
  padding-top: 58px;
  padding-bottom: 64px;
  background: #f6f9fb;
}

.section-lg.ep-auth-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 117, 188, .055), transparent 42%),
    linear-gradient(180deg, rgba(222, 116, 54, .045), transparent 48%);
}

.section-lg.ep-auth-hero .container {
  position: relative;
  z-index: 1;
}

.ep-auth-copy {
  max-width: 540px;
}

.ep-auth-page--login .ep-auth-copy,
.ep-auth-page--register .ep-auth-copy {
  max-width: 520px;
}

.ep-auth-copy--sticky {
  position: static;
}

.ep-auth-copy h1 {
  margin: 10px 0 16px;
  color: #071c34;
  font-size: clamp(31px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.14;
}

.ep-auth-copy p {
  max-width: 500px;
  color: #526071;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.ep-auth-benefits {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ep-auth-benefits li {
  position: relative;
  padding-left: 28px;
  color: #2e3d4f;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.ep-auth-benefits li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pbmit-global-color, #de7436);
  box-shadow: 0 0 0 6px rgba(222, 116, 54, .14);
}

.ep-auth-card {
  padding: 32px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid rgba(17, 28, 45, .08);
  box-shadow: 0 18px 42px rgba(17, 28, 45, .075);
}

.ep-auth-card--wide {
  max-width: 640px;
  margin-left: auto;
  padding: 30px 32px 32px;
}

.ep-auth-card--login {
  max-width: 560px;
  margin-left: auto;
  padding: 30px 32px 32px;
}

.ep-auth-page--login .ep-auth-card__head,
.ep-auth-page--register .ep-auth-card__head {
  margin-bottom: 20px;
}

.ep-auth-card__head {
  margin-bottom: 20px;
}

.ep-auth-card__head span {
  color: var(--pbmit-global-color, #de7436);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ep-auth-card__head h2 {
  margin: 6px 0 0;
  color: #071c34;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.ep-auth-card .row {
  --bs-gutter-x: 18px;
}

.ep-auth-card .row > [class*="col-"] {
  margin-bottom: 0;
}

.ep-auth-field {
  margin-bottom: 10px;
}

.ep-auth-field label {
  display: block;
  margin-bottom: 6px;
  color: #071c34;
  font-size: 14px;
  font-weight: 400;
}

.ep-auth-field .form-control {
  width: 100%;
  min-height: 44px;
  padding: 9px 13px;
  border: 1px solid rgba(17, 28, 45, .12);
  border-radius: 4px;
  background: #fff;
  color: #071c34;
  font-size: 14.5px;
  line-height: 1.4;
  box-shadow: none;
}

.ep-auth-field .form-control:focus {
  border-color: var(--pbmit-global-color, #de7436);
  background: #fff;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(222, 116, 54, .10);
}

.ep-auth-field .form-control.ep-invalid {
  border-color: #b84242;
}

.ep-auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 6px 0 20px;
  padding-top: 4px;
}

.ep-auth-link,
.ep-auth-card__footer a,
.ep-auth-inline-cta a,
.ep-auth-agreements a {
  color: var(--pbmit-global-color, #de7436);
  font-weight: 500;
}

.ep-auth-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #526071;
  font-size: 13.5px;
  line-height: 1.5;
  cursor: pointer;
}

.ep-auth-check input {
  width: 16px;
  height: 16px;
  margin-top: 0;
  flex: 0 0 16px;
  accent-color: var(--pbmit-global-color, #de7436);
}

.ep-auth-submit {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  border: 0;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .02em;
}

.ep-auth-card__footer,
.ep-auth-inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
  color: #526071;
  font-size: 14.5px;
  font-weight: 400;
}

.ep-auth-segment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.ep-auth-segment label {
  margin: 0;
}

.ep-auth-segment input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ep-auth-segment span {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 28, 45, .14);
  border-radius: 4px;
  background: #fff;
  color: #071c34;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.ep-auth-segment input:checked + span {
  border-color: var(--pbmit-global-color, #de7436);
  background: rgba(222, 116, 54, .10);
  color: var(--pbmit-global-color, #de7436);
}

.ep-auth-company {
  margin: 6px 0 12px;
  padding: 12px 14px 2px;
  border: 1px solid rgba(17, 28, 45, .08);
  border-radius: 4px;
  background: #fff;
}

.ep-auth-company h3 {
  margin: 0 0 10px;
  color: #526071;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.ep-auth-agreements {
  margin: 2px 0 18px;
  padding: 10px 14px;
  box-shadow: none;
}

.ep-auth-agreements .entegre-contract-item:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.ep-auth-agreements .entegre-contract-item {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(17, 28, 45, .08);
}

.ep-auth-agreements .entegre-contract-item label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 0;
  color: #394555;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}

.ep-auth-agreements .entegre-contract-item input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 3px 0 0;
  flex: 0 0 16px;
  opacity: 1;
  visibility: visible;
  position: static;
  accent-color: var(--pbmit-global-color, #de7436);
}

.ep-auth-agreements .entegre-contract-item label:hover input[type="checkbox"],
.ep-auth-agreements .entegre-contract-item input[type="checkbox"]:focus {
  opacity: 1;
  visibility: visible;
}

.ep-field-error {
  display: block;
  margin-top: 6px;
  color: #b84242;
  font-size: 13px;
  line-height: 1.35;
}

#teklifModal.ep-teklif-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

#teklifModal.ep-open {
  display: flex;
}

.ep-teklif-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
}

.ep-teklif-dialog {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 16px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.ep-teklif-head {
  padding: 28px 32px 24px;
  background: var(--pbmit-global-color, #de7436);
}

.ep-step-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.ep-step-dot {
  height: 4px;
  flex: 1;
  border-radius: 2px;
  background: rgba(255, 255, 255, .35);
}

.ep-step-dot.ep-active {
  background: rgba(255, 255, 255, .9);
}

.ep-step-label {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ep-step-title {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.ep-teklif-close {
  position: absolute;
  top: 16px;
  right: 18px;
  padding: 4px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .85);
  cursor: pointer;
  line-height: 1;
}

.ep-teklif-close i {
  font-size: 20px;
}

.ep-teklif-form {
  padding: 32px;
}

.ep-option-card {
  display: block;
  margin: 0;
  cursor: pointer;
}

.ep-option-card input {
  display: none;
}

.ep-option-card .ep-card-inner {
  display: block;
  padding: 18px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  color: #444;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  transition: border-color .2s, background .2s;
}

.ep-option-card .ep-card-inner i {
  display: block;
  margin-bottom: 8px;
  color: var(--pbmit-global-color, #de7436);
  font-size: 28px;
}

.ep-option-card input:checked ~ .ep-card-inner,
.ep-option-card.ep-selected .ep-card-inner {
  border-color: var(--pbmit-global-color, #de7436);
  background: #fff9f5;
}

.ep-option-card:hover .ep-card-inner {
  border-color: var(--pbmit-global-color, #de7436);
}

#teklifForm .form-control {
  all: revert;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  outline: none;
  background: #fff;
  color: #333;
  box-shadow: none;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  transition: border-color .2s;
}

#teklifForm .form-control:focus {
  border-color: #aaa;
  outline: none;
  box-shadow: none;
}

#teklifForm .form-control::placeholder {
  color: #aaa;
}

#teklifForm .form-control.ep-invalid {
  border-color: #dc3545 !important;
}

.ep-error {
  display: none;
  margin: 6px 0 0;
  color: #dc3545;
  font-size: 13px;
}

.ep-error.ep-show {
  display: block;
}


.ep-teklif-contracts {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fafafa;
}

.ep-teklif-contract {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 0;
  color: #444;
  font-size: 12px;
  line-height: 1.45;
  cursor: pointer;
}

.ep-teklif-contract input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex: 0 0 16px;
}

.ep-teklif-contract a {
  color: var(--pbmit-global-color, #de7436);
}
.ep-teklif-captcha {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.ep-teklif-captcha-field {
  min-width: 0;
}

.ep-teklif-captcha-image {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 5px 6px;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  background: #fff;
}

.ep-teklif-captcha-image img {
  max-width: 100%;
  max-height: 36px;
}

#teklifForm .ep-field-error {
  margin-top: 6px;
  color: #dc3545;
  font-size: 13px;
  line-height: 1.35;
}

.ep-teklif-refresh {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 3px;
  background: #073b4c;
  color: #fff;
  cursor: pointer;
}

.ep-teklif-refresh:hover {
  background: var(--pbmit-global-color, #de7436);
}

.ep-teklif-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
}

.ep-back-btn {
  background: transparent !important;
  color: #555 !important;
  border: 2px solid #bbb !important;
  box-shadow: none !important;
}

.ep-back-btn:hover {
  background: #f5f5f5 !important;
  color: #333 !important;
  border-color: #999 !important;
}

.ep-teklif-toast-wrap {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 999999;
}

.ep-teklif-toast {
  min-width: 300px;
  border-radius: 4px;
  background: #2e7d52;
}

.ep-teklif-toast.ep-toast-error {
  background: #b84242;
}

.ep-teklif-toast .toast-body {
  padding: 14px 18px;
  font-size: 15px;
}

.ep-teklif-toast .toast-body span {
  font-size: 13px;
  opacity: .9;
}

@media (max-width: 575px) {
  #teklifModal .ep-teklif-dialog {
    min-height: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    border-radius: 0;
  }

  #teklifForm {
    flex: 1;
    overflow-y: auto;
  }

  
.ep-teklif-contracts {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fafafa;
}

.ep-teklif-contract {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 0;
  color: #444;
  font-size: 12px;
  line-height: 1.45;
  cursor: pointer;
}

.ep-teklif-contract input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex: 0 0 16px;
}

.ep-teklif-contract a {
  color: var(--pbmit-global-color, #de7436);
}
.ep-teklif-captcha {
    grid-template-columns: 1fr;
  }
}



#epCookieConsent.ep-cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 18px 16px;
  background: rgba(9, 18, 30, .9);
  box-shadow: 0 -10px 30px rgba(9, 18, 30, .2);
}

#epCookieConsent.ep-cookie-consent.ep-cookie-consent--expanded {
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 24px 16px;
  background: rgba(9, 18, 30, .94);
  box-shadow: none;
}

.ep-cookie-consent__panel {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.ep-cookie-consent--expanded .ep-cookie-consent__panel {
  width: min(1600px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  align-self: center;
}

.ep-cookie-consent--expanded .ep-cookie-consent__detail {
  max-height: 260px;
  display: flex;
  flex-direction: column;
}

.ep-cookie-consent--expanded .ep-cookie-consent__detail-head {
  position: sticky;
  top: 0;
  z-index: 1;
  box-shadow: 0 1px 0 rgba(17, 28, 45, .08);
}

.ep-cookie-consent--expanded .ep-cookie-consent__detail-body {
  overflow-y: auto;
}

.ep-cookie-consent__content strong {
  display: block;
  margin-bottom: 4px;
  color: #0d2034;
  font-size: 17px;
  line-height: 1.25;
}

.ep-cookie-consent__content p {
  margin: 0;
  color: #526071;
  font-size: 14px;
  line-height: 1.55;
}

.ep-cookie-consent__settings {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 2px;
}

.ep-cookie-consent__settings[hidden] {
  display: none;
}

.ep-cookie-consent__help {
  grid-column: 1 / -1;
  padding: 10px 12px;
  border-radius: 6px;
  background: #f7f9fb;
  color: #526071;
  font-size: 14px;
  line-height: 1.45;
}

.ep-cookie-consent__help a {
  color: var(--pbmit-global-color, #de7436);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ep-cookie-consent__detail {
  border: 1px solid rgba(17, 28, 45, .1);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.ep-cookie-consent__detail {
  border-color: rgba(222, 116, 54, .35);
}

.ep-cookie-consent__detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 12px 14px;
  margin: 0;
  color: #0d2034;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}

.ep-cookie-consent__detail-head span {
  min-width: 0;
  flex: 1 1 auto;
  align-self: center;
}

.ep-cookie-consent__detail input {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  align-self: center;
  accent-color: var(--pbmit-global-color, #de7436);
  opacity: 1;
  visibility: visible;
  position: static;
  margin: 0;
  transform: translateY(0);
}

.ep-cookie-consent__detail-body {
  min-height: 0;
  padding-top: 8px;
}

.ep-cookie-consent__detail p {
  margin: 0;
  padding: 0 14px 8px 14px;
  color: #526071;
  font-size: 13px;
  line-height: 1.45;
}

.ep-cookie-consent__detail ul {
  margin: 0;
  padding: 0 14px 12px 30px;
  color: #526071;
  font-size: 13px;
  line-height: 1.45;
}

.ep-cookie-consent__detail li {
  margin: 2px 0;
}

.ep-cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.ep-cookie-consent__button,
.ep-cookie-consent__link {
  min-height: 42px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.ep-cookie-consent__button {
  border: 1px solid var(--pbmit-global-color, #de7436);
  background: var(--pbmit-global-color, #de7436);
  color: #fff;
  padding: 0 16px;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.ep-cookie-consent__button--ghost {
  background: #fff;
  color: #0d2034;
  border-color: rgba(17, 28, 45, .18);
}

.ep-cookie-consent__button:hover,
.ep-cookie-consent__button:focus {
  background: #c85f22;
  border-color: #c85f22;
  color: #fff;
}

.ep-cookie-consent__button--ghost:hover,
.ep-cookie-consent__button--ghost:focus {
  background: #f7f9fb;
  border-color: rgba(17, 28, 45, .26);
  color: #0d2034;
}

.ep-cookie-consent__link {
  border: 0;
  background: transparent;
  color: #0d2034;
  padding: 0 6px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ep-cookie-consent--closing {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease;
}

@media (max-width: 991px) {
  .ep-cookie-consent__panel {
    grid-template-columns: 1fr;
  }

  .ep-cookie-consent__actions {
    justify-content: flex-start;
  }

  .ep-cookie-consent__settings {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  html,
  body,
  .page-wrapper {
    max-width: 100%;
    overflow-x: hidden;
  }

  .pre-header-wrapper .d-flex {
    gap: 10px;
  }

  .ep-header-selector,
  .ep-header-mini-links a {
    min-height: 34px;
    font-size: 13px;
  }

  .ep-header-selectors {
    margin-left: 16px;
  }

  .ep-announcement-slider {
    position: relative;
    order: 3;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 40px;
    gap: 12px;
    transform: none;
  }

  .ep-announcement-track {
    height: 40px;
  }

  .ep-announcement-item {
    font-size: 13px;
  }

  .pbmit-pre-header-left .pbmit-contact-info,
  .pbmit-pre-header-right .pbmit-contact-info {
    gap: 0;
  }

  .ep-pre-header-icon-links,
  .ep-pre-header-action-links {
    gap: 24px;
  }

  .site-header .site-header-menu .container-fluid {
    padding-right: 14px;
    padding-left: 14px;
  }

  .site-header .header-flex {
    width: 100%;
    min-width: 0;
    flex: 1 1 auto;
    gap: 10px;
  }

  .header-style-3 .site-branding {
    min-width: 0;
    flex: 1 1 auto !important;
    margin-right: 0;
    padding-right: 0;
  }

  .site-header .site-navigation {
    min-width: 42px;
    flex: 0 0 42px;
    margin-left: 0 !important;
  }

  .site-header .navbar-header {
    width: 42px;
    display: flex;
    justify-content: flex-end;
  }

  .site-header .navbar-toggler {
    width: 42px;
    font-size: 32px;
    line-height: 32px;
  }

  .ep-header-phone-quote {
    display: none;
  }

  .ep-header-actions {
    display: none;
  }

  .site-header .pbmit-right-main-box {
    display: none !important;
  }

  .ep-mobile-account-link {
    display: block;
  }

  html.ep-mobile-menu-open,
  body.ep-mobile-menu-open {
    height: 100%;
    overflow: hidden !important;
    overscroll-behavior: none;
  }

  body:has(.site-header.active) {
    height: 100%;
    overflow: hidden !important;
    overscroll-behavior: none;
  }

  body.ep-mobile-menu-open .page-wrapper,
  body:has(.site-header.active) .page-wrapper {
    height: 100vh;
    overflow: hidden !important;
  }

  body.ep-mobile-menu-open .page-content,
  body:has(.site-header.active) .page-content {
    overflow: hidden !important;
    touch-action: none;
  }

  body.ep-mobile-menu-open .site-header,
  body:has(.site-header.active) .site-header {
    touch-action: auto;
  }

  .site-header .pbmit-menu-wrap {
    width: min(390px, 86vw);
    padding-top: 0 !important;
  }

  .site-header .pbmit-menu-wrap .navigation > li.ep-mobile-open > ul,
  .site-header .pbmit-menu-wrap .navigation > li.ep-mobile-open > ul.open {
    display: block;
    height: auto;
    opacity: 1;
    visibility: visible;
  }

  .ep-mobile-menu-head {
    position: relative;
    z-index: 1;
    display: block;
    border-bottom: 1px solid rgba(17, 28, 45, .12);
    background: #fff;
  }

  .ep-mobile-menu-logo {
    display: flex;
    width: min(248px, calc(100% - 94px));
    max-width: 248px;
    margin: 18px 58px 18px 22px;
    padding: 0;
  }

  .ep-mobile-menu-logo img {
    display: block;
    width: 100%;
    height: auto;
  }

  .ep-mobile-announcement {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 44px;
    margin: 0;
    padding: 0 18px;
    gap: 12px;
    border-top: 1px solid rgba(17, 28, 45, .06);
    background: #fbfcfd;
    transform: none;
  }

  .ep-mobile-announcement .ep-announcement-track,
  .ep-mobile-announcement .ep-announcement-item {
    height: 44px;
  }

  .ep-mobile-announcement .ep-announcement-item {
    justify-content: flex-start;
    padding: 0 4px;
    color: #253247;
    font-size: 13px;
    font-weight: 400 !important;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
  }

  .ep-mobile-announcement .ep-announcement-nav {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .ep-mobile-menu-selectors {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 28px;
    border-top: 1px solid rgba(17, 28, 45, .08);
    border-bottom: 1px solid rgba(17, 28, 45, .12);
    background: #fff;
  }

  .ep-mobile-menu-selectors label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #071c34;
    font-size: 13px;
    font-weight: 400;
  }

  .ep-mobile-menu-selectors img {
    width: 24px;
    height: 16px;
    display: block;
    object-fit: cover;
    border-radius: 2px;
  }

  .ep-mobile-menu-selectors select {
    border: 0;
    background: transparent;
    color: #071c34;
    font: inherit;
    outline: 0;
    padding: 0 18px 0 0;
  }

  .ep-mobile-menu-actions {
    position: relative;
    z-index: 1;
    display: block;
    padding: 22px 28px 30px;
    border-top: 1px solid rgba(17, 28, 45, .12);
    background: #fff;
  }

  .ep-mobile-menu-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #071c34;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
  }

  .ep-mobile-menu-phone i {
    color: var(--pbmit-global-color, #de7436);
    font-size: 24px;
    line-height: 1;
  }

  .ep-mobile-menu-action-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
  }

  .ep-mobile-menu-action-grid a {
    position: relative;
    min-width: 0;
    min-height: 74px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(17, 28, 45, .12);
    border-radius: 4px;
    background: #f8f9fb;
    color: #071c34;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
  }

  .ep-mobile-menu-action-grid a:hover,
  .ep-mobile-menu-action-grid a:focus {
    border-color: rgba(222, 116, 54, .45);
    background: rgba(222, 116, 54, .08);
    color: var(--pbmit-global-color, #de7436);
  }

  .ep-mobile-menu-action-grid i {
    color: var(--pbmit-global-color, #de7436);
    font-size: 23px;
    line-height: 1;
  }

  .ep-mobile-menu-action-grid .ep-cart-count {
    top: 8px;
    right: 12px;
  }

  .ep-mobile-menu-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .ep-mobile-menu-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(17, 28, 45, .12);
    border-radius: 50%;
    background: #fff;
    color: #071c34;
    text-decoration: none;
  }

  .ep-mobile-menu-social a:hover,
  .ep-mobile-menu-social a:focus {
    border-color: var(--pbmit-global-color, #de7436);
    background: var(--pbmit-global-color, #de7436);
    color: #fff;
  }

  .ep-mobile-menu-social i {
    font-size: 20px;
    line-height: 1;
  }

  .site-header .site-branding img.logo-img {
    width: clamp(178px, 30vw, 250px);
    max-width: 100%;
    height: auto;
    max-height: none;
  }

  .ep-mobile-header-cta {
    display: flex !important;
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: 10px;
  }

  .ep-mobile-header-cta .pbmit-btn {
    display: inline-flex !important;
    align-items: center;
    position: static;
    min-width: 0;
    min-height: 56px;
    padding: 0 24px;
    font-size: 13px;
    line-height: 20px;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
  }

  .pbmit-text-style-3 {
    overflow: visible;
  }

  .ep-mobile-menu-close.closepanel {
    top: 16px;
    right: 16px;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0d2034;
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
  }

  .finance-lottie {
    display: none;
  }

  .pbmit-text-style-3 .pbmit-element-title {
    max-width: 100%;
    font-size: clamp(44px, 10vw, 68px);
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
  }

  .coworing-video {
    flex-wrap: wrap;
    gap: 18px;
  }

  .ep-auth-copy--sticky {
    position: static;
  }

  .ep-auth-copy {
    margin-bottom: 34px;
  }
}

@media (max-width: 420px) {
  .site-header .site-branding img.logo-img {
    width: 156px;
  }

  .ep-mobile-header-cta {
    margin-right: 8px;
  }

  .ep-mobile-header-cta .pbmit-btn {
    min-height: 44px;
    padding: 0 13px;
    font-size: 11px;
  }
}

@media (min-width: 421px) and (max-width: 575px) {
  .site-header .site-branding img.logo-img {
    width: 186px;
  }

  .ep-mobile-header-cta .pbmit-btn {
    min-height: 48px;
    padding: 0 16px;
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .pre-header-wrapper .d-flex {
    flex-wrap: wrap;
    justify-content: center !important;
  }

  .pbmit-pre-header-left,
  .pbmit-pre-header-right {
    width: 100%;
  }

  .ep-header-selectors {
    gap: 12px;
    margin-left: 0;
  }

  .ep-header-mini-links {
    gap: 14px;
  }

  .ep-announcement-nav {
    width: 24px;
  }

  .pbmit-pre-header-left .pbmit-contact-info,
  .pbmit-pre-header-right .pbmit-contact-info {
    justify-content: center;
  }

  .pbmit-pre-header-right .pbmit-contact-info > li:first-child {
    display: none;
  }

  .section-lg.ep-auth-hero {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  .ep-auth-copy h1 {
    font-size: 34px;
  }

  .ep-auth-copy p {
    font-size: 15.5px;
  }

  .ep-auth-card,
  .ep-auth-card--wide {
    padding: 22px;
  }

  .ep-auth-options,
  .ep-auth-card__footer,
  .ep-auth-inline-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .ep-auth-segment {
    grid-template-columns: 1fr;
  }

  #epCookieConsent.ep-cookie-consent {
    padding: 10px;
  }

  #epCookieConsent.ep-cookie-consent.ep-cookie-consent--expanded {
    align-items: stretch;
    padding: 10px;
  }

  .ep-cookie-consent__panel {
    width: 100%;
    padding: 14px;
    gap: 14px;
  }

  .ep-cookie-consent--expanded .ep-cookie-consent__panel {
    max-height: calc(100vh - 20px);
  }

  .ep-cookie-consent--expanded .ep-cookie-consent__detail {
    max-height: 220px;
  }

  .ep-cookie-consent__settings,
  .ep-cookie-consent__actions {
    grid-template-columns: 1fr;
  }

  .ep-cookie-consent__actions {
    display: grid;
  }

  .ep-cookie-consent__button,
  .ep-cookie-consent__link {
    width: 100%;
  }
}

.ep-contract-page {
  background: #fff;
}

.ep-about-page,
.ep-about-media,
.ep-about-values {
  background: #fff;
}

.ep-about-hero-visual {
  background-image: url("../images/entegre/about/about-hero.jpg");
}

.ep-about-rich-content {
  color: #526071;
  font-size: 16px;
  line-height: 1.7;
}

.ep-about-rich-content p:last-child {
  margin-bottom: 0;
}

.ep-about-values .pbmit-ihbox-style-17 {
  height: 100%;
}

.ep-about-media {
  padding-top: 0;
}

.ep-about-media__item {
  height: 100%;
}

.ep-about-media__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 18px 45px rgba(17, 28, 45, .10);
}

.ep-about-media__caption {
  margin-top: 14px;
  color: #526071;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .ep-about-media .row {
    row-gap: 28px;
  }
}

.ep-contract-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.ep-contract-detail__content table {
  width: 100%;
  margin: 18px 0;
  border-collapse: collapse;
}

.ep-contract-detail__content th,
.ep-contract-detail__content td {
  padding: 10px 12px;
  border: 1px solid rgba(17, 28, 45, .14);
  vertical-align: top;
}

.hide,
.is-hidden,
[hidden] {
  display: none !important;
}

.header-style-3 .site-branding,
.header-style-3 .site-header-menu .site-branding {
  border-right: 0 !important;
}

.header-style-3 .pre-header-wrapper {
  border-bottom: 1px solid #f3f3f3 !important;
}

.header-style-3 .pre-header-wrapper .ep-announcement-slider,
.header-style-3 .pre-header-wrapper .ep-announcement-slider *,
.header-style-3 .pre-header-wrapper .ep-announcement-item,
.header-style-3 .pre-header-wrapper .ep-announcement-nav,
.header-style-3 .pre-header-wrapper .ep-announcement-nav i {
  font-family: var(--pbmit-body-typography-font-family, 'DM Sans', sans-serif) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.header-style-3 .pre-header-wrapper .ep-pre-header-action-links a,
.header-style-3 .pre-header-wrapper .ep-pre-header-action-links i,
.header-style-3 .pre-header-wrapper .ep-pre-header-search a,
.header-style-3 .pre-header-wrapper .ep-pre-header-search i,
.header-style-3 .pre-header-wrapper .pbmit-header-search-btn,
.header-style-3 .pre-header-wrapper .pbmit-header-search-btn i {
  font-weight: 400 !important;
  -webkit-font-smoothing: antialiased;
}

/* Modern top header refresh */
.header-style-3 .pre-header-wrapper {
  height: 42px !important;
  line-height: 42px !important;
  border-bottom: 1px solid #edf1f5 !important;
  background: #fbfcfd !important;
}

.header-style-3 .pre-header-wrapper .container-fluid {
  padding-left: clamp(18px, 4vw, 72px);
  padding-right: clamp(18px, 4vw, 72px);
}

.header-style-3 .pre-header-wrapper .d-flex {
  min-height: 42px;
  align-items: center;
}

.header-style-3 .pre-header-wrapper .pbmit-contact-info {
  min-height: 42px;
  line-height: 1;
}

.ep-header-selectors {
  gap: 18px;
  margin-left: 0;
  flex: 0 0 auto;
}

.ep-header-selector,
.ep-header-mini-links a {
  min-height: 42px;
  color: #071c34;
  font-size: 13px;
}

.ep-header-selector select {
  min-width: 52px;
  width: 52px;
  padding-right: 18px;
  text-indent: 0;
  text-align-last: center;
}

.ep-announcement-slider {
  width: min(560px, 42vw);
  min-height: 42px;
  gap: 8px;
}

.ep-announcement-slider::before {
  display: none;
}

.ep-announcement-track {
  height: 42px;
}

.ep-announcement-item {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #253247;
  font-size: 13.5px;
  font-weight: 400 !important;
  line-height: 1.25;
  text-align: center;
  opacity: 0;
  transform: translateX(28%);
  transition: opacity .32s ease;
  animation: none !important;
}

.ep-announcement-item.active {
  opacity: 1;
  animation: ep-announcement-soft-flow 12s linear infinite !important;
}

@keyframes ep-announcement-soft-flow {
  0% {
    transform: translateX(30%);
  }

  8% {
    transform: translateX(22%);
  }

  92% {
    transform: translateX(-22%);
  }

  100% {
    transform: translateX(-30%);
  }
}

.ep-announcement-nav {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(7, 28, 52, .08);
  border-radius: 999px;
  background: #fff;
  color: #071c34;
  box-shadow: 0 5px 16px rgba(17, 28, 45, .045);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.ep-announcement-nav .ep-header-line-icon {
  width: 15px;
  height: 15px;
  stroke-width: 2.1;
}

.ep-announcement-nav:hover,
.ep-announcement-nav:focus {
  border-color: var(--pbmit-global-color, #de7436);
  background: var(--pbmit-global-color, #de7436);
  color: #fff;
  transform: translateY(-1px);
}

.header-style-3 .pre-header-wrapper .ep-pre-header-action-links {
  height: 42px;
  gap: 24px;
}

.ep-pre-header-search .ep-header-line-icon,
.ep-pre-header-action-links .ep-header-line-icon {
  width: 20px;
  height: 20px;
  stroke-width: 1.85;
}

.ep-cart-count {
  top: -8px;
  right: -10px;
}

@media (max-width: 1200px) {
  .header-style-3 .pre-header-wrapper .container-fluid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .header-style-3 .pre-header-wrapper .d-flex {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 18px;
    justify-content: normal !important;
  }

  .pbmit-pre-header-left,
  .pbmit-pre-header-right {
    width: auto;
    min-width: 0;
  }

  .pbmit-pre-header-left {
    justify-self: start;
  }

  .pbmit-pre-header-right {
    justify-self: end;
  }

  .ep-header-selectors {
    gap: 10px;
    min-width: 128px;
  }

  .ep-header-selector {
    min-width: 54px;
    justify-content: center;
    overflow: visible;
  }

  .ep-header-selector select {
    width: 54px;
    min-width: 54px;
    max-width: 54px;
    padding-right: 16px;
  }

  .ep-announcement-slider {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-width: 0;
    transform: none;
  }

  .ep-announcement-item {
    padding: 0 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-style-3 .pre-header-wrapper .ep-pre-header-action-links {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .header-style-3 .pre-header-wrapper {
    height: auto !important;
    line-height: 1 !important;
    padding: 8px 0;
  }

  .header-style-3 .pre-header-wrapper .d-flex {
    grid-template-columns: auto auto;
    gap: 6px 12px;
    min-height: 0;
  }

  .pbmit-pre-header-left {
    grid-column: 1;
    grid-row: 1;
  }

  .pbmit-pre-header-right {
    grid-column: 2;
    grid-row: 1;
  }

  .ep-announcement-slider {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-height: 34px;
  }

  .ep-announcement-track {
    height: 34px;
  }

  .ep-announcement-item {
    height: 34px;
    font-size: 12.5px;
  }

  .ep-announcement-nav {
    width: 24px;
    height: 24px;
  }

  .header-style-3 .pre-header-wrapper .ep-pre-header-action-links {
    height: 34px;
    gap: 18px;
  }
}

@media (max-width: 575px) {
  .header-style-3 .pre-header-wrapper .container-fluid {
    padding-left: 14px;
    padding-right: 14px;
  }

  .header-style-3 .pre-header-wrapper .d-flex {
    grid-template-columns: minmax(118px, auto) auto;
  }

  .pbmit-pre-header-left,
  .pbmit-pre-header-right {
    width: auto;
  }

  .ep-header-selectors {
    gap: 8px;
    min-width: 118px;
  }

  .ep-header-selector,
  .ep-header-selector select {
    width: 52px;
    min-width: 52px;
    max-width: 52px;
  }

  .ep-announcement-slider {
    gap: 7px;
  }

  .ep-announcement-item {
    font-size: 12px;
  }

  .ep-pre-header-search .ep-header-line-icon,
  .ep-pre-header-action-links .ep-header-line-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 575px) {
  .ep-contract-actions,
  .ep-contract-actions .ep-contract-print {
    width: 100%;
  }
}

@media print {
  body * {
    visibility: hidden !important;
  }

  #printArea,
  #printArea * {
    visibility: visible !important;
  }

  #printArea {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: #000;
    font-size: 12pt;
    line-height: 1.5;
  }

  .no-print {
    display: none !important;
  }

  .container,
  .container-fluid {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }
}

@page {
  size: A4;
  margin: 12mm;
}
