.b-content-sidebar-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column-gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  overflow: hidden;
  transition: border-radius .6s cubic-bezier(.5, 0, .3, 1);
  border-radius: 5px;
  background: #f49d21;
}

@media (min-width: 1024px) {
  .b-content-sidebar-title {
    border-radius: 5px 5px 0 0;
  }

  .b-content-sidebar-title:after {
    content: "";
    position: absolute;
    display: block;
    bottom: -8px;
    left: 50%;
    width: 12px;
    height: 12px;
    transition: prop time;
    -webkit-transform: translateX(-50%) rotate(-135deg);
    transform: translateX(-50%) rotate(-135deg);
    background: #fff;
  }
}

.b-content-sidebar-title.m-show {
  border-radius: 5px 5px 0 0;
}

.b-content-sidebar-title.m-show .b-content-sidebar-more:before {
  transform: rotate(180deg);
}

.b-content-sidebar-title a {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

@media (min-width: 1024px) {
  .b-content-sidebar-title {
    padding: 32px 16px;
    text-transform: uppercase;
  }
}

@media (max-width: 1023.98px) {
  .b-content-sidebar-title {
    padding: 24px 16px;
  }
}

.b-content-sidebar-more {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  z-index: 1;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .b-content-sidebar-more {
    display: none;
  }
}

.b-content-sidebar-more:before {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  z-index: 1;
  cursor: pointer;
  transform-origin: center;
  transition: transform .3s cubic-bezier(.5, 0, .3, 1);
  transition: transform .3s cubic-bezier(.5, 0, .3, 1), -webkit-transform .3s cubic-bezier(.5, 0, .3, 1);
  background-image: url(../asset/images/arrow-down-3.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.b-ctp {
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
  color: #2B2B2B;
  background: #fff;
  border-radius: 0 0 5px 5px;
}

@media (min-width: 1024px) {
  .b-ctp {
    display: block !important;
  }
}

@media (max-width: 1023.98px) {
  .b-ctp {
    display: none;
  }
}

.b-ctp-item:not(:last-child) {
  border-bottom: 1px solid #eaeaea;
}

.b-ctp li {
  margin-bottom: 0;
}

.b-ctp-item.m-open {
  background: #fcf8f2;
}

.b-ctp-item.m-open .b-ctp-header a {
  color: #f49d21;
}

.b-ctp-item.m-open .b-ctp-more:before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  filter: grayscale(0);
}

.b-ctp-item.m-open .b-ctp-content {
  opacity: 1;
  transition-delay: .2s;
}

.b-ctp-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  transition: color .3s cubic-bezier(.5, 0, .3, 1), font-weight .3s cubic-bezier(.5, 0, .3, 1);
}

@media (min-width: 1024px) {
  .b-ctp-header {
    padding: 20px 16px;
  }
}

@media (max-width: 1023.98px) {
  .b-ctp-header {
    padding: 16px;
  }
}

.b-ctp-header a {
  color: #303030;
  text-decoration: none;
}

.b-ctp-more {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  flex-shrink: 0;
  cursor: pointer;
}

.b-ctp-more:before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 8px;
  margin: -4px 0 0 -6px;
  filter: grayscale(1);
  transition: -webkit-transform .3s cubic-bezier(.5, 0, .3, 1), -webkit-filter .3s cubic-bezier(.5, 0, .3, 1);
  transition: transform .3s cubic-bezier(.5, 0, .3, 1), filter .3s cubic-bezier(.5, 0, .3, 1);
  background-image: url(../asset/images/arrow-down-2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.b-ctp-body {
  display: none;
  padding: 0 16px 24px;
}

.b-ctp-content {
  opacity: 0;
  transition: opacity .45s cubic-bezier(.5, 0, .3, 1);
}

.b-ctp-list {
  margin: 0;
  list-style: none;
  padding: 0 0 0 16px;
  font-size: 16px;
}

.b-ctp-list li {
  margin-bottom: 0;
}

.b-ctp-list li:not(:first-child) {
  margin-top: 12px;
}

.b-ctp-list li a {
  color: #303030;
  text-decoration: none;
}

.b-ctp-list li a.m-active,
.b-ctp-list li a:hover {
  color: #f49d21;
}
