@font-face {
    font-family: "Toyota Regular";
    src:
        url(/font/ToyotaType-Book.woff2) format("woff2"),
        url(/font/ToyotaType-Book.woff) format("woff");
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}
body {
    font-family: "Toyota Regular" !important;
}
.dashboard-page {
    display: flex;
}
.side-menu {
    width: 20%;
    /* height: calc(100vh - 70px); */
    height: 84vh;
    background-color: white;
    padding-left: 30px;
    position: fixed;
    top: 70px;
}
/* .side-menu-inner{
      min-width: 300px;
} */
.regular-icon {
    font-size: 20px;
    color: #31393c;
}
.regular-icon.gray {
    color: #8b8b8b;
    /* font-size: 16px; */
}
.regular-icon.dark-gray {
    /* color:#31393c!important; */
    color: #282830 !important;
}
.page-content {
    width: 80%;
    padding: 10px;
    position: absolute;
    right: 0px;
    top: 65px;
    background-color: #f3f4f6;
    min-height: 100vh;
}
.side-menu-header {
    border-bottom: 1px solid #dfdfdf;
    padding: 10px 0px;
    display: flex;
}
.close-side-panel {
    margin-left: auto;
    margin-right: 20px;
    /* color: #31393c; */
    color: #282830;
    font-size: 18px;
}
.close-side-panel:hover {
    cursor: pointer;
}
.side-menu-list {
    margin-top: 30px;
    border-bottom: 1px solid #dfdfdf;
    font-size: 15px;
    overflow: scroll;
    height: 100%;
}
.side-menu-list-item {
    padding: 5px 0px;
    min-width: 230px;
}
/* .side-menu-list-item-header{
    min-width: 200px;
} */
.side-menu-list-item-child
    .side-menu-list-item
    .side-menu-list-item-header
    .dark-gray {
    color: #8b8b8b;
}
/* .root-path{
    height: 30px;
    transition:all 0.4s ease-in-out ;
}
.open-accordion{
    height: auto;
} */
.open-accordion .side-menu-list-item-child {
    display: block;
    opacity: 1;
}
.open-accordion .side-menu-list-item-header .arrow-down-icon .regular-icon {
    transform: rotate(180deg);
    transition: transform 0.3s ease-in-out;
}
.side-menu-list-item-child {
    margin-left: 35px;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
.side-menu-list-item-header {
    width: 100%;
    display: flex;
    align-items: center;
    margin-right: 10px;
}
.side-menu-list-item-header:hover {
    cursor: pointer;
}
.arrow-down-icon {
    display: inline-block;
    margin-left: auto;
}
.folder-icon-container {
    margin-right: 10px;
}
.tree-folder-name {
    /* color:black; */
    color: #282830;
}
.tree-folder-name a:hover {
    color: unset;
}
.page-settings {
    /* background-color: white; */
    display: flex;
    justify-content: end;
    align-items: center;
    /* padding: 10px; */
    font-size: 11px;
    margin-bottom: 10px;
}
.page-settings-item {
    margin-left: 10px;
    /* margin-left: auto; */
}
.folder-view {
    /* background-color: white; */
    width: 100%;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
}
.folder-file {
    background-color: white;
    width: 200px;
    height: 200px;
    margin-right: 10px;
    margin-bottom: 10px;
    position: relative;
    -webkit-box-shadow: 4px 4px 5px 0px rgba(194, 194, 194, 1);
    -moz-box-shadow: 4px 4px 5px 0px rgba(194, 194, 194, 1);
    box-shadow: 4px 4px 5px 0px rgba(194, 194, 194, 1);
}
.folder-file-icon {
    width: 100%;
    height: 80%;
    background-color: #e7e7e7;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
}
.folder-file-icon img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.folder-file-title {
    /* display: flex;
    justify-content: center;
    align-items: center;
    height: 20%;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 90%; */
    height: 20%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    /* width: 90%; */
    line-height: 35px;
    text-align: center;
    padding: 5px;
}
.details-icon {
    position: absolute;
    right: 10px;
    top: 10px;
}
.details-icon:hover {
    cursor: pointer;
}
.details-panel {
    position: absolute;
    background-color: white;
    font-size: 13px;
    padding: 10px;
    width: 100%;
    margin: 0 auto;
    /* display: none; */
    opacity: 0;
    transition: all 0.4s ease-in-out;
}
.folder-file:hover .details-panel {
    /* display: block; */
    opacity: 1;
}
.details-panel-item {
    border-bottom: 1px solid #dfdfdf;
    padding: 2px 0px;
}
.details-panel-item a:hover {
    color: unset;
}
.close-details-panel {
    text-align: right;
}
.close-details-panel:hover {
    cursor: pointer;
}
#search {
    width: 200px;
    height: 32px;
    outline: none;
    border: 1px solid #dfdfdf;
    border-radius: 4px;
}
#search:focus {
    border: none !important;
    box-shadow: none !important;
}
.search-cta {
    background-color: red;
    color: white;
}
#search[placeholder] {
    font-style: italic;
    font-size: 12px;
}
.profile-cta {
    border: none !important;
}
.profile-icon {
    margin-right: 3px;
}

.mobile-menu-icon {
    margin-right: auto;
    display: none;
}
.closePanelCta {
    display: none;
}
@media screen and (max-width: 1100px) {
    .dashboard-page {
        flex-direction: column;
    }
    .side-menu {
        /* display: none; */
        position: absolute;
        top: 20px;
        margin-left: -100%;
        transition: all 0.4s ease-in-out;
    }
    .side-menu.openPanel {
        z-index: 100000;
        width: 50%;
        margin-left: 0%;
        transition: all 0.4s ease-in-out;
    }
    .page-content {
        width: 100%;
    }
    .mobile-menu-icon {
        display: block;
    }
    .closePanelCta {
        display: block;
    }
}
.page-link:focus {
    outline: none;
    box-shadow: none;
}
.page-link {
    color: #212529;
}
.upload-cta {
    /* background-color: #101214; */
    background-color: #282830;
    border-color: unset !important;
}
.mobile-side-panel {
    font-size: 17px;
    margin-bottom: 20px;
}
@media screen and (max-width: 660px) {
    .page-settings {
        flex-wrap: wrap;
    }
    .page-settings-item.cta-item {
        width: 30%;
        margin-top: 10px;
        text-align: center;
    }
    #search {
        width: 400px;
    }
    .side-menu.openPanel {
        width: 90%;
        height: 100vh;
        position: fixed;

        top: 0px;
    }
    .close-side-panel {
        display: inline-block;
        position: absolute;
        right: 0px;
        top: 15px;
        margin-right: 10px;
    }
    #exampleModalCenterPreview .modal-dialog {
        max-width: 100% !important;
    }
}
@media screen and (max-width: 500px) {
    .page-settings-item.cta-item span {
        font-size: 11px;
    }
    #search {
        width: 355px;
    }
    .folder-file {
        width: 100%;
        height: 300px;
        margin-right: 0px;
    }
}

.progress-container {
    margin-top: 10px;
    width: 100%;
    height: 20px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    width: 0%;
    background: #4caf50;
    text-align: center;
    line-height: 16px;
    color: white;
    font-size: 12px;
}
.hideMsg {
    display: none;
}
.folder-properties {
    display: none;
}
.breadcrumb-item {
    font-size: 12px;
}
.singleFileInfo {
    border-bottom: 1px solid lightgrey;
    padding-bottom: 5px;
    margin-top: 5px;
}
.uploadFileName {
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 70%;
}
.uploadFileSize {
    color: #838383;
    font-size: 13px;
    margin-left: auto;
}
.uploadFileIcon {
    font-size: 20px;
    margin-right: 5px;
}
.progressBarAnimation {
    transition: 0.8s ease-in-out;
}
.singleFileInfoData {
    display: flex;
}
.removeFile {
    margin-left: 10px;
}
.removeFile:hover {
    cursor: pointer;
}
.singleFileError {
    font-size: 13px;
}
#exampleModalCenterPreview .modal-dialog {
    max-width: 60%;
}
.targetPreview {
    margin: 0 auto;
}
.highlight-folder {
    background-color: #e9ecef;
    padding-left: 5px;
    font-weight: bold;
}
.custom-mr-5 {
    margin-right: 5px;
}
.cta-item:hover {
    cursor: pointer;
    background-color: #212529;
    color: white;
    transition: all 0.4s ease-in-out;
}
.cta-item {
    /* background-color: #212529; */
    /* background-color: #282830;
    color: white; */
    border: 1px solid #828487;
    color: #212529;
    padding: 5px 10px;
    border-radius: 4px;
}
a:hover {
    text-decoration: none !important;
}
.shareLinkContainer {
    background-color: #ededed;
    display: flex;
    padding: 10px;
}
.shareLinkCtaIcon {
    /* border: 1px solid black; */
    border: 1px solid #282830;
    margin-left: auto;
    display: inline-block;
    color: white;
    /* background-color: black; */
    background-color: #282830;
    padding: 3px 10px;
    font-size: 13px;
}
.shareLinkCtaIcon:hover {
    cursor: pointer;
}
.shareLink {
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 70%;
}
.page-title {
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    margin-top: 30px;
}
.faq-item {
    background-color: white;
    width: calc(33% - 30px);
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
    text-align: center;
    flex-direction: column;
    margin-bottom: 30px;
}
.faq-item span {
    display: block;
    font-size: 30px;
    font-weight: bold;
}
.faq {
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap;
}

.accordion-button {
    display: flex;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    padding-right: 1.5rem;
}

.arrow {
    transition: transform 0.3s ease;
}

.collapsed .arrow {
    transform: rotate(-90deg); /* Closed: points right */
}
.btn.focus,
.btn:focus {
    box-shadow: none;
}
.accordion-button {
    /* color: black; */
    color: #282830;
    font-weight: bold;
}
.accordion-button:hover {
    color: black;
}
.errorToast .toast .toast-header {
    background-color: #c30707;
    color: white;
}
.toast .toast-header {
    background-color: #619d61;
    color: white;
}
.navigation-position {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 10;
}
.app-logo {
    position: absolute;
    left: 30px;
    top: 15px;
    font-size: 25px;
    color: #424d58;
}
.login-cover {
    background-image: url("/img/africa-cover.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
}
.wikiPage {
    color: #424d58;
}
.wikiPage .fa-hubspot {
    font-weight: bold;
}
#removeFileCta {
    background-color: #b70d0d;
}
.targetFileFlex {
    display: flex;
    align-items: center;
    color: #6c757d;
}
.targetFileFlex .fa-solid {
    margin-right: 5px;
}
.empLogo {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 30px;
}
.side-menu-logo {
    width: 125px;
}
#uploadCta,
#createFolderCta,
#updateRootFolderCta:hover {
    background-color: #282830;
}
.toyota-logo {
    height: 40px;
    margin: 0 auto;
}

/* .root-path{
    border-bottom: 1px solid #dfdfdf;
} */

.renameCta {
    display: block;
}
#deleteFolderCta {
    background-color: #c14848;
}
#deleteFolderCta:hover {
    background-color: #c14848;
}
.deleteFolderCta {
    display: block;
}
.collapse.show {
    visibility: visible;
}
.cta-item a:hover {
    color: unset;
}
.copyFolderCta {
    display: block;
}
.pasteFolderContainer {
    display: none;
}

.side-menu-list-children {
    display: none;
}

/* deca su vidljiva samo ako je roditelj u aktivnom branch-u */
.side-menu-list-item.open-accordion > .side-menu-list-children {
    display: block;
}

.search-container {
    margin-right: auto;
    margin-left: 0px;
}
.dashboard-link {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}
.dashboard-link:hover {
    color: unset;
}

.danger-cta-custom {
    background-color: #c14848;
    color: white;
    border: 1px solid #552626;
}
.error-404 {
    width: 100%;
    background-color: white;
    height: calc(100vh - 70px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.error-404 h2 {
    font-size: 30px;
    color: #8b8b8b;
}
.error-404 img {
    width: 150px;
}
.wiki-cta {
    background-color: #282830;
    color: white;
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    margin-top: 20px;
}
.wiki-cta:hover {
    color: white;
}
.metadata-container {
    display: flex;
    align-items: baseline;
}
.meta-section {
    font-weight: bold;
    font-size: 14px;
    border-bottom: 1px solid black;
    padding: 5px 0px;
}
.meta-list-item {
    font-size: 13px;
}
.meta-list-item span {
    color: #888a8d;
}
.meta-container-left {
    width: 48%;
}
.meta-container-right {
    width: 50%;
}

.fa-circle-info {
    color: #b3b3b3;
}
.file-tool-bar {
    margin-bottom: 15px;
    text-align: right;
}
.file-cta {
    border: 1px solid #828487;
    color: #212529;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    transition: all 0.4s ease-in-out;
}
.file-cta:hover {
    background-color: #212529;
    color: white;
}
.pasteCta {
    display: none;
}
.pasteCta.showCta {
    display: inline-block;
}

/**List view**/

.folder-view.list-view {
    display: block;
}

.folder-view.list-view .folder-file {
    width: 100%;
    display: flex;
    height: auto;
}

.folder-view.list-view .folder-file:hover .details-panel {
    display: none;
}
.folder-view.list-view .folder-file .details-panel {
    transition: none !important;
    display: none;
}
.folder-view.list-view .folder-file .details-panel:hover {
    display: block;
    opacity: 1;
    position: absolute;
    background-color: white;
    font-size: 13px;
    padding: 10px;
    right: 0;
    width: 200px;
    transition: none !important;
    z-index: 10000;
}
.folder-view.list-view .folder-file .details-icon:hover + .details-panel {
    display: block;
    opacity: 1;
    position: absolute;
    background-color: white;
    font-size: 13px;
    padding: 10px;
    right: 0;
    width: 200px;
    transition: none !important;
    z-index: 10000;
}

.folder-view.list-view .folder-file .folder-file-icon {
    width: 100px;
    height: 50px;
    font-size: 25px;
}
.folder-view.list-view .folder-file .folder-file-icon img {
    width: 80%;
    height: 80%;
}

/* .folder-view.list-view .folder-file .folder-file-size,
.folder-file-type,
.folder-file-id {
    display: block;
}
.folder-view .folder-file .folder-file-size,
.folder-file-type,
.folder-file-id {
    display: none;
} */
.folder-view.list-view .folder-file .folder-file-size,
.folder-view.list-view .folder-file .folder-file-type,
.folder-view.list-view .folder-file .folder-file-id {
    display: block;
}

.folder-view .folder-file .folder-file-size,
.folder-view .folder-file .folder-file-type,
.folder-view .folder-file .folder-file-id {
    display: none;
}

.folder-view.list-view .folder-file .folder-file-size,
.folder-file-type,
.folder-file-id {
    height: 20%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 35px;
    text-align: center;
    padding: 5px;
    border-right: 1px solid #e7e7e7;
    width: 200px;
    text-transform: uppercase;
}
.folder-view.list-view .folder-file .folder-file-title {
    width: 30%;
    border-right: 1px solid #e7e7e7;
    text-align: left;
}
.custom-grid {
    font-size: 12px;
    /* margin-left: auto; */
    display: flex;
}
.list-tab,
.grid-tab {
    background-color: #bfbfbf;
    width: 30px;
    height: 20px;
    text-align: center;
}
.list-tab:hover {
    cursor: pointer;
    background-color: #282830;
    color: white;
}
.grid-tab:hover {
    cursor: pointer;
    background-color: #282830;
    color: white;
}
.list-tab {
    /* border-right: 1px solid black; */
}

.layout-cta.active {
    background-color: #282830;
    color: white;
}
.header-list-view {
    display: none;
}
.header-list-view.active {
    display: flex;
}
.header-list-view-size,
.header-list-view-id,
.header-list-view-type {
    width: 200px;
    border-right: 1px solid #d0d3d5;
    /* padding-left: 5px; */
    padding: 5px 5px;
    font-size: 15px;
    font-weight: bold;
}
.header-list-view-img {
    width: 100px;
    /* padding-left: 5px; */
    padding: 5px 5px;
    border-right: 1px solid #d0d3d5;
}
.header-list-view-type {
    text-align: center;
}
.header-list-view-size {
    text-align: center;
}
.header-list-view-id {
    text-align: center;
}
/* .header-list-view-id {
    width: 200px;
} */
.header-list-view-title {
    width: 30%;
    border-right: 1px solid #d0d3d5;
    /* padding-left: 5px; */
    padding: 5px 5px;
    font-size: 15px;
    font-weight: bold;
}
/****/
.multi-select {
    position: absolute;
    top: 0px;
    left: 10px;
    z-index: 100000000;
}
.multi-select-toggle {
    margin-right: 10px;
    font-size: 13px;
    margin-left: auto;
}
.multi-select-toggle:hover {
    cursor: pointer;
}

.details-panel.disabled {
    display: none;
}
.multi-select.disabled {
    display: none;
}
.multi-download-toggle {
    margin-right: 10px;
    font-size: 13px;
    display: none;
}
.multi-download-toggle.active {
    display: block;
}
.multi-download-toggle:hover {
    cursor: pointer;
}
