/* wwwroot/Icom/_IcomVars.css */
:root {
  --icom-default-border-radius: clamp(.5rem, 5vw, 1rem);
  --icom-default-gap: calc(var(--icom-default-border-radius) * 0.8);
  --icom-button-default-border-radius: .25rem;
  --icom-button-default-padding-x: 1em;
  --icom-button-default-padding-y: 0em;
  --icom-heading-default-weight: 700;
  --icom-header-default-height: 3.5rem;
  --icom-header-default-nav-box-shadow: 0 0 .5rem rgba(0,0,0, .2), 0 0 1rem rgba(0,0,0, .1);
  --icom-header-default-nav-color: white;
  --icom-header-default-nav-bg-color: var(--icom-primary);
  --icom-light: #f8f9fa;
  --icom-dark: #171819;
  --icom-primary: var(--mud-palette-primary);
  --icom-primary-dark: var(--mud-palette-primary-darken);
  --icom-primary-light: var(--mud-palette-primary-hover);
  --icom-secondary: var(--mud-palette-secondary);
  --icom-secondary-dark: var(--mud-palette-secondary-darken);
  --icom-secondary-light: var(--mud-palette-secondary-hover);
  --icom-tertiary: var(--mud-palette-tertiary);
  --icom-tertiary-dark: var(--mud-palette-tertiary-darken);
  --icom-tertiary-light: var(--mud-palette-tertiary-hover);
  --icom-error: var(--mud-palette-error);
  --icom-error-dark: var(--mud-palette-error-darken);
  --icom-error-light: var(--mud-palette-error-lighten);
  --icom-success: var(--mud-palette-success);
  --icom-success-dark: var(--mud-palette-success-darken);
  --icom-success-light: var(--mud-palette-success-lighten);
  --icom-warn: var(--mud-palette-warning);
  --icom-warn-dark: var(--mud-palette-warning-darken);
  --icom-warn-light: var(--mud-palette-warning-lighten);
}

/* wwwroot/Icom/_IcomColors.css */
.light {
  background-color: var(--icom-light) !important;
}
.light-text {
  color: var(--icom-light) !important;
}
.dark {
  background-color: var(--icom-dark) !important;
}
.dark-text {
  color: var(--icom-dark) !important;
}
.primary {
  background-color: var(--icom-primary) !important;
}
.primary-text {
  color: var(--icom-primary) !important;
}
.primary-light {
  background-color: var(--icom-primary-light) !important;
}
.primary-light-text {
  color: var(--icom-primary-light) !important;
}
.primary-dark {
  background-color: var(--icom-primary-dark) !important;
}
.primary-dark-text {
  color: var(--icom-primary-dark) !important;
}
.secondary {
  background-color: var(--icom-secondary) !important;
}
.secondary-text {
  color: var(--icom-secondary) !important;
}
.secondary-light {
  background-color: var(--icom-secondary-light) !important;
}
.secondary-light-text {
  color: var(--icom-secondary-light) !important;
}
.secondary-dark {
  background-color: var(--icom-secondary-dark) !important;
}
.secondary-dark-text {
  color: var(--icom-secondary-dark) !important;
}
.tertiary {
  background-color: var(--icom-tertiary) !important;
}
.tertiary-text {
  color: var(--icom-tertiary) !important;
}
.tertiary-light {
  background-color: var(--icom-tertiary-light) !important;
}
.tertiary-light-text {
  color: var(--icom-tertiary-light) !important;
}
.tertiary-dark {
  background-color: var(--icom-tertiary-dark) !important;
}
.tertiary-dark-text {
  color: var(--icom-tertiary-dark) !important;
}
.error {
  background-color: var(--icom-error) !important;
}
.error-text {
  color: var(--icom-error) !important;
}
.error-light {
  background-color: var(--icom-error-light) !important;
}
.error-light-text {
  color: var(--icom-error-light) !important;
}
.error-dark {
  background-color: var(--icom-error-dark) !important;
}
.error-dark-text {
  color: var(--icom-error-dark) !important;
}
.success {
  background-color: var(--icom-success) !important;
}
.success-text {
  color: var(--icom-success) !important;
}
.success-light {
  background-color: var(--icom-success-light) !important;
}
.success-light-text {
  color: var(--icom-success-light) !important;
}
.success-dark {
  background-color: var(--icom-success-dark) !important;
}
.success-dark-text {
  color: var(--icom-success-dark) !important;
}
.warn {
  background-color: var(--icom-warn) !important;
}
.warn-text {
  color: var(--icom-warn) !important;
}
.warn-light {
  background-color: var(--icom-warn-light) !important;
}
.warn-light-text {
  color: var(--icom-warn-light) !important;
}
.warn-dark {
  background-color: var(--icom-warn-dark) !important;
}
.warn-dark-text {
  color: var(--icom-warn-dark) !important;
}

/* wwwroot/Icom/_IcomContainer.css */
.icom-container {
  margin: auto;
  max-width: 1400px;
  padding: 0 1rem;
  &.big {
    max-width: 1800px;
  }
  &.small {
    max-width: 1100px;
  }
  & & {
    padding: 0;
  }
}

/* wwwroot/Icom/_IcomHeader.css */
#icom-header {
  --header-height: var(--icom-header-default-height);
  --font-size: 1.25rem;
  color: white;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem 1rem;
  color: var(--icom-header-default-nav-color);
  @media (max-width: 800px) {
    --font-size: 1rem;
  }
  & #nav-logo {
    max-width: 35vw;
    width: max-content;
    padding: .25rem 0;
  }
  & > .inner {
    background-color: var(--icom-header-default-nav-bg-color);
    box-shadow: var(--icom-header-default-nav-box-shadow);
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    width: 100%;
    max-width: calc(1600px - 1rem);
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: .25rem;
    & > :not(#nav-logo, #nav-menu) {
      color: inherit;
      background-color: transparent;
      & .icom-btn {
        color: inherit;
        background-color: transparent;
        padding: .5em 1em;
      }
    }
    & .nav-toggle {
      cursor: pointer;
      line-height: 1rem;
      color: white;
      padding: .5em;
    }
    & .icom-btn {
      font-size: var(--font-size);
      line-height: 1rem;
    }
    & #nav-logo {
      display: flex;
      justify-content: center;
      height: calc(var(--header-height) - 1rem);
      padding: .5rem;
      width: auto;
      max-width: 200px;
      height: 100%;
      opacity: 1;
      & img {
        height: 100%;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: center;
      }
    }
    &.navbar-menu-style-logocenter {
      & #nav-logo {
        @media (min-width: 650px) {
          position: absolute;
          left: 50%;
          height: 100%;
          transform: translateX(-50%);
        }
      }
    }
    & .social-icons {
      display: flex;
      justify-content: center;
      margin-left: 1rem;
      @media (max-width: 800px) {
        display: none;
      }
    }
    #nav-menu {
      position: absolute;
      & .icom-btn {
        font-size: 1rem;
        line-height: 1rem;
      }
      &.menu-style-dropdown {
        top: calc(100% + .5rem);
        left: 0;
        right: 0;
        display: grid;
        grid-template-rows: 0fr;
        transition: .3s ease-in-out;
        left: unset;
        width: 100%;
        max-width: 300px;
        text-align: right;
        color: white;
        &.show {
          grid-template-rows: 1fr;
        }
        & > .inner {
          background-color: var(--icom-primary);
          padding-left: 0;
          overflow: hidden;
          border-radius: 1rem;
          display: flex;
          flex-direction: column;
          width: 100%;
          box-shadow: var(--icom-header-default-nav-box-shadow);
          & > :first-child {
            padding-top: 1rem;
          }
          & > :last-child {
            padding-bottom: 1rem;
          }
          & .icom-header-menu-link {
            border-bottom: 1px solid white;
            padding: .5rem 2rem;
            color: white;
            text-decoration: none;
            display: block;
            font-size: 1rem;
            width: 100%;
            position: relative;
            transition: .33s background-color ease;
            & > i {
              position: absolute;
              right: .5rem;
              top: 50%;
              transform: translateY(-50%);
            }
            &:last-child {
              border-bottom: none;
            }
            &:hover {
              background-color: rgba(0, 0, 0, .3);
            }
          }
        }
      }
      &.menu-style-sidebar {
        position: fixed;
        z-index: 100;
        right: 0;
        top: 0;
        width: max-content;
        min-width: 300px;
        max-width: 600px;
        background-color: white;
        color: var(--icom-primary);
        border-left: 1px solid var(--icom-primary);
        border-bottom: 1px solid var(--icom-primary);
        border-bottom-left-radius: var(--icom-default-border-radius);
        overflow: hidden;
        padding: 2rem;
        gap: 1rem;
        transform: translateX(100%);
        transition: .5s ease-in-out;
        height: auto;
        max-height: 100%;
        &.show {
          transform: translateX(0);
        }
        & #nav-close {
          position: absolute;
          top: 1rem;
          right: 1rem;
          cursor: pointer;
          z-index: 2;
          color: var(--icom-primary);
        }
        & > .inner {
          display: flex;
          flex-direction: column;
          width: 100%;
          & .icom-header-menu-link {
            border-top: 1px solid var(--icom-primary);
            color: var(--icom-primary);
            display: block;
            font-size: 1.5rem;
            font-weight: 700;
            position: relative;
            width: 100%;
            padding-top: 1rem;
            padding-bottom: 1rem;
            & > i {
              position: absolute;
              right: .5rem;
              top: 50%;
              transform: translateY(-50%);
              font-size: 1rem;
            }
            &:first-child {
              border-top: none;
            }
          }
          & .icom-header-sub-menu {
            display: flex;
            flex-direction: column;
            gap: .5em;
            padding-bottom: 1rem;
            padding-left: 1.5rem;
            > * {
              border-top: none;
              font-size: 1rem;
              font-weight: 400;
              padding: 0;
            }
          }
        }
      }
      &.menu-style-sidebarnested {
        position: fixed;
        z-index: 100;
        right: 0;
        top: 0;
        width: 100%;
        max-width: 600px;
        height: 100%;
        background-color: rgba(255 255 255 / .8);
        backdrop-filter: blur(8px);
        overflow: hidden;
        padding: 2rem;
        gap: 1rem;
        transform: translateX(100%);
        transition: .5s ease-in-out;
        & .nav-toggle {
          color: inherit;
        }
        &.show {
          transform: translateX(0);
          box-shadow: 0 0 1rem rgba(0, 0, 0, .4), 0 0 2rem rgba(0, 0, 0, .2);
        }
        & #nav-close {
          position: absolute;
          top: 1rem;
          right: 1rem;
          cursor: pointer;
          z-index: 2;
          color: var(--icom-primary);
        }
        & > .inner {
          display: flex;
          flex-direction: column;
          width: 100%;
          color: var(--icom-primary);
          & .icom-btn {
            font-size: 1rem;
            line-height: 1rem;
          }
          & .icom-header-menu-section {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            min-height: 100%;
            overflow-y: auto;
            padding: 2rem;
            padding-top: 4rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            opacity: 0;
            pointer-events: none;
            transition: .25s ease-in-out;
            &.show {
              opacity: 1;
              pointer-events: all;
            }
            & > .breadcrumbs {
              display: flex;
              flex-direction: row;
              flex-wrap: wrap;
              gap: 1rem;
              & .icom-btn {
                background-color: transparent;
                color: var(--icom-primary);
                font-size: 1rem;
                line-height: 1rem;
              }
              &.hide {
                visibility: hidden;
              }
            }
            & > .items-and-panel {
              display: grid;
              grid-template-columns: 1fr 1fr;
              gap: 1rem;
              @media (max-width: 600px) {
                grid-template-columns: 1fr;
                width: 100%;
                max-width: 500px;
                margin: auto;
              }
              & > .panel {
                display: flex;
                flex-direction: column;
                gap: 1rem;
                & > * {
                  margin: 0;
                }
                & img {
                  width: 100%;
                }
                &.hide {
                  display: none;
                }
              }
              & > .items {
                display: flex;
                flex-direction: column;
                gap: 1rem;
              }
            }
          }
        }
      }
    }
    & .navbar-menu {
      display: flex;
      gap: .25rem;
      align-items: center;
      padding-right: 2rem;
    }
  }
  &.icom-header-style-Complex {
    & > .inner {
      width: 100%;
      max-width: calc(1600px - 1rem);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom-left-radius: 1rem;
      border-bottom-right-radius: 1rem;
      height: 100%;
      padding: .25rem;
      & .nav-toggle {
        cursor: pointer;
        line-height: 1rem;
        color: white;
        padding: .5em;
      }
      & .icom-btn {
        font-size: var(--font-size);
        line-height: 1rem;
      }
      & #nav-logo {
        display: flex;
        justify-content: center;
        position: fixed;
        top: calc(1rem / 2);
        left: 50%;
        transform: translate(-50%, 0);
        z-index: 2;
        height: calc(var(--header-height) - 1rem);
        width: 200px;
        opacity: 1;
        & img {
          height: 100%;
          width: auto;
          max-width: 100%;
          object-fit: contain;
          object-position: center;
        }
      }
      .social-icons {
        display: flex;
        justify-content: center;
        margin-left: 1rem;
        @media (max-width: 800px) {
          display: none;
        }
      }
    }
    & #nav-menu {
      position: absolute;
      top: calc(100% + .5rem);
      left: 0;
      right: 0;
      display: grid;
      grid-template-rows: 0fr;
      transition: .3s ease-in-out;
      left: unset;
      width: 100%;
      max-width: 300px;
      text-align: right;
      &.show {
        grid-template-rows: 1fr;
      }
      & > .inner {
        background-color: var(--icom-primary);
        padding-left: 0;
        overflow: hidden;
        border-radius: 1rem;
        display: flex;
        flex-direction: column;
        width: 100%;
        & > :first-child {
          padding-top: 1rem;
        }
        & > :last-child {
          padding-bottom: 1rem;
        }
        & .icom-header-menu-link {
          border-bottom: 1px solid white;
          padding: .5rem 2rem;
          color: white;
          text-decoration: none;
          display: block;
          font-size: 1rem;
          width: 100%;
          position: relative;
          transition: .33s background-color ease;
          & > i {
            position: absolute;
            right: .5rem;
            top: 50%;
            transform: translateY(-50%);
          }
          &:last-child {
            border-bottom: none;
          }
          &:hover {
            background-color: rgba(0, 0, 0, .3);
          }
        }
      }
    }
  }
  &.icom-header-style-Normal {
    & > .inner {
      width: 100%;
      max-width: calc(1600px - 1rem);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom-left-radius: 1rem;
      border-bottom-right-radius: 1rem;
      height: 100%;
      padding: .25rem;
      & .nav-toggle {
        cursor: pointer;
        line-height: 1rem;
        color: white;
        padding: .5em;
      }
      & .icom-btn {
        font-size: var(--font-size);
        line-height: 1rem;
      }
      & #nav-logo {
        display: flex;
        justify-content: center;
        height: calc(var(--header-height) - 1rem);
        width: auto;
        height: 100%;
        opacity: 1;
        & img {
          height: 100%;
          width: auto;
          max-width: 100%;
          object-fit: contain;
          object-position: center;
        }
      }
      .social-icons {
        display: flex;
        justify-content: center;
        margin-left: 1rem;
        @media (max-width: 800px) {
          display: none;
        }
      }
      & #nav-menu {
        position: absolute;
        top: calc(100% + .5rem);
        left: 0;
        right: 0;
        display: grid;
        grid-template-rows: 0fr;
        transition: .3s ease-in-out;
        left: unset;
        width: 100%;
        max-width: 300px;
        text-align: right;
        color: white;
        &.show {
          grid-template-rows: 1fr;
        }
        & > .inner {
          background-color: var(--icom-primary);
          padding-left: 0;
          overflow: hidden;
          border-radius: 1rem;
          display: flex;
          flex-direction: column;
          width: 100%;
          & > :first-child {
            padding-top: 1rem;
          }
          & > :last-child {
            padding-bottom: 1rem;
          }
          & .icom-header-menu-link {
            border-bottom: 1px solid white;
            padding: .5rem 2rem;
            color: white;
            text-decoration: none;
            display: block;
            font-size: 1rem;
            width: 100%;
            position: relative;
            transition: .33s background-color ease;
            & > i {
              position: absolute;
              right: .5rem;
              top: 50%;
              transform: translateY(-50%);
            }
            &:last-child {
              border-bottom: none;
            }
            &:hover {
              background-color: rgba(0, 0, 0, .3);
            }
          }
        }
      }
    }
  }
}

/* wwwroot/Icom/_IcomButton.css */
.icom-btn {
  padding: var(--icom-button-default-padding-y) var(--icom-button-default-padding-x);
  border: none;
  border-radius: var(--icom-button-default-border-radius, .5rem) !important;
  cursor: pointer;
  transition: all 0.3s ease;
  color: inherit;
  position: relative;
  background-color: var(--color, var(--icom-primary));
  z-index: 1;
  overflow: hidden;
  color: var(--btn-text-color, white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: max-content;
  font-size: 1em;
  height: 2.5em;
  gap: 0.75em;
  overflow: hidden;
  & * {
    color: inherit !important;
  }
  &.disabled,
  &:disabled {
    background-color: lightgray !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
  }
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    transform: scale(.5);
    opacity: 0;
    transition: .3s ease;
    z-index: -1;
    border-radius: var(--icom-button-default-border-radius, .5rem) !important;
  }
  &:hover,
  &.active {
    color: var(--btn-text-color, white);
    &::before {
      opacity: 1;
      transform: scale(1);
    }
  }
  & i,
  & svg {
    width: 1.1em;
    text-align: center;
    font-size: inherit !important;
    line-height: inherit !important;
  }
  &.icon-only {
    padding: var(--icom-button-default-padding-y);
    width: 2.5em;
    justify-content: center;
    & i,
    & svg {
      font-size: 1.3em !important;
    }
  }
  &.static {
    cursor: default;
    &::before {
      display: none;
    }
  }
  & .icom-icon-wrapper {
    transform: rotate(var(--rotation, unset));
    transition: transform .2s ease-in-out;
  }
  &.icom-btn-style-text {
    background-color: transparent;
    color: var(--color, var(--icom-primary));
  }
  &.icom-btn-style-outlined {
    background-color: transparent;
    color: var(--color, var(--icom-primary));
    border: 1px solid var(--color, var(--icom-primary));
  }
  & .badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--icom-error) !important;
    color: white !important;
    border-radius: 999px;
    font-size: .7rem;
    width: 1.4em;
    height: 1.4em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 500;
    &:empty {
      display: none;
    }
  }
  &.fullwidth,
  &.fullwidth-center,
  &.fullwidth-left {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  &.fullwidth-center {
    justify-content: center;
  }
  &.fullwidth-left {
    justify-content: flex-start;
  }
}

/* wwwroot/Icom/_IcomSlider.css */
:root {
  --swiper-theme-color: var(--mud-palette-primary) !important;
}
.icom-slider.swiper-container {
  --swiper-navigation-sides-offset: 0px;
  --swiper-navigation-size: 1.2rem;
  z-index: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: var(--icom-default-border-radius);
  min-width: 0;
  &::before {
    background-image:
      linear-gradient(
        to left,
        white 2rem,
        transparent 8rem);
  }
  &:has(.swiper-wrapper:empty) {
    display: none;
  }
  &.free-sliding {
    & .swiper-slide {
      width: auto !important;
    }
  }
  &.slider-style-Default {
    --swiper-navigation-size: 2rem;
    --swiper-navigation-sides-offset: 0.5rem;
  }
  &.slider-style-Filled {
    & .swiper-button-prev,
    & .swiper-button-next {
      width: 1.8em;
      height: 1.8em;
      font-size: var(--swiper-navigation-size, 1.5em);
      background-color: var(--icom-primary);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      &::after {
      }
    }
  }
  & .swiper-slide {
    height: var(--icom-slider-slide-height, error);
    aspect-ratio: var(--aspect-ratio, error);
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-width: 0;
  }
  &.has-navigation {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  & .swiper-button-next,
  & .swiper-button-prev {
    color: white;
    top: 50% !important;
    margin-top: 0 !important;
    transform: translateY(-50%) !important;
  }
  &.has-pagination {
    padding-bottom: 2rem;
  }
  & .swiper-pagination {
    width: max-content;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border-radius: .25rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* wwwroot/Icom/_IcomParallax.css */
.parallax-section {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: lightgray;
  border-radius: var(--icom-default-border-radius);
  overflow: hidden;
  & > .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform-origin: center;
    z-index: 0;
  }
  & > * {
    z-index: 2;
    position: relative;
  }
}

/* wwwroot/Icom/_IcomHeroTwoBox.css */
.icom-hero-two-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 550px), 1fr));
  align-items: start;
  gap: 1rem;
  width: 100%;
  & > .left {
    border-radius: var(--icom-default-border-radius);
    background-color: var(--icom-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    color: white;
    overflow: hidden;
    & > .inner {
      width: 100%;
      max-width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1rem;
      max-width: 100%;
      > * {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
      }
    }
  }
  & > .right {
    border-radius: var(--icom-default-border-radius);
    background-color: var(--icom-primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    &.video {
      overflow: hidden;
      overflow: clip;
      position: relative;
      & video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
    }
  }
}

/* wwwroot/Icom/_IcomImage.css */
.icom-image {
  width: 100%;
  border-radius: var(--icom-default-border-radius);
  display: block;
  max-width: 100%;
  object-fit: cover;
}
.icom-image-gallery {
  display: grid;
  gap: var(--icom-default-gap);
  width: 100%;
  aspect-ratio: 1 / 1;
  & > * {
    width: auto;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: var(--icom-default-border-radius);
  }
  @media (max-width: 800px) {
    &:not(.disable-mobile-style) {
      grid-template-columns: 1fr !important;
      grid-template-rows: auto !important;
      aspect-ratio: unset !important;
      & > * {
        aspect-ratio: 1 / 1 !important;
        width: 100% !important;
        height: auto !important;
        grid-area: unset !important;
      }
    }
  }
  &.icom-image-gallery-count2 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    & :nth-child(1) {
      grid-column: 1 / 2;
      grid-row: 1 / 3;
    }
    & :nth-child(2) {
      grid-column: 2 / 3;
      grid-row: 1 / 3;
    }
    &.alt {
      & :nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
      }
      & :nth-child(2) {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
      }
    }
  }
  &.icom-image-gallery-count3 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    & :nth-child(1) {
      grid-column: 1 / 2;
      grid-row: 1 / 3;
    }
    & :nth-child(2) {
      grid-column: 2 / 3;
      grid-row: 1 / 2;
    }
    & :nth-child(3) {
      grid-column: 2 / 3;
      grid-row: 2 / 3;
    }
    &.alt {
      & :nth-child(1) {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
      }
      & :nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
      }
      & :nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
      }
    }
  }
  &.icom-image-gallery-count4 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    & :nth-child(1) {
      grid-column: 1 / 3;
      grid-row: 1 / 3;
    }
    & :nth-child(2) {
      grid-column: 3 / 4;
      grid-row: 1 / 3;
    }
    & :nth-child(3) {
      grid-column: 1 / 3;
      grid-row: 3 / 4;
    }
    & :nth-child(4) {
      grid-column: 3 / 4;
      grid-row: 3 / 4;
    }
    &.alt {
      & :nth-child(1) {
        grid-column: 2 / 4;
        grid-row: 2 / 4;
      }
      & :nth-child(2) {
        grid-column: 2 / 4;
        grid-row: 1 / 2;
      }
      & :nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
      }
      & :nth-child(4) {
        grid-column: 1 / 2;
        grid-row: 2 / 4;
      }
    }
  }
  &.icom-image-gallery-count5 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    & :nth-child(1) {
      grid-column: 2 / 4;
      grid-row: 2 / 4;
    }
    & :nth-child(2) {
      grid-column: 1 / 3;
      grid-row: 1 / 2;
    }
    & :nth-child(3) {
      grid-column: 3 / 4;
      grid-row: 1 / 2;
    }
    & :nth-child(4) {
      grid-column: 1 / 2;
      grid-row: 2 / 3;
    }
    & :nth-child(5) {
      grid-column: 1 / 2;
      grid-row: 3 / 4;
    }
    &.alt {
      & :nth-child(1) {
        grid-column: 2 / 4;
        grid-row: 2 / 4;
      }
      & :nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / 4;
      }
      & :nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
      }
      & :nth-child(4) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
      }
      & :nth-child(5) {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
      }
    }
  }
  &.icom-image-gallery-count6 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    & :nth-child(1) {
      grid-column: 1 / 4;
      grid-row: 3 / 5;
    }
    & :nth-child(2) {
      grid-column: 1 / 3;
      grid-row: 1 / 3;
    }
    & :nth-child(3) {
      grid-column: 3 / 5;
      grid-row: 1 / 2;
    }
    & :nth-child(4) {
      grid-column: 3 / 4;
      grid-row: 2 / 3;
    }
    & :nth-child(5) {
      grid-column: 4 / 5;
      grid-row: 2 / 4;
    }
    & :nth-child(6) {
      grid-column: 4 / 5;
      grid-row: 4 / 5;
    }
    &.alt {
      & :nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 2 / 5;
      }
      & :nth-child(2) {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
      }
      & :nth-child(3) {
        grid-column: 3 / 5;
        grid-row: 1 / 3;
      }
      & :nth-child(4) {
        grid-column: 3 / 5;
        grid-row: 3 / 4;
      }
      & :nth-child(5) {
        grid-column: 3 / 4;
        grid-row: 4 / 5;
      }
      & :nth-child(6) {
        grid-column: 4 / 5;
        grid-row: 4 / 5;
      }
    }
  }
  &.icom-image-gallery-count7 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    & :nth-child(1) {
      grid-column: 1 / 3;
      grid-row: 1 / 3;
    }
    & :nth-child(2) {
      grid-column: 1 / 3;
      grid-row: 3 / 5;
    }
    & :nth-child(3) {
      grid-column: 3 / 5;
      grid-row: 1 / 2;
    }
    & :nth-child(4) {
      grid-column: 3 / 4;
      grid-row: 2 / 4;
    }
    & :nth-child(5) {
      grid-column: 3 / 4;
      grid-row: 4 / 5;
    }
    & :nth-child(6) {
      grid-column: 4 / 5;
      grid-row: 2 / 3;
    }
    & :nth-child(7) {
      grid-column: 4 / 5;
      grid-row: 3 / 5;
    }
    &.alt {
      & :nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
      }
      & :nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 3 / 5;
      }
      & :nth-child(3) {
        grid-column: 2 / 4;
        grid-row: 3 / 5;
      }
      & :nth-child(4) {
        grid-column: 3 / 5;
        grid-row: 1 / 2;
      }
      & :nth-child(5) {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
      }
      & :nth-child(6) {
        grid-column: 4 / 5;
        grid-row: 2 / 3;
      }
      & :nth-child(7) {
        grid-column: 4 / 5;
        grid-row: 3 / 5;
      }
    }
  }
  &.icom-image-gallery-count8 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    & :nth-child(1) {
      grid-column: 1 / 3;
      grid-row: 1 / 3;
    }
    & :nth-child(2) {
      grid-column: 1 / 2;
      grid-row: 3 / 4;
    }
    & :nth-child(3) {
      grid-column: 1 / 2;
      grid-row: 4 / 5;
    }
    & :nth-child(4) {
      grid-column: 2 / 3;
      grid-row: 3 / 5;
    }
    & :nth-child(5) {
      grid-column: 3 / 5;
      grid-row: 1 / 2;
    }
    & :nth-child(6) {
      grid-column: 3 / 4;
      grid-row: 2 / 3;
    }
    & :nth-child(7) {
      grid-column: 4 / 5;
      grid-row: 2 / 3;
    }
    & :nth-child(8) {
      grid-column: 3 / 5;
      grid-row: 3 / 5;
    }
    &.alt {
      & :nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
      }
      & :nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
      }
      & :nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
      }
      & :nth-child(4) {
        grid-column: 2 / 4;
        grid-row: 3 / 5;
      }
      & :nth-child(5) {
        grid-column: 3 / 5;
        grid-row: 1 / 2;
      }
      & :nth-child(6) {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
      }
      & :nth-child(7) {
        grid-column: 4 / 5;
        grid-row: 2 / 4;
      }
      & :nth-child(8) {
        grid-column: 4 / 5;
        grid-row: 4 / 5;
      }
    }
  }
}
.icom-image-gallery-scroll-end-reached {
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.2rem;
  color: black;
  font-weight: 900;
  font-size: clamp(1.5rem, 1.5vw, 2rem);
  border-radius: var(--icom-default-border-radius);
  overflow: hidden;
  margin-top: 2rem;
  &.show {
    display: flex;
  }
}
.icom-image-gallery-scroll {
  & .gallery-item {
    border-radius: var(--icom-default-border-radius);
    overflow: hidden;
  }
}

/* wwwroot/Icom/_IcomGap.css */
.icom-gap {
  padding-top: var(--gap, 1em);
  @media (max-width: 768px) {
    &:not(.force) {
      padding-top: calc(var(--gap, 1em) / 2);
    }
  }
}

/* wwwroot/Icom/_IcomHeading.css */
.icom-heading {
  font-weight: var(--icom-heading-default-weight);
  margin-bottom: .5em;
  line-height: 1.4;
  &.light-font-weight {
    font-weight: 400;
  }
  &.icom-heading-1 {
    font-size: clamp(1.6rem, 6vw, 3rem);
  }
  &.icom-heading-2 {
    font-size: clamp(1.4rem, 5vw, 2.3rem);
  }
  &.icom-heading-3 {
    font-size: clamp(1.2rem, 4vw, 1.9rem);
  }
  &.icom-heading-4 {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
  }
}

/* wwwroot/Icom/_IcomShop.css */
#icom-shop-product-list-categories {
  position: sticky;
  top: var(--icom-header-default-height);
  left: 0px;
  z-index: 3;
  padding-top: 1rem;
  padding-bottom: .5rem;
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, .9);
}
.icom-shop-product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: min(3rem, 5vw);
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  }
  &.style-Checkout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.icom-shop-product-list-item {
  --image-width: 200px;
  display: grid;
  grid-template-columns: var(--image-width) 1fr;
  gap: 2rem;
  border-radius: var(--icom-default-border-radius);
  border: 1px solid var(--icom-primary-light);
  padding: 1rem;
  border: none;
  background-color: rgba(248, 248, 248, 1);
  @media (max-width: 600px) {
    grid-template-columns: 1fr;
  }
  &.style-Preview {
    & .price-show-more {
      margin-top: auto;
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
  }
  &.style-Buy {
    padding: 0;
    background-color: transparent;
    & .price-buy {
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: flex-end;
      align-items: flex-end;
    }
  }
  &.style-Checkout {
    border: none;
    display: grid;
    background-color: transparent;
    grid-template-columns: 150px 1fr;
    border-bottom: 1px solid lightgray;
    border-radius: unset !important;
    padding: 0;
    padding-bottom: 2rem;
    padding-top: 2rem;
    @media (max-width: 800px) {
      grid-template-columns: 1fr;
    }
    & > .left {
      min-height: 0;
      img {
        aspect-ratio: 1 / 1;
        object-fit: contain;
        object-position: center;
      }
    }
    & .price-quantity {
      margin-top: auto;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: space-between;
    }
  }
  & > .left {
    position: relative;
    & > * {
      width: 100%;
      margin: auto;
      max-width: var(--image-width);
    }
  }
  & > .right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    & .price {
      text-align: right;
      margin: 0;
      margin-top: auto;
    }
    & > * {
      margin: 0;
      &:last-child {
      }
    }
  }
}
.icom-shop-cart-item-quantity {
  position: relative;
  max-width: 100%;
  & .quantity-actions {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    transition: .25s ease-in-out;
    &.hide {
      opacity: 0;
    }
    @media (max-width: 600px) {
      flex-wrap: wrap;
      justify-content: center;
    }
    > .right,
    > .left {
      display: flex;
      align-items: stretch;
    }
  }
  & .quantity-increase {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  & .quantity-decrease {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    margin-right: auto;
  }
  & .quantity-increase,
  & .quantity-decrease {
    padding: .7em;
  }
  & .quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    min-width: 2.5rem;
    border-top: 2px solid var(--icom-success);
    border-bottom: 2px solid var(--icom-success);
  }
  & .quanity-remove,
  & .quantity-add {
  }
  & .show-added {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: var(--icom-primary);
    color: white;
    opacity: 0;
    pointer-events: none;
    transition: .3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border-radius: .25rem;
    &.show {
      opacity: 1;
      pointer-events: all;
    }
  }
}

/* wwwroot/Icom/_IcomWave.css */
.icom-wave {
  --wave-color: var(--icom-primary-color);
  width: 100%;
  & svg {
    width: 100%;
    height: auto;
    & path {
      fill: var(--wave-color);
    }
  }
}

/* wwwroot/Icom/_IcomButtonDropdown.css */
.icom-btn-dropdown {
  position: relative;
  display: flex;
  flex-direction: column;
  &.open {
    & > .content {
      grid-template-rows: 1fr;
      margin-top: .5em;
    }
    & > .icom-btn > .icom-icon-wrapper {
      --rotation: 180deg !important;
    }
  }
  & > .content {
    display: grid;
    grid-template-rows: 0fr;
    transition: .2s ease-in-out;
    margin-top: 0em;
    > .inner {
      overflow: hidden;
      .inner2 {
        border-radius: var(--icom-button-default-border-radius, .5rem);
        background-color: var(--background-color, transparent);
        padding: 1em;
      }
    }
  }
}

/* wwwroot/Icom/_IcomFormBox.css */
.icom-form-box {
  width: 100%;
  display: flex;
  min-height: 100vh;
  min-height: calc(100dvh - var(--icom-default-header-height, 4rem));
  --bgcolor: var(--icom-light);
  padding: 4rem 0rem;
  position: relative;
  z-index: 2;
  & > .inner {
    margin: auto;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: min(100%, 600px);
    &.icom-form-box-style-style1 {
      & > .top {
        display: flex;
        flex-direction: column;
        align-items: center;
        > * {
          width: 50%;
        }
      }
      & > .content {
        padding: 2rem;
        border-radius: var(--icom-default-border-radius, 0.25rem);
        background-color: var(--bgcolor);
      }
      & > .bottom {
        text-align: right;
      }
    }
    &.icom-form-box-style-style2 {
      padding: 2rem;
      border-radius: var(--icom-default-border-radius, 0.25rem);
      background-color: var(--bgcolor);
      padding-top: 0rem;
      & > .top {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
        > img {
          width: 100%;
          max-width: 200px;
          height: auto;
          max-height: 300px;
          object-fit: contain;
          object-position: center;
        }
      }
      & > .content {
      }
      & > .bottom {
        text-align: right;
      }
    }
  }
  & .mud-input-label {
    background-color: var(--bgcolor);
  }
}

/* wwwroot/Icom/_IcomCard.css */
.icom-card {
  --bgcolor: var(--icom-primary-light);
  --padding: clamp(1rem, 10vw, 2rem);
  & .icom-card-content {
    background-color: var(--bgcolor);
    padding: var(--padding);
    display: flex;
    flex-direction: column;
    gap: var(--padding);
    overflow: hidden;
    overflow: clip;
    & > * {
      margin: 0;
    }
  }
}

/* wwwroot/Icom/_IcomBanner.css */
.icom-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  overflow: clip;
  border-radius: var(--icom-button-default-border-radius);
  container-type: inline-size;
  & > .top-content {
    font-size: 1.5rem;
    & > .meta {
      padding: .7em 1.5em;
      background-color: var(--icom-primary);
      color: white;
    }
    & > .title {
      padding: .7em 1.5em;
      background-color: var(--icom-secondary);
      color: white;
    }
  }
  &.icom-banner-style-Style1 {
    background-color: var(--icom-primary-light);
    & > .inner {
      display: grid;
      grid-template-columns: minmax(200px, .5fr) 1fr;
      gap: 3rem;
      padding: 2rem;
      padding-left: 1.5rem;
      height: 100%;
      @container (max-width: 720px) {
        grid-template-columns: 1fr;
        gap: 1rem;
        & > img {
          width: 75%;
          aspect-ratio: 4 / 3;
          margin: auto;
        }
        & > .content {
          padding-top: 0rem;
        }
      }
      & > img {
        height: 100%;
        object-fit: contain;
        object-position: center;
        padding: 2rem;
      }
      & > .content {
        padding-top: 2rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        & > * {
          margin: 0;
        }
        & p {
          font-size: 1.5rem;
        }
      }
    }
    & > .top-content {
      width: 100%;
      display: flex;
      flex-wrap: wrap-reverse;
      justify-content: space-between;
    }
  }
}

/* wwwroot/Icom/_IcomBubble.css */
.icom-bubble {
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: max-content;
  & > .bubble {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(var(--icom-bubble-scale, 1));
    opacity: var(--icom-bubble-opacity, 1);
    & svg {
      width: 100%;
      height: 100%;
      & * {
        fill: var(--icom-bubble-color, var(--icom-primary));
      }
    }
  }
  & .content {
    position: relative;
    z-index: 2;
  }
}

/* wwwroot/Icom/_IcomPostItem.css */
.icom-post-item-container {
  & .icom-post-item {
    position: relative;
    & .title {
      font-size: 1.5rem;
      font-size: clamp(1.25rem, 5vw, 1.8rem);
      line-height: 1.2;
    }
    & img {
      object-fit: cover;
    }
    &.icom-alt-style {
      color: white;
      & .icom-btn {
        background-color: var(--icom-secondary);
        color: white;
      }
    }
  }
  &.icom-post-item-container-style-style1 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(clamp(250px, 50vw, 350px), 1fr)) !important;
    gap: 2rem;
    row-gap: calc(var(--icom-default-border-radius) + 4em);
  }
  & .icom-post-item-style-style1 {
    margin-bottom: calc(var(--icom-default-border-radius) + 2rem);
    & time {
      display: block;
      width: max-content;
      margin-right: auto;
      border-top-left-radius: var(--icom-default-border-radius);
      border-top-right-radius: var(--icom-default-border-radius);
      background-color: var(--icom-primary);
      font-size: 1rem;
      padding: .75em 1.5em;
      padding-bottom: calc(var(--icom-default-border-radius) + 1em / 2);
      margin-bottom: calc(var(--icom-default-border-radius) * -1 + .0em);
      color: white;
    }
    & .inner {
      border-radius: var(--icom-default-border-radius);
      overflow: hidden;
      background-color: var(--icom-primary-light);
      display: flex;
      flex-direction: column;
      min-height: 100%;
      &.icom-alt-style {
        background-color: var(--icom-primary);
      }
      & .content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        & .title {
          margin-bottom: 1rem;
        }
        & > * {
          margin: 0;
        }
        & > :last-child {
          margin-top: auto;
          margin-left: auto;
        }
      }
      & img {
        display: block;
        width: 100%;
        border-radius: var(--icom-default-border-radius);
      }
    }
  }
  &.icom-post-item-container-style-style2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(clamp(400px, 50vw, 500px), 1fr)) !important;
    gap: 2rem;
    @media (max-width: 550px) {
      grid-template-columns: 1fr !important;
    }
  }
  & .icom-post-item-style-style2 {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: var(--icom-default-border-radius);
    background-color: var(--icom-primary-light);
    @media (max-width: 550px) {
      flex-direction: column;
    }
    &.icom-alt-style {
      background-color: var(--icom-primary);
      color: white;
      & .icom-btn {
        background-color: var(--icom-secondary);
        color: white;
      }
      & time {
        background-color: var(--icom-secondary);
      }
    }
    & time,
    & .meta {
      position: absolute;
      top: 0;
      font-size: .8rem;
      padding: 1em 1.5em;
    }
    & time {
      color: white;
      right: 0;
      border-bottom-left-radius: var(--icom-default-border-radius);
      background-color: var(--icom-primary);
    }
    & .meta {
      padding-left: 0;
    }
    & img {
      width: auto;
      max-width: 40%;
      height: 100%;
      max-height: 300px;
      @media (max-width: 768px) {
      }
    }
    & .content {
      padding: 1.5rem;
      padding-top: 3rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      height: 100%;
      position: relative;
      & > * {
        margin: 0;
      }
      & > a:last-child {
        margin-left: auto;
        margin-top: auto;
      }
    }
  }
  &.icom-post-item-container-style-style3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(clamp(250px, 50vw, 350px), 1fr)) !important;
    gap: 2rem;
  }
  & .icom-post-item-style-style3 {
    display: flex;
    flex-direction: column;
    background-color: var(--icom-primary-light);
    border-radius: var(--icom-default-border-radius);
    overflow: hidden;
    padding-bottom: 1.5rem;
    &.icom-alt-style {
      background-color: var(--icom-primary);
      color: white;
      & .icom-btn {
        background-color: var(--icom-secondary);
        color: white;
      }
      & time {
        background-color: transparent !important;
        color: white !important;
      }
    }
    & .content {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      & > * {
        margin: 0;
      }
    }
    & .actions {
      display: flex;
      gap: 1rem;
      padding-right: 1.5rem;
      position: relative;
      margin-top: auto;
      & time {
        flex-grow: 1;
        color: white;
        background-color: transparent;
        color: var(--icom-primary);
        padding-left: 1.5rem;
        border-left: none;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
      }
    }
  }
  &.icom-post-item-container-style-listing {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  & .icom-post-item-style-listing {
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: var(--icom-default-border-radius);
    background-color: var(--icom-primary-light);
    @media (max-width: 550px) {
      flex-direction: column;
    }
    &.icom-alt-style {
      background-color: var(--icom-primary);
      color: white;
      & .icom-btn {
        background-color: var(--icom-secondary);
        color: white;
      }
    }
    & .meta {
      position: relative;
      font-size: .8rem;
      padding: 1em 0;
      width: 100%;
      margin-top: -1.5rem !important;
      margin-bottom: -1rem !important;
    }
    & img {
      width: auto;
      max-width: 40%;
      height: 100%;
      max-height: 250px;
      @media (max-width: 768px) {
      }
    }
    & .content {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      height: 100%;
      position: relative;
      & > * {
        margin: 0;
      }
      & > a:last-child {
        margin-right: auto;
        margin-top: auto;
      }
    }
  }
}
.icom-post-item-full {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  & > * {
    margin: 0 !important;
  }
  & i {
    font-size: 1.2em;
  }
  & .icom-post-item-full-mainmeta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    color: var(--icom-primary);
  }
  & .icom-post-item-full-meta {
    display: none;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    gap: 1rem;
    border-radius: var(--icom-default-border-radius);
    background-color: var(--icom-primary-light);
    color: var(--icom-primary);
    font-size: .8rem;
    & > * {
      margin: 0;
    }
    &:has(.icom-post-item-full-meta-item) {
      padding: 1.5rem;
      display: flex;
    }
    & .icom-post-item-full-meta-item {
      display: flex;
      align-items: center;
      gap: .75em;
      & > * {
        margin: 0;
      }
    }
    & .icom-post-item-full-meta-category {
      position: absolute;
      top: 0;
      left: 0;
      font-size: .66rem;
      padding: .75em 1.25em;
      border-radius: 999px;
      color: white;
      background-color: var(--icom-primary);
      z-index: 1;
      transform: translateY(-50%) translateX(-1em);
    }
  }
  & .icom-post-item-full-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 8vw, 5rem);
    @media (max-width: 768px) {
      grid-template-columns: 1fr;
    }
  }
  & .icom-post-item-full-main-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    & > * {
      margin: 0;
    }
  }
  & .icom-post-item-full-shortdescription {
    font-size: 1.1rem;
    font-size: clamp(1rem, 5vw, 1.1rem);
    line-height: 1.3;
    white-space: pre-wrap;
    font-weight: 500;
  }
  & .icom-post-item-full-body {
  }
  & .icom-post-item-full-main-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    & > * {
      margin: 0;
    }
  }
  & .icom-post-item-full-main-links,
  & .icom-post-item-full-main-downloads {
    background-color: var(--icom-primary-light);
    border-radius: var(--icom-default-border-radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    & > * {
      margin: 0;
    }
  }
}
.icom-post-item-full-dialog {
  position: fixed;
  padding: 2rem;
  padding-top: 8rem;
  z-index: 9;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  transition: .5s ease-in-out;
  display: flex;
  transform: translateX(100%);
  background-color: white;
  &.show {
    transform: translateX(0);
    pointer-events: auto;
    opacity: 1;
  }
  & .icom-post-item-full-dialog-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: -1;
  }
  & .icom-post-item-full-dialog-content {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 1200px;
    background-color: white;
    border-radius: var(--icom-default-border-radius);
    border: 2px solid lightgray;
    padding: 2rem;
    overflow-y: auto;
    max-height: 100%;
  }
  & .icom-post-item-full-dialog-content-close {
    position: sticky;
    top: 0;
    right: 0;
    height: 0px;
    display: flex;
    transform: translate(1rem, -1rem);
    justify-content: flex-end;
    & a {
      background-color: white !important;
      border-top-left-radius: 0px !important;
      border-bottom-right-radius: 0px !important;
    }
  }
}

/* wwwroot/Icom/_IcomLightboxGallery.css */
.icom-lightbox-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

/* wwwroot/Icom/_IcomMediaGallery.css */
.icom-media-gallery {
  & .icom-media-gallery-item {
    border-radius: var(--icom-default-border-radius);
    overflow: hidden;
    &.show-content-on-hover {
      .icom-media-gallery-item-text {
        opacity: 0;
        transition: opacity .3s ease-in-out;
      }
      &:hover .icom-media-gallery-item-text,
      &:focus .icom-media-gallery-item-text {
        opacity: 1;
      }
    }
    &.has-on-click {
      cursor: pointer;
    }
    &.jg-entry {
    }
    & .icom-media-gallery-item-text {
      position: absolute;
      bottom: 0;
      left: 0;
      height: auto;
      max-height: 100%;
      width: 100%;
      overflow: hidden;
      font-size: 1.2rem;
      font-weight: 400;
      padding: .66em;
      text-align: center;
      color: white;
      background-image:
        linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0),
          rgba(0, 0, 0, 0.5));
    }
  }
  & .icom-media-gallery-end-reached {
    display: none;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 600;
    text-align: center;
    padding: 2em 1rem;
    &.show {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      justify-items: center;
      gap: 1em;
    }
    & > .left,
    & > .right {
      width: 100%;
      height: 1px;
      background-color: currentColor;
      flex-shrink: 0;
      opacity: .25;
    }
  }
}

/* wwwroot/Icom/icom.bundle.css */
a {
  color: var(--icom-primary);
}
html {
  height: 100%;
}
body {
  color: var(--icom-dark);
  min-height: 100%;
  height: 100%;
}
body,
html {
  scroll-padding-block: 5rem;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.fw-100 {
  font-weight: 100 !important;
}
.fw-200 {
  font-weight: 200 !important;
}
.fw-300 {
  font-weight: 300 !important;
}
.fw-400 {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
.fw-800 {
  font-weight: 800 !important;
}
.fw-900 {
  font-weight: 900 !important;
}
