.primary-btn,
a.primary-btn,
button.primary-btn,
.primary-btn-inverted,
a.primary-btn-inverted,
button.primary-btn-inverted {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    margin: 0 auto 1.5rem;
    padding: .85em 1em;
    text-align: center;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.primary-btn,
a.primary-btn,
button.primary-btn {
    background-color: #00263d;
    border: 1px solid #00263d;
    color: #66ffff !important;
    text-decoration: none !important;
}

.primary-btn:hover,
a.primary-btn:hover,
button.primary-btn:hover {
    background-color: #66ffff;
    border: 1px solid #00263d;
    color: #00263d !important;
}

@media (min-width: 992px) {
    .primary-btn,
    .primary-btn-inverted {
        margin: 0 0 1rem;
        width: auto;
    }
}

.primary-btn-inverted,
a.primary-btn-inverted,
button.primary-btn-inverted {
    background-color: #66FFFF;
    border: 1px solid #66FFFF;
    color: #00263d !important;
}

.primary-btn-inverted:hover,
a.primary-btn-inverted:hover,
button.primary-btn-inverted:hover {
    background-color: #0094a2;
    border: 1px solid #0094a2;
    color: #66FFFF !important;
}

a.primary-btn.rounded-btn {
    border-radius: 6px;
    margin-right: 1rem;
    padding: .85rem 1.95rem;
}/* New Megamenu Styles (In-Progress) */

/* Overall Styles */
.navbar .megamenu {
  padding: 0rem;
}

.has-megamenu .dropdown-menu.megamenu {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  top: 0;
  transform: none !important;
  z-index: 9999;
  border-left: 0;
  border-right: 0;
  max-height: 85vh !important;
  overflow-y: auto;
}

.megamenu-item {
  border-radius: 0.5rem;
  transition: background-color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.megamenu-item:hover,
.megamenu-item:focus {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateX(2px);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.12);
}

.megamenu-tab-item.active {
  background-color: rgba(255, 255, 255, 0.08);
}

.megamenu-link-title {
  color: #ffffff;
  transition: color 0.2s ease;
}

.megamenu-item:hover .megamenu-link-title,
.megamenu-item:focus .megamenu-link-title,
.megamenu-item:focus-visible .megamenu-link-title,
.megamenu-tab-item.active .megamenu-link-title,
.dropdown-item.active .megamenu-link-title {
  color: var(--logo-orange);
}

.megamenu-icon,
.megamenu-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
}

.megamenu-icon {
  width: 2.5rem;
  min-width: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.megamenu-icon i {
  line-height: 1;
}

.megamenu-arrow {
  min-width: 1.5rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.megamenu-item:hover .megamenu-arrow,
.megamenu-item:focus .megamenu-arrow {
  transform: translateX(2px);
}

.megamenu .dropdown-item {
  white-space: normal;
}

/* Industry Dropdown Styles */
.industry-card {
  min-height: 6.75rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-color: rgba(255, 255, 255, 0.04);
}

.industry-card:hover,
.industry-card:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.industry-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.industry-card-img {
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.9;
}

.industry-card-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 38%,
    rgba(0, 0, 0, 0.2) 65%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

.industry-card:hover::before,
.industry-card:focus::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.68) 45%,
    rgba(0, 0, 0, 0.3) 75%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

.industry-card-content {
  min-height: 6rem;
  padding: 0.5rem !important;
}

.industry-card-content .small,
.industry-card-content p,
.industry-card-cta {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.industry-card-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.03em;
}

.industry-card-cta i {
  transition: transform 0.2s ease;
}

.industry-card:hover .industry-card-img,
.industry-card:focus .industry-card-img {
  transform: scale(1.1);
  opacity: 0.82;
}

.industry-card:hover .industry-card-cta,
.industry-card:focus .industry-card-cta {
  color: rgba(255, 255, 255, 1);
}

.industry-card:hover .industry-card-cta i,
.industry-card:focus .industry-card-cta i {
  transform: translateX(2px);
}

/* News Dropdown Styles */
.news-headline-block {
  border-left: 3px solid var(--logo-orange);
  padding-left: 1rem;
  max-width: 32rem;
}

.news-feature-card {
  min-height: 11rem;
}

.white-paper-card-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.75) 38%,
    rgba(0, 0, 0, 0.65) 85%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.white-paper-card:hover::before,
.white-paper-card:focus::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.85) 30%,
    rgba(0, 0, 0, 0.75) 90%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

/* Podcasts & Events Dropdown Styles */
.event-highlight-cta {
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}

.event-highlight-card:hover .event-highlight-cta,
.event-highlight-card:focus .event-highlight-cta,
.event-highlight-card:focus-visible .event-highlight-cta {
  background-color: var(--logo-orange);
  color: #ffffff;
  border-color: var(--logo-orange);
}

.outlook-icon {
  width: 0.85rem;
  min-width: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Mobile */

@media (max-width: 991.98px) {
  .navbar .has-megamenu {
    position: relative !important;
  }

  .has-megamenu .border-bottom {
    border-bottom: 0 !important;
  }

  .has-megamenu .dropdown-menu.megamenu {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    background-color: transparent;
    box-shadow: none;
    max-height: none;
    overflow-y: auto;
    overflow-x: hidden;
    margin-top: 0.5rem;
    border-left: 0;
    border-right: 0;
  }

  .navbar .megamenu-2 {
    padding: 0.25rem 0 1rem 0;
    backdrop-filter: none;
  }

  .header-mobile-megamenu-left {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 1rem !important;
    margin-bottom: 0.25rem;
  }

  .header-mobile-megamenu-right {
    padding-left: 0 !important;
  }

  .header-mobile-megamenu-subcol {
    border-left: 0 !important;
    padding-left: 0 !important;
  }

  .header-mobile-megamenu-subcol + .header-mobile-megamenu-subcol {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 1rem;
    padding-top: 1rem !important;
  }

  .header-mobile-megamenu-tabs .megamenu-tab-item {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .header-mobile-megamenu-tabs .megamenu-arrow {
    display: none;
  }

  .navbar .megamenu .tab-pane.fade {
    transition: none;
  }

  .has-megamenu .nav-link > span > span:first-child {
    position: relative;
    color: #fff;
    transition: color 0.2s ease;
  }

  .has-megamenu .nav-link > span > span:first-child::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 100%;
    height: 2px;
    background-color: var(--logo-orange);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
  }

  .has-megamenu.mobile-submenu-open .nav-link > span > span:first-child {
    color: var(--logo-orange) !important;
  }

  .has-megamenu.mobile-submenu-open .nav-link > span > span:first-child::after {
    transform: scaleX(1);
  }

  .has-megamenu .nav-link > span > span:first-child {
    position: relative;
    color: #fff;
    transition: color 0.2s ease;
  }

  .has-megamenu .nav-link > span > span:first-child::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 100%;
    height: 2px;
    background-color: var(--logo-orange);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
  }

  .has-megamenu.mobile-submenu-open .nav-link > span > span:first-child {
    color: var(--logo-orange) !important;
  }

  .has-megamenu.mobile-submenu-open .nav-link > span > span:first-child::after {
    transform: scaleX(1);
  }

  .header-mobile-pane-slot {
    overflow: hidden;
    /* padding-bottom: 0.75rem; */
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease, margin-top 0.3s ease;
  }

  .header-mobile-pane-slot.is-open {
    opacity: 1;
    margin-top: 0.25rem;
  }

  .header-mobile-pane-slot > .tab-pane {
    display: block;
  }

  .header-mobile-toggle-tabs .megamenu-tab-item .megamenu-arrow i {
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  .header-mobile-toggle-tabs
    .megamenu-tab-item.mobile-tab-open
    .megamenu-arrow
    i {
    transform: rotate(180deg);
  }

  .header-mobile-pane-slot > .tab-pane.fade:not(.show) {
    opacity: 0;
  }

  .header-mobile-pane-slot > .tab-pane.fade.show {
    opacity: 1;
  }

  .header-mobile-pane-slot .border-start {
    border-left: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 1rem;
    padding-top: 1rem !important;
    padding-left: 0 !important;
  }
}
.Zebra_DatePicker {
    background: #373737;
    border-radius: 4px;
    box-shadow: 0 0 10px #888;
    color: #fff;
    font: 13px Tahoma,Arial,Helvetica,sans-serif;
    padding: 3px;
    position: absolute;
    display: table;
    z-index: 1200
}
.Zebra_DatePicker *,
.Zebra_DatePicker :after,
.Zebra_DatePicker :before {
    box-sizing: content-box!important
}
.Zebra_DatePicker * {
    padding: 0
}
.Zebra_DatePicker table {
    border-collapse: collapse;
    border-radius: 4px;
    border-spacing: 0;
    width: 100%
}
.Zebra_DatePicker td,
.Zebra_DatePicker th {
    padding: 5px;
    cursor: pointer;
    text-align: center;
    min-width: 25px;
    width: 25px
}
.Zebra_DatePicker .dp_body td,
.Zebra_DatePicker .dp_body th {
    border: 1px solid #bbb
}
.Zebra_DatePicker .dp_body td:first-child,
.Zebra_DatePicker .dp_body th:first-child {
    border-left: none
}
.Zebra_DatePicker .dp_body td:last-child,
.Zebra_DatePicker .dp_body th:last-child {
    border-right: none
}
.Zebra_DatePicker .dp_body tr:first-child td,
.Zebra_DatePicker .dp_body tr:first-child th {
    border-top: none
}
.Zebra_DatePicker .dp_body tr:last-child td,
.Zebra_DatePicker .dp_body tr:last-child th {
    border-bottom: none
}
.Zebra_DatePicker .dp_body td {
    background: #dedede;
    color: #666
}
.Zebra_DatePicker .dp_body .dp_weekend {
    background: #d1d1d1
}
.Zebra_DatePicker .dp_body .dp_not_in_month {
    background: #ebebeb
}
.Zebra_DatePicker .dp_body .dp_time_controls_condensed td {
    width: 25%
}
.Zebra_DatePicker .dp_body .dp_current {
    color: #e26261
}
.Zebra_DatePicker .dp_body .dp_selected {
    background: #e26262;
    color: #fff
}
.Zebra_DatePicker .dp_body .dp_disabled {
    background: #ececec;
    color: #ccc;
    cursor: text
}
.Zebra_DatePicker .dp_body .dp_disabled.dp_current {
    color: #f6cdcd
}
.Zebra_DatePicker .dp_body .dp_hover {
    color: #fff;
    background: #67aabb
}
.Zebra_DatePicker .dp_body .dp_hover.dp_time_control {
    background-color: #5d5d5d
}
.Zebra_DatePicker .dp_monthpicker td,
.Zebra_DatePicker .dp_timepicker td,
.Zebra_DatePicker .dp_yearpicker td {
    width: 33.3333%
}
.Zebra_DatePicker .dp_timepicker .dp_disabled {
    border: none;
    color: #666;
    font-size: 26px;
    font-weight: 700
}
.Zebra_DatePicker .dp_time_separator div {
    position: relative
}
.Zebra_DatePicker .dp_time_separator div:after {
    content: ":";
    color: 1px solid #bbb;
    font-size: 20px;
    left: 100%;
    margin-left: 2px;
    margin-top: -13px;
    position: absolute;
    top: 50%;
    z-index: 1
}
.Zebra_DatePicker .dp_header {
    margin-bottom: 3px
}
@supports (-ms-ime-align:auto) {
    .Zebra_DatePicker .dp_header {
        font-family: "Segoe UI Symbol",Tahoma,Arial,Helvetica,sans-serif
    }
}
.Zebra_DatePicker .dp_footer {
    margin-top: 3px
}
.Zebra_DatePicker .dp_footer .dp_icon {
    width: 50%
}
.Zebra_DatePicker .dp_actions td {
    border-radius: 4px
}
.Zebra_DatePicker .dp_actions .dp_caption {
    font-weight: 700;
    width: 100%
}
.Zebra_DatePicker .dp_actions .dp_hover {
    background-color: #5d5d5d
}
.Zebra_DatePicker .dp_daypicker th {
    background: #f1f1f1;
    color: #666;
    cursor: text;
    font-weight: 700
}
.Zebra_DatePicker.dp_hidden {
    display: none
}
.Zebra_DatePicker .dp_icon {
    height: 16px;
    background-image: url("dash/css/calendar.png");
    background-repeat: no-repeat;
    text-indent: -9999px
}
.Zebra_DatePicker .dp_icon.dp_confirm {
    background-position: center -123px
}
.Zebra_DatePicker .dp_icon.dp_view_toggler {
    background-position: center -91px
}
.Zebra_DatePicker .dp_icon.dp_view_toggler.dp_calendar {
    background-position: center -59px
}
button.Zebra_DatePicker_Icon {
    background: url("dash/css/calendar.png") no-repeat left top;
    border: none;
    cursor: pointer;    
    height: 16px;
    line-height: 0;
    padding: 0;
    text-indent: -9000px;
    width: 16px;
    margin: 0 0 0 5px;
}
button.Zebra_DatePicker_Icon.Zebra_DatePicker_Icon_Disabled {
    background: url("dash/css/calendar-disabled.png") no-repeat left top;
    cursor: default
}