.hotline-name {
  position: relative;
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 700;
}
.chevron-icon {
  height: 1.5rem;
  width: 1.5rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.hotline-details {
  height: 0px;
  /*transition: max-height 0.8s ease-in-out;*/
  transition-duration: 0.8s;
  transition-property: height;
  overflow: hidden;
  margin-top: 1rem;
}

.hotline-header {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-xl);
}
.hotline-information {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.hotline-number {
  text-decoration: underline;
  /*font-weight: 500;*/
  color: #b3b3b3;
}
.hotline-availability,
.hotline-number {
  position: relative;
  line-height: 150%;
}
.hotline-availability-container {
  /*background-color: var(--color-bg-alert);*/
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-white);
  margin-left: 1rem;
padding: 2px 12px 2px 12px;
gap: 8px;
border-radius: 9999px;
opacity: 0px;
}
.red {
  background-color: #E51717B2;
}
.green {
  background-color: var(--color-bg-success, #47CC0AB2);
}
.orange {
  background-color: #dd9a07b2;
}
.hotline-contact,
.hotline-item {
  display: flex;
  justify-content: flex-start;
}
.hotline-contact {
  flex-direction: row;
  align-items: center;
  gap: var(--gap-base);
  font-size: var(--font-size-lg);
  color: var(--color-text-grey);
}
.hotline-item {
  align-self: stretch;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-5xs);
  cursor: pointer;
}
.hotlines-list-child {
  align-self: stretch;
  height: 0.125rem;
  position: relative;
  border-top: 2px solid var(--color-gray-100);
  box-sizing: border-box;
}

.hotlines-list-item {
  align-self: stretch;
  height: 0.125rem;
  position: relative;
  border-top: 1px solid #232323;
  box-sizing: border-box;
}
.hotlines-list-inner {
  align-self: stretch;
  height: 0.125rem;
  position: relative;
  border-top: 2px solid var(--color-gray-100);
  box-sizing: border-box;
}
.breadcrumb,
.hotlines-list {
 /* position: absolute;
  left: 21.813rem;*/
}
.hotlines-list {
  top: 22rem;
  border-radius: 16px;
  background-color: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2.5rem;
  box-sizing: border-box;
  gap: 1.5rem;
  max-width: 100%;
  font-size: var(--font-size-3xl);
  cursor: pointer;
}
.breadcrumb {
  top: 9.813rem;
  font-size: var(--button-m-size);
  line-height: 150%;
  color: var(--color-text-primary);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .main-title {
    font-size: 2rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .main-title {
    font-size: 2rem;
    line-height: 2rem;
    margin-top: 1rem;
  }
  .subtitle {
    font-size: 1.188rem;
    line-height: 1.188rem;
  }
  .hotline-name {
    line-height: 1.625rem;
  }
}
