.container {
    text-align: center;
}

#tab {
    padding: 10px;
}

.list-group {
    flex-wrap: nowrap;
    flex-direction: row;
    text-align: center;
}

.list-group-item {
    border: none;
    padding: .75rem 0.3rem;
    font-weight: 600;
}

.list-group-item.active {
    color: #438d5a;
    background-color: unset;
    border: unset;
    font-weight: 600;
}

.tab-content {
    border-radius: 12px;
    box-shadow: 0px 0px 8px 1px rgb(0 0 0 / 10%);
    background-color: #fff;
    padding: 0.75rem;
    margin: 0.5rem 0rem 2rem 0rem;
    color: #4A4A4D;
}

.dir {
    color: #f9e082;
    font-size: 2.5rem;
    text-shadow: 1px 1px 1px #c7c7c7;
}

.file {
    color: #6c757d94;
    font-size: 2.5rem;
    text-shadow: 1px 1px 1px #e9ecef;
}

.remove {
    position: absolute;
    top: 0.3rem;
    right: 0.3rem;
    color: gray;
    z-index: 10;
    font-size: 1.2rem;
}

.remove:hover {
    color: red;
}

.card {
    box-shadow: 0px 0px 5px 0px rgb(45 42 40 / 10%);
    border-bottom: 0.4rem solid #f9cf288f;
}

.card-body {
    padding: 0.5rem;
}

.card-body img {
    width: 1.5rem;
}

.card-footer {
    padding: 0px 8px;
    color: gray;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5rem;
}

.dir_name {
    height: 35px;
}

.dir_item:hover,
.file_item:hover {
    transform: translate(-2px, -3px);
    transition: all 0.2s ease-in;
    color: gray;
}

@media (max-width:991.98px) {
    #provision_title {
        font-size: 1rem;
        margin: 35px auto 10px;
    }

    #provision_title:before {
        margin-top: -0.4rem;
    }

    .list-group {
        font-size: 1.5vw;
        display: flex;
        padding-right: 0;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .list-group-item {
        border: 1px solid rgba(0, 0, 0, .125);
    }

    .list-group-item.active {
        border: 1px solid rgba(0, 0, 0, .125);
        box-shadow: 0 0 2px 1px #d3d5d7;
    }

    .remove {
        color: red;
        font-size: 1rem;
    }

    .dir {
        font-size: 2rem;
    }

    .file {
        font-size: 2rem;
    }

    .card-footer {
        font-size: 1.5vw;
    }

    a.file_item.col {
        padding: 0.2rem;
    }
}