.ct-card-wrap-accordion,
.ct-aside-info-wrap-accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  background-color: var(--light-10);
  border-radius: 8px;
  transition: all 0.3s;
}

.ct-aside-date {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-aside-info-wrap-accordion {
  transition: all 0s;
}

.ct-aside-info-wrap-accordion p {
    display: none;
}

.openInfo p {
    display: block;
}

.ct-trip-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  /* flex: 1; */
}

.ct-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 24px 0 16px 0;
  gap: 16px;
}


.ct-header-left {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.ct-header-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  cursor: pointer;
}

.open .ct-header-right .h5 {
  display: none;
}

.ct-tog-button,
.ct-info-tog-button {
  display: flex;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1;
}

.ct-tog-button::before,
.ct-info-tog-button::before {
  content: "";
  background-image: url(/content/new/icons/chevron-bottom-grey.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 32px;
  position: absolute;
  width: 32px;
  height: 32px;
  right: 0;
  top: 1px;
  transition: all 0.3s;
}

.open .ct-tog-button::before, 
.openInfo .ct-info-tog-button::before {
  transform: rotate(180deg);
  /* opacity: 0.3; */
}

.ct-body {
  display: flex;
  border-top: 1px var(--light-20) solid;
  flex: 1;
}

.ct-aside {
  display: flex;
  flex-direction: column;
  width: 340px;
  min-width: 340px;
  gap: 16px;
  padding: 16px;
  border-right: 1px var(--light-20) solid;
}

.ct-card-info {
  display: flex;
  flex-direction: column;
}

.ct-card-info-header-mod {
  justify-content: space-between;
  align-items: center;
}

.ct-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.ct-resume-row-mod,
.ct-main-row-mod {
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.ct-row-select-mod {
  max-width: 100px;
}

.ct-row-title {
  flex: 1;
}

.ct-row-total,
.ct-row-unit {
  display: flex;
  justify-content: flex-end;
  min-width: 130px;
}

.cf-title {
    display:flex;
    justify-content: space-between;
    align-items:center;
}

.cf-footer {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 16px;
  flex-wrap: wrap;
}

.cf-credit-card {
  display: flex;
  flex: 1 0 0;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background-color: var(--light-10);
}

.cf-order-card {
  display: flex;
  flex: 1 0 0;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-radius: 8px;
  background-color: var(--light-10);
}

.cf-order-card > div {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Aligns the price and text to the right */
}

.no-additional-fees {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: bold; /* Makes the text bold */
    color: #96bb3e !important; /* Olive green color */
    margin-top: 4px; /* Adds a small space between the price and this text */
    text-align: right; /* Aligns the text to the right, matching the price */
}

.cf-guarantees-container-mod {
    border-radius: 8px;
}

.cf-guarantees-content-mod {
    padding: 16px 48px;
}

.cf-buttons-row {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.hg-item-cart-mod {
    background-image: url('/content/new/icons/check-green.svg');
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: 48px;
    display: flex;
    flex-direction: row;
    padding: 0 0 0 64px;
}

.hg-item-cart-mod p {
    color: var(--light-00);
}

@media screen and (max-width: 964px) {
  .ct-body {
    flex-direction: column;
  }
  
  .ct-aside {
    width: 100%;
    min-width: inherit;
    border-right: none;
    border-bottom: 1px var(--light-20) solid;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .ct-aside-date {
    width: 100%;
    flex-direction: row;
  }

  .ct-aside-info-wrap-accordion {
    width: calc(50% - 8px);
  }
}

@media screen and (max-width: 768px) {
  .cf-footer {
    flex-direction: column;
  }

    .cf-buttons-row {
        z-index: 3;
        background-color: var(--light-10);
        padding: 16px;
        flex-direction: column;
        position: fixed;
        bottom: 0;
        left: 0;
    }

  .ct-header-right-total {
    padding: 16px 0;
  }
}

@media screen and (max-width: 640PX) {
  .ct-header {
    position: relative;
    flex-direction: column;
    padding: 24px 0 0px 0;
    gap: 0;
  }

  .ct-header-right {
    padding-top: 0px;
    width: 100%;
  }

  .ct-tog-button {
    position: absolute;
    top: 24px;
    right: 0px;
  }
  
  .ct-header-left {
    flex-wrap: wrap;
    gap: 4px 8px;
    padding-bottom: 4px;
    border-bottom: 1px var(--light-20) solid;
  }

  .ct-header-left .h4 {
    width: 100%;
    padding-right: 32px;
  }

  .ct-aside {
    flex-direction: column;
    padding: 16px 0;
  }

  .ct-aside-date {
    flex-direction: column;
  }

  .ct-aside-info-wrap-accordion {
    width: 100%;
  }

  .ct-main {
    padding: 16px 0;
  }
  
  .ct-main-row-mod {
    flex: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 8px;
    padding-bottom: 16px;
    border-bottom: 1px var(--light-20) solid;
  }

  .ct-main-row-mod .ct-row-title {
    flex: auto;
    width: 100%;
  }

  .ct-row-select-mod {
    flex: 1;
    justify-content: flex-end;
    max-width: inherit;
  }

  .cf-footer {
    flex-direction: column;
  }
}