* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}



/* background colors */
.bg-deeppink {
    background-color: var(--deep-pink-color);
}

.bg-lightpink {
    background-color: var(--light-pink-color) !important;
}

.bg-lightgrey {
    background-color: var(--light-grey-color);
}

.bg-green {
    background-color: var(--green-color);
}

.bg-blue {
    background-color: var(--blue-color);
}

.bg-red {
    background-color: var(--scarlet-red-color);
}

/* font */
.fw-100 {
    font-weight: 100;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fs-13 {
    font-size: 13px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-17 {
    font-size: 17px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-25 {
    font-size: 25px;
}

/* text colors */
.text-grey {
    color: #666666;
}

.text-scarletred {
    color: var(--scarlet-red-color);
}

.text-exlightgrey {
    color: var(--ex-grey-color);
}

.text-blue {
    color: var(--blue-color);
}

.text-green {
    color: var(--green-color);
}

/* box shadow */
.shadow {
    box-shadow: var(--shadow) !important;
}

/* buttons */
.btn-red {
    background: linear-gradient(89.73deg, #590099 3.79%, rgba(210, 16, 47, 0) 125.26%);
    background-color: rgb(89 0 153);
    color: var(--white-color);
    border-radius: 2px;
    padding: 7px 34px;
    font-size: 18px;
    transition: var(--transition);
    color: #FFF;
}

.btn-red:hover {
    color: var(--white-color);
    opacity: 0.9;
}

/* line */
.line {
    width: 75%;
    background-color: rgba(0, 0, 0, 0.5);
    height: 1px;
}

:root {
    --purple-color: #590099;
    --light-grey-color: #EEEEEE;
    --transition: all 300ms ease-in-out;
}

body {
    background-color: #FFF;
    font-family: 'Roboto', sans-serif;
    position: relative !important;
}

a {
    text-decoration: none;
    color: unset;
}

ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

button {
    border: none;
    background-color: transparent;
}

.bg-light-grey {
    background-color: var(--light-grey-color);
}

.btn-purple {
    background-color: var(--purple-color) !important;
    padding: 7px 22px;
    border-radius: 4px;
}

.bg-purple {
    background-color: var(--purple-color) !important;
}

.text-purple {
    color: var(--purple-color) !important;
}

input,
textarea {
    outline: 0;
}

/* ############ add and selection options ################## */
.hide-add-options {
    display: none !important;
}

.add-new-btn {
    background-color: #eeeeee;
    line-height: 30px;
    padding: 6px 6px;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
    text-align: center;
    display: flex;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
    display: inline;
}

.add-new-btn span {
    margin-right: 10px;
    font-size: 15px;
}

.add-new-btn i {
    color: #590099;
    transition: color .2s ease;
}

.header-search-icon {
    width: 40px;
    height: 40px;
    margin: 0 10px;
    cursor: pointer;
}

.header-search-icon i {
    font-size: 18px;
    color: #5f6368;
}

.header-search-block {
    top: 140%;
    right: -262px;
    padding: 20px;
    z-index: 100;
    width: 400px;
    border-radius: 4px !important;
    box-shadow: 0 5px 5px -3px rgb(0 0 0 / 20%), 0 8px 10px 1px rgb(0 0 0 / 14%), 0 3px 14px 2px rgb(0 0 0 / 12%);
    background-color: #fff;
    display: none;
}

.header-search-block .search-by-item {
    background-color: #ebebeb;
    margin: 0 4px;
    border-radius: 4px;
    padding: 3px 7px;
    font-weight: 400;
    font-size: 15px;
}

.header-search-block form .form-control.form-control-sm {
    border-radius: 0;
}

.header-search-block form button {
    padding: 4px 7px;
    border-radius: 3px;
    transition: var(--transition);
}

.header-search-block .search-btn {
    background-color: var(--purple-color);
    color: #fff;
}

.header-search-block .cancel-search-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}


.selected-options {
    background-color: #eeeeee;
    line-height: 30px;
    padding: 2px 6px;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
    border-radius: 3px;
}

.selected-options>div {
    height: 42px;
    line-height: 42px;
}

.selected-options .selected-options-info {
    padding: 0 8px;
    transition: var(--transition);
}

.selected-options .selected-options-btn {
    min-width: 42px;
    transition: var(--transition);
}

.hide-selected-options {
    display: none !important;
}

.selected-options-info:hover,
.selected-options-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.selected-options .dropdown-menu {
    border-radius: 4px !important;
    box-shadow: 0 5px 5px -3px rgb(0 0 0 / 20%), 0 8px 10px 1px rgb(0 0 0 / 14%), 0 3px 14px 2px rgb(0 0 0 / 12%);
    border: none;
}

.selected-options .dropdown-menu .dropdown-item {
    padding: 0 28px;
    height: 34px;
    display: flex;
    align-items: center;
    font-weight: 400;
    opacity: 0.9;
}

.selected-options .dropdown-menu .dropdown-item i {
    width: 34px;
}

/* end of add and selection options */

.header-breadcum-filter {

    background-color: #eeeeee;
    padding: 10px;
    border-radius: 3px;
    margin-top: 20px;
}


.header-breadcum-filter .header-breadcum {}

.header-breadcum-filter .header-breadcum ul {}

.header-breadcum-filter .header-breadcum ul li {
    padding: 0px 5px;
}

.header-breadcum-filter .header-breadcum ul li a {
    color: #323130;
    text-decoration: none;
    font-size: 15px;
}

.header-breadcum-filter .header-breadcum ul li::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f105";
    font-size: 12px;
}

.header-breadcum-filter .header-breadcum ul li:last-child::after {
    content: "\f107";
}

.header-breadcum-filter .header-filter {}

.header-breadcum-filter .header-filter ul {}

.header-breadcum-filter .header-filter ul li {
    padding: 0px 5px;
}

.header-breadcum-filter .header-filter ul li a {
    color: #5f6368;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
}





.navbar-brand {
    width: 150px;
    height: auto;
    overflow: hidden;
    display: block;
}

.navbar-brand img {
    width: 100%;
}





/* aside file folder stylings */
.aside-file-folder {
    margin-top: 20px;
    min-width: 250px !important;
    max-width: 320px;
    left: 0 !important;
    border: none !important;
}

/* file scrollbar stylings */
.file-tree {
    overflow-y: scroll !important;
}

.file-tree::-webkit-scrollbar {
    width: 7px;
}

.file-tree::-webkit-scrollbar-track {
    box-shadow: inset 0 0 7px rgb(255, 255, 255);
}

.file-tree::-webkit-scrollbar-thumb {
    background-color: #590099;
    border-radius: 20px;
    display: none;
}

.file-tree:hover::-webkit-scrollbar-track {
    box-shadow: inset 0 0 7px #c1c1c1;
    border-radius: 20px;
}

.file-tree:hover::-webkit-scrollbar-thumb {
    display: block;
}

.content-area {
    background-color: #eeeeee;
    margin-top: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.grid-group-folder,
.grid-group-fileitem {
    padding-left: 15px;
    padding-right: 15px;
    display: grid;
    grid-gap: 15px;
    align-items: stretch;
    height: auto !important;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.grid-group-file {
    padding-left: 15px;
    padding-right: 15px;
    display: grid;
    grid-gap: 15px;
    align-items: stretch;
    height: auto !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    margin-top: 15px;
}

.content-area .folder-box {
    background-color: #FFF;
    position: relative;
    transition: border .2s ease, background-color 200ms ease, box-shadow .2s ease;
    user-select: none;
    -webkit-user-select: none;
    cursor: default;
    position: relative;
    border-radius: 4px;
    text-align: center;
}

.content-area .folder-box:hover {
    background-color: #e3e7f1;
}

.content-area .folder-box:hover a .box-wrapper .top .text {
    color: #3363ed;
}

.content-area .folder-box a {
    display: block;
    text-decoration: none;
    color: #5f6368;
    padding: 5px 10px 15px 10px;
    position: relative;
}

.content-area .folder-box a.checked::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f00c";
    font-size: 13px;
    position: absolute;
    top: 0px;
    right: 0px;
    background: #5371f0;
    padding: 1px 5px;
    border-bottom-left-radius: 15px;
    color: #ffffff;
}

.content-area .folder-box a:hover::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f00c";
    font-size: 13px;
    position: absolute;
    top: 0px;
    right: 0px;
    background: #5371f0;
    padding: 1px 5px;
    border-bottom-left-radius: 15px;
    color: #ffffff;
}

.content-area .folder-box a .box-wrapper .top {
    display: flex;
    align-items: center;
}

.content-area .folder-box a .box-wrapper .top .folder-icon {
    width: 20px;
    height: 20px;
}

.content-area .folder-box a .box-wrapper .top .folder-icon svg {
    width: 100%;
    height: 100%;
}

.content-area .folder-box a .box-wrapper .top .text {
    clear: both;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    margin-left: 7px;
    font-size: 14px;
    padding-top: 5px;
}

.content-area .folder-box a .box-wrapper .bottom {
    text-align: right;
    position: absolute;
    bottom: 0px;
    right: 10px;
}

.content-area .folder-box a .box-wrapper .bottom i {
    font-size: 10px;
}

.content-area .folder-box .file-wrapper img {
    width: 100%;
}

.grid-group-fileitem .folder-box>a {
    background-color: #EEEEEE;
}

.grid-group-fileitem .folder-box>a .box-wrapper {
    height: 133px;
}

.grid-group-fileitem .folder-box .top img {
    width: 80px;
}

.grid-group-fileitem .folder-box .box-wrapper {
    position: relative;
    background-color: #fff;
    border-radius: 3px;
}

.grid-group-fileitem .folder-box .bottom {
    right: 10px !important;
    left: 10px;
    bottom: 4px !important;
    width: auto;
}

.grid-group-fileitem .folder-box .bottom .bottom-right {
    padding: 0 6px;
    border-radius: 2px;
    height: 18px;
    line-height: 15px;
}

.grid-group-fileitem .folder-box .fileitem-name {
    padding-top: 2px;
    font-size: 15px;
    color: rgb(61, 61, 61);
    text-align: left !important;
    width: 100%;
    padding: 2px;
}

.grid-group-fileitem .filetype-badge {
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 11px;
    padding: 2px 4px;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.grid-group-fileitem .folder-box.img-fileitem .box-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* right column */
.tab-heads {
    margin-top: 1px;
}

.tab-head {
    font-size: 14px;
    padding: 11px 6px;
    width: 100%;
}

.tab-head:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.tab-head-active {
    background-color: rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: none;
    font-size: 14px;
}

.tab-content-active {
    display: block;
}

.details-content img {
    width: 100%;
}

.details-content .info-block-title {
    background-color: #EEEEEE;
    border-radius: 3px;
    padding: 3px 8px;
    margin-bottom: 12px;
}

.details-content .info-block-item {
    margin-bottom: 6px;
}

.folderStrctUl ul{
    list-style: circle;
    padding: revert;
}

.details-content .info-block-item span:first-child {
    opacity: 0.9;
    display: inline-block;
    /* width: 35%; */
    text-align: right;
    margin-right: 7px;
}

.details-content .add-tags-block .form-elem {
    border: 1px solid transparent;
    padding: 2px 5px;
    border-radius: 2px;
    transition: var(--transition);
}

.details-content .add-tags-block .form-elem:focus {
    border: 1px solid var(--purple-color);
}

.details-content .tags-list-item {
    color: var(--purple-color);
    font-size: 13px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-block;
    cursor: pointer;
    margin: 2px;
    transition: var(--transition);
}

.details-content .tags-list-item:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-color: var(--purple-color);
}

.details-content .tags-list-item span {
    margin-left: 3px;
    display: inline-block;
    width: 13px;
    height: 13px;
    line-height: 15px;
    text-align: center;
    border-radius: 50%;
    font-size: 10px;
    transition: var(--transition);
}

.details-content .tags-list-item span:hover {
    color: #fff;
}

.details-content .tags-list-item span:hover {
    background-color: var(--purple-color);
}

.activities-content .info-block-item {
    border-radius: 3px;
}

.activities-content .info-block-item img {
    width: 100%;
}

.activities-content .info-block-item:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.activities-content .info-block-item-title {
    font-weight: 500;
}

.activities-content .info-block-item-details span:first-child {
    opacity: 0.9;
    font-size: 15px;
}

.activities-content .info-block-item-details span:nth-child(2) {
    font-size: 13px;
    margin-top: -4px;
}

.right-col {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.tab {
    flex: 1;
}

.comments-content-right .active-user-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: none;
    background-color: #5945d1 !important;
    font-weight: 500;
}

.comments-content-grid {
    display: grid;
    grid-template-columns: auto 39px;
}

.comments-content .info-block-item {
    padding: 5px 9px;
    border-radius: 5px;
    margin-bottom: 10px;
    display: inline-block;
}

.comments-content .comments-item-rmv-btn {
    right: -7px;
    top: -7px;
    width: 14px;
    height: 14px;
    line-height: 14px;
    border-radius: 50%;
    background-color: rgb(213, 213, 213);
    font-size: 11px;
    opacity: 0;
    transition: var(--transition);
}

.comments-content .info-block-item:hover .comments-item-rmv-btn {
    opacity: 1;
}

.comments-content .info-block-item .comments-item-rmv-btn:hover {
    color: var(--purple-color);
}

.comments-content .form-elem {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2px 5px;
    border-radius: 2px;
    transition: var(--transition);
    width: 100%;
}

.comments-content .form-elem:focus {
    border: 1px solid var(--purple-color);
}

.comments-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.comments-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
}

.comments-modal .modal-btn {
    padding: 3px 20px;
    border-radius: 4px;
    transition: var(--transition);
}

.comments-modal .modal-btn:nth-child(2):hover {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

.show-comments-modal {
    opacity: 1;
    visibility: visible;
}


/*  Tree View   */
#myUL {
    list-style-type: none;
    margin: 0;
    padding: 0;
    color: #3b3f5c;
    font-weight: 600;
}

#myUL ul {
    list-style-type: none;
}

.caret {
    cursor: pointer;
    -webkit-user-select: none;
    /* Safari 3.1+ */
    -moz-user-select: none;
    /* Firefox 2+ */
    -ms-user-select: none;
    /* IE 10+ */
    user-select: none;
    font-size: 13px;
    color: #0e1726;
    text-transform: capitalize;
}

.caret.caret-down::before {
    content: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="21" height="21" viewBox="0 0 24 24" fill="none" stroke="%232b50ed" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-folder-plus"><path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path><line x1="12" y1="11" x2="12" y2="17"></line><line x1="9" y1="14" x2="15" y2="14"></line></svg>');
}

.caret::before {
    content: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="21" height="21" viewBox="0 0 24 24" fill="none" stroke="%232b50ed" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-folder-minus"><path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z"></path><line x1="9" y1="14" x2="15" y2="14"></line></svg>');
    color: #888ea8;
    display: inline-block;
    margin-right: 6px;
    vertical-align: sub;
}

.nested {
    display: none;
    padding-left: 28px;
}

.nested li {
    margin-top: 8px;
    margin-bottom: 8px;
    color: #5c1ac3;
    font-size: 13px;
}

.active {
    display: block;
}

.file-tree {
    margin-bottom: 0;
    padding-left: 20px;
    list-style: none;
    overflow: hidden;
}

.file-tree * {
    list-style-type: none;
}

.file-tree ul {
    list-style: none;
    display: none;
    padding-left: 30px;
}

.file-tree li {
    position: relative;
    padding: 1px 0;
    border-radius: 0.25rem;
    cursor: auto;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 400;
    color: #0e1726;
    width: 30px !important;
}

.file-tree .file-tree-folder {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
    cursor: pointer;
}

.file-tree .file-tree-folder::before {
    font-size: 22px !important;
}

.file-tree .file-tree-folder::after {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    transition-delay: 0s;
    position: absolute;
    top: .6rem;
    left: -2em;
    content: "\e5cf";
    display: block;
    text-align: center;
    color: #5F6368 !important;
    content: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="19" height="19" viewBox="0 0 24 24" fill="none" stroke="%232b50ed" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    font-size: 10px;
}

.file-tree .file-tree-folder.empty::after {
    content: "";
}

.file-tree .file-tree-folder.open::after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

.file-tree li.file-tree-folder::before {
    display: inline-block;
    text-align: center;
    width: 30px;
    margin-right: .25rem;
    font-family: "Material Icons";
    content: '\e2c7';
    margin-left: -3px;
}

.file-tree li::before {
    font-family: "Material Icons";
    font-size: 22px !important;
    content: "\e873";
    color: #5F6368 !important;
    margin-right: 9px;
    position: relative;
    top: 4px;
    font-weight: 300 !important;
}

/*  added folder stylings */
.file-tree-folder-single::after {
    content: "" !important;
}

.file-tree-folder-single::before {
    font-family: "Material Icons";
    font-size: 22px !important;
}
.file-tree-folder-single:nth-child(1)::before {
    content: "\e88a" !important;
}

.file-tree-folder-single:nth-child(2)::before {
    content: "\ea0e" !important;
}

.file-tree-folder-single:nth-child(3)::before {
    content: "\ea0e" !important;
}


.file-tree-folder-single:nth-child(4)::before {
    content: "\e8a7" !important;
}

.file-tree-folder-single:nth-child(5)::before {
    content: "\eb82" !important;
}

.file-tree-folder-single:nth-child(6)::before {
    content: "\eb87" !important;
}

.file-tree-folder-single:nth-child(7)::before {
    content: "\eb2c" !important;
}

.file-tree-folder-single:nth-child(8)::before {
    content: "\e924" !important;
}

.file-tree-folder-single:nth-child(9)::before {
    content: "\e14d" !important;
}

.file-tree-folder-single:nth-child(10)::before {
    content: "\e83a" !important;
}

.file-tree-folder-single:nth-child(11)::before {
    content: "\e872" !important;
}

.file-tree-folder-single:nth-child(12)::before {
    content: "\e853" !important;
}

.file-tree-folder-single:nth-child(13)::before {
    content: "\e897" !important;
}

.file-tree-folder-single:nth-child(14)::before {
    content: "\e157" !important;
}
.file-tree-folder-single:nth-child(15)::before {
    content: "\f1b8" !important;
}
.file-tree-folder-single:nth-child(16)::before {
    content: "\f02e" !important;
}

.file-tree-folder-single:nth-child(17)::before {
    content: "\e8b8" !important;
}

.file-tree-folder-single:nth-child(18)::before {
    content: "\e9ba" !important;
}


@media (max-width: 767px) {
    .custo-radio {
        margin-top: 5px;
    }
}

.div-row {
    display: grid;
}

@media screen and (min-width: 576px) {
    .div-row {
        display: flex;
        justify-content: space-between;
    }

    .div-row .div-col-left {
        width: 12%;
    }

    .div-row .div-col-middle {
        width: 100%;
    }

    .div-row .div-col-right {
        width: 30%;
        max-width: 332px !important;
    }

    .file-tree {
        height: 100vh;
        overflow-y: scroll !important;
    }

    .right-col {
        height: 100%;
    }
}

.dropdown-toggle {
    margin-right: 0 !important;
}

.dropdown-toggle::after {
    display: none;
}

/* context menu stylings */
.context-menu-item {
    padding: 5px 15px !important;
}

.context-menu-item span {
    margin-left: 40px;
    font-size: 14px !important;
    font-weight: 400;
}

.context-menu-item::before {
    color: rgba(0, 0, 0, 0.7) !important;
    margin-left: 15px;
}


/* upload folder */
.upload-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    visibility: hidden;
    opacity: 0;
}

.show-upload-modal {
    visibility: visible;
    opacity: 1;
}

.upload-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    width: 100%;
    border-radius: 6px;
    z-index: 100;
    box-shadow: 0 5px 5px -3px rgb(0 0 0 / 20%), 0 8px 10px 1px rgb(0 0 0 / 14%), 0 3px 14px 2px rgb(0 0 0 / 12%);
}

.upload-data thead tr th {
    font-weight: 400;
    opacity: 0.7;
}

.upload-btns button {
    padding: 4px 10px;
    border-radius: 3px;
    transition: var(--transition);
}

.upload-btns button:hover {
    background-color: rgb(0 0 0 / 6%);
}

/* preview col */
#close-preview-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #fff;
    transition: var(--transition);
}

#close-preview-btn:hover {
    background-color: rgb(0 0 0 / 5%);
}

#close-preview-btn:active {
    transform: scale(0.95);
}

.div-col-preview {
    width: 100%;
    display: none;
}

.preview-block-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.preview-block-title {
    font-weight: 400;
}

.preview-top-icon {
    margin: 0 8px;
    color: var(--purple-color);
    opacity: 0.8;
    font-size: 20px;
}

.preview-top-icon .dropdown-item i {
    width: 25px;
}

.preview-wrapper {
    height: 80vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

.preview-wrapper img {
    width: 100%;
}

.preview-change {
    height: 51px;
}

.preview-wrapper::-webkit-scrollbar {
    width: 7px;
}

.preview-wrapper::-webkit-scrollbar-track {
    box-shadow: inset 0 0 7px rgb(255, 255, 255);
}

.preview-wrapper::-webkit-scrollbar-thumb {
    background-color: #590099;
    border-radius: 20px;
    display: none;
}

.preview-wrapper:hover::-webkit-scrollbar-track {
    box-shadow: inset 0 0 7px #c1c1c1;
    border-radius: 20px;
}

.preview-wrapper:hover::-webkit-scrollbar-thumb {
    display: block;
}

.preview-control-btn {
    width: 33px;
    height: 33px;
    background-color: transparent;
    border-radius: 50%;
    transition: var(--transition);
}

.preview-control-btn:hover {
    background-color: rgb(0 0 0 / 6%);
}




/* login form stylings */
.login-pg,
.reset-pg {
    min-height: 100vh;
    background: url('/images/background.jpg') center/cover no-repeat;
}

.login-pg .page-main-block,
.reset-pg .page-main-block {
    max-width: 480px;
    padding: 30px 60px;
    margin: 0 auto;
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.7));
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 6px;
}

.login-pg .page-main-block .form-control,
.reset-pg .page-main-block .form-control {
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
}

.login-form a,
.reset-form a {
    font-weight: 500;
}

.login-form a:hover,
.reset-form a:hover {
    color: var(--purple-color);
    text-decoration: underline;
}

.login-pg .btn-purple,
.reset-pg .btn-purple {
    transition: var(--transition);
}

.login-pg .btn-purple:hover,
.reset-pg .btn-purple:hover {
    opacity: 0.9;
}






/* account page */

.personal-info-page .account-mid-details-content {
    padding: 60px;
}

.personal-info-page .user-details-img {
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
}

.user-details-img-content {
    width: 83px;
    height: 83px;
}

.user-details-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 23px;
}

.font-icons {
    transition: transform 700ms;
}


.alluser-list {
    background-color: #FFF;
}

.alluser-list h4 {
    font-size: 22px;
}

.alluser-list table caption {
    font-size: 14px;
}

.alluser-list table thead {
    background: #5a0099;
    color: #FFF;
}

.alluser-list table td {
    border: 1px solid #CCC;
}


.dashboard-section{
    padding: 0px 15px;
}

.card {
    box-shadow: 0 0 0.875rem 0 rgb(33 37 41 / 5%);
    margin-bottom: 24px;
}

.card {
    word-wrap: break-word;
    background-clip: border-box;
    background-color: #fff;
    border: 0 solid transparent;
    border-radius: 0.25rem;
    display: flex;
    flex-direction: column;
    min-width: 0;
    position: relative;
}

.card-body {
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-header {
    color: #5e4199;
    font-size: 16px;
    font-weight: 600;
}

.card-title{
    color: #5f6368;
}

.card-header h2 {
    font-size: 18px;
    font-weight: bolder;
}

.card-body .count {
    box-shadow: 5px 5px 10px rgb(0 0 0 / 20%);
    margin-top: 11px;
    border-radius: 100%;
    height: 100px;
    width: 100px;
    text-align: center;
    line-height: 100px;
    font-size: 25px;
    font-family: 'Alfa Slab One', cursive;
    color: #5e4199;
}
