:root.dark {
 --fg-button-primary-disabled: #525252;
 --bg-button-primary: #FDBB06;
 --fg-button-primary: #000000;
 --bg-button-primary-hover: #ca9605;
 --bg-button-primary-click: #be8c05;
}

/* Below is custom css */
.edp-background-blur  {
    display: none !important;
  }
/* container - matches the page content column */
.bannerImage-customized {
  position: relative;
  box-sizing: border-box;
  align-items: center;
  justify-content: flex-start;
  padding: 0 24px;
}
@media (min-width: 1024px) {
  .bannerImage-customized { max-width: 1120px; }
}
@media (min-width: 1280px) {
  .bannerImage-customized { max-width: 1072px; padding: 0; }
}
/* the rule */
.bannerImage-customized::before { display: none; }
.bannerImage-customized::after {
  content: "";
  position: absolute;
  left: 24px; right: 24px;
  top: 70%;
  height: 3px;
  background: linear-gradient(to right, transparent 0%, #fff 6%, #fff 92%, transparent 100%);
}
@media (min-width: 1280px) {
  .bannerImage-customized::after { left: 0; right: 0; }
}
/* the logo */
.bannerImage-customized img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-width: 610px;
  padding-left: 31px;
}
@media (max-width: 808px) {
  .bannerImage-customized::after {
    background: #fff;
    height: 2px;
    left: 0;
    right: 0;
  }
  .bannerImage-customized img {
    padding-left: 0;
  }
}
