@keyframes bounceDown {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateX(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-4px);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(6px);
  }
  57% {
    transform: scale(1, 1) translateY(-2px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes bounce2 {
  0% {
    transform: scale(1, 1) translateX(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateX(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateX(-4px);
  }
  50% {
    transform: scale(1.05, 0.95) translateX(2px);
  }
  57% {
    transform: scale(1, 1) translateX(-2px);
  }
  64% {
    transform: scale(1, 1) translateX(0);
  }
  100% {
    transform: scale(1, 1) translateX(0);
  }
}
/* Fonts */
.package-bundling {
  background: #F1F5F9;
}
.package-bundling__title {
  text-align: center;
  margin: 0 0 8px;
}
.package-bundling__desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 8px;
}
.package-bundling__packages {
  padding-top: 24px;
}
.package-bundling__packages .package {
  border: 1px solid #D0D6DD;
  border-radius: 8px;
  margin-bottom: 16px;
}
.package-bundling__packages .package:last-child {
  margin-bottom: 0;
}
.package-bundling__packages .package__head {
  padding: 16px;
  background: #F2F4F7;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid #D0D6DD;
  position: relative;
  overflow: hidden;
}
.package-bundling__packages .package__head .bg-selected {
  z-index: 1;
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #F7F4FF;
}
.package-bundling__packages .package__head .head-top {
  z-index: 2;
  position: relative;
  display: flex;
  gap: 16px;
  margin: 0 0 8px;
}
.package-bundling__packages .package__head .head-top .checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
}
.package-bundling__packages .package__head .head-top .checkbox span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  border: 1px solid #D0D2D5;
  border-radius: 4px;
  background: #FFF;
}
.package-bundling__packages .package__head .head-top .icon img {
  display: block;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.package-bundling__packages .package__head .head-top .title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}
.package-bundling__packages .package__head .head-top .title small {
  display: none;
}
.package-bundling__packages .package__head .head-desc {
  z-index: 2;
  position: relative;
  margin: 0 0 24px;
}
.package-bundling__packages .package__head .head-desc p {
  margin: 0 0 16px;
}
.package-bundling__packages .package__head .head-desc p:last-child {
  margin: 0;
}
.package-bundling__packages .package__head .head-price {
  z-index: 2;
  position: relative;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}
.package-bundling__packages .package__head .head-price span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #626B79;
}
.package-bundling__packages .package__body .acc__title {
  position: relative;
  padding: 16px 56px 16px 16px;
  border-bottom: 0;
  color: #4B61DD;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease-in;
}
.package-bundling__packages .package__body .acc__title::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(ic-chevron.webp);
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 16px;
  right: 16px;
  transition: all 0.2s ease-in;
}
.package-bundling__packages .package__body .acc__detail {
  padding: 0 16px;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
}
.package-bundling__packages .package__body .acc__detail .custom-list {
  margin: 0;
  padding: 0;
}
.package-bundling__packages .package__body .acc__detail .custom-list li {
  position: relative;
  padding: 4px 0 4px 32px;
}
.package-bundling__packages .package__body .acc__detail .custom-list li::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(ic-check.webp);
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 4px;
  left: 0;
}
.package-bundling__packages .package.selected {
  border-color: #4B61DC;
}
.package-bundling__packages .package.selected .bg-selected {
  display: block;
}
.package-bundling__packages .package.selected .package__head {
  background-color: #F7F4FF;
  border-bottom-color: #4B61DC;
}
.package-bundling__packages .package.selected .package__head .head-top .checkbox span {
  background: #4B61DC;
  border-color: #4B61DC;
}
.package-bundling__packages .package.open .package__body .acc__title {
  border-bottom: 1px solid #D0D6DD;
}
.package-bundling__packages .package.open .package__body .acc__title::after {
  transform: rotate(180deg);
}
.package-bundling__packages .package.open .package__body .acc__detail {
  padding: 16px 16px 24px;
  max-height: -moz-max-content;
  max-height: max-content;
  opacity: 1;
  visibility: visible;
}
.package-bundling__packages .package.open.selected .package__body .acc__title {
  border-bottom: 1px solid #4B61DC;
}
.package-bundling__packages .box {
  padding: 20px 16px;
  border-radius: 16px;
  background: #FFF;
  border: 1px solid #D0D6DD;
  margin-bottom: 24px;
}
.package-bundling__packages .box:last-child {
  margin-bottom: 0;
}
.package-bundling__packages .box__title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  margin: 0 0 16px;
}
.package-bundling__sidebar {
  padding-top: 24px;
}
.package-bundling__sidebar .sidebar {
  padding: 24px 16px;
  background: #FFF;
  border-radius: 16px;
  border: 1px solid #D0D6DD;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.package-bundling__sidebar .sidebar__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin: 0 0 24px;
}
.package-bundling__sidebar .sidebar__packages .item {
  display: none;
  position: relative;
  border: 1px solid #D0D6DD;
  padding: 16px;
  border-radius: 8px;
  margin: 0 0 16px;
}
.package-bundling__sidebar .sidebar__packages .item span.remove {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(ic-close.webp);
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 16px;
  right: 16px;
}
.package-bundling__sidebar .sidebar__packages .item__top {
  display: flex;
  padding-right: 0;
}
.package-bundling__sidebar .sidebar__packages .item__top .icon {
  width: 24px;
  min-width: 24px;
  flex: 0 0 24px;
}
.package-bundling__sidebar .sidebar__packages .item__top .icon img {
  display: block;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.package-bundling__sidebar .sidebar__packages .item__top .title {
  font-weight: 600;
  padding-left: 10px;
}
.package-bundling__sidebar .sidebar__packages .item__top .title small {
  display: block;
  font-size: 10px;
  line-height: 12px;
  color: #626B79;
}
.package-bundling__sidebar .sidebar__packages .item__top .price {
  font-weight: 600;
  padding-top: 0;
  margin-left: auto;
  text-align: right;
}
.package-bundling__sidebar .sidebar__packages .item__top .price .disc {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.package-bundling__sidebar .sidebar__packages .item__top .price .disc b {
  display: inline-block;
  background: #EF4444;
  color: #FFF;
  border-radius: 10px;
  font-weight: 400;
  padding: 0 10px;
  margin-right: 4px;
}
.package-bundling__sidebar .sidebar__packages .item__top .price .disc span {
  display: inline-block;
  text-decoration: line-through;
}
.package-bundling__sidebar .sidebar__packages .item__desc {
  padding-top: 16px;
}
.package-bundling__sidebar .sidebar__packages .item.selected {
  display: block;
}
.package-bundling__sidebar .sidebar__result {
  padding: 16px;
  background: #F2F4F7;
  border: 1px solid #D0D6DD;
  border-radius: 8px;
}
.package-bundling__sidebar .sidebar__result .price-bd {
  font-size: 20px;
  line-height: 28px;
  margin: 0 0 8px;
  text-decoration: line-through;
}
.package-bundling__sidebar .sidebar__result .price-pkg-bd {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 8px;
  text-decoration: line-through;
}
.package-bundling__sidebar .sidebar__result .price-result {
  font-size: 32px;
  line-height: 48px;
  font-weight: 600;
  margin-bottom: 0;
}
.package-bundling__sidebar .sidebar__result .pkg-desc {
  margin: 0 0 24px;
}
.package-bundling__sidebar .sidebar__result .price-pkg {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}
.package-bundling__sidebar .sidebar__action {
  text-align: right;
  padding-top: 24px;
}
.package-bundling__wrap {
  padding-top: 32px;
  padding-bottom: 32px;
}
@media (min-width: 1200px) {
  .package-bundling__packages {
    display: block;
    width: 100%;
    max-width: calc(100% - 476px);
    flex: 0 0 calc(100% - 476px);
  }
  .package-bundling__packages .box {
    padding: 40px 32px;
  }
  .package-bundling__packages .package {
    display: block;
    max-width: calc(50% - 8px);
    flex: 0 0 calc(50% - 8px);
    margin: 0 !important;
  }
  .package-bundling__packages .package__head {
    min-height: 305px;
    display: flex;
    flex-direction: column;
  }
  .package-bundling__packages .package__head .head-price {
    margin-top: auto;
  }
  .package-bundling__packages .packages__wraper {
    display: flex;
    gap: 16px;
  }
  .package-bundling__sidebar {
    display: block;
    width: 100%;
    max-width: 436px;
    flex: 0 0 436px;
  }
  .package-bundling__sidebar .sidebar {
    padding: 40px 24px;
  }
  .package-bundling__row {
    display: flex;
    gap: 40px;
  }
  .package-bundling__wrap {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}/*# sourceMappingURL=package-bundling.css.map */