/**
 * h1 Styles
 */
/**
 * h2 Styles
 */
/**
 * h3 Styles
 */
/**
 * h4 Styles
 */
/**
 * h5 Styles
 */
/**
 * h6 Styles
 */
/**
 * Container for components .container class
*/
/*
* Content + Two Sidebars Layout
* Pages: Spikes, Brixx, Tax
*/
/**
Local variables.
//////////////////////////////////////////////////////////
 */
/**
SVG icons prep.
//////////////////////////////////////////////////////////
 */
span.icon.icon-hover svg,
span.icon.icon-arrow svg,
span.icon.icon-idle svg {
  enable-background: new 0 0 58 58;
}

.icon-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.icon-container .icon {
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(1);
  transition: transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  line-height: 0;
}
.icon-container .icon.icon-idle {
  z-index: 1;
}
.icon-container .icon.icon-hover {
  z-index: 0;
}
.icon-container .icon.icon-arrow {
  z-index: 2;
}

/**
Local mixins.
//////////////////////////////////////////////////////////
 */
/**
Arrow button base style.
//////////////////////////////////////////////////////////
 */
.arrow-button {
  display: inline-block;
  position: relative;
}
.arrow-button a {
  display: inline-block;
  text-decoration: none;
  transition: 0.5s;
}

/**
Arrow button optional text style.
 */
.arrow-button__text {
  margin-right: 0.5rem;
  font-family: "FoundersGrotesk-Web-Medium";
  font-size: 32px;
  text-decoration: none;
  letter-spacing: 0.04px;
  line-height: 38px;
  vertical-align: middle;
}

/**
Arrow button size modifiers.
//////////////////////////////////////////////////////////
 */
.arrow-button--lg svg,
.arrow-button--lg .icon-container {
  height: 58px;
  width: 58px;
}

.arrow-button--md svg,
.arrow-button--md .icon-container {
  height: 38px;
  width: 38px;
}

.arrow-button--sm svg,
.arrow-button--sm .icon-container {
  height: 25px;
  width: 25px;
}
.arrow-button--sm svg {
  vertical-align: text-top;
}

.arrow-button--xs svg,
.arrow-button--xs .icon-container {
  height: 20px;
  width: 20px;
}

/**
Arrow button type modifiers (filled vs unfilled)
//////////////////////////////////////////////////////////
 */
.arrow-button--filled-dark.arrow-button:not(.remove-animation) {
  position: relative;
}
.arrow-button--filled-dark.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__fill {
  fill: #1a1a1a;
}
.arrow-button--filled-dark.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__border {
  stroke: #1a1a1a;
  stroke-width: 4px;
}
.arrow-button--filled-dark.arrow-button:not(.remove-animation) .icon-hover .arrow-button__fill {
  fill: var(--active-brand-color);
  stroke: #ffffff;
}
.arrow-button--filled-dark.arrow-button:not(.remove-animation) .icon-arrow .arrow-button__arrow {
  stroke: #ffffff;
}
.arrow-button--filled-dark.arrow-button:not(.remove-animation):hover .icon-container .icon-idle {
  transform: scale(0);
}
.arrow-button--filled-dark.arrow-button:not(.remove-animation):hover .icon-arrow .arrow-button__arrow {
  stroke: #ffffff;
}

.arrow-button--filled-light.arrow-button:not(.remove-animation) {
  position: relative;
}
.arrow-button--filled-light.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__fill {
  fill: #ffffff;
}
.arrow-button--filled-light.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__border {
  stroke: #ffffff;
  stroke-width: 4px;
}
.arrow-button--filled-light.arrow-button:not(.remove-animation) .icon-hover .arrow-button__fill {
  fill: var(--active-brand-color);
  stroke: #1a1a1a;
}
.arrow-button--filled-light.arrow-button:not(.remove-animation) .icon-arrow .arrow-button__arrow {
  stroke: #1a1a1a;
}
.arrow-button--filled-light.arrow-button:not(.remove-animation):hover .icon-container .icon-idle {
  transform: scale(0);
}
.arrow-button--filled-light.arrow-button:not(.remove-animation):hover .icon-arrow .arrow-button__arrow {
  stroke: #1a1a1a;
}

.arrow-button--filled-orange.arrow-button:not(.remove-animation) {
  position: relative;
}
.arrow-button--filled-orange.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__fill {
  fill: var(--active-brand-color);
}
.arrow-button--filled-orange.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__border {
  stroke: var(--active-brand-color);
  stroke-width: 4px;
}
.arrow-button--filled-orange.arrow-button:not(.remove-animation) .icon-hover .arrow-button__fill {
  fill: #ffffff;
  stroke: #1a1a1a;
}
.arrow-button--filled-orange.arrow-button:not(.remove-animation) .icon-arrow .arrow-button__arrow {
  stroke: #1a1a1a;
}
.arrow-button--filled-orange.arrow-button:not(.remove-animation):hover .icon-container .icon-idle {
  transform: scale(0);
}
.arrow-button--filled-orange.arrow-button:not(.remove-animation):hover .icon-arrow .arrow-button__arrow {
  stroke: #1a1a1a;
}

.arrow-button--unfilled-dark.arrow-button:not(.remove-animation) {
  position: relative;
}
.arrow-button--unfilled-dark.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__fill {
  fill: #ffffff;
}
.arrow-button--unfilled-dark.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__border {
  stroke: #1a1a1a;
  stroke-width: 4px;
}
.arrow-button--unfilled-dark.arrow-button:not(.remove-animation) .icon-hover .arrow-button__fill {
  fill: #1a1a1a;
  stroke: #1a1a1a;
}
.arrow-button--unfilled-dark.arrow-button:not(.remove-animation) .icon-arrow .arrow-button__arrow {
  stroke: #1a1a1a;
}
.arrow-button--unfilled-dark.arrow-button:not(.remove-animation):hover .icon-container .icon-idle {
  transform: scale(0);
}
.arrow-button--unfilled-dark.arrow-button:not(.remove-animation):hover .icon-arrow .arrow-button__arrow {
  stroke: #ffffff;
}

.arrow-button--unfilled-light.arrow-button:not(.remove-animation) {
  position: relative;
}
.arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__fill {
  fill: #1a1a1a;
}
.arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__border {
  stroke: #ffffff;
  stroke-width: 4px;
}
.arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-hover .arrow-button__fill {
  fill: #ffffff;
  stroke: #ffffff;
}
.arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-arrow .arrow-button__arrow {
  stroke: #ffffff;
}
.arrow-button--unfilled-light.arrow-button:not(.remove-animation):hover .icon-container .icon-idle {
  transform: scale(0);
}
.arrow-button--unfilled-light.arrow-button:not(.remove-animation):hover .icon-arrow .arrow-button__arrow {
  stroke: #1a1a1a;
}
.arrow-button--unfilled-light .arrow-button__text {
  color: #fff;
}

.arrow-button--transparent-light.arrow-button:not(.remove-animation) {
  position: relative;
}
.arrow-button--transparent-light.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__fill {
  fill: transparent;
}
.arrow-button--transparent-light.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__border {
  stroke: #ffffff;
  stroke-width: 4px;
}
.arrow-button--transparent-light.arrow-button:not(.remove-animation) .icon-hover .arrow-button__fill {
  fill: transparent;
  stroke: #ffffff;
}
.arrow-button--transparent-light.arrow-button:not(.remove-animation) .icon-arrow .arrow-button__arrow {
  stroke: #ffffff;
}
.arrow-button--transparent-light.arrow-button:not(.remove-animation):hover .icon-container .icon-idle {
  transform: scale(0);
}
.arrow-button--transparent-light.arrow-button:not(.remove-animation):hover .icon-arrow .arrow-button__arrow {
  stroke: #1a1a1a;
}
.arrow-button--transparent-light.arrow-button:not(.remove-animation):hover .icon-idle svg .arrow-button__fill {
  fill: #1a1a1a;
}
.arrow-button--transparent-light.arrow-button:not(.remove-animation):hover .icon-hover .arrow-button__fill {
  fill: #ffffff;
}

/**
Fixes for differing background colors
*/
.arrow-button button {
  -webkit-appearance: none;
  border: none;
  background-color: transparent;
}

.arrow-button button[disabled] {
  pointer-events: none;
}
.arrow-button button[disabled] .arrow-button__border,
.arrow-button button[disabled] .arrow-button__fill {
  fill: #bebebe !important;
  stroke: #bebebe !important;
}

.dark .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__fill,
.black .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__fill {
  fill: #1a1a1a;
}
.dark .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__border,
.black .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__border {
  stroke: #ffffff;
}

.light .arrow-button--filled-orange.arrow-button:not(.remove-animation) .icon-hover svg .arrow-button__fill,
.white .arrow-button--filled-orange.arrow-button:not(.remove-animation) .icon-hover svg .arrow-button__fill {
  fill: #1a1a1a;
}
.light .arrow-button--filled-orange.arrow-button:not(.remove-animation) .icon-hover svg .arrow-button__border,
.white .arrow-button--filled-orange.arrow-button:not(.remove-animation) .icon-hover svg .arrow-button__border {
  stroke: #1a1a1a;
}
.light .arrow-button--filled-orange.arrow-button:not(.remove-animation) .icon-arrow .arrow-button__arrow,
.white .arrow-button--filled-orange.arrow-button:not(.remove-animation) .icon-arrow .arrow-button__arrow {
  stroke: #ffffff;
}
.light .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__fill,
.white .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__fill {
  fill: #ffffff;
}
.light .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__border,
.white .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__border {
  stroke: #000000;
}
.light .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-hover svg .arrow-button__fill,
.white .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-hover svg .arrow-button__fill {
  fill: #000000;
}
.light .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-hover svg .arrow-button__border,
.white .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-hover svg .arrow-button__border {
  stroke: #000000;
}
.light .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-arrow .arrow-button__arrow,
.white .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-arrow .arrow-button__arrow {
  stroke: #000000;
}
.light .arrow-button--unfilled-light.arrow-button:not(.remove-animation):hover .icon-arrow .arrow-button__arrow,
.white .arrow-button--unfilled-light.arrow-button:not(.remove-animation):hover .icon-arrow .arrow-button__arrow {
  stroke: #ffffff;
}
.light .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__fill,
.white .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__fill {
  fill: #ffffff;
}
.light .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__border,
.white .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-idle svg .arrow-button__border {
  stroke: #000000;
}
.light .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-hover svg .arrow-button__fill,
.white .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-hover svg .arrow-button__fill {
  fill: #000000;
}
.light .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-hover svg .arrow-button__border,
.white .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-hover svg .arrow-button__border {
  stroke: #000000;
}
.light .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-arrow .arrow-button__arrow,
.white .arrow-button--unfilled-light.arrow-button:not(.remove-animation) .icon-arrow .arrow-button__arrow {
  stroke: #000000;
}
.light .arrow-button--unfilled-light.arrow-button:not(.remove-animation):hover .icon-arrow .arrow-button__arrow,
.white .arrow-button--unfilled-light.arrow-button:not(.remove-animation):hover .icon-arrow .arrow-button__arrow {
  stroke: #ffffff;
}

/**
Arrow button directional modifiers.
 */
.arrow-button--right svg {
  transform: rotate(0deg);
}

.arrow-button--down svg {
  transform: rotate(90deg);
}

.arrow-button--diagonal-down svg {
  transform: rotate(45deg);
}

.arrow-button--external svg {
  transform: rotate(315deg);
}

.arrow-button--filled-orange.arrow-button:not(.remove-animation) .icon-arrow .arrow-button__arrow.stroke-white {
  stroke: #ffffff;
}
.arrow-button--filled-orange.arrow-button:not(.remove-animation) .icon-hover svg .arrow-button__fill,
.arrow-button--filled-orange.arrow-button:not(.remove-animation) .icon-hover svg .arrow-button__border {
  fill: #ffffff;
}

/**
Arrow button position modifiers.
*/
.arrow-button--position-right {
  position: absolute;
  left: 0;
  bottom: -4rem;
}
@media screen and (min-width: 1024px) {
  .arrow-button--position-right {
    right: 0;
    left: unset;
    bottom: 0;
  }
}

/* Back button */
.arrow-button.back-button.arrow-button--unfilled-light .icon-container {
  transform: rotate(180deg);
  margin-right: 0.5rem;
}
.arrow-button.back-button.arrow-button--unfilled-light .arrow-button__text {
  font-family: "Founders Grotesk";
  font-size: inherit;
  color: #000000;
}
.arrow-button.back-button.arrow-button--unfilled-light .icon-idle svg .arrow-button__fill {
  fill: #ffffff;
  stroke: #000000;
}
.arrow-button.back-button.arrow-button--unfilled-light .icon-arrow .arrow-button__arrow {
  stroke: #000000;
}
.arrow-button.back-button.arrow-button--unfilled-light .icon-hover .arrow-button__fill {
  fill: #000000;
  stroke: #000000;
}
.arrow-button.back-button.arrow-button--unfilled-light:hover .icon-arrow .arrow-button__arrow {
  stroke: #ffffff;
}

/* Back button paragraph */
.paragraph.paragraph--type--back-button {
  padding-top: 6.25rem;
}

body.page-node-type-operational-tabs-page .back-button-group,
body.page-node-type-operational-page .back-button-group,
body.page-node-type-promotional-page .back-button-group,
body.page-node-type-alert .back-button-group,
body.page-node-type-profile .back-button-group {
  max-width: calc(990px + 3.75rem);
  margin: 0 auto;
  padding: 0 1.875rem;
}
body.page-node-type-operational-tabs-page .back-button-group .arrow-button a .icon-container,
body.page-node-type-operational-page .back-button-group .arrow-button a .icon-container,
body.page-node-type-promotional-page .back-button-group .arrow-button a .icon-container,
body.page-node-type-alert .back-button-group .arrow-button a .icon-container,
body.page-node-type-profile .back-button-group .arrow-button a .icon-container {
  margin-top: 2px;
}

/* Loading state handling */
.lds-ring {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -1px;
  top: -5.5px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.loading--autocomplete .lds-ring {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  margin: 2px;
  border: 8px solid var(--active-brand-color);
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--active-brand-color) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#search-api-form--2 .lds-ring,
#search-api-form--3 .lds-ring {
  top: -28px;
  left: -5px;
  transform: scale(0.875);
}

.chart-wrapper .lds-ring, .ag-theme-miax-global-pl .lds-ring {
  opacity: 1;
}
.chart-wrapper .lds-ring div, .ag-theme-miax-global-pl .lds-ring div {
  border: 8px solid #0052a8;
  border-color: #0052a8 transparent transparent transparent;
}