.no-select {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
             supported by Chrome and Opera */
}

.break-word {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
}

.hyphens {
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.force-unlimited-full-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  max-width: 100vw;
}

.force-full-width {
  width: 100vw;
  margin-left: calc(50% - 720px);
  max-width: 1440px;
}
@media screen and (max-width: 1440px) {
  .force-full-width {
    margin-left: calc(50% - 50vw);
  }
}

.has-max-width {
  max-width: var(--maxWidth);
  margin: 0 auto;
}

.has-content-max-width {
  max-width: var(--contentMaxWidth);
  margin: 0 auto;
}

.award-item-container {
  display: flex;
  align-items: center;
  width: calc(50% - 8px);
  background: var(--white);
  border: 1px solid var(--black-10-fade);
  text-decoration: none;
  min-width: 400px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.award-item-container::after {
  content: "";
  display: block;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.16602 9.99996H15.8327M15.8327 9.99996L9.99935 4.16663M15.8327 9.99996L9.99935 15.8333' stroke='%23262626' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.2;
  pointer-events: none;
}
.award-item-container::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  height: 100%;
  background: var(--green-accent);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  pointer-events: none;
  z-index: 1000;
}
.award-item-container:hover::after {
  transform: translateY(-50%) translateX(4px);
  opacity: 1;
}
.award-item-container:hover::before {
  opacity: 1;
}
.award-item-container .image-wrapper {
  display: flex;
  height: 139px;
  width: 139px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .award-item-container .image-wrapper {
    height: 134px;
    width: 134px;
  }
}
.award-item-container .image-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
  padding: 16px;
  background: var(--black-5);
  object-fit: contain;
  display: block;
}
.award-item-container .award-category-tile-name {
  position: relative;
  flex: 1;
  padding: 0 48px 0 24px;
  height: 100%;
  width: 100%;
  align-content: center;
  font-family: var(--s5-fontFamily), sans-serif;
  font-weight: var(--s5-fontWeight);
  font-size: var(--s5-fontSize);
  line-height: var(--s5-lineHeight);
  color: var(--green-80);
  margin-bottom: 0;
  hyphens: auto;
  display: flex;
  align-items: center;
}

/*# sourceMappingURL=award-item.css.map */
