.orders-list-main .orders-list-wrapper {
    padding: 20px 40px 30px;
}

.orders-table {
    display: table;
    border: 1px solid #ececec;
    font-size: 14px;
    font-weight: 400;
    color: #202020;
    width: 100%;
    margin-bottom: 15px;
}

.orders-table .order-number {
    color: #dc2c32;
}

.orders-table .order-number:hover {
    text-decoration: underline;
    box-shadow: 1px 1px 6px #a4a4a4;
}

.orders-table .orders-table-head {
    display: table-header-group;
}

.orders-table .orders-table-body {
    display: table-row-group;
}

.orders-table .orders-table-row {
    display: table-row;
}

.orders-table .orders-table-body .orders-table-col {
    border-top: 1px solid #ececec;
}

.orders-table .orders-table-col {
    display: table-cell;
    padding: 30px 20px;
}

.orders-table .orders-table-col:last-child {
    padding-left: 0;
    text-wrap: nowrap;
    width: 125px;
}

.orders-table .orders-table-col .action-button {
    display: inline-block;
    margin-bottom: 5px;
}

.orders-table .orders-table-col .action-button:last-child {
    margin-bottom: 0;
}

.orders-table .orders-table-head .orders-table-col {
    padding: 10px 20px;
}

a:hover .svg.inline.svg-inline-transparent rect {
    fill: #ffffff;
}

a:hover .svg.inline.svg-inline-transparent svg {
    border: 1px solid #ececec;
    border-radius: 5px;
}

.order-error-wrapper {
    display: none;
    color: #d2334d;
    margin-bottom: 15px;
}

.orders-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.orders-filter .orders-filter-item {
    margin-right: 10px;
}

.orders-filter .orders-filter-item input {
    display: block;
    width: 100%;
    height: 41px;
    border: 1px solid #ececec;
    border-radius: 3px;
    box-shadow: none;
    padding: 0 11px;
    outline:none;
}

.orders-filter .orders-filter-item.filter-buttons {
    flex: 1 0 100%;
    margin-top: 10px;
}

.orders-filter-item.filter-buttons .btn-default.white:focus {
    background: #fff !important;
    color: #d2334d !important;
}

@media (max-width: 991px) {
    .orders-filter .orders-filter-item {
        flex: 1 0 50%;
    }
}

@media (max-width: 768px) {
    .orders-table {
        display: block;
    }

    .orders-table .orders-table-head {
        display: none;
    }

    .orders-table .orders-table-body {
        display: block;
    }

    .orders-table .orders-table-row {
        display: flex;
        flex-direction: column;
        border-top: 1px solid #ececec;
    }

    .orders-table .orders-table-row:first-child {
        border-top: none;
    }

    .orders-table .orders-table-col {
        display: table-cell;
        padding: 10px;
    }

    .orders-table .orders-table-body .orders-table-col {
        border-top: none;
    }

    .orders-table .orders-table-col:last-child {
        padding-left: 10px;
    }

    .orders-table .orders-table-body .orders-table-col::before {
        content: attr(data-label);
        display: inline-block;
        width: 50%;
        font-size: 14px;
        font-weight: 500;
        color: #999999;
    }

    .orders-table .orders-table-body .orders-table-col:last-child::before {
        display: none;
    }

    .orders-filter .orders-filter-item {
        flex: 1 0 100%;
        margin-bottom: 15px;
    }
}
