.pickup_offer {
  width: calc(100% - 40px);
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 52px;
}
.pickup_offer .splide__arrows {
  display: flex;
  gap: 50px;
  justify-content: center;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.pickup_offer .splide__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--tcd-accent-color);
  background: #fff;
  border-radius: 50%;
}
.pickup_offer .splide__arrow:disabled {
  opacity: .2;
  pointer-events: none;
}
.pickup_offer .splide__arrow--prev {
  transform: scale(-1, 1);
}
.pickup_offer .splide__arrows svg {
  display: block;
  width: 10px;
  height: 10px;
  fill: var(--tcd-accent-color);
}
.pickup_offer .splide__arrow:hover {
  background: var(--tcd-accent-color);
}
.pickup_offer .splide__arrow:hover svg {
  fill: #fff;
}
.pickup_offer .splide__pagination {
  display: none;
}


/* new offer */
.offer {
  width: calc(100% - 40px);
  max-width: 1100px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
}
@media screen and (max-width: 991px) {
  .offer {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .offer {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .offer {
    grid-template-columns: 1fr;
  }
}


/* card */
.offer__item__thumbnail {
  overflow: hidden;
}
.offer__item__options {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.offer__item__options__item {
  display: block;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--tcd-accent-color);
  border: 1px solid var(--tcd-accent-color);
  border-radius: 30px;
  transition: all .2s;
}
.offer__item__options__item--sub {
  color: #555;
  border-color: #555;
}
.offer__item__options__item:hover {
  background-color: var(--tcd-accent-color);
  color: #fff;
}
.offer__item__options__item--sub:hover {
  background-color: #555;
  color: #fff;
}
.offer__item__title {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  transition: all .3s;
}
.offer__item__description {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.offer__item__info {
  display: flex;
  align-items: center;
  margin-top: 10px;
  line-height: 1.5;
}
.offer__item__info + .offer__item__info {
  margin-top: 5px;
}
.offer__item__info dt {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 70px;
  font-size: 12px;
  font-weight: 600;
}
.offer__item__info dd {
  font-size: 14px;
}

/* hover */
.offer__item a:hover .offer__item__title {
  opacity: 0.6;
}


/* search */
.offer_search {
  margin-top: 80px;
  padding: 40px 0;
  background: var(--tcd-accent-color);
}
.offer_search__inner {
  display: flex;
  gap: 20px;
  width: calc(100% - 40px);
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .offer_search {
    margin-top: 40px;
  }
  .offer_search__inner {
    flex-wrap: wrap;
  }
}

.offer_search__input,
.offer_search .chosen-container {
  flex: 1;
}
.offer_search__input,
.offer_search select {
  padding: 0 10px;
  border: none;
  box-shadow: none;
  outline: none;
  appearance: none;
}
.offer_search .chosen-container-single .chosen-single {
  height: 50px;
  padding: 0 10px;
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: none;
  line-height: 50px;
}
.offer_search .chosen-container-single .chosen-single div {
  height: 18px;
  margin: auto;
  bottom: 0;
}
.offer_search .chosen-container-single .chosen-single div b {
  background-position: 0 0;
}
.offer_search .chosen-container-single .chosen-drop {
  border: none;
  border-top: 1px solid #ddd;
  border-radius: 0;
}
.offer_search .chosen-container .chosen-results li {
  padding: 10px;
}
.offer_search .chosen-container .chosen-results li.highlighted {
  background: var(--tcd-accent-color);
  color: #fff;
}
.offer_search__submit {
  width: 140px;
  background: #fff;
  border-radius: 30px;
  color: var(--tcd-accent-color);
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: all .2s;
}
@media screen and (max-width: 991px) {
  .offer_search__input,
  .offer_search .chosen-container {
    flex: none;
    width: calc((100% - 60px) / 4) !important;
  }
  .offer_search__submit {
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .offer_search__input,
  .offer_search .chosen-container {
    width: 100% !important;
  }
  .offer_search__input {
    height: 50px;
  }
  .offer_search select {
    width: 100%;
    height: 50px;
  }
  .offer_search__submit {
    width: 100%;
  }
}
