div:is(#list-container, #public_profile_container) {
    --search-height: 125px;
    --menu-height: 75px;
}

div:is(#list-container, #public_profile_container).header-hide {
    --menu-height: 0px;
}

@media only screen and (max-width: 620px) {
    div:is(#list-container, #public_profile_container) {
        --menu-height: 55px; 
    }

    div:is(#list-container, #public_profile_container).header-hide {
        --menu-height: 0px;
    }
}

/* override dark mode colors - user can set them even if it does not match the mode */
div:is(#list-container, #public_profile_container):not(.theme-dark) {
    --files-bg: #ffffff;
    --files-text: #242424;
}
div:is(#list-container, #public_profile_container).theme-dark {
    --files-bg: #1a1818;
    --files-text: #ffffff;
}



/* FOLDER INFO BLOCK (LEFT) */
#left {
    display: block;
    width: 340px;
    max-width: 340px;
    font-size: 12px;
    min-height: 160px;
    background-color: var(--files-bg);
    color: var(--files-text);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    position: relative;
    vertical-align: top;

    position: sticky;
    top: 0;
    
    box-shadow: 0px 0px 16px 0px rgb(0 0 0 / 15%);
    --tabs-height: 74px; /* 30px (close button) + 44px (tabs) */
}
#left.without_faces {
    --tabs-height: 30px; /* 30px (close button) */
}
div:is(#list-container, #public_profile_container).theme-dark #left {
    background-color: var(--files-bg);
}

.left_menu_visible #left {
    display: block;
    z-index: 11112;
    min-width: 340px;
}
    #left_container_close_wrapper {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1;
        display: flex;
        justify-content: flex-end;
        background-color: var(--files-bg);
    }
    #left_container_close {
        display: inline-block;
        right: 0;
        cursor: pointer;
        float: right;
        width: 30px;
        background-image: url(/images/UI_icons/close_side.svg);
        background-size: 15px;
        background-repeat: no-repeat !important;
        background-position: center;
       
    }
    div:is(#list-container, #public_profile_container).theme-dark #left_container_close { 
          background-image: url(/images/UI_icons/white/close_side.svg);
    }
    .left_menu-section,
    #face_search-section #face_search-enabled_container,
    #face_search-section.ai_vision_analyzer_performed #face_search-enable_container {
        display: none;
    }
    div:is(#list-container, #public_profile_container).left_menu-ai_analyze-visible #ai_analyze,
    div:is(#list-container, #public_profile_container).left_menu-upload_info-visible #upload_info,
    div:is(#list-container, #public_profile_container).left_menu-face_search-visible #face_search-section,
    #face_search-section.ai_vision_analyzer_performed #face_search-enabled_container {
        display: block;
    }
    #face_search-section.ai_vision_analyzer_performed #face_search-enabled_container {
        display: flex;
    }
    #face_search-section,
    #upload_info,
    #ai_analyze{
        position: -webkit-sticky;
        position: sticky;
        top: var(--tabs-height);
    }
    #info_head {
        width: 100%;
        background-color: transparent;
        text-align: center;
        padding-top: 8px;
        display: block;
    }

        #info_head {
            display: flex;
            gap: 30px;
            padding: 16px 20px 0;
            overflow: auto;
            width: calc(100% - 40px);
            align-items: center;
        }
        #info_head h1 {
            font-size: 16px;
            flex: 1;
            line-height: 15px;
            text-align: left;
            display: -webkit-inline-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            font-weight: bold;
            color: #2C3E52;
        }


div:is(#list-container, #public_profile_container) .thumbnail-wrapper {
    position: relative;
    display: inline-flex;
    justify-content: center;
}
div:is(#list-container, #public_profile_container) .thumbnail-wrapper img {
    height: 46px;
    max-width: 100%;
}
div:is(#list-container, #public_profile_container) .thumbnail-wrapper img.custom-image {
    width: 46px;
    object-fit: cover;
    max-width: unset;
}

#sidebar-menu-wrapper {
    height: 43px;
    line-height: 35px;
    border-bottom: 1px solid #EFEFEF;
    width: 100%;
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    top: 30px;
    padding-top: 8px;
    background-color: var(--files-bg);
    z-index: 1;
}
div:is(#list-container, #public_profile_container).theme-dark #sidebar-menu-wrapper  {
    border-color: #000;
}

#sidebar-menu {
    width: 100%;
    padding-left: 15px;
    height: 100%;
    display: flex;
    flex-direction: row;
}
.sidebar-menu-button {
    padding: 0 15px;
    color: var(--files-text);
    height: 100%;
    text-align: center;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.left_menu-ai_analyze-visible #sidebar-aianalyze_button,
.left_menu-upload_info-visible #sidebar-info_button,
.left_menu-face_search-visible #sidebar-face_search_button {
    /* background: var(--files-bg); */
    position: relative;
    color: #407FF2;
    font-weight: bold;
    z-index: 1;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.left_menu-ai_analyze-visible #sidebar-aianalyze_button .tag,
.left_menu-upload_info-visible #sidebar-info_button .tag,
.left_menu-face_search-visible #sidebar-face_search_button .tag {
    font-weight: 700;
}
#sidebar-aianalyze_button .tag {
    margin-left: 10px;
}
.left_menu-ai_analyze-visible #sidebar-aianalyze_button:after,
.left_menu-upload_info-visible #sidebar-info_button:after,
.left_menu-face_search-visible #sidebar-face_search_button:after {
    content: "";
    border-bottom: 3px solid #407FF2;
    width: calc(100% - 30px);
    position: absolute;
    left: 15px;
    bottom: -1px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
#sidebar-face_search_button {

}

@property --buttonColor1 {
    syntax: '<color>';
    initial-value: #F23047;
    inherits: false;
}

@property --buttonColor2 {
    syntax: '<color>';
    initial-value:#fd6f04;
    inherits: false;
}

#ai_analyze {

}
    .ai_analyze-info {
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
        .ai_analyze-title {
            padding-bottom: 25px;
            font-size: 22px;
            font-weight: bold;
            line-height: 24px;
            color: var(--files-text);
        }
    
        .ai_analyze-desc {
            font-size: 14px;
            line-height: 16px;
            color: #737373;
        }

        div:is(#list-container, #public_profile_container).theme-dark .ai_analyze-desc {
           color: var(--files-btn-gray-border);
        }

        div:is(#list-container, #public_profile_container).theme-dark .ai_analyze-desc img {
            filter: brightness(2);
        }

        .ai_analyze-desc img {
            margin-bottom: 3px;
        }
        div:is(#list-container, #public_profile_container).theme-dark #ai_analyze .ai_analyze-desc img {
            display: inline-block;
            opacity: 0.7;
        }

        img + .ai_analyze-desc {
            padding-top: 25px;
        }
        /* .ai_analyze-button {
            
            padding: 0 30px;
            border: 1px solid var(--files-text);
            background-color: unset;
            height: 50px;
            color: var(--files-text);
            font-size: 16px;
            display: flex;
            border-radius: 10px;
            cursor: pointer;
            transition: color 0.5s, border-color 0.5s, --buttonColor1 0.5s, --buttonColor2 0.5s, bottom 0.5s ease;
            align-items: center;
            font-weight: bold;
            line-height: 18px;
            justify-content: center;
            text-align: center;
        }
        .ai_analyze-button:hover {
            background-color: unset;
            border-color: var(--files-btn-blue);
            color: var(--files-btn-blue);
        }
        .ai_analyze-button.gradient {
            color: var(--files-bg);
            border: unset;
            background: linear-gradient(130deg, var(--buttonColor1) 50% , var(--buttonColor2));
        }
        .ai_analyze-button.gradient:hover {
            --buttonColor1: #CC1026;
            --buttonColor2: #CC1026;
        }
        .ai_analyze-button.disabled {
            background: #cccccc;
            color: #666666;
            cursor: not-allowed;
            opacity: 0.6;
        } */
        .ai_vision_analyzer_button {
            margin: 40px auto 0;
            width: 100%;
        }
        .ai_vision_analyzer_button + .ai_vision_analyzer_button {
            margin-top: 10px;
        }

    #ai_vision_analyzer_progress_circle {
        --uib-size: 120px;
        --uib-stroke: 4px;
        --uib-color: black;
        --uib-speed: 1.5s;
        --uib-radius: calc(65px / 2 - var(--uib-stroke) / 2);
        --uib-bg-opacity: 0.1;
        --uib-track-opacity: 0.2;
        display: flex;
        align-items: center;
        justify-content: center;
        height: var(--uib-size);
        color: var(--files-text);
    }

        div:is(#list-container, #public_profile_container).theme-dark #ai_vision_analyzer_progress_circle {
            --uib-color: var(--files-text);
            --uib-bg-opacity: 0.2;
            --uib-track-opacity: 0.3;
        }

        .loader_svg {
            display: none;
        }

        #ai_vision_analyzer_progress_circle.spinning .loader_svg.spinner {
            display: block;
        }
        
        #ai_vision_analyzer_progress_circle.progress .loader_svg.precent {
            display: block;
        }
    
        #ai_vision_analyzer_progress_circle.spinning.progress .loader_svg.spinner .track {
            stroke: transparent;
        }

        #ai_vision_analyzer_progress_details {
            width: var(--uib-size);
            text-align: center;
        }



        .loader_svg {
            --uib-dash: 0;
            --uib-gap: calc(100 - var(--uib-dash));

            --uib-offset: 100;
            height: var(--uib-size);
            overflow: visible;
            transform-origin: center;
            width: var(--uib-size);
            will-change: transform;
            position: absolute;
        }

        .loader_svg .car {
            stroke: var(--uib-color);
            stroke-dasharray: var(--uib-dash), var(--uib-gap);
            stroke-linecap: round;
            transform: rotate(-90deg);
            transform-box: fill-box;
            transform-origin: center;
            opacity: var(--uib-track-opacity);
        }

        .loader_svg .car,
        .loader_svg .track {
            fill: none;
            transition: stroke .5s ease;
            stroke-width: var(--uib-stroke);
            r: var(--uib-radius);
        }

        .loader_svg .track {
            stroke: var(--uib-color);
            opacity: var(--uib-bg-opacity)
        }

        @keyframes rotate {
            to {
                transform: rotate(1turn)
            }
        }

        .loader_svg.spinner {
            --uib-dash: 15;
            animation: rotate var(--uib-speed) linear infinite; 
        }
        .loader_svg.precent .car {
            stroke-dasharray: 100;
            stroke-dashoffset: var(--uib-offset);
            stroke: url(#grad1);
            opacity: 1;
            transition: 0.5s ease;
        }

        #ai_vision_analyzer_progress_details {
            font-size: 22px;
            font-weight: bold;
            line-height: 30px;
        }

        #ai_vision_analyzer_progress_circle.progress #ai_vision_analyzer_progress_details {
            font-size: 20px;
            line-height: 20px;
        }

        #ai_vision_analyzer_progress_details_count {
            padding: 20px 0 30px 0;
            font-size: 14px;
            line-height: 16px;
            color: var(--files-text);
        }

        #ai_vision_analyzer_progress_container .ai_analyze-desc {
            width: 70%;
        }

        #ai_vision_analyzer_progress_container.complete  .analyze-carousel,
        #ai_vision_analyzer_progress_circle.spinning.progress .analyze-carousel {
            display: none;
        }
        .analyze-complete,
        .analyze-estimate {
            display: none;
        }
        #ai_vision_analyzer_progress_circle.spinning.progress .analyze-estimate {
            display: block;
        }
        #ai_vision_analyzer_progress_container.complete .analyze-complete {
            /* display: block; */
        }


        .analyze-carousel {
            position: relative;
            width: 100%;
            height: 48px;
            margin-bottom: 15px;
            padding: 0;
            line-height: 24px;
            display: flex;
            align-items: center;
            color: var(--files-text);
        }
        
        .analyze-carousel > * {
            width: 100%;
        }

        #ai_analyze.loading.only-faces .analyze-carousel > * {
            animation: unset;
        }
        #ai_analyze.loading.only-faces .analyze-carousel > *:first-child {
            opacity: 1;
        }
        
    #ai_vision_analyzer_button_container {

    }
        #ai_vision_analyzer_button_container img.dark_image {
            display: none;
        }
        div:is(#list-container, #public_profile_container).theme-dark #ai_vision_analyzer_button_container img {
            display: none;
        }
        div:is(#list-container, #public_profile_container).theme-dark #ai_vision_analyzer_button_container img.dark_image {
            display: block;
        }
        

#face_search-section {

}
    div:is(#list-container, #public_profile_container) #search_wrapper {
        padding: 0 20px 20px;
        border-bottom: 1px solid #EFEFEF;
    }

    @media only screen and (max-width: 620px) {
        div:is(#list-container, #public_profile_container) #search_wrapper {
            display: none;
        }
    }
    div:is(#list-container, #public_profile_container).theme-dark #search_wrapper {
        border-color: #000;
    }
    div:is(#list-container, #public_profile_container) #search_wrapper .face_search-title {
        padding: 25px 0 10px;
    }
    div:is(#list-container, #public_profile_container) .search_input {
        background-color: transparent;
        background-image: url(/images/UI_icons/search.svg);
        padding: 0 10px 0 calc(42px - var(--border-width));
        background-position-x: calc(12px - var(--border-width));
        background-position-y: center;
        background-repeat: no-repeat;
        background-size: 18px;
        width: 100%;
        font-size: 16px;
        height: 25px;
    }
    div:is(#list-container, #public_profile_container) .search_input.has_close {
        padding: 0 50px 0 42px;
    }

    div:is(#list-container, #public_profile_container).theme-dark .search_input  {
        background-image: url(/images/UI_icons/white/search.svg);
        color: #ffffff;
    }
    div:is(#list-container, #public_profile_container).theme-dark .search_input::placeholder  {
        color: #ffffff;
    }

    /* .search_input:focus::placeholder {
        color: #9A9A9A;
    } */
    div:is(#list-container, #public_profile_container) .search_input_close_button {
        display: none;
        position: absolute;
        top: 0;
        height: 50px;
        width: 50px;
        padding: 0;
        right: 0;
        background-image: url(/images/UI_icons/close.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-position-x: calc(100% - (50px - 15px)/2);
        background-size: 15px;
        cursor: pointer;
    }
    div:is(#list-container, #public_profile_container).theme-dark .search_input_close_button {
        background-image: url(/images/UI_icons/white/close.svg);
    } 
    div:is(#list-container, #public_profile_container).theme-dark .search_input {
        background-image: url(/images/UI_icons/white/search.svg);
    }

    .face_search-info {
        padding: 60px 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
        .face_search-title {
            padding-bottom: 25px;
            font-size: 16px;
            font-weight: bold;
            line-height: 20px;
            color: var(--files-text);
        }
        .face_search-title + .face_search-title {
            padding-top: 0;
        }
        .face_search-progress {
            padding: 25px 0;
        }
        .face_search-progress .percentage {
            font-size: 22px;
            font-weight: bold;
            line-height: 30px;
        }
        .face_search-progress .time {
            font-size: 14px;
            line-height: 16px;
            white-space: nowrap;
        }
        .face_search-desc {
            font-size: 14px;
            line-height: 16px;
            color: #737373;
        }

        .face_search-retry {
            margin: 40px auto 0;
            width: 100%;
        }
    #face_search-enabled_container {
        padding: 0 20px;
        max-height: calc(100dvh - var(--menu-height) - var(--tabs-height) - var(--search-height));
        height: auto;
        display: flex;
    }
    #left.header-hide #face_search-enabled_container {
        max-height: calc(100dvh - var(--tabs-height) - var(--search-height));
    }

    body.scrolled #face_search-enabled_container {
        max-height: calc(100dvh - var(--tabs-height));
    }

    body.scrolled #left.header-hide #face_search-enabled_container {
        height: 100dvh;
    }
        #ai_analyze .ai_analyze-info,
        #ai_analyze .face_search-info {
            padding: 60px 23px;
            display: none;
        }

        #ai_analyze:not(.has_people, .no_people, .losding ) #ai_vision_analyzer_button_container,
        #ai_analyze.has_people #face_search-has_people,
        #ai_analyze.no_people #face_search-no_people,
        #ai_analyze.loading #face_search-loading {
            display: flex;
        }
        #ai_analyze.has_people #face_search-has_people {
            display: flex;
            padding: 0;
            width: 100%;
            max-height: 100%;
            height: 100%;
            align-items: stretch;
            height: auto;
        }
        #ai_analyze.loading #ai_vision_analyzer_button_container {
            display: none;
        }
        #ai_analyze.loading #ai_vision_analyzer_progress_container {
            display: flex;
        }
        div:is(#list-container, #public_profile_container).theme-dark #ai_analyze.loading #face_search-loading {
            color: var(--files-bg);
        }
        #ai_analyze img.dark_image {
            display: none;
        }
        div:is(#list-container, #public_profile_container).theme-dark #ai_analyze img {
            display: none;
        }
        div:is(#list-container, #public_profile_container).theme-dark #ai_analyze img.dark_image {
            display: block;
        }
        #ai_analyze #face_search-has_people .face_search-title {
            padding: 25px 0 10px;
            text-align: left;
            padding-bottom: 15px;
        }
        #ai_analyze #face_search-has_people .face_search-desc {
            text-align: left;
            color: #737373;
            padding-bottom: 25px;
        }
        #face_search-persons_container_wrapper {
            /* max-height: 100%; */
            overflow: auto;
            padding: 7px;
            width: calc(100% + 14px);
            margin-left: -7px;
            box-sizing: border-box;
            /* flex: 1; */
        }
        #head__select-faces,
        #face_search-persons_container {
            display: grid;
            gap: 10px;
            grid-template-columns: repeat(auto-fill, minmax(62px, 1fr));
        }
            /* #head__select-faces {
                display: none;
            } */
            div:is(#list-container, #public_profile_container):not(.left_menu_visible).face-mode #head__select-faces {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
                padding-top: 20px;
            }
            .upload_person,
            .detected_person {
                cursor: pointer;
                border-radius: 50%;
                transition: 0.3s ease;
            }
            .upload_person:hover,
            .detected_person:hover {
                transform: scale(1.07);
            }
            #head__select-faces .detected_person:not(.selected) {
                display: none;
            }
            .detected_person.selected {
                border: 5px solid #407FF2;
                padding: 4px;
                position: relative;
            }
            #head__select-faces .detected_person.selected {
                border-width: 3px;
                padding: 3px;
                min-height: 45px;
            }
            
            .detected_person.selected:after {
                content: "";
                width: 29px;
                height: 29px;
                border-radius: 50%;
                position: absolute;
                top: -9px;
                right: -9px;
                background-color: #407FF2;
                box-sizing: border-box;
                background-image: url(/images/list/check.svg);
                background-repeat: no-repeat;
                background-position: center;
                background-size: cover;
                border: 4px solid white;
            }

            div:is(#list-container, #public_profile_container).theme-dark .detected_person.selected:after {
                border-color: #181818;
            }
           
            .detected_person.selected:hover:after {
                background-image: url(/images/list/remove.svg);
            }

            #head__select-faces .detected_person.selected:after {
                width: 21px;
                height: 21px;
                background-image: url(/images/list/remove.svg);
                border-width: 3px;
                top: -5px;
                right: -5px;
            }
            div:is(#list-container, #public_profile_container).theme-dark #head__select-faces .detected_person.selected:after {
                border-color: #181818;
            }
            .detected_person {
                aspect-ratio: 1;
                min-height: 62px;
                box-sizing: border-box;
                background-image: url(/images/list/user.svg);
                background-size: contain;
                background-repeat: no-repeat;
                background-clip: content-box;
            }

            /* Fallback */
            @supports not (aspect-ratio: 1) {
                .detected_person::before {
                      float: left;
                    padding-top:100%;
                    content: "";
                }
            
                .detected_person::after {
                    display: block;
                    content: "";
                    clear: both;
                }
            }

            .detected_person div {
                width: 100%;
                border-radius: 50%;
                object-fit: cover;
                box-sizing: border-box;
                height: 100%;
                background-size: contain;
                background-repeat: no-repeat;
                position: relative;
                aspect-ratio: 1;
                max-height: -webkit-fill-available;
            }

            #head__select-faces .detected_person div {
                /* border: 3px solid white; */
            }
            div:is(#list-container, #public_profile_container).theme-dark #head__select-faces .detected_person div {
                /* border-color: #181818; */
            }

            #face_search-persons_container .upload_person {
                background-image: url(/images/list/add_files.svg);
                background-repeat: no-repeat;
                background-position: center;
                background-size: 54%;
                border: 1px solid #E6E6E6;
            }

            #extend-faces {
                grid-column: 1/-1;
                padding-right: 23px;
                width: fit-content;
                font-size: 16px;
                font-weight: bold;
                height: 30px;
                display: flex;
                align-items: center;
                background: transparent url(/images/UI_icons/arrow_down.svg) no-repeat right center;
                cursor: pointer;
                background-size: 12px;
                transition: color 0.3s ease, background-image 0.3s ease;
                margin: 10px auto 10px;
            }
            #extend-faces:hover {
                color: #F23047;
                background-image: url(/images/UI_icons/red/arrow_down.svg);
            }

        #face_search-persons_actions {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            align-items: center;
        }
        div:is(#list-container, #public_profile_container).theme-dark #face_search-persons_actions {
            color: var(--files-bg);
        }
        #face_search-persons_search {
            display: none;
        }
        
            #face_search-persons_selected {
                font-size: 14px;
                line-height: 16px;
                font-weight: bold;
            }
            #face_search-persons_deselect {
                height: 30px;
                padding: 0 15px;
                background-color: #F1F6FE;
                display: flex;
                align-items: center;
                border-radius: 15px;
                color: #407FF2;
                font-size: 12px;
                cursor: pointer;
                transition: 0.5s ease;
                text-decoration: none;
            }
            #face_search-persons_deselect:hover {
                color: var(--files-bg);
                background-color: #407FF2;
            }
        @media only screen and (max-width: 620px) {
            #face_search-enabled_container {
                padding: 0 16px;
                max-height: calc(100dvh - var(--tabs-height));
            }
            #left.face-mode #face_search-persons_container_wrapper {
                padding-bottom: 90px;
            }
            #face_search-persons_actions {
                width: 100%;
                left: 0;
                position: fixed;
                bottom: 0;
                background: var(--files-bg);
                right: 0;
                z-index: 99999;
                padding: 13px 16px;
                box-shadow: 0 -10px 12px rgb(0 0 0 / 10%);
                top: unset;
                margin-bottom: 0;
                box-sizing: border-box;
                gap: 10px;
            }

            #face_search-persons_selected {
                display: none;
            }

            #face_search-persons_deselect,
            #face_search-persons_search {
                position: relative;
                padding: 0 15px;
                border-radius: 12px;
                min-height: 50px;
                font-size: 16px;
                display: flex;
                line-height: 21px;
                align-items: center;
                transition: background-color 0.5s ease, color 0.5s ease;
                background-color: #EBEBEB;
                
                color: var(--files-text);
                flex: 1;
                justify-content: center;
                font-weight: bold;
                text-align: center;
            }

            #face_search-persons_deselect {
                background-color: #EBEBEB;
                color: #242424 !important;
            }

            #face_search-persons_deselect:hover {
                background-color: #EBEBEB;
                color: #242424;
            }

            #face_search-persons_search {
                background: linear-gradient(130deg, var(--buttonColor1) 50% , var(--buttonColor2));
                color: var(--files-bg);
            }
            
            #face_search-persons_search:hover {
                --buttonColor1: #CC1026;
                --buttonColor2: #CC1026;
            }
        }

/* folder info */
#upload_info_image_details {
    padding: 10px 20px 20px;
    border-bottom: 2px solid #F1F3F4;
}
div:is(#list-container, #public_profile_container).theme-dark #upload_info_image_details  {
    border-color: #000;
}
    #upload_info_details {
        display: inline-block;
        width: 100%;
        list-style: none;
        margin: 0;
        margin-top: 10px;
        color: #969696;
    }
        #upload_info_details li {
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            line-height: 19px;
            font-size: 14px;
        }
        #upload_info_details li:last-child {
            margin-bottom: 0;
        }
            .upload_info_details_desc {
                display: inline-block;
                flex: 1;
            }
            .upload_info_details_icon {
                height: 14px;
                width: 14px;
                margin-right: 4px;
            }
            .upload_info_details_text {
                flex: 2;
                line-height: 16px;
                text-align: right;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
                word-break: break-word;
            }
            #upload_info_details a {
                color: #417FF2;
                display: block;
                width: 100%;
                line-height: 18px;
            }
    #upload_info_image {
        display: inline-block;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-shadow: 0px 0px 10px #75879c;
        background: #677c88;
        border-radius: 60px;
        height: 90px;
        width: 90px;
        text-align: center;
        position: absolute;
        top: 0;
        right: 20px;
        background-size: cover;
        background-position: center center;
    }
        #upload_info_image img {
            height: 42px;
            width: 42px;
            margin-top: 18px;
        }
        

/* folder description */    
#upload_description_edit {
    padding: 13px 0;
    border-bottom: 2px solid #F1F3F4;
    margin-bottom: 10px;
}
.list-menu-divider {
    margin-bottom: 14px;
    margin-top: 22px;
}
    .list-menu-divider .divider-line-container,
    #upload_description_edit .editable_field_edit_button {
        color: #2C3E52;
        text-align: left;
        display: block;
        font-size: 14px;
    }
        #upload_description_edit .editable_field_edit_button .editable_field_edit_button_text img {
            height: 10px;
            width: 20px;
            display: inline-block;
            vertical-align: bottom;
        }
        .editable_field_edit_button_text {
            position: relative;
            left: -4px;
        }
        .list-menu-divider .divider-line-container .divider-line .divider-line-contents .fa {
            margin-right: 4px;
        }
        
#list-view_upload-access-switch {
    border-bottom: 2px solid #F1F3F4;
}    
#list-view_upload-access-switch .upload-access-switch .upload-access-switch_type-wrapper .styled-select {
    min-height: unset;
    margin-top: 0;
}
#list-view_upload-access-switch .upload-access-switch .upload-access-switch_type-wrapper .styled-select div {
    min-height: unset;
}
div:is(#list-container, #public_profile_container).theme-dark #list-view_upload-access-switch  {
    border-color: #000;
}
div:is(#list-container, #public_profile_container).theme-dark .upload-access-switch * {
    color: #969696;
}
div:is(#list-container, #public_profile_container).theme-dark .upload-access-switch .upload-access-switch_type-wrapper .select-selected {
    color: #969696;
}
div:is(#list-container, #public_profile_container).theme-dark .upload-access-switch .upload-access-switch_type-wrapper .styled-select .select-items{
    background-color: #181818;
}

#upload_settings_table {
    border-bottom: 0;
    padding: 5px 20px 10px;
}
    #upload_settings_table td {
        padding: 5px;
        height: 15px;
        color: #2C3E52;
        font-size: 11px;
        vertical-align: middle;
        padding: 10px;
    }
    div:is(#list-container, #public_profile_container).theme-dark  #upload_settings_table td{
        color: #969696;
    }
    #upload_settings_table tr td {
        vertical-align: middle;
        font-size: 11px;
    }
    #upload_settings_table tr td:first-child {
        padding-right: 0;
        padding-left: 0;
    }
    #upload_settings_table tr td:nth-child(2) {
        padding-left: 6px;
        text-align: right;
    }
    #upload_settings_table tr td:nth-last-child(2) {
        width: 137px;
        text-align: right;
    }
    #upload_settings_table tr td:nth-last-child(2) img {
        margin-right: 5px;
        height: 12px;
    }
    #upload_settings_table tr td:last-child {
        padding-left: 0;
        padding-right: 0;
        font-size: 12px;
        text-align: right;
    }
    #upload_settings_table .toggle_option_container {
        display: inline-block;
    }

#left .inheritance_message {
    margin: 10px 20px 0;
    font-size: 9px;
    background-color: #EFF7FF;
    color: #6A7784;
    padding: 5px;
    border: 2px solid #D1E8FF;
    line-height: 12px;
    border-radius: 2px;
}
    #left .inheritance_message .fa-question-circle {
        color: #A3A3A3;
        font-size: 12px;
        float: right;
        line-height: 24px;
    }
    #left .inheritance_message a {
        text-decoration: none;
        font-weight: bold;
        color: #6A7784 !important;
        font-size: 9px;
        line-height: 12px;
    }

#left .blocked {
        cursor: default !important;
        position: relative;
        opacity: .5;
        pointer-events: none;
    }

#left .valid_to_date_user_set_date__wrapper input {
    box-sizing: border-box;
    min-height: 25px;
}


div:is(#list-container, #public_profile_container) .search_input_container {
    width: 100%;
    transition: width 0.5s ease;
    max-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}
    div:is(#list-container, #public_profile_container) .search_input {
        background-color: transparent;
        background-image: url(/images/UI_icons/search.svg);
        padding: 0 10px 0 42px;
        background-position-x: 12px;
        background-position-y: center;
        background-repeat: no-repeat;
        background-size: 18px;
        width: 100%;
        font-size: 16px;
        height: 25px;
        color: var(--files-text);
    }
    div:is(#list-container, #public_profile_container) .search_input::placeholder  {
        color: var(--files-text);
    }
    div:is(#list-container, #public_profile_container) .search_input.has_close {
        padding: 0 50px 0 42px;
    }

    div:is(#list-container, #public_profile_container).theme-dark .search_input  {
        background-image: url(/images/UI_icons/white/search.svg);
    }

    div:is(#list-container, #public_profile_container) .search_input_close_button {
        display: none;
        position: absolute;
        top: 0;
        height: 50px;
        width: 50px;
        padding: 0;
        right: 0;
        background-image: url(/images/UI_icons/close.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-position-x: calc(100% - (50px - 15px)/2);
        background-size: 15px;
        cursor: pointer;
    }
    div:is(#list-container, #public_profile_container).theme-dark .search_input_close_button {
        background-image: url(/images/UI_icons/white/close.svg);
    } 
	div:is(#list-container, #public_profile_container).theme-dark .search_input {
        background-image: url(/images/UI_icons/white/search.svg);
    }

.search_container,
.search_ai_container {
    border: 1px solid transparent;
    border-radius: 10px;
    height: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: border-color 0.5s ease;
    position: relative;
}

.search_container {
    display: none;
}

    div:is(#list-container, #public_profile_container) .search_container .search_input_container,
    div:is(#list-container, #public_profile_container) .search_ai_container .search_input_container {
        width: 105px;
        transition: width 0.5s ease;
        max-width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
    }

    div:is(#list-container, #public_profile_container) .search_container.expand .search_input_container,
    div:is(#list-container, #public_profile_container) .search_ai_container.expand .search_input_container {
        width: 300px;
    }

    div:is(#list-container, #public_profile_container) .search_container .search_input,
    div:is(#list-container, #public_profile_container) .search_ai_container .search_input {
        border: unset;
    }
    div:is(#list-container, #public_profile_container) .search_ai_container .upload_head_face.not_available {
        display: none;
    }
    div:is(#list-container, #public_profile_container) .search_ai_container .upload_head_face:not(.not_available) + .search_input_container {
        max-width: calc(100% - 50px);
    }

    div:is(#list-container, #public_profile_container) .search_ai_container .upload_head_face + .search_input_container .search_input {
        border-right: 1px solid transparent;
    }
    div:is(#list-container, #public_profile_container) .search_container.expand,
    div:is(#list-container, #public_profile_container) .search_ai_container.expand .upload_head_face:not(.not_available) + .search_input_container .search_input {
        border-color:#D9D9D9;
    }

    div:is(#list-container, #public_profile_container) .search_container .search_input::placeholder,
    div:is(#list-container, #public_profile_container) .search_ai_container .search_input::placeholder  {
        color: #242424;
    }

    div:is(#list-container, #public_profile_container) .search_container.expand .search_input::placeholder,
    div:is(#list-container, #public_profile_container) .search_ai_container.expand .search_input::placeholder  {
        color: #9a9a9a;
    }

    div:is(#list-container, #public_profile_container).theme-dark .search_container .search_input::placeholder,
    div:is(#list-container, #public_profile_container).theme-dark .search_ai_container .search_input::placeholder  {
        color: #fff;
    }

    div:is(#list-container, #public_profile_container).theme-dark .search_container .search_input::placeholder {
        color: #9a9a9a;
    }
    div:is(#list-container, #public_profile_container).theme-dark .search_container .search_input {
        background-image: url(/images/UI_icons/grey/search.svg);
    }

    div:is(#list-container, #public_profile_container) .search_container.expand,
    div:is(#list-container, #public_profile_container) .search_container:focus-within,
    div:is(#list-container, #public_profile_container) .search_ai_container.expand,
    div:is(#list-container, #public_profile_container) .search_ai_container:focus-within {
        border-color:#D9D9D9;
    }

    .search_container {
        height: 40px;
    }

    div:is(#list-container, #public_profile_container) .search_container.expand {
        position: absolute;
        right: 16px;
        left:  16px;
        background: #fff;
        z-index: 1;
    }

    div:is(#list-container, #public_profile_container).theme-dark .search_container.expand {
     background: #181818;
    }
    div:is(#list-container, #public_profile_container) .search_container.expand .search_input_container {
        width: 100%;
    }
    div:is(#list-container, #public_profile_container) .search_container .search_input_close_button {
        top: 0;
        height: 40px;
        width: 40px;
        background-size: 13px;
    }