@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');

:root {
  --white: white;
  --light: #f4f4f4;
  --primary: #2AA3FB;
  --alt1: #2A71FB;
  --dark1: #00345A;
  --analog1: #0062A9;
  --analog2: #0D6975;
  --black: #333;

  --gradient1: linear-gradient(13.79deg, var(--alt1) -17.03%, var(--primary) 92.09%);


  --max-width: 1360px;
  --padding-heading-top: var(--padding-md);
  --padding-sm: 15px;
  --padding-md: 30px;
  --padding: var(--padding-md);

  --logo-width: 239px;
  --logo-height: 103px;

  --logo-width-mobile: calc(var(--logo-width) * .75);
  --logo-height-mobile: calc(var(--logo-height) * .75);

  --font-primary: 'Noto Sans', sans-serif;
  --font-secondary: 'Roboto', sans-serif;

  --aux-link-color: var(--white);
}

/* ==========================================================================
   Skin Specific Styles
   ========================================================================== */
   body {
     font-family: var(--font-primary);
     font-size: 14px;
     font-weight: 400;
     color: var(--black);
   }
   h1, .h1, .PageTitle {
     font-family: var(--font-primary);
     font-size: 48px;
     color: var(--black);
   }
   h2, .h2, .PanelTitle {
     line-height: 46px;
     font-family: var(--font-primary);
     font-size: 33px;
     font-weight: 500;
     color: var(--black);
   }
   h3, .h3, .SectionTitle {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
  }
   h4, .h4 .SectionLabel {
    line-height: 28px;
   }
   h4, .h4, .SectionLabel, .PanelField label, .PanelField .Label {
     font-family: var(--font-primary);
     font-size: 16px;
     font-weight: 500;
     color: inherit;
   }
   h5, .h5, .SectionLabelSmaller {
     font-family: var(--font-primary);
     font-size: inherit;
     font-weight: 500;
     color: var(--black);
   }
   h6, .h6 {
     font-family: var(--font-primary);
     font-size: inherit;
     color: var(--black);
   }
   a, a:hover, a:focus, a:active {
     color: inherit;
     text-decoration: none;
   }
   .container {
     max-width: var(--max-width);
   }
   .wrapper {
    background: #fcfcff;
  }
  
  @media (min-width: 992px) {
    .wrapper.col-on-right {
      background: linear-gradient(90deg, #fcfcff 50%, white 50%);
    }
    .wrapper .main-container {
      margin-bottom: 0;
    }
  }
  
  .main-container {
    padding: 0;
  }
  
  @media (max-width: 991px) {
    .col-secondary {
      border-top: 1px solid #dbdbdb;
      background: #ffffff;
    }
  }
  
  @media (min-width: 992px) {
    .has-secondary-col .body-container {
      grid-column-gap: 0px;
    }
    .has-secondary-col .body-container .col-primary {
      border-right: 1px solid #DBDBDB;
    }
  }
  
  body:not(.Wrapper-HomePage) .body-container > div {
    padding: 30px;
  }
  
  .col-primary {
    background: #fcfcff;
  }
  
  ::selection {
    background: #74cde5;
  }
  
  ::-moz-selection {
    background: #74cde5;
  }
  
  .readMore {
    text-decoration: none;
    font-weight: 500;
  }
  
  .readMore:after {
    display: inline-block;
    vertical-align: middle;
    content: '';
    width: 20px;
    height: 20px;
    background: #496DAD;
    -webkit-mask-image: url(images/arrows.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 18px 18px;
    margin-left: 10px;
    margin-top: -2px;
    transition: all 0.2s ease;
  }
  
  .readMore:hover, .readMore:focus, .readMore:active {
    text-decoration: none;
    color: #27A9CC;
  }
  
  .readMore:hover:after, .readMore:focus:after, .readMore:active:after {
    margin-left: 15px;
    background: #27A9CC;
  }
  
  h1 .readMore, h2 .readMore, h3 .readMore, h4 .readMore, h5 .readMore, h6 .readMore {
    font-size: 18px;
    display: block;
    line-height: 0;
  }
  
  @media (min-width: 992px) {
    h1 .readMore, h2 .readMore, h3 .readMore, h4 .readMore, h5 .readMore, h6 .readMore {
      display: inline-block;
      margin-left: 10px;
      line-height: inherit;
    }
  }
  
  h1.BigHeader, .h1.BigHeader {
    background-color: #4E937A;
    color: #ffffff;
  }
  
  .backToTop {
    background-image: none;
    width: 40px;
    height: 40px;
    transform: none;
    transition: all 0.2s ease;
  }
  
  .backToTop:after {
    display: block;
    content: '';
    background: #ffffff;
    width: 40px;
    height: 40px;
    -webkit-mask-image: url(images/auxIcons.svg#caret);
    -webkit-mask-size: 20px 20px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    transform: rotate(180deg);
  }
  
  .backToTop:hover {
    transform: scale(1.15);
    background: #4E937A;
  }

/* =====================================
  * Buttons
  * ===================================== 
  */
.btn,
.btn:hover,
.btn:focus,
.btn:active,
.TextButton,
.TextButton:hover,
.TextButton:focus,
.TextButton:active,
.RadUpload.RadUpload .ruButton,
.RadUpload.RadUpload .ruButton:hover,
.RadUpload.RadUpload .ruButton:focus,
.RadUpload.RadUpload .ruButton:active,
.RadUploadProgressArea.RadUploadProgressArea .ruButton,
.RadUploadProgressArea.RadUploadProgressArea .ruButton:hover,
.RadUploadProgressArea.RadUploadProgressArea .ruButton:focus,
.RadUploadProgressArea.RadUploadProgressArea .ruButton:active {
  padding: 12px 20px;
  border: 2px solid var(--primary);
  border-radius: 50px;
  background-color: transparent;
  font-family: var(--font-secondary);
  font-size: inherit;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
}

/* primary button */
.PrimaryButton,
.PrimaryButton:hover,
.PrimaryButton:focus,
.PrimaryButton:active,
.UsePrimaryButton .TextButton,
.UsePrimaryButton .TextButton:hover,
.UsePrimaryButton .TextButton:focus,
.UsePrimaryButton .TextButton:active,
.RadGrid input.PrimaryButton,
.RadGrid input.PrimaryButton:hover,
.RadGrid input.PrimaryButton:focus,
.RadGrid input.PrimaryButton:active {
  background-color: var(--primary);
  color: var(--white);
}  
  
.SmallButton,
.SmallButton:hover,
.SmallButton:active,
.SmallButton:focus,
.UseSmallButton .TextButton,
.UseSmallButton .TextButton:hover,
.UseSmallButton .TextButton:active,
.UseSmallButton .TextButton:focus {
    padding: 4px 12px;
    font-size: 10px;
  }
  
  .MediumButton,
  .MediumButton:hover,
  .MediumButton:active,
  .MediumButton:focus,
  .UseMediumButton .TextButton,
  .UseMediumButton .TextButton:hover,
  .UseMediumButton .TextButton:active,
  .UseMediumButton .TextButton:focus {
    padding: 24px;
    font-size: 18px;
  }
  
  .LargeButton,
  .LargeButton:hover,
  .LargeButton:active,
  .LargeButton:focus,
  .UseLargeButton .TextButton,
  .UseLargeButton .TextButton:hover,
  .UseLargeButton .TextButton:active,
  .UseLargeButton .TextButton:focus {
    padding: 36px;
    border-width: 3px;
    border-radius: 100px;
    font-size: 20px;
  }
  
  /*Alerts*/
  .Alerts ul.AlertSet {
    margin-bottom: 40px;
    text-align: left;
  }
  
  .Alerts .AlertItem {
    list-style: none;
    border: 1px solid #496DAD;
    margin-top: 15px !important;
    padding: 12px 10px;
    background-color: #f9fcff;
    border-radius: 4px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  }
  
  .Alerts .AlertItem:first-child {
    margin-top: 0 !important;
  }
  
  .AsiInformation,
  .AsiSuccess,
  .AsiWarning,
  .AsiError,
  .AsiValidation,
  .AsiValidationSummary,
  .AsiNeutral,
  .AsiImportant {
    border-radius: 4px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
  }
  
  .AsiInformation {
    border-color: #27A9CC;
    background-color: #d2f5ff;
  }
  
  .AsiSuccess {
    border-color: #4E937A;
    background-color: #e1f3ec;
  }
  
  .AsiWarning {
    border-color: #F17F29;
    background-color: #FFEEE3;
  }
  
  .AsiError {
    border-color: #A41623;
    background-color: #ffdadd;
  }
  
  .AsiValidation {
    border-color: #D63301;
    background-color: #FFCCBA;
  }
  
  .AsiImportant {
    border-color: #c74b49;
  }
  
  /*General slideshow styling*/
  .carousel-caption {
    text-shadow: none;
  }
  
  /*Separated image and caption slideshow*/
  .slideshow-banner .carousel-control {
    display: none;
  }
  
  .slideshow-banner .carousel-indicators {
    width: 50%;
    margin-left: 0;
    left: 0;
  }
  
  .slideshow-banner .carousel-inner.bg-img > .item {
    background-image: none !important;
  }
  
  .slideshow-banner .img {
    position: absolute;
    left: 50%;
    right: 0;
    height: 100%;
    background-size: cover;
    background-position: center;
  }
  
  .slideshow-banner.image-left .carousel-indicators {
    left: auto;
    right: 0;
  }
  
  .slideshow-banner.image-left .img {
    right: 50%;
    left: 0;
  }
  
  .slideshow-banner.image-left .caption-wrapper {
    left: auto;
    right: 0;
  }
  
  @media (min-width: 992px) {
    .slideshow-banner .caption-wrapper {
      display: flex;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 50%;
      background: #496DAD;
      justify-content: center;
      align-items: center;
    }
    .slideshow-banner .caption-wrapper .carousel-caption {
      width: 100%;
      left: auto;
      right: auto;
      top: auto;
      position: relative;
      padding: 10%;
    }
  }
  
  @media (max-width: 991px) {
    .slideshow-banner {
      height: auto !important;
    }
    .slideshow-banner .carousel-inner.bg-img > .item {
      height: auto !important;
    }
    .slideshow-banner .img {
      left: 0;
      top: auto;
      height: 200px;
      position: relative;
      width: 100%;
    }
    .slideshow-banner .carousel-caption {
      top: 0;
      transform: none;
      position: relative;
      left: 0;
      right: 0;
      background-color: #496DAD;
      padding: 30px;
    }
    .slideshow-banner .bg {
      display: flex;
      flex-wrap: wrap;
    }
    .slideshow-banner a.link {
      position: relative;
      display: flex;
      flex-wrap: wrap-reverse;
    }
    .slideshow-banner .carousel-indicators {
      width: 100%;
      bottom: 0;
    }
  }
  
  .StandardPanel, .ContentBorder, h2,
  .PanelHead.Distinguish, .TitleBarCaption,
  div.ShowFieldset fieldset,
  .panel-border, .panel-heading.Distinguish {
    border: none;
  }
  
  .ProgressTracker2 .ProgressTrackerPanel .label {
    color: #ffffff;
  }
  
  .ProgressTracker_Dashboard_Overview h2.panel-title {
    font-size: 130%;
  }
  
  .FullWidthArea-StyleBg1 .row {
    padding: 40px 0px;
  }
  
  .FullWidthArea-StyleBg1 .home-spotlight {
    float: none;
    max-width: 500px;
    padding: 0px 30px;
    margin: 0px auto;
  }
  
  .FullWidthArea-StyleBg1 .Spotlight {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
  }
  
  .FullWidthArea-StyleBg1 .Spotlight .Spotlight-image {
    align-self: center;
    margin: 0px auto 30px auto;
  }
  
  .FullWidthArea-StyleBg1 .Spotlight p {
    text-align: inherit;
    font-weight: 300;
    margin: 20px 0px;
    padding: 0;
  }
  
  .FullWidthArea-StyleBg1 .Spotlight .SectionLabel a {
    color: #000000;
    font-size: 135%;
    font-weight: 700;
  }
  
  .FullWidthArea-StyleBg1 .Spotlight .SectionLabel a:hover, .FullWidthArea-StyleBg1 .Spotlight .SectionLabel a:focus, .FullWidthArea-StyleBg1 .Spotlight .SectionLabel a:active {
    color: #27A9CC;
  }
  
  .FullWidthArea-StyleBg1 .Spotlight a {
    text-decoration: none;
  }
  
  @media (min-width: 992px) {
    .FullWidthArea-StyleBg1 .row {
      display: flex;
      flex-flow: column wrap;
      padding: 80px 0px;
    }
    .FullWidthArea-StyleBg1 .row:nth-of-type(2) .Spotlight {
      flex-flow: row-reverse nowrap;
    }
    .FullWidthArea-StyleBg1 .home-spotlight {
      width: 100%;
      max-width: 900px;
      clear: both;
    }
    .FullWidthArea-StyleBg1 .home-spotlight:nth-of-type(1) {
      align-self: center;
    }
    .FullWidthArea-StyleBg1 .home-spotlight:nth-of-type(2) {
      align-self: flex-end;
    }
    .FullWidthArea-StyleBg1 .home-spotlight:nth-of-type(3) {
      align-self: flex-start;
    }
    .FullWidthArea-StyleBg1 .Spotlight {
      align-items: center;
      gap: 0px 75px;
      flex-wrap: nowrap;
    }
    .FullWidthArea-StyleBg1 .Spotlight p {
      margin: 40px 0px;
    }
    .FullWidthArea-StyleBg1 .Spotlight .Spotlight-image {
      flex-shrink: 0;
      margin-bottom: 0;
    }
  }
  
  .FullWidthArea-StyleBg2 {
    position: relative;
  }
  
  @media (min-width: 992px) {
    .FullWidthArea-StyleBg2 {
      padding-top: 40px;
    }
  }
  
  .FullWidthArea-StyleBg2 .row {
    padding: 40px 0px;
  }
  
  .FullWidthArea-StyleBg2 .tracker-benefits {
    align-items: center;
    justify-content: center;
    gap: 0px 5%;
  }
  
  @media (max-width: 991px) {
    .FullWidthArea-StyleBg2 .tracker-benefits {
      max-width: 500px;
      margin: 0px auto;
    }
  }
  
  .FullWidthArea-StyleBg2 .home-member-benefits ul {
    padding-inline-start: 0px;
    margin-top: 30px;
  }
  
  .FullWidthArea-StyleBg2 .home-member-benefits li {
    list-style: none;
    background: url(images/arrow.svg) no-repeat 0 8px/12px 12px;
    padding-left: 25px;
  }
  
  .home-member-tracker .ProgressTrackerPanel {
    background: transparent;
  }
  
  .home-member-tracker .ProgressTracker2 .ProgressTrackerPanel .count {
    color: #496DAD;
    font-size: 4em;
    font-family: "Poppins", Helvetica, sans-serif;
    font-weight: 700;
    margin-bottom: -10px;
    text-align: center;
  }
  
  .home-member-tracker .ProgressTracker2 .ProgressTrackerPanel .inset {
    text-align: left;
    padding: 0;
  }
  
  .home-member-tracker .ProgressTracker2 .ProgressTrackerPanel .label {
    font-size: 135%;
    color: #000000;
    font-weight: 500;
    font-family: "Poppins", Helvetica, sans-serif;
    text-align: center;
  }
  
  @media (min-width: 992px) {
    .home-member-tracker .ProgressTracker2 .ProgressTrackerPanel .count {
      font-size: 5.8em;
      text-align: left;
      margin-bottom: 0;
    }
    .home-member-tracker .ProgressTracker2 .ProgressTrackerPanel .label {
      text-align: left;
    }
  }
  
  .home-membership-types p {
    display: flex;
    justify-content: space-between;
  }
  
  @media (max-width: 991px) {
    .home-membership-types p {
      display: block;
    }
  }
  
  a.home-membership-btn {
    text-align: center;
    color: #000000;
    display: block;
    text-decoration: none;
    line-height: 0.7em;
    font: 600 1em "Poppins", Helvetica, sans-serif;
    margin: 2em auto;
    transition: all 0.2s ease-in-out;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 35px 20px;
    max-width: 500px;
    border: 1px solid #dbdbdb;
  }
  
  @media (min-width: 992px) {
    a.home-membership-btn {
      width: 32%;
      max-width: 100%;
      margin: 0;
    }
  }
  
  a.home-membership-btn img {
    border-radius: 50%;
    display: inline-block;
    margin: 0 auto;
    transition: all 0.2s ease-in-out;
  }
  
  a.home-membership-btn:hover, a.home-membership-btn:active, a.home-membership-btn:focus {
    background: #27A9CC;
    color: #ffffff;
  }
  
  a.home-membership-btn:hover img, a.home-membership-btn:active img, a.home-membership-btn:focus img {
    transform: scale(1.2);
  }
  
  .home-testimonial {
    padding: 0;
  }
  
  .slideshow-banner.testimonial {
    max-width: 500px;
    margin: 0px auto;
  }
  
  .slideshow-banner.testimonial .carousel-inner.bg-img {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #dbdbdb;
  }
  
  .slideshow-banner.testimonial .carousel-inner.bg-img > .item {
    background: #ffffff;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .slideshow-banner.testimonial .carousel-indicators {
    padding: 0px 5%;
  }
  
  .slideshow-banner.testimonial .carousel-indicators li {
    border: none;
    background: #496DAD;
    opacity: 0.5;
  }
  
  .slideshow-banner.testimonial .carousel-indicators li.active {
    opacity: 1;
  }
  
  .slideshow-banner.testimonial .carousel-indicators li:hover {
    opacity: 1;
    background: #27A9CC;
  }
  
  .slideshow-banner.testimonial .caption-wrapper {
    background: #ffffff;
  }
  
  .slideshow-banner.testimonial .caption-wrapper .carousel-caption {
    color: #000000;
    background: transparent;
  }
  
  .slideshow-banner.testimonial .caption-wrapper .carousel-caption h1, .slideshow-banner.testimonial .caption-wrapper .carousel-caption h2, .slideshow-banner.testimonial .caption-wrapper .carousel-caption h3, .slideshow-banner.testimonial .caption-wrapper .carousel-caption h4, .slideshow-banner.testimonial .caption-wrapper .carousel-caption h5, .slideshow-banner.testimonial .caption-wrapper .carousel-caption h6 {
    color: #000000;
    margin-top: 0;
  }
  
  @media (min-width: 992px) {
    .slideshow-banner.testimonial {
      max-width: 100%;
    }
    .slideshow-banner.testimonial .img {
      clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
    }
    .slideshow-banner.testimonial .carousel-indicators {
      text-align: left;
    }
    .slideshow-banner.testimonial .caption-wrapper:before {
      display: block;
      position: absolute;
      width: 65px;
      content: '';
      height: 120%;
      left: -95px;
      background: #27A9CC;
      border-left: 20px solid #496DAD;
      transform: rotate(-18deg);
    }
  }
  
  .news-timeline .TaggedListPanel {
    position: relative;
    padding-bottom: 100px;
  }
  
  .news-timeline .TaggedListPanel:before {
    content: ' ';
    display: block;
    border-right: 2px dashed #496DAD;
    height: 100%;
    position: absolute;
    top: 0;
    left: 30px;
  }
  
  .news-timeline .TaggedListPanel a[id*='NextButton'] {
    display: none;
  }
  
  .news-timeline a.TextButton {
    left: 40px;
    display: inline-block;
    clear: both;
    margin: -95px 0 0 40px;
    position: relative;
  }
  
  .news-timeline a.TextButton:before {
    content: ' ';
    display: block;
    border-bottom: 2px dashed #496DAD;
    width: 40px;
    height: 48%;
    position: absolute;
    left: -40px;
  }
  
  .timeline-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin: 20px 0;
    flex-direction: row-reverse;
  }
  
  .timeline-item:before {
    content: ' ';
    display: block;
    flex: 0 0 60px;
    order: 2;
    height: 60px;
    background: #A5B8D3;
    border: 2px solid #496DAD;
    border-radius: 50%;
    will-change: transform;
  }
  
  .timeline-tagged-content {
    position: relative;
    display: flex;
    order: 1;
    box-shadow: 8px 6px 20px 0 rgba(37, 46, 56, 0.2);
    border-radius: 4px;
    border-top-left-radius: 0;
    padding: 15px 15px 5px 15px;
    flex-grow: 0;
    margin-left: 30px;
    border-bottom: 15px solid #496DAD;
    background: #ffffff;
  }
  
  .timeline-tagged-content:hover {
    border-bottom: 15px solid #324b77;
  }
  
  .timeline-tagged-content:before {
    content: ' ';
    display: block;
    position: absolute;
    right: 100%;
    left: auto;
    border-top: 28px solid transparent;
    border-right: 22px solid #ffffff;
    border-bottom: 28px solid transparent;
    z-index: 46;
  }
  
  .timeline-tagged-content h4 a:after {
    content: ' ';
    display: block;
    z-index: 45;
    border-radius: 10px;
    border-top-left-radius: 0;
    box-shadow: -6px -6px 26px 0 white;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .timeline-tagged-content img {
    width: 35%;
    align-self: flex-start;
  }
  
  .timeline-tagged-desc {
    padding: 0 15px;
  }
  
  @media (min-width: 992px) {
    .FullWidthArea-StyleBg3 .panel-heading.Distinguish {
      text-align: center;
    }
    .news-timeline .TaggedListPanel:before {
      left: 50%;
      transform: translateX(-50%);
    }
    .news-timeline a.TextButton {
      left: 50%;
    }
    .timeline-tagged-content {
      width: 45%;
      margin: 0;
    }
    .timeline-item {
      flex-direction: row;
    }
    .timeline-item:nth-child(odd) {
      flex-direction: row-reverse;
    }
    .timeline-item:nth-child(odd):before {
      margin-right: calc(5% - 30px);
    }
    .timeline-item:nth-child(odd) .timeline-tagged-content:after {
      border-radius: 4px;
      border-top-left-radius: 0;
    }
    .timeline-item:nth-child(even):before {
      margin-left: calc(5% - 30px);
    }
    .timeline-item:nth-child(even) .timeline-tagged-content {
      border-radius: 4px;
      border-top-right-radius: 0;
    }
    .timeline-item:nth-child(even) .timeline-tagged-content:before {
      right: auto;
      left: 100%;
      border-top: 28px solid transparent;
      border-left: 22px solid #ffffff;
      border-bottom: 28px solid transparent;
      border-right: none;
    }
  }
  
  .list-with-featured .panel-body, .list-with-featured .PanelBody {
    padding: 0;
  }
  
  .list-with-featured .TaggedListPanel {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px 0px;
  }
  
  .list-with-featured .BlockTLItem {
    width: 30%;
    border-bottom: 0;
    display: flex;
    gap: 0px 15px;
    position: relative;
    padding: 0;
  }
  
  .list-with-featured .BlockTLItem:first-of-type {
    width: 100%;
    flex-shrink: 0;
    align-items: center;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    gap: 0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #dbdbdb;
  }
  
  .list-with-featured .BlockTLItem:first-of-type .newsImage {
    width: 50%;
    height: 100%;
    border-radius: 0;
  }
  
  .list-with-featured .BlockTLItem:first-of-type .desc {
    display: block;
    margin: 15px 0px;
  }
  
  .list-with-featured .BlockTLItem:first-of-type .details {
    padding: 80px 50px;
    background: #ffffff;
  }
  
  .list-with-featured .BlockTLItem:first-of-type .readMore {
    position: relative;
  }
  
  .list-with-featured .desc,
  .list-with-featured .contentTaggedListImageThumbnailR {
    display: none;
  }
  
  .list-with-featured .newsImage {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
  }
  
  .list-with-featured h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
  }
  
  .list-with-featured .PublishDate {
    font-size: 0.8em;
    font-style: normal;
  }
  
  .list-with-featured .readMore {
    font-size: 16px;
    position: absolute;
    bottom: 0px;
  }
  
  @media (max-width: 991px) {
    .list-with-featured .TaggedListPanel {
      display: block;
    }
    .list-with-featured .BlockTLItem,
    .list-with-featured .BlockTLItem:first-of-type {
      width: 100%;
      display: block;
      max-width: 500px;
      margin: 0px auto 30px auto;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
      -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    }
    .list-with-featured .BlockTLItem .newsImage,
    .list-with-featured .BlockTLItem:first-of-type .newsImage {
      height: 200px;
      width: 100%;
    }
    .list-with-featured .BlockTLItem .details,
    .list-with-featured .BlockTLItem:first-of-type .details {
      padding: 30px;
      background: #ffffff;
    }
    .list-with-featured .readMore {
      position: relative;
    }
    .list-with-featured h4 {
      margin-top: 10px;
    }
  }
  
  .FullWidthArea-StyleBg3 {
    position: relative;
    overflow: hidden;
    background: url("images/testimonialBackground.jpg") center center no-repeat;
    background-size: cover;
  }
  
  .FullWidthArea-StyleBg3:after {
    display: block;
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(51, 51, 51, 0.5);
    z-index: 1;
  }
  
  .FullWidthArea-StyleBg3 .row {
    position: relative;
    z-index: 2;
    padding: 160px 0px;
  }
  
  .FullWidthArea-StyleBg3 blockquote {
    font: 600 2.6em "Poppins", Helvetica, sans-serif;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
  }
  
  @media (max-width: 991px) {
    .FullWidthArea-StyleBg3 blockquote {
      font-size: 1.8em;
    }
  }
  
  .FullWidthArea-StyleBg3 h2 {
    color: #ffffff;
    font-size: 2em;
    text-align: right;
    font-weight: 500;
    font-style: italic;
  }
  
  @media (max-width: 991px) {
    .FullWidthArea-StyleBg3 h2 {
      font-size: 1.4em;
    }
  }
  
  .FullWidthArea-StyleBg5 .RelatedItemsHorizontal,
  .CartButtonWrapper .CardButtonUl {
    display: flex;
  }
  
  .FullWidthArea-StyleBg5 .RelatedItemsHorizontal li,
  .CartButtonWrapper .CardButtonUl li {
    box-shadow: 8px 6px 20px 0 rgba(37, 46, 56, 0.2);
    position: relative;
    float: none;
    width: auto !important;
    border-radius: 4px;
  }
  
  .FullWidthArea-StyleBg5 .RelatedItemsHorizontal li:after,
  .CartButtonWrapper .CardButtonUl li:after {
    content: '';
    display: block;
    height: 15px;
    width: 100%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    position: absolute;
    bottom: 0;
  }
  
  .FullWidthArea-StyleBg5 .RelatedItemsHorizontal li:hover:after,
  .CartButtonWrapper .CardButtonUl li:hover:after {
    background: linear-gradient(90deg, #27a9cc 0%, #496dad 100%);
    animation: fade-in 0.4s ease-in;
  }
  
  .FullWidthArea-StyleBg5 .RelatedItemsHorizontal li:hover img,
  .CartButtonWrapper .CardButtonUl li:hover img {
    transform: scale(1);
  }
  
  .FullWidthArea-StyleBg5 .RelatedItemsHorizontal li a.LabelLink,
  .CartButtonWrapper .CardButtonUl li a.LabelLink {
    text-decoration: none;
    color: #252E38;
  }
  
  .FullWidthArea-StyleBg5 .RelatedItemsHorizontal li a.LabelLink:before,
  .CartButtonWrapper .CardButtonUl li a.LabelLink:before {
    content: ' ';
    display: block;
    box-shadow: -6px -6px 26px 0 white;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 15;
  }
  
  .FullWidthArea-StyleBg5 .RelatedItemsHorizontal li img,
  .CartButtonWrapper .CardButtonUl li img {
    transition: all 0.2s ease-in-out;
  }
  
  .FullWidthArea-StyleBg4 {
    padding: 40px 0px;
  }
  
  .FullWidthArea-StyleBg4 .row {
    padding: 40px 0px;
  }
  
  .upcoming-events .panel-body, .upcoming-events .PanelBody {
    padding: 0;
  }
  
  .upcoming-events .imageWrapper,
  .upcoming-events .image {
    display: block;
    height: 200px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: all 0.2s ease-in;
  }
  
  .upcoming-events .card {
    border-radius: 4px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #dbdbdb;
  }
  
  .upcoming-events .card:hover, .upcoming-events .card:active, .upcoming-events .card:focus {
    cursor: pointer;
  }
  
  .upcoming-events .card:hover .image, .upcoming-events .card:active .image, .upcoming-events .card:focus .image {
    transform: scale(1.2);
  }
  
  .upcoming-events .card:hover .readMore, .upcoming-events .card:active .readMore, .upcoming-events .card:focus .readMore {
    color: #27A9CC;
  }
  
  .upcoming-events .card:hover .readMore:after, .upcoming-events .card:active .readMore:after, .upcoming-events .card:focus .readMore:after {
    margin-left: 15px;
    background: #27A9CC;
  }
  
  .upcoming-events .card-body {
    padding: 0;
  }
  
  .upcoming-events .details {
    display: block;
    padding: 25px;
  }
  
  .upcoming-events .QueryTemplateSet.row {
    flex-wrap: wrap;
    padding: 0px !important;
    justify-content: space-between;
  }
  
  @media (max-width: 991px) {
    .upcoming-events .QueryTemplateSet.row {
      display: block;
    }
    .upcoming-events .QueryTemplateSet.row .card {
      max-width: 500px;
      margin: 0px auto 60px auto;
    }
    .upcoming-events .QueryTemplateSet.row section:last-of-type .card {
      margin-bottom: 0;
    }
  }
  
  .upcoming-events .row-cols-md-3 > * {
    width: 32%;
    padding: 0;
  }
  
  @media (max-width: 991px) {
    .upcoming-events .row-cols-md-3 > * {
      width: 100%;
    }
  }
  
  .upcoming-events .link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .upcoming-events .pagination {
    display: none;
  }
  
  .CardButtonWrapper .CardButtonUl {
    list-style-type: none;
    margin: 0 0 50px 0;
    padding: 0px;
    text-align: center;
  }
  
  .CardButtonWrapper .CardButtonUl li {
    border-radius: 25px;
    margin: -1.2% 1.5%;
    padding: 0px 0 0px 0;
  }
  
  .CardButtonWrapper .CardButtonUl li:hover img {
    width: 100%;
  }
  
  .CardButtonWrapper .CardButtonUl li a.LabelLink {
    line-height: 3.5em;
  }
  
  .CardButtonWrapper .CardButtonUl li a.LabelLink:before {
    border-radius: 25px;
  }
  
  .CardButtonWrapper .CardButtonUl li img {
    border-radius: 25px 25px 0 0 !important;
    transform: scale(1);
    filter: grayscale(0%);
    width: auto;
  }
  
  @media (min-width: 992px) {
    .FullWidthArea-StyleBg5 .RelatedItemsHorizontal, .CardButtonWrapper .CardButtonUl {
      flex-flow: row nowrap;
    }
    .RelatedItemsHorizontal li, .CardButtonUl li {
      flex: 0 0 30%;
    }
  }
  
  .FullWidthArea-StyleBg4 .sponsors-listing ul {
    display: flex;
    flex-flow: row wrap;
    padding: 0;
    justify-content: space-between;
  }
  
  .FullWidthArea-StyleBg4 .sponsors-listing li {
    list-style: none;
    display: flex;
    width: 32%;
    background: #ffffff;
    padding: 30px 15px;
    border-radius: 4px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbdbdb;
  }
  
  .FullWidthArea-StyleBg4 .sponsors-listing img {
    max-width: 250px;
    margin: 0 auto;
    align-self: center;
  }
  
  .FullWidthArea-StyleBg4 .sponsors-listing img:hover {
    filter: initial;
    transition: all 0.5s ease-in;
  }
  
  @media (max-width: 991px) {
    .FullWidthArea-StyleBg4 .sponsors-listing ul {
      display: block;
    }
    .FullWidthArea-StyleBg4 .sponsors-listing li {
      margin: 0px auto 40px auto;
      width: 100%;
      max-width: 500px;
    }
    .FullWidthArea-StyleBg4 .sponsors-listing li:last-of-type {
      margin-bottom: 0;
    }
  }
  
  footer.footer {
    display: grid;
    padding-top: 0px;
    padding-bottom: 15px;
    border-bottom: 12px solid var(--primary);
    background-color: transparent;
    text-align: left;
    color: #555;
  }

  footer.footer .footer-logo-container {
    grid-area: logo;
  }

  footer.footer .footer-aux-container {
    grid-area: aux;
  }

  footer.footer .footer-content-container {
    grid-area: content;
  }
  
  footer.footer a {
    color: inherit;
    text-decoration: none;
  }
  
  footer.footer a:hover, footer.footer a:focus {
    color: var(--primary);
  }
  
  footer.footer a.TextButton {
    color: var(--primary);
  }
  
  footer.footer h3, footer.footer h4 {
    margin-bottom: 15px;
  }
  
  .footer-content {
    padding-top: 40px;
  }
  
  #masterFooterImage {
    display: block;
    width: var(--logo-width);
    height: var(--logo-height);
    margin-bottom: 12px;
    background-size: contain;
    background-image: url("images/Logos/Logo_color.svg");
    text-indent: -9999px;
  }
  
  .footer-aux-container .ContentItemContainer {
    margin-bottom: 22px;
  }
  
  @media (min-width: 768px) {
    .footer-aux-container .ContentItemContainer {
      text-align: right;
    }
  }
  
  .footer-contact-wrapper ul {
    display: flex;
    gap: 12px;
    padding: 0;
    list-style: none;
  }
  .footer-contact-wrapper ul li {
    display: inline-block;
    position: relative;
  }
  .footer-contact-wrapper ul li + li {
    padding-left: 0px;
  }
  .footer-contact-wrapper ul li + li::before {
    content: "";
    display: inline-block;
    width: 2px;
    height: 16px;
    background: #ccc;
    margin-right: 12px;
    position: relative;
    top: 2px;
  }
  
  .footer-copyright-wrapper ul {
    display: flex;
    gap: 12px;
    padding: 0;
    list-style: none;
  }
  .footer-copyright-wrapper ul li {
    display: inline-block;
    position: relative;
  }
  .footer-copyright-wrapper ul li + li:not(:has(a)) {
    padding-left: 0px;
  }
  .footer-copyright-wrapper ul li + li:not(:has(a))::before {
    content: "";
    display: inline-block;
    width: 2px;
    height: 16px;
    background: #ccc;
    margin-right: 12px;
    position: relative;
    top: 2px;
  }

  .social-icons-container {
    display: flex;
    list-style-type: none;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
    gap: 22px;
    color: var(--black);
  }

  .social-icons-container a {
    display: inline-block;
    box-sizing: content-box;
    width: 1em;
    padding: 14px;
    border-radius: 50px;
    line-height: 1em;
    text-align: center;
    background: #f4f4f4;
  }

  @media (max-width: 767px) {
    .social-icons-container {
      justify-content: flex-start;
      flex-wrap: wrap;
    }
  }
  
  .footer-banner .carousel-inner.bg-img > .item {
    background: #496DAD;
  }
  
  .footer-banner .carousel-inner.bg-img > .item a.link:after, .footer-banner .carousel-inner.bg-img > .item:after {
    display: block;
    content: '';
    background: #496dad;
    background: linear-gradient(90deg, #496dad 0%, rgba(73, 109, 173, 0) 100%);
    position: absolute;
    right: 0;
    left: 50%;
    top: 0;
    bottom: 0;
    z-index: 2;
  }
  
  .footer-banner .carousel-inner.bg-img > .item a.link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
  }
  
  .footer-banner .carousel-inner.bg-img > .item a.link:hover .readMore {
    color: #ffffff;
  }
  
  .footer-banner .carousel-inner.bg-img > .item a.link:hover .readMore:after {
    margin-left: 15px;
  }
  
  @media (max-width: 991px) {
    .footer-banner .carousel-inner.bg-img > .item .img {
      height: 135px;
    }
    .footer-banner .carousel-inner.bg-img > .item a.link:after, .footer-banner .carousel-inner.bg-img > .item:after {
      height: 135px;
      left: 0;
      top: auto;
      background: linear-gradient(180deg, #496dad 0%, rgba(73, 109, 173, 0) 100%);
    }
    .footer-banner .carousel-inner.bg-img > .item .bg {
      flex-wrap: wrap-reverse;
    }
    .footer-banner .carousel-inner.bg-img > .item a.link {
      position: relative;
      display: flex;
      flex-wrap: wrap-reverse;
    }
  }
  
  .footer-banner .caption-wrapper {
    width: 100%;
    background: transparent;
  }

  footer.footer {
    grid-template: 
      ". . . ." var(--padding-heading-top)
      ". logo aux ." auto 
      ". content content ." auto/
      auto calc(var(--logo-width) + var(--padding) * 2) minmax(auto, calc(var(--max-width) - var(--logo-width) - var(--padding) * 2)) auto;
  }
  footer.footer .footer-logo-container {
    padding: 0 var(--padding);
  }  
  footer.footer .footer-aux-container {
    padding: 0 var(--padding);
  }  
  footer.footer .footer-content-container {
    padding: 0 var(--padding);
  }
  .footer-banner .caption-wrapper .carousel-caption {
    left: 5%;
    width: 60%;
    top: 50%;
    transform: translateY(-50%);
    text-shadow: none;
    position: absolute;
    padding: 0;
  }
  
  .footer-banner .caption-wrapper .carousel-caption p {
    margin: 0;
  }
  
  .footer-banner .panel-body, .footer-banner PanelBody {
    padding: 0;
  }
  
  .footer-banner .panel, .footer-banner StandardPanel {
    border: 0;
  }
  
  .footer-banner .readMore:after {
    background: #ffffff;
  }
  
  .footer-banner .carousel-indicators {
    bottom: 0;
  }
  
  .footer-banner .carousel-control {
    display: none;
  }
  
  /*FOOTER MEDIA - MBT 53024*/
  @media (max-width:768px){
    footer.footer {display:unset;}
  }
  
  @media screen and (max-width: 767px) {
      .footer-contact-wrapper ul,
      .footer-copyright-wrapper ul {
          flex-direction: column; 
          gap: 8px; 
      }
  
      .footer-contact-wrapper ul li,
      .footer-copyright-wrapper ul li {
          display: block; 
          position: static; 
          text-align:center;
      }
  
      .footer-contact-wrapper ul li + li::before,
      .footer-copyright-wrapper ul li + li::before {
          display: none; 
      }
      .footer-copyright-wrapper ul li + li:not(:has(a)) {
        padding-left: 10px;
      }
      .footer-copyright-wrapper ul li + li:not(:has(a))::before {
        display: none;
      }
  }

  .Wrapper-FullWidth .container-inner {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .Wrapper-FullWidth .col-primary .row {
    max-width: 1380px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .white-bg {
    background: #ffffff;
  }
  
  /* Bad browsers shouldn't get ice cream */
  html:not(.t-ie) .timeline-tagged-content a:not(.TextButton) {
    background: linear-gradient(90deg, #27a9cc 0%, #496dad 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  @media (max-width: 991px) {
    .header-aux-container {
      --aux-bg: transparent;
    }
  }
  
  .header-aux-container .UtilityAuthentication a,
  .header-aux-container a.NavigationLink,
  .header-aux-container .UtilityNavigation .account-menu > li > a.sign-in-link,
  .header-aux-container .account-toggle .nav-text {
    font-weight: 300;
    padding: 0;
  }
  
  .header-aux-container .UtilityNavigation {
    gap: 0px 6px;
    align-items: baseline;
    margin-bottom: 20px;
  }
  
  @media (max-width: 991px) {
    .header-aux-container .UtilityNavigation {
      justify-content: center;
    }
  }
  
  .header-aux-container .UtilityNavigation .account-menu > li > a.sign-in-link {
    border-left: 1px solid #ffffff;
  }
  
  .header-aux-container .UtilityNavigation .account-menu > li > a.sign-in-link:first-of-type {
    border: none;
  }
  
  .header-aux-container .UtilityNavigation .NavigationUnorderedList {
    display: flex;
    gap: 0px 6px;
  }
  
  .header-aux-container .UtilityTranslation {
    position: relative;
    width: 100%;
    max-width: 120px;
    display: block;
  }
  
  .header-aux-container .UtilityTranslation select {
    border: 1px solid var(--aux-link-color);
    font-size: 75%;
    color: var(--aux-link-color);
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0px 10px;
    height: 25px;
    appearance: none;
    width: 100%;
    display: block;
    background-image: url(images/auxIcons.svg#caret-white);
    background-repeat: no-repeat;
    background-size: 12px 12px;
    background-position: 95% center;
  }
  
  .header-aux-container .UtilityTranslation select:hover, .header-aux-container .UtilityTranslation select:focus {
    cursor: pointer;
  }
  
  .header-aux-container .UtilityTranslation select option {
    color: #252E38;
    padding: 5px 0;
    background-color: #ffffff;
  }
  
  .header-aux-container .UtilityTranslation select option:focus, .header-aux-container .UtilityTranslation select option:active, .header-aux-container .UtilityTranslation select option[selected] {
    background-color: #496DAD !important;
    color: #ffffff;
  }
  
  @media (min-width: 992px) {
    .header-aux-container .UtilityTranslation select:focus, .header-aux-container .UtilityTranslation select:active {
      background-color: #222222;
    }
  }
  
  @media (max-width: 991px) {
    .header-aux-container .UtilityTranslation {
      margin: 0;
    }
    .header-aux-container .UtilityTranslation select {
      background-color: transparent;
      background-image: url(images/auxIcons.svg#caret);
    }
  }
  
  /* Auxiliary Icons */
  .UtilitySearch,
  .UtilitySTEToggle,
  .UtilityAuthentication,
  .UtilityTranslation,
  .UtilityPTSToggle {
    margin-left: 0px;
  }

  .nav-auxiliary .nav-aux-button.UtilitySection,
  .nav-auxiliary .nav-aux-button .NavigationLink {
    padding: 6px 16px;
    border: 1px solid var(--white);
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .nav-aux-cart .NavigationLink:hover,
  .nav-aux-cart .NavigationLink:focus {
    border: 1px solid white;
    border-radius: 4px;
  }

  .nav-auxiliary .nav-aux-button.UtilityAuthenticationLink {
    padding-left: 30px;
    background-position: 10px 50%;
    background-origin: padding-box;
    background-image: url("/App_Themes/Marketplace/images/Login.svg");
    background-repeat: no-repeat;
  }
  
  .navbar-toggle,
  .obo-toggle,
  .ste-toggle,
  .page-statistics-toggle,
  .searchbar-toggle {
    display: inline-block;
    height: 30px;
    width: 30px;
    -webkit-mask-image: url(images/auxIcons.svg#caret);
    -webkit-mask-size: 18px 18px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background: var(--aux-link-color);
  }
  
  .navbar-toggle.collapsed, .obo-toggle.collapsed,
  .ste-toggle.collapsed, .page-statistics-toggle.collapsed, .searchbar-toggle.collapsed {
    background: var(--aux-link-color);
  }
  
  @media (min-width: 992px) {
    .nav-auxiliary .nav-aux-button.nav-aux-cart .nav-text {
      font-size: inherit;
      font-family: "Poppins", Helvetica, sans-serif;
      line-height: 1.6;
      font-weight: 300;
      width: auto;
      color: var(--aux-link-color);
    }
  }
  
  .nav-auxiliary .nav-aux-button.nav-aux-cart .nav-text:before {
    display: inline-block;
    vertical-align: middle;
    margin: 0px 11px 0px 0px;
    content: '';
    height: 30px;
    width: 18px;
    -webkit-mask-image: url(images/auxIcons.svg#cart);
    -webkit-mask-size: 18px 18px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    background: var(--aux-link-color);
  }
  
  .nav-auxiliary .nav-aux-button.nav-aux-cart .nav-text:hover,
  .nav-auxiliary .nav-aux-button.nav-aux-cart .nav-text:focus {
    text-decoration: none;
    color: #27A9CC;
  }
  
  .nav-auxiliary .nav-aux-button.nav-aux-cart .nav-text:hover:before,
  .nav-auxiliary .nav-aux-button.nav-aux-cart .nav-text:focus:before {
    background: #27A9CC;
  }
  
  .obo-toggle {
    -webkit-mask-image: url(images/auxIcons.svg#obo);
    -webkit-mask-position: 7px 8px;
  }
  
  @media (min-width: 992px) {
    .obo-toggle {
      margin-top: 0px;
    }
  }
  
  .obo-toggle:hover, .obo-toggle:focus, .obo-toggle.on {
    background: #27A9CC;
  }
  
  .obo-toggle.on:hover, .obo-toggle.on:focus {
    background: #ffffff;
  }
  
  a.ste-toggle {
    -webkit-mask-image: url(images/auxIcons.svg#ste);
    -webkit-mask-position: 8px 5px;
  }
  
  a.ste-toggle:hover, a.ste-toggle:focus, a.ste-toggle.on {
    background: #27A9CC;
  }
  
  a.ste-toggle.on:hover, a.ste-toggle.on:focus {
    background: #ffffff;
  }
  
  .page-statistics-toggle {
    -webkit-mask-image: url(images/auxIcons.svg#pts);
    -webkit-mask-position: 8px 5px;
  }
  
  .page-statistics-toggle:hover, .page-statistics-toggle:focus {
    background: #27A9CC;
  }
  
  .page-statistics-toggle.on {
    background: #27A9CC;
  }
  
  .page-statistics-toggle.on:hover, .page-statistics-toggle.on:focus {
    background: #ffffff;
  }
  
  .searchbar-toggle {
    -webkit-mask-image: url(images/auxIcons.svg#search-white);
  }
  
  .header-aux-container .UtilityAuthentication a:hover, .header-aux-container .UtilityAuthentication a:focus, .header-aux-container .UtilityAuthentication a:hover span, .header-aux-container .UtilityAuthentication a:focus span,
  .header-aux-container a.NavigationLink:hover,
  .header-aux-container a.NavigationLink:focus,
  .header-aux-container a.NavigationLink:hover span,
  .header-aux-container a.NavigationLink:focus span,
  .header-aux-container .UtilityNavigation .account-menu > li > a.sign-in-link:hover,
  .header-aux-container .UtilityNavigation .account-menu > li > a.sign-in-link:focus,
  .header-aux-container .UtilityNavigation .account-menu > li > a.sign-in-link:hover span,
  .header-aux-container .UtilityNavigation .account-menu > li > a.sign-in-link:focus span,
  .header-aux-container .account-toggle .nav-text:hover,
  .header-aux-container .account-toggle .nav-text:focus,
  .header-aux-container .account-toggle .nav-text:hover span,
  .header-aux-container .account-toggle .nav-text:focus span {
    text-decoration: none;
    color: var(--white);
  }
  
  .header-aux-container .nav-aux-cart a.NavigationLink:hover, .header-aux-container .nav-aux-cart a.NavigationLink:focus, .header-aux-container .nav-aux-cart a.NavigationLink:hover span, .header-aux-container .nav-aux-cart a.NavigationLink:focus span {
    color: #ffffff;
  }
  
  .navbar-toggle .icon-search {
    display: none;
  }
  
  .nav-auxiliary .nav-aux-button.nav-aux-account .nav-text {
    padding: 0;
    background: none;
  }
  
  @media (max-width: 991px) {
    .nav-auxiliary .nav-aux-button.nav-aux-account .nav-text {
      background: #000000;
      -webkit-mask-size: 18px 18px;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
      -webkit-mask-image: url(images/auxIcons.svg#person);
      margin: 0;
    }
  }
  
  @media (max-width: 991px) {
    .nav-auxiliary .nav-aux-button.nav-aux-cart .nav-text {
      margin: 0;
    }
  }
  
  .nav-auxiliary .nav-aux-button.nav-aux-cart .NavigationLink {
    width: auto;
  }
  
  .nav-auxiliary .nav-aux-button.nav-aux-cart .cartFull {
    position: absolute;
    top: 5px;
    right: auto;
    left: 7px;
  }
  
  @media (max-width: 991px) {
    .nav-auxiliary .nav-aux-button.nav-aux-cart .cartFull {
      top: 0px;
    }
  }
  
  .nav-auxiliary .nav-aux-button.nav-aux-cart .cartCenter {
    color: #ffffff;
    background-color: #27A9CC;
    border-radius: 20px;
    font-size: 1em;
    line-height: 1;
    padding: 0 2px 1px;
    box-shadow: -1px 1px 0 rgba(34, 34, 34, 0.6);
    display: block;
    width: 22px;
    height: 22px;
    font-weight: 600;
    line-height: 1.7;
  }
  
  @media (max-width: 991px) {
    .nav-auxiliary .nav-aux-button.nav-aux-cart .NavigationLink,
    .nav-auxiliary .nav-aux-button.nav-aux-account .NavigationLink {
      width: 30px;
      height: 30px;
      margin: 0;
    }
  }
  
  .menu-toggle {
    -webkit-mask-image: url(images/auxIcons.svg#menu);
    -webkit-mask-size: 18px 18px;
    -webkit-mask-position: center 8px;
    -webkit-mask-repeat: no-repeat;
  }
  
  .menu-toggle .icon-bar {
    display: none;
  }
  
  a.ste-toggle {
    background: var(--aux-link-color);
  }
  
  .UtilitySTEToggle {
    margin: 0;
  }
  
  .EasyEditOn header#hd .EasyEditContent:hover,
  .EasyEditOn footer#ft .EasyEditContent:hover {
    background: transparent;
  }
  
  .obo-panel, .obo-panel a {
    color: #ffffff;
  }
  
  .obo-toggle, .obo-toggle.on {
    background-position: 0 -518px;
  }
  
  @media (min-width: 992px) {
    .UtilitySearch .search-container-sm {
      display: block !important;
    }
  }
  
  .UtilitySearch #SimpleSearchBlock .search-field {
    background-position: 4px 2px;
    border-radius: 3px;
    height: 25px;
    width: 150px;
    color: #ffffff;
    font-size: 75%;
    border: 1px solid #ffffff;
    background-image: url(images/auxIcons.svg#search-white);
    background-size: 16px 18px;
    background-color: rgba(0, 0, 0, 0.2);
    display: block;
    box-shadow: none;
  }
  
  .UtilitySearch #SimpleSearchBlock .search-field:focus, .UtilitySearch #SimpleSearchBlock .search-field:hover, .UtilitySearch #SimpleSearchBlock .search-field:active {
    width: 150px;
    background-color: #222222;
    color: #ffffff;
  }
  
  .search-container .search-field {
    width: 100%;
    max-width: 360px;
    background-position: 4px 2px;
    border-radius: 3px;
    margin: 0px auto;
    height: 25px;
    color: #222222;
    font-size: 75%;
    border: 1px solid #222222;
    background-image: url(images/auxIcons.svg#search);
    background-size: 16px 18px;
    background-color: transparent;
    background-repeat: no-repeat;
    display: block;
    box-shadow: none;
    padding-left: 28px;
  }
  
  .search-container .TextButton {
    display: none;
  }
  
  .transaction-date-toggle.on, .transaction-date-toggle.on:hover,
  .list-toggle.on,
  .list-toggle.on:hover {
    background-position-y: -70px;
    background-color: #ffffff;
  }
  
  .account-menu .dropdown-menu {
    font-size: 90%;
    border-radius: 4px;
    border: 0;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  }
  
  .account-menu .dropdown-menu > li > a {
    font-weight: 300;
  }
  
  .account-menu .dropdown-menu > li > a:hover, .account-menu .dropdown-menu > li > a:focus {
    background: #fcfcff;
    color: #27A9CC;
  }
  
  .account-menu .obo-label,
  .account-menu .dropdown-header {
    color: #222222;
    font-weight: 600;
  }
  
  .account-menu .obo-label {
    color: #ffffff;
  }
  
  .account-menu .profile-picture-wrapper {
    margin-right: 10px;
  }
  
  .account-menu .account-toggle-wrapper:hover .nav-text, .account-menu .account-toggle-wrapper:focus .nav-text {
    text-decoration: none;
    color: #27A9CC;
  }
  
  .account-menu .account-toggle-wrapper:hover .caret, .account-menu .account-toggle-wrapper:focus .caret {
    background: #27A9CC;
  }
  
  .account-menu .account-toggle-wrapper .caret {
    border: 0;
    background: #ffffff;
    -webkit-mask-image: url(images/auxIcons.svg#caret);
    -webkit-mask-size: 10px 10px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    width: 12px;
    height: 12px;
    display: block;
    margin-left: 5px;
  }
  
  /*Carousel indicators*/
  .carousel-indicators li {
    margin: 0px 2px;
    width: 12px;
    height: 12px;
  }
  
  .carousel-indicators li.active {
    margin: 0px 2px;
  }
  
  .header-background-container {
    overflow: hidden;
  }
  
  .header-background-container .item.active {
    background-position: top center;
  }
  
  html:not(.t-ie) .Wrapper-HomePage .header-background-container .item.active {
    animation: none;
  }
  
  .Wrapper-HomePage .header-background-container .ContentItemContainer > .ContentItemContainer {
    background: #252E38;
    background: #252E38 linear-gradient(27deg, #252E38 90%, #252E38 0%);
  }
  
  .header-background-container .carousel-inner.bg-img > .item {
    background-color: #252E38;
  }
  
  header.header {
    border-bottom: none;
    background: #ffffff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    margin: 0;
    z-index: 200;
  }
  
  header.header .header-logo-container {
    align-self: center;
  }
  
  @media (max-width: 991px) {
    header.header .header-logo-container {
      align-self: center;
      padding: 0 var(--padding-sm);
    }
  }
  
  @media (min-width: 1380px) {
    /*
    header.header .header-primary-nav-container {
      max-width: 1000px;
      justify-self: center;
    }
    */
    header.header .header-logo-container {
      padding: 0 var(--padding);
    }
  }
  
  header.header .header-aux-container {
    align-self: center;
    padding: 0 var(--padding);
  }

  header.header .header-aux-container .WTZone {
    padding: 0;
  }
  
  @media (max-width: 991px) {
    header.header .header-aux-container {
      justify-self: flex-end;
      padding-bottom: 20px;
    }
  }
  
  header.header .header-search-container {
    grid-area: search;
    position: relative;
  }
  
  /*Homepage override*/
  .Wrapper-HomePage {
    --aux-bg: transparent;
  }
  
  @media (min-width: 992px) {
    .Wrapper-HomePage {
      --nav-color: #ffffff;
    }
  }
  
  @media (max-width: 991px) {
    header.header {
      grid-template: "logo" "utility" "search" "banner";
      grid-template-rows: auto auto auto auto calc(12vw + 38px);
      padding-bottom: 0px;
    }
    .Wrapper-HomePage header.header .header-background-container {
      grid-area: 1 / 1 / -1 / -1;
    }
    .Wrapper-HomePage header.header .header-primary-nav-container {
      background: #ffffff;
    }
    .Wrapper-HomePage header.header > .header-logo-container {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
    }
    .Wrapper-HomePage header.header > .header-aux-container {
      -ms-grid-row: 2;
      -ms-grid-column: 1;
      -ms-grid-column-span: 1;
    }
    .Wrapper-HomePage header.header > .header-primary-nav-container {
      -ms-grid-row: 3;
      -ms-grid-column: 1;
    }
    header.header .home-page-header-container,
  header.header .internal-header-container {
      -ms-grid-row: 4;
      -ms-grid-column: 1;
    }
  }
  
  @media (min-width: 992px) {
    header.header {
      grid-template: 
      ".                                          .                                             .                                                                             ." var(--padding-heading-top) 
      ".                                          logo                                          utility                                                                       ." var(--logo-height) 
      "banner                                     search                                        search                                                                        ." auto 
      ".                                          .                                             .                                                                             ." var(--padding-heading-top)
      /minmax(min(var(--padding-md),6vw),auto)    calc(var(--logo-width) + var(--padding) * 2)  minmax(auto, calc(var(--max-width) - var(--logo-width) - var(--padding) * 2)) minmax(min(var(--padding-md),6vw),auto);
      grid-template-areas: ". . . ." ". logo utility ." "banner search search .";
    }
    .Wrapper-HomePage header.header > .header-logo-container {
      -ms-grid-row: 2;
      -ms-grid-column: 2;
    }
    .Wrapper-HomePage header.header > .header-aux-container {
      -ms-grid-row: 2;
      -ms-grid-column: 3;
      -ms-grid-column-span: 1;
    }
    /*
    .Wrapper-HomePage header.header > .header-primary-nav-container {
      -ms-grid-row: 2;
      -ms-grid-column: 2;
    }
    */
    .Wrapper-HomePage header.header > .home-page-header-container,
  .Wrapper-HomePage header.header > .internal-header-container {
      -ms-grid-row: 1;
      -ms-grid-row-span: 4;
      -ms-grid-column: 1;
      -ms-grid-column-span: 4;
    }
  }
  
  .Wrapper-HomePage header.header {
    min-height: 60vh;
  }
  
  .Wrapper-HomePage header.header:after {
    display: none;
  }
  
  .Wrapper-HomePage header.header .home-page-header-container {
    display: none;
  }
  
  .Wrapper-HomePage header.header .header-background-container {
    display: block;
    position: relative;
  }
  
  .Wrapper-HomePage header.header .header-background-container:before {
    background-image: none;
  }
  
  .Wrapper-HomePage header.header .header-background-container .carousel-inner:after {
    display: none;
  }
  
  .Wrapper-HomePage header.header .header-background-container .carousel-control {
    display: none;
  }
  
  .Wrapper-HomePage header.header .header-background-container .carousel-caption {
    display: inline-block;
    position: absolute;
    top: auto;
    left: 0;
    bottom: 6vw;
    right: auto;
    width: auto;
    padding: 12px 24px;
    opacity: 0;
    background-color: black;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;

    animation: fade-in 1s ease-in;
    animation-delay: 1s;
    animation-fill-mode: forwards;
  }
  
  @media (min-width: 992px) {
    .Wrapper-HomePage header.header .header-background-container .carousel-caption h1 {
      font-size: 3.3em;
    }
    .Wrapper-HomePage header.header .header-background-container .carousel-caption p {
      font-size: 1.2em;
    }
  }
  
  .Wrapper-HomePage header.header .header-background-container .carousel-caption h1 {
    text-transform: none;
  }
  
  .Wrapper-HomePage header.header .header-background-container .carousel-indicators li {
    border: 0;
    border-radius: 1px;
    width: 45px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.6);
  }
  
  .Wrapper-HomePage header.header .header-background-container .carousel-indicators li:hover, .Wrapper-HomePage header.header .header-background-container .carousel-indicators li:focus {
    background-color: #27A9CC;
  }
  
  .Wrapper-HomePage header.header .header-background-container .carousel-indicators li.active {
    background: #ffffff;
  }
  
  .Wrapper-HomePage header.header .header-background-container .carousel-indicators li.active:hover, .Wrapper-HomePage header.header .header-background-container .carousel-indicators li.active:focus {
    background-color: #27A9CC;
  }
  
  body:not(.Wrapper-HomePage) .home-page-header-container,
  body.Wrapper-HomePage .internal-header-container {
    display: none;
  }
  
  @media (min-width: 992px) {
    header.header .header-logo-container {
      align-self: center;
    }
    #masterHeaderImage {
      transition: transform 0.2s ease;
    }
    #masterHeaderImage:hover {
      transform: scale(1.05);
    }
  }
  
  @media (max-width: 991px) {
    #masterHeaderImage {
      width: var(--logo-width-mobile);
      height: var(--logo-height-mobile);
      margin: 10px 0px;
      background-size: cover;
      position: relative;
    }
    .UtilitySection.UtilitySearch {
      display: none;
    }
  }
  
  body.Wrapper-HomePage .internal-header-container {
    display: none;
  }
  
  /* Primary Navigation */
  .navbar-collapse.collapse {
    display: none !important;
  }
  .navbar-collapse.collapse.in,
  .navbar-collapse.collapsing {
    display: block !important;
    height: auto !important;
  }
  
  @media (min-width: 992px) {
    .RadMenu.RadMenu_Coffee {
      padding-right: 30px;
    }
  }

  .RadMenu.RadMenu_Coffee ul.rmRootGroup {
    position: absolute;
    left: auto;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: max-content;
    background: rgba(255,255,255,1);
  }

  .RadMenu.RadMenu_Coffee ul.rmRootGroup > .rmItem {
    float: none;
  }

  .RadMenu.RadMenu_Coffee ul.rmRootGroup > .rmItem .rmLink.rmExpanded,
  .RadMenu.RadMenu_Coffee ul.rmRootGroup > .rmItem .rmLink.rmFocused {
    color: var(--primary);
  }
  
  .RadMenu.RadMenu_Coffee .rmRootLink {
    border: 1px solid transparent;
    border-radius: 4px;
    display: block !important;
    transition: border 0.3s ease-in;
    color: var(--black);
  }

  .RadMenu.RadMenu_Coffee ul.rmRootGroup > .rmItem > .rmLink > .rmToggle > .rmIcon {
    margin: 10px 3px;
    color: var(--black);
  }

  .RadMenu.RadMenu_Coffee ul.rmRootGroup > .rmItem .rmLink.rmExpanded .rmToggle .rmIcon,
  .RadMenu.RadMenu_Coffee ul.rmRootGroup > .rmItem .rmLink.rmFocused .rmToggle .rmIcon {
    background: var(--primary);
  }
  
  .RadMenu.RadMenu_Coffee .rmRootGroup > li > div.rmSlide .rmGroup {
    animation: bubble-effect 0.2s ease-in;
    animation-fill-mode: forwards;
  }
  
  .RadMenu.RadMenu_Coffee .rmSlide ul.rmGroup {
    margin: 0;
    padding: 0px;
    border-radius: 4px;
  }
  
  .RadMenu.RadMenu_Coffee .rmSlide ul.rmGroup .rmFirst .rmLink {
    border-radius: 4px 4px 0px 0px;
  }
  
  .RadMenu.RadMenu_Coffee .rmSlide ul.rmGroup .rmLast .rmLink {
    border-radius: 0px 0px 4px 4px;
  }
  
  .RadMenu.RadMenu_Coffee .rmSlide ul.rmGroup.rmLevel2 {
    margin: 0;
    padding: 0px;
    box-shadow: none;
  }
  
  .RadMenu.RadMenu_Coffee .rmSlide ul.rmGroup .rmLink {
    transition: all 0.2s ease-in;
  }
  
  .RadMenu.RadMenu_Coffee .rmSlide ul.rmGroup .rmLink .rmText {
    padding: 8px 30px 8px 15px;
    width: 100%;
  }
  
  .RadMenu.RadMenu_Coffee .rmSlide ul.rmGroup .rmLink:hover, .RadMenu.RadMenu_Coffee .rmSlide ul.rmGroup .rmFocused, .RadMenu.RadMenu_Coffee .rmSlide ul.rmGroup .rmExpanded {
    color: #27A9CC;
  }
  
  .RadMenu.RadMenu_Coffee .rmTwoLevels .rmSlide .rmSlide .rmGroup {
    background: none;
  }
  
  .RadMenu.RadMenu_Coffee .rmSlide {
    float: none;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
  }
  
  .RadMenu.RadMenu_Coffee .rmTwoLevels .rmSlide .rmSlide {
    box-shadow: none;
  }
  
  .RadMenu.RadMenu_Coffee .rmHorizontal .rmText,
  .RadMenu.RadMenu_Coffee .rmText {
    padding: 5px 15px;
    display: inline-block !important;
  }
  
  @media (min-width: 992px) {
    .RadMenu.RadMenu_Coffee .rmGroup.rmLevel1 .rmToggle {
      display: none;
    }
    .RadMenu.RadMenu_Coffee .rmExpandRight,
    .RadMenu.RadMenu_Coffee .rmGroup a.rmLink.rmExpandRight {
      background-image: none;
    }
  }
  
  @media (max-width: 991px) {
    .RadMenu.RadMenu_Coffee .rmGroup.rmLevel1 .rmToggle {
      display: block;
      position: absolute;
      right: 8px;
    }
    .RadMenu.RadMenu_Coffee .rmGroup.rmLevel1 .rmSlide {
      top: 45px !important;
    }
    .RadMenu.RadMenu_Coffee .rmGroup.rmLevel1 .rmGroup {
      padding-left: 15px;
    }
  }
  
  @media (max-width: 991px) {
    .RadMenu.MegaDropDownMenuOuter div.rmSlide {
      position: static;
    }
  }
  
  /* Side Internal */
  .nav-secondary .sub-nav-head {
    font-size: 18px;
    text-transform: none;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
  }
  
  .RadTreeView.RadTreeView_Coffee .rtIn {
    display: inline-block;
    margin: 5px 0;
    padding: 10px 25px;
  }
  
  .RadTreeView.RadTreeView_Coffee .rtIn:hover {
    color: red;
  }
  
  .RadTreeView.RadTreeView_Coffee .rtUL > .rtLI {
    border: none;
  }
  
  .RadTreeView.RadTreeView_Coffee > .rtUL > .rtLI .rtLI .rtIn {
    /* children should have less padding */
    padding: 5px 15px;
  }
  
  .RadTreeView.RadTreeView_Coffee > .rtUL > .rtLI > .rtUL {
    padding-right: 0px;
  }
  
  .RadTreeView.RadTreeView_Coffee .rtUL .rtUL {
    padding-left: 25px;
  }
  
  .RadTreeView.RadTreeView_Coffee .rtPlus, .RadTreeView.RadTreeView_Coffee .rtMinus {
    background: #222222;
    width: 12px;
    height: 12px;
    -webkit-mask-image: url("images/auxIcons.svg#caret");
    -webkit-mask-repeat: no-repeat;
    top: 19px;
    left: 5px;
    margin: 0;
  }
  
  .RadTreeView.RadTreeView_Coffee .rtPlus:before, .RadTreeView.RadTreeView_Coffee .rtMinus:before {
    display: none;
  }
  
  .RadTreeView.RadTreeView_Coffee .rtPlus:hover, .RadTreeView.RadTreeView_Coffee .rtPlus:focus, .RadTreeView.RadTreeView_Coffee .rtMinus:hover, .RadTreeView.RadTreeView_Coffee .rtMinus:focus {
    background: #27A9CC;
  }
  
  .RadTreeView.RadTreeView_Coffee .rtMinus {
    transform: rotate(180deg);
  }
  
  .account-page-top-area {
    border-top-left-radius: 24px;
  }
  
  /* Horizontal Tabs */
  .RadTabStrip_MetroTouch {
    background-color: transparent;
    padding: 5px;
  }
  
  .RadTabStrip_MetroTouch.RadTabStrip_MetroTouch {
    font: 300 20px "Poppins", Helvetica, sans-serif !important;
    line-height: 1.6;
  }
  
  html .RadTabStrip_MetroTouch .rtsLevel1 {
    border: none;
  }
  
  html .RadTabStrip_MetroTouch .rtsLevel1 a.rtsLink {
    background-color: #496DAD;
    border-color: transparent;
    color: #ffffff;
    padding: 8px 10px 8px 10px;
    margin: 10px 5px 0 0;
    border-radius: 4px 4px 0px 0px;
  }
  
  html .RadTabStrip_MetroTouch .rtsLevel1 a.rtsLink:hover, html .RadTabStrip_MetroTouch .rtsLevel1 a.rtsLink.rtsSelected, html .RadTabStrip_MetroTouch .rtsLevel1 a.rtsLink.rtsSelected:hover {
    border-color: transparent;
    background-color: #ffffff;
    padding: 8px 10px 8px 10px;
    text-decoration: none !important;
    color: #252E38;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  }
  
  html .RadTabStrip_MetroTouch .rtsLevel1 a.rtsLink.rtsSelected, html .RadTabStrip_MetroTouch .rtsLevel1 a.rtsLink.rtsSelected:hover {
    text-transform: none;
  }
  
  html .RadTabStrip_MetroTouch .rtsLevel1 .rtsFirst .rtsLink {
    border-radius: 4px 4px 0px 0px;
    margin: 10px 5px 0px 10px;
    font-weight: 500;
  }
  
  .RadMultiPage {
    background: #ffffff;
    border-radius: 4px;
    border: 0;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  }
  
  /* Vertical tabs */
  .RadTabStripVertical .rtsFirst a.rtsLink {
    margin: 10px 0px 2px 5px !important;
  }
  
  html .RadTabStripVertical .rtsLevel1 a.rtsLink {
    margin: 2px 0px 2px 5px;
    border-radius: 4px 0px 0px 4px;
  }
  
  html .RadTabStripVertical .rtsLevel1 a.rtsLink:hover, html .RadTabStripVertical .rtsLevel1 a.rtsLink.rtsSelected, html .RadTabStripVertical .rtsLevel1 a.rtsLink.rtsSelected:hover {
    background-color: transparent;
    color: #252E38;
    text-transform: none;
    margin: 2px 0px 2px 5px;
    border-radius: 4px 0px 0px 4px;
  }
  
  .RadTabStripVertical .rtsUL .rtsLink .rtsTxt {
    border: 1px solid transparent;
    padding: 8px 10px;
    display: inline;
  }
  
  .RadTabStripVertical .rtsUL .rtsSelected .rtsTxt,
  .RadTabStripVertical .rtsUL .rtsLink:hover .rtsTxt {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
  }
  
  select,
  textarea,
  input[type="text"],
  input[type="password"],
  input[type="datetime"],
  input[type="datetime-local"],	
  input[type="date"],
  input[type="month"],
  input[type="time"],
  input[type="week"],
  input[type="number"],	
  input[type="email"],
  input[type="url"],
  input[type="search"],
  input[type="tel"],
  input[type="color"],
  .uneditable-input {
    padding: 5px 10px;
    border-color: #d8d8d8;
    border-radius: 4px;
    line-height: 28px;
    font-size: inherit;

    -webkit-box-shadow: none;
            box-shadow: none;
  }

  select {
    padding-right: 22px;
    background-image: url('data:image/svg+xml;utf8,<svg width="18" height="12" fill="%232AA3FB" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z"/></svg>');
    background-position: 95% 50%;
    background-origin: padding-box;
    background-repeat: no-repeat;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }

  select:focus,
  textarea:focus,
  input[type="text"]:focus,
  input[type="password"]:focus,
  input[type="datetime"]:focus,
  input[type="datetime-local"]:focus,
  input[type="date"]:focus,
  input[type="month"]:focus,
  input[type="time"]:focus,
  input[type="week"]:focus,
  input[type="number"]:focus,
  input[type="email"]:focus,
  input[type="url"]:focus,
  input[type="search"]:focus,
  input[type="tel"]:focus,
  input[type="color"]:focus,
  .uneditable-input:focus,
  .input-fake:focus {
    border-color: var(--primary);
    outline: 0;
    -webkit-box-shadow: 0 0 10px 3px var(--primary);
            box-shadow: 0 0 10px 3px var(--primary);
  }
  
  /* Increase default input width due to large font and field padding for this theme */
  input, .RadComboBox.RadComboBox {
    width: 16.25em;
  }
  
  label,
  .Label {
    font-weight: 600;
  }
  
  .Wrapper-HomePage .header:before, .Wrapper-HomePage
  .header-aux-container, .Wrapper-HomePage
  .header-logo-container, .Wrapper-HomePage
  .header-primary-nav-container {
    animation: slide-down-with-delay 1s ease-out;
  }
  
  body:not(.Wrapper-HomePage) .header:before, body:not(.Wrapper-HomePage)
  .header-aux-container, body:not(.Wrapper-HomePage)
  .header-logo-container, body:not(.Wrapper-HomePage)
  .header-primary-nav-container {
    animation: fade-in 1s ease-in;
  }
  
  .SearchField label,
  .SearchResultSummary .ListItemTitle a,
  .SelectedItem a {
    font-size: 110%;
    font-weight: 600;
    border-radius: 4px;
  }
  
  .SearchField label, .SearchField label:hover, .SearchField label:active, .SearchField label:visited,
  .SearchResultSummary .ListItemTitle a,
  .SearchResultSummary .ListItemTitle a:hover,
  .SearchResultSummary .ListItemTitle a:active,
  .SearchResultSummary .ListItemTitle a:visited,
  .SelectedItem a,
  .SelectedItem a:hover,
  .SelectedItem a:active,
  .SelectedItem a:visited {
    color: #fff !important;
  }
  
  .ContentBlockPrimary,
  .FilterPanel {
    background-color: transparent;
  }
  
  .transaction-date-toggle {
    background-position: -210px -103px;
  }
  
  .list-toggle {
    background-position: -350px -103px;
  }
  
  .RadPicker.RadPicker_Metro .rcCalPopup:hover, .RadPicker.RadPicker_Metro .rcCalPopup:focus, .RadPicker.RadPicker_Metro .rcCalPopup:active, .RadPicker.RadPicker_Metro .rcTimePopup:hover, .RadPicker.RadPicker_Metro .rcTimePopup:focus, .RadPicker.RadPicker_Metro .rcTimePopup:active,
  .RadPicker.RadPicker_MetroTouch .rcCalPopup:hover,
  .RadPicker.RadPicker_MetroTouch .rcCalPopup:focus,
  .RadPicker.RadPicker_MetroTouch .rcCalPopup:active,
  .RadPicker.RadPicker_MetroTouch .rcTimePopup:hover,
  .RadPicker.RadPicker_MetroTouch .rcTimePopup:focus,
  .RadPicker.RadPicker_MetroTouch .rcTimePopup:active {
    color: #ffffff;
    background-color: #252E38;
  }
  
  .RadPicker_Metro.rcCalPopupOpen .rcCalPopup,
  .RadPicker_Metro.rcMYPopupOpen .rcCalPopup,
  .RadPicker_Metro.rcTimePopupOpen .rcTimePopup {
    border-color: #252E38;
  }
  
  /* Recent History iPart */
  .RecentHistoryListHorizontal > li > a {
    font-size: 85%;
    padding: 8px 18px;
    border-radius: 4px;
    border: 1px solid transparent;
    text-decoration: none;
  }
  
  .RecentHistoryListHorizontal > li.RecentHistoryClear > a:hover, .RecentHistoryListHorizontal > li.RecentHistoryClear > a:active {
    text-decoration: underline;
  }
  
  .RecentHistoryListHorizontal > li.RecentHistoryItem > a {
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  }
  
  .RecentHistoryListHorizontal > li.RecentHistoryItem > a:hover, .RecentHistoryListHorizontal > li.RecentHistoryItem > a:active {
    border-color: #252E38;
  }
  
  .touch-radio-binary input[type="radio"]:checked + label,
  .touch-radiobuttons input[type="radio"]:checked + label {
    background: #4E937A;
    border-color: #4E937A;
    color: #ffffff;
  }
  
  /* Individual social sprite buttons */
  .SocialSprite.FacebookIcon {
    background: #ffffff !important;
    /* !important  - Help upgrades with custom themes, remove eventually */
  }
  
  .SocialSprite.FacebookIcon:after {
    background-color: #252E38;
  }
  
  .SocialSprite.FacebookIcon:hover, .SocialSprite.FacebookIcon:focus {
    background-color: #3B5998 !important;
  }
  
  .SocialSprite.FacebookIcon:hover:after, .SocialSprite.FacebookIcon:focus:after {
    background-color: #ffffff !important;
  }
  
  .SocialSprite.TwitterIcon {
    background: #ffffff !important;
    /* !important  - Help upgrades with custom themes, remove eventually */
  }
  
  .SocialSprite.TwitterIcon:after {
    background-color: #252E38;
  }
  
  .SocialSprite.TwitterIcon:hover, .SocialSprite.TwitterIcon:focus {
    background-color: #000 !important;
  }
  
  .SocialSprite.TwitterIcon:hover:after, .SocialSprite.TwitterIcon:focus:after {
    background-color: #ffffff !important;
  }
  
  .SocialSprite.LinkedInIcon {
    background: #ffffff !important;
    /* !important  - Help upgrades with custom themes, remove eventually */
  }
  
  .SocialSprite.LinkedInIcon:after {
    background-color: #252E38;
  }
  
  .SocialSprite.LinkedInIcon:hover, .SocialSprite.LinkedInIcon:focus {
    background-color: #0077B5 !important;
  }
  
  .SocialSprite.LinkedInIcon:hover:after, .SocialSprite.LinkedInIcon:focus:after {
    background-color: #ffffff !important;
  }
  
  .SocialSprite.YouTubeIcon {
    background: #ffffff !important;
    /* !important  - Help upgrades with custom themes, remove eventually */
  }
  
  .SocialSprite.YouTubeIcon:after {
    background-color: #252E38;
  }
  
  .SocialSprite.YouTubeIcon:hover, .SocialSprite.YouTubeIcon:focus {
    background-color: #c4302b !important;
  }
  
  .SocialSprite.YouTubeIcon:hover:after, .SocialSprite.YouTubeIcon:focus:after {
    background-color: #ffffff !important;
  }
  
  .SocialSprite.EmailIcon {
    background: #ffffff !important;
    /* !important  - Help upgrades with custom themes, remove eventually */
  }
  
  .SocialSprite.EmailIcon:after {
    background-color: #252E38;
  }
  
  .SocialSprite.EmailIcon:hover, .SocialSprite.EmailIcon:focus {
    background-color: #0a629a !important;
  }
  
  .SocialSprite.EmailIcon:hover:after, .SocialSprite.EmailIcon:focus:after {
    background-color: #ffffff !important;
  }
  
  .SocialSprite.PinterestIcon {
    background: #ffffff !important;
    /* !important  - Help upgrades with custom themes, remove eventually */
  }
  
  .SocialSprite.PinterestIcon:after {
    background-color: #252E38;
  }
  
  .SocialSprite.PinterestIcon:hover, .SocialSprite.PinterestIcon:focus {
    background-color: #E60023 !important;
  }
  
  .SocialSprite.PinterestIcon:hover:after, .SocialSprite.PinterestIcon:focus:after {
    background-color: #ffffff !important;
  }
  
  .SocialSprite.GPlusIcon {
    background: #ffffff !important;
    /* !important  - Help upgrades with custom themes, remove eventually */
  }
  
  .SocialSprite.GPlusIcon:after {
    background-color: #252E38;
  }
  
  .SocialSprite.GPlusIcon:hover, .SocialSprite.GPlusIcon:focus {
    background-color: #db4a39 !important;
  }
  
  .SocialSprite.GPlusIcon:hover:after, .SocialSprite.GPlusIcon:focus:after {
    background-color: #ffffff !important;
  }
  
  .SocialSprite.SkypeIcon {
    background: #ffffff !important;
    /* !important  - Help upgrades with custom themes, remove eventually */
  }
  
  .SocialSprite.SkypeIcon:after {
    background-color: #252E38;
  }
  
  .SocialSprite.SkypeIcon:hover, .SocialSprite.SkypeIcon:focus {
    background-color: #00aff0 !important;
  }
  
  .SocialSprite.SkypeIcon:hover:after, .SocialSprite.SkypeIcon:focus:after {
    background-color: #ffffff !important;
  }
  
  .SocialSprite.InstagramIcon {
    background: #ffffff !important;
    /* !important  - Help upgrades with custom themes, remove eventually */
  }
  
  .SocialSprite.InstagramIcon:after {
    background-color: #252E38;
  }
  
  .SocialSprite.InstagramIcon:hover, .SocialSprite.InstagramIcon:focus {
    background-color: #e1306c !important;
  }
  
  .SocialSprite.InstagramIcon:hover:after, .SocialSprite.InstagramIcon:focus:after {
    background-color: #ffffff !important;
  }
  
  .SocialSprite.MediumIcon {
    background: #ffffff !important;
    /* !important  - Help upgrades with custom themes, remove eventually */
  }
  
  .SocialSprite.MediumIcon:after {
    background-color: #252E38;
  }
  
  .SocialSprite.MediumIcon:hover, .SocialSprite.MediumIcon:focus {
    background-color: #000 !important;
  }
  
  .SocialSprite.MediumIcon:hover:after, .SocialSprite.MediumIcon:focus:after {
    background-color: #ffffff !important;
  }
  
  .SocialSprite.TikTokIcon {
    background: #ffffff !important;
    /* !important  - Help upgrades with custom themes, remove eventually */
  }
  
  .SocialSprite.TikTokIcon:after {
    background-color: #252E38;
  }
  
  .SocialSprite.TikTokIcon:hover, .SocialSprite.TikTokIcon:focus {
    background-color: #000 !important;
  }
  
  .SocialSprite.TikTokIcon:hover:after, .SocialSprite.TikTokIcon:focus:after {
    background-color: #ffffff !important;
  }
  
  .SocialSprite.SnapChatIcon {
    background: #ffffff !important;
    /* !important  - Help upgrades with custom themes, remove eventually */
  }
  
  .SocialSprite.SnapChatIcon:after {
    background-color: #252E38;
  }
  
  .SocialSprite.SnapChatIcon:hover, .SocialSprite.SnapChatIcon:focus {
    background-color: #fffc00 !important;
  }
  
  .SocialSprite.SnapChatIcon:hover:after, .SocialSprite.SnapChatIcon:focus:after {
    background-color: #ffffff !important;
  }
  
  .SocialSprite {
    background: #ffffff;
    opacity: 1;
    margin: 0px 3px;
  }
  
  .SocialSprite.LargeButtons {
    width: 35px;
    height: 35px;
  }
  
  .SocialSprite.LargeButtons:after {
    width: 20px;
    height: 20px;
  }
  
  /**Member homepage**/
  .mhp {
    /*100 community - blog*/
  }
  
  .mhp .engage .panel-body-container {
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border: 1px solid #dbdbdb;
  }
  
  .mhp .engage .panel-body-container {
    padding: 20px 15px 80px 15px;
  }
  
  .mhp .engagement-link {
    margin-top: -120px;
    margin-bottom: 80px;
    padding: 0px 15px;
  }
  
  @media (max-width: 991px) {
    .mhp .engagement-link {
      margin-top: -135px;
    }
  }
  
  .mhp .CommunityItemActionLinks,
  .mhp .CommunityParentLink,
  .mhp .CommunityItemBody {
    display: none;
  }
  
  .mhp .CommunityDateLine {
    font-size: 0.8em;
    font-style: normal;
  }
  
  .mhp .CommunityDateLine a {
    color: #222222;
    font-weight: 600;
  }
  
  .mhp .CommunityCommentItem,
  .mhp .CommunityTopicItem {
    margin: 0px 0px 20px 0px;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbdbdb;
    background: #ffffff;
  }
  
  .mhp .CommunityCommentItem .CommunityParentLink {
    display: block;
    margin-left: 60px;
  }
  
  .mhp .CommunityCommentItem .CommunityParentLink:before {
    content: 'Reply to';
    background-image: url(images/reply-arrow.svg);
    background-repeat: no-repeat;
    background-size: 14px 10px;
    background-position: left center;
    padding-left: 20px;
  }
  
  .mhp .CommunityProfileTitle {
    margin: 0;
  }
  
  .mhp .CommunityProfilePicture img {
    border-radius: 50px;
    border: 1px solid #dbdbdb;
  }
  
  .mhp .CommunityItemTitle {
    font-weight: 600;
    font-size: 1em;
  }
  
  .mhp .CommunityRepeaterTable .p-3 {
    margin: 0px 0px 20px 0px;
    padding: 25px !important;
    border-radius: 4px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #dbdbdb;
    background: #ffffff;
    font-size: 16px;
  }
  
  .mhp .CommunityRepeaterTable .pt-3 {
    display: none;
  }
  
  .mhp .CommunityRepeaterTable .SectionTitle {
    color: #496DAD;
    font-weight: 600;
    font-size: 18px;
  }
  
  .mhp .CommunityRepeaterTable .SectionTitle:hover, .mhp .CommunityRepeaterTable .SectionTitle:focus, .mhp .CommunityRepeaterTable .SectionTitle:active {
    color: #3a5689;
  }
  
  .mhp .CommunityRepeaterTable .PublishDate {
    font-style: normal;
    font-size: 14px;
  }
  
  .mhp .CommunityRepeaterTable .PublishDate span:last-of-type {
    font-weight: 600;
  }
  
  @media (max-width: 767px) {
    .mhp .row {
      max-width: 500px;
      margin: 0px auto;
    }
  }
  
  .mhp-community .panel-heading {
    display: none;
  }
  
  .mhp-community .panel-body, .mhp-community .PanelBody {
    padding: 0px;
  }
  
  .no-HR hr {
    display: none;
  }
  
  .medium-chartbox .donut-bite:BEFORE {
    background-color: #ffffff !important;
  }
  
  .medium-chartbox span.donut-filling {
    font-weight: 700;
    font-size: 3em;
    color: #012316;
  }
  
  .medium-chartbox .donut-caption {
    font-weight: 700;
    font-size: 1.3em;
  }
  
  .large.donut-bite:before, .large.donut-bite:after {
    background-color: #4E937A !important;
  }
  
  /**Icon headings**/
  .heading-icon .panel-heading {
    padding: 6px 0px;
  }
  
  .heading-icon .panel-title,
  .heading-icon h3 {
    text-align: left;
    text-transform: uppercase;
    color: #525252;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .heading-icon .panel-title:before,
  .heading-icon h3:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    background: #525252;
    -webkit-mask-size: 20px 20px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    margin-right: 10px;
  }
  
  .heading-icon.engage .panel-title:before,
  .heading-icon.engage h3:before {
    -webkit-mask-image: url(images/mh-icons.svg#engage);
    -webkit-mask-size: 22px 22px;
    width: 22px;
    height: 22px;
  }
  
  .heading-icon.orgs .panel-title:before,
  .heading-icon.orgs h3:before {
    -webkit-mask-image: url(images/mh-icons.svg#orgs);
    -webkit-mask-size: 25px 25px;
    width: 25px;
    height: 25px;
  }
  
  .heading-icon.events .panel-title:before,
  .heading-icon.events h3:before {
    -webkit-mask-image: url(images/mh-icons.svg#events);
  }
  
  .heading-icon.committees .panel-title:before,
  .heading-icon.committees h3:before {
    -webkit-mask-image: url(images/mh-icons.svg#committees);
    -webkit-mask-size: 30px 30px;
    width: 30px;
    height: 30px;
    -webkit-mask-position: 0px 5px;
  }
  
  .heading-icon.sections .panel-title:before,
  .heading-icon.sections h3:before {
    -webkit-mask-image: url(images/mh-icons.svg#sections);
    -webkit-mask-size: 25px 25px;
    width: 25px;
    height: 25px;
  }
  
  .heading-icon.orders .panel-title:before,
  .heading-icon.orders h3:before {
    -webkit-mask-image: url(images/mh-icons.svg#orders);
  }
  
  .heading-icon.community .panel-title:before,
  .heading-icon.community h3:before {
    -webkit-mask-image: url(images/mh-icons.svg#community);
  }
  
  .heading-icon.clubs .panel-title:before,
  .heading-icon.clubs h3:before {
    -webkit-mask-image: url(images/mh-icons.svg#committees);
  }
  
  /**CTA icons**/
  .cta-icon {
    display: flex;
    background: #ffffff;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
    border: 1px solid #dbdbdb;
    min-height: 184px;
    justify-content: center;
    align-items: center;
  }
  
  .cta-icon a {
    color: #000000;
  }
  
  .cta-icon a img {
    margin: 0px auto 10px auto;
    transition: all 0.2s ease;
    display: block;
    height: 65px !important;
  }
  
  .cta-icon a:hover, .cta-icon a:focus, .cta-icon a:active {
    text-decoration: none;
  }
  
  .cta-icon a:hover img, .cta-icon a:focus img, .cta-icon a:active img {
    transform: scale(1.1);
  }
  
  @media (max-width: 991px) {
    .ctas .col-sm-4 {
      width: 50%;
    }
  }
  
  @media (max-width: 767px) {
    .ctas .col-sm-4 {
      width: 100%;
      padding: 0;
    }
  }
  
  /*Member home events**/
  .my-events {
    margin-bottom: 60px;
  }
  
  .my-events .pagination {
    display: none;
  }
  
  .my-events .panel-body, .my-events .PanelBody {
    padding: 0;
  }
  
  .my-events .event {
    display: flex;
  }
  
  .my-events .card {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #dbdbdb;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    margin: 20px 0px;
  }
  
  .my-events section:first-of-type .card {
    margin-top: 0;
  }
  
  .my-events section:last-of-type .card {
    margin-bottom: 0;
  }
  
  .my-events .card-body {
    padding: 0;
  }
  
  .my-events .image {
    display: block;
    width: 95px;
    height: auto;
    min-height: 95px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
  }
  
  .my-events .details {
    display: flex;
    align-items: center;
    padding: 10px 0px;
  }
  
  .my-events .event-details {
    max-width: 53%;
    padding: 10px 0px;
  }
  
  .my-events .date {
    padding: 0px 25px 0px 0px;
    margin: 0px 25px;
    text-align: center;
    position: relative;
  }
  
  .my-events .date:after {
    display: block;
    content: '';
    width: 1px;
    height: 80%;
    background: #B2B2B2;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  
  .my-events .day {
    font-size: 38px;
    color: #496DAD;
    font-weight: 700;
    line-height: 1em;
  }
  
  .my-events .month {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    margin: -5px 0px -5px 0px;
  }
  
  .my-events .title {
    font-weight: 600;
    line-height: 1.2em;
  }
  
  .my-events .datetime {
    display: none;
  }
  
  .my-events .link {
    position: absolute;
    right: 20px;
  }
  
  .my-events section:first-of-type .date {
    display: none;
  }
  
  .my-events section:first-of-type .datetime {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin: 5px 0px;
  }
  
  .my-events section:first-of-type .image {
    width: 265px;
    height: auto;
    min-height: 140px;
  }
  
  .my-events section:first-of-type .details {
    margin-left: 20px;
    flex-shrink: 0;
    width: 100%;
  }
  
  .my-events section:first-of-type .title {
    font-size: 20px;
  }
  
  .my-events section:first-of-type .event-details {
    max-width: 42%;
    width: 100%;
  }
  
  @media (max-width: 991px) {
    .my-events .event,
    .my-events .link {
      position: relative;
      display: block;
    }
    .my-events .details {
      flex-wrap: wrap;
      padding: 0;
    }
    .my-events .image {
      display: none;
    }
    .my-events .link {
      padding: 15px;
      right: auto;
      text-align: center;
      border-top: 1px solid #B2B2B2;
      width: 100%;
    }
    .my-events .date {
      padding: 15px 25px 10px 0px;
    }
    .my-events .date:after {
      height: 100%;
    }
    .my-events section:first-of-type .details {
      margin-left: 0;
    }
    .my-events section:first-of-type .image {
      display: block;
      min-height: 180px;
      width: 100%;
    }
    .my-events section:first-of-type .event-details {
      max-width: 100%;
      padding: 15px;
    }
  }
  
  @media (max-width: 767px) {
    .my-events .event-details {
      max-width: 100%;
      padding: 15px;
    }
    .my-events .date {
      width: 100%;
      padding: 15px;
      margin: 0px auto;
    }
    .my-events .date:after {
      height: 1px;
      width: 100%;
      top: auto;
    }
  }
  
  @media (max-width: 767px) {
    .reverse-mobile {
      flex-direction: column-reverse;
    }
  }
  
  /*Member home purchases*/
  .orders {
    font-weight: 300;
    margin-bottom: 40px;
  }
  
  .orders .panel-body, .orders .PanelBody {
    padding: 0px 15px;
  }
  
  .orders .QueryTemplateSet {
    gap: 0px 2%;
  }
  
  .orders .col {
    width: 31%;
    margin: 0;
    padding: 0;
  }
  
  .orders .card {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #dbdbdb;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  }
  
  .orders .card-body {
    padding: 15px;
  }
  
  .orders a {
    font-weight: 600;
  }
  
  .orders a.readMore {
    margin: 10px 0px 0px -15px;
    display: block;
  }
  
  .orders .date {
    font-size: 16px;
    margin: -5px 0px 10px 0px;
  }
  
  .orders .title {
    margin-bottom: 2px;
  }
  
  .orders .total {
    margin-bottom: 10px;
  }
  
  .orders .shipped {
    font-weight: 600;
  }
  
  .orders .balance {
    font-weight: 600;
    color: #F17F29;
  }
  
  @media (max-width: 991px) {
    .orders .col {
      width: 100%;
      flex: auto;
      margin-bottom: 25px !important;
    }
    .orders .panel-body, .orders .PanelBody {
      padding: 0px;
    }
    .orders a.readMore {
      margin: 0px;
      display: block;
    }
  }
  
  /*Member home orgs*/
  .my-orgs .panel-body-container,
  .my-committees .panel-body-container,
  .my-sections .panel-body-container,
  .my-clubs .panel-body-container {
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border: 1px solid #dbdbdb;
  }
  
  .my-orgs .panel-body, .my-orgs .PanelBody,
  .my-committees .panel-body,
  .my-committees .PanelBody,
  .my-sections .panel-body,
  .my-sections .PanelBody,
  .my-clubs .panel-body,
  .my-clubs .PanelBody {
    padding: 25px;
  }
  
  .my-orgs .QueryTemplateItem,
  .my-committees .QueryTemplateItem,
  .my-sections .QueryTemplateItem,
  .my-clubs .QueryTemplateItem {
    padding: 25px 0px;
    border-bottom: 1px solid #dbdbdb;
  }
  
  .my-orgs .QueryTemplateItem p,
  .my-committees .QueryTemplateItem p,
  .my-sections .QueryTemplateItem p,
  .my-clubs .QueryTemplateItem p {
    margin: 0;
  }
  
  .my-orgs .QueryTemplateItem a,
  .my-committees .QueryTemplateItem a,
  .my-sections .QueryTemplateItem a,
  .my-clubs .QueryTemplateItem a {
    font-weight: 600;
  }
  
  .my-orgs section:first-of-type .QueryTemplateItem,
  .my-committees section:first-of-type .QueryTemplateItem,
  .my-sections section:first-of-type .QueryTemplateItem,
  .my-clubs section:first-of-type .QueryTemplateItem {
    padding-top: 0;
  }
  
  .my-orgs section:last-of-type .QueryTemplateItem,
  .my-committees section:last-of-type .QueryTemplateItem,
  .my-sections section:last-of-type .QueryTemplateItem,
  .my-clubs section:last-of-type .QueryTemplateItem {
    border: none;
    padding-bottom: 0;
  }
  
  /*Member home profile*/
  .mini-profile-standard .mini-profile {
    background-color: #0D6975;
    border-radius: 12px;
    padding: 34px 25px 76px;
    color: white;
  }

  .mhp .profile {
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    border: 1px solid #dbdbdb;
    padding-top: 15px;
  }
  
  .mhp .profile .iMIS-WebPart > .ContentItemContainer,
  .mhp .profile .WebPartZone > .ContentItemContainer {
    margin: 0;
  }
  
  .mhp .profile .profile-link {
    margin: 0px 0px 10px 0px;
  }
  
  .my-profile {
    text-align: center;
    font-weight: 300;
  }
  
  .my-profile .image {
    display: block;
    background-size: cover;
    background-position: center;
    width: 150px;
    height: 150px;
    border-radius: 150px;
    margin: 0px auto;
  }
  
  .my-profile .name {
    display: block;
    font-weight: 600;
    font-size: 24px;
    margin: 15px 0px 0px 0px;
  }