#cb-top-bar {
  background-color: #FFFFFF;
}

#cb-top-bar .page-wrapper {
  font-size: 0;
}

#cb-top-bar .top-img {
  background-color: var(--cb-primary-color);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 80px;
  position: relative;
  z-index: 1;
}

#cb-top-bar .top-img.with-image {
  height: 244px;
}

#cb-top-bar .top-img.ets {
  background-color: var(--cb-ets);
}

#cb-top-bar .top-img .page-wrapper {
  height: 100%;
  position: relative;
}

#cb-top-bar .top-img .icon {
  background-color: var(--cb-bg_color3);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 56px;
  height: 56px;
  border: 2px solid var(--cb-white);
  border-radius: 100%;
  overflow: hidden;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  top: 50%;
}

#cb-top-bar .info {
  margin-top: -14px;
  padding: 0 0 10px 0;
  position: relative;
  z-index: 2;
}

#cb-top-bar .info .page-wrapper {
  display: flex;
}

#cb-top-bar .info .icon {
  background-color: var(--cb-bg_color3);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 80px;
  height: 80px;
  border: 4px solid var(--cb-white);
  border-radius: 100%;
  overflow: hidden;
}

#cb-top-bar .info div.text {
  margin: 24px 0 0 0;
  padding: 0 0 0 16px;
  position: relative;
  flex: 1;
}

#cb-top-bar .info div.text .top {
  display: flex;
  align-items: center;
}

#cb-top-bar .info div.text .title {
  display: inline-block;
  width: 100%;
  padding-right: 24px;
  flex: 1;
}

#cb-top-bar .info div.text .title h1 {
  width: 100%;
  margin: 0;
  padding: 0;
}

#cb-top-bar .info div.text .title h1 span.text-ellipsis {
  display: inline-block;
  width: 100%;
  height: 34px;
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  text-transform: none;
  vertical-align: bottom;
}

#cb-top-bar .info div.text .title h1 span.small {
  display: inline-block;
  padding: 0 0 7px 7px;
  font-size: 14px;
  line-height: 1;
  text-transform: none;
  vertical-align: bottom;
}

#cb-top-bar .info div.text .title h1.with-small-text span.text-ellipsis {
  width: auto;
  max-width: -webkit-calc(100% - 140px);
  max-width: calc(100% - 140px);
}

#cb-top-bar .info div.text .title h1 a {
  color: var(--cb-fg_color);
}

#cb-top-bar .info div.text .title h1 a:hover,
#cb-top-bar .info div.text .title h1 a:focus {
  color: var(--cb-primary-color);
}

#cb-top-bar .info div.text .title h2,
#cb-top-bar .info div.text .title h3 {
  margin: 0;
  padding: 6px 0 0 0;
  color: var(--cb-secondary_fg_color);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-transform: none;
}

#cb-top-bar .info div.text .cb-btn {
  height: 32px;
}

#cb-top-bar .info div.text .cb-btn.ion-compose {
  padding: 0 10px;
  line-height: 30px;
}

#cb-top-bar .info div.text .cb-btn.ion-compose:before {
  font-size: 20px;
  vertical-align: middle;
}

#cb-top-bar .info .icon a {
  display: block;
  height: 100%;
}

#cb-top-bar .info .menu {
  display: inline-block;
  margin: 0;
  padding: 10px 0 0 0;
  list-style: none;
}

#cb-top-bar .info .menu li {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
  position: relative;
}

#cb-top-bar .info .menu li a {
  display: inline-block;
  font-size: 14px;
  color: var(--cb-secondary_fg_color);
}

#cb-top-bar .info .menu li a > i {
  display: none;
}

#cb-top-bar .info .menu li a:after {
  display: block;
  content: '';
  border-bottom: solid 2px var(--cb-fg_color);
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
}

#cb-top-bar .info .menu li a:hover,
#cb-top-bar .info .menu li a:focus,
#cb-top-bar .info .menu li a.selected {
  color: var(--cb-fg_color);
}

#cb-top-bar .info .menu li a:hover:after,
#cb-top-bar .info .menu li a:focus:after,
#cb-top-bar .info .menu li a.selected:after {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

#cb-top-bar .info .menu li a.active + .sub-menu {
  display: block;
}

#cb-top-bar .info .menu li:last-child {
  margin: 0;
  padding: 0;
}

#cb-top-bar .info .menu li ul.sub-menu {
  display: none;
  background-color: #FFFFFF;
  margin: 0;
  position: absolute;
  top: 100%;
  left: -10px;
}

#cb-top-bar .info .menu li ul.sub-menu li {
  display: block;
  margin: 0;
  padding: 0;
}

#cb-top-bar .info .menu li ul.sub-menu li a {
  display: block;
  padding: 10px;
}

#cb-top-bar .info .menu li ul.sub-menu li a:after {
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
}

#cb-top-bar .info .menu-mobile {
  display: none;
  width: 30px;
  height: 40px;
  color: var(--cb-fg_color);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

#cb-top-bar .info.mobile .text .bottom {
  width: 30px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
  right: 0;
}

#cb-top-bar .info.mobile .menu {
  display: none;
}

#cb-top-bar .info.mobile .text {
  padding-right: 46px;
}

#cb-top-bar .info.mobile .text .title h1.with-small-text span.text-ellipsis {
  max-width: 100%;
  margin-right: 7px;
}

#cb-top-bar .info.mobile .text .title h1.with-small-text span.small {
  padding-left: 0;
}

#cb-top-bar .info.mobile .menu {
  display: none;
  background-color: var(--cb-white);
  width: 258px;
  padding: 16px;
  border-radius: 5px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  position: absolute;
  top: 40px;
  right: 0;
  -webkit-animation: fade-in-bottom 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fade-in-bottom 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  -webkit-transition: all .45s ease-in-out;
  transition: all .45s ease-in-out;
}

#cb-top-bar .info.mobile .menu li {
  display: block;
  margin: 0;
  padding: 0;
}

#cb-top-bar .info.mobile .menu li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  color: var(--cb-secondary_fg_color);
  font-weight: 500;
  letter-spacing: .038em;
  line-height: normal;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  -webkit-transition: all .45s ease-in-out;
  transition: all .45s ease-in-out;
}

#cb-top-bar .info.mobile .menu li a > i {
  display: inline;
  font-size: 20.8px;
}

#cb-top-bar .info.mobile .menu li a:after {
  display: none;
}

#cb-top-bar .info.mobile .menu li a:hover,
#cb-top-bar .info.mobile .menu li a:focus,
#cb-top-bar .info.mobile .menu li a.selected {
  color: var(--cb-primary-color);
}

#cb-top-bar .info.mobile .menu li:first-child a {
  padding-top: 0;
}

#cb-top-bar .info.mobile .menu li:hover a {
  padding-left: 8px;
}

#cb-top-bar .info.mobile .menu li ul.sub-menu {
  background-color: var(--cb-bg_color2);
  margin-left: -16px;
  margin-right: -16px;
  padding-left: 36px;
  position: static;
}

#cb-top-bar .info.mobile .menu li ul.sub-menu li:first-child a {
  padding-top: 10px;
}

#cb-top-bar .info.mobile .menu-mobile {
  display: block;
}

#cb-top-bar .info.mobile .menu-mobile.open + .menu {
  display: block;
}

#default-header ~ #cb-top-bar {
  margin-top: 48px;
}

#cb-top-bar + #site-main,
body:has(#default-header) #cb-top-bar + #site-main {
  padding-top: 32px;
}

@media (max-width: 600px) {
  #cb-top-bar .info .icon {
    width: 50px;
    height: 50px;
    margin-top: 14px;
  }
  #cb-top-bar .info div.text {
    width: -webkit-calc(100% - 50px);
    width: calc(100% - 50px);
  }
  #cb-top-bar .info div.text .title {
    max-width: 100%;
    padding-right: 0;
  }
  #cb-top-bar .info div.text .title h1 {
    height: auto;
  }
  #cb-top-bar .info div.text .title h1 span.text-ellipsis {
    height: auto;
    font-size: 24px;
    white-space: normal;
  }
  #cb-top-bar .info div.text .title h1.with-small-text span.text-ellipsis {
    width: 100%;
    max-width: none;
  }
  #cb-top-bar .info div.text .title h1 span.small {
    padding: 5px 0 0 0;
  }
  #cb-top-bar .info div.text .cb-btn.ion-compose {
    width: 36px;
    min-width: 0;
    text-align: center;
    position: absolute;
    top: 42px;
    left: -42px;
  }
  #cb-top-bar .info div.text .cb-btn.ion-compose .text {
    display: none;
  }
  #top-user .info.mobile.with-dm-icon .text {
    margin-bottom: 10px;
  }
  #top-user .info.mobile.with-dm-icon .text .title {
    padding-right: 50px;
  }
}