.tourlist-sec {
  background: #f2f1f7;
}
.tlist-cont {
  padding: 0 10px;
}
.tlist-row {
  background: #fefefe;
  border: 2px solid #f2f1f7;
  padding-top: 10px;
  padding-bottom: 10px;
  color: var(--bs-gray-600);
  font-size: 16px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: all .2s ease-in-out;
}
.tlist-row:hover {
  background: #fff;
  border: 2px solid var(--accent-gold);
}
.tlcol-n {
  min-width: 40px;
}

.tlcol-date {
  width: 120px;
}
.tlcol-name {
  font-weight: 600;
  color: var(--text-dark);
  transition: all .2s ease-in-out;
}
.tlist-row:hover .tlcol-name {
  color: var(--accent-main);
}
.tlcol-tc {
  width: 120px;
  font-size: 14px;
}
.tlcol-price {
  width: 140px;
  font-weight: 600;
  color: var(--accent-main);
}
.tlcol-sts {
  width: 140px;
  font-weight: 600;
  font-size: 14px;
}

.tlcol-sts .b {
  background-color: var(--bs-gray-400);
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 5px;
}
.tlcol-sts .b.fast {
  background-color: var(--bs-teal);  
}
.tlcol-sts .b.guaranteed  {
  background-color: var(--bs-success);  
}
.tlcol-sts .b.soldout {
  background-color: var(--bs-danger);
}

@media only screen and (min-width: 768px) {
  .tlcol-n {
    width: 65px;
  }
}