#file-explorer #folder-structure {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}

#file-explorer .content {
    display: none;
    padding-left: 20px;
}

#file-explorer .folder {
    cursor: pointer;
    font-weight: bold;
    margin: 5px 0;
}

#file-explorer .file {
    margin-left: 20px;
    transition: all .3s ease-in-out;
}

#file-explorer .file a:hover {
    color: #000;
    transition: all .3s ease-in-out;
}

#file-explorer .folder:hover,
#file-explorer .file:hover {
    color: #5b1d98;
    transition: all .3s ease-in-out;
    transform: scale(1.08);
}

#file-explorer .folder,
#file-explorer .file {
    width: 100%;
    max-width: 250px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    transition: all .3s ease-in-out;
}

#file-explorer .folder .folder-icon,
#file-explorer .file .file-icon {
    width: 70px;
}

#file-explorer .folder .folder-name,
#file-explorer .file .file-name {
    width: 100%;
    display: block;
    word-wrap: break-word;
}

#goa-document-explorer-container {
    position: relative;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

#goa-document-explorer {
    width: 100%;
    margin: 0 auto;
}

#goa-document-explorer .block-container {
    position: relative;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

#goa-document-explorer .block-cat-title {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 10px;
}

#goa-document-explorer .block-cat-title h2 {
    position: relative;
    padding-bottom: 10px;
    color: #000;
    font-weight: bold;
    font-size: 28px;
}

#goa-document-explorer .block-cat-title h2:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #f57215;
    bottom: 0;
    left: 0;
}

#goa-document-explorer .block-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 35px;
}

#goa-document-explorer .block-item {
    width: 200px;
    margin: 10px;
    color: white;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
}

#goa-document-explorer .block-img {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#goa-document-explorer .block-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#goa-document-explorer .block-name {
    background-color: #eaeaea;
}

#goa-document-explorer .block-name h3 {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
}

#goa-document-explorer .block-file a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #fff;
    background-color: #f57215;
    transition: background-color .4s ease-in-out;
}

#goa-document-explorer .block-file a svg {
    margin-bottom: 1px;
}

#goa-document-explorer .block-file a:hover {
    background-color: #cb5f12;
    transition: background-color .4s ease-in-out;
}

#goa-document-explorer-filter {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

@media all and (max-width: 640px) {
    #goa-document-explorer-filter {
        flex-wrap: wrap;
    }
}

#goa-document-explorer-filter label {
    font-weight: bold;
    font-size: 20px;
    color: #000;
    display: block;
    text-align: left;
    padding-bottom: 15px;
}

#goa-document-explorer-filter select {
    font-size: 18px;
    color: #000;
    display: block;
    width: 100%;
    border-radius: 6px;
    padding: 8px 15px;
    background-color: #e1e1e1;
    border: none;
}

#goa-document-explorer-filter .filter-item-container {
    width: 50%;
    padding: 10px;
}

@media all and (max-width: 760px) {
    #goa-document-explorer-filter .filter-item-container {
        width: 100%;
    }
}