section#pembayaran .container {
    margin-top: 0 !important; 
    padding-top: 0 !important;
}
.payment {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.payment-category {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}
.payment-content {
    display: flex;
    flex-direction: column;
}
.category-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    border-radius: 10px 0 0;
    color: white;
    background-color: #45474b;
    font-weight: 450;
}
.category-header .d-flex {
    width: 50%;
}
.category-header .d-flex img {
    height: 15px;
    margin-left: 10%;
}
.bottom-logo{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    background-color: white;
    border-top: 1px solid #e0e0e0;
    padding: 15px;
    img{
        height: 15px;
    }
}
.category-content {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25em;
    display: none;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0px 15px 10px 15px;
    background-color: #45474b;
}
.payment-method {
    background-color: white;
    width: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(69, 71, 75, 0.5);
    border-radius: 10px;
    box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    div{
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    img {
        height:25px;
        margin-bottom: 10px;
    }
    span {
        font-size: 70%;
        font-weight: 400;
    }
}
.fee{
    border-bottom: 1px solid #e0e0e0;
}
.payment-method:hover, .payment-method.selected {
    border: 4px solid #707feb;
    box-shadow: 2px 2px 10px #707feb;
}
.fa-chevron-down {
    transition: transform 0.3s;
}
.payment-category .category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.payment-category.active .fa-chevron-down {
    transform: rotate(180deg);
}
.payment-category.active .category-content {
    max-height: 1000px;
}
.submit{
    background-color: #8b8f97;
    border-radius: 10px;
    color: white;
    height: 35px;
    font-weight: 600;
    font-size: 90%;
}
.form-check-label a{
    color: #006400;
    font-weight: 500;
}