.info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
.circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    background-color: #447fff;
    justify-content: center;
    border-radius: 50px;
    color: #fff;
    font-weight: 900;
    margin-right: 20px;
}
.date {
    width: -webkit-fill-available;
    border-bottom: 1px solid;
}
.card {
    padding: 0.7em;
    box-shadow: 0 0 10px #00000042;
    text-align: center;
    border-radius: 10px;
}
.card p {
    font-size: 13px;
}

.card-body {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.card-body .icon{
    font-size: 28px;
    margin-right: 1em;
}
.divider {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: #8e8e8e;
}

.icon span {
    width: 28px;
    display: block;
    height: 28px;
    font-size: 15px;
    background-color: #447fff;
    color: #fff;
    border-radius: 50px;
}
.w-100 {
    width: 100% !important;
}

.dest {
    position: relative;
    background-image: url(img/backgrounds/1.png);
    height: 240px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    width: 100% !important;
    margin-top: 1em;
    margin-bottom: 1em;
}
.overlay {

    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 20px;
    background-color: #0000005e;
    z-index: 0;
}
.dest h4 {
    z-index: 1;
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    /* z-index: 1020; */
  }
  

  .button.active {
    border-color: var(--color-blue-1);
    background-color: var(--color-blue-1) !important;
    color: white !important;

  }
  @media (min-width: 576px) {
    .sticky-sm-top {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 1020;
    }
  }
  @media (min-width: 768px) {
    .sticky-md-top {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 1020;
    }
  }
  @media (min-width: 992px) {
    .sticky-lg-top {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 1020;
    }
  }
  @media (min-width: 1200px) {
    .sticky-xl-top {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 1020;
    }
  }
  @media (min-width: 1400px) {
    .sticky-xxl-top {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 1020;
    }
  }

  .position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
  }