@use "../utils/mixins";
@use "../utils/variables";

aside {
    padding: 24px;
}
.video-section .item{
  opacity:0.4;
  transition:.4s ease all;
  transform:scale(.8);
}
@media(max-width:1000px){
  .video-section .item{margin:0; transform:scale(.9)}
}
.video-section .active .item{
  opacity:1;
  transform:scale(1);
} 
.video-section .owl-item {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}
.video-section video{
  max-width:100%;
  height:100%;
  @include mixins.rounded(10px 10px 0 0);
}
.deleted-info {
    display: none;
    .bin-bg {
        width: 184px;
        height: 184px;
        @include mixins.rounded(100%);
        background: variables.$light;
        margin: 0 auto;
    }
}
svg {
    &.feather-16 {
        width: 16px;
        height: 16px;
    }
    &.feather-14 {
        width: 14px;
        height: 14px;
    }
}
.files-list {
    a {
        @include mixins.rounded(5px);
        &:hover, &.active {
            background: variables.$dark-transparent;
            color: variables.$gray-900 !important;
        }
    }
}
.bg-01 {
    background: url('../img/bg/upgrade-bg.svg');
}
.access-wrap {
    position: relative;
    .access-rate {
        position: absolute;
        top: 8px;
        right: 8px;
    }
}
.rating-select {
    i {
        color: variables.$gray-500;
        &.filled {
            color: variables.$warning;
        }
    }
}
.folder-wrap {
    @include mixins.rounded(5px);
    padding: 16px;
    margin-bottom: 24px;
    &:hover {
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
    }
}
.video-wrap {
    @include mixins.rounded(5px);
    margin-bottom: 24px;
    .video-content {
        background: variables.$white;
        padding: 20px;
        @include mixins.rounded(0 0 5px 5px);
    }
    &:hover {
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
    }
}
.files-wrap {
    @include mixins.rounded(5px);
    margin-bottom: 24px;
    .files-icon {
        @include mixins.rounded(5px 5px 0 0);
    }
    .files-content {
        @include mixins.rounded(0 0 5px 5px);
    }
    &:hover {
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.15);
    }
}
.file-name-icon {
    img {
        width: auto;
    height: auto;
    }
}
.file-type {
    border: 1px solid variables.$gray-200;
    @include mixins.rounded(5px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    & > div {
        flex: 1;
    }
}
.document-wrap {
    padding: 20px;
}
.recent-activity {
    li {
        padding-bottom: 16px;
        position: relative;
        &::before {
            content: "";
            position: absolute;
            top: 0;
            left: 16px;
            border-color: variables.$gray-200;
            border-width: 1px;
            width: 1px;
            height: 100%;
            border-style: dashed;
        }
        &:last-child {
            padding-bottom: 0;
            &::before {
                content: none;
            }
        }
    }
}
.preview-content {
    padding: 20px;
}
.user-icon {
    width: 30px;
    height: 30px;
    background: variables.$white;
    color: variables.$gray-700;
    @include mixins.rounded(5px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    &:hover {
        background: variables.$dark-transparent;
        color: variables.$gray-900;
    }
}
.file-drop {
    position: relative;
    transition: all 0.5s;
    border: 1px dashed variables.$border-color;
    @include mixins.rounded(4px);
    padding: 24px;
    input {
        opacity: 0;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        cursor: pointer;
    }
}