/*div {
    overflow: auto;
}*/

div::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

div::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: #F5F5F5;
}

div::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #555;
}

.close_window {
    position: absolute;
    right: 32px;
    top: -3px;
    width: 32px;
    height: 32px;
    opacity: 0.3;
}

    .close_window:hover {
        opacity: 1;
    }

    .close_window:before, .close_window:after {
        position: absolute;
        left: 15px;
        content: ' ';
        height: 33px;
        width: 2px;
        background-color: #fff;
    }

    .close_window:before {
        transform: rotate(45deg);
    }

    .close_window:after {
        transform: rotate(-45deg);
    }

.pageDropdown {
    position: absolute;
    top: 7px;
    right: 20px;
}

.selected {
    background-color: var(--x2c-selected-color);
}



.repo_selection {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #252526;
    width: 600px;
    max-height: 600px;
    box-shadow: -14px 16px 15px -10px rgba(50,50,50,0.1);
}

    .repo_selection > button {
        padding-left: 10px;
        padding-bottom: 5px;
        text-align: left;
    }

        .repo_selection > button:hover, .tabDetail:hover {
            background-color: #007fd4;
        }

.tabDetail:hover {
    width: auto;
}

.ui_text {
    font-family: "Segoe UI";
    color: #dedede;
}

    .ui_text > h1 {
        font-size: 16px;
    }

    .ui_text > span {
        padding-left: 5px;
    }

.selection_title {
}

.selection_subtitle {
    opacity: 0.3;
    font-size: 6px;
}

.image_center {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#typing {
    display: flex;
}

    #typing > h2 {
        font-family: "Segoe UI";
        overflow: hidden; /* Ensures the content is not revealed until the animation */
        border-right: .15em solid #007fd4; /* The typwriter cursor */
        white-space: nowrap; /* Keeps the content on a single line */
        margin: 0 auto; /* Gives that scrolling effect as the typing happens */
        letter-spacing: .15em; /* Adjust as needed */
        animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
    }

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
    from, to {
        border-color: transparent
    }

    50% {
        border-color: #007fd4;
    }
}

.flex-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#explorer_content {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
}


.rz-fileupload-buttonbar {
    position: relative;
    background-color: transparent;
    padding: 3px;
    border-radius: 4px;
    width: fit-content;
}

.rz-splitter-horizontal > .rz-splitter-bar {
    flex-direction: column;
    width: 5px;
    background-color: var(--x2c-border-color);
}



/*.rz-fileupload-choose {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    background-color: #479cc8;
    color: #ffffff;
}*/

/*.rz-button {
    background-color: #6d5de0;
    width: 50px;
}*/

.rz-treenode-content .rz-treenode-label {
    padding: 0px;
}

.rz-chkbox-box {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--x2c-border-color);
    border-radius: 4px;
    box-shadow: inset 0 4px 3px 0 rgba(0, 0, 0, 0.03);
    background-color: transparent;
    border-color: var(--x2c-border-color);
}

    .rz-chkbox-box.rz-state-active {
        background-color: var(--x2c-selected-color);
        border: 1px solid var(--x2c-border-color);
    }

.rz-treenode-label {
    border: none;
    border-style: none;
    margin-top: 0px;
    flex: auto;
    border-color: var(--x2c-border-color);
    border-left-style: outset;
    border-left-width: 1px;
}

.rz-treenode-content-selected .rz-treenode-label {
    border: none;
    color: var(--x2c-text-color);
    border-color: var(--x2c-border-color);
    border-left-style: outset;
    border-left-width: 1px;
    flex: auto;
}


/*.rz-treenode {
    padding-left: 2px;
}*/

.rz-treenode-label {
    font-size: 14px;
}

.rz-treenode-content .rz-treenode-label {
    padding: 0px;
    margin-top: -1px;
}

.active {
    background-color: var(--x2c-selected-color); /* Add an active/current color */
}

.break {
    flex-basis: 100%;
    height: 0;
}

/*-----------------DIALOG WINDOW-----------------*/


.dialog, .dialog_consent, .dialog_savenew, .dialog_upgradeplan {
    display: flex;
    flex-direction: column;
    background-color: var(--x2c-bg-color);
    color: var(--x2c-text-color);
    width: 600px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 10px;
    border: 1px solid var(--x2c-border-color);
    padding: 1.5rem;
    margin: 1.75rem;
}

.dialog {
    height: auto;
}

.dialog_upgradeplan {
    height: auto;
    width: 40%;
}

.dialog_consent {
    height: 200px;
}

.dialog_title {
    background-color: var(--x2c-border-color);
    height: 20%;
    justify-content: center;
    align-items: center;
}

.dialog_corps, .dialog_corps_consent {
    display: flex;
    flex-direction: column;
    background-color: var(--x2c-bg-color);
    position: relative;
}

.dialog_corps_consent {
    height: 100px;
}

.dialog_savenew {
    height: 250px;
}

.bm-close {
    color: lightgrey !important;
}

.dialog_corps {
    height: 500px;
}

.dialog_input {
    background-color: var(--x2c-bg-color);
    color: var(--x2c-text-color);
    border: none;
}

    .dialog_input:focus {
        outline: none;
    }

.dialog_select {
    width: 9%;
    outline: none;
    appearance: none;
    border: none;
    padding: 0;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
    background-color: var(--x2c-bg-color);
    color: #007fd4;
    text-decoration: underline;
}

    .dialog_select > option {
        background-color: var(--x2c-bg-color);
        color: grey;
    }

.valid.modified:not([type=checkbox]) {
    outline: none;
}

.invalid {
    outline: none;
}
/*-----------------DIALOG WINDOW END-------------*/

/*----------------- FILE DRAGZONE -------------*/
.file-drop-zone {
    display: flex;
    width: 100%;
    border: 1px dotted #6f7172;
    align-items: center;
    margin-bottom: 1px;
}

.hover {
    border: 1px dotted #6f7172;
    background-color: #673ab7;
}

.image-container {
    display: flex;
    justify-content: center;
}

    .image-container img {
        width: 50%;
    }

::deep input[type=file] {
    width: 100%;
    padding: 8px;
}

.error-message-container {
    color: red;
    text-align: center;
}

.fa {
    color: var(--x2c-text-color);
}
/*----------------- FILE DRAGZONE END -------------*/