.docs-table {
    padding-top: 25px;
}

.docs-table-titles {
    font-family: "Open Sans", serif;
    display: flex;
    padding-bottom: 15px;
    justify-content: space-between;
    border-bottom: 1px solid #333333;
    gap: 20px;
}

.docs-table-row {
    display: flex;
    padding: 25px 0;
    justify-content: space-between;
    border-bottom: 1px solid #333333;
    align-items: center;
    gap: 20px;
}

.first-column {
    width: 32%;
}

.docs-table-column {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 16%;
}

.docs-table-row .first-column {
    font-size: 14px
}

.docs-table-row {
    font-size: 12px
}

.docs-table-column-span {
    display: none;
}

.docs-table-link {
    color: #008FDB;
    transition: .3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.docs-table-icon {
    fill: #008FDB;
    transition: .3s;
}

.docs-table-link:hover {
    color: #8CABD7;
}

.docs-table-link:hover .docs-table-icon {
    fill: #8CABD7;
}

@media screen and (max-width: 1000px) {
    .docs-table-titles {
        font-size: 14px;
    }

    .docs-table-row .first-column {
        font-size: 12px
    }

    .docs-table-row {
        font-size: 10px
    }
}

@media screen and (max-width: 650px) {
    .docs-table-titles {
        justify-content: flex-start;
    }

    .docs-table-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        row-gap: 8px;
        padding: 15px 0;
    }

    .docs-table-column-desc {
        display: none;
    }

    .first-column {
        width: 60%;
    }

    .docs-table-column {
        width: 20%;
        order: 3;
        color: #8B8F94;
    }

    .docs-table-column-img {
        opacity: .7;
        width: 12px;
        height: 12px;
    }

    .docs-table-row .first-column {
        order: 1;
    }

    .docs-table-titles .docs-table-column:last-child {
        width: 34%;
        color: #333333;
    }

    .docs-table-column-link {
        order: 2;
        width: 34%;
        color: #008FDB;
    }

    .docs-table-column-span {
        display: block;
    }

    .docs-table-icon {
        width: 16px;
        height: 16px;
    }
}

@media screen and (max-width: 450px) {
    .docs-table {
      padding-top: 0;
    }
    .docs-table-titles {
        column-gap: 15px;
    }

    .docs-table-row {
        column-gap: 15px;
    }

    .first-column {
        width: 58%;
    }

    .docs-table-column {
        width: 17%;
    }

    .docs-table-row .first-column {
        font-size: 14px
    }

    .docs-table-row {
        font-size: 10px
    }

    .docs-table-column-link {
        width: 32%;
    }

    .docs-table-link {
        font-size: 14px
    }

    .docs-table-titles .docs-table-column:last-child {
        width: 32%;
    }
}