.icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.icon svg {
    width: 100%;
    height: 100%;
}

@keyframes l3 {
    20%{background-position:0%   0%, 50%  50%,100%  50%}
    40%{background-position:0% 100%, 50%   0%,100%  50%}
    60%{background-position:0%  50%, 50% 100%,100%   0%}
    80%{background-position:0%  50%, 50%  50%,100% 100%}
}

.icon-loading {
  width: 40px;
  max-width: 20%;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side,#000 90%,#0000);
  background: 
    var(--_g) 0%   50%,
    var(--_g) 50%  50%,
    var(--_g) 100% 50%;
  background-size: calc(100%/3) 50%;
  animation: l3 1s infinite linear;
}

/**COMPONENT UPLOAD ASSETS**/
.upload-asset {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.component__upload-assets_preview {
    gap: 10px;

}

.component__upload-assets_drop {
    position: relative;
}

.component__upload-assets_preview-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    width: 7%;
    position: relative;
}
.component__upload-assets_preview-item:hover .img-thumbnail{
    border-color: blue;

}
.component__upload-assets_preview-item__remove {
    position: absolute;
    top:5px;
    right:5px;
    background-color: red;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    color: white;
    font-size: 12px;
    text-align: center;
    line-height: 15px;
    cursor: pointer;
    opacity: 0.7;
}
.component__upload-assets_preview-item__remove:hover {
    opacity: 1;
}
.component__upload-assets_preview-item__process{
    background: #2196f399;
    display: none;
    width: 100%;
    height: 100%;
    z-index: 999;
    position: absolute;
    justify-content: center;
    align-items: center;
}
.component__upload-assets_preview-item.process .component__upload-assets_preview-item__process{
    display: flex;
}
.component__upload-assets_preview-item.process .component__upload-assets_preview-item__remove{
    display: none;
}

/**COMPONENT ASSET NOTES**/
.component__asset-notes-list {
    max-height: 400px;
    overflow: auto;
}

.component__asset-notes-list-item__header {
    font-size: 14px;
    font-weight: bold;
}
.component__asset-notes-list-item__content {
    font-size: 12px;
}
.component__asset-notes-list-item__footer {
    font-size: 10px;
}
/**COMPONENT ASSET VERSIONS**/
.component__asset-versions_list,
.component__asset-audits_list{
    max-height: 400px;
    overflow: auto;
}

.global-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.action-button {
    text-transform: capitalize;
    display: flex;
    gap: 3px;
}