.breakpointWrapper {
  position: relative;
}
.breakpointWrapper::after {
  content: "desktop";
  position: fixed;
  bottom: 7.5%;
  right: 0;
  background-color: black;
  color: white;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  z-index: 99999;
}
@media screen and (max-width: 768px) {
  .breakpointWrapper::after {
    content: "mobile";
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .breakpointWrapper::after {
    content: "tablet";
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .breakpointWrapper::after {
    content: "desktop";
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .breakpointWrapper::after {
    content: "widescreen";
  }
}
@media screen and (min-width: 1408px) and (max-width: 1919px) {
  .breakpointWrapper::after {
    content: "fullhd (1440p)";
  }
}
@media screen and (min-width: 1920px) and (max-width: 2559px) {
  .breakpointWrapper::after {
    content: "ultrahd (1080p+)";
  }
}
@media screen and (min-width: 2560px) {
  .breakpointWrapper::after {
    content: "qhd (1440p+)";
  }
}
.breakpointWrapper::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 999998;
  opacity: 0.25;
}
@media screen and (max-width: 768px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(255, 0, 0, 0.9) calc(8.333% - 1px), rgba(255, 0, 0, 0.9) 8.333%);
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(0, 0, 255, 0.9) calc(8.333% - 1px), rgba(0, 0, 255, 0.9) 8.333%);
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(0, 255, 0, 0.9) calc(8.333% - 1px), rgba(0, 255, 0, 0.9) 8.333%);
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(255, 165, 0, 0.9) calc(8.333% - 1px), rgba(255, 165, 0, 0.9) 8.333%);
  }
}
@media screen and (min-width: 1408px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(128, 0, 128, 0.9) calc(8.333% - 1px), rgba(128, 0, 128, 0.9) 8.333%);
  }
}

.smart-icons-block {
  --smart-icons-gap: 32px;
  --smart-icons-max-per-row: 5;
  --smart-icons-icon-width: 100px;
  --smart-icons-text-size: 16px;
  --smart-icons-text-color: #000000;
  --smart-icons-text-align: center;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.smart-icons-block .smart-icons__grid {
  display: grid;
  grid-template-columns: repeat(var(--smart-icons-max-per-row), 1fr);
  gap: clamp(0.5rem, var(--smart-icons-gap), var(--smart-icons-gap));
  width: 100%;
}
@media screen and (max-width: 768px) {
  .smart-icons-block .smart-icons__grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
.smart-icons-block .smart-icons__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  min-width: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .smart-icons-block .smart-icons__item {
    flex-direction: row;
    align-items: center;
    width: 100% !important;
  }
}
.smart-icons-block .smart-icons__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: 100%;
  outline: none;
}
@media screen and (max-width: 768px) {
  .smart-icons-block .smart-icons__link {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
}
.smart-icons-block .smart-icons__link:hover .smart-icons__icon img, .smart-icons-block .smart-icons__link:focus .smart-icons__icon img {
  transform: scale(1.1);
}
.smart-icons-block .smart-icons__link:hover .smart-icons__title, .smart-icons-block .smart-icons__link:focus .smart-icons__title {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.smart-icons-block .smart-icons__link:focus .smart-icons__icon {
  outline: 2px solid #00355F;
  outline-offset: 2px;
}
.smart-icons-block .smart-icons__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border-radius: 0;
  flex-shrink: 1;
  min-width: 0;
  width: 100%;
  max-width: var(--smart-icons-icon-width);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .smart-icons-block .smart-icons__icon {
    margin-bottom: 0;
    margin-right: 1rem;
    margin-left: 0;
    flex-shrink: 0;
    width: auto;
    max-width: none;
  }
}
.smart-icons-block .smart-icons__icon img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  transition: transform 0.2s ease-in-out;
  display: block;
}
@media screen and (max-width: 768px) {
  .smart-icons-block .smart-icons__icon img {
    width: 67px !important;
    height: 67px !important;
  }
}
.smart-icons-block .smart-icons__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .smart-icons-block .smart-icons__content {
    align-items: flex-start;
    flex: 1;
    min-width: 0;
  }
}
.smart-icons-block .smart-icons__title {
  margin: 0;
  font-family: "Public Sans", sans-serif;
  font-weight: 500;
  line-height: 1.3;
  font-size: var(--smart-icons-text-size);
  color: var(--smart-icons-text-color);
  text-align: var(--smart-icons-text-align);
  transition: text-decoration 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .smart-icons-block .smart-icons__title {
    font-size: 16px !important;
    text-align: left !important;
  }
}
.smart-icons-block .smart-icons__subtitle {
  margin: 0.25rem 0 0 0;
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  font-size: calc(var(--smart-icons-text-size) * 0.85);
  color: var(--smart-icons-text-color);
  text-align: var(--smart-icons-text-align);
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .smart-icons-block .smart-icons__subtitle {
    font-size: 14px !important;
    text-align: left !important;
    margin-top: 0.25rem;
  }
}
.smart-icons-block .smart-icons__empty {
  width: 100%;
  padding: 2rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.05);
  border: 2px dashed rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}
.smart-icons-block .smart-icons__empty p {
  margin: 0;
  color: #666;
  font-style: italic;
}
.smart-icons-block.alignwide .sehu-container {
  max-width: 95% !important;
}
.smart-icons-block.alignfull .sehu-container {
  max-width: 100% !important;
  padding: 0 2rem;
}
@media (prefers-reduced-motion: reduce) {
  .smart-icons-block .smart-icons__icon img {
    transition: none;
  }
  .smart-icons-block .smart-icons__link:hover .smart-icons__icon img, .smart-icons-block .smart-icons__link:focus .smart-icons__icon img {
    transform: none;
  }
}
