p, div {
    color: var(--font-color);
}

.orders-main {
    width: 100vw;
    display: flex;
    justify-content: center;
    margin-top: 65px;
}

.orders-main .orders-main-div {
    flex: 1;
    max-width: 950px;
    margin: 35px 15px 0 15px;
}

.orders-main-div .orders-heading {
    font-weight: bold;
    font-size: 28px;
}

.orders-main-div .orders-products-all {
    height: 100px;
    margin-top: 25px;
}

.orders-products-all .orders-product {
    margin-bottom: 30px;
}

.orders-product .orders-product-head {
    background-color: #f0f2f2;
    display: flex;
    justify-content: space-between;
    padding: 25px;
    border: 1px solid #d5d9d9;
    border-bottom: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.orders-product-head .total-and-date {
    display: flex;
    margin-right: 50px;
}

.orders-product-head .date {
    margin-right: 50px;
}

.orders-product-head .head-heading {
    color: #212b5e;
    font-weight: 500;
    font-size: 18px;
    white-space: nowrap;
}

.orders-product-head .head-value{
    color: #212b5e;
    font-size: 18px;
}

.orders-product-head .date .head-value {
    white-space: nowrap;
}

.orders-product .orders-products-data-all {
    border: 1px solid #d5d9d9;
    padding: 45px 25px 40px 30px;
    border-bottom: none;
    border-top: none;
}

.orders-product .orders-products-data-all:last-child {
    border-bottom: 1px solid #d5d9d9;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.orders-products-data-all .orders-product-data {
    display: flex;
    justify-content: space-between;
}

.orders-product-data .orders-product-details {
    display: flex;
    align-items: center;
}

.orders-product-details img {
    width: 110px;
    height: 110px;
    margin-right: 50px;
}

.orders-product-details-data .orders-product-details-name {
    color: var(--font-color);
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

.orders-product-details-data .orders-product-details-other-info {
    color: var(--font-color);
    font-size: 18px;
    margin-bottom: 3px;
}

.orders-product-details-data .buy-again-button img {
    width: 25px;
    height: 25px;
    margin-right: 16px;
}

.orders-product-details-data .buy-again-button {
    background-color: #ffd814;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    color: var(--font-color);
    display: flex;
    align-items: center;
    padding: 6px 10px;
    margin-top: 8px;
}   

.orders-product-details-data .buy-again-button:hover {
    background-color: #f5cb00;
}

.orders-product-data .track-order {
    background-color: white;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    width: 240px;
    height: 40px;
    font-size: 16px;
    color: var(--font-color);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.orders-product-data .track-order:hover {
    background-color: #f6fbf9;
}