input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.fs-10 {
    font-size: 10px;
    line-height: calc(1.2 - 10px);
}

/* Box luar fasilitas */
.fasilitas-box {
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    background-color: #fff;
    font-weight: 500;
}

.fasilitas-box input {
    display: none;
}

/* Hover efek */
.fasilitas-box:hover {
    border-color: #6c63ff !important;
    background-color: #604ae31a;
    color: #6c63ff;

}

/* Icon size dan transition */
.fasilitas-box .icon-fasilitas {
    font-size: 1.5rem;
    transition: 0.3s ease;
    color: #888;
}

.fasilitas-box input:checked+.icon-fasilitas {
    color: #6c63ff;
    transform: scale(1.2);

}

.fasilitas-box input:checked~* {
    color: #6c63ff;
    font-weight: 600;
    font-size: 15px;

}

.fasilitas-box input:hover~iconify-icon {
    color: #6c63ff;
}

.fasilitas-box input:checked~iconify-icon {
    color: #6c63ff;
}

.fasilitas-box input:checked {
    border-color: #6c63ff !important;
    background-color: rgba(96, 74, 227, 0.1);
    color: #6c63ff;
}

.fasilitas-box:has(input:checked) {
    border-color: #7c3aed;
    background-color: rgba(96, 74, 227, 0.1);
    color: #7c3aed;
    font-weight: 600;
}

.thumb-gallery {
    width: 100px;
    height: 50px;
    object-fit: cover;
}

.addon-price {
    transition: all 0.5s ease;
    opacity: 0;
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.addon-price.show {
    opacity: 1;
    height: auto;
}

.w150px {
    width: 150px !important;
}

/* swiper */
.swiper.swiper-thumb-property {
    overflow: unset;
}

.swiper.swiper-thumb-property .swiper-slide {
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.3s ease;
    border-radius: 12px;
    border: 2px solid transparent;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
}

.swiper-slide.swiper-slide-visible.swiper-slide-fully-visible.swiper-slide-active.swiper-slide-thumb-active, .swiper-slide.swiper-slide-visible.swiper-slide-fully-visible.swiper-slide-thumb-active {
    opacity: 1;
    transform: scale(1);
    border: 2px solid #6c63ff;
    border-radius: 12px;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.choices__inner {
    background-color: #ffffff;
    /* abu Bootstrap */
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    min-height: 39px;
    padding: 6px 12px;
    font-size: 14px;
    color: #495057;
}

.choices__list--single {
    padding: 0 12px;
}

.choices[data-type*="select-one"]::after {
    border-color: #6c757d transparent transparent transparent;
    top: 50%;
    right: 12px;
}

.choices__item--selectable {
    padding-right: 16px;
}

.choices__list--dropdown {
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
}

.choices__list--dropdown .choices__item--selectable:hover {
    background-color: #e9ecef;
}

.link-hover .card {
    transition: transform 0.3s ease;
}

.link-hover:hover .card {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

a.icon-hover i {
    transition: transform 0.3s ease;
}
a.icon-hover:hover i {
   transform: translateX(5px);
   -webkit-transform: translateX(5px);
   -moz-transform: translateX(5px);
   -ms-transform: translateX(5px);
   -o-transform: translateX(5px);
}

.snow-editor {
    height: 240px !important;
}

.mt--5 {
    margin-top: -5px !important;
}

.img-preview {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.mw-400 {
    max-width: 400px !important;
}
.mw-300 {
    max-width: 300px !important;
}

.min-w-100 {
    min-width: 100px !important;
}

.filter-container{
    position: absolute;
    min-height: 135px;
    left: 250px;
    top: 50px;
    z-index: 1;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.bounce {
  animation: bounce 1s infinite;
}



