.profile_container {
    background-color: #f1f1f1;
    padding: 50px 15px;
    min-height: 600px;
    position: relative;
}

.my_box_container {
    width: 100%;
}

.my_box {
    width: 100%;
    background-color: white;
    border-radius: 15px;
    box-shadow: 3px 3px 5px #888888;
    overflow: hidden;
    padding: 35px;
    min-height: 475px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    display: flex;
    transition: 0.5s;
}

.my_box.my_out * {
    opacity: 0;
}

.my-win {
    display: flex;
}

.my_nav {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

.my_nav a {
    background-color: #e0e0e0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 130px;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    text-decoration: none !important;
    color: #414042;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.5s;
}

.my_nav a:not(.open) {
    border-bottom: 2px solid #f1f1f1;
}

.my_nav a.open {
    background-color: white;
    box-shadow: 2px 2px 3px #888;
}

.form_history {
    flex-direction: column;
}

.form_history .order {
    width: 100%;
    background-color: #f5f5f5;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 15px;
    box-shadow: 2px 2px 3px #888;
}

.form_history .order div {
    margin-top: 10px;
}

.form_history .order label {
    display: block;
}

.harga span {
    color: var(--bs-red);
}

.harga.PAID span {
    color: var(--bs-teal);
}

.my_round_btn {
    position: absolute;
    right: 10px;
    top: 10px;
}

.my_nav svg {
    display: none;
}

.my_nav.showless svg {
    display: inline-block;
}

.my_nav.showless a span {
    display: none;
}

.my_nav.showless a {
    width: 45px;
}

.not_match {
    border: 2px solid red !important;
}

.change_password {
    background-color: var(--color-secondary);
    color: white;
}

.midcenter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 475px;
    font-size: 24px;
    font-weight: bold;
}

.bundles {
    background-color: #f1f1f1;
    border-radius: 15px;
    padding: 15px;
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter_history {
    display: flex;
    padding: 15px;
    align-items: center;
}

.filter_history input {
    min-width: 180px;
    margin: 0px 25px;
}

.filter_history label {
    min-width: 45px;
}

@media screen and (max-width: 911px) {
    .my_box {
        padding: 10px;
    }
    .bundles {
        flex-direction: column;
        justify-content: flex-start;
        align-items: start;
    }
    .form_group input, .form_group textarea, .form_group select {
        font-size: 12px;
        padding: 10px;
    }
}