.main-content {
    padding: 40px 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.deliver-address {
    background-color: white;
    padding: 20px 50px;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.add-content {
    display: flex;
    gap: 10px;
}

.name-add {
    flex: 2;
    line-height: 1.5;
}

.detail-add {
    flex: 6;
    line-height: 1.5;
    align-items: center;
}

.change-add {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
}

.change-add button{
    background-color: #be1414;
    border: none;
    padding: 8px 10px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
}

.change-add button:hover{
    background-color: #890f0f;
}

.ordered-menu {
    background-color: white;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    padding: 20px 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-menu-header {
    display: flex;
}

.h-menu {
    flex: 2;
}

.h-price {
    flex: 1;
    text-align: center;
}

.h-sum {
    flex: 1;
    text-align: center;
}

.h-subtotal {
    flex: 0.5;
    text-align: end;
}

.order-menu-content {
    display: flex;
    align-items: center;
}

.m-menu {
    flex: 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

.m-price {
    flex: 1;
    text-align: center;
}

.m-sum {
    flex: 1;
    text-align: center;
}

.m-subtotal {
    flex: 0.5;
    text-align: end;
}

.payment-method {
    display: flex;
    flex-direction: column;
    background-color: white;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    padding: 40px 50px;
    display: flex;
    gap: 50px;
}

.payment-choose {
    display: flex;
}

.cod {
    display: flex;
    gap: 10px;
}

.virtual-account {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bank {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
    gap: 40px;
}

.mandiri {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bri {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bsi {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.py-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.order {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    border-top: 1px solid #cfcfcf;
    padding: 20px 0px;
}

.order div {
    display: flex;
    gap: 20px;
    align-items: center;
}

.order a {
    padding: 15px 18px;
    background-color: #be1414;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
}

.order a:hover {
    background-color: #890f0f;
}

.min-display{
    display: none;
}

.address-form-container{
    z-index: 1;
    position: fixed;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.address-form{
    display: none;
}

.close-form{
    background-color: white; 
    border: #cfcfcf;
    padding: 5px 5px;
}

.close-form:hover{
    background-color: #f2f2f2;
    border-radius: 5px;
}

@media(max-width:1100px) {
    .bank {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:900px) {
    .payment-choose {
        gap: 20px;
        display: flex;
        flex-direction: column;
    }

}

@media(max-width:750px) {
    .bank {
        grid-template-columns: repeat(1, 1fr);
    }
    
    #hide{
        display: none;
    }

    .min-display{
        display: block;
    }

    .add-content{
        flex-direction: column;
    }

    .order div{
        flex-direction: column;
    }
}