.fs-row{
    display:flex;
    flex-wrap:wrap;
    width: 100%;
    justify-content: space-between;
    padding-bottom: 15px;
}

.fs-half{
    width: 49%;
    display: inline-flex;
}

.fs-full{
    width:100%;
    display: inline-flex;

}

.fs-row select{
    width: 100%;
    padding: 10px 5px;
    border-radius: 5px;
    border-color: #d1c6c6;
    font-size: 14px;
}

.fs-whatsapp-button {
    width: 100%;
    display: inline-block;
    background-color: #25D366; /* Warna hijau WhatsApp */
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.fs-whatsapp-button:hover {
    background-color: #1EBE5D;
    transform: scale(1.05);
}

.fs-whatsapp-button:active {
    background-color: #128C7E;
    transform: scale(0.98);
}

.fs-nav li{
    background-color: #FF8383;
    border-radius: 15px;
    color: #fff;
    padding:5px 20px;
    margin-right: 10px;
} 

.fs-nav{
    padding:0;
    margin: 0;
    display:flex;
    margin-bottom: 20px;
}

.fs-nav li i{
    padding-right: 5px;
}

.fs-box-shadow{
    box-shadow: 5px 7px 45px -3px #00000017;
    border-radius: 25px;
    padding:20px;
    margin-bottom: 20px;

}


.fs-table{
    width: 100%;
    border-collapse: collapse; /* Menghindari border ganda */
}

.fs-table thead tr{
    background: #FF8383;
    color:#fff;

}

.fs-table th, .fs-table td {
    border: 1px solid black; /* Border 1px */
    padding: 8px; /* Padding untuk memberi ruang */
    text-align: left; /* Teks rata kiri (bisa disesuaikan) */
}

.single-product .panel-title a::after {
    content: "\f543";
    font-family: 'dashicons';
    float: right;
    background: red;
    color: #fff;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 60%;
    text-align: center;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.single-product .panel-title .show::after {
    content: "\f460";
    transform: rotate(180deg); /* Efek rotasi */
    color: #A6A6A6;
    background: #E7E7E7;
}

.fs-accordion-title a{
    color:#E30613;
}




.fs-box-shadow .panel-body {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.fs-box-shadow .show .panel-body {
    visibility: visible;
    opacity: 1;
    padding-top: 20px;

    max-height: initial; /* Sesuaikan dengan tinggi maksimal kontennya */
}
