.main_my_orders_section{
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--background-color);
    width: 100%;
    height: calc(100vh - 200px);
}
.my_orders_top_section{
    position: relative;
    background-color: var(--pink-color);
    flex: 40;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 270px;
}
.my_orders_top_section_text{
    font-size: 60px;
    text-align: center;
    font-weight: 900;
    font-family: var(--font-main);
    color: var(--background-color);
}
.my_orders_top_section img{
    position: absolute;
    bottom: -20px;
    left: 100px;
}
.my_orders_main_section{
    background-color: var(--background-color);
    flex: 70;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.left_my_orders_section{
    flex: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.right_my_orders_section{
    flex: 20;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}
.right_my_orders_section label{
    background-color: var(--background-color);
    font-size: 16px;
    text-align: right;
    font-weight: bold;
    font-family: var(--font-main);
    margin-right: 30px;
}
.right_my_orders_section label.active {
    color: var(--pink-color);
}
.my_orders_hot_deals_section{
    width: 100%;
    height: 100%;
}
.my_orders_hot_deals_section h1, .my_orders_active_orders_section h1, .my_orders_history_orders_section h1, .my_orders_settings_section h1, .my_orders_support_section h1{
    font-size: 30px;
    text-align: right;
    font-weight: bold;
    font-family: var(--font-main);
    margin-top: 50px;
}
.my_orders_active_orders_section{
    width: 100%;
    height: 100%;
}
.my_orders_history_orders_section{
    width: 100%;
    height: 100%;
}
.my_orders_settings_section{
    width: 100%;
    height: 100%;
}
.my_orders_support_section{
    width: 100%;
    height: 100%;
}
.my_orders_hot_items_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: auto;
}
.my_orders_hot_item {
    flex: 1 1 calc(33.333% - 20px);
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    box-sizing: border-box;
}
.my_orders_my_items_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}
.my_orders_my_item {
    position: relative;
    flex-direction: row-reverse;
    display: flex;
    text-align: center;
    border-radius: 12px;
    box-sizing: border-box;
    border: 0.5px solid var(--dark-gray-color);
    width: 80%;
    height: 220px;
    margin-bottom: 40px;
}
.my_orders_my_item_image {
    height: 100%;
    background-color: blue;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
}
.my_orders_my_item_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.my_orders_my_item_data {
    flex-direction: column;
    align-items: flex-end;
    display: flex;
    justify-content: flex-start;
    flex: 50;
    height: 100%;
}
.my_orders_my_item_data_text {
    margin-right: 20px;
    font-family: var(--font-main);
    font-size: 16px;
}
.my_orders_my_item_action {
    height: 100%;
    min-width: 200px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    display: flex;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}
.my_orders_my_item_action_buy_again {
    min-width: 160px;
    background: var(--pink-color);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    margin-left: 20px;
    max-width: 60%;
    height: 50px;
    font-weight: bold;
    font-family: var(--font-main);
}
.my_orders_my_item_status {
    position: absolute;
    top: -20px;
    right: -20px;
}