﻿  .inbenta-helpsite__body .inbenta-km__categories {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  word-wrap: break-word;
  word-break: break-word;
}

.inbenta-helpsite__body .inbenta-km__categories .inbenta-km-title {
  font-size: 28px;
  line-height: 36px;
  font-weight: 800;
  font-family: "Inter", sans-serif;
  color: #1a1a1a;
}
 
.inbenta-helpsite__body .inbenta-km__categories__container .container__category-name {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  flex-direction: column;
  margin-bottom: 0;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category-name__pre {
  color: #666666;
  margin-top: 30px;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category-name__title {
  font-size: 28px;
  line-height: 36px;
  font-weight: 800;
  color: #333333;
  margin: 0;
  font-family: "Inter", sans-serif;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category-name__button-wrapper {
  display: none;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category-name__button-wrapper .inbenta-km-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--color-red-600);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category__group {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category__group:last-child {
  justify-content: flex-start;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category__group + .container__category__group {
  margin-top: 16px;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category__group .inbenta-km__category {
  display: flex;
  align-items: center;
  border: 1px solid #cccccc;
  border-radius: 8px;
  cursor: pointer;
  background-color: #fff;
  min-width: calc(25% - 20px);
  width: calc(25% - 20px);
  height: 120px;
  transition: all 0.2s ease;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category__group .inbenta-km__category__image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E9F3FF;
  height: 32px;
  width: 32px;
  margin-right: 12px;
  border-radius: 100px;
  display: none;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category__group .inbenta-km__category__image.inbenta-km-icon:before {
  content: "\76";
  font-size: 16px;
  color: var(--color-red-600);
  font-family: "inbenta-icons";
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category__group .inbenta-km__category__image[style] {
  display: block;
  background-color: #FFFFFF;
  border-radius: 0;
  height: 20px;
  width: 20px;
  margin: 0 15px 0 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: var(--icon);
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category__group .inbenta-km__category__image[style]:before {
  display: none;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category__group .inbenta-km__category__content-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 2;
  text-decoration: none;
  color: var(--color-red-600);
  flex-direction: column-reverse;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category__group .inbenta-km__category__content-category .content-category__icon {
  display: none;
  order: 2;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category__group .inbenta-km__category__content-category .content-category__icon:before {
  transition: all 0.2s ease;
  content: "\67";
  font-size: 16px;
  color: #cccccc;
  font-family: "inbenta-icons";
  opacity: 0;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category__group .inbenta-km__category__content-category .content-category__title {
  display: flex;
  align-items: center;
  order: 1;
  flex-grow: 2;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin: 0;
  text-align: center;
  padding: 0 8px;
  color: #1a1a1a;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category__group .inbenta-km__category__content-category .content-category__count {
  font-size: 14px;
  line-height: 24px;
  color: #666666;
  margin-top: 8px;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category__group .inbenta-km__category:hover {
  background-color: #f0f0f0;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category__group .inbenta-km__category:hover .inbenta-km__category__image[style] {
  background-image: var(--icon-hover);
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category__group .inbenta-km__category:hover .inbenta-km__category__content-category .content-category__icon:before {
  opacity: 1;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category__group .inbenta-km__category:hover .inbenta-km__category__content-category .content-category__title {
  transition: all 0.2s ease;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category__group .inbenta-km__category:active {
  background-color: #e0e0e0;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category__group .inbenta-km__category:last-child {
  margin-bottom: 0;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category-contents {
  margin-top: 16px;
}

.inbenta-helpsite__body .inbenta-km__categories__container .container__category-contents .inbenta-km__faq__title .title__faq__icon {
  display: none;
}

.inbenta-helpsite__body .inbenta-km__categories .inbenta-km__faqs {
  padding: 0;
}

.inbenta-helpsite__body .inbenta-km__categories + .inbenta-km__popular {
  margin: 60px auto;
}

.inbenta-helpsite__body .inbenta-km__categories + .inbenta-km__popular .inbenta-km__faq {
  justify-content: center;
}

.inbenta-helpsite__body .inbenta-km__categories + .inbenta-km__popular .inbenta-km__faq:hover {
  background-color: #f0f0f0;
  padding-left: 10px;
}

.inbenta-helpsite__body .inbenta-km__categories + .inbenta-km__popular .inbenta-km__faq:active {
  background-color: #e0e0e0;
  padding-left: 10px;
}

@media (min-width: 480px) and (max-width: 630px) {
  .inbenta-helpsite__body .inbenta-km__categories__container .container__category__group .inbenta-km__category {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .inbenta-helpsite__body .inbenta-km__autocompleter {
    width: 296px;
    margin-top: -4px;
  }
  
  .inbenta-helpsite__body .inbenta-km__categories__container .container__category__group .inbenta-km__category {
    width: 100%;
    height: 120px;
  }
  
  .inbenta-helpsite__body .inbenta-km__categories__container .container__category__group .inbenta-km__category:hover {
    border: 2px solid #333333;
    width: 99%;
    height: 118px;
  }
  
  .inbenta-helpsite__body .inbenta-km__categories__container .container__category__group .inbenta-km__category__content-category .content-category__title {
    text-align: center;
    font-size: 18px;
  }
}.inbenta-helpsite__body .inbenta-km__popular {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.inbenta-helpsite__body .inbenta-km__popular .inbenta-km-title {
  font-size: 28px;
  line-height: 36px;
  font-weight: 800;
  font-family: "Inter", sans-serif;
  color: #1a1a1a;
}

.inbenta-helpsite__body .inbenta-km__categories .inbenta-km-title::before,.inbenta-helpsite__body .inbenta-km__popular .inbenta-km-title:before {
  content: ''; width: 5px; height: 26px;  background: #e0a800; display: inline-block; margin-right: 4px;vertical-align: middle; position: relative; top: -2px;
}

.inbenta-helpsite__body .inbenta-km__popular .inbenta-km__faqs {
  padding: 0;
}

.inbenta-helpsite__body .inbenta-km__popular .inbenta-km__faq .inbenta-km__faq__title .title__faq__icon {
  display: none;
}

.inbenta-helpsite__body .inbenta-km__popular + .inbenta-km__categories,
.inbenta-helpsite__body .inbenta-km__popular + .inbenta-km__push {
  margin-top: 24px;
}
 .inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__title {
    display: flex
;
    align-items: center;
    padding: 16px 0;
    text-decoration: none;
     
    transition: all 0.2s ease-in 0s;
}
@media (max-width: 480px) {
  .inbenta-helpsite__body .inbenta-km__popular {
    margin-bottom: 70px;
  }
  
  .inbenta-helpsite__body .inbenta-km__popular .inbenta-km__faq .inbenta-km__faq__title .title__faq__text {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
  }
}.inbenta-helpsite__body .inbenta-km__faqs {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  border-bottom: 1px solid #cccccc;
  transition: all 0.2s ease;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq:last-child {
  border: 0;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq *:focus {
  outline: none;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__title {
  display: flex;
  align-items: center;
  padding: 16px 0;
  text-decoration: none;
  flex-direction: row-reverse;
  transition: all 0.2s ease;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__title .title__icon {
  display: block;
  padding-right: 8px;
  transition: all 0.2s ease;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__title .title__icon:before {
      content: "";
    display: inline-block;
    position: relative;
    width: 8px;
    height: 8px;
    border: 2px solid #333;
    border-left: none;
    border-bottom: none;
    transform: rotate(45deg);

}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__title .title__faq {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 2;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__title .title__faq__text {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  margin: 0;
  color: #333333;
  transition: all 0.3s cubic-bezier(0.3, 0.01, 0.6, 0.99) 0s;
  padding-right: 16px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__title .title__faq__icon {
  display: block;
  padding-right: 8px;
  transition: all 0.2s ease;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__title .title__faq__icon:before {
  transition: all 0.2s ease;
  content: "\67";
  font-size: 16px;
  color: #333333;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__title:hover {
  cursor: pointer;
  background-color: #f0f0f0;
  padding-left: 10px;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__title:hover .title__faq__text {
  transition: all 0.2s ease;
  color: #333333;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__title:hover .title__faq__icon:before {
  opacity: 1;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__title:hover .title__icon {
  padding-right: 0;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq--active {
  margin-top: 30px;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq--active .inbenta-km__faq__body {
  transition: all 0.2s ease;
  opacity: 1;
  max-height: 1000vh;
  overflow: initial;
  padding-top: 8px;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq--active > .inbenta-km__faq__title {
  pointer-events: none;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq--active > .inbenta-km__faq__title .title__faq__text {
  color: #333333;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq--active > .inbenta-km__faq__title .title__faq__icon {
  display: none;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq--active > .inbenta-km__faq__title .title__faq__icon:before {
  transition: all 0.2s ease;
  content: "\65";
  font-size: 16px;
  color: #cccccc;
  opacity: 1;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq--active > .inbenta-km__faq__title .title__icon {
  display: none;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__body {
  transition: all 0.2s ease;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__body .body__contents {
  padding-bottom: 48px;
  font-size: 18px;
  line-height: 24px;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__body .body__rating {
  background-color: #f0f0f0;
  border-radius: 8px;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__body a {
  color: #1a1a1a;
  text-decoration: underline;
  font-weight: 700;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__body a:hover {
  color: #1a1a1a;
  text-decoration: none;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__body p {
  margin: 0 0 16px 0;
}

.inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__body p:last-child {
  margin: 0;
}

@media (max-width: 480px) {
  .inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq {
    justify-content: center;
  }
  
  .inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__title {
    height: unset;
  }
  
  .inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq__title .title__faq__text {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
  }
  
  .inbenta-helpsite__body .inbenta-km__faqs .inbenta-km__faq--active .inbenta-km__faq__body {
    max-height: 0;
  }
}

/* 搜搜 */
.inbenta-helpsite__body .inbenta-km__search {
  background-color: var(--color-red-600);
  padding: 24px 15px;
  height: 240px;
  margin-bottom: 110px;
}

.inbenta-helpsite__body .inbenta-km__search__logo {
  background-image: url('evaneos-logo.png');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 180px;
  height: 40px;
  margin: 60px auto 100px auto;
}

.inbenta-helpsite__body .inbenta-km__search__title {
  width: 100%;
  height: 40px;
  margin: 60px auto 80px auto;
  font-size: 46px;
  color: white;
  text-align: center;
  font-weight: 400;
  line-height: 56px;
  font-family: "Inter", sans-serif;
}

.inbenta-helpsite__body .inbenta-km__search--wrapper {
  border-radius: 4px;
  background-color: var(--color-white); border: 1px solid #e7e7e7;
  width: 86%;
  max-width: 670px;
  margin: auto;
  padding: 24px;
}

.inbenta-helpsite__body .inbenta-km__search__introduction {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  margin-top: 0;
}

.inbenta-helpsite__body .inbenta-km__search .form__button {
  cursor: pointer;
}

.inbenta-helpsite__body .inbenta-km__search__form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 0 auto;
  border-radius: 8px;
  height: 45px;
}

.inbenta-helpsite__body .inbenta-km__search__form .form__input {
  flex-grow: 2;
  min-width: 1px;
}

.inbenta-helpsite__body .inbenta-km__search__form .form__input.inbenta-km-input {
  border-radius: 4px 0 0 4px;
  border: none;
  background-color: #f0f0f0;
  border-right: 1px solid #cccccc;
  height: 45px; padding-left: 20px;
  outline: none;
}

.inbenta-helpsite__body .inbenta-km__search__form .form__button .inbenta-km-button {
  display: flex;
  align-items: center;
  background-color: #ffc107;
  color: #1a1a1a;
  height: 45px;
  padding: 0 16px;
  border-radius: 0 4px 4px 0;
  margin: 0;
  border: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}

.inbenta-helpsite__body .inbenta-km__search__form .form__button .inbenta-km-button__text {
  display: block;
  font-size: 16px;
  line-height: 24px;
}

.inbenta-helpsite__body .inbenta-km__search__form .form__button .inbenta-km-button__icon {
  display: none;
}

.inbenta-helpsite__body .inbenta-km__search__form .form__button .inbenta-km-button:hover {
  background-color: #e0a800;
  color: #1a1a1a;
}

.inbenta-helpsite__body .inbenta-km__search__form .form__button .inbenta-km-button:active {
  background-color: #d39e00;
  color: #1a1a1a;
}

.inbenta-helpsite__body .inbenta-km__search__form .form__button .inbenta-km-button--disabled {
  pointer-events: none;
}

.inbenta-helpsite__body .inbenta-km__search__form .form__button .inbenta-km-button--disabled .inbenta-km-icon {
  opacity: 0.48;
}

@media (max-width: 480px) {
  .inbenta-helpsite__body .inbenta-km__search {
    padding: 24px 15px;
    margin-bottom: 110px;
    height: 180px;
  }
  
  .inbenta-helpsite__body .inbenta-km__search__logo {
    margin: 16px auto 60px auto;
  }
  
  .inbenta-helpsite__body .inbenta-km__search--wrapper {
    margin-top: -70px;
  }
  
  .inbenta-helpsite__body .inbenta-km__search__title {
    font-size: 28px;
    line-height: 36px;
    height: unset;
  }
}

.inbenta-helpsite__body .inbenta-km__rating {
  margin-bottom: 40px;
}

.inbenta-helpsite__body .inbenta-km__rating__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}

.inbenta-helpsite__body .inbenta-km__rating__content .content__phrase {
  flex-grow: 2;
  padding-right: 16px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.inbenta-helpsite__body .inbenta-km__rating__content .content__buttons {
  display: flex;
  align-items: center;
}

.inbenta-helpsite__body .inbenta-km__rating__content .content__buttons__button-wrapper .inbenta-km-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: transparent;
  color: var(--color-red-600);
  border: 2px solid var(--color-red-600);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
  padding: 8px 20px;
  font-weight: 700;
}

.inbenta-helpsite__body .inbenta-km__rating__content .content__buttons__button-wrapper .inbenta-km-button__icon {
  display: none;
}

.inbenta-helpsite__body .inbenta-km__rating__content .content__buttons__button-wrapper .inbenta-km-button__icon:before {
  content: "\26";
  font-size: 16px;
  color: var(--color-red-600);
  font-family: "inbenta-icons";
}

.inbenta-helpsite__body .inbenta-km__rating__content .content__buttons__button-wrapper .inbenta-km-button__text {
  display: block;
}

.inbenta-helpsite__body .inbenta-km__rating__content .content__buttons__button-wrapper:last-child .inbenta-km-button__icon:before {
  content: "\27";
  font-size: 16px;
  color: var(--color-red-600);
  font-family: "inbenta-icons";
}

.inbenta-helpsite__body .inbenta-km__rating__content .content__buttons__button-wrapper + .content__buttons__button-wrapper {
  margin-left: 4px;
}

.inbenta-helpsite__body .inbenta-km__rating__comment .comment__phrase {
  flex-grow: 2;
  padding-right: 16px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.inbenta-helpsite__body .inbenta-km__rating__comment .comment__feedback {
  display: flex;
  margin-top: 8px;
  border-radius: 8px;
  width: 100%;
  flex-direction: column;
}

.inbenta-helpsite__body .inbenta-km__rating__comment .comment__feedback__textarea {
  resize: none;
  border: none;
  padding: 10px 16px;
  border-radius: 2px 0 0 2px;
  width: 100%;
  margin: 0;
  height: 100px;
}

.inbenta-helpsite__body .inbenta-km__rating__comment .comment__feedback__button .inbenta-km-button {
  cursor: pointer;
  display: inline-block;
  padding: 12px 24px;
  background-color: transparent;
  color: var(--color-red-600);
  border: 2px solid var(--color-red-600);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
  display: inline-block;
  margin-top: 10px;
}

.inbenta-helpsite__body .inbenta-km__rating__comment .comment__feedback__button .inbenta-km-button__text {
  display: block;
}

.inbenta-helpsite__body .inbenta-km__rating__comment .comment__feedback__button .inbenta-km-button .inbenta-km-icon {
  display: none;
}

.inbenta-helpsite__body .inbenta-km__rating__comment .comment__feedback__button .inbenta-km-button .inbenta-km-icon:before {
  content: "\28";
  font-size: 16px;
  color: var(--color-red-600);
  font-family: "inbenta-icons";
}

.inbenta-helpsite__body .inbenta-km__rating__comment .comment__feedback__button .inbenta-km-button:hover {
  background-color: #ffffff;
  color: var(--color-red-600);
}

.inbenta-helpsite__body .inbenta-km__rating__comment .comment__feedback__button .inbenta-km-button--disabled {
  pointer-events: none;
}

.inbenta-helpsite__body .inbenta-km__rating__comment .comment__feedback__button .inbenta-km-button--disabled .inbenta-km-icon {
  opacity: 0.48;
}

.inbenta-helpsite__body .inbenta-km__rating__thanks {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.inbenta-helpsite__body .inbenta-km__rating__content,
.inbenta-helpsite__body .inbenta-km__rating__thanks,
.inbenta-helpsite__body .inbenta-km__rating__comment {
  padding: 16px;
}

.inbenta-helpsite__body .inbenta-km__rating__content--hidden,
.inbenta-helpsite__body .inbenta-km__rating__thanks--hidden,
.inbenta-helpsite__body .inbenta-km__rating__comment--hidden {
  display: none;
}

body {
  
  background-color: #fff !important;
}

.my-16 {  padding: 15px 20px; margin-bottom: -50px;
}.Breadcrumb_item {
    display: inline;
}.font-xs-regular {
    font-weight: var(--font-weight-regular);
}.Breadcrumb_breadcrumb_ {
    margin: 0;
    padding: var(--space-8) 0;
    color: var(--color-neutral-700);
}.Breadcrumb_breadcrumb_ a,.Breadcrumb_breadcrumb_ a:hover {
    color: #fff;
    text-decoration: none;
}.Breadcrumb_item:not(:last-child):after {
    padding: 0 var(--space-4);
    content: "/";   color: #fff;
}