.orderDetailsWrapper {
    width: 100%;
    display: flex;
    padding-top: 16px;
    gap: 24px;

    > div {
        width: 50%;
    }

    .title {
        color: #595959;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .value {
        color: #212121;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.16px;
    }
}

@media screen and (max-width: 600px) {
    .orderDetailsWrapper {
        flex-direction: column;
        gap: 12px;

        > div {
            width: 100%;
        }
    }
}
