.requests-table {
    justify-content: center;
    flex-wrap: wrap;
}

.request_block {
    width: 200px;
    height: 300px;
    color: white;
    margin: 1em;
    clip-path: polygon(0 0, 75% 0%, 100% 15%, 100% 100%, 0 100%, 0% 50%);

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 1em;
}

.req_transporting_blocktype {
    background-image: url("../images/requests/backgrounds/trucking_background.jpg");
}
.req_materials_blocktype {
    background-image: url("../images/requests/backgrounds/raw_materials_background.jpg");
}

.request_block>h4 {
    text-align: center;
    color: #ffa500;
}
.request_block p {
    text-align: left;
    text-indent: 0;
    text-shadow: -1px 2px 15px rgba(0, 0, 0, 1);
}

.request_block_closed {
    color: #b8b8b8;
}
.request_block_closed>h4 {
    color: #b8b8b8;
}

.request-data-group {
    text-align: center;
    color: black;
    text-transform: uppercase;
}

.split-line {
    display: block;
    margin: 0 auto;
    padding: 0;
    width: 80%;
}

@media all and (max-width: 900px) {
    .requests-table {
        flex-direction: column;
    }

    .request_block {
        margin: 1em auto;
        width: 300px;
        height: 400px;
    }
}
