
/* ===== PROFILE STYLES ===== */
.table-wrap{
    width: 100%;
}
table.myorders{
    font-size: 14px;
    width: 100%;
}
table.myorders thead td{
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #fff !important;
}
table.myorders td{
    padding: 8px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--color-border);
}
table.myorders td:first-child{
    background-color: #f3f6f7;
    border-radius: 4px 0 0 4px;
}
table.myorders ul li{margin-bottom: 8px;}
table.myorders ul li span{font-weight: 600;}
table.myorders ul{
    padding-left: 20px;
    box-sizing: border-box;
}
table.myorders .order ul{padding: 0;}
table.myorders .order ul li{
    list-style: none;
    font-size: 14px;
}

@media screen and (max-width: 767px){
    
    table.myorders tbody td:first-child{
        margin-top: 20px;
    }
    table.myorders tbody td:last-child{
        border: 1px solid var(--color-border);
    }
    table tr{
        display: flex;
        flex-direction: column;
    }
}
@media screen and (max-width: 480px){
    table ul li{
        font-size: 12px;
    }
}

.profile .input-wrap{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}
.profile .input-wrap:last-child{border: none;}
.profile .input-wrap label{font-weight: 600;}

.profile .do-save{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45px;
    padding: 12px;
    box-sizing: border-box;
    border-radius: 4px;
    background: var(--color-success);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .5px;
    border: none;
    outline: none;
    cursor: pointer;
}
.profile .do-save:hover{
    color: #fff !important;
    opacity: .85;
}
@media screen and (max-width: 767px){
    .profile .input-wrap{
        display: flex;
        flex-direction: column;
        align-items: start;
    }
    .profile .do-save{width: 100%;}
}

.leave{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.leave button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 220px;
    height: 45px;
    padding: 12px;
    box-sizing: border-box;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-error);
    letter-spacing: .5px;
    border: none;
    outline: none;
    cursor: pointer;
}
.leave button i{color: var(--color-error);}
.leave button:hover{
    opacity: .85;
}
.save-button{
    padding: 8px 15px;
    border-radius: 100px;
    border: 1px solid var(--color-main);
    color: var(--color-main);
    background: transparent;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    margin-top: 5px;
    margin-bottom: 10px;
}
.save-button:hover{
    color: #fff;
    background: var(--color-main);
}
.save-button.pay-button {
    font-size: .9rem;
    margin-left: 0px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
}
/* ===== END PROFILE STYLES ===== */