* {
  animation: auto ease 0s 1 normal none running none !important;
  transition: none !important;
  scroll-behavior: auto;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 250px;
}

.article-title .article-title__headline {
  font-size: 40px !important;
}

@media (max-width: 767px) {
  .article-title .article-title__headline {
    font-size: 28px !important;
  }
}

h3 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 900;
  margin-bottom: 20px;
}

:root {
  --text-color: #1d2228;
  --blue: #052962;
  --white: #ffffff;
  --box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
}

.article-body p {
  padding-bottom: 10px;
  white-space: normal;
}

.btn_n {
  outline: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: rgb(41, 41, 58);
  width: 70%;
  border: 0px;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  box-sizing: border-box;
  padding: 16px 20px;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
  margin: 0px 0px 20px;
  font-weight: 700;
  color: rgb(255, 255, 255) !important;
  text-decoration: none !important;
  transition: 0.3s !important;
}

.btn_n:hover {
  background: rgb(74, 74, 101);
}

.btn_n:focus {
  background: rgb(74, 74, 101);
}

.btn_n .animation {
  border-radius: 100%;
  animation: 0.6s linear 0s infinite normal none running ripple;
}

.btn_n span {
  display: block;
  width: 80%;
}

@keyframes ripple {
  0% {
    box-shadow:
      rgba(255, 255, 255, 0.1) 0px 0px 0px 0px,
      rgba(255, 255, 255, 0.1) 0px 0px 0px 20px,
      rgba(255, 255, 255, 0.1) 0px 0px 0px 40px,
      rgba(255, 255, 255, 0.1) 0px 0px 0px 60px;
  }
  100% {
    box-shadow:
      rgba(255, 255, 255, 0.1) 0px 0px 0px 20px,
      rgba(255, 255, 255, 0.1) 0px 0px 0px 40px,
      rgba(255, 255, 255, 0.1) 0px 0px 0px 60px,
      rgba(255, 255, 255, 0) 0px 0px 0px 80px;
  }
}

@media (max-width: 576px) {
  .btn_n {
    width: 100%;
  }
}

.tweet-card {
  width: 100%;
  max-width: 600px;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(229, 231, 235);
  border-radius: 16px;
  padding: 16px;
  margin: 0px auto;
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  color: rgb(15, 20, 25);
}

.tweet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.tweet-header-left {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.profile-pic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 12px;
}

.tweet-user {
  display: flex;
  flex-direction: column;
}

.tweet-user-link {
  display: flex;
  align-items: center;
}

.tweet-user-name {
  font-size: 15px;
  font-weight: 700;
  margin-right: 4px;
}

.tweet-verified-icon {
  width: 18px;
  height: 18px;
}

.tweet-username {
  font-size: 13px;
  color: rgb(83, 100, 113);
}

.tweet-more-icon {
  width: 20px;
  height: 20px;
  fill: rgb(83, 100, 113);
  cursor: pointer;
}

.tweet-content p {
  font-size: 16px;
  line-height: 1.5;
  color: rgb(15, 20, 25);
  margin-bottom: 12px;
}

.tweet-content a {
  color: rgb(29, 155, 240);
  text-decoration: none;
}

.tweet-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgb(83, 100, 113);
  font-size: 12px;
  margin-bottom: 16px;
}

.tweet-info-icon {
  width: 18px;
  height: 18px;
  fill: rgb(83, 100, 113);
}

.tweet-divider {
  border-width: 1px 0px 0px;
  border-right-style: initial;
  border-bottom-style: initial;
  border-left-style: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image: initial;
  border-top-style: solid;
  border-top-color: rgb(229, 231, 235);
  margin: 16px 0px;
}

.tweet-stats {
  display: flex;
  gap: 24px;
  color: rgb(83, 100, 113);
  font-size: 12px;
  margin-bottom: 16px;
}

.tweet-stat-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.tweet-stat-item svg {
  width: 18px;
  height: 18px;
}

.tweet-stat-item span {
  margin-left: 6px;
  font-weight: 600;
}

.tweet-like-icon path {
  fill: rgb(249, 24, 128);
}

.tweet-reply-icon path {
  fill: rgb(29, 155, 240);
}

.tweet-share-icon path {
  fill: rgb(83, 100, 113);
}

.tweet-footer-link {
  font-size: 13px;
  color: rgb(29, 155, 240);
  text-decoration: none;
  cursor: pointer;
}

.tweet-stat-item:hover span,
.tweet-footer-link:hover,
.tweet-content a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .tweet-card {
    padding: 14px;
    border-radius: 12px;
  }
  .profile-pic {
    width: 40px;
    height: 40px;
  }
}

.tweet-card a {
  border: none !important;
}

.tweet-card svg {
  width: 24px !important;
  height: 24px !important;
}

.tweet-card {
  font-family: Inter, sans-serif !important;
  width: 100% !important;
  background-color: rgb(255, 255, 255) !important;
  border-radius: 12px !important;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px !important;
  padding: 16px !important;
  border: 1px solid rgb(224, 224, 224) !important;
}

.profile-pic {
  width: 48px !important;
  height: 48px !important;
  border-radius: 9999px !important;
  object-fit: cover !important;
}

.tweet-card a.tweet-footer-link {
  color: rgb(0, 111, 214) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 5px !important;
  border-radius: 25px !important;
  border: 1px solid gray !important;
}

.tweet-footer-link:hover {
  text-decoration: underline !important;
  color: rgb(0, 111, 214) !important;
}

.customNewsWrapper {
  width: 100%;
  max-width: 700px;
  margin: 20px auto;
  border: 1px solid rgb(204, 204, 204);
  border-radius: 10px;
  overflow: hidden;
  background-color: rgb(249, 241, 231);
  display: flex;
  flex-wrap: wrap;
}

.uniqueImageHolder {
  flex: 0 0 40%;
  max-width: 40%;
}

.uniqueImageHolder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.distinctTextArea {
  flex: 1 1 60%;
  padding: 15px;
  color: rgb(51, 51, 51);
}

.specialHeadline {
  font-size: 1rem;
  line-height: 1.7rem;
  color: rgb(194, 21, 73);
}

.exclusiveContent {
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  font-size: 1rem !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  margin-top: 8px !important;
}

.uniqueImageHolder a:has(img) {
  display: flex;
  width: 100%;
  height: 100%;
}

@media (max-width: 480px) {
  .customNewsWrapper {
    flex-direction: column;
  }
  .uniqueImageHolder {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .distinctTextArea {
    flex: 1 1 100%;
  }
}

#Send-Us-Message {
  max-width: 100%;
}

#Send-Us-Message {
  border: none;
  border-radius: 5px;
  max-width: 560px;
  margin: 0px auto;
  font-family: Arial;
  box-shadow: rgba(0, 0, 0, 0.19) 3px 3px 6px;
  background: rgb(47, 48, 50);
}

#Send-Us-Message {
  max-width: 100%;
}

*,
::after,
::before {
  box-sizing: inherit;
  margin: 0px;
}

h2 {
  margin-bottom: 8px;
  font-family: 'Gotham XNarrow';
}

h2 {
  font-size: 28px;
}

.Send-Us-Message-Title {
  text-align: center;
  padding: 30px 15px;
  font-size: 30px;
  background: rgba(108, 189, 222, 0);
  color: var(--text);
  text-transform: uppercase;
  margin: 0px;
  line-height: 1.2;
  letter-spacing: 2px;
}

button {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0px;
}

button {
  overflow: visible;
}

button {
  text-transform: none;
}

button {
  touch-action: manipulation;
}

button {
  appearance: button;
}

button {
  appearance: button;
}

button > * {
  pointer-events: none;
}

.article-body > ul {
  color: var(--body-color);
  font-family: var(--body-font);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height-sm);
}

.page-wrapper[data-tenant='bild'] {
  --main-tenant-color: #d00;
  --secondary-tenant-color: #d00;
  --secondary-tenant-color-hsl-hover: 0 100% 33%;
  --teaser-linear-gradient: linear-gradient(
    rgba(33, 37, 41, 0),
    rgba(33, 37, 41, 0.7)
  );
  --text-shadow-headline: 0 2px 8px rgba(0, 0, 0, 0.6);
  --ressort-header-font:
    Gotham, Avenir Next, Helvetica Neue, sans-serif-black, Arial Narrow,
    Arial Nova, sans-serif;
  --ressort-header-color: #212529;
  --ressort-header-font-size-lg: 28px;
  --ressort-header-font-size-md: 22px;
  --ressort-header-font-size-sm: 22px;
  --ressort-header-line-height: 1.1;
  --breadcrumb-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --breadcrumb-font-size: 12px;
  --breadcrumb-font-weight: 700;
  --breadcrumb-line-height: 1.4;
  --breadcrumb-letter-spacing: 0;
  --footnote-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --footnote-font-size-sm: 16px;
  --footnote-line-height-sm: 1.3125;
  --footnote-font-size-lg: 18px;
  --footnote-line-height-lg: 1.278;
  --footnote-font-weight: 700;
  --teaser-title-padding-sm: 0 8px 12px;
  --teaser-title-padding-md: 0 12px 16px;
  --teaser-title-padding-lg: 0 12px 16px;
  --teaser-quad-title-padding-md: 0 16px 16px;
  --teaser-quad-title-padding-lg: 0 12px 16px;
  --teaser-mini-quad-title-padding-md: 0 8px 12px;
  --teaser-mini-quad-title-padding-lg: 0 8px 16px;
  --teaser-super-a-title-padding-lg: 0 16px 16px;
  --teaser-b-teaser-title-padding-lg: 0 8px 16px;
  --teaser-bc-teaser-title-padding-lg: 0 8px 16px;
  --teaser-double-a-teaser-title-padding-lg: 0 8px 16px;
  --teaser-a-teaser-mini-title-padding: 0 8px 12px;
  --teaser-title-align-items-overlay: center;
  --teaser-title-text-align-overlay: center;
  --teaser-text-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --teaser-text-font-style: normal;
  --teaser-text-font-size: 18px;
  --teaser-text-line-height: 1.3;
  --teaser-text-font-weight: 400;
  --kicker-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --kicker-font-style: normal;
  --kicker-background-color: #d00;
  --kicker-color: #d00;
  --kicker-0-font-size-lg: 30px;
  --kicker-0-line-height-lg: 1;
  --kicker-0-font-weight-lg: 700;
  --kicker-1-font-size-lg: 24px;
  --kicker-1-line-height-lg: 1;
  --kicker-1-font-weight-lg: 700;
  --kicker-2-font-size-lg: 20px;
  --kicker-2-line-height-lg: 1;
  --kicker-2-font-weight-lg: 700;
  --kicker-3-font-size-lg: 16px;
  --kicker-3-line-height-lg: 1;
  --kicker-3-font-weight-lg: 700;
  --kicker-0-font-size-md: 22px;
  --kicker-0-line-height-md: 1;
  --kicker-0-font-weight-md: 700;
  --kicker-1-font-size-md: 22px;
  --kicker-1-line-height-md: 1;
  --kicker-1-font-weight-md: 700;
  --kicker-2-font-size-md: 18px;
  --kicker-2-line-height-md: 1;
  --kicker-2-font-weight-md: 700;
  --kicker-3-font-size-md: 16px;
  --kicker-3-line-height-md: 1.1;
  --kicker-3-font-weight-md: 700;
  --kicker-0-font-size-sm: 18px;
  --kicker-0-line-height-sm: 1.1;
  --kicker-0-font-weight-sm: 700;
  --kicker-1-font-size-sm: 18px;
  --kicker-1-line-height-sm: 1.1;
  --kicker-1-font-weight-sm: 700;
  --kicker-2-font-size-sm: 16px;
  --kicker-2-line-height-sm: 1.1;
  --kicker-2-font-weight-sm: 700;
  --kicker-3-font-size-sm: 14px;
  --kicker-3-line-height-sm: 1.1;
  --kicker-3-font-weight-sm: 700;
  --headline-font:
    Gotham Cond, HelveticaNeue-CondensedBold, Helvetica Neue, Franklin Gothic,
    sans-serif-condensed, Arial Narrow, Arial Nova, sans-serif;
  --headline-font-style: normal;
  --headline-color: #212529;
  --headline-padding-lg: 0 16px;
  --headline-text-align-lg: center;
  --headline-text-align-md: center;
  --headline-text-align-sm: center;
  --headline-1-font-size-lg: 100px;
  --headline-1-line-height-lg: 1;
  --headline-1-font-weight-lg: 700;
  --headline-2-font-size-lg: 64px;
  --headline-2-line-height-lg: 1;
  --headline-2-font-weight-lg: 700;
  --headline-3-font-size-lg: 40px;
  --headline-3-line-height-lg: 1;
  --headline-3-font-weight-lg: 700;
  --headline-4-font-size-lg: 32px;
  --headline-4-line-height-lg: 1;
  --headline-4-font-weight-lg: 600;
  --headline-1-font-size-md: 72px;
  --headline-1-line-height-md: 1;
  --headline-1-font-weight-md: 700;
  --headline-2-font-size-md: 48px;
  --headline-2-line-height-md: 1;
  --headline-2-font-weight-md: 700;
  --headline-3-font-size-md: 36px;
  --headline-3-line-height-md: 1;
  --headline-3-font-weight-md: 700;
  --headline-4-font-size-md: 26px;
  --headline-4-line-height-md: 1;
  --headline-4-font-weight-md: 600;
  --headline-1-font-size-sm: 48px;
  --headline-1-line-height-sm: 1;
  --headline-1-font-weight-sm: 700;
  --headline-2-font-size-sm: 48px;
  --headline-2-line-height-sm: 1;
  --headline-2-font-weight-sm: 700;
  --headline-3-font-size-sm: 32px;
  --headline-3-line-height-sm: 1;
  --headline-3-font-weight-sm: 700;
  --headline-4-font-size-sm: 22px;
  --headline-4-line-height-sm: 1;
  --headline-4-font-weight-sm: 600;
  --sub-headline-font:
    Gotham Cond, HelveticaNeue-CondensedBold, Helvetica Neue, Franklin Gothic,
    sans-serif-condensed, Arial Narrow, Arial Nova, sans-serif;
  --sub-headline-font-style: normal;
  --sub-headline-color: #212529;
  --sub-headline-text-align-lg: center;
  --sub-headline-text-align-md: center;
  --sub-headline-text-align-sm: center;
  --sub-headline-1-font-size-lg: 36px;
  --sub-headline-1-line-height-lg: 1;
  --sub-headline-1-font-weight-lg: 700;
  --sub-headline-1-font-size-md: 32px;
  --sub-headline-1-line-height-md: 1;
  --sub-headline-1-font-weight-md: 700;
  --sub-headline-1-font-size-sm: 24px;
  --sub-headline-1-line-height-sm: 1;
  --sub-headline-1-font-weight-sm: 700;
  --sub-headline-padding-sm: 0 8px;
  --sub-headline-padding-md: 0 12px;
  --sub-headline-padding-lg: 0 16px;
  --cross-heading-color: #212529;
  --cross-heading-underline-color: #d00;
  --news-ticker-time-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --news-ticker-time-font-size-lg: 18px;
  --news-ticker-time-font-size-md: 16px;
  --news-ticker-time-font-size-sm: 16px;
  --news-ticker-spacing-sm: 22px;
  --news-ticker-spacing-md: 22px;
  --news-ticker-spacing-lg: 22px;
  --footer-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --footer-hover-color: #f52d2d;
  --button-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --button-font-style: normal;
  --button-1-font-size: 17px;
  --button-1-line-height: 1;
  --button-2-font-size: 15px;
  --button-2-line-height: 1;
  --special-navi-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --special-navi-hover-color-text: #212529;
  --special-navi-hover-color-line: #d00;
  --countdown-card-font:
    Gotham, Avenir Next, Helvetica Neue, sans-serif-black, Arial Narrow,
    Arial Nova, sans-serif;
  --countdown-label-font:
    Gotham Cond, HelveticaNeue-CondensedBold, Helvetica Neue, Franklin Gothic,
    sans-serif-condensed, Arial Narrow, Arial Nova, sans-serif;
  --countdown-card-size-sm: 60px;
  --countdown-card-size-md: 90px;
  --countdown-card-size-lg: 135px;
  --live-ticker-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --live-ticker-icon-color: #212529;
  --breaking-news-headline-font:
    Gotham, Avenir Next, Helvetica Neue, sans-serif-black, Arial Narrow,
    Arial Nova, sans-serif;
  --breaking-news-headline-background-color: #fd8227;
  --breaking-news-headline-color-1: #212529;
  --breaking-news-headline-color-2: #212529;
  --breaking-news-content-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --breaking-news-content-color: #fff;
  --breaking-news-content-background-color: #212529;
  --breaking-news-content-font-size: 21px;
  --breaking-news-headline-1-font-size-sm: 13px;
  --breaking-news-headline-1-font-size-md: 17px;
  --breaking-news-headline-2-font-size-sm: 23px;
  --breaking-news-headline-2-font-size-md: 30px;
  --video-recommendation-teaser-title-text-align: center;
  --video-recommendation-content-text-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --video-recommendation-content-text-font-size-md: 16px;
  --video-recommendation-content-text-line-height-md: 1.3125;
  --video-recommendation-content-text-font-size-lg: 18px;
  --video-recommendation-content-text-line-height-lg: 1.2777;
  --video-banner-font-size-sm: 12px;
  --video-banner-font-size-md: 16px;
  --video-banner-font-size-lg: 18px;
  --video-banner-font-size-xl: 18px;
  --article-kicker-text-align-sm: center;
  --article-kicker-text-align-md: center;
  --article-kicker-text-align-lg: center;
  --article-author-font:
    Gotham, Avenir Next, Helvetica Neue, sans-serif-black, Arial Narrow,
    Arial Nova, sans-serif;
  --article-author-text-color: #212529;
  --article-author-font-size-lg: 16px;
  --article-author-line-height-lg: 1.3125;
  --article-author-font-size-md: 14px;
  --article-author-line-height-md: 1.2857;
  --article-author-font-size-sm: 12px;
  --article-author-line-height-sm: 1.3333;
  --body-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --body-color: #212529;
  --body-font-size: 21px;
  --body-line-height-lg: 1.5238;
  --body-line-height-sm: 1.3333;
  --article-figure-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --article-figure-caption-color: #212529;
  --article-figure-caption-font-size-lg: 18px;
  --article-figure-caption-line-height-lg: 1.375;
  --article-figure-caption-font-size-md: 18px;
  --article-figure-caption-line-height-md: 1.375;
  --article-figure-caption-font-size-sm: 16px;
  --article-figure-caption-line-height-sm: 1.2;
  --article-figure-meta-color: #495057;
  --article-figure-meta-line-height-lg: 1.2777777778;
  --article-figure-meta-line-height-sm: 1.3125;
  --article-figure-meta-font-size-lg: 18px;
  --article-figure-meta-font-size-sm: 16px;
  --caption-font:
    Gotham, Avenir Next, Helvetica Neue, sans-serif-black, Arial Narrow,
    Arial Nova, sans-serif;
  --caption-font-weight: 800;
  --caption-color: #212529;
  --caption-1-line-height-lg: 1.3;
  --caption-1-line-height-md: 1.3;
  --caption-1-line-height-sm: 1.3;
  --caption-1-uppercase-line-height: 1.1;
  --caption-1-font-size-lg: 20px;
  --caption-1-font-size-md: 18px;
  --caption-1-font-size-sm: 16px;
  --live-ticker-btn-size: 17px;
  --live-ticker-btn-line-height: 1.2;
  --live-ticker-btn-color: #d00;
  --cta-button-background-color: #d00;
  --cta-button-background-color-hover: #a00;
  --text-link-underline-color: #d00;
  --text-link-hover-color: #212529;
  --quotation-color: #fff;
  --quotation-background-color: #d00;
  --label-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --label-font-size: 12px;
  --label-font-weight: 700;
  --label-line-height: 1.2;
  --titled-icon-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --titled-icon-font-weight: 400;
  --titled-icon-font-size-sm: 12px;
  --titled-icon-font-height-sm: 1.17;
  --titled-icon-font-size-lg: 12px;
  --titled-icon-font-height-lg: 1.17;
  --nav-btn-font-size: 15px;
  --nav-btn-line-height: 3.2;
  --nav-btn-letter-spacing: 0;
  --nav-btn-padding: 0;
  --nav-btn-color: #495057;
  --nav-btn-color-hover: #212529;
  --nav-btn-background-color-hover: #d00;
  --nav-btn-border-color: #ced4da;
  --nav-btn-mobile-icon-color: #495057;
  --nav-btn-mobile-font-size: 17px;
  --nav-btn-mobile-line-height: 2.8235294118;
  --nav-btn-mobile-letter-spacing: 0;
  --nav-btn-ad-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --nav-btn-ad-font-size: 15px;
  --nav-btn-ad-line-height: 2.4;
  --nav-btn-ad-title-font: Arial Narrow, Arial Nova, sans-serif;
  --nav-btn-ad-title-font-size: 12px;
  --nav-btn-ad-title-line-height: 1.25;
  --nav-menu-back-color: #fff;
  --nav-menu-box-shadow-color: #e9ecef;
  --nav-menu-overflow-y: visible;
  --nav-menu-width: 828px;
  --nav-menu-padding: 12px 0 0 0;
  --nav-menu-logo-padding: 8px;
  --nav-fixed-menu-width: 920px;
  --nav-fixed-menu-padding-left: 0;
  --nav-fixed-menu-line-height: 3.7333333333;
  --nav-menu-util-padding-right: 0;
  --nav-menu-mobile-back-color: rgba(33, 37, 41, 0.6);
  --nav-burger-menu-color: #495057;
  --stage-feed-choice-chip-color: #212529;
  --stage-feed-choice-chip-background-color-hover: #af0000;
  --stage-feed-cross-heading-bottom-separator-color: #d00;
  --stage-feed-description-color: #495057;
  --stage-feed-item-marks-color: #495057;
  --stage-feed-item-mark-height: 23px;
  --navi-font:
    Gotham XNarrow, Avenir Next Condensed, sans-serif-condensed, Arial Narrow,
    Arial Nova, sans-serif;
  --navi-font-style: normal;
  --navi-highlight-color: #212529;
}

html {
  text-size-adjust: 100%;
  line-height: 1.15;
}

body {
  margin: 0px;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0px;
}

hr {
  box-sizing: content-box;
  height: 0px;
  overflow: visible;
}

a {
  background-color: transparent;
}

strong {
  font-weight: bolder;
}

img {
  border-style: none;
}

button,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0px;
}

button {
  overflow: visible;
}

button {
  text-transform: none;
}

button {
  appearance: button;
}

textarea {
  overflow: auto;
}

::-webkit-file-upload-button {
  appearance: button;
  font: inherit;
}

@media (min-width: 0) and (max-width: 63.9375em) {
  .hidden-small-medium {
    display: none !important;
  }
}

.page-header {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  height: 72px;
  left: 0px;
  pointer-events: none;
  position: sticky;
  right: 0px;
  top: 0px;
  z-index: 651;
}

.page-header *,
.page-header ::after,
.page-header ::before {
  box-sizing: inherit;
}

.page-header a > * {
  pointer-events: none;
}

.page-header__wrapper {
  background-color: var(--nav-menu-back-color);
  box-shadow: rgba(33, 37, 41, 0.25) 0px 0px 10px 0px;
  display: flex;
  height: 100%;
  justify-content: space-between;
  pointer-events: auto;
  position: relative;
}

@media (min-width: 64em) {
  .page-header,
  .page-header__wrapper {
    height: 160px;
    width: 1024px;
  }
  .page-header__wrapper {
    background-color: rgb(255, 255, 255);
    box-shadow: none;
    justify-content: space-evenly;
    padding: var(--nav-menu-padding);
    transform-origin: left top;
    transition: height 0.4s ease-out;
    will-change: height;
  }
}

.page-header__logo {
  padding: var(--nav-menu-logo-padding);
}

.page-header__logo svg {
  display: block;
  height: 56px;
  pointer-events: auto;
  width: 56px;
}

@media (min-width: 64em) {
  .page-header__logo svg {
    height: 148px;
    transform-origin: left top;
    transition:
      width 0.4s ease-out,
      height 0.4s ease-out;
    width: 148px;
    will-change: width, height;
  }
}

@media (min-width: 64em) {
  .page-header__logo {
    padding: 0px;
  }
}

@supports (--css: variables) {
}

.btn.btn--hidden-text .btn__icon ~ .btn__text {
  clip: rect(0px, 0px, 0px, 0px);
  border: 0px;
  clip-path: inset(100%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0px;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.btn {
  -webkit-font-smoothing: antialiased;
  align-items: center;
  background-color: rgb(233, 236, 239);
  border: none;
  border-radius: 8px;
  box-sizing: border-box;
  color: rgb(73, 80, 87);
  cursor: pointer;
  display: inline-flex;
  flex-basis: auto;
  font-family: var(--button-font);
  font-size: 17px;
  font-weight: 700;
  height: 48px;
  justify-content: center;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 0px;
  text-transform: uppercase;
  transition:
    color 0.25s ease-in-out,
    background-color 0.25s ease-in-out;
}

.btn *,
.btn ::after,
.btn ::before {
  box-sizing: inherit;
  margin: 0px;
}

.btn > * {
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .btn:active,
  .btn:hover {
    background-color: rgb(203, 211, 218);
  }
}

.btn__icon {
  padding: 12px 10px 12px 16px;
}

.btn__icon svg {
  display: block;
  height: 24px;
  margin: auto;
  width: 24px;
}

.btn__icon ~ .btn__text {
  padding: 0px 16px 0px 0px;
}

.btn__text {
  padding: 0px 16px;
}

.btn--narrow {
  font-size: 15px;
  height: 36px;
}

.btn--narrow .btn__icon {
  padding: 6px 10px 6px 16px;
}

.btn.btn--hidden-text .btn__icon {
  padding: 12px 16px;
}

.btn.btn--hidden-text .btn__icon ~ .btn__text {
  padding: 0px 16px 0px 0px;
}

@media (min-width: 64em) {
  .btn.btn--hidden-text .btn__icon {
    padding: 12px 10px 12px 16px;
  }
}

.checkbox__input:focus-visible {
  outline: -webkit-focus-ring-color auto 5px;
}

.page-footer {
  margin: 0px auto;
  max-width: 488px;
  padding: 0px 8px 60px;
}

@media (min-width: 37.5em) {
  .page-footer {
    padding: 0px 0px 60px;
  }
}

@media (min-width: 64em) {
  .page-footer {
    padding: 0px 0px 80px;
  }
}

.page-footer__btn-container {
  display: flex;
  flex-flow: wrap;
}

.page-footer .btn {
  flex: 0 1 100%;
  margin: 0px auto 24px;
}

@media (min-width: 37.5em) {
  .page-footer .btn {
    flex: 0 1 236px;
  }
}

@media (min-width: 64em) {
  .page-footer .btn {
    flex: 0 1 236px;
  }
}

.page-footer .btn:first-of-type {
  margin: 0px auto 8px;
}

@media print {
  .page-footer {
    display: none;
  }
}

.page-footer__list {
  color: rgb(73, 80, 87);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--footer-font);
  font-weight: 700;
  justify-content: center;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.page-footer__list__item {
  font-size: 11px;
  line-height: 1.27273;
  margin-bottom: 4px;
  padding: 0px 6px;
}

.page-footer__list__item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}

.page-footer__list__item a:active,
.page-footer__list__item a:hover {
  color: var(--footer-hover-color);
}

.switch__input:focus-visible {
  outline: -webkit-focus-ring-color auto 5px;
}

.btn--menu.btn {
  align-items: center;
  background-color: transparent;
  display: flex;
  flex-basis: auto;
  flex-flow: column;
  height: 56px;
  margin-left: 16px;
  margin-top: 8px;
  outline: none;
  position: relative;
  width: 57px;
  z-index: 501;
}

.btn--menu.btn svg {
  height: 18px;
  width: 18px;
}

.btn--menu::before {
  background-color: var(--nav-btn-border-color);
  content: '';
  height: 40px;
  left: 0px;
  position: absolute;
  top: 8px;
  width: 1px;
}

.btn--menu .burger-icon-group__path {
  fill: var(--nav-burger-menu-color);
  transition:
    transform 0.4s ease-out,
    opacity 0.3s ease-out;
}

.btn--menu .burger-icon-group__path--top {
  transform-origin: 4px 4px;
}

.btn--menu .burger-icon-group__path--bottom {
  transform-origin: 2px 8px;
}

@media (min-width: 64em) {
  .btn--menu.btn {
    display: none;
  }
}

.navi {
  display: flex;
}

@media (min-width: 64em) {
  .navi {
    display: block;
    transform-origin: left top;
    transition: width 0.4s ease-out;
    width: var(--nav-menu-width);
    will-change: width;
  }
}

@media (min-width: 64em) {
  .navi__links__utils {
    align-items: center;
    height: 100px;
    padding-right: var(--nav-menu-util-padding-right);
    transform-origin: left top;
    transition:
      opacity 0.4s ease-out,
      height 0.4s ease-out,
      transform 0.4s ease-out;
    will-change: opacity, height, transform;
  }
}

.nav_btn {
  appearance: none;
  background-color: transparent;
  border: none;
  color: rgb(73, 80, 87);
  cursor: pointer;
  display: flex;
  font-family: var(--label-font);
  padding: 0px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
}

.nav_btn__icon {
  align-items: center;
  display: flex;
  justify-content: space-around;
  width: auto;
}

.nav_btn__icon svg {
  display: block;
}

.nav_btn__text {
  white-space: nowrap;
}

.nav_btn--text-bold {
  font-weight: 700;
}

.nav_btn--type-util {
  align-items: center;
  flex-flow: column;
  height: 56px;
  justify-content: space-around;
  min-width: 56px;
}

.nav_btn--type-util .nav_btn__icon {
  height: 24px;
  min-width: 24px;
}

.nav_btn--type-util .nav_btn__text {
  font-size: var(--label-font-size);
  font-weight: var(--label-font-weight);
  line-height: var(--label-line-height);
}

.nav_btn--type-util .nav_btn__text {
  display: none;
}

@media (min-width: 64em) {
  .nav_btn--type-util {
    height: 48px;
    justify-content: space-between;
    min-width: auto;
  }
  .nav_btn--type-util:active svg:not(.preserve-color) path,
  .nav_btn--type-util:hover svg:not(.preserve-color) path {
    fill: var(--secondary-tenant-color);
  }
  .nav_btn--type-util .nav_btn__text {
    display: initial;
  }
}

.nav-list {
  display: flex;
  margin: 0px;
  padding: 0px;
}

.nav-list li {
  list-style-type: none;
}

.nav-list--util-nav {
  flex-flow: row;
  justify-content: flex-end;
  padding: 8px 0px;
}

.nav-list--util-nav li:not(:first-child) {
  margin-left: 16px;
}

@media (min-width: 64em) {
  .nav-list--util-nav {
    padding: 0px;
  }
  .nav-list--util-nav li:nth-child(2) {
    border-right: 1px solid rgb(233, 236, 239);
    padding-right: 32px;
  }
  .nav-list--util-nav li:not(:first-child) {
    margin-left: 32px;
  }
}

.nav_btn--bild-live {
  flex-flow: row;
}

.nav_btn--bild-live .nav_btn__text {
  display: inline-block;
  margin-left: 4px;
}

@media (min-width: 64em) {
  .nav_btn--bild-live {
    flex-flow: column;
  }
  .nav_btn--bild-live .nav_btn__text {
    margin: 0px;
  }
}

.nav-list--util-nav--mobile .nav_btn--bild-live .nav_btn__text {
  color: var(--nav-burger-menu-color);
}

.nav-list--util-nav--mobile .nav_btn--bild-live .nav_btn__icon svg path {
  fill: var(--nav-btn-mobile-icon-color);
}

@media (min-width: 64em) {
  .nav-list--util-nav--mobile .nav_btn--bild-live .nav_btn__text {
    color: rgb(73, 80, 87);
  }
  .nav-list--util-nav--mobile .nav_btn--bild-live .nav_btn__icon svg path {
    fill: rgb(73, 80, 87);
  }
}

.article-body {
  margin-bottom: 8px;
  padding: 0px 16px;
}

@media (min-width: 37.5em) {
  .article-body {
    margin-bottom: 12px;
    padding: 0px 72px;
  }
}

@media (min-width: 64em) {
  .article-body {
    margin-bottom: 16px;
    padding: 0px 162px;
  }
}

.article-body > p {
  color: var(--body-color);
  font-family: var(--body-font);
  font-size: var(--body-font-size);
  line-height: var(--body-line-height-sm);
  padding-bottom: 16px;
  white-space: pre-line;
}

@media (min-width: 64em) {
  .article-body > p {
    line-height: var(--body-line-height-lg);
    padding-bottom: 32px;
  }
}

.article-body--conversion {
  margin-bottom: 0px;
}

@media (min-width: 37.5em) {
  .article-body--conversion {
    margin-bottom: 0px;
  }
}

.article-title {
  margin: 0px 0px 16px;
  padding: 0px 16px;
}

@media (min-width: 37.5em) {
  .article-title {
    margin: 0px 0px 24px;
    padding: 0px 72px;
  }
}

@media (min-width: 64em) {
  .article-title {
    margin: 0px 0px 32px;
    padding: var(--headline-padding-lg);
  }
}

.article-title__headline {
  color: var(--headline-color);
  display: block;
  font-family: var(--headline-font);
  font-size: var(--headline-1-font-size-sm);
  font-style: var(--headline-font-style);
  font-weight: var(--headline-1-font-weight-sm);
  line-height: var(--headline-1-line-height-sm);
  text-align: var(--headline-text-align-sm);
}

@media (min-width: 37.5em) {
  .article-title__headline {
    font-size: var(--headline-1-font-size-md);
    line-height: var(--headline-1-line-height-md);
    text-align: var(--headline-text-align-md);
  }
}

@media (min-width: 64em) {
  .article-title__headline {
    font-size: var(--headline-1-font-size-lg);
    line-height: var(--headline-1-line-height-lg);
    text-align: var(--headline-text-align-lg);
  }
}

.page-wrapper {
  margin: 0px auto;
  max-width: 1024px;
  position: relative;
}

.page-content {
  background-color: rgb(255, 255, 255);
  position: relative;
}

.breaking-news {
  margin: 0px 0px 8px;
}

@media (min-width: 37.5em) {
  .breaking-news {
    margin: 0px 0px 12px;
  }
}

@media (min-width: 64em) {
  .breaking-news {
    margin: 16px;
  }
}

.main-content {
  margin: 8px 0px 40px;
  overflow-x: hidden;
}

@media (min-width: 37.5em) {
  .main-content {
    margin: 12px 0px 60px;
  }
}

@media (min-width: 64em) {
  .main-content {
    margin: 16px 0px 80px;
  }
}

.main-content > article {
  margin-top: 8px;
}

@media (min-width: 37.5em) {
  .main-content > article {
    margin-top: 12px;
  }
}

@media (min-width: 64em) {
  .main-content > article {
    margin-top: 16px;
  }
}

html {
  box-sizing: border-box;
}

*,
::after,
::before {
  box-sizing: inherit;
  margin: 0px;
}

body {
  -webkit-font-smoothing: antialiased;
}

a:active,
a:focus,
a:hover {
  -webkit-tap-highlight-color: transparent;
}

a[href],
button {
  touch-action: manipulation;
}

a > *,
button > * {
  pointer-events: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

@media print {
  img {
    break-after: auto;
    break-before: auto;
    break-inside: avoid;
  }
}

h1,
h2,
h3,
h5 {
  margin-bottom: 8px;
  font-family: 'Gotham XNarrow';
}

h2 {
  font-size: 28px;
}

.article-body p a,
.article-body li a {
  color: rgb(209, 10, 16);
  text-decoration: none;
  font-weight: 600;
}

:root {
  --mainColor: #6cbdde;
  --text: #ffffff;
  --input-color: #ffffff;
  --valid-input-color: #ffffff;
}

#Send-Us-Message {
  border: none;
  border-radius: 5px;
  max-width: 560px;
  margin: 0px auto;
  font-family: Arial;
  box-shadow: rgba(0, 0, 0, 0.19) 3px 3px 6px;
  background: rgb(47, 48, 50);
}

.Send-Us-Message-Title {
  text-align: center;
  padding: 30px 15px;
  font-size: 30px;
  background: rgba(108, 189, 222, 0);
  color: var(--text);
  text-transform: uppercase;
  margin: 0px;
  line-height: 1.2;
  letter-spacing: 2px;
}

@media (max-width: 767px) {
  .Send-Us-Message-Title {
    font-size: 24px;
  }
}

@media print {
  body {
    display: none !important;
  }
}

.u_cbox {
  position: relative;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  text-align: left;
  text-size-adjust: none;
}

.u_cbox .u_vc {
  overflow: hidden;
  position: absolute;
  clip: rect(0px, 0px, 0px, 0px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  white-space: nowrap;
}

.u_cbox,
.u_cbox h3,
.u_cbox h5,
.u_cbox ul,
.u_cbox li,
.u_cbox textarea,
.u_cbox button {
  margin: 0px;
  padding: 0px;
  font-family: Helvetica, sans-serif;
}

.u_cbox,
.u_cbox textarea,
.u_cbox button {
  font-size: 14px;
  line-height: 1.25em;
}

.u_cbox img {
  border: 0px;
}

.u_cbox ul {
  list-style: none;
}

.u_cbox em {
  font-style: normal;
}

.u_cbox a {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

.u_cbox strong {
  font-weight: 400;
}

.u_cbox a,
.u_cbox button {
  overflow-anchor: none;
}

.u_cbox button {
  overflow: visible;
  border: 0px;
  border-radius: 0px;
  background: 0px 0px;
  cursor: pointer;
  user-select: none;
  color: rgb(0, 0, 0);
}

.u_cbox .u_cbox_sort .u_cbox_sort_option_on .u_cbox_ico_select,
.u_cbox .u_cbox_ico_more,
.u_cbox .u_cbox_sort::before,
.u_cbox .u_cbox_sort::after,
.u_cbox .u_cbox_ico_arrow {
  background-image: url(../img/sp_cbox_w.png);
  background-repeat: no-repeat;
  background-size: 400px 800px;
  font-size: 0px;
  line-height: 0;
}

.u_cbox .u_cbox_work_sub .u_cbox_ico_open,
.u_cbox .u_cbox_ico_recomm,
.u_cbox .u_cbox_ico_unrecomm,
.u_cbox .u_cbox_paginate .u_cbox_ico_more {
  background-image: url('../img/sp_comment.svg');
  background-size: 410px 406px;
  background-repeat: no-repeat;
}

.u_cbox .u_cbox_head {
  min-height: 41px;
  margin: 0px 15px;
  padding-top: 3px;
  line-height: 41px;
}

.u_cbox .u_cbox_head::after {
  display: block;
  clear: both;
  content: '';
}

.u_cbox .u_cbox_head .u_cbox_head_tools {
  float: right;
  margin-right: -6px;
}

.u_cbox .u_cbox_head .u_cbox_head_tools::after {
  display: block;
  clear: both;
  content: '';
}

.u_cbox .u_cbox_title {
  float: left;
  font-size: 17px;
  font-weight: 700;
}

.u_cbox .u_cbox_count {
  float: left;
  padding: 1px 0px 0px 5px;
  font-size: 18px;
  font-family: HelveticaNeue-Light, Helvetica-Light, sans-serif;
  line-height: 39px;
}

.u_cbox .u_cbox_comment_count_wrap {
  margin: 0px 15px;
}

.u_cbox .u_cbox_comment_count::after {
  display: block;
  clear: both;
  content: '';
}

.u_cbox .u_cbox_count_info {
  position: relative;
  float: left;
  padding: 2px 9px 11px;
  font-size: 0px;
  line-height: 0;
}

.u_cbox .u_cbox_count_info::before {
  position: absolute;
  top: 6px;
  left: 0px;
  width: 1px;
  height: 10px;
  background: rgb(220, 220, 220);
  content: '';
}

.u_cbox .u_cbox_count_info:first-child {
  padding-left: 0px;
}

.u_cbox .u_cbox_count_info:first-child::before {
  display: none;
}

.u_cbox .u_cbox_comment_count .u_cbox_info_title {
  font-family: -apple-system, BlinkMacSystemFont, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: rgb(118, 118, 120);
}

.u_cbox .u_cbox_comment_count .u_cbox_info_txt {
  margin-left: 2px;
  font-family: -apple-system, BlinkMacSystemFont, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgb(48, 48, 56);
}

.u_cbox .u_cbox_wrap > .u_cbox_write_wrap {
  margin: 0px 15px;
}

.u_cbox .u_cbox_thumb {
  float: left;
}

.u_cbox .u_cbox_thumb .u_cbox_thumb_wrap {
  display: block;
  position: relative;
  margin-right: 4px;
}

.u_cbox .u_cbox_thumb .u_cbox_img_profile {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  vertical-align: top;
}

.u_cbox .u_cbox_write {
  background-color: rgb(255, 255, 255);
}

.u_cbox .u_cbox_write_inner {
  position: relative;
  border: 1px solid rgb(179, 179, 179);
}

.u_cbox .u_cbox_write_area {
  max-width: 100%;
}

.u_cbox .u_cbox_write .u_cbox_inbox {
  position: relative;
  margin-right: 69px;
  padding: 10px 12px 13px;
}

.u_cbox .u_cbox_write .u_cbox_inbox .u_cbox_text {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 18px;
  border: 0px;
  background-color: transparent;
  font-size: 16px;
  line-height: 1.25;
  color: rgb(51, 51, 51);
  appearance: none;
  resize: none;
}

.u_cbox .u_cbox_write .u_cbox_inbox .u_cbox_guide {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: absolute;
  top: 10px;
  right: 112px;
  left: 11px;
  z-index: 10;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: rgb(182, 182, 182);
}

.u_cbox .u_cbox_type_logged_out .u_cbox_write .u_cbox_inbox .u_cbox_guide {
  right: 11px;
}

.u_cbox
  .u_cbox_write_notice_checkbox:focus-visible
  + .u_cbox_write_notice_checklabel::before {
  outline: -webkit-focus-ring-color auto medium;
}

.u_cbox
  .u_cbox_addition
  .u_cbox_secret_check:focus-visible
  + .u_cbox_secret_label {
  outline: -webkit-focus-ring-color auto medium;
}

.u_cbox .u_cbox_type_logged_out .u_cbox_inbox {
  margin-right: 0px;
}

.u_cbox .u_cbox_sort {
  position: relative;
  padding: 13px 0px 10px;
}

.u_cbox .u_cbox_sort::before,
.u_cbox .u_cbox_sort::after {
  position: absolute;
  top: 3px;
  bottom: 0px;
  z-index: 4;
  width: 20px;
  max-height: 45px;
  content: '';
}

.u_cbox .u_cbox_sort::before {
  left: 0px;
  background-position: -343px -108px;
}

.u_cbox .u_cbox_sort::after {
  right: 37px;
  background-position: -365px -108px;
}

.u_cbox .u_cbox_sort_option {
  overflow: hidden;
  position: relative;
  z-index: 3;
  height: 21px;
  margin-right: 37px;
}

.u_cbox .u_cbox_sort_scroller {
  position: absolute;
  z-index: 1;
  padding: 0px 17px;
}

.u_cbox .u_cbox_sort .u_cbox_sort_option_list {
  display: table;
  white-space: nowrap;
  margin-right: 37px;
}

.u_cbox .u_cbox_sort .u_cbox_sort_option_wrap {
  display: table-cell;
}

.u_cbox .u_cbox_sort .u_cbox_sort_option_wrap + .u_cbox_sort_option_wrap,
.u_cbox .u_cbox_sort .u_cbox_sort_option_wrap ~ .u_cbox_sort_option_wrap {
  padding-left: 11px;
}

.u_cbox .u_cbox_sort .u_cbox_select {
  float: left;
  overflow: hidden;
  position: relative;
  padding-right: 2px;
}

.u_cbox .u_cbox_sort .u_cbox_ico_select {
  display: inline-block;
  overflow: hidden;
  position: absolute;
  width: 0px;
  height: 0px;
  text-indent: -999px;
  vertical-align: top;
  color: transparent;
}

.u_cbox .u_cbox_sort .u_cbox_sort_label {
  display: inline-block;
  font-size: 14px;
  color: rgb(198, 198, 198);
  line-height: 21px;
  vertical-align: top;
}

.u_cbox .u_cbox_sort .u_cbox_sort_option_on .u_cbox_sort_label {
  padding-left: 18px;
  color: rgb(0, 0, 0);
}

.u_cbox .u_cbox_sort .u_cbox_sort_option_on .u_cbox_ico_select {
  top: 7px;
  left: 0px;
  width: 13px;
  height: 9px;
  background-position: -80px -130px;
}

.u_cbox .u_cbox_comment_box {
  position: relative;
  border-bottom: 1px solid rgb(226, 226, 226);
}

.u_cbox .u_cbox_area {
  padding: 15px;
}

.u_cbox .u_cbox_info {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
}

.u_cbox .u_cbox_info::after {
  display: block;
  clear: both;
  content: '';
}

.u_cbox .u_cbox_info .u_cbox_thumb {
  flex-shrink: 0;
}

.u_cbox .u_cbox_info .u_cbox_thumb ~ .u_cbox_info_main {
  width: calc(100% - 27px);
}

.u_cbox .u_cbox_info_main {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  min-height: 27px;
  padding-right: 104px;
  box-sizing: border-box;
}

.u_cbox .u_cbox_name {
  overflow: hidden;
}

.u_cbox .u_cbox_name_area {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.37;
}

.u_cbox .u_cbox_nick_area {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.u_cbox .u_cbox_btn_totalcomment {
  flex-shrink: 0;
  margin-left: 4px;
}

.u_cbox .u_cbox_btn_totalcomment .u_cbox_txt_total {
  float: left;
  font-size: 13px;
  letter-spacing: -0.5px;
  color: rgb(102, 102, 102);
}

.u_cbox .u_cbox_btn_totalcomment .u_cbox_ico_arrow {
  float: left;
  width: 5px;
  height: 8px;
  margin: 5px 0px 0px 3px;
  background-position: -185px -155px;
}

.u_cbox .u_cbox_follow_button {
  position: absolute;
  top: -2px;
  right: 16px;
  min-width: 49px;
  min-height: 25px;
  padding: 3px 5px 4px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.05);
}

.u_cbox .u_cbox_follow_label {
  font-family: -apple-system, BlinkMacSystemFont, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.6px;
}

.u_cbox .u_cbox_follow_label {
  color: rgb(51, 51, 51);
}

.u_cbox .u_cbox_work_sub {
  position: absolute;
  top: -4px;
  right: -13px;
}

.u_cbox .u_cbox_work_sub .u_cbox_btn_open {
  display: block;
  overflow: hidden;
  width: 30px;
  height: 30px;
  font-size: 0px;
  line-height: 0;
}

.u_cbox .u_cbox_work_sub .u_cbox_ico_open {
  display: inline-block;
  overflow: hidden;
  font-size: 0px;
  line-height: 0;
  vertical-align: top;
  background-position: -373px -266px;
  background-repeat: no-repeat;
  width: 3px;
  height: 15px;
  margin: 8px 0px 0px 13px;
}

.u_cbox .u_cbox_info_base {
  padding-top: 6px;
}

.u_cbox .u_cbox_info_base::after {
  display: block;
  clear: both;
  content: '';
}

.u_cbox .u_cbox_date {
  float: left;
  font-size: 13px;
  font-family: Helvetica-Light, Helvetica, sans-serif;
  letter-spacing: -0.1px;
  color: rgb(153, 153, 153);
}

.u_cbox .u_cbox_text_wrap {
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-family: -apple-system, BlinkMacSystemFont, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.25;
  word-break: break-all;
  overflow-wrap: break-word;
  color: rgb(51, 51, 51);
}

.u_cbox .u_cbox_tool {
  position: relative;
  font-size: 0px;
  line-height: 0;
  text-align: right;
}

.u_cbox .u_cbox_tool::after {
  display: block;
  clear: both;
  content: '';
}

.u_cbox a.u_cbox_btn_reply {
  float: left;
  margin-top: 12px;
  font-family: -apple-system, BlinkMacSystemFont, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: -0.6px;
  color: rgb(85, 85, 85);
}

.u_cbox .u_cbox_btn_reply .u_cbox_reply_txt {
  float: left;
}

.u_cbox .u_cbox_btn_reply .u_cbox_reply_cnt {
  float: left;
  padding-left: 4px;
}

.u_cbox .u_cbox_btn_reply .u_cbox_reply_cnt.u_vc {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  margin: 0px;
  font-size: 0px;
  clip-path: none;
}

.u_cbox .u_cbox_btn_reply .u_cbox_reply_cnt.u_vc::after {
  display: inline-block;
  margin-left: -1px;
  font-family: -apple-system, BlinkMacSystemFont, Helvetica, sans-serif;
  font-size: 13px;
  content: '작성';
}

.u_cbox .u_cbox_recomm_set {
  display: inline-block;
  margin-top: 12px;
  vertical-align: top;
}

.u_cbox .u_cbox_btn_recomm,
.u_cbox .u_cbox_btn_unrecomm {
  float: left;
}

.u_cbox .u_cbox_btn_unrecomm {
  margin-left: 22px;
}

.u_cbox .u_cbox_ico_recomm,
.u_cbox .u_cbox_ico_unrecomm {
  overflow: hidden;
  font-size: 0px;
  line-height: 0;
  float: left;
  margin-top: 1px;
}

.u_cbox .u_cbox_ico_recomm {
  background-position: -156px -340px;
  background-repeat: no-repeat;
  width: 13px;
  height: 16px;
}

.u_cbox .u_cbox_ico_unrecomm {
  background-position: -220px -204px;
  background-repeat: no-repeat;
  width: 13px;
  height: 16px;
}

.u_cbox .u_cbox_cnt_recomm,
.u_cbox .u_cbox_cnt_unrecomm {
  float: left;
  padding-left: 4px;
  font-family: -apple-system, BlinkMacSystemFont, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  color: rgb(119, 119, 119);
}

.u_cbox .u_cbox_ico_reply {
  display: none;
}

.u_cbox .u_cbox_reply_area {
  background-color: rgb(247, 247, 247);
}

.u_cbox .u_cbox_reply_area .u_cbox_comment_box {
  margin: 0px 15px 0px 25px;
  border-bottom-color: rgb(233, 233, 233);
}

.u_cbox .u_cbox_reply_area .u_cbox_area {
  margin: 0px -15px 0px -25px;
  padding-left: 35px;
}

.u_cbox .u_cbox_paginate .u_cbox_btn_more {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  min-height: 42px;
}

.u_cbox .u_cbox_more_wrap .u_cbox_page_more {
  font-family: -apple-system, BlinkMacSystemFont, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: rgb(85, 85, 85);
}

.u_cbox .u_cbox_paginate .u_cbox_ico_more {
  display: inline-block;
  overflow: hidden;
  font-size: 0px;
  line-height: 0;
  vertical-align: top;
  background-position: -230px -390px;
  background-repeat: no-repeat;
  width: 8px;
  height: 8px;
  margin: 4px 0px 0px 6px;
}

.u_cbox .u_cbox_content_wrap {
  position: relative;
  border-top: 1px solid rgb(237, 237, 237);
}

.u_cbox .u_cbox_usercomment {
  float: left;
}

.u_cbox .u_cbox_btn_usercomment {
  display: inline-block;
  min-height: 21px;
  border-radius: 15px;
  line-height: 1.5;
}

.u_cbox a.u_cbox_btn_usercomment {
  position: relative;
  padding: 4px 11px;
  background-color: rgb(48, 48, 56);
  color: rgb(255, 255, 255);
}

.u_cbox .u_cbox_txt_usercomment {
  font-family: -apple-system, BlinkMacSystemFont, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: -0.2px;
}

.u_cbox .u_cbox_txt_usercomment {
  font-weight: 600;
}

.u_cbox
  .u_cbox_layer_report_radio:focus-visible
  + .u_cbox_layer_report_radio_label::before {
  outline: -webkit-focus-ring-color auto medium;
}

.u_cbox
  .u_cbox_layer_cleanbot_checkbox:focus-visible
  ~ .u_cbox_layer_cleanbot_checklabel {
  outline: -webkit-focus-ring-color auto medium;
}

.u_cbox
  .u_cbox_layer_cleanbot2_checkbox:focus-visible
  ~ .u_cbox_layer_cleanbot2_checklabel {
  outline: -webkit-focus-ring-color auto medium;
}

.u_cbox
  .u_cbox_layer_multirating_radiobutton:focus-visible
  + .u_cbox_layer_multirating_radiolabel {
  position: relative;
  outline: -webkit-focus-ring-color auto medium;
}

.u_cbox
  .u_cbox_cateselect_radiobox:focus-visible
  + .u_cbox_cateselect_radioboxdummy {
  outline: -webkit-focus-ring-color auto medium;
}

.u_cbox
  .u_cbox_write_replynotify_checkbox:not(:checked)
  ~ .u_cbox_write_replynotify_description2 {
  display: none;
}

.u_cbox
  .u_cbox_write_replynotify_checkbox:focus-visible
  ~ .u_cbox_write_replynotify_control
  .u_cbox_write_replynotify_label {
  outline: -webkit-focus-ring-color auto medium;
}

#cbox_module .u_cbox_recomm_set .u_cbox_ico_recomm,
#cbox_module .u_cbox_recomm_set .u_cbox_ico_unrecomm,
#cbox_module .u_cbox_btn_totalcomment .u_cbox_ico_arrow,
#cbox_module .u_cbox_ico_more,
.u_cbox .u_cbox_work_sub .u_cbox_ico_open,
#cbox_module .u_cbox_work_sub .u_cbox_ico_open {
  background-image: url(../img/sp_comment_overwrite.png);
  background-size: 226px 201px;
  background-repeat: no-repeat;
}

#cbox_module .u_cbox_head {
  min-height: 42px;
}

#cbox_module .u_cbox_write .u_cbox_inbox .u_cbox_guide {
  top: 13px;
  line-height: 20px;
  bottom: 12px;
  font-size: 15px;
  color: rgb(153, 153, 153);
}

@media (min-width: 768px) {
  #cbox_module .u_cbox_reply_area .u_cbox_area {
    margin-left: -14px;
    margin-right: -14px;
  }
  #cbox_module .u_cbox_reply_area .u_cbox_work_sub {
    right: -10px;
  }
}

#cbox_module .u_cbox_wrap {
  position: relative;
}

#cbox_module .u_cbox_head {
  padding-left: 0px;
  padding-top: 7px;
}

@media (min-width: 768px) and (orientation: portrait) {
  #cbox_module .u_cbox_head {
    margin-right: 0px;
    margin-left: 0px;
  }
}

@media (min-width: 1025px) {
  #cbox_module .u_cbox_head {
    margin-right: 0px;
    margin-left: 0px;
  }
}

@media (min-width: 1025px) {
  .u_cbox .u_cbox_head {
    margin-right: 0px;
    margin-left: 0px;
  }
}

#cbox_module .u_cbox_title,
#cbox_module .u_cbox_sort .u_cbox_sort_option_on .u_cbox_ico_select,
#cbox_module .u_cbox_btn_totalcomment .u_cbox_txt_total {
  position: absolute;
  overflow: hidden;
  clip: rect(0px, 0px, 0px, 0px);
  width: 1px;
  height: 1px;
}

#cbox_module .u_cbox_count {
  padding-left: 0px;
  font-size: 17px;
  font-weight: bold;
  font-family:
    -apple-system, BlinkMacSystemFont, Helvetica, 'Apple SD Gothic Neo',
    sans-serif;
  color: rgb(34, 34, 34);
}

#cbox_module .u_cbox_count::after {
  display: inline;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.5px;
  content: ' comentários';
}

@media (min-width: 768px) and (orientation: portrait) {
  .u_cbox .u_cbox_wrap > .u_cbox_write_wrap {
    margin-right: 0px;
    margin-left: 0px;
  }
}

@media (min-width: 1025px) {
  .u_cbox .u_cbox_wrap > .u_cbox_write_wrap {
    margin-right: 0px;
    margin-left: 0px;
  }
}

#cbox_module .u_cbox_head .u_cbox_head_tools {
  margin-top: 2px;
}

#cbox_module .u_cbox_usercomment {
  margin-right: 6px;
}

@media (min-width: 768px) and (orientation: portrait) {
  .u_cbox .u_cbox_comment_count_wrap {
    margin-right: 0px;
    margin-left: 0px;
  }
}

@media (min-width: 1025px) {
  .u_cbox .u_cbox_comment_count_wrap {
    margin-right: 0px;
    margin-left: 0px;
  }
}

#cbox_module .u_cbox_write .u_cbox_write_inner {
  border: 1px solid rgb(176, 179, 190);
  border-radius: 4px;
}

#cbox_module .u_cbox_write .u_cbox_inbox {
  margin-right: 0px;
  padding: 13px 14px 10px;
  border-radius: inherit;
}

#cbox_module .u_cbox_type_logged_out .u_cbox_inbox .u_cbox_text {
  height: 22px;
  font-size: 15px;
}

#cbox_module .u_cbox_thumb .u_cbox_thumb_wrap {
  margin-right: 8px;
}

#cbox_module .u_cbox_thumb .u_cbox_thumb_wrap::after {
  position: absolute;
  inset: 0px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  content: '';
}

#cbox_module .u_cbox_comment_box .u_cbox_thumb_wrap .u_cbox_img_profile {
  width: 35px;
  object-fit: cover;
  height: 35px;
  border-radius: 50%;
}

#cbox_module .u_cbox_comment_box .u_cbox_info_base {
  left: 58px;
}

#cbox_module .u_cbox_reply_area .u_cbox_info_base {
  left: 78px;
}

.u_cbox .u_cbox_sort {
  border-bottom: 1px solid transparent;
  -webkit-border-image: -webkit-repeating-linear-gradient(
      left,
      transparent 0px,
      transparent 15px,
      rgb(210, 212, 221) 15px,
      rgb(210, 212, 221) calc(100% - 15px),
      transparent calc(100% - 15px),
      transparent 100%
    )
    1 fill;
  border-image: repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 15px,
      rgb(210, 212, 221) 15px,
      rgb(210, 212, 221) calc(100% - 15px),
      transparent calc(100% - 15px),
      transparent 100%
    )
    1 / 1 / 0 stretch;
  margin-top: 12px;
}

@media (min-width: 768px) and (orientation: portrait) {
  .u_cbox .u_cbox_sort {
    -webkit-border-image: none;
    border-image: none 100% / 1 / 0 stretch;
    border-color: rgb(210, 212, 221);
  }
}

@media (min-width: 1025px) {
  .u_cbox .u_cbox_sort {
    -webkit-border-image: none;
    border-image: none 100% / 1 / 0 stretch;
    border-color: rgb(210, 212, 221);
  }
}

@media (min-width: 768px) and (orientation: portrait) {
  .u_cbox .u_cbox_sort::before {
    display: none;
  }
}

#cbox_module .u_cbox_sort .u_cbox_sort_label {
  font-weight: 500;
  letter-spacing: -0.5px;
  color: rgb(146, 146, 146);
}

#cbox_module .u_cbox_sort .u_cbox_sort_option_on .u_cbox_sort_label {
  padding-left: 0px;
  font-weight: 600;
  color: rgb(34, 34, 34);
}

#cbox_module .u_cbox_name {
  max-width: 142px;
  font-size: 14px;
}

@media (max-width: 319px) {
  #cbox_module .u_cbox_name {
    max-width: 114px;
  }
}

@media (max-width: 319px) {
  #cbox_module .u_cbox_reply_area .u_cbox_name {
    max-width: 110px;
  }
}

#cbox_module .u_cbox_comment .u_cbox_text_wrap .u_cbox_contents {
  letter-spacing: -0.3px;
}

#cbox_module .u_cbox_comment .u_cbox_text_wrap {
  font-size: 16px;
  line-height: 21px;
  font-family:
    -apple-system, BlinkMacSystemFont, Helvetica, 'Apple SD Gothic Neo',
    sans-serif;
  color: rgb(34, 34, 34);
  padding-right: 18px;
}

#cbox_module .u_cbox_ico_reply {
  display: none;
}

#cbox_module .u_cbox_info_base {
  position: absolute;
  top: 38px;
  padding-top: 0px;
}

#cbox_module .u_cbox_date {
  font-family:
    -apple-system, BlinkMacSystemFont, Helvetica, 'Apple SD Gothic Neo',
    sans-serif;
}

#cbox_module .u_cbox_btn_totalcomment {
  position: absolute;
  left: 0px;
  margin-top: 2px;
  width: 100%;
  text-align: right;
}

#cbox_module .u_cbox_info {
  margin-top: 4px;
  margin-bottom: 11px;
}

#cbox_module .u_cbox_info_main {
  position: relative;
  margin-top: -2px;
  font-family:
    -apple-system, BlinkMacSystemFont, Helvetica, 'Apple SD Gothic Neo',
    sans-serif;
  float: left;
  align-self: flex-start;
}

@media (max-width: 319px) {
  #cbox_module .u_cbox_info_main {
    max-width: 80%;
  }
}

.u_cbox_wrap .u_cbox_cnt_recomm,
.u_cbox_wrap .u_cbox_cnt_unrecomm {
  font-size: 13px;
  font-weight: 600;
  line-height: 23px;
}

.u_cbox .u_cbox_recomm_set {
  margin-top: 6px;
}

.u_cbox .u_cbox_btn_unrecomm {
  margin-left: 18px;
}

.u_cbox .u_cbox_tool .u_cbox_btn_reply {
  margin: 7px 0px 0px;
  padding: 0px;
  line-height: 1.76;
  letter-spacing: -0.7px;
  border: none;
  background: none;
  font-weight: 600;
  font-family:
    -apple-system, BlinkMacSystemFont, Helvetica, 'Apple SD Gothic Neo',
    sans-serif;
  color: rgb(0, 0, 0);
}

#cbox_module .u_cbox_tool .u_cbox_btn_reply .u_cbox_reply_cnt {
  padding-left: 4px;
  letter-spacing: 0px;
  font-family:
    -apple-system, BlinkMacSystemFont, Helvetica, 'Apple SD Gothic Neo',
    sans-serif;
}

#cbox_module .u_cbox_tool .u_cbox_btn_reply .u_cbox_reply_txt {
  font-weight: 500;
  color: rgb(85, 85, 85);
}

#cbox_module .u_cbox_tool .u_cbox_btn_reply .u_cbox_reply_cnt.u_vc {
  overflow: hidden;
  width: 1px;
  height: 1px;
}

#cbox_module .u_cbox_tool .u_cbox_btn_reply .u_cbox_reply_cnt.u_vc::after {
  display: inline-block;
  margin-left: -1px;
  font-size: 13px;
  font-weight: 500;
  color: rgb(85, 85, 85);
  letter-spacing: -0.7px;
  content: '작성';
}

#cbox_module .u_cbox_recomm_set .u_cbox_ico_recomm {
  margin-top: 4px;
}

#cbox_module .u_cbox_recomm_set .u_cbox_ico_recomm,
#cbox_module .u_cbox_recomm_set .u_cbox_ico_unrecomm {
  width: 13px;
  height: 15px;
  background-position: -213px 0px;
  opacity: 0.48;
}

#cbox_module .u_cbox_recomm_set .u_cbox_ico_unrecomm {
  transform: rotate(180deg);
  margin-top: 6px;
}

#cbox_module .u_cbox_btn_totalcomment .u_cbox_ico_arrow {
  display: inline-block;
  float: none;
  margin: 0px 0px 3px;
  vertical-align: middle;
  width: 13px;
  height: 14px;
  background-position: -213px -33px;
}

.u_cbox .u_cbox_info .u_cbox_info_main {
  width: auto;
}

.u_cbox .u_cbox_info .u_cbox_thumb ~ .u_cbox_info_main {
  width: auto;
}

.u_cbox .u_cbox_info_main {
  -webkit-box-align: start;
  align-items: flex-start;
  overflow: visible;
  padding-right: 0px;
}

.u_cbox .u_cbox_name_area {
  font-size: inherit;
}

.u_cbox .u_cbox_thumb .u_cbox_thumb_wrap {
  z-index: 1;
}

#cbox_module .u_cbox_type_profile .u_cbox_btn_totalcomment {
  z-index: 1;
  margin-left: -43px;
  height: 35px;
  margin-top: 3px;
  padding-left: 43px;
  box-sizing: content-box;
  outline: none;
}

#cbox_module .u_cbox_type_profile .u_cbox_btn_totalcomment .u_cbox_ico_arrow {
  margin-top: -21px;
}

#cbox_module .u_cbox_btn_more {
  padding: 0px;
  margin: 0px;
  font-size: 13px;
  font-weight: 500;
  color: rgb(34, 34, 34);
}

.u_cbox_wrap .u_cbox_more_wrap .u_cbox_page_more {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}

#cbox_module .u_cbox_ico_more {
  width: 10px;
  height: 6px;
  background-position: -58px -187px;
  opacity: 0.48;
}

.u_cbox .u_cbox_reply_area {
  margin-top: -1px;
  border-top: 1px solid rgb(240, 240, 240);
  border-bottom: 1px solid rgb(240, 240, 240);
  background-color: rgb(251, 252, 253);
}

.u_cbox_wrap .u_cbox_comment_box {
  border-bottom: 1px solid transparent;
  -webkit-border-image: -webkit-repeating-linear-gradient(
      left,
      transparent 0px,
      transparent 15px,
      rgb(240, 240, 240) 15px,
      rgb(240, 240, 240) calc(100% - 15px),
      transparent calc(100% - 15px),
      transparent 100%
    )
    1 fill;
  border-image: repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 15px,
      rgb(240, 240, 240) 15px,
      rgb(240, 240, 240) calc(100% - 15px),
      transparent calc(100% - 15px),
      transparent 100%
    )
    1 / 1 / 0 stretch;
}

@media (min-width: 1025px) {
  .u_cbox_wrap .u_cbox_comment_box {
    -webkit-border-image: none;
    border-image: none 100% / 1 / 0 stretch;
    border-color: rgb(240, 240, 240);
  }
}

.u_cbox_wrap .u_cbox_reply_area .u_cbox_comment_box {
  -webkit-border-image: none;
  border-image: none 100% / 1 / 0 stretch;
  border-color: rgb(240, 240, 240);
}

@media (min-width: 768px) {
  .u_cbox_wrap .u_cbox_reply_area .u_cbox_comment_box {
    margin-left: 15px;
  }
}

#cbox_module .u_cbox_content_wrap > .u_cbox_list {
  padding-bottom: 20px;
}

.u_cbox_content_wrap > .u_cbox_list .u_cbox_comment {
  background-color: rgba(0, 0, 0, 0.004);
}

#cbox_module .u_cbox_content_wrap + .u_cbox_paginate {
  margin-top: -20px;
}

#cbox_module .u_cbox_content_wrap:not(.u_cbox_myfollowing) {
  border-top: none;
}

.u_cbox .u_cbox_work_sub .u_cbox_ico_open,
#cbox_module .u_cbox_work_sub .u_cbox_ico_open {
  width: 3px;
  height: 15px;
  background-position: -207px -166px;
  opacity: 0.52;
}

#cbox_module .u_cbox_work_sub .u_cbox_ico_open {
  margin: 6px 0px 0px 11px;
}

.u_cbox .u_cbox_date {
  color: rgb(117, 117, 117);
}

@media (min-width: 1025px) {
  .u_cbox .u_cbox_comment .u_cbox_text_wrap {
    font-size: 14px;
    line-height: 1.43;
  }
}

.u_cbox .u_cbox_name {
  max-width: 150px;
  font-size: 14px;
  padding-right: 22px;
}

.u_cbox .u_cbox_area {
  position: relative;
}

@media (min-width: 1025px) {
  .u_cbox .u_cbox_sort::before {
    display: none;
  }
}

@media (min-width: 768px) and (orientation: portrait) {
  .u_cbox .u_cbox_sort_scroller {
    padding-right: 0px;
    padding-left: 2px;
  }
}

@media (min-width: 1025px) {
  .u_cbox .u_cbox_sort_scroller {
    padding-right: 0px;
    padding-left: 2px;
  }
}

.u_cbox .u_cbox_write .u_cbox_write_area {
  border-radius: inherit;
}

.u_cbox .u_cbox_follow_button {
  right: 18px;
  background-color: rgb(244, 244, 244);
}

@media (min-width: 0) and (max-width: 63.9375em) {
  .hidden-small-medium {
    display: none !important;
  }
}

@media (min-width: 64em) {
  .hidden-large {
    display: none !important;
  }
}

.checkbox__input:focus-visible {
  outline: -webkit-focus-ring-color auto 5px;
}

.switch__input:focus-visible {
  outline: -webkit-focus-ring-color auto 5px;
}

@media (min-width: 64em) {
  .navi__links__main {
    box-shadow:
      inset 0 1px 0 var(--nav-menu-box-shadow-color),
      inset 0 -1px 0 var(--nav-menu-box-shadow-color);
  }
  .navi__links__main li span {
    transform-origin: left top;
    transition:
      line-height 0.4s ease-out,
      height 0.4s ease-out;
    will-change: line-height, height;
  }
}

.nav_btn {
  appearance: none;
  background-color: transparent;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  color: rgb(73, 80, 87);
  cursor: pointer;
  display: flex;
  font-family: var(--label-font);
  padding: 0px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
}

.nav_btn__icon {
  align-items: center;
  display: flex;
  justify-content: space-around;
  width: auto;
}

.nav_btn__icon svg {
  display: block;
}

.nav_btn__text {
  white-space: nowrap;
}

.nav_btn--text-bold {
  font-weight: 700;
}

.nav_btn--type-btn {
  align-items: center;
  flex-flow: column;
  height: 48px;
  justify-content: space-between;
}

.nav_btn--type-btn .nav_btn__icon {
  height: 24px;
  min-width: 24px;
}

.nav_btn--type-btn .nav_btn__text {
  font-size: var(--label-font-size);
  font-weight: var(--label-font-weight);
  line-height: var(--label-line-height);
}

.nav_btn--type-main::after {
  background-color: var(--nav-btn-border-color);
  bottom: 0px;
  content: '';
  height: 1px;
  left: 16px;
  position: absolute;
  right: 0px;
  will-change: background-color;
}

.nav_btn--type-main .nav_btn__icon {
  height: 48px;
  padding: 0px 12px 0px 16px;
}

.nav_btn--type-main .nav_btn__text {
  font-size: var(--nav-btn-mobile-font-size);
  letter-spacing: var(--nav-btn-mobile-letter-spacing);
  line-height: var(--nav-btn-mobile-line-height);
}

.nav_btn--type-list {
  padding-left: 16px;
}

.nav_btn--type-list::after {
  background-color: var(--nav-btn-border-color);
  bottom: 0px;
  content: '';
  height: 1px;
  left: 16px;
  position: absolute;
  right: 0px;
  will-change: background-color;
}

.nav_btn--type-list .nav_btn__icon {
  height: 48px;
  padding: 0px 12px 0px 16px;
}

.nav_btn--type-list .nav_btn__text {
  font-size: var(--nav-btn-mobile-font-size);
  letter-spacing: var(--nav-btn-mobile-letter-spacing);
  line-height: var(--nav-btn-mobile-line-height);
}

.nav_btn--type-util {
  align-items: center;
  flex-flow: column;
  height: 56px;
  justify-content: space-around;
  min-width: 56px;
}

.nav_btn--type-util .nav_btn__icon {
  height: 24px;
  min-width: 24px;
}

.nav_btn--type-util .nav_btn__text {
  font-size: var(--label-font-size);
  font-weight: var(--label-font-weight);
  line-height: var(--label-line-height);
}

.nav_btn--type-util .nav_btn__text {
  display: none;
}

@media (min-width: 0) and (max-width: 63.9375em) {
  .nav_btn--type-btn {
    border: 2px solid var(--nav-btn-border-color);
    border-radius: 8px;
    flex-flow: row;
    height: 36px;
    margin-top: 10px;
    padding: 0px 10px 0px 8px;
  }
  .nav_btn--type-btn .nav_btn__text {
    color: var(--nav-btn-color);
    font-size: 17px;
    letter-spacing: var(--nav-btn-mobile-letter-spacing);
    line-height: 2.11765;
    padding-left: 8px;
  }
  .nav_btn--type-btn .nav_btn__icon svg path {
    fill: var(--nav-btn-mobile-icon-color);
  }
}

@media (min-width: 64em) {
  .nav_btn--type-list {
    color: var(--nav-btn-color);
  }
  .nav_btn--type-list .nav_btn__text {
    font-size: var(--nav-btn-font-size);
    letter-spacing: var(--nav-btn-letter-spacing);
    line-height: var(--nav-btn-line-height);
  }
  .nav_btn--type-list:active,
  .nav_btn--type-list:hover {
    color: var(--nav-btn-color-hover);
  }
  .nav_btn--type-list:active::after,
  .nav_btn--type-list:hover::after {
    background-color: var(--nav-btn-background-color-hover);
  }
  .nav_btn--type-main {
    color: var(--nav-btn-color);
    justify-content: center;
  }
  .nav_btn--type-main::after {
    content: none;
  }
  .nav_btn--type-main:active,
  .nav_btn--type-main:hover {
    color: var(--nav-btn-color-hover);
  }
  .nav_btn--type-main:active .nav_btn__text::after,
  .nav_btn--type-main:hover .nav_btn__text::after {
    background-color: var(--nav-btn-background-color-hover);
  }
  .nav_btn--type-main .nav_btn__text {
    font-size: var(--nav-btn-font-size);
    height: 48px;
    letter-spacing: var(--nav-btn-letter-spacing);
    line-height: var(--nav-btn-line-height);
    position: relative;
  }
  .nav_btn--type-main .nav_btn__text::after {
    background-color: transparent;
    bottom: 0px;
    content: '';
    height: 2px;
    left: 0px;
    position: absolute;
    right: 0px;
    will-change: background-color;
  }
  .nav_btn--type-main .nav_btn__icon {
    display: none;
  }
  .nav_btn--type-btn,
  .nav_btn--type-util {
    height: 48px;
    justify-content: space-between;
    min-width: auto;
  }
  .nav_btn--type-btn:active svg:not(.preserve-color) path,
  .nav_btn--type-btn:hover svg:not(.preserve-color) path,
  .nav_btn--type-util:active svg:not(.preserve-color) path,
  .nav_btn--type-util:hover svg:not(.preserve-color) path {
    fill: var(--secondary-tenant-color);
  }
  .nav_btn--type-btn .nav_btn__text,
  .nav_btn--type-util .nav_btn__text {
    display: initial;
  }
}

.nav-list {
  display: flex;
  margin: 0px;
  padding: 0px;
}

.nav-list li {
  list-style-type: none;
}

.nav-list--vertical {
  flex-flow: column;
}

.nav-list--main {
  flex-flow: column;
}

.nav-list--util-menu {
  flex-flow: row;
  justify-content: flex-end;
  padding: 8px 0px;
}

.nav-list--util-menu li:not(:first-child) {
  margin-left: 16px;
}

@media (min-width: 64em) {
  .nav-list--main {
    flex-flow: row;
    justify-content: space-between;
  }
  .nav-list--main li {
    flex-grow: 2;
  }
  .nav-list--main li:first-child,
  .nav-list--main li:last-child {
    flex-grow: 1;
  }
  .nav-list--main li:first-child .nav_btn {
    justify-content: flex-start;
  }
  .nav-list--main li:last-child .nav_btn {
    justify-content: flex-end;
  }
  .nav-list--main .nav_btn__text {
    padding: var(--nav-btn-padding);
  }
  .nav-list--util-menu {
    padding: 0px;
  }
  .nav-list--util-menu li:nth-child(2) {
    border-right: 1px solid rgb(233, 236, 239);
    padding-right: 32px;
  }
  .nav-list--util-menu li:not(:first-child) {
    margin-left: 32px;
  }
}

.nav_btn--bild-live {
  flex-flow: row;
}

.nav_btn--bild-live .nav_btn__text {
  display: inline-block;
  margin-left: 4px;
}

@media (min-width: 64em) {
  .nav_btn--bild-live {
    flex-flow: column;
  }
  .nav_btn--bild-live .nav_btn__text {
    margin: 0px;
  }
}

.mobile-menu {
  background-color: var(--nav-menu-mobile-back-color);
  inset: 0px 100vw 0px -100vw;
  height: 100vh;
  opacity: 0;
  position: fixed;
  transform: translateZ(0px);
  transition:
    opacity 0.4s ease-out,
    transform 0.4s;
  will-change: opacity;
}

.mobile-menu__wrapper {
  background-color: rgb(255, 255, 255);
  height: 100vh;
  max-width: 400px;
  overflow-y: auto;
  padding-bottom: 96px;
  position: relative;
  transform: translate3d(-400px, 0px, 0px);
  transform-origin: left top;
  transition: transform 0.4s ease-out;
  width: calc(100% - 56px);
  will-change: transform;
}

.mobile-menu__services {
  background-color: rgb(248, 249, 250);
}

.mobile-menu__services .nav_btn--type-list {
  padding-left: 0px;
}

.mobile-menu.no-animation {
  transform: none;
  transition: none;
}

@media (min-width: 64em) {
  .mobile-menu {
    background-color: transparent;
    height: auto;
    opacity: 1;
    position: static;
    transform: none;
  }
  .mobile-menu__wrapper {
    background-color: var(--nav-menu-back-color);
    height: auto;
    max-width: none;
    overflow-y: var(--nav-menu-overflow-y);
    padding-bottom: 0px;
    scrollbar-width: none;
    transform: none;
    width: auto;
  }
  .mobile-menu__wrapper::-webkit-scrollbar {
    display: none;
  }
}

.mobile-menu-header {
  height: 112px;
  left: 0px;
  pointer-events: none;
  position: sticky;
  right: 0px;
  top: 0px;
  width: 100%;
  z-index: 1;
}

.mobile-menu-header__wrapper {
  background-color: var(--nav-menu-back-color);
  box-shadow: rgb(206, 212, 218) 0px -1px 0px inset;
  display: flex;
  justify-content: space-between;
  pointer-events: auto;
  will-change: padding-top, padding-bottom;
}

.mobile-menu-header__wrapper .nav_btn--type-util .nav_btn__icon svg path {
  fill: var(--nav-btn-mobile-icon-color);
}

.mobile-menu-header__logo {
  padding: var(--nav-menu-logo-padding);
}

.mobile-menu-header__logo svg {
  display: block;
}

@media (min-width: 64em) {
  .mobile-menu-header {
    display: none;
  }
}
