.eba-wrapper {
  margin: auto;
  position: relative;
  width: 100%; }
  .eba-wrapper.loading {
    opacity: 0.6;
    pointer-events: none; }
    .eba-wrapper.loading::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.6);
      z-index: 5; }
    .eba-wrapper.loading::after {
      content: "";
      width: 40px;
      height: 40px;
      border: 4px solid #ddd;
      border-top: 4px solid #0073aa;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: ebaSpin 0.8s linear infinite;
      z-index: 10; }
  .eba-wrapper .eba-no-data {
    width: 100%;
    display: flex;
    justify-content: center; }
    .eba-wrapper .eba-no-data .no_result {
      display: flex;
      flex-direction: column;
      align-items: center;
      align-self: stretch;
      margin-top: 12px; }
      .eba-wrapper .eba-no-data .no_result img {
        margin-bottom: 24px; }
      @media (max-width: 767px) {
        .eba-wrapper .eba-no-data .no_result {
          font-size: 16px; } }
      .eba-wrapper .eba-no-data .no_result .title {
        color: var(--Neutral-950, #000);
        text-align: center;
        font-size: 36px;
        font-style: normal;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 12px; }
        @media (max-width: 1024px) {
          .eba-wrapper .eba-no-data .no_result .title {
            font-size: 32px; } }
        @media (max-width: 767px) {
          .eba-wrapper .eba-no-data .no_result .title {
            font-size: 28px; } }
      .eba-wrapper .eba-no-data .no_result .text {
        color: var(--Neutral-600, #4F4F4F);
        text-align: center;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.5; }

.eba-filter {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 20px;
  flex-wrap: wrap; }
  @media (max-width: 1024px) {
    .eba-filter {
      margin-bottom: 60px; } }
  @media (max-width: 767px) {
    .eba-filter {
      margin-bottom: 30px; } }
  .eba-filter .input-box {
    display: flex;
    width: 400px;
    position: relative; }
    @media (max-width: 1024px) {
      .eba-filter .input-box {
        width: 300px; } }
    @media (max-width: 767px) {
      .eba-filter .input-box {
        width: 100%; } }
    .eba-filter .input-box .icon-eba-search {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      width: 24px;
      display: flex; }
      .eba-filter .input-box .icon-eba-search:hover {
        cursor: pointer; }
    .eba-filter .input-box .eba-search {
      display: flex;
      width: 100%;
      padding: 17px 12px 17px 44px;
      align-items: center;
      gap: 8px;
      border-radius: 16px;
      border: 1px solid var(--Neutral-300, #C6C6C6);
      background: var(--Additional-White, #FFF);
      color: var(--Primary-950, #142B38);
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 24px; }
      @media (max-width: 1024px) {
        .eba-filter .input-box .eba-search {
          padding: 12px 12px 12px 44px; } }
      .eba-filter .input-box .eba-search::placeholder {
        color: var(--Neutral-500, #7E7E7E); }
  .eba-filter .category-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px; }
    .eba-filter .category-box .label {
      color: var(--Neutral-950, #000);
      font-size: 24px;
      font-style: normal;
      font-weight: 600;
      line-height: 32px; }
      @media (max-width: 1024px) {
        .eba-filter .category-box .label {
          font-size: 20px;
          line-height: 28px; } }
    .eba-filter .category-box .eba-category {
      width: 100%;
      display: flex;
      padding: 12px;
      justify-content: space-between;
      align-items: center;
      align-self: stretch;
      border-radius: 8px;
      border: 1px solid var(--Neutral-300, #C6C6C6);
      color: var(--Neutral-950, #000);
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 24px;
      outline: none;
      background: url("../img/dropdown-icon.svg") right 12px center no-repeat;
      min-width: 200px; }
      .eba-filter .category-box .eba-category option {
        color: var(--Neutral-950, #000);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        /* 150% */ }

.eba-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; }
  .eba-posts.no_result {
    grid-template-columns: 1fr; }

.eba-card {
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s; }
  .eba-card:hover {
    transform: translateY(-4px); }
  .eba-card .eba-img {
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 8px; }
    .eba-card .eba-img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .eba-card .eba-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    padding-top: 24px; }
  .eba-card .eba-cat {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: nowrap;
    overflow: hidden;
    min-width: 0; }
    .eba-card .eba-cat span {
      display: flex;
      padding: 4px 12px;
      justify-content: center;
      align-items: center;
      gap: 10px;
      border-radius: 8px;
      background: var(--Secondary-500, #E37AB1);
      color: var(--Additional-White, #FFF);
      font-size: 14px;
      font-style: normal;
      font-weight: 600;
      line-height: 20px;
      flex: 0 0 auto; }
  .eba-card .eba-title {
    color: var(--Primary-950, #142B38);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch; }
  .eba-card .eba-excerpt {
    overflow: hidden;
    color: var(--Neutral-600, #4F4F4F);
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch; }
  .eba-card .time {
    color: var(--Neutral-600, #4F4F4F);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */ }

.eba-loadmore-wrap {
  text-align: center;
  margin-top: 32px; }

.eba-load-more {
  display: flex;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid var(--Primary-500, #2D8EAD);
  cursor: pointer;
  color: var(--Primary-500, #2D8EAD);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  /* 150% */
  margin: auto;
  background: unset !important; }
  .eba-load-more:hover {
    background: #005177; }

.eba-wrapper.loading .eba-load-more {
  opacity: 0;
  pointer-events: none; }

.single-post-tour {
  padding: 80px 60px; }
  @media (max-width: 1024px) {
    .single-post-tour {
      padding: 60px; } }
  @media (max-width: 767px) {
    .single-post-tour {
      padding: 60px 20px; } }
  .single-post-tour .content-post {
    max-width: 1160px;
    margin: 0 auto; }
    .single-post-tour .content-post .breadcrumb {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 40px; }
      .single-post-tour .content-post .breadcrumb a {
        color: var(--Neutral-600, #4F4F4F);
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        /* 155.556% */
        flex-shrink: 0; }
      .single-post-tour .content-post .breadcrumb .current {
        color: var(--Neutral-950, #000);
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        min-width: 0;
        flex: 1; }
      @media (max-width: 1024px) {
        .single-post-tour .content-post .breadcrumb {
          margin-bottom: 30px; } }
      @media (max-width: 767px) {
        .single-post-tour .content-post .breadcrumb {
          margin-bottom: 16px; } }
    .single-post-tour .content-post .update {
      color: var(--Neutral-600, #4F4F4F);
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: 20px;
      /* 142.857% */
      margin-bottom: 24px; }
      @media (max-width: 767px) {
        .single-post-tour .content-post .update {
          margin-bottom: 16px; } }
    .single-post-tour .content-post .title-main {
      color: var(--Neutral-950, #000);
      font-size: 48px;
      font-style: normal;
      font-weight: 600;
      line-height: 110%;
      /* 52.8px */
      margin-bottom: 24px; }
      @media (max-width: 1024px) {
        .single-post-tour .content-post .title-main {
          font-size: 32px; } }
      @media (max-width: 767px) {
        .single-post-tour .content-post .title-main {
          font-size: 28px; } }
    .single-post-tour .content-post .single-cat {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      flex-wrap: nowrap;
      min-width: 0;
      margin-bottom: 40px; }
      @media (max-width: 767px) {
        .single-post-tour .content-post .single-cat {
          margin-bottom: 30px; } }
      .single-post-tour .content-post .single-cat span {
        display: flex;
        padding: 4px 12px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 8px;
        background: var(--Secondary-500, #E37AB1);
        color: var(--Additional-White, #FFF);
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        flex: 0 0 auto; }
    .single-post-tour .content-post .thumb-main {
      aspect-ratio: 1200/636;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 60px; }
      @media (max-width: 1024px) {
        .single-post-tour .content-post .thumb-main {
          gap: 40px; } }
      @media (max-width: 767px) {
        .single-post-tour .content-post .thumb-main {
          margin-bottom: 30px; } }
      .single-post-tour .content-post .thumb-main img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .single-post-tour .content-post .content_main {
      display: flex;
      flex-wrap: wrap;
      gap: 66px;
      justify-content: space-between; }
      @media (max-width: 1024px) {
        .single-post-tour .content-post .content_main {
          gap: 40px; } }
      .single-post-tour .content-post .content_main .content_left {
        width: 300px; }
        @media (max-width: 1024px) {
          .single-post-tour .content-post .content_main .content_left {
            width: 264px; } }
        @media (max-width: 767px) {
          .single-post-tour .content-post .content_main .content_left {
            width: 100%; } }
      .single-post-tour .content-post .content_main .blog-detail-catalogue {
        position: sticky;
        top: 108px;
        display: flex;
        flex-direction: column;
        gap: 16px; }
        @media (max-width: 1024px) {
          .single-post-tour .content-post .content_main .blog-detail-catalogue {
            gap: 12px; } }
        @media (max-width: 767px) {
          .single-post-tour .content-post .content_main .blog-detail-catalogue {
            position: relative;
            top: unset; } }
        .single-post-tour .content-post .content_main .blog-detail-catalogue .catalogue-item {
          color: var(--Neutral-600, #4F4F4F);
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 150%;
          text-decoration: none; }
          .single-post-tour .content-post .content_main .blog-detail-catalogue .catalogue-item.active {
            color: var(--Blue-950, #04354D);
            font-weight: 600; }
      .single-post-tour .content-post .content_main .blog-detail-content {
        width: calc(100% - 366px);
        overflow: hidden;
        line-height: 150%; }
        @media (max-width: 1024px) {
          .single-post-tour .content-post .content_main .blog-detail-content {
            width: calc(100% - 306px); } }
        @media (max-width: 767px) {
          .single-post-tour .content-post .content_main .blog-detail-content {
            width: 100%; } }
        .single-post-tour .content-post .content_main .blog-detail-content h1 {
          font-size: 28px;
          font-style: normal;
          font-weight: 700;
          margin-bottom: 0.67em; }
        .single-post-tour .content-post .content_main .blog-detail-content h2 {
          margin-bottom: 0.83em;
          font-size: 24px;
          font-style: normal;
          font-weight: 700;
          line-height: 120%; }
        .single-post-tour .content-post .content_main .blog-detail-content h3 {
          font-size: 20px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%;
          margin-bottom: 1em; }
        .single-post-tour .content-post .content_main .blog-detail-content h4 {
          font-size: 18px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%;
          margin-bottom: 1.33em; }
        .single-post-tour .content-post .content_main .blog-detail-content h5 {
          font-size: 18px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%;
          margin-bottom: 1.67em; }
        .single-post-tour .content-post .content_main .blog-detail-content h6 {
          font-size: 18px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%;
          margin-bottom: 2.33em; }
        .single-post-tour .content-post .content_main .blog-detail-content p {
          margin-bottom: 16px;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 150%; }
        .single-post-tour .content-post .content_main .blog-detail-content ul {
          display: block;
          list-style-type: disc;
          margin-block-end: 1em;
          padding-inline-start: 30px; }
        .single-post-tour .content-post .content_main .blog-detail-content ol {
          display: block;
          list-style-type: decimal;
          margin-block-end: 1em;
          padding-inline-start: 30px; }
        .single-post-tour .content-post .content_main .blog-detail-content li {
          list-style: inherit;
          line-height: 150%; }
          .single-post-tour .content-post .content_main .blog-detail-content li::marker {
            font-size: 12px; }
        .single-post-tour .content-post .content_main .blog-detail-content a {
          color: #1C5DC5; }
        .single-post-tour .content-post .content_main .blog-detail-content .CTA {
          padding: 60px;
          border-radius: 16px;
          background: var(--Dark-Cerulean-20, #081935) !important;
          margin-bottom: 1em; }
          @media (max-width: 1024px) {
            .single-post-tour .content-post .content_main .blog-detail-content .CTA {
              padding: 40px 30px; } }
          @media (max-width: 767px) {
            .single-post-tour .content-post .content_main .blog-detail-content .CTA {
              padding: 40px 12px; } }
          .single-post-tour .content-post .content_main .blog-detail-content .CTA .content {
            justify-content: center;
            align-items: center;
            display: flex;
            flex-direction: column;
            background-color: unset;
            gap: 20px !important; }
            .single-post-tour .content-post .content_main .blog-detail-content .CTA .content .title {
              color: var(--Neutral-100, #FFF);
              text-align: center;
              font-size: 20px;
              font-style: normal;
              font-weight: 700;
              line-height: 150%;
              /* 27px */
              margin-bottom: 0 !important; }
            .single-post-tour .content-post .content_main .blog-detail-content .CTA .content .text {
              color: var(--Neutral-100, #FFF);
              text-align: center;
              font-size: 16px;
              font-style: normal;
              font-weight: 400;
              line-height: 150%;
              /* 24px */
              margin-bottom: 0 !important; }
            .single-post-tour .content-post .content_main .blog-detail-content .CTA .content .button a {
              display: flex;
              height: 48px;
              padding: 4px 12px;
              justify-content: center;
              align-items: center;
              flex-shrink: 0;
              border-radius: 8px;
              background: var(--Gradient-Color-3, linear-gradient(180deg, #DB292C 0%, #BB1B1E 100%));
              color: var(--Neutral-100, #FFF);
              font-size: 16px;
              font-style: normal;
              font-weight: 500;
              line-height: 150%; }
              .single-post-tour .content-post .content_main .blog-detail-content .CTA .content .button a:hover {
                cursor: pointer; }
        .single-post-tour .content-post .content_main .blog-detail-content table {
          border-collapse: collapse;
          width: 100%;
          margin-bottom: 16px; }
          .single-post-tour .content-post .content_main .blog-detail-content table th, .single-post-tour .content-post .content_main .blog-detail-content table td {
            border: 1px solid #ddd;
            padding: 8px; }
          .single-post-tour .content-post .content_main .blog-detail-content table tr {
            padding-top: 12px;
            padding-bottom: 12px;
            text-align: left; }
            .single-post-tour .content-post .content_main .blog-detail-content table tr:nth-child(even) {
              background-color: #f2f2f2; }
    .single-post-tour .content-post .share_button {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      width: 100%;
      border-top: 1px solid var(--Neutral-90, #E1E2EC);
      border-bottom: 1px solid var(--Neutral-90, #E1E2EC);
      padding: 24px 0;
      justify-content: flex-end;
      align-self: stretch;
      gap: 8px; }
      .single-post-tour .content-post .share_button span {
        color: var(--Neutral-50, #757780);
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        margin-right: 16px; }
      .single-post-tour .content-post .share_button .share-btn {
        display: flex;
        width: 40px;
        height: 40px;
        padding: 8px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        aspect-ratio: 1/1;
        border-radius: 999px;
        background: var(--Primary-100, #D8F0F5);
        border: none;
        outline: none; }
        .single-post-tour .content-post .share_button .share-btn:hover {
          cursor: pointer; }
          .single-post-tour .content-post .share_button .share-btn:hover svg {
            width: 24px; }

.single-post-relatedTours {
  padding: 80px 60px; }
  @media (max-width: 1024px) {
    .single-post-relatedTours {
      padding: 60px; } }
  @media (max-width: 767px) {
    .single-post-relatedTours {
      padding: 60px 20px; } }
  .single-post-relatedTours .relatedTours {
    max-width: 1520px;
    margin: 0 auto; }
    .single-post-relatedTours .relatedTours .sub-name {
      display: flex;
      align-items: center;
      gap: 12px;
      align-self: stretch;
      color: var(--Neutral-600, #4F4F4F);
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 28px;
      margin-bottom: 12px; }
    .single-post-relatedTours .relatedTours .name-related {
      color: var(--Neutral-950, #000);
      font-size: 48px;
      font-style: normal;
      font-weight: 600;
      line-height: 110%;
      margin-bottom: 80px; }
      @media (max-width: 1024px) {
        .single-post-relatedTours .relatedTours .name-related {
          font-size: 32px;
          margin-bottom: 60px; } }
      @media (max-width: 767px) {
        .single-post-relatedTours .relatedTours .name-related {
          font-size: 28px;
          margin-bottom: 30px; } }

.single .share-email-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px; }
  .single .share-email-modal.is-open {
    display: flex; }
  .single .share-email-modal__inner {
    width: 100%;
    max-width: 600px;
    background: #fff;
    border-radius: 12px;
    padding: 32px 48px;
    position: relative; }
    @media (max-width: 767px) {
      .single .share-email-modal__inner {
        padding: 24px 20px; } }
  .single .share-email-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    cursor: pointer;
    background: unset; }
  .single .share-email-modal__icon {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 14.4px;
    justify-content: center;
    align-items: center;
    gap: 9.6px;
    aspect-ratio: 1/1;
    border-radius: 1198.8px;
    background: var(--Blue-100, #DEF4FF);
    margin: auto;
    margin-bottom: 10px; }
  .single .share-email-modal__title {
    color: var(--Neutral-950, #000);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 10px; }
  .single .share-email-modal__sub {
    color: var(--Neutral-600, #4F4F4F);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
    margin-bottom: 24px; }
    @media (max-width: 767px) {
      .single .share-email-modal__sub {
        margin-bottom: 16px; } }
  .single .share-email-modal__label {
    color: var(--Neutral-950, #000);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
    margin-bottom: 8px; }
  .single .share-email-modal__input-wrap {
    border: 1px solid #A5A5A5;
    border-radius: 8px;
    min-height: 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 12px;
    gap: 8px;
    align-self: stretch; }
  .single .share-email-modal__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px; }
  .single .share-email-modal__chip {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid var(--Primary-400, #43A8C5);
    background: var(--Primary-50, #F0FAFB); }
  .single .share-email-modal__chip-remove {
    border: none;
    background: transparent;
    color: #0f5f79;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    padding: 0; }
  .single .share-email-modal #share-email-input {
    border: none;
    outline: none;
    flex: 1;
    min-width: 160px;
    font-size: 16px;
    color: #09121f;
    padding: 4px 0; }
  .single .share-email-modal__error {
    min-height: 18px;
    color: #dc2626;
    font-size: 12px;
    line-height: 1.5;
    margin-top: 8px; }
  .single .share-email-modal__submit {
    width: 100%;
    border: none;
    border-radius: 8px;
    background: #9fd7e4;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
    display: flex;
    padding: 12px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    opacity: 0.5;
    background: var(--Primary-400, #43A8C5);
    font-size: 16px;
    font-style: normal;
    line-height: 24px; }
    .single .share-email-modal__submit.is-active {
      opacity: 1;
      cursor: pointer; }
    .single .share-email-modal__submit.is-loading, .single .share-email-modal__submit.is-disabled, .single .share-email-modal__submit:disabled {
      cursor: not-allowed;
      opacity: 0.5; }

body.share-email-modal-open {
  overflow: hidden; }

@keyframes ebaSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg); }
  to {
    transform: translate(-50%, -50%) rotate(360deg); } }
@media (max-width: 1024px) {
  .eba-posts {
    grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) {
  .eba-posts {
    grid-template-columns: 1fr; }

  .eba-search {
    width: 100%; } }

/*# sourceMappingURL=post_adamo.css.map */
