/* ==========================================================================
   1. Global & Shared Tab Styles
   ========================================================================== */
.action img {
  width: auto;
}
.action-nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.tab-content {
  display: inline-block;
  width: 100%;
  padding-top: 24px;
}

.tab-pan {
  display: none !important;
  margin-bottom: 20px;
}

.tab-pan.active {
  display: block !important;
}
.on-page-editor .tab-pan, .on-page-editor .tab-pan.active {
  display: block !important;
}

/* Base Nav behavior for all variants */
.action-button-component .tab-interface .action-nav {
  display: flex !important;
  flex-wrap: nowrap !important;
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overflow-y: hidden;
  justify-content: inherit;
}

.action-button-component .tab-interface .action-nav::-webkit-scrollbar {
  display: none;
}

.action-button-component .tab-interface .action-nav-item {
  flex: 0 0 auto;
  display: flex;
  position: relative;
  color: #fff;
}
.action-button-component .tab-interface .action-nav-item > div.tab-with-icons {
  display: flex;
  height: 100%;
  color: inherit;
}
/* ==========================================================================
   2. Action Button Interface
   ========================================================================== */
.action-button-component .tab-interface.action-button {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 !important;
  margin: 0px;
  flex-wrap: wrap;
}

.action-button-component .tab-interface.action-button.enable-border {
  border-radius: 37px;
}

.action-button-component .tab-interface.action-button .action-nav {
  gap: 16px;
  justify-content: center;
  padding:4px 0;
  overflow-x: auto;
}

.action-button-component .tab-interface.action-button .action-nav.btn-center {
  justify-content: start !important;
}

.action-button-component .tab-interface.action-button .action-nav .action-nav-link {
  white-space: nowrap;
  padding: 12px 24px;
  line-height: 1;
  transition: font-weight 0.3s ease;
  text-decoration: none;
  border-width: 1px;
  border-style: solid;
  border-color: var(--actbtnborder, transparent) !important;
  color: var(--actbtncolor, inherit) !important;
  background: var(--actbtnbackground, transparent) !important;
}

.action-button-component
  .tab-interface.action-button
  .action-nav
  .action-nav-link.button-border-radius {
  border-radius: 33px;
}

.action-button-component .tab-interface.action-button .action-nav .action-nav-link:hover{
  text-align: center;
  border-color: var(--actbtnmouseoverborder, var(--actbtnborder, transparent)) !important;
  color: var(--actbtnmouseovercolor, var(--actbtncolor, transparent)) !important;
  background: var(--actbtnmouseoverbackgroundcolor, var(--actbtnbackground, transparent)) !important;
}
.action-button-component .tab-interface.action-button .action-nav .action-nav-link.active {
  text-align: center;
  border-color: var(--actbtnclickcolorborder, var(--actbtnborder, transparent)) !important;
  color: var(--actbtnclickcolor, var(--actbtncolor, transparent)) !important;
  background: var(--actbtnclickbackgroundcolor, var(--actbtnbackground, transparent)) !important;
}


/* Navigation Arrows */
.action-button-component .tab-interface.action-button .preview,
.action-button-component .tab-interface.action-button .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  font-size: clamp(20px, 2vw, 154px);
  color: #aba7a7;
  width: auto;
  height: auto;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  background: #fff;
    border-radius: 100%;
    line-height: 90%;
}

.action-button-component .tab-interface.action-button .preview {
  left: 8px;
}
.action-button-component .tab-interface.action-button .next {
  right: 8px;
}

.action-button-component .tab-interface.action-button .preview.hidden,
.action-button-component .tab-interface.action-button .next.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================================
   3. Action Icon Interface
   ========================================================================== */
.action-button-component .tab-interface.action-icon {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 !important;
  background: none !important;
}

.action-button-component .tab-interface.action-icon .action-nav {
  margin: 0px;
  filter: drop-shadow(0px 3px 6px #00000029);
  overflow-x: auto;
}

.action-button-component .tab-interface.action-icon .action-nav:active {
}

.action-button-component .tab-interface.action-icon .action-nav.enable-border {
  border-radius: 10px;
}

.action-button-component .tab-interface.action-icon .action-nav-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color:var(--actbtncolor, transparent);
  background: var(--actbtnbackground, transparent);
  font-size: clamp(12px, 1vw, 154px);
  transition: none;
  position: relative;
  padding:16px 1.5rem;
  border-radius: 0;
  gap: 0px;
  margin: 0px;
}
.action-button-component .tab-interface.action-icon .action-nav .action-nav-link:hover{
  color: var(--actbtnmouseovercolor, var(--actbtncolor, transparent)) !important;
  background: var(--actbtnmouseoverbackgroundcolor, var(--actbtnbackground, transparent)) !important;
}
.action-button-component .tab-interface.action-icon .action-nav .action-nav-link.active {
  color: var(--actbtnclickcolor, var(--actbtncolor, transparent)) !important;
  background: var(--actbtnclickbackgroundcolor, var(--actbtnbackground, transparent)) !important;
}
.action-button-component .tab-interface.action-icon .action-nav-link span {
  display: flex;
  align-items: center;
}

.action-button-component .tab-interface.action-icon .action-nav-link span.action-img {
  margin-right: 15px;
}
.action-button-component
  .tab-interface.action-icon
  .action-nav-link.no-action-image:hover
  span.action-img,
.action-button-component
  .tab-interface.action-icon
  .action-nav-link.no-action-image
  span.action-img {
  margin: 0px;
}

.action-button-component .tab-interface.action-icon .action-nav-link:hover {
  color: inherit;
}
.action-button-component
  .tab-interface.action-icon
  .action-nav
  .action-nav-item:first-child
  .action-nav-link.button-border-radius {
  border-radius: 10px 0 0 10px;
}
.action-button-component
  .tab-interface.action-icon
  .action-nav
  .action-nav-item:last-child
  .action-nav-link.button-border-radius {
  border-radius: 0 10px 10px 0px;
}

/* Image Scaling & Hover Effects */
.action-button-component .tab-interface.action-icon .action-nav-link img {
  position: relative;
  height: auto;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.action-button-component
  .tab-interface.action-icon
  .action-nav-link.cta-icon-right
  img {
}

.action-button-component .tab-interface.action-icon .action-nav-link img.selected {
  opacity: 0;
  z-index: 2;
  display: none;
}

.action-button-component
  .tab-interface.action-icon
  .action-nav-link:hover
  img.selected {
  opacity: 1;
  display: block;
}

.action-button-component
  .tab-interface.action-icon
  .action-nav-link:hover
  img:not(.selected) {
  opacity: 0;
  display: none;
}

.action-button-component
  .tab-interface.action-icon
  .action-nav-link.no-hover-image
  img,
.action-button-component
  .tab-interface.action-icon
  .action-nav-link.no-hover-image:hover
  img {
  opacity: 1 !important;
  display: block !important;
}

/* ==========================================================================
   4. Action Tab Interface (Underlined)
   ========================================================================== */
.action-button-component .tab-interface.action-tab {
  position: relative !important;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.action-button-component .tab-interface.tab-section,
.action-button-component .tab-interface.action-tab {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.action-button-component .tab-interface.action-tab .action-nav {
  width: 100%;
  justify-content: flex-start;
  min-height: 48px;
  overflow-x: auto;
  border-bottom: 1px solid var(--scroll-color, #0671b8);
  padding:0px;
}



.action-button-component
  .tab-interface.action-tab
  .action-nav-item:not(:last-child)::after {
  content: "";
  display: inline-block;
  background-color: transparent;
  width: auto;
  height: 25px;
  align-self: center;
  margin: 0px;
  position: absolute;
  right: 0px;
  border-right: 1px solid #008000;
}
.action-button-component .tab-interface.action-tab .action-nav-item {
  padding: 0 0.5vw;
}
.action-button-component .tab-interface.action-tab .action-nav-item:first-child {
    padding-left: 0px;
}
.action-button-component .tab-interface.action-tab .action-nav-item:last-child {
    padding-right: 0px;
}
.action-button-component .tab-interface.action-tab .action-nav-link {
  display: flex;
  color: var(--actbtncolor, transparent);
  background: var(--actbtnmouseoverbackgroundcolor, transparent) !important;
  text-decoration: none;
  white-space: nowrap;
  padding:12px 24px;
  font-size: clamp(12px, 0.7291vw, 154px);
  align-items: center;
  border-bottom-width: 2px;
  border-bottom-color: transparent;
  border-bottom-style: solid;
  transition: none;
  line-height: 1;
}
.action-button-component .tab-interface.action-tab .action-nav .action-nav-link:hover{
  color: var(--actbtnmouseovercolor, var(--actbtncolor, transparent)) !important;
  background: var(--actbtnmouseoverbackgroundcolor, var(--actbtnbackground, transparent)) !important;
}
.action-button-component .tab-interface.action-tab .action-nav .action-nav-link.active {
  color: var(--actbtnclickcolor, var(--actbtncolor, transparent)) !important;
  background: var(--actbtnclickbackgroundcolor, var(--actbtnbackground, transparent)) !important;
}
.action-button-component
  .tab-interface.action-tab
  .action-nav
  .action-nav-link
  .link-underline {
  border-bottom: 2px solid #0671b8;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
}
.action-button-component .tab-interface.action-tab .action-nav .action-nav-link:hover{
  text-shadow:0.3px 0 0 currentColor, -0.3px 0 0 currentColor;
border-bottom-color: var(--actbtnmouseovercolor, var(--actbtncolor, transparent));
}
.action-button-component .tab-interface.action-tab .action-nav .action-nav-link.active {
  text-shadow:0.3px 0 0 currentColor, -0.3px 0 0 currentColor;
border-bottom-color: var(--actbtnclickcolor, var(--actbtncolor, transparent)) !important;
}
.tab-interfacewrapper {
  position: relative;
  width: 100%;
  display: flex;
  padding: 0 4px;
}
.action-button-component {
    padding-right: 24px;
    padding-left: 24px;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 60px;
    padding-bottom: 24px;
}
.action-button-component
  .tab-interface.action-icon
  .action-nav-link.cta-icon-right
  span.action-img {
  order: 1;
  margin-right: 0px;
  margin-left: 15px;
}
.tab-content .tab-pan > .row, .tab-content .tab-pan .quote,.tab-content .tab-pan .img-text-plain,
.tab-content .tab-pan > .row > .full-width.component{
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.tab-content .tab-pan > .row > .component-p-0 > div > .container-fluid  {
    padding: 0px 4px;
}
.tab-interfacewrapper.enable-border {
    border-radius: 37px;
}
.tab-content .component:has(.grid-card) {
    padding: 0;
}
html {
    scroll-behavior: smooth !important;
}
.no-background {
    padding: 0px !important;
}
.action-button-component .tab-interface.action-button .no-background .next {
    right: 1px;
}
.action-button-component .tab-interface.action-button .no-background .preview {
    left: 1px;
}

header.non-sticky-header {
    position: sticky;
}
.action-button-component .tab-interface .action-nav-link:hover,
.action-button-component .tab-interface .action-nav-link.active{
		text-shadow:0.3px 0 0 currentColor, -0.3px 0 0 currentColor;
}

.action-button-component .tab-interface.action-tab .link-text-underline .action-nav-link:hover,
.action-button-component .tab-interface .link-text-underline .action-nav-link:hover  {
    text-decoration: none;
}
.action-button-component .tab-interface .action-nav-link.active img{
  opacity: 0;
  display: none;
}
.action-button-component .tab-interface .action-nav-link.active img.selected{
  opacity: 1;
  display: block;
}







@media (max-width:1200px) {
  .action-button-component .tab-interface.action-icon .action-nav-link img {
    max-width: 40px;
  }
}

@media (max-width:992px) {
.action-button-component {
  padding-top: 40px;
  padding-bottom:16px;
  padding-left: 0;
  padding-right: 0px;

}
.action-button-component .tab-interface.action-button,
.action-button-component .tab-interface.tab-section, .action-button-component .tab-interface.action-tab,
.action-button-component .tab-interface.action-icon {
    padding-left: 16px !important;
    padding-right: 16px !important;

}
.tab-content {
  padding-top:16px;
}

}

@media (max-width: 768px) {
  .action-button-component
    .tab-interface.action-button
    .action-nav
    .action-nav-item
    .action-nav-link,
  .action-button-component .tab-interface.action-tab .action-nav .action-nav-item .action-nav-link {
    flex-direction: column;
    text-align: center;
  }
  .action-button-component .tab-interface.action-icon .action-nav-link {
    flex-direction: column !important;
    align-items: center;
    text-align: center !important;
    padding: 12px !important;
    min-height: auto;
    display: flex;
    justify-content: center;
  }
  .action-button-component
    .tab-interface.action-icon
    .action-nav-link.no-action-image {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .action-button-component .tab-interface.action-button .action-nav .action-nav-link {
    padding: 12px;
    line-height: 1;
  }
  .action-button-component .tab-interface.action-icon .action-nav-link img {
    margin: 8px auto;
    width: auto;
    max-width: 30px;
    order: -1;
  }
  .action-button-component .tab-interface.action-icon .action-nav-link img.selected {
    display: none;
  }

  .action-button-component .tab-interface.action-icon .action-nav {
    justify-content: flex-start;
    gap: 0;
  }

  .action-button-component .tab-interface.action-tab .action-nav {
    min-height: auto;
  }
  .action-button-component
    .tab-interface.action-tab
    .action-nav-item:not(:last-child)::after {
    height: 12px;
  }
  .action-button-component .tab-interface.action-tab .action-nav-item {
    padding: 0 5px;
  }
  .action-button-component
    .tab-interface.action-icon
    .action-nav-link
    span.action-img {
    margin: 0;
  }
  .action-button-component
    .tab-interface.action-icon
    .action-nav-link.cta-icon-right
    span.action-img {
    order: 0;
    margin-right: 0px;
    margin-left: 0px;
  }
  .action-button-component .tab-interface.action-button .preview,
  .action-button-component .tab-interface.action-button .next {
    display: none !important;
  }
}

@media (max-width: 500px) {
  .action-button-component .tab-interface.action-icon .action-nav-link img {
    max-width: 24px;
  }
}