/*==================================
------------- FANCYBOX ------------
==================================*/
.fancybox-enabled {
    overflow: hidden;
  }
  
  .fancybox-enabled body {
    overflow: visible;
    -ms-touch-action: none;
    touch-action: none;
  }
  
  .fancybox-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99993;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  /* Make sure that the first one is on the top */
  .fancybox-container ~ .fancybox-container {
    z-index: 99992;
  }
  
  .fancybox-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0f0f11;
    opacity: 0;
    transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .fancybox-container--ready .fancybox-bg {
    opacity: 0.87;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  
  .fancybox-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    z-index: 99994;
    transition: opacity 0.2s;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    direction: ltr;
  }
  
  .fancybox-show-controls .fancybox-controls {
    opacity: 1;
  }
  
  .fancybox-infobar {
    display: none;
  }
  
  .fancybox-show-infobar .fancybox-infobar {
    display: inline-block;
    pointer-events: all;
  }
  
  .fancybox-infobar__body {
    display: inline-block;
    width: 70px;
    line-height: 44px;
    font-size: 13px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-align: center;
    color: #ddd;
    background-color: rgba(30, 30, 30, 0.7);
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: subpixel-antialiased;
  }
  
  .fancybox-buttons {
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: all;
  }
  
  .fancybox-show-buttons .fancybox-buttons {
    display: block;
  }
  
  .fancybox-slider-wrap {
    overflow: hidden;
    direction: ltr;
  }
  
  .fancybox-slider-wrap,
  .fancybox-slider {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    z-index: 99993;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
  }
  
  .fancybox-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    outline: none;
    white-space: normal;
    box-sizing: border-box;
    text-align: center;
    z-index: 99994;
    -webkit-overflow-scrolling: touch;
  }
  
  .fancybox-slide::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0;
  }
  
  .fancybox-slide > * {
    display: inline-block;
    position: relative;
    padding: 24px;
    margin: 44px 0 44px;
    border-width: 0;
    vertical-align: middle;
    text-align: left;
    background-color: #fff;
    overflow: auto;
    box-sizing: border-box;
  }
  
  .fancybox-slide--image {
    overflow: hidden;
  }
  
  .fancybox-slide--image::before {
    display: none;
  }
  
  .fancybox-content {
    display: inline-block;
    position: relative;
    margin: 44px auto;
    padding: 0;
    border: 0;
    width: 80%;
    height: calc(100% - 88px);
    vertical-align: middle;
    line-height: normal;
    text-align: left;
    white-space: normal;
    outline: none;
    font-size: 16px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
  }
  
  .fancybox-iframe {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    width: 100%;
    height: 100%;
    background: #fff;
  }
  
  .fancybox-slide--video .fancybox-content,
  .fancybox-slide--video .fancybox-iframe {
    background: transparent;
  }
  
  .fancybox-slide--no-padding > * {
    padding: 0;
  }
  
  .fancybox-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    border: 0;
    z-index: 99995;
    background: transparent;
    cursor: default;
    overflow: visible;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .fancybox-image,
  .fancybox-spaceball {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    max-width: none;
    max-height: none;
    background: transparent;
    background-size: 100% 100%;
  }
  
  .fancybox-controls--canzoomOut .fancybox-placeholder {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
  }
  
  .fancybox-controls--canzoomIn .fancybox-placeholder {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
  
  .fancybox-controls--canGrab .fancybox-placeholder {
    cursor: -webkit-grab;
    cursor: grab;
  }
  
  .fancybox-controls--isGrabbing .fancybox-placeholder {
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }
  
  .fancybox-spaceball {
    z-index: 1;
  }
  
  .fancybox-tmp {
    position: absolute;
    top: -9999px;
    left: -9999px;
    visibility: hidden;
  }
  
  .fancybox-error {
    position: absolute;
    margin: 0;
    padding: 40px;
    top: 50%;
    left: 50%;
    width: 380px;
    max-width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    cursor: default;
  }
  
  .fancybox-error p {
    margin: 0;
    padding: 0;
    color: #444;
    font: 16px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
  
  .fancybox-close-small {
    position: absolute;
    top: 4px;
    right: 4px;
    padding: 0;
    margin: 0;
    width: 30px;
    height: 30px;
    font: 21px/1 Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #888;
    font-weight: 300;
    text-align: center;
    border-radius: 50%;
    border-width: 0;
    cursor: pointer;
    background: #fff;
    transition: background 0.2s;
    box-sizing: border-box;
    z-index: 2;
  }
  
  .fancybox-slide--video .fancybox-close-small {
    top: -36px;
    right: -36px;
    background: transparent;
  }
  
  .fancybox-close-small:hover {
    color: #555;
    background: #eee;
  }
  
  /* Caption */
  .fancybox-caption-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 30px 0 30px;
    z-index: 99998;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-sizing: border-box;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
  }
  
  .fancybox-show-caption .fancybox-caption-wrap {
    opacity: 1;
  }
  
  .fancybox-caption {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #fff;
    line-height: 20px;
    -webkit-text-size-adjust: none;
  }
  
  .fancybox-caption a,
  .fancybox-caption button {
    pointer-events: all;
  }
  
  .fancybox-caption a {
    color: #fff;
    text-decoration: underline;
  }
  
  /* Buttons */
  .fancybox-button {
    display: inline-block;
    position: relative;
    width: 44px;
    height: 44px;
    line-height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    background: transparent;
    color: #fff;
    box-sizing: border-box;
    vertical-align: top;
    outline: none;
  }
  
  .fancybox-button--disabled {
    cursor: default;
    pointer-events: none;
  }
  
  .fancybox-infobar__body,
  .fancybox-button {
    background: rgba(30, 30, 30, 0.6);
  }
  
  .fancybox-button:hover {
    background: rgba(0, 0, 0, 0.8);
  }
  
  .fancybox-button::before,
  .fancybox-button::after {
    content: "";
    pointer-events: none;
    position: absolute;
    border-color: #fff;
    background-color: currentColor;
    color: currentColor;
    opacity: 0.9;
    box-sizing: border-box;
    display: inline-block;
  }
  
  .fancybox-button--disabled::before,
  .fancybox-button--disabled::after {
    opacity: 0.5;
  }
  
  .fancybox-button--left::after {
    left: 20px;
    top: 18px;
    width: 6px;
    height: 6px;
    background: transparent;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  
  .fancybox-button--right::after {
    right: 20px;
    top: 18px;
    width: 6px;
    height: 6px;
    background: transparent;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .fancybox-button--left {
    border-bottom-left-radius: 5px;
  }
  
  .fancybox-button--right {
    border-bottom-right-radius: 5px;
  }
  
  .fancybox-button--close {
    float: right;
  }
  
  .fancybox-button--close::before,
  .fancybox-button--close::after {
    content: "";
    display: inline-block;
    position: absolute;
    height: 2px;
    width: 16px;
    top: calc(50% - 1px);
    left: calc(50% - 8px);
  }
  
  .fancybox-button--close::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .fancybox-button--close::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  /* Loading spinner */
  .fancybox-loading {
    border: 6px solid rgba(100, 100, 100, 0.4);
    border-top: 6px solid rgba(255, 255, 255, 0.6);
    border-radius: 100%;
    height: 50px;
    width: 50px;
    -webkit-animation: fancybox-rotate 0.8s infinite linear;
    animation: fancybox-rotate 0.8s infinite linear;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    z-index: 99999;
  }
  
  @-webkit-keyframes fancybox-rotate {
    from {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(359deg);
      transform: rotate(359deg);
    }
  }
  @keyframes fancybox-rotate {
    from {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    to {
      -webkit-transform: rotate(359deg);
      transform: rotate(359deg);
    }
  }
  /* Styling for Small-Screen Devices */
  @media all and (max-width: 800px) {
    .fancybox-controls {
      text-align: left;
    }
  
    .fancybox-button--left,
  .fancybox-button--right,
  .fancybox-buttons button:not(.fancybox-button--close) {
      display: none !important;
    }
  
    .fancybox-caption {
      padding: 20px 0;
      margin: 0;
    }
  }
  /* Fullscreen  */
  .fancybox-button--fullscreen::before {
    width: 15px;
    height: 11px;
    left: 15px;
    top: 16px;
    border: 2px solid;
    background: none;
  }
  
  /* Slideshow button */
  .fancybox-button--play::before {
    top: 16px;
    left: 18px;
    width: 0;
    height: 0;
    border-top: 6px inset transparent;
    border-bottom: 6px inset transparent;
    border-left: 10px solid;
    border-radius: 1px;
    background: transparent;
  }
  
  .fancybox-button--pause::before {
    top: 16px;
    left: 18px;
    width: 7px;
    height: 11px;
    border-style: solid;
    border-width: 0 2px 0 2px;
    background: transparent;
  }
  
  /* Thumbs */
  .fancybox-button--thumbs span {
    font-size: 23px;
  }
  
  .fancybox-button--thumbs::before {
    top: 20px;
    left: 21px;
    width: 3px;
    height: 3px;
    box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, 0 0 0 32px inset, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0;
  }
  
  .fancybox-container--thumbs .fancybox-controls,
  .fancybox-container--thumbs .fancybox-slider-wrap,
  .fancybox-container--thumbs .fancybox-caption-wrap {
    right: 220px;
  }
  
  .fancybox-thumbs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 220px;
    margin: 0;
    padding: 5px 5px 0 0;
    background: #fff;
    z-index: 99993;
    word-break: normal;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  }
  
  .fancybox-thumbs > ul {
    list-style: none;
    position: absolute;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 0;
  }
  
  .fancybox-thumbs > ul > li {
    float: left;
    overflow: hidden;
    max-width: 50%;
    padding: 0;
    margin: 0;
    width: 105px;
    height: 75px;
    position: relative;
    cursor: pointer;
    outline: none;
    border: 5px solid #fff;
    border-top-width: 0;
    border-right-width: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    box-sizing: border-box;
  }
  
  li.fancybox-thumbs-loading {
    background: rgba(0, 0, 0, 0.1);
  }
  
  .fancybox-thumbs > ul > li > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .fancybox-thumbs > ul > li:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 2px;
    border: 4px solid #4ea7f9;
    z-index: 99991;
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
    opacity: 1;
  }
  
  /* Styling for Small-Screen Devices */
  @media all and (max-width: 800px) {
    .fancybox-thumbs {
      display: none !important;
    }
  
  .fancybox-container--thumbs .fancybox-controls,
  .fancybox-container--thumbs .fancybox-slider-wrap,
  .fancybox-container--thumbs .fancybox-caption-wrap {
      right: 0;
    }
  }
  /*==================================
   ----------- TOAST GRID -----------
  ==================================*/
  .grid {
    list-style: none;
    margin-left: -20px;
  }
  .grid--flex {
    margin-left: -20px;
    box-sizing: border-box;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .grid--flex-column {
    flex-direction: column;
  }
  .grid--flex_row-reverse {
    flex-direction: row-reverse;
  }
  .grid--flex_column-reverse {
    flex-direction: column-reverse;
  }
  .grid--flex_justify-start {
    justify-content: flex-start;
    text-align: start;
  }
  .grid--flex_justify-center {
    justify-content: center;
    text-align: center;
  }
  .grid--flex_justify-end {
    justify-content: flex-end;
    text-align: end;
  }
  .grid--flex_align-top {
    align-items: flex-start;
  }
  .grid--flex_align-middle {
    align-items: center;
  }
  .grid--flex_align-bottom {
    align-items: flex-end;
  }
  .grid--flex_space-around {
    justify-content: space-around;
  }
  .grid--flex_space-between {
    justify-content: space-between;
  }
  
  .grid--flex .grid_col {
    display: block;
    margin-right: 0;
    flex: 0 0 auto;
  }
  
  .grid_col--12-of-12, .grid_col--8-of-8, .grid_col--7-of-7, .grid_col--6-of-6, .grid_col--5-of-5, .grid_col--4-of-4, .grid_col--3-of-3, .grid_col--2-of-2, .grid_col--1-of-1 {
    width: 100%;
  }
  
  .grid_col--6-of-12, .grid_col--4-of-8, .grid_col--3-of-6, .grid_col--2-of-4, .grid_col--1-of-2 {
    width: 50%;
  }
  
  .grid_col--4-of-12, .grid_col--2-of-6, .grid_col--1-of-3 {
    width: 33.3333333333%;
  }
  
  .grid_col--8-of-12, .grid_col--4-of-6, .grid_col--2-of-3 {
    width: 66.6666666667%;
  }
  
  .grid_col--3-of-12, .grid_col--2-of-8, .grid_col--1-of-4 {
    width: 25%;
  }
  
  .grid_col--9-of-12, .grid_col--6-of-8, .grid_col--3-of-4 {
    width: 75%;
  }
  
  .grid--flex .grid_col--12-of-12, .grid--flex .grid_col--8-of-8, .grid--flex .grid_col--7-of-7, .grid--flex .grid_col--6-of-6, .grid--flex .grid_col--5-of-5, .grid--flex .grid_col--4-of-4, .grid--flex .grid_col--3-of-3, .grid--flex .grid_col--2-of-2, .grid--flex .grid_col--1-of-1 {
    width: auto;
    flex-basis: 100%;
    max-width: 100%;
  }
  
  .grid--flex .grid_col--6-of-12, .grid--flex .grid_col--4-of-8, .grid--flex .grid_col--3-of-6, .grid--flex .grid_col--2-of-4, .grid--flex .grid_col--1-of-2 {
    width: auto;
    flex-basis: 50%;
    max-width: 50%;
  }
  
  .grid--flex .grid_col--4-of-12, .grid--flex .grid_col--2-of-6, .grid--flex .grid_col--1-of-3 {
    width: auto;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  
  .grid--flex .grid_col--8-of-12, .grid--flex .grid_col--4-of-6, .grid--flex .grid_col--2-of-3 {
    width: auto;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  
  .grid--flex .grid_col--3-of-12, .grid--flex .grid_col--2-of-8, .grid--flex .grid_col--1-of-4 {
    width: auto;
    flex-basis: 25%;
    max-width: 25%;
  }
  
  .grid--flex .grid_col--9-of-12, .grid--flex .grid_col--6-of-8, .grid--flex .grid_col--3-of-4 {
    width: auto;
    flex-basis: 75%;
    max-width: 75%;
  }
  
  .grid_col--push-12-of-12, .grid_col--push-8-of-8, .grid_col--push-7-of-7, .grid_col--push-6-of-6, .grid_col--push-5-of-5, .grid_col--push-4-of-4, .grid_col--push-3-of-3, .grid_col--push-2-of-2, .grid_col--push-1-of-1 {
    margin-left: 100%;
  }
  
  .grid_col--push-6-of-12, .grid_col--push-4-of-8, .grid_col--push-3-of-6, .grid_col--push-2-of-4, .grid_col--push-1-of-2 {
    margin-left: 50%;
  }
  
  .grid_col--push-4-of-12, .grid_col--push-2-of-6, .grid_col--push-1-of-3 {
    margin-left: 33.3333333333%;
  }
  
  .grid_col--push-8-of-12, .grid_col--push-4-of-6, .grid_col--push-2-of-3 {
    margin-left: 66.6666666667%;
  }
  
  .grid_col--push-3-of-12, .grid_col--push-2-of-8, .grid_col--push-1-of-4 {
    margin-left: 25%;
  }
  
  .grid_col--push-9-of-12, .grid_col--push-6-of-8, .grid_col--push-3-of-4 {
    margin-left: 75%;
  }
  
  .grid_col--pull-12-of-12, .grid_col--pull-8-of-8, .grid_col--pull-7-of-7, .grid_col--pull-6-of-6, .grid_col--pull-5-of-5, .grid_col--pull-4-of-4, .grid_col--pull-3-of-3, .grid_col--pull-2-of-2, .grid_col--pull-1-of-1 {
    margin-left: -100%;
  }
  
  .grid_col--pull-6-of-12, .grid_col--pull-4-of-8, .grid_col--pull-3-of-6, .grid_col--pull-2-of-4, .grid_col--pull-1-of-2 {
    margin-left: -50%;
  }
  
  .grid_col--pull-4-of-12, .grid_col--pull-2-of-6, .grid_col--pull-1-of-3 {
    margin-left: -33.3333333333%;
  }
  
  .grid_col--pull-8-of-12, .grid_col--pull-4-of-6, .grid_col--pull-2-of-3 {
    margin-left: -66.6666666667%;
  }
  
  .grid_col--pull-3-of-12, .grid_col--pull-2-of-8, .grid_col--pull-1-of-4 {
    margin-left: -25%;
  }
  
  .grid_col--pull-9-of-12, .grid_col--pull-6-of-8, .grid_col--pull-3-of-4 {
    margin-left: -75%;
  }
  
  .grid_col--1-of-5 {
    width: 20%;
  }
  
  .grid--flex .grid_col--1-of-5 {
    width: auto;
    flex-basis: 20%;
    max-width: 20%;
  }
  
  .grid_col--push-1-of-5 {
    margin-left: 20%;
  }
  
  .grid_col--pull-1-of-5 {
    margin-left: -20%;
  }
  
  .grid_col--2-of-5 {
    width: 40%;
  }
  
  .grid--flex .grid_col--2-of-5 {
    width: auto;
    flex-basis: 40%;
    max-width: 40%;
  }
  
  .grid_col--push-2-of-5 {
    margin-left: 40%;
  }
  
  .grid_col--pull-2-of-5 {
    margin-left: -40%;
  }
  
  .grid_col--3-of-5 {
    width: 60%;
  }
  
  .grid--flex .grid_col--3-of-5 {
    width: auto;
    flex-basis: 60%;
    max-width: 60%;
  }
  
  .grid_col--push-3-of-5 {
    margin-left: 60%;
  }
  
  .grid_col--pull-3-of-5 {
    margin-left: -60%;
  }
  
  .grid_col--4-of-5 {
    width: 80%;
  }
  
  .grid--flex .grid_col--4-of-5 {
    width: auto;
    flex-basis: 80%;
    max-width: 80%;
  }
  
  .grid_col--push-4-of-5 {
    margin-left: 80%;
  }
  
  .grid_col--pull-4-of-5 {
    margin-left: -80%;
  }
  
  .grid_col--1-of-6 {
    width: 16.6666666667%;
  }
  
  .grid--flex .grid_col--1-of-6 {
    width: auto;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  
  .grid_col--push-1-of-6 {
    margin-left: 16.6666666667%;
  }
  
  .grid_col--pull-1-of-6 {
    margin-left: -16.6666666667%;
  }
  
  .grid_col--5-of-6 {
    width: 83.3333333333%;
  }
  
  .grid--flex .grid_col--5-of-6 {
    width: auto;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  
  .grid_col--push-5-of-6 {
    margin-left: 83.3333333333%;
  }
  
  .grid_col--pull-5-of-6 {
    margin-left: -83.3333333333%;
  }
  
  .grid_col--1-of-7 {
    width: 14.2857142857%;
  }
  
  .grid--flex .grid_col--1-of-7 {
    width: auto;
    flex-basis: 14.2857142857%;
    max-width: 14.2857142857%;
  }
  
  .grid_col--push-1-of-7 {
    margin-left: 14.2857142857%;
  }
  
  .grid_col--pull-1-of-7 {
    margin-left: -14.2857142857%;
  }
  
  .grid_col--2-of-7 {
    width: 28.5714285714%;
  }
  
  .grid--flex .grid_col--2-of-7 {
    width: auto;
    flex-basis: 28.5714285714%;
    max-width: 28.5714285714%;
  }
  
  .grid_col--push-2-of-7 {
    margin-left: 28.5714285714%;
  }
  
  .grid_col--pull-2-of-7 {
    margin-left: -28.5714285714%;
  }
  
  .grid_col--3-of-7 {
    width: 42.8571428571%;
  }
  
  .grid--flex .grid_col--3-of-7 {
    width: auto;
    flex-basis: 42.8571428571%;
    max-width: 42.8571428571%;
  }
  
  .grid_col--push-3-of-7 {
    margin-left: 42.8571428571%;
  }
  
  .grid_col--pull-3-of-7 {
    margin-left: -42.8571428571%;
  }
  
  .grid_col--4-of-7 {
    width: 57.1428571429%;
  }
  
  .grid--flex .grid_col--4-of-7 {
    width: auto;
    flex-basis: 57.1428571429%;
    max-width: 57.1428571429%;
  }
  
  .grid_col--push-4-of-7 {
    margin-left: 57.1428571429%;
  }
  
  .grid_col--pull-4-of-7 {
    margin-left: -57.1428571429%;
  }
  
  .grid_col--5-of-7 {
    width: 71.4285714286%;
  }
  
  .grid--flex .grid_col--5-of-7 {
    width: auto;
    flex-basis: 71.4285714286%;
    max-width: 71.4285714286%;
  }
  
  .grid_col--push-5-of-7 {
    margin-left: 71.4285714286%;
  }
  
  .grid_col--pull-5-of-7 {
    margin-left: -71.4285714286%;
  }
  
  .grid_col--6-of-7 {
    width: 85.7142857143%;
  }
  
  .grid--flex .grid_col--6-of-7 {
    width: auto;
    flex-basis: 85.7142857143%;
    max-width: 85.7142857143%;
  }
  
  .grid_col--push-6-of-7 {
    margin-left: 85.7142857143%;
  }
  
  .grid_col--pull-6-of-7 {
    margin-left: -85.7142857143%;
  }
  
  .grid_col--1-of-8 {
    width: 12.5%;
  }
  
  .grid--flex .grid_col--1-of-8 {
    width: auto;
    flex-basis: 12.5%;
    max-width: 12.5%;
  }
  
  .grid_col--push-1-of-8 {
    margin-left: 12.5%;
  }
  
  .grid_col--pull-1-of-8 {
    margin-left: -12.5%;
  }
  
  .grid_col--3-of-8 {
    width: 37.5%;
  }
  
  .grid--flex .grid_col--3-of-8 {
    width: auto;
    flex-basis: 37.5%;
    max-width: 37.5%;
  }
  
  .grid_col--push-3-of-8 {
    margin-left: 37.5%;
  }
  
  .grid_col--pull-3-of-8 {
    margin-left: -37.5%;
  }
  
  .grid_col--5-of-8 {
    width: 62.5%;
  }
  
  .grid--flex .grid_col--5-of-8 {
    width: auto;
    flex-basis: 62.5%;
    max-width: 62.5%;
  }
  
  .grid_col--push-5-of-8 {
    margin-left: 62.5%;
  }
  
  .grid_col--pull-5-of-8 {
    margin-left: -62.5%;
  }
  
  .grid_col--7-of-8 {
    width: 87.5%;
  }
  
  .grid--flex .grid_col--7-of-8 {
    width: auto;
    flex-basis: 87.5%;
    max-width: 87.5%;
  }
  
  .grid_col--push-7-of-8 {
    margin-left: 87.5%;
  }
  
  .grid_col--pull-7-of-8 {
    margin-left: -87.5%;
  }
  
  .grid_col--1-of-12 {
    width: 8.3333333333%;
  }
  
  .grid--flex .grid_col--1-of-12 {
    width: auto;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  
  .grid_col--push-1-of-12 {
    margin-left: 8.3333333333%;
  }
  
  .grid_col--pull-1-of-12 {
    margin-left: -8.3333333333%;
  }
  
  .grid_col--2-of-12 {
    width: 16.6666666667%;
  }
  
  .grid--flex .grid_col--2-of-12 {
    width: auto;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  
  .grid_col--push-2-of-12 {
    margin-left: 16.6666666667%;
  }
  
  .grid_col--pull-2-of-12 {
    margin-left: -16.6666666667%;
  }
  
  .grid_col--5-of-12 {
    width: 41.6666666667%;
  }
  
  .grid--flex .grid_col--5-of-12 {
    width: auto;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  
  .grid_col--push-5-of-12 {
    margin-left: 41.6666666667%;
  }
  
  .grid_col--pull-5-of-12 {
    margin-left: -41.6666666667%;
  }
  
  .grid_col--7-of-12 {
    width: 58.3333333333%;
  }
  
  .grid--flex .grid_col--7-of-12 {
    width: auto;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  
  .grid_col--push-7-of-12 {
    margin-left: 58.3333333333%;
  }
  
  .grid_col--pull-7-of-12 {
    margin-left: -58.3333333333%;
  }
  
  .grid_col--10-of-12 {
    width: 83.3333333333%;
  }
  
  .grid--flex .grid_col--10-of-12 {
    width: auto;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  
  .grid_col--push-10-of-12 {
    margin-left: 83.3333333333%;
  }
  
  .grid_col--pull-10-of-12 {
    margin-left: -83.3333333333%;
  }
  
  .grid_col--11-of-12 {
    width: 91.6666666667%;
  }
  
  .grid--flex .grid_col--11-of-12 {
    width: auto;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  
  .grid_col--push-11-of-12 {
    margin-left: 91.6666666667%;
  }
  
  .grid_col--pull-11-of-12 {
    margin-left: -91.6666666667%;
  }
  
  .grid_col {
    box-sizing: border-box;
    display: inline-block;
    margin-right: -0.25em;
    min-height: 1px;
    padding-left: 20px;
    vertical-align: top;
  }
  @media (max-width: 480px) {
    .grid_col {
      display: block;
      margin-left: 0;
      margin-right: 0;
      width: 100%;
    }
  }
  @media (max-width: 1200px) and (min-width: 1025px) {
    .grid_col[class*=grid_col--lg-] {
      display: inline-block;
      margin-right: -0.24em;
    }
    .grid--flex .grid_col[class*=grid_col--lg-] {
      display: block;
      margin-right: 0;
    }
  
    .grid_col.grid_col--lg-1-of-1 {
      width: 100%;
    }
    .grid--flex .grid_col.grid_col--lg-1-of-1 {
      width: auto;
      flex-basis: 100%;
      max-width: 100%;
    }
  
    .grid_col.grid_col--lg-1-of-2, .grid_col.grid_col--lg-2-of-4 {
      width: 50%;
    }
    .grid--flex .grid_col.grid_col--lg-1-of-2, .grid--flex .grid_col.grid_col--lg-2-of-4 {
      width: auto;
      flex-basis: 50%;
      max-width: 50%;
    }
  
    .grid_col.grid_col--lg-1-of-3 {
      width: 33.3333333333%;
    }
    .grid--flex .grid_col.grid_col--lg-1-of-3 {
      width: auto;
      flex-basis: 33.3333333333%;
      max-width: 33.3333333333%;
    }
  
    .grid_col.grid_col--lg-2-of-3 {
      width: 66.6666666667%;
    }
    .grid--flex .grid_col.grid_col--lg-2-of-3 {
      width: auto;
      flex-basis: 66.6666666667%;
      max-width: 66.6666666667%;
    }
  
    .grid_col.grid_col--lg-1-of-4 {
      width: 25%;
    }
    .grid--flex .grid_col.grid_col--lg-1-of-4 {
      width: auto;
      flex-basis: 25%;
      max-width: 25%;
    }
  
    .grid_col.grid_col--lg-3-of-4 {
      width: 75%;
    }
    .grid--flex .grid_col.grid_col--lg-3-of-4 {
      width: auto;
      flex-basis: 75%;
      max-width: 75%;
    }
  }
  @media (max-width: 1024px) and (min-width: 769px) {
    .grid_col[class*=grid_col--lc-] {
      display: inline-block;
      margin-right: -0.24em;
    }
    .grid--flex .grid_col[class*=grid_col--lc-] {
      display: block;
      margin-right: 0;
    }
  
    .grid_col.grid_col--lc-1-of-1 {
      width: 100%;
    }
    .grid--flex .grid_col.grid_col--lc-1-of-1 {
      width: auto;
      flex-basis: 100%;
      max-width: 100%;
    }
  
    .grid_col.grid_col--lc-1-of-2, .grid_col.grid_col--lc-2-of-4 {
      width: 50%;
    }
    .grid--flex .grid_col.grid_col--lc-1-of-2, .grid--flex .grid_col.grid_col--lc-2-of-4 {
      width: auto;
      flex-basis: 50%;
      max-width: 50%;
    }
  
    .grid_col.grid_col--lc-1-of-3 {
      width: 33.3333333333%;
    }
    .grid--flex .grid_col.grid_col--lc-1-of-3 {
      width: auto;
      flex-basis: 33.3333333333%;
      max-width: 33.3333333333%;
    }
  
    .grid_col.grid_col--lc-2-of-3 {
      width: 66.6666666667%;
    }
    .grid--flex .grid_col.grid_col--lc-2-of-3 {
      width: auto;
      flex-basis: 66.6666666667%;
      max-width: 66.6666666667%;
    }
  
    .grid_col.grid_col--lc-1-of-4 {
      width: 25%;
    }
    .grid--flex .grid_col.grid_col--lc-1-of-4 {
      width: auto;
      flex-basis: 25%;
      max-width: 25%;
    }
  
    .grid_col.grid_col--lc-3-of-4 {
      width: 75%;
    }
    .grid--flex .grid_col.grid_col--lc-3-of-4 {
      width: auto;
      flex-basis: 75%;
      max-width: 75%;
    }
  }
  @media (max-width: 768px) and (min-width: 481px) {
    .grid_col[class*=grid_col--md-] {
      display: inline-block;
      margin-right: -0.24em;
    }
    .grid--flex .grid_col[class*=grid_col--md-] {
      display: block;
      margin-right: 0;
    }
  
    .grid_col.grid_col--md-1-of-1 {
      width: 100%;
    }
    .grid--flex .grid_col.grid_col--md-1-of-1 {
      width: auto;
      flex-basis: 100%;
      max-width: 100%;
    }
  
    .grid_col.grid_col--md-1-of-2, .grid_col.grid_col--md-2-of-4 {
      width: 50%;
    }
    .grid--flex .grid_col.grid_col--md-1-of-2, .grid--flex .grid_col.grid_col--md-2-of-4 {
      width: auto;
      flex-basis: 50%;
      max-width: 50%;
    }
  
    .grid_col.grid_col--md-1-of-3 {
      width: 33.3333333333%;
    }
    .grid--flex .grid_col.grid_col--md-1-of-3 {
      width: auto;
      flex-basis: 33.3333333333%;
      max-width: 33.3333333333%;
    }
  
    .grid_col.grid_col--md-2-of-3 {
      width: 66.6666666667%;
    }
    .grid--flex .grid_col.grid_col--md-2-of-3 {
      width: auto;
      flex-basis: 66.6666666667%;
      max-width: 66.6666666667%;
    }
  
    .grid_col.grid_col--md-1-of-4 {
      width: 25%;
    }
    .grid--flex .grid_col.grid_col--md-1-of-4 {
      width: auto;
      flex-basis: 25%;
      max-width: 25%;
    }
  
    .grid_col.grid_col--md-3-of-4 {
      width: 75%;
    }
    .grid--flex .grid_col.grid_col--md-3-of-4 {
      width: auto;
      flex-basis: 75%;
      max-width: 75%;
    }
  }
  @media (max-width: 480px) {
    .grid_col[class*=grid_col--sm-] {
      display: inline-block;
      margin-right: -0.24em;
    }
    .grid--flex .grid_col[class*=grid_col--sm-] {
      display: block;
      margin-right: 0;
    }
  
    .grid_col.grid_col--sm-1-of-2, .grid_col.grid_col--sm-2-of-4 {
      width: 50%;
    }
    .grid--flex .grid_col.grid_col--sm-1-of-2, .grid--flex .grid_col.grid_col--sm-2-of-4 {
      width: auto;
      flex-basis: 50%;
      max-width: 50%;
    }
  
    .grid_col.grid_col--sm-1-of-3 {
      width: 33.3333333333%;
    }
    .grid--flex .grid_col.grid_col--sm-1-of-3 {
      width: auto;
      flex-basis: 33.3333333333%;
      max-width: 33.3333333333%;
    }
  
    .grid_col.grid_col--sm-2-of-3 {
      width: 66.6666666667%;
    }
    .grid--flex .grid_col.grid_col--sm-2-of-3 {
      width: auto;
      flex-basis: 66.6666666667%;
      max-width: 66.6666666667%;
    }
  
    .grid_col.grid_col--sm-1-of-4 {
      width: 25%;
    }
    .grid--flex .grid_col.grid_col--sm-1-of-4 {
      width: auto;
      flex-basis: 25%;
      max-width: 25%;
    }
  
    .grid_col.grid_col--sm-3-of-4 {
      width: 75%;
    }
    .grid--flex .grid_col.grid_col--sm-3-of-4 {
      width: auto;
      flex-basis: 75%;
      max-width: 75%;
    }
  
    .grid--flex .grid_col {
      width: auto;
      flex-basis: 100%;
      max-width: 100%;
    }
  }
  
  .grid_col--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  .grid_col--d-first {
    float: left;
  }
  .grid--flex .grid_col--d-first {
    float: none;
    order: -1;
  }
  
  .grid_col--d-last {
    float: right;
  }
  .grid--flex .grid_col--d-last {
    float: none;
    order: 1;
  }
  
  .grid--no-gutter {
    margin-left: 0;
  }
  .grid--no-gutter .grid_col {
    padding-left: 0;
  }
  .grid--no-gutter .grid_col--span-all {
    margin-left: 0;
    width: 100%;
  }
  
  .grid--gutter {
    margin-left: 20px;
  }
  .grid--gutter .grid_col {
    padding-left: 20px;
  }
  .grid--gutter-40 {
    margin-left: -40px;
  }
  .grid--gutter-40 .grid_col {
    padding-left: 40px;
  }
  
  .grid--no-space .grid_col {
    margin-right: 0;
  }
  
  .grid_col--ab {
    vertical-align: bottom;
  }
  
  .grid_col--am {
    vertical-align: middle;
  }
  
  /*- Committee Composition Widget -*/
  @media only screen and (max-width: 768px) {
    .module-committee .module_container--desktop {
      display: none;
    }
  }
  .module-committee .module_container--tablet {
    display: none;
  }
  @media only screen and (max-width: 768px) {
    .module-committee .module_container--tablet {
      display: block;
    }
  }
  .module-committee .module_header {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: normal;
    color: #6f3a8f;
  }
  .module-committee .module_item {
    padding: 0;
  }
  .module-committee .module_item ~ .module_item {
    border: 0;
  }
  .module-committee .module_item:nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
  }
  .module-committee .module_items-container {
    padding: 15px;
    margin: 0 0 15px 0;
    background: #f1f1f1;
  }
  .module-committee .grid_col {
    padding: 20px 15px;
    text-align: center;
  }
  .module-committee .grid_col:first-child {
    text-align: left;
  }
  .module-committee .module_container--tablet .grid_col.module-committee_name {
    padding: 10px 0;
  }
  .module-committee .module_container--tablet .grid_col.module-committee_icon {
    padding: 10px 0 10px 25px;
  }
  .module-committee .module_container--tablet .module_header {
    border: 0 none;
  }
  .module-committee_category {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .module-committee_category:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .module-committee_category .module_item:nth-child(even) {
    background: transparent;
  }
  .module-committee_category.js--active .module_header {
    color: #2296bc;
  }
  .module-committee_category.js--active .module_header i:before {
    content: "\edba";
  }
  .module-committee_custom-role {
    margin-left: 5px;
  }
  .module-committee_bio {
    padding: 0 15px 20px;
    text-align: left;
  }
  .module-committee_bio p {
    margin: 0;
  }
  .module-committee_bio p:not(:last-of-type) {
    margin-bottom: 16px;
  }
  .module-committee_legend-container {
    padding: 20px 15px;
  }
  .module-committee_legend {
    display: inline-block;
    margin: 10px 20px!important;
  }
  .module-committee_legend i {
    margin-right: 5px;
  }
  
  .fancybox-slide--form .fancybox-content {
      margin: 10px auto;
      max-width: 1000px;
      width: 80% !important;
      height: calc(100% - 20px) !important;
      overflow: visible;
  }
  
  .js--hidden {
      display: none !important;
  }
  
  .js--visible {
      display: block !important;
  }
  .slider-bg{
          background-size: cover !important; 
  }
  
  .slick-prev,.slick-next {
      background-size: 100%  !important; 
      width: 30px  !important; 
      height: 30px  !important; 
  }
  .slick-prev {
      left: -35px  !important; 
      background-image: url(../images/irw/prev-btn.png)  !important; 
  }
  .slick-next {
      right: -35px !important; 
      background-image: url(../images/irw/next-btn.png) !important; 
  }
  .sliderArea #block-widget-inner{
  margin-top: 20px;
  }
  .stock-quote {
        padding-top: 0;
  }
   .stock-quote .stock-quote-inner {
    margin-top: 20px;
   }
  .slick-next:before,.slick-prev:before {
      display: none;
  }
  .slick-prev:hover,.slick-prev:focus,.slick-next:hover,.slick-next:focus {
      opacity: 1;
  }
  .slick-dots li button {
      border: 0;
      display: block;
      height: 15px;
      width: 15px;
      outline: none;
      line-height: 0;
      font-size: 0;
      color: transparent;
      padding: 5px;
      cursor: pointer;
      background-color: transparent;
      border: 2px solid #000;
      border-radius: 50%;
  }
  .slick-dots {
      position: absolute;
      bottom: -35px;
      list-style: none;
      display: block;
      text-align: center;
      padding: 0;
      width: 100%;
  }
  .slick-dotted.slick-slider {
      margin-bottom: 20px;
  }
  
  #_ctrl0_ctl42_lblDate {
      display: none !important;
  }
  footer {
       background: transparent;
  }
  .irwODPerson .irwOfficerTitle{
      text-transform: capitalize !important;
  }
  #irwWrapper .irwCustomToggleFunction .year-tab .tab-title {
      font-weight: bold;
      padding: 0 15px;
  }
  
  #irwWrapper .irwCustomToggleFunction a.file-pdf::before {
      content: url(../images/irw/pdf-icon.png);
      vertical-align: middle;
      padding-right: 10px;
  }
  
  #irwWrapper .irwCustomToggleFunction a.file-html::before {
      content: url(../images/irw/html-icon.png);
      vertical-align: middle;
      padding-right: 10px;
  }
  #irwWrapper #stockInfo #irwsecurity {
      float: right;
      position: absolute !important;
      right: 25px !important;
      top: 5px !important;
  }
  @media (max-width: 480px){
  #irwWrapper #stockInfo #irwsecurity {
      clear: both  !important;
      float: none  !important;
      margin: 0 auto 10px  !important;
      position: relative  !important;
      right: 0  !important;
      top: 0  !important;
      width: 100%  !important;
  }
  }
  .footable-pagination-wrapper .divider{
      margin: 0px !important;
      border: 0px !important;
  }
  
  .footable-pagination-wrapper .footable-page{
      display: none !important;
  }
  .footable-pagination-wrapper .footable-page.visible{
      display: inline !important;
  }
  .footable-pagination-wrapper .label-default {
      background-color: transparent;
      color: #000;
      font-size: 16px;
  }
  #irwWrapper .footable-pagination-wrapper .pagination > * {
      margin: 0 !important;
  }
  #irwWrapper .footable-pagination-wrapper .pagination li a {
      margin: 2px;
  }
  #irwWrapper .footable-pagination-wrapper .footable-page.active a{
      color: #ffffff;
      background: #0073E6;
  }
  #irwWrapper .footable-pagination-wrapper .footable-page a:hover{
      color: #333;
      background-color: #ebebeb;
      border-color: #adadad;
  }
  #docsPanelResults .irwFilingAbstract{
      margin-bottom: 0px;
  }
  .footer-accordion .collapse {
      height: auto !important;
  }
  .module_container--tablet .irwMemberTable td{
      display: table-cell;
  }
  .PageNotFoundContainer h1.module_title {
      display: none;
  }
  .module_container.module_container--inner {
      margin-top: 40px;
  }
  .irwIRSearch .fa-search {
      right: 14px !important;
  }
  
  #irwWrapper .HasCustomFields .checkboxBoot input[type="checkbox"] {
      position: fixed;
      z-index: -1;
      top: -100%;
      left: -100%;
  }
  .module-news-details img {
      float: none !important;
  }

.module-news-details ul {
    margin: 0 0 10px 25px !important;
    
}
.module-news-details li {
    list-style: disc outside none !important;
}
.list-circle li {
    list-style: circle !important;
}
/* 00085685 */
.slider-bg {
    background: url('../images/irw/2021/spirit-banner.jpg') no-repeat center center !important;
    /* height: auto;
    background-size: cover;
    padding-bottom: 25px;
    border-bottom: 2px solid #ccc; */
}

/*   #00540418   */ 
.main_header-2023 {
    padding: 0;
}
.main_header-2023 > nav.navbar {
    width: 100%;
    border: none;
}


.main_header-2023 .navbar-spirit .navbar-nav {
    margin: 0;
}
.main_header-2023 .navbar-collapse.collapse::before, .main_header-2023 .navbar-collapse.collapse::after {
    display: none;
}
.main_header-2023 .navbar-spirit .navbar-nav>li>a {
    font-size: 1rem;
}


.main_header-2023 .navbar-nav li {
    padding: 4px 0;
}

.main_header-2023 .navbar-brand img {
    max-width: 98px;
    height: auto;
}

@media screen and (min-width: 1200px) {
    footer .container {
        width: 1200px;
    }
}

footer.main_footer {
    margin-top: 0px;
}
.main_footer .right-section h4, .main_footer .row {
    margin: 0;
}

.main_footer .footer-nav h4 {
    border: none;
}
.main_footer .right-section h4, .main_footer .row.app-section {
    padding-top: 0.6rem;
}

.main_footer .right-section .app-section img {
    width: auto;
    max-width: auto;
    height: 45px;
}
.main_footer .tagline {
    border-top: 1px solid #fff  
}
footer .inner_footer.container, .main_footer .row_no-pad > div[class*="col-"] {
    padding: 0;
}
.main_footer .footer-nav a {
    font-weight: 700;
    font-size: 0.9rem;
} 
.main_footer .footer-logo {
    max-width: 112px;
}
@media screen and (min-width: 1024px) {
    .main_header-2023 .navbar-nav_sub-nav ul {
        background-color: #fff;
        padding: 12px;
        border-radius: 12px;
        font-size: 0.8rem;
        text-align: center;
    }
    .main_header-2023 .navbar-nav_sub-nav ul::before {
        content: "";
        width: 20px;
        height: 20px;
        transform: rotate(45deg);
        display: inline-block;
        position: absolute;
        top: 2px;
        left: calc(50% - 10px);
        background-color: #fff;
    }
    .main_header-2023 .navbar-nav_sub-nav ul li:not(:first-child) {
        border-top: 1px solid #ccc;
    }
    .main_header-2023 .navbar-nav_sub-nav {
        position: absolute;
        top: 100%;
        left: 50%;
        padding-top: 12px;
        transform: translate(-50%);
        white-space: nowrap;
        z-index: 1;
    }
    .main_header-2023 .navbar-nav li:not(:hover) .navbar-nav_sub-nav, .main_header-2023 .navbar-nav li img {
        display: none;
    }
        .navbar-spirit.navbar-main .navbar-toggle {
        top: 0.5rem;
    }
    .main_header-2023 .navbar-collapse.collapse {
        display: flex !important;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    .header-logo--mobile {
        display: none;
    }
}
@media screen and (min-width: 768px) {

    .footer-accordion .toggler {
        border: none;
        padding: 1rem 0 0.75rem 0;
    }
    .main_footer .tagline .copyright {
        bottom: 10px;
    }
    .main_footer ul.social {
        margin: 1rem 0;
    }
}
@media screen and (max-width: 1023px) {
    a.module_button {
        color: #ffffff !important;
        background: #0073E6 !important;
        border-color: transparent;
        border-radius: 6px;
        padding: 5px 8px;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 700;
    }
    .navbar-spirit.navbar-main .navbar-toggle {
        display: block;
    }
    .main_header {
        background-color: transparent;
    }
    .main_header .navbar-header {
        padding: 0 10px; 
        width: 100%;
        margin: 0;
        background-color: #ffec00;
        float: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .navbar-header::before, .navbar-header::after, #mobile-collapse ul.nav > li.module-sign-in {
        display:none;
    }
    .has_suv-nav > a {
        position: relative;
    }
    .has_suv-nav > a::after {
        content: "\f078";
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        position: absolute;
        right: 0;
    }
    .has_suv-nav ul li a {
        padding-left: 20px;
        font-weight: 400;
        font-family: Source Sans Pro,Verdana,sans-serif;
        font-size: 0.9rem;
        color: #707070;
        letter-spacing: 1px;
        text-transform: none;        
    }
    .navbar-spirit .header-logo--desktop.navbar-brand {
        display: none;
    }
    .navbar-nav_sub-nav {
        display: none;
    }
    #mobile-collapse ul.nav > li {
        position: relative;
        display: block;
        float: none;
        padding: 15px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
  /*  #mobile-collapse ul.nav > li:not(:first-child) {
        
    }*/
    #mobile-collapse ul.nav > li a, .navbar-nav_sub-nav ul  {
        display: block;
    }
    #mobile-collapse ul.nav > li img {
            display: inline-block;
            margin: 0 15px 0 0;
            vertical-align: bottom;
    }
    #mobile-collapse ul.nav {
        float: none;
        width: 100%;
    }
    #mobile-collapse.collapse.navbar-collapse {
        margin-right: 0;
        margin-left: 0;
        background-color: #fff;
        border-bottom-left-radius: 20px;
    }
    #footer-accordion-2 .panel > .footer-nav {
        width: 100%;
    }
    .footer-accordion .toggler .fa-chevron-right {
        display: inline-block;
        transform: rotate(-90deg);
    }
    .navbar-spirit.navbar-main .navbar-toggle {
        display: block;
        width: 40px;
        height: 40px;
        position: relative;
    }
    .navbar-header > button.navbar-toggle:not(.collapsed) .icon-bar--middle {
        display: none;
    }
    .navbar-header > button.navbar-toggle:not(.collapsed) .icon-bar {
        transform-origin: center;
        transform: rotate(45deg);
    }
    .navbar-header > button.navbar-toggle:not(.collapsed) .icon-bar:last-child {
        transform-origin: center;
        transform: rotate(-45deg);
        margin-top: -3px;
    }
}
@media screen and (max-width: 767px) {

    .main_footer .tagline {
        text-align: center;
        border: none;
    }
    .footer-accordion .toggler {
        border-top: none;
        border-bottom: 1px solid white;
    }
    .main_footer .row.app-section {
        max-width: 400px;
        margin: 0 auto;
    }
    .navbar-spirit .navbar-collapse ul.navbar-nav {
        margin: 0;
    }
}
.corporate--header.corporate--header--fixed {
    position: fixed;
    width: 100%;
    z-index: 999;
    left: 0;
    top: 0;
}
#main-header {
    padding-top: 63px;
}

/*   /00540418   */ 

/* STARTS 00629766 */
.nirtable .views-field-field-nir-date {
    width: 145px; 
}
/* ENDS 00629766 */
