/**
 * WRAPPER
 */
.csw-tour-pills-wrapper {
  position: relative;
  width: 100%;
}

/**
 * TITLE
 */
.csw-tour-pills-header{
  margin-bottom: 20px;
  text-align: center;
}
.csw-tour-pills-header p{
  text-align: center;
}
.csw-tour-pills-main-title {
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

/**
 * NAV
 */
.csw-tour-pills-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 35px;
}

/**
 * PILLS ICON
 */
.csw-tour-pill i {
  font-size: 14px;
  line-height: 1;
}

/**
 * CUSTOM
 */
.btn-custom {
  background: var(--pill-inactive-bg);
  color: var(--pill-inactive-text);
}

.btn-custom:hover {
  background: var(--pill-hover);
  color: var(--pill-active-text);
}

.btn-custom.active {
  background: var(--pill-active-bg);
  color: var(--pill-active-text);
}

/**
 * CONTENTS
 */
.csw-tour-pill-content {
  display: none;
}

.csw-tour-pill-content.active {
  display: block;
}
.csw-tour-pill-content .wpb_column{
  margin-bottom: 30px;
}

/**
 * CARD
 */
.csw-tour-pills-contents .wpb_wrapper{
  height: 100%;
}
.csw-taxonomy-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: all .25s ease;
  display: flex;
  height: 100%;
  flex-direction: column;
}

.csw-taxonomy-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 40px rgba(0,0,0,.10);
}

/**
 * IMAGE
 */
.csw-taxonomy-slide img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.csw-taxonomy-image {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.csw-taxonomy-figure {
  margin: 0;
  padding: 0;
  line-height: 0;
}

/**
 * CONTENT
 */
.csw-taxonomy-content {
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/**
 * TITLE
 */
.csw-taxonomy-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

/**
 * LIST
 */
.csw-taxonomy-list {
  margin: 0 0 15px 0;
  padding-left: 15px;
  margin-bottom: auto;
}

.csw-taxonomy-list li {
  margin-bottom: 10px;
  list-style: disclosure-closed;
}

.csw-taxonomy-list li:last-child {
  margin-bottom: 0;
}

.csw-taxonomy-list a {
  text-decoration: none;
  color: #626D82;
  font-weight: 500;
  transition: all .2s ease;
}

.csw-taxonomy-list a:hover {
  color: #012468;
}

/**
 * FOOTER
 */
.csw-taxonomy-footer {
  margin-top: auto;
}


@media (max-width: 767px) {

  .csw-tour-pills-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    flex-direction: column;
  }

  .csw-tour-pill {
    white-space: nowrap;
  }
}