.page-loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all .4s .2s ease-in-out;
    transition: all .4s .2s ease-in-out;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
}

[data-bs-theme="dark"] .page-loading {
    background-color: #0b0f19;
}

.page-loading.active {
    opacity: 1;
    visibility: visible;
}

.page-loading-inner {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
    opacity: 0;
}

.page-loading.active>.page-loading-inner {
    opacity: 1;
}

.page-loading-inner>span {
    display: block;
    font-size: 1rem;
    font-weight: normal;
    color: #9397ad;
}

[data-bs-theme="dark"] .page-loading-inner>span {
    color: #fff;
    opacity: .6;
}

.page-spinner {
    display: inline-block;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: .75rem;
    vertical-align: text-bottom;
    border: .15em solid #b4b7c9;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner .75s linear infinite;
    animation: spinner .75s linear infinite;
}

[data-bs-theme="dark"] .page-spinner {
    border-color: rgba(255, 255, 255, .4);
    border-right-color: transparent;
}

.bg-news {
    background: -webkit-linear-gradient(70deg, #7E60BF 45%, #433878 40%);
    background: -o-linear-gradient(70deg, #7E60BF 45%, #433878 40%);
    background: -moz-linear-gradient(70deg, #7E60BF 45%, #433878 40%);
    background: linear-gradient(70deg, #7E60BF 45%, #433878 40%);
}

.bg-light-cstm {
    background-color: #ffffff2f;
}

.bg-glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.8));
    /* backdrop-filter: blur(10px); */
    /* -webkit-backdrop-filter: blur(10px); */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.shadow-img {
    box-shadow: 0 4px 5px rgba(255, 255, 255, 0.7);
    transition: box-shadow 0.3s;
}

.shadow-img:hover {
    box-shadow: 0 6px 10px rgba(255, 255, 255, 1);
}

.custom-transparent-bg {
    background-color: rgba(255, 255, 255, 0.5);
}

#whatsapp-icon {
    right: -100px;
    bottom: 5rem;
    position: fixed;
    opacity: 0;
    transition: right 0.5s ease, opacity 0.5s ease, box-shadow 0.5s ease;
    pointer-events: none;
}

#whatsapp-icon.show {
    right: 1rem;
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}

#close-icon {
    position: absolute;
    top: -20px;
    right: -10px;
    cursor: pointer;
    font-size: 20px;
    color: #fff;
    display: none;
}

/* Tambahkan transisi ke item */
.transition-item {
    display: none;
    /* opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease; */
}

.transition-item.show {
    display: block;
    /* opacity: 1;
    max-height: 500px; */
    /* Sesuaikan tinggi maksimum sesuai kebutuhan */
}

.product-info {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.fw-bold {
    font-weight: bold;
}

.radio-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 10px;
    text-align: center;
}

.radio-image img {
    display: flex;
    max-width: 100%;
    height: auto;
    filter: brightness(50%);
}

input[type="radio"]:checked+.radio-image,
input[type="radio"]:checked+.radio-image span,
input[type="radio"]:checked+.radio-image h5 {
    /* border-color: var(--bs-danger);
    border-radius: 15px;
    background-color: var(--bs-secondary); */
    color: var(--bs-danger);
    transition: 0.5s ease;
}

input[type="radio"]:checked+.radio-image img {
    filter: brightness(100%);
    transition: 0.5s ease;
}

.custom-input {
    display: none;
}

.form-control.form-control-sm.custom-input {
    display: none;
}

.hidden {
    display: none;
}

.show {
    display: block;
}

.hide {
    display: none;
}

.radio-buttons {
    width: 100%;
    /* margin: 0 auto; */
    text-align: center;
}

.custom-radio input {
    display: none;
}

.radio-btn {
    margin: 0 10.4px 10.4px 0;
    width: 26rem;
    height: 6rem;
    border: 3px solid transparent;
    display: inline-block;
    border-radius: 10px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 20px #c3c3c367;
    cursor: pointer;
    background-color: #fff;
}

.radio-btn>i {
    color: #ffffff;
    background-color: #8373e6;
    font-size: 20px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) scale(4);
    border-radius: 50px;
    padding: 3px;
    transition: 0.2s;
    pointer-events: none;
    opacity: 0;
}

.radio-btn .hobbies-icon {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-btn .hobbies-icon i {
    color: #8373e6;
    line-height: 80px;
    font-size: 60px;
}

.radio-btn .hobbies-icon h3 {
    color: #8373e6;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.custom-radio input:checked+.radio-btn {
    border: 3px solid #8373e6;
}

.custom-radio input:checked+.radio-btn>i {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.productItem {
    margin-top: 1.25em;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
}

.productItem>label {
    position: relative;
    display: block;
    background-color: #fff;
    box-shadow: 0 0 20px #c3c3c367;
    /* border: 1px solid #bbb; */
    border-radius: 0.5em;
    padding: 1em;
    cursor: pointer;
    transition: all 250ms ease-in-out;
}

.productItem>input {
    display: none;
}

.productItem>label h6 {
    margin-bottom: 2px;
}

.productItem>label span {
    font-size: 14px;
    color: #9397ad;
}

.productItem>label::before {
    content: "";
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #6366f1;
    transform: scale(0);
    opacity: 0;
    transition: all 250ms ease-in-out;
}

.productItem>label::after {
    content: "";
    position: absolute;
    top: calc(0.5em + 5px);
    right: calc(0.5em + 5px);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    transform: scale(0);
    opacity: 0;
    transition: all 250ms ease-in-out;
}

.productItem input:checked+label {
    background-color: #eff2fc;
    border: 1px solid #6366f1;
}

.productItem input:checked+label::before,
.productItem input:checked+label::after {
    transform: scale(1);
    opacity: 1;
}

.bgimg-custom {
    position: relative;
    /* background-image: url('../img/illustrations/6077807.svg'); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    /* height: 210vh; */
}

@media (max-width: 480px) {
    .productItem {
        grid-template-columns: repeat(2, 1fr);
    }
}

@-webkit-keyframes spinner {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}