html {
  scroll-behavior: smooth;
}
.selfservicequicklinks [class*="--background-gray"] {
  background-color: #f6f6f6;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.selfservicequicklinks .mt_direction_right_to_left [class*="--background-gray"] {
  margin-right: calc(-50vw + 50%);
  margin-left: auto;
}
.ssQuickLinks__items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex-direction: row;
}
.ssQuickLinks__item {
  flex: 1 0;
  flex-basis: calc(33.333333% - 20px);
}
.ssQuickLinks__wrapper {
  max-width: 1009px;
  margin: 0 auto;
  padding: 95px 0;
}
/* End */
/* Quick Links Item Component Styles */
.quicklink {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid #cccccc;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}
.isEditMode .quicklink {
  height: auto !important;
}
a.quicklink__url {
  cursor: pointer;
  text-decoration: none;
  color: unset;
}
a.quicklink__url:hover .quicklink,
a.quicklink__url:active .quicklink,
a.quicklink__url:focus .quicklink {
  text-decoration: none;
  border: 1px solid #004494;
}
.quicklink__header {
  display: flex;
  gap: 10px;
  width: 100%;
  align-items: center;
}
.quicklink__header__image {
  max-width: 32px;
  max-height: 32px;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quicklink__header__image picture {
  display: flex;
  width: 100%;
  align-items: center;
}
.quicklink__header__image img {
  width: 100%;
  height: auto;
}
.quicklink__header__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #004494;
  margin: 0;
  width: 100%;
}
.quicklink__description {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
/* End */
@media (max-width: 600px) {
  .ssQuickLinks__item {
    flex: 1 0;
    flex-basis: calc(100% - 20px);
  }
  .ssQuickLinks {
    margin: 0 20px;
  }
  [class*='--background-gray'] .ssQuickLinks__wrapper {
    padding: 60px 0;
  }
  .quicklink__description {
    display: none;
  }
}
