@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css");


@font-face {
    font-family: "Graphik";
    src: url("../fonts/Graphik-Regular-Trial.otf");
}


.display-block {
    display: block !important;
}

/* global css  */
.divider {
    height: 1px;
    background: var(--bg);
}

.flex-row {
    display: flex;
    align-items: center;
    gap: 5px;
}


.user_dashboar_container .user_dashboard_layout {
    display: flex;
    gap: 20px;
}

.dummy_sidebar {
    width: 280px;
    /* height: 100vh; */
    display: none;
    z-index: -999;
}

.opt_sidebar .toggle_btn_container {
    display: none;
}

.toggle_btn_container .toggle_icon.active_toggle_icon {
    transform: rotate(-180deg);
}

.opt_sidebar .Toggle_sidebar_btn {
    height: 40px;
    width: 30px;
    /* background-color: #1414dc; */
    background-color: #ebebf3;
    position: absolute;
    top: 0px;
    right: -30px;
    border-bottom-right-radius: 7px;
    border-top-right-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

}


.dashboard__sidebar.active_sidebar {
    left: 0px;
}

.dashboard__sidebar {
    position: fixed;
    top: 50px;
    left: -220px;
    z-index: 999;
    transition: 0.4s;
}

.sidebar__overlay {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(37, 37, 37, 0.379);
    height: 100%;
    width: 100%;
    z-index: 99;
    display: none;
}

.sidebar__overlay.sidebar__overlay__active {
    display: block;
}


.dashboard__sidebar .opt_sidebar {
    /* max-height: 100vh; */
    height: 100vh;
    width: 220px;
    background-color: #fff;
    box-shadow: 0 0 1px var(--shadow-color);
    padding: 30px;
    position: relative;

}

.dashboard__sidebar .opt_sidebar .user_profile_pic {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 12px;

}

.dashboard__sidebar .opt_sidebar .user_profile_pic .profile_pic {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.user_profile_pic .profile_pic .profile__edit__img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(87, 87, 87, 0.312);
    border-radius: 50%;
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: -99;
    font-weight: bold;
    color: #fff;

}

.user_profile_pic .profile_pic .profile__edit__img.active_img_upload {
    opacity: 1;
    visibility: visible;
    z-index: 99;
    pointer-events: none;
}

.user_profile_pic .profile_pic:hover .profile__edit__img {
    opacity: 1;
    visibility: visible;
    z-index: 99;
}

.dashboard__sidebar .opt_sidebar .user_profile_pic .profile_pic::before {
    height: 60px;
    width: 60px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    z-index: -1;
    border-radius: 50%;
    border: 2px solid #8fbcea;

}


.dashboard__sidebar .opt_sidebar .user_profile_pic .profile_pic .profile__img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.dashboard__sidebar .opt_sidebar .user_profile_pic .profile_name p {
    font-weight: bold;
    color: var(--theme-color);
    font-size: 14px;
}

.dashboard__sidebar .opt_sidebar .user_profile_pic .profile_name span {
    color: #949396;
}

.opt_sidebar .dashboard_option {
    margin-top: 30px;
}

.section__title {
    font-weight: bold;
    font-size: 13px;
    color: #3c3c3c;
}

.opt_sidebar .dashboard_option .my__acount li {
    padding: 2px;

}

.opt_sidebar .dashboard_option .my__acount li a {
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.opt_sidebar .dashboard_option .my__acount li a img {
    width: 14px;
}

.opt_sidebar .dashboard_option .my__acount li a:hover {
    background-color: var(--drop-down-hover);
    color: var(--theme-color);

}

.opt_sidebar .dashboard_option .my__acount li a.active__section {
    background-color: var(--drop-down-hover);
    color: var(--theme-color);
}


.dashboard__activity {
    width: 100%;
    /* height: 100%; */
    max-width: 1500px;
    margin: auto;
    position: relative;
    padding: 40px;
    /* background-color: red; */
}



.dashboard__activity .profile__card__container {
    width: 100%;
    margin-top: 10px;
    display: flex;
    gap: 20px;
}


@media screen and (max-width:770px) {
    .dashboard__activity .profile__card__container {
        flex-direction: column;
    }



}

.profile__card__container .card__container {
    /* padding: 10px; */
    width: 100%;
}

.profile__card__container .card__container .profile__card {
    height: fit-content;
    width: 100%;
    background-color: #fff;
    border-radius: 7px;
    box-shadow: 0 0 1px var(--shadow-color);
    padding: 20px;
}

.card__container .profile__card .profile__section_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.card__container .profile__card .profile__section_title span {
    font-size: 13px;
    font-weight: bold;
    color: var(--theme-color);
    text-decoration: underline;
    cursor: pointer;
}

.profile__card .profile__section_title span:hover {
    color: #000;
}

.profile__card .profile_details {
    margin-top: 10px;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.profile__card__container .card__container .Email__card {
    height: 120px;
    width: 100%;
    background-color: #fff;
    border-radius: 7px;
    box-shadow: 0 0 1px var(--shadow-color);
    padding: 20px;
}


.Email__card .Email_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}


.Email__card .Email_title span {
    font-size: 13px;
    font-weight: bold;
    color: var(--theme-color);
    text-decoration: underline;
    cursor: pointer;
}

.Email__card .Email_title span:hover {
    color: #000;
}

.Email__card .Email_details {
    margin-top: 15px;
    font-size: 14px;
}


.dashboard__activity .Activity__section {
    /* width: 100%; */
    background-color: #fff;
    box-shadow: 0 0 1px var(--shadow-color);
    padding: 20px;
    height: fit-content;
    margin-top: 10px;
    border-radius: 7px;
}

.Activity__section .activity_title {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.Activity__section .activity_title button {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    outline: none;
    padding: 7px 10px;
    border-radius: 30px;
    background-color: #dcdcdc;
}

.Activity__section .activity_title button:hover {
    background-color: rgb(237, 111, 111);
}


.dashboard__activity .table-container {
    /* overflow-x: auto; */
    /* margin: 20px 0; */
    margin-top: 10px;
    border: 1px solid var(--bg);
    font-size: 12px;
    padding: 10px;

}

.dashboard__activity .table-container::-webkit-scrollbar {
    height: 6px;
}


.dashboard__activity .table-container::-webkit-scrollbar-thumb {
    background: #888;
    /* Scrollbar thumb color */
    border-radius: 3px;
    /* Rounded corners */
}

@media screen and (max-width:690px) {
    .dashboard__activity .table-container {
        overflow-x: scroll;

    }
}

.dashboard__activity .responsive-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

@media screen and (max-width:955px) {
    .dashboard__activity .responsive-table {
        /* width: 600px; */
        overflow: scroll;
    }
}

.dashboard__activity .responsive-table th,
.dashboard__activity .responsive-table td {
    padding: 12px;
    /* border: 1px solid var(--bg); */
}

/* Apply alternating styles only to tbody rows */
.dashboard__activity .responsive-table tbody tr:nth-child(odd) {
    background-color: #f7f5fa;
    /* Active row background */
}

.dashboard__activity .responsive-table tbody tr:nth-child(even) {
    background-color: #fff;
    /* Normal row background */
}

/* Ensure header remains unchanged */
.dashboard__activity .responsive-table thead tr {
    background-color: #fff;
    /* Header background */
    font-weight: bold;
    cursor: pointer;
}



.dashboard__activity .responsive-table td {
    /* background-color: #f7f5fa; */
    position: relative;
}

.dashboard__activity .responsive-table td:nth-child(1)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background-color: var(--theme-color);
    display: none;
}

.dashboard__activity .responsive-table tr:hover td:nth-child(1)::before {
    display: block;
}


.dashboard__activity .responsive-table .action_buttons {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 5px;
}

.dashboard__activity .responsive-table .action_buttons a {
    cursor: pointer;
}

.dashboard__activity .responsive-table .action_buttons a:hover {
    transform: scale(1.1);
}

.pagination__bar {
    margin-top: 10px;
}

.pagination__bar ul {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}

.pagination__bar ul li a {
    padding: 6px 10px;
    /* font-weight: bold; */
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: transparent;
    border: 1px solid var(--bg);
    border-radius: 3px;
}

.pagination__bar ul li a.active_paginate {
    background-color: var(--theme-color);
    color: #fff;
}

.pagination__bar ul li a:hover {
    background-color: var(--theme-color);
    color: #fff;
}



@media screen and (max-width:945px) {

    .opt_sidebar .toggle_btn_container {
        display: block !important;
    }

    .dashboard__sidebar {
        left: -220px;
    }

    .dashboard__activity {
        padding: 50px;
    }


}

/* dashboard section code  */

.dashboard__card_container {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.dashboard__card_container .dashboard__card {
    padding: 30px;
    height: 120px;
    width: 100%;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 0 1px var(--shadow-color);
}


.dashboard__card .card__title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.storage__info .storage_used_contaier {
    width: 100%;
    height: 5px;
    border-radius: 4px;
    background-color: #bfbfbf;
    overflow: hidden;
}

.storage_used_contaier .storage_used {
    width: 30%;
    height: 100%;
    background-color: var(--theme-color);
    border-radius: 4px;

}

.storage__info .storage_details {
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-size: 12px;
    gap: 3px;
    font-weight: bold;
}


.dashboard__card .conversion_details {
    margin-top: 10px;
    font-weight: bold;
    font-size: 12px;
}

.recent__files__section__container .dash_section_title {
    /* margin-top: 20px; */
    margin-bottom: 10px;
    font-size: 13px;
}

.recent__files__section__container .recent__files__section {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.recent__files__section .recent__files__card {
    width: 100%;
}

.recent__files__section .other__files__card {
    width: 60%;

}

.recent__files__section__container .recent__files__section .recent__files {
    padding: 20px;
    height: fit-content;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 1px var(--shadow-color);
    margin-top: 10px;
    border-radius: 4px;
}

.recent__files__section__container .recent__files__section .other__files {
    padding: 20px;
    height: fit-content;
    width: 60%;
    background-color: #fff;
    box-shadow: 0 0 1px var(--shadow-color);
    margin-top: 10px;
    border-radius: 4px;
}


.recent__files__section .recent__files .recent__files__card {
    margin-top: 10px;
    padding: 10px;
    background-color: #fff;
    border: 1px solid var(--bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.recent__files__card .images__icon_and__name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}


.recent__files__card .images__icon_and__name .truncate__name {
    white-space: nowrap;
    /* Prevent text from wrapping to the next line */
    overflow: hidden;
    /* Hide any overflowing text */
    text-overflow: ellipsis;
    /* Add an ellipsis (...) to indicate truncated text */
    width: 100px;
}


.recent__files__card .share__btn {
    position: relative;
}

.recent__files__card .share__btn img {
    cursor: pointer;

}

.recent__files__card .share__btn .option__dropdown__container {
    position: absolute;
    top: -70px;
    left: -47px;
    opacity: 0;
    visibility: hidden;
    z-index: -999;
    transition: 0.4s;
}

.recent__files__card .share__btn .option__dropdown__container .option__dropdown {
    height: fit-content;
    width: 100px;
    background-color: #fff;
    position: relative;
    box-shadow: 0 0 1px var(--shadow-color);
    border-radius: 4px;

}

.option__dropdown__container .option__dropdown ul {
    padding: 10px;
}

.option__dropdown ul li a {
    display: flex;
    gap: 5px;
    padding: 5px;
    align-items: center;
    font-size: 10px;
    font-weight: bold;
    border-radius: 3px;

}

.option__dropdown ul li a:hover {
    background-color: var(--drop-down-hover);
    color: var(--theme-color);
}

.recent__files__card .share__btn:hover .option__dropdown__container {
    opacity: 1;
    visibility: visible;
    z-index: 999;
}


.recent__files__card .more__option__btn {
    position: relative;
}

.more__option__btn img {
    cursor: pointer;
}

.more__option__btn .more__option__container {
    position: absolute;
    top: 15px;
    right: 0px;
    opacity: 0;
    visibility: hidden;
    z-index: -99;

}

.more__option__container .more__option__dropdown {
    height: fit-content;
    width: 170px;
    background-color: #fff;
    border-radius: 4px;
    padding: 7px;
    box-shadow: 0 0 1px var(--shadow-color);
}

.more__option__container .more__option__dropdown ul li a {
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 11px;
    font-weight: bold;
    gap: 5px;
    border-radius: 3px;

}

.more__option__container .more__option__dropdown ul li a:hover {
    background-color: var(--drop-down-hover);
    color: var(--theme-color);
}

.more__option__btn:hover .more__option__container {
    opacity: 1;
    visibility: visible;
    z-index: 99;
}



/* New css code  */

.filter__images__bar__container {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
}

.filter__images__bar__container .filter__images__bar {
    display: flex;
    align-items: center;
    gap: 10px;
}



.filter__images__bar .filter__box {
    padding: 8px 15px;
    /* background-color: red; */
    border: 2px solid var(--bg);
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.2s !important;
    position: relative;
}

/* custom checkbox  */


.unchecked__input {
    position: relative;
    /* padding-left: 35px; */
    /* margin-bottom: 12px; */
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.unchecked__input input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.unchecked__input .checkmark {
    position: absolute;
    top: -12px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 4px;
}


/* When the checkbox is checked, add a blue background */
.unchecked__input input:checked~.checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.unchecked__input .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.unchecked__input input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.unchecked__input .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* custom checkbox end  */


.filter__images__bar form .filter__box button {
    background-color: #fff !important;
    border: 0;
}


.delete__Files__modal__layer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00000039;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: -999;
    visibility: hidden;
    padding: 10px;
    transition: 0.4s;

}

.delete__Files__modal__layer.active__delete__files__layer {
    opacity: 1;
    z-index: 999999999;
    visibility: visible;
}

.delete__Files__modal__layer .delete__form__box.active__delete_form_box {
    transform: translateY(0);
    opacity: 1;
}

.delete__Files__modal__layer .delete__form__box {
    height: fit-content;
    width: 400px;
    background-color: #fff;
    border-radius: 4px;
    padding: 30px;
    transform: translateY(-140px);
    opacity: 0;
    transition: 0.4s;


}

.delete__Files__modal__layer .delete__form__box h3 {
    font-size: 18px;
    text-align: center;
}

.delete__Files__modal__layer .delete__form__box p {
    font-size: 14px;
    color: #838383;
    margin-top: 10px;
}

.delete__Files__modal__layer .delete__form__box .delete__action {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.delete__form__box .delete__action button {
    padding: 10px 15px;
    background-color: rgb(235, 111, 111);
    border: 0;
    font-size: 13px;
    font-weight: bold;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
}

.delete__form__box .delete__action button:hover {
    background-color: rgb(225, 31, 31);

}

.delete__form__box .delete__action span {
    font-size: 13px;
    font-weight: bold;
    color: var(--theme-color);
    cursor: pointer;
}

.delete__form__box .delete__action span:hover {
    text-decoration: underline;
    color: #000;
}


.Multiple__Action__btn .filter__box:nth-child(1):hover {
    background-color: rgb(229, 40, 40);
}

.filter__images__bar .filter__box:hover {
    background-color: var(--theme-color);
    color: #fff;
    /* border: 0; */

}

.filter__images__bar .filter__box.active__filter {
    background-color: var(--theme-color);
    color: #fff;
    border: 0;
}

.filter__images__bar__container .search__bar__container {
    height: 35px;
    width: 300px;
    border: 1px solid var(--bg);
    border-radius: 7px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-right: 10px;
}

.filter__images__bar__container .search__bar__container input {
    height: 100%;
    width: 100%;
    outline: none;
    border: 0;
    padding-left: 10px;
}

.Files__container__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    /* Responsive columns */
    gap: 15px;
    /* Gap between grid items */
    margin-top: 15px;
    box-sizing: border-box;
}

.Files__container__grid .Images__card {
    height: 150px;
    border-radius: 10px;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background-color: #eeeeee;
    position: relative;
    user-select: none;
    transition: 0.4s;
}

.Files__container__grid .Images__card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Ensure full coverage */
    height: 100%; /* Ensure full coverage */
    /* z-index: -1; */
}

.Files__container__grid .Images__card:hover::after {
    background-color: rgba(0, 0, 0, 0.264) !important;

}

.Files__container__grid .Images__card.selectImg {
    /* transform: scale(0.8); */
}

.Files__container__grid .Images__card.selectImg::after{
    background-color: rgba(0, 0, 0, 0.264) !important;

}



.Files__container__grid .Images__card:hover input[type="checkbox"]+.label-text:before {
    top: 10px;

}

.Files__container__grid .Images__card input[type="checkbox"]+.active__checkbox:before {
    top: 10px !important;

}

.Files__container__grid .Images__card input[type="checkbox"] {
    display: none;
}

.Files__container__grid .Images__card input[type="checkbox"]+.label-text:before {
    content: "\f096";
    font-family: "FontAwesome";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    width: 1em;
    display: inline-block;
    margin-right: 5px;
    position: absolute;
    top: -100px;
    right: 10px;
    transition: 0.4s;

}

.Files__container__grid .Images__card input[type="checkbox"]:checked+.label-text:before {
    content: "\f14a";
    color: #06a3e9;
    animation: tick 150ms ease-in;

}

.Files__container__grid .Images__card input[type="checkbox"]:disabled+.label-text {
    color: #aaa;
}

.Files__container__grid .Images__card input[type="checkbox"]:disabled+.label-text:before {
    content: "\f0c8";
    color: #ccc;
}

@keyframes tick {
    0% {
        transform: scale(0);
    }

    90% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}


/* custome check box  */




/* custome check box end */



.Files__container__grid .Images__card .imgaes_view img {
    width: 100%;
    width: 100%;
    border-radius: 10px;
    /* object-fit: cover; */
}


.Files__container__grid .Images__card:hover .action__buttons {
    bottom: 20px;
    z-index: 999;

}

.Files__container__grid .Images__card .action__buttons {
    position: absolute;
    bottom: -40px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
}

.Files__container__grid .Images__card .action__buttons a {
    display: block;
    height: 30px;
    width: 30px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111111a9;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .3s;
    transition-delay: 300ms;

}

.Files__container__grid .Images__card .action__buttons a:hover {
    background-color: var(--theme-color);
    transition-delay: 0ms;
}

.Files__container__grid .Images__card .action__buttons a img {
    height: 16px;
    width: 16px;
}

.Files__container__grid .Images__card:hover .action__buttons a:nth-child(1) {
    left: 0;
}

.Files__container__grid .Images__card:hover .action__buttons a:nth-child(2) {
    left: calc(40px);
}

.Files__container__grid .Images__card:hover .action__buttons a:nth-child(3) {
    left: calc(40px * 2);
}

.modal__img__info__layer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00000092;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: -9999;
    padding: 10px;
    transition: 0.4s;
}

.modal__img__info__layer.active__info__layer {
    opacity: 1;
    visibility: visible;
    z-index: 9999999999;
}

.modal__img__info__layer .info__box.active__info__box {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.modal__img__info__layer .info__box {
    height: fit-content;
    width: 400px;
    background-color: #fff;
    border-radius: 4px;
    padding: 20px;
    opacity: 0;
    transform: translateY(-30px);
    visibility: hidden;
    transition: 0.4s;

}

.modal__img__info__layer .info__box .img_info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 12px;
}

.modal__img__info__layer .info__box .clsose__info__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.modal__img__info__layer .info__box .clsose__info__btn button {
    background-color: transparent;
    outline: none;
    border: 0;
    cursor: pointer;
    color: var(--theme-color);
    font-weight: bold;
}

.modal__img__info__layer .info__box .clsose__info__btn button:hover {
    text-decoration: underline;
    color: #222;
}



.filter__images__bar .ImgSelectCounter::before {
    position: absolute;
    top: -10px;
    right: 0px;
    border-radius: 9px;
    padding: 2px 5px;
    width: fit-content;
    background-color: var(--theme-color);
    content: attr(data-counter);
    font-weight: bold;
    font-size: 10px;
    color: #eee9e9;
}


.loader {
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    /* Light grey */
    border-top: 3px solid #3c3c3c;
    /* Blue */
    border-radius: 50%;
    animation: spin 0.2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* new css end  */

.Multiple__Action__btn {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* dashboard uploading css  */

.Files__uploading__area {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    background-color: #E8F3FE;
    border-radius: 10px;
    border: 3px dashed #ABD2FB;
    cursor: pointer;
    user-select: none;
}

.Files__uploading__area .Uploading__icon {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Files__uploading__area .Uploading__icon img {
    width: 100px;
}

.Files__uploading__area .Uploading__icon span {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}


/* dashboard uploading css End  */

@media screen and (max-width:865px) {
    .dashboard__card_container {
        flex-direction: column;
    }

    .recent__files__section__container .recent__files__section {

        flex-direction: column;
    }

    .recent__files__section__container .recent__files__section .other__files {
        width: 100%;
    }


}

@media screen and (max-width:770px) {

    .filter__images__bar__container {
        flex-direction: column;
        gap: 10px;
    }

    .filter__images__bar__container .search__bar__container {
        width: 100%;
    }

    .dashboard__activity {
        padding: 30px;
    }


}

.recent__files__content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

@media screen and (max-width:450px) {

    .recent__files__card {
        flex-direction: column;
        gap: 10px;
    }

    .recent__files__section .recent__files .recent__files__card {
        align-items: start;
    }

    .filter__images__bar .Filter__link {
        padding: 10px;
    }




}

@media screen and (max-width:420px) {

    .filter__images__bar {
        flex-direction: column;
        align-items: start !important;
        width: 100%;
    }

    .filter__images__bar .filter__box {
        width: 100%;
    }

}
