.card-col {
  padding-left: 6px;
  padding-right: 6px;
}
.tour-card {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  padding: .5rem;
  background: #fff;
  position: relative;
  margin-bottom: 10px;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.tour-card .card-warp {
  height: 280px;
  width: 100%;
}

.img-warp {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.tour-img {
  padding-top: 100%;
  background-position: center center;
  background-size: cover;
  transition: all ease-in-out 0.3s;
}

.tour-card:hover .tour-img {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.tour-card .card-content {
  position: relative;
  display: block;
  overflow: hidden;
}

.tour-card .card-badge {
  position: absolute;
  top: 5px;
  left: 5px;
  background: var(--bs-danger);
  padding: 1px 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  z-index: 99;
}
.tour-card .card-title {
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--av-theme_dark);
  font-size: .9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all ease-in-out 0.3s;
}
.tour-card:hover .card-title {
  color: var(--av-theme_action_primary);
}

.tour-card .card-content small {
  font-size: 10px;
}
.tour-card .card-btm {
  width: 100%;
  display: flex;
}
.tour-card .card-btm .price-warp,.tour-card .card-btm .card-cta {
  width: 50%;
}
.tour-card .card-btm .price-warp .card-price {
  font-size: 1rem;
  font-weight: 600;
  transition: all ease-in-out 0.3s;
  color: var(--av-theme_ico);
  white-space: nowrap;
}
.tour-card:hover .card-btm .price-warp .card-price {
  color: var(--av-theme_dark);
}
.tour-card .card-btm .card-cta {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.tour-card .card-btm .card-cta .btn {
  padding-left: 1rem;
  padding-right: 1rem;
  background: var(--av-theme_dark);
  color: #fff;
  font-weight: 600;
  transition: all ease-in-out 0.3s;
}
.tour-card:hover .card-btm .card-cta .btn {
  background: var(--av-theme_action_primary);
}
.tour-dept {
  position: absolute;
  bottom: 5px;
  left: 5px;
  background: rgba(255,255,255,.875);
  border-radius: 3px;
  padding: 0 10px;
}
.tour-card:hover .tour-dept {
background: rgba(255,255,255,1);
}
.tour-date {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  color: var(--av-theme_dark);
}
.date-row {
  padding-top: 10px;
  padding-bottom: 10px;
  background: #f0f0f0;
  border-radius: 4px;
}
.date-card {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  text-align: center;
  height: 100%;
  padding: .5rem;
  position: relative;
  margin-bottom: 10px;
}

.date-card-d {
  width: 100%;
  font-size: 64px;
}
.date-card-my {
  width: 100%;
  font-size: 20px;
}

.top-reg-card {
  display: flex;
  position: relative;
  background: var(--bs-light);
  padding: 5px;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.top-reg-card:hover  {
  background: #f1f1f1;
}
.top-reg-card:hover .top-reg-label{
  color: var(--av-theme_action_primary);
}
.top-reg-card:hover .top-reg-label .top-reg-count{
  color: #555;
}
.top-reg-card .top-reg-img-wrp{
  width: 20%;
  padding-top: 20%;
  position: relative;
}
.top-reg-card .top-reg-img-box{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
}
.top-reg-card .top-reg-img-box img{
  height:125%;
}
.top-reg-card .top-reg-label{
  padding-left: 15px;
  font-size: 16px;
  color: #333;
  font-weight: 600;
}
.top-reg-card .top-reg-label .top-reg-count{
  font-size: 12px;
  color: #888;
  font-weight: 400;
}


@media only screen and (max-width: 767px) {
  .date-card-d {
    font-size: 48px;
  }
  .date-card-my {
    font-size: 16px;
  }
}

@media only screen and (max-width: 991px) {
  .tour-card .card-btm .price-warp .card-price {
    font-size: .9rem;
  }
}
