/**
 * FOSSID AB CONFIDENTIAL
 *
 * Copyright (c) 2016 FOSSID AB. All Rights Reserved.
 *
 * All information contained herein is proprietary to FOSSID AB and
 * confidential and is protected under applicable laws and international
 * treaties.
 *
 * ANY DISCLOSURE, REPRODUCTION, MODIFICATION, DISTRIBUTION OR USE OF THIS
 * INFORMATION, INCLUDING SOURCE CODE CONTAINED HEREIN, IN WHOLE OR IN PART,
 * WITHOUT THE EXPRESS WRITTEN CONSENT OF FOSSID AB IS STRICTLY PROHIBITED, AND
 * IN VIOLATION OF APPLICABLE LAWS AND INTERNATIONAL TREATIES.
 */

/* GENERAL */

@import './comments.css';

.allow_selection {
    -webkit-touch-callout: auto;
    -webkit-user-select: auto;
    -khtml-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}


.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}


.force-select {
    -webkit-user-select: all;
    /* Chrome 49+ */
    -moz-user-select: all;
    /* Firefox 43+ */
    -ms-user-select: all;
    /* No support yet */
    user-select: all;
    /* Likely future */
}

@font-face {
    font-family: FOSSIdFont;
    src: local("OpenSans"),
        local("OpenSans"),
        url(../external/open-sans/OpenSans-Light.ttf);
}


@font-face {
    font-family: roboto, Gill Sans, Calibri, sans-serif;
    src: local("OpenSans"),
        local("OpenSans"),
        url(../external/open-sans/OpenSans-Light.ttf);
}


pre {
    white-space: pre-wrap;
}

.cssload-box-loading {
    width: 88px;
    height: 88px;
    margin: auto;
    position: relative;
    margin-top: 20%;
}

.cssload-box-loading:before {
    content: '';
    width: 88px;
    height: 9px;
    background: rgba(56, 116, 255, 0.61);
    opacity: 0.1;
    position: absolute;
    top: 103px;
    left: 0;
    border-radius: 50%;
    animation: shadow 0.395s linear infinite;
    -o-animation: shadow 0.395s linear infinite;
    -ms-animation: shadow 0.395s linear infinite;
    -webkit-animation: shadow 0.395s linear infinite;
    -moz-animation: shadow 0.395s linear infinite;
}

.cssload-box-loading:after {
    content: '';
    width: 88px;
    height: 88px;
    background: rgb(56, 116, 255);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    animation: cssload-animate 0.395s linear infinite;
    -o-animation: cssload-animate 0.395s linear infinite;
    -ms-animation: cssload-animate 0.395s linear infinite;
    -webkit-animation: cssload-animate 0.395s linear infinite;
    -moz-animation: cssload-animate 0.395s linear infinite;
}

.floating_background_disabler {
    position: fixed;
    width: 100%;
    height: inherit;
    z-index: 50;
    background: rgba(49, 56, 60, 0.75);
    top: 0;
    left: 0;
}

@keyframes cssload-animate {
    17% {
        border-bottom-right-radius: 5px;
    }

    25% {
        transform: translateY(16px) rotate(22.5deg);
    }

    50% {
        transform: translateY(32px) scale(1, 0.9) rotate(45deg);
        border-bottom-right-radius: 70px;
    }

    75% {
        transform: translateY(16px) rotate(67.5deg);
    }

    100% {
        transform: translateY(0) rotate(90deg);
    }
}

@-o-keyframes cssload-animate {
    17% {
        border-bottom-right-radius: 5px;
    }

    25% {
        -o-transform: translateY(16px) rotate(22.5deg);
    }

    50% {
        -o-transform: translateY(32px) scale(1, 0.9) rotate(45deg);
        border-bottom-right-radius: 70px;
    }

    75% {
        -o-transform: translateY(16px) rotate(67.5deg);
    }

    100% {
        -o-transform: translateY(0) rotate(90deg);
    }
}

@-ms-keyframes cssload-animate {
    17% {
        border-bottom-right-radius: 5px;
    }

    25% {
        -ms-transform: translateY(16px) rotate(22.5deg);
    }

    50% {
        -ms-transform: translateY(32px) scale(1, 0.9) rotate(45deg);
        border-bottom-right-radius: 70px;
    }

    75% {
        -ms-transform: translateY(16px) rotate(67.5deg);
    }

    100% {
        -ms-transform: translateY(0) rotate(90deg);
    }
}

@-webkit-keyframes cssload-animate {
    17% {
        border-bottom-right-radius: 5px;
    }

    25% {
        -webkit-transform: translateY(16px) rotate(22.5deg);
    }

    50% {
        -webkit-transform: translateY(32px) scale(1, 0.9) rotate(45deg);
        border-bottom-right-radius: 70px;
    }

    75% {
        -webkit-transform: translateY(16px) rotate(67.5deg);
    }

    100% {
        -webkit-transform: translateY(0) rotate(90deg);
    }
}

@-moz-keyframes cssload-animate {
    17% {
        border-bottom-right-radius: 5px;
    }

    25% {
        -moz-transform: translateY(16px) rotate(22.5deg);
    }

    50% {
        -moz-transform: translateY(32px) scale(1, 0.9) rotate(45deg);
        border-bottom-right-radius: 70px;
    }

    75% {
        -moz-transform: translateY(16px) rotate(67.5deg);
    }

    100% {
        -moz-transform: translateY(0) rotate(90deg);
    }
}

@keyframes shadow {

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

    50% {
        transform: scale(1.2, 1);
    }
}

@-o-keyframes shadow {

    0%,
    100% {
        -o-transform: scale(1, 1);
    }

    50% {
        -o-transform: scale(1.2, 1);
    }
}

@-ms-keyframes shadow {

    0%,
    100% {
        -ms-transform: scale(1, 1);
    }

    50% {
        -ms-transform: scale(1.2, 1);
    }
}

@-webkit-keyframes shadow {

    0%,
    100% {
        -webkit-transform: scale(1, 1);
    }

    50% {
        -webkit-transform: scale(1.2, 1);
    }
}

@-moz-keyframes shadow {

    0%,
    100% {
        -moz-transform: scale(1, 1);
    }

    50% {
        -moz-transform: scale(1.2, 1);
    }
}



@keyframes cssload-fold-thecube {

    0%,
    10% {
        transform: perspective(136px) rotateX(-180deg);
        opacity: 0;
    }

    25%,
    75% {
        transform: perspective(136px) rotateX(0deg);
        opacity: 1;
    }

    90%,
    100% {
        transform: perspective(136px) rotateY(180deg);
        opacity: 0;
    }
}

@-o-keyframes cssload-fold-thecube {

    0%,
    10% {
        -o-transform: perspective(136px) rotateX(-180deg);
        opacity: 0;
    }

    25%,
    75% {
        -o-transform: perspective(136px) rotateX(0deg);
        opacity: 1;
    }

    90%,
    100% {
        -o-transform: perspective(136px) rotateY(180deg);
        opacity: 0;
    }
}

@-ms-keyframes cssload-fold-thecube {

    0%,
    10% {
        -ms-transform: perspective(136px) rotateX(-180deg);
        opacity: 0;
    }

    25%,
    75% {
        -ms-transform: perspective(136px) rotateX(0deg);
        opacity: 1;
    }

    90%,
    100% {
        -ms-transform: perspective(136px) rotateY(180deg);
        opacity: 0;
    }
}

@-webkit-keyframes cssload-fold-thecube {

    0%,
    10% {
        -webkit-transform: perspective(136px) rotateX(-180deg);
        opacity: 0;
    }

    25%,
    75% {
        -webkit-transform: perspective(136px) rotateX(0deg);
        opacity: 1;
    }

    90%,
    100% {
        -webkit-transform: perspective(136px) rotateY(180deg);
        opacity: 0;
    }
}

@-moz-keyframes cssload-fold-thecube {

    0%,
    10% {
        -moz-transform: perspective(136px) rotateX(-180deg);
        opacity: 0;
    }

    25%,
    75% {
        -moz-transform: perspective(136px) rotateX(0deg);
        opacity: 1;
    }

    90%,
    100% {
        -moz-transform: perspective(136px) rotateY(180deg);
        opacity: 0;
    }
}


.sk-rotating-plane {
    width: 40px;
    height: 40px;
    background-color: #333;
    margin: 40px auto;
    -webkit-animation: sk-rotatePlane 1.2s infinite ease-in-out;
    animation: sk-rotatePlane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotatePlane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }

    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

@keyframes sk-rotatePlane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }

    100% {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}


.sk-double-bounce {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 40px auto;
}

.sk-double-bounce .sk-child {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #009603;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-doubleBounce 2s infinite ease-in-out;
    animation: sk-doubleBounce 2s infinite ease-in-out;
}

.sk-double-bounce .sk-double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-doubleBounce {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-doubleBounce {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


.title1 {
    font-size: 15px;
}

.globalformcontainer {
    height: 100vh;
    padding-top: 0px;
}

/* LAYOUT */

a {
    text-decoration: none;
}

a:link,
a:visited {
    color: #3B7399;
}

a:hover {
    color: #5B7D62;
}

a img {
    border: 0;
    outline: none;
}

.custom_anchor {
    color: #3a77d8;
    cursor: pointer;
}

.custom_anchor:hover {
    text-decoration: underline;
}

.max-z-index {
    z-index: 51;
}

.super-max-z-index {
    z-index: 52;
}

.all-width {
    width: 100%;
}

.all-height {
    height: 100%;
}

.zero-padding {
    padding: 0px !important;
}

.float-right {
    float: right;
}

.float_center {
    margin: 0px auto;
}

.center_screen {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.div-pointer {
    cursor: pointer;
}

.div-pointer:hover {
    opacity: 0.7;
}

.bordlesstable {
    margin: 0px;
    padding: 0px;
}

.panel-top-menu {
	display: flex;
	align-items: center;
    padding: 0 16px;
    overflow: hidden;
    height: 32px;
    width: 100%;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f9f9f9+0,f7f7f7+100 */
    background: rgb(249, 249, 249);
    /* Old browsers */
    background: -moz-linear-gradient(top, rgba(249, 249, 249, 1) 0%, rgba(247, 247, 247, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(249, 249, 249, 1) 0%, rgba(247, 247, 247, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(249, 249, 249, 1) 0%, rgba(247, 247, 247, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#f7f7f7', GradientType=0);
    /* IE6-9 */
}

.tree-top-menu {}

.tree-file-search {
    /* margin-top: 5px;
    margin-left: 10px;
    background-color: #fff;
    border-radius: 3px;
    width: 90%; */
}

.scan_tree_header {
    font-family: roboto, Gill Sans, Calibri, sans-serif;
    padding: 8px 8px 4px;
    cursor: pointer;
    border-radius: 2px;
}

.scan_tree_header:hover {
    background-color: #e7f4f9;
    border: 1px #e2edf1;
}

.scan_tree_header_clicked {
    font-family: roboto, Gill Sans, Calibri, sans-serif;
    padding: 5px;
    display: inline-block;
    cursor: pointer;
    border-radius: 2px;
    margin-left: 10px;
    background-color: #beebff;
    border: 1px #b7dced;
}

/* INNER HEADER CONTENT */

#inner-header-content {
    margin: 2px 15px 2px 15px;
}

#menu-icon {
    cursor: pointer;
}

#menu-icon:hover {
    opacity: 0.5;
}


/* INNER FOOTER CONTENT */

#inner-footer-content {
    margin: 7px 15px 2px 15px;
    font-family: roboto, Gill Sans, Calibri, sans-serif;
}


#user-floating-menu {
    display: none;
    right: 0;
    position: absolute;
    margin-right: 10px;
    background-color: white;
    padding: 20px;
    margin-top: 2px;
}

.user-floating-menu-item {
    opacity: 0.7;
    width: 100px;
    height: 100px;
    border: 1px solid gray;
    border-radius: 2px;
}

.user-floating-menu-item:hover {
    opacity: 1;
    width: 100px;
    height: 100px;
    border: 1px solid gray;
    border-radius: 2px;
}


#flux-floating-menu {
    cursor: pointer;
    display: none;
    right: 100px;
    position: absolute;
    top: 55px;
    margin-right: 10px;
    background-color: white;
    color: #000;
    padding: 5px;
    -webkit-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.2);
}

#flux-delete-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(9, 69, 119, 0.16);
    left: 95%;
    top: 95%;
    transform: translate(-95%, -95%);
    cursor: pointer;
}

#flux-delete-icon:hover {
    background-color: #0c7ddc;
    animation-name: flux-delete-icon-hover;
    animation-duration: 0.9s;
}

@keyframes flux-delete-icon-hover {
    from {
        background-color: rgba(12, 121, 216, 0.28);
    }

    to {
        background-color: #0c7ddc;
        color: #e7f4f9;
    }
}

.login_div {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


/* PANELS & WINDOWS*/

.search_result_panel {
    padding: 10px;
    position: absolute;
    background-color: #ffffff;
    display: none;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border: 1px solid #d2d2d2;
    -webkit-box-shadow: 6px 7px 8px -5px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 6px 7px 8px -5px rgba(0, 0, 0, 0.17);
    box-shadow: 6px 7px 8px -5px rgba(0, 0, 0, 0.17);
    left: 75px;
    min-width: 300px;
    z-index: 26;
}

.search_result_panel#component_list,
.search_result_panel#license_list{
    left: 0!important;
}

.filter_results_list.string-match-rules-list {
    padding: 0;
    position: absolute;
    background-color: #ffffff;
    display: none;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border: 1px solid #d2d2d2;
    -webkit-box-shadow: 6px 7px 8px -5px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 6px 7px 8px -5px rgba(0, 0, 0, 0.17);
    box-shadow: 6px 7px 8px -5px rgba(0, 0, 0, 0.17);
    right: 21%;
    bottom: 0;
    min-width: 40%;
}

.string_match_rule_row {
    border: 1px solid grey;
    padding: 4px;
    min-height: 24px;
}

.string_match_rule_row:nth-child(1) {
    margin-bottom: 2px;
    border: 1px solid grey !important;
}

.string_match_rule_row:nth-child(even) {
    border-bottom: none;
}

.string_match_rule_row:nth-child(odd) {
    border-bottom: none;
}

.string_match_rule_row:last-child {
    border-bottom: 1px solid grey;
}

.view_message_panel {
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.message_panel_content {}

.common_panel {
    border: 1px solid #dedede;
    background-color: #ffffff;
    border-radius: 3px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 5px;
    padding: 0px;
    -webkit-box-shadow: 6px 7px 8px -5px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 6px 7px 8px -5px rgba(0, 0, 0, 0.17);
    box-shadow: 6px 7px 8px -5px rgba(0, 0, 0, 0.17);
}

.common_panel_title {
    font-size: 14px;
    background-color: #0c7ddc;
    color: #ffffff;
    padding: 10px;
    border: 1px solid #0c6fc3;
    background: rgba(12, 125, 220, 1);
    background: rgba(12, 125, 220, 1);
    background: -moz-linear-gradient(left, rgba(12, 125, 220, 1) 39%, rgba(12, 125, 220, 1) 69%, rgba(9, 103, 179, 1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(39%, rgba(12, 125, 220, 1)), color-stop(69%, rgba(12, 125, 220, 1)), color-stop(100%, rgba(9, 103, 179, 1)));
    background: -webkit-linear-gradient(left, rgba(12, 125, 220, 1) 39%, rgba(12, 125, 220, 1) 69%, rgba(9, 103, 179, 1) 100%);
    background: -o-linear-gradient(left, rgba(12, 125, 220, 1) 39%, rgba(12, 125, 220, 1) 69%, rgba(9, 103, 179, 1) 100%);
    background: -ms-linear-gradient(left, rgba(12, 125, 220, 1) 39%, rgba(12, 125, 220, 1) 69%, rgba(9, 103, 179, 1) 100%);
    background: linear-gradient(to right, rgba(12, 125, 220, 1) 39%, rgba(12, 125, 220, 1) 69%, rgba(9, 103, 179, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0c7ddc', endColorstr='#0967b3', GradientType=1);
}

.common_panel_content {
    padding: 10px;
}

.panel_tile_small {
    font-size: 12px;
    background-color: #0c7ddc;
    color: #ffffff;
    border: 1px solid #0c6fc3;
    background: rgba(12, 125, 220, 1);
    background: rgba(12, 125, 220, 1);
    background: -moz-linear-gradient(left, rgba(12, 125, 220, 1) 39%, rgba(12, 125, 220, 1) 69%, rgba(9, 103, 179, 1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(39%, rgba(12, 125, 220, 1)), color-stop(69%, rgba(12, 125, 220, 1)), color-stop(100%, rgba(9, 103, 179, 1)));
    background: -webkit-linear-gradient(left, rgba(12, 125, 220, 1) 39%, rgba(12, 125, 220, 1) 69%, rgba(9, 103, 179, 1) 100%);
    background: -o-linear-gradient(left, rgba(12, 125, 220, 1) 39%, rgba(12, 125, 220, 1) 69%, rgba(9, 103, 179, 1) 100%);
    background: -ms-linear-gradient(left, rgba(12, 125, 220, 1) 39%, rgba(12, 125, 220, 1) 69%, rgba(9, 103, 179, 1) 100%);
    background: linear-gradient(to right, rgba(12, 125, 220, 1) 39%, rgba(12, 125, 220, 1) 69%, rgba(9, 103, 179, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0c7ddc', endColorstr='#0967b3', GradientType=1);
}


.common_panel_2 {
    border: 1px solid #dedede;
    background-color: #ffffff;
    border-radius: 3px;
    margin: 10px;
    padding: 0px;
    -webkit-box-shadow: 6px 7px 8px -5px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 6px 7px 8px -5px rgba(0, 0, 0, 0.17);
    box-shadow: 6px 7px 8px -5px rgba(0, 0, 0, 0.17);
}

.common_panel_title_2 {
    background-color: #cd0000;
    color: #ffffff;
    padding: 10px;
    border: 1px solid #aa0000;
}

.common_panel_content_2 {
    padding: 10px;
}

.scan_page_main_screen_title {
    font-family: roboto, Gill Sans, Calibri, sans-serif;
    padding: 6px;
    padding-bottom: 8px;
    margin: 0px;
    color: white;
    font-size: 13px;
    height: 42px;
}

.main_screen_title {
    height: auto;
}

.main_screen_title p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 600px;
    font-size: 13px;
    color: white;
    font-family: roboto, Gill Sans, Calibri, sans-serif;
    margin: 0px;
}

.main_screen_title_options {
    font-family: roboto, Gill Sans, Calibri, sans-serif;
    padding: 2px;
    margin: 0px;
}


/* BUTTONS */

.menu_button_status_on {
    background-color: #7ad211;
    border-radius: 50%;
    width: 5px;
    height: 5px;
    position: absolute;
    margin-top: -8px;
    margin-left: 20px;
}

.menu_button_status_off {
    background-color: #d70600;
    border-radius: 50%;
    width: 5px;
    height: 5px;
    position: absolute;
    margin-top: -8px;
    margin-left: 20px;
}

.menu_button_image {
    height: 20px;
    width: 20px;
    opacity: 0.7;

}

.menu_button_image:hover {
    opacity: 1;
}

@keyframes small_button_hover {
    from {
        background-color: #eaeaea;
    }

    to {
        background-color: #f4f4f4;
        border-color: #808c9f;
    }
}

.small_menu_button {
    float: left;
    width: 28px;
    height: 28px;
    margin-left: 3px;
    margin-top: 3px;
    cursor: pointer;
}

.small_menu_button_light {
    float: left;
    position: relative;
    z-index: 30;
    width: 28px;
    height: 28px;
    margin-left: 3px;
    border-radius: 2px;
    background-color: transparent;
    cursor: pointer;
    color: black;
}

.small_menu_button_light:hover {
    background-color: transparent;
    /*border-color: #808c9f;*/
    color: #808080;
    animation-name: small_button_hover_light;
    animation-duration: 0.5s;
}


.material-icons-outlined {
    font-family: 'Material Icons Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.userMenuWidget .menuButton {
    cursor: pointer;
    background-size: contain;
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    margin-right: 0;
    float: right;
}

.userMenuWidget .notificationButton:hover,
.loginButton:hover,
.logoutButton:hover,
.userAvatar.menuButton:hover {
    opacity: 1;
}

.small_menu_content {
    float: left;
    margin-right: 10px;
    font-family: roboto, Gill Sans, Calibri, sans-serif;
    font-size: 12px;
}

.common_button {
    font-family: roboto, Gill Sans, Calibri, sans-serif;
    font-size: 15px;
    padding: 7px;
    border: 1px solid #0c6fc3;
    text-align: center;
    border-radius: 1px;
    color: white;
    background-color: #0c7ddc;
    cursor: pointer;
    min-width: 100px;
}

.common_button:hover {
    background-color: #0c6fc3;
    color: #ffffff;
}

.common_button_small {
    font-family: roboto, Gill Sans, Calibri, sans-serif;
    font-size: 13px;
    padding: 4px;
    border: 1px solid #0c6fc3;
    text-align: center;
    border-radius: 1px;
    color: white;
    background-color: #0c7ddc;
    cursor: pointer;
    min-width: 100px;
}

.common_button_small:hover {
    background-color: #0c6fc3;
    color: #ffffff;
}

.common_button_small_gray {
    font-family: roboto, Gill Sans, Calibri, sans-serif;
    font-size: 13px;
    padding: 4px;
    border: 1px solid #a0a0a0;
    text-align: center;
    border-radius: 1px;
    color: #686868;
    background-color: #e0e0e0;
    cursor: pointer;
    min-width: 100px;
}

.common_button_small_gray:hover {
    background-color: #0c6fc3;
    color: #ffffff;
}

.common_button_small_red {
    font-family: roboto, Gill Sans, Calibri, sans-serif;
    font-size: 13px;
    padding: 4px;
    border: 1px solid #750808;
    text-align: center;
    border-radius: 1px;
    color: #fff;
    background-color: #a50b0b;
    cursor: pointer;
    min-width: 100px;
}

.common_button_small_red:hover {
    background-color: #c60d0d;
    color: #ffffff;
}

.common_button_extra_small {
    font-family: roboto, Gill Sans, Calibri, sans-serif;
    font-size: 12px;
    padding: 2px;
    border: 1px solid #0c6fc3;
    text-align: center;
    border-radius: 1px;
    color: white;
    background-color: #0c7ddc;
    cursor: pointer;
    min-width: 50px;
}

.common_button_extra_small:hover {
    background-color: #0c6fc3;
    color: #ffffff;
}

@keyframes mainscreen_squarebuttons {
    from {
        background-color: #e4e9ea;
    }

    to {
        background-color: #0c7ddc;
        color: #e7f4f9;
    }
}

.mainscreen_squarebuttons {
    font-size: 16px;
    color: #aeaead;
    /* text-shadow: #adadad 1px 1px 0; */
    width: 150px;
    height: 150px;
    border-radius: 2px;
    margin: 3px;
    top: 0px;
    background-color: #e4e9ea;
    cursor: pointer;
    display: inline-block;
    display: none;
    -webkit-box-shadow: 1px 1px 4px -1px rgba(171, 171, 171, 1);
    -moz-box-shadow: 1px 1px 4px -1px rgba(171, 171, 171, 1);
    box-shadow: 1px 1px 4px -1px rgba(171, 171, 171, 1);
}

.mainscreen_squarebuttons:hover {
    background-color: #0c7ddc;
    color: #e7f4f9;
    animation-name: mainscreen_squarebuttons;
    animation-duration: 0.7s;
}

.mainscreen_squarebuttons_text {
    float: right;
    margin-top: 95px;
    margin-right: 15px;
    text-align: right;
}

/* TEXTBOXES */

.common_textbox_small {
    max-width: 400px;
}

#user_form .common_textbox_small {
    max-width: 161px;
}

#snippet_search_container,
#view_container_vsf,
#view_container {
    height: calc(100vh - 129px);
}

#view_container_scan {
    height: calc(100vh - 215px);
    padding: 0px !important;
}
#view_container_scan.with-warnings {
    height: calc(100vh - 245px);
}

#file_tree_container {
    margin-top: 3px;
    font-size: 10px !important;
    font-family: roboto, Gill Sans, Calibri, sans-serif;
}

#local_file_content {
    font-size: 10px !important;
    margin: 0px;
    line-height: 18px;
}

td[id*="fossid_result_line_content"],
td[id*="local_file_line_content"] {
 height: 20px;
}

#fossid_file_content {
    font-size: 10px !important;
    line-height: 16px;
}

.just_row_selectable:hover {
    background-color: #D6E3F9;
    animation-name: just_row_selectable_hover;
    animation-duration: 0.5s;
}

@keyframes just_row_selectable_hover {
    from {
        background-color: #e4e9ea;
    }

    to {
        background-color: #D6E3F9;
    }
}

.common_table {
    font-family: roboto, Gill Sans, Calibri, sans-serif;
    background-color: #ffffff;
    margin: 5px;
    border-radius: 2px;
    border: 1px solid #C4C4C4;
}

.common_table th {
    background-color: #0076b4;
    font-weight: bold;
    padding: 10px;
    color: #ffffff;
}

.common_table td {
    padding: 2.5px 10px 2.5px 10px;
    cursor: pointer;
}

@keyframes table_row_hover {
    from {
        background-color: #fff;
    }

    to {
        background-color: #0086aa;
    }
}

.common_table tr:hover {
    background-color: #0086aa;
    color: #ffffff;
    animation-name: table_row_hover;
    animation-duration: 0.5s;
}

.common_table_unselectable {
    font-family: roboto, Gill Sans, Calibri, sans-serif;
    background-color: #ffffff;
    margin: 5px;
    border-radius: 2px;
    border: 1px solid #C4C4C4;
    -webkit-box-shadow: 6px 7px 8px -5px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 6px 7px 8px -5px rgba(0, 0, 0, 0.17);
    box-shadow: 6px 7px 8px -5px rgba(0, 0, 0, 0.17);
}

.common_table_unselectable th {
    background-color: #0c6fc3;
    font-weight: lighter;
    padding: 10px;
    color: #ffffff;
}

.common_table_unselectable td {
    padding: 2.5px 10px 2.5px 10px;
}

.common_table_borderless th {
    background-color: #0c6fc3;
    font-weight: lighter;
    padding: 10px;
    color: #ffffff;
}

.common_table_borderless td {
    padding: 2.5px 10px 2.5px 10px;
    cursor: pointer;
}

.common_table_borderless tr:hover {
    color: #595883;
}


.common_table_borderless_gray th {
    background-color: rgba(195, 179, 195, 0.76);
    font-weight: lighter;
    padding: 10px;
    color: #ffffff;
}

.common_table_borderless_gray td {
    padding: 2.5px 10px 2.5px 10px;
    cursor: pointer;
}

.common_table_borderless_gray tr:hover {
    background-color: #0086aa;
    color: #ffffff;
    animation-name: table_row_hover;
    animation-duration: 0.5s;
}


.common_table_style_2 {
    font-family: roboto, Gill Sans, Calibri, sans-serif;
    background-color: #ffffff;
    margin: 5px;
    border: 1px solid #C4C4C4;
}

.common_table_style_2 th {
    background-color: #0c6fc3;
    font-weight: lighter;
    padding: 10px;
    color: #ffffff;
}

.common_table_style_2 td {
    padding: 2.5px 10px 2.5px 10px;
}


.metrics_table {
    font-family: roboto, Gill Sans, Calibri, sans-serif;
    background-color: #ffffff;
}

.metrics_table th {
    background-color: #0c7ddc;
    font-weight: lighter;
    padding: 5px;
    color: #000;
}

.metrics_table td {
    padding: 2.5px 10px 2.5px 10px;
    cursor: pointer;
}

@keyframes metrics_table_hover {
    from {
        background-color: #e4e9ea;
    }

    to {
        background-color: #2F9EAA;
    }
}

.metrics_table tr:hover {
    background-color: #2F9EAA;
    color: #000;
    animation-name: metrics_table_hover;
    animation-duration: 0.5s;
}

.metrics_table_unselectable th {
    font-weight: lighter;
    padding: 5px;
    color: #000;
}

.metrics_table_unselectable.identified th {
    border-bottom: 1px solid hsl(244deg 8% 84%);
}

.metrics_table_unselectable td {
    padding: 2.5px 10px 2.5px 10px;
}


.tooltip_table {
    font-family: roboto, Gill Sans, Calibri, sans-serif;
    background-color: #ffffff;
}

.tooltip_table th {
    background-color: #0c6fc3;
    padding: 10px;
    color: #ffffff;
    background: rgba(12, 110, 195, 1);
    background: -moz-linear-gradient(top, rgba(12, 110, 195, 1) 0%, rgba(22, 136, 224, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(12, 110, 195, 1)), color-stop(100%, rgba(22, 136, 224, 1)));
    background: -webkit-linear-gradient(top, rgba(12, 110, 195, 1) 0%, rgba(22, 136, 224, 1) 100%);
    background: -o-linear-gradient(top, rgba(12, 110, 195, 1) 0%, rgba(22, 136, 224, 1) 100%);
    background: -ms-linear-gradient(top, rgba(12, 110, 195, 1) 0%, rgba(22, 136, 224, 1) 100%);
    background: linear-gradient(to bottom, rgba(12, 110, 195, 1) 0%, rgba(22, 136, 224, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0c6ec3', endColorstr='#1688e0', GradientType=0);
}

.tooltip_table th {
    font-weight: lighter;
}

.tooltip_table td {
    padding: 2.5px 10px 2.5px 10px;
    cursor: pointer;
}

@keyframes tooltip_row_hover {
    from {
        background-color: #e4e9ea;
    }

    to {
        background-color: #2F9EAA;
    }
}

.tooltip_table tr:hover {
    background-color: #2F9EAA;
    color: #ffffff;
    animation-name: tooltip_row_hover;
    animation-duration: 0.5s;
}

.search_result_div:hover {
    background-color: #2F9EAA;
    color: #ffffff;
    animation-name: search_result_row_hover;
    animation-duration: 0.5s;
}


.search_result_table {
    font-family: roboto, Gill Sans, Calibri, sans-serif;
    background-color: #ffffff;
}

#cve_snippets_container .search_result_table {
  width: 100%;
}

.search_result_table .selected {
  background-color: #184d59;
  color: #FFF;
}

.search_result_table th {
    background-color: #0c6fc3;
    font-weight: lighter;
    padding: 5px;
    color: #ffffff;
    background: rgba(12, 110, 195, 1);
    background: -moz-linear-gradient(top, rgba(12, 110, 195, 1) 0%, rgba(22, 136, 224, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(12, 110, 195, 1)), color-stop(100%, rgba(22, 136, 224, 1)));
    background: -webkit-linear-gradient(top, rgba(12, 110, 195, 1) 0%, rgba(22, 136, 224, 1) 100%);
    background: -o-linear-gradient(top, rgba(12, 110, 195, 1) 0%, rgba(22, 136, 224, 1) 100%);
    background: -ms-linear-gradient(top, rgba(12, 110, 195, 1) 0%, rgba(22, 136, 224, 1) 100%);
    background: linear-gradient(to bottom, rgba(12, 110, 195, 1) 0%, rgba(22, 136, 224, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0c6ec3', endColorstr='#1688e0', GradientType=0);
}

.search_result_table td {
    padding: 2.5px 10px 2.5px 10px;
    cursor: pointer;
}

@keyframes search_result_row_hover {
    from {
        background-color: #e4e9ea;
    }

    to {
        background-color: #2F9EAA;
    }
}

.search_result_table tr:hover {
    background-color: #2F9EAA;
    color: #ffffff;
    animation-name: search_result_row_hover;
    animation-duration: 0.5s;
}


html .tooltipWrapper,
html .tooltip {
    opacity: unset;
    z-index: 25;
}

/* ANIMATIONS */

.scanning:after {
    content: '';
    /* make the element cover the whole thing */
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* and sit in front */
    z-index: 1;
    /* gradient with a radar like fade */
    background:
        linear-gradient(90deg,
            #e8e8e8,
            #e8e8e8 50%,
            rgba(175, 202, 255, 0.5) 55%,
            rgb(146, 199, 255) 56%,
            #e8e8e8 56%,
            #e8e8e8);

    /* make it big enough so when we slide it around still covers whole image */
    background-size: 300% 100%;
    background-repeat: no-repeat;
    /* start with the scan bar just off the left side */
    background-position: 84% center;
    -webkit-animation: scan 3s infinite ease;
}

@-webkit-keyframes scan {

    /* finish with the scan bar just off the right side */
    100% {
        background-position: 25% center;
    }
}

/* these are just for the placeholder content */
p img.left {
    float: left;
    margin-right: 1em;
}

p img.right {
    float: right;
    margin-left: 1em;
}

#scanning_message {
    text-align: center;
    font-family: roboto, Gill Sans, Calibri, sans-serif;
    font-size: 35px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


.file_result_lines {
    padding: 0 2px !important;
    background-color: #FFF;
    color: #808080;
    text-align: right;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Chrome/Safari/Opera */
    -khtml-user-select: none;
    /* Konqueror */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently not supported by any browser */
}

.file_result_line_separator {
    width: 5px;
    padding: 2px !important;
    background-color: white;
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Chrome/Safari/Opera */
    -khtml-user-select: none;
    /* Konqueror */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                  not supported by any browser */
}


/* SETTINGS */

.main_settings_div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #dedede;
    background-color: #ffffff;
    border-radius: 3px;
    padding: 0px;
    -webkit-box-shadow: 6px 7px 8px -5px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 6px 7px 8px -5px rgba(0, 0, 0, 0.17);
    box-shadow: 6px 7px 8px -5px rgba(0, 0, 0, 0.17);
}


/* MAIN INTERFACE */

.mi_center_pane_small {
    float: left;
    margin: 10px;
    font-size: 45px;
    min-width: 140px;
    min-height: 50px;
    border-radius: 1px;
    text-align: center;
    cursor: pointer;
}

.mi_white_container {
    margin: 10px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    -webkit-box-shadow: 2px 1px 14px -4px rgba(0, 0, 0, 0.38);
    -moz-box-shadow: 2px 1px 14px -4px rgba(0, 0, 0, 0.38);
    box-shadow: 2px 1px 14px -4px rgba(0, 0, 0, 0.38);
}

.mi_white_container_title {
    padding: 10px;
    font-size: 14px;
    background: #394046;
    background: -moz-linear-gradient(left, #394046 0%, #3a7087 22%, #2e5b70 100%);
    background: -webkit-linear-gradient(left, #394046 0%, #3a7087 22%, #2e5b70 100%);
    background: linear-gradient(to right, #394046 0%, #3a7087 22%, #2e5b70 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#394046', endColorstr='#2e5b70', GradientType=1);
    border: 1px solid #536068;
    color: #fff;
}

.mi_white_container_content {
    padding: 10px 20px;
    background-color: #FFFFFF;
}


.mi_white_container2 {
    margin: 10px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.mi_white_container2_title {
    padding: 10px;
    font-size: 14px;
    background: #6f7d96;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#394046', endColorstr='#2e5b70', GradientType=1);
    border: 1px solid #536068;
    color: #fff;
}

.mi_white_container2_content {
    padding: 10px;
    background-color: #FFFFFF;
    border: 1px solid #d1d9e4;
}


/* QUICK VIEW */

.qv_grid_selected_row {
    background-color: #2F9EAA;
    color: #237780;
}

.qv_grid_viewed_row {
    background-color: #F0F0F0;
    color: #000;
}

/* PROJECTS */

.arrow-left {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 20px solid #2c73e5;
    border-bottom: 20px solid #2c73e5;
    border-left: 20px solid transparent;
}

.arrow-container>div {
    float: left;
}

.arrow-ctr {
    display: inline-block;
    background: #2c73e5;
    color: #ffffff;
    min-height: 40px;
    min-width: 110px;
    line-height: 40px;
    position: relative;
    text-align: center;
}

.arrow-right {
    display: inline-block;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #2c73e5;
    position: relative;
}

.arrow-left-selected {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 20px solid #4A7C5E;
    border-bottom: 20px solid #4A7C5E;
    border-left: 20px solid transparent;
}

.arrow-container-selected>div {
    float: left;
}

.arrow-ctr-selected {
    display: inline-block;
    background: #4A7C5E;
    color: #ffffff;
    min-height: 40px;
    min-width: 110px;
    line-height: 40px;
    position: relative;
    text-align: center;
}

.arrow-right-selected {
    display: inline-block;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #4A7C5E;
    position: relative;
}

#proj_main_interface_container {
    border-radius: 3px;
    border: 1px solid #e7f4f9;
    background-color: #FFFFFF;
    width: 100%;
    -webkit-box-shadow: 1px 1px 4px -1px rgba(171, 171, 171, 1);
    -moz-box-shadow: 1px 1px 4px -1px rgba(171, 171, 171, 1);
    box-shadow: 1px 1px 4px -1px rgba(171, 171, 171, 1);
}

.form_main_container {
    display: inline-block;
    border-radius: 3px;
    border: 1px solid #e7f4f9;
    border-right: 1px solid rgba(171, 171, 171, 1);
    background-color: #FFFFFF;
    -webkit-box-shadow: 1px 1px 4px -1px rgba(171, 171, 171, 1);
    -moz-box-shadow: 1px 1px 4px -1px rgba(171, 171, 171, 1);
    box-shadow: 1px 1px 4px -1px rgba(171, 171, 171, 1);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


.form_step_container {
    border-radius: 3px;
    border: 1px solid #e7f4f9;
    border-right: 1px solid rgba(171, 171, 171, 1);
    background-color: #FFFFFF;
    -webkit-box-shadow: 1px 1px 4px -1px rgba(171, 171, 171, 1);
    -moz-box-shadow: 1px 1px 4px -1px rgba(171, 171, 171, 1);
    box-shadow: 1px 1px 4px -1px rgba(171, 171, 171, 1);
    display: table;
    margin: 0 auto;
    overflow: auto;
}

.center_white_container {
    display: inline-block;
    margin: 10px;
    background-color: #ffffff;
    border: 1px solid #D6D6D6;
}

.legacyPage>.mi_white_container .center_white_container {
    border-width: 0px;
}

#proj_main_interface_title {
    font-size: 14px;
    background-color: #0c7ddc;
    color: #ffffff;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border: 1px solid #0c6fc3;
    background: rgba(12, 125, 220, 1);
    background: rgba(12, 125, 220, 1);
    background: -moz-linear-gradient(left, rgba(12, 125, 220, 1) 39%, rgba(12, 125, 220, 1) 69%, rgba(9, 103, 179, 1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(39%, rgba(12, 125, 220, 1)), color-stop(69%, rgba(12, 125, 220, 1)), color-stop(100%, rgba(9, 103, 179, 1)));
    background: -webkit-linear-gradient(left, rgba(12, 125, 220, 1) 39%, rgba(12, 125, 220, 1) 69%, rgba(9, 103, 179, 1) 100%);
    background: -o-linear-gradient(left, rgba(12, 125, 220, 1) 39%, rgba(12, 125, 220, 1) 69%, rgba(9, 103, 179, 1) 100%);
    background: -ms-linear-gradient(left, rgba(12, 125, 220, 1) 39%, rgba(12, 125, 220, 1) 69%, rgba(9, 103, 179, 1) 100%);
    background: linear-gradient(to right, rgba(12, 125, 220, 1) 39%, rgba(12, 125, 220, 1) 69%, rgba(9, 103, 179, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0c7ddc', endColorstr='#0967b3', GradientType=1);
}


/* SNIPPET SEARCH */

#snippet_search_go_button {
    position: absolute;
    float: right;
    margin-top: -60px;
    margin-left: calc(100% - 90px);
    display: none;
}

#local_snippet_content::-webkit-scrollbar {
	display: none;
}

@keyframes snippet_search_go {
    from {
        background-color: #e4e9ea;
    }

    to {
        background-color: #0086aa;
        color: #e7f4f9;
    }
}

#folder_identification_content #identification_panel_content>div {
    min-width: unset;
    max-width: unset;
}

#identification_panel_container {
    background-color: #f4f4f4 !important;
    overflow-x: visible;
}

#identification_panel_title {
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    width: calc(100% - 26px);
    display: inline-block;
    text-overflow: ellipsis;
}

/* SCAN */
.scan_identification_tab {
    cursor: pointer;
    font-family: roboto, "Gill Sans", Calibri, sans-serif;
    ;
    float: left;
    margin: 0px 3px 0px 3px;
    padding: 5px;
    background-color: #eaeaea;
    border: 1px solid #d8d8d8;
}

.scan_identification_selected_tab {
    cursor: pointer;
    font-family: roboto, "Gill Sans", Calibri, sans-serif;
    ;
    float: left;
    margin: 0px 5px 0px 5px;
    padding: 5px;
    color: #fff;
    background-color: #3b3c60;
    border: 1px solid #3b3c60;
}


.scan_folder_metrics_tab {
    cursor: pointer;
    font-family: roboto, "Gill Sans", Calibri, sans-serif;
    ;
    float: left;
    margin: 0px 5px 0px 5px;
    padding: 5px;
    background-color: #eaeaea;
    border: 1px solid #d8d8d8;
}

.scan_folder_metrics_tab:hover {
    background-color: #0086aa;
    color: #e7f4f9;
    animation-name: snippet_search_go;
    animation-duration: 0.7s;
}

.scan_folder_metrics_unselectable_tab {
    font-family: roboto, "Gill Sans", Calibri, sans-serif;
    ;
    float: left;
    margin: 0px 5px 0px 5px;
    padding: 5px;
    color: #7b7b7b;
    background-color: #c7c7c7;
    border: 1px solid #d8d8d8;
}

.scan_folder_metrics_extension {
    cursor: pointer;
    margin: 3px;
    display: inline-block;
    font-family: roboto, "Gill Sans", Calibri, sans-serif;
    ;
    border: 1px solid #D6D4D4;
    background-color: #eaeaea;
}

.scan_folder_metrics_extension:hover {
    background-color: #0086aa;
    border: 1px solid #09c;
    color: #ffffff;
}

.scan_folder_metrics_extension_unselectable {
    margin: 3px;
    display: inline-block;
    
}

.fossid_result_content_matches.no-border .scan_folder_metrics_extension_unselectable {
  background-color: #FFFFFF;
}


.metrics_title_panel {
    margin-top: 10px;
    display: flex;
    padding: 5px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.metrics_title_panel:hover {
    margin-top: 10px;
}

/*  #floating_center_contentcontains the scan dialog and lots of other stuff that goes in the middle of the screen */
/* #view_message_panel contains some other stuff that goes in the middle of the screen, like the restore backup question */
#floating_center_content,
#view_message_panel,
#view_message_modal {
    position: absolute;
    overflow-y: auto;
    overflow-x: hidden;
    left: 50%;
    transform: translate(-50%, 0);
}

#view_message_panel {
    transform: translate(-50%, -50%);
    top: 50%;
}

#view_message_modal.no-overflow {
    overflow: visible;
}

#view_message_modal {
    transform: translate(-50%, -50%);
    top: 50%;
    border-radius: 4px;
}

#floating_center_content {
    top: 30px;
    max-height: calc(100% - 50px);
}

/* #floating_center_content_message is the green notification in the right bottom corner */
/* #floating_center_content_secondary_form : some additional popup messages in the bottom right corner. if its not hidden by default hide_floating_div() acts up */
#floating_center_content_message,
#floating_center_content_secondary_form {
    display: none;
    position: absolute;
    bottom: 35px;
    right: 20px;
    min-width: 250px;
    border: 1px solid #D6D6D6;
    box-shadow: 6px 7px 8px -5px rgba(0, 0, 0, 0.17);
    background-color: #007D6E;
    padding: 20px;
    color: #D6D6D6;
    font-size: 15px !important;
}

.center_element {
    transform: translate(-50%, -50%);
}

/* Style the list */
ul.identification_tabs {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#view_quick_rescan_file {
    position: relative;
    top: 0.5px;
}

/* Float the list items side by side */
ul.identification_tabs li {
    float: left;
}

/* Style the links inside the list items */
ul.identification_tabs li a {
    display: inline-block;
    color: black;
    text-align: center;
    padding: 4px 6px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 12px;
}

/* Change background color of links on hover */
ul.identification_tabs li a:hover {
    background-color: #6cbc7f;
    color: #FFFFFF;
}

/* Create an active/current tablink class */
ul.identification_tabs li a:focus,
.active {
    background-color: #498c5a;
    color: #FFFFFF;
}

/* Style the tab content */
.identification_tabs_content {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

.identification_panel_buttons_bar {
    width: 100%;
    height: 33px;
    background-color: #D9D9D9;
    border-top: 1px solid #C7C7C7;
    bottom: 0px;
    overflow: hidden;
}

[data-unselectable_content]::before {
    content: "\00a0" attr(data-unselectable_content) "\00a0";
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 18px;
}

/* Hide default HTML checkbox */
.switch input {
    display: none;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 1px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(12px);
    -ms-transform: translateX(12px);
    transform: translateX(12px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 20px;
}

.slider.round:before {
    border-radius: 50%;
}

#myProgress {
    background-color: grey;
}

#myBar {
    float: left;
    height: 100%;
    background-color: #0a6aa1;
}

/* select with CSS avatar icons */
option.avatar {
    background-repeat: no-repeat !important;
    padding-left: 20px;
}

.avatar .ui-icon {
    background-position: left top;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
    color: #0073ea;
    text-decoration: none;
}

/* Make the image to responsive */
.icon-image {
    width: 100%;
    height: auto;
    opacity: 1;
}

.status_processing_box,
.status_completed_box,
.status_approved_box,
.status_rejected_box,
.status_error_box,
.status_pending_box {
    border-radius: 2px;
    width: 100px;
    text-align: center;
}

.status_approved_box {
    background-color: #a1eaa4;
    border: 1px solid #629264;
    color: #3b583c;
}

.status_rejected_box,
.status_error_box {
    background-color: #f5a1a2;
    border: 1px solid #c56069;
    color: #873c4d;
}

.status_pending_box {
    background-color: #eaeaea;
    border: 1px solid #989898;
    color: #505050;
}


.status_completed_box {
    background-color: #a1eaa4;
    border: 1px solid #629264;
    color: #3b583c;
}


.status_processing_box {
    background-color: #a1eaa4;
    border: 1px solid #629264;
    color: #3b583c;
}


.ignored_files_active_tab {
    cursor: pointer;
    float: left;
    background-color: #E64539;
    color: #FFFFFF;
    padding: 4px;
}

.ignored_files_inactive_tab {
    cursor: pointer;
    float: left;
    background-color: #E3867F;
    color: #FFFFFF;
    padding: 4px;
}

.center_text {
    text-align: center;
}


/* Datatables CSS changes */
table.dataTable {
    font-family: roboto, "Gill Sans", Calibri, sans-serif;
    ;
    font-size: 12px;
}

table.dataTable thead {
    font-weight: lighter;
    border: none;
    color: #000;
}

table.dataTable td .details-control {
    background: url('../images/ui_icons/arrowblueright_darkblue_9x9.png') no-repeat center center;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

table.dataTable tr.shown td .details-control {
  transform: rotate(90deg);
}

.dataTable [onclick] {
    cursor: pointer;
}

.child_row:hover {
    background-color: white !important;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
    background-color: #eee;
    color: #000000;
    cursor: pointer;
    padding: 5px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 12px;
    font-family: roboto, "Gill Sans", Calibri, sans-serif;
    ;
}


ul.dependencies_chain {
    list-style: none;
    padding-inline-start: 10px;
}


/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.collapsible:hover {
    background-color: #eaeaea;
}

/* Style the collapsible content. Note: hidden by default */
.dependency_content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #fafafa;
}

.collapsible::before {
    /*content: '\02795'; !* Unicode character for "plus" sign (+) *!*/
    content: url('../images/ui_icons/arrowblackright_9x9.png');
    width: 9px;
    font-size: 13px;
    padding: 5px;
    color: white;
    float: left;
    margin-left: 5px;
    margin-right: 5px;
    padding: 0;
}

.active::before {
    /*content: "\2796"; !* Unicode character for "minus" sign (-) *!*/
    content: url('../images/ui_icons/arrowblackdown_9x9.png');
    width: 9px;
}

#form_title_container {
    box-sizing: content-box;
}

#content-header {
    padding-top: 2px;
}

#fossid_result_table th {
    text-align: center;
}

#view_result_ident_container .ui-layout-west {
    max-height: 100%;
}

#log_table td {
    word-wrap: anywhere;
}

#metric_identification_message {
    background-color: white;
}

.openSourceLicenses h3 {
    padding-bottom: 8px;
    font-weight: bold;
}

/* these two are required to work around odd firefox behavior.
we should improve upon this once we have sorted out the keyboard navigation */
:focus {
    outline: none;
}

::-moz-focus-inner {
    border: 0;
}

.link-primary {
    color: #0073ea;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 900;
}

.approval-component-dialog .single-comment {
    justify-content: space-between;
    display: flex;
    padding: 0 12px;
}

.approval-component-dialog .single-comment .comment-holder {
    width: 90%;
}

.approval-component-dialog .single-comment .single-comment .comment-body {
    width: 100%;
}

#dialog_pop_up_content .comments-label{
    padding-top: 0;
}

.approval-component-dialog .comment-body {
    margin-top: -5px!important;
    font-size: 14px!important;
    resize: auto;
    max-height: 225px;
    min-height: 25px;
    max-width: 470px;
    min-width: 470px;
}

.approval-component-dialog textarea.error {
    border: 1px solid #E64539;
}

.user_search_header_wrap {
    display: flex;
    flex-direction: column;
}

.user_search_header {
    justify-content: space-between;
    color: #FFFFFF;
    background-color: #0073ea;
    display: flex;
    padding: 3px;
    vertical-align: center;
}

.user_search_header>div {
    width: 100%;
    text-align: center;
}

.found_user_row {
    display: flex;
    justify-content: space-between;
    vertical-align: middle;
    padding: 3px;
    border-top: 1px solid #EEEEEE;
    cursor: pointer;
}

.found_user_row>div {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/*Scans files from git form*/
.scan_git_form_wrap {
    display: flex;
    justify-content: left;
    flex-direction: column;
    height: 100%;
}

.scan_git_form_wrap input {
    width: 100%;
}

.scan_git_form_wrap input.error {
    border: 1px solid #E64539;
}

.scan_git_form_wrap label {
    cursor: pointer;
    margin-bottom: 2px;
    margin-top: 8px;
    width: 100%;
    font-weight: bold;
}

.scan_git_form_wrap select {
    width: 40%;
    margin-top: 5px;
    border: 1px solid #EEEEEE;
}

.scan_git_form_wrap select.error {
    border: 1px solid #E64539;
}

.scan_git_form_wrap .btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 38px;
    z-index: 1;
}

.result_message {
    margin-top: 10px !important;
    border: none;
}

.result_message.error {
    color: #E64539;
}

.scan_git_form_wrap .success-message-wrap {
    width: 100%;
    height: 20%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 1;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    display: none;
}

.scan_git_form_wrap .success-message-wrap.loader {
    height: 100%;
    align-items: center;
}

.scan_git_form_wrap .success-message-wrap.loader img.menu_button_image {
    width: 40px;
    height: 40px;
}

.project-reports-wrap.card{
    min-width: 798px;
}
.project-reports-wrap .card-header{
    display: flex;
    justify-content: space-between !important;
    align-items: end;
}
.project-reports-wrap .card-header .close{
    cursor: pointer;
}
.project-reports-wrap .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    position: relative;
}
.project-reports-wrap select {
    width: 300px;
}
.project-reports-wrap .card-body{
    justify-content: center;
}
.project_report_card_wrapper{
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    font-family: FOSSIdFont;
}
.project-reports-wrap .fossid-translated-text:not(h3){
    font-size: 12px;
}
.project_report_card_wrapper textarea{
    width: 100%;
}
.project-reports-wrap .error-message{
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.project_report_card_wrapper.loader,
.project-reports-wrap.loader{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.project-reports-wrap.loader .loader-message,
.project_report_card_wrapper.loader .loader-message{
    width: 100%;
    text-align: center;
}
.project_report_card_wrapper.loader .loader-message.success-download{
    color: green;
    font-weight: bold;
}
.project-reports-wrap .error-message .error-title{
    color: red;
}
.project-reports-wrap .error-message .error-description{
    font-size: 12px;
}
.disabled-click{
    cursor: not-allowed;
}
.cover-div{
    position: absolute;
    background: white;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

textarea[disabled],
input[disabled] {
  opacity: 0.6;
}

.bootstrap-duallistbox-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap!important;
    justify-content: space-between;
}


.bootstrap-duallistbox-container .col-md-6 {
    max-width: calc(50% - 12px)!important;
}

.bootstrap-duallistbox-container .buttons {
    width: 75%;
    margin-top: 15px;
}

.bootstrap-duallistbox-container .buttons button {
    background: #3b3c60;
    border: 1px solid #3b3c60;
    margin-right: 16px;
}

select.common_select_small {
    height: 40px;
    box-shadow: inset 0 0 0 1px hsl(244deg 8% 84%);
    border: none;
    line-height: 24px !important;
    font-size: 1em !important;
    padding: 4px 16px!important;
    border-radius: 2px;
    width: 350px;
    background-color: #fafafa;
}

select.common_select_small::-ms-expand {
    display: none;
}

select.common_select_small:after {
    content: '>';
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 11px;
    /*Adjust for position however you want*/

    top: 18px;
    padding: 0 0 2px;
    border-bottom: 1px solid #999;
    /*left line */

    position: absolute;
    pointer-events: none;
}

.folder_identification_options {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.folder_identification_options > span {
    width: calc(50% - 25px);
}

.folder_identification_options > span:nth-child(1) {
    text-align: right;
}

#folder_ident_comment {
    min-height: 58px;
}

.project-breadcrumbs {
    background: url('../images/ui_icons/logo_Icon_right.svg') no-repeat;
    margin: 0 0px 0 15px;
    padding: 5px 0 0 36px;
    color: #7E7E7E;
    font-weight: 400;
    font-size: 17px;
    line-height: 29px;
    background-size: 24px;
    background-position: 10px 7px;
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 35px;
    white-space: nowrap;
}

.project-breadcrumbs + nav {
    margin-left: 30px;
}

#upload_done_button {
    display: block;
}

#noise_reduction_license_percentage,
#noise_reduction_include_percentage,
#noise_reduction_comments_percentage {
    height: 25px;
    padding: 4px 8px!important;
    width: 55px;
}

#scan_layout_identifications {
    z-index: 1!important;
}

.scan-info-page #fossid_file_view_container,
.scan-info-page #local_file_view_container {
    border: 1px solid #D6D6D9;
    border-radius: 4px;
}

.scan-info-page #fossid_file_view_container > .ui-layout-north > .panel-top-menu,
.scan-info-page #local_file_view_container > .ui-layout-north > .panel-top-menu {
    background: #FFF;
    border-bottom: 1px solid #D6D6D9;
}

#local_file_content_wrap {
    width: 100%!important;
}

.scan-info-page #view_fileview_container .ui-layout-pane:nth-child(1) {
    z-index: 1!important;
}

.scan-info-page #fossid_file_result .file_result_line_separator,
.scan-info-page #local_file_content_wrap .file_result_line_separator {
    width: 0;
    padding: 0!important;
}

.scan-info #view_fileview_container {
    width: calc(100% - 32px);
}

.hidden {
    display: none!important;
}

.metrics_table_unselectable th {
    color: #595883;
    text-transform: uppercase;
}

#generate_csv_f,
#view_unmark_as_identified_f {
    display: none;
}

.identification_new {
    border-top: 1px solid hsl(244deg 8% 84%);
    padding-top: 15px;
}

.identification_new .dropout-menu {
  margin-right: 0!important;
}

.identification_new > div[class^='identification_'] {
    cursor: pointer;
    color: #3B3B60;
}

.identification_new .empty > .identification_item-title {
    padding-left: 30px;
    background-image: url('../images/ui_icons/scan_elements/empty_indigo.svg');
    background-repeat: no-repeat;
    height: 40px;
    background-size: 23px;
    background-position: 0 8px;
}

.identification_new .empty:hover > .identification_item-title {
    background-image: url('../images/ui_icons/scan_elements/empty_dark.svg');
}

.identification_new .view_external_identifications,
.identification_new .remove_from_identified,
.identification_new .identification_mark_as {
    color: #1E1684;
    margin-bottom: 40px;
    align-items: center;
    height: 35px;
    font-size: 15px;
}

.identification_new .remove_from_identified:hover,
.identification_new .identification_mark_as:hover {
    color: #3B3B60;
    cursor: pointer;
}

.identification_item-title {
    align-items: center;
    display: flex;
    font-size: 15px;
}

.file_ident_result {
    background-color: #D6E3F8;
    padding: 5px 8px 5px 0;
    margin-bottom: 4px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.file_ident_result > span:nth-of-type(1) {
    padding-left: 42px;
    max-width: calc(100% - 42px);
    flex-grow: 1;
}

.identification_new .identification_component_result .file_ident_result > span:nth-of-type(1) {
    padding-left: 0;
    max-width: calc(100% - 66px);
}

.identification_new .identification_component_result .file_ident_result > div:nth-child(1) {
    min-width: 42px;
    max-width: 42px;
    height: 32px;
}

#identification_panel_licenses .file_ident_result,
.identification_licenses_result .file_ident_result {
    background-image: url('../images/ui_icons/scan_elements/identified_licenses_indigo.svg'); 
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 11px;
    width: 100%;
    cursor: pointer;
}

#identification_panel_licenses .file_ident_result:hover,
.identification_licenses_result .file_ident_result:hover {
    background-image: url('../images/ui_icons/scan_elements/identified_licenses_dark.svg'); 
}

#component_identification_selected_component_info .file_ident_result,
.identification_component_result .file_ident_result {
    background-image: url('../images/ui_icons/scan_elements/identified_component_indigo.svg'); 
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 11px;
    cursor: pointer;
}

#component_identification_selected_component_info .file_ident_result:hover,
.identification_component_result .file_ident_result:hover {
    background-image: url('../images/ui_icons/scan_elements/identified_component_dark.svg'); 
}


.identification_distribution .file_ident_result {
    background-image: url('../images/ui_icons/scan_elements/identified_distributed_indigo.svg'); 
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 11px;
}

.identification_distribution .file_ident_result:hover {
    background-image: url('../images/ui_icons/scan_elements/identified_distributed_dark.svg'); 
}

.identification_comment_result .file_ident_result {
    background-image: url('../images/ui_icons/scan_elements/identified_comment_indigo.svg'); 
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 11px;
}

.identification_comment_result .file_ident_result:hover {
    background-image: url('../images/ui_icons/scan_elements/identified_comment_dark.svg'); 
}

.identification_copyright_result .file_ident_result {
    background-image: url('../images/ui_icons/scan_elements/identified_copyright_indigo.svg');
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 11px;
}

.identification_copyright_result .file_ident_result:hover {
    background-image: url('../images/ui_icons/scan_elements/identified_copyright_dark.svg');
}

.component_ident_license > span {
    transform: scale(0.8);
    word-break: break-all;
}

.version_badge {
    background-color: #F4F4F6;
    border: 2px solid #D6D6D8;
    color: #8C8C9B;
    padding: 4px 12px;
    border-radius: 3px;
    height: 32px;
    display: inline-block;
    text-align: center;
    transform: scale(0.75);
}

.copyright_text, .comment_content {
    overflow: hidden;
    text-overflow: ellipsis;
    height: 20px;
    white-space: nowrap;
}

.comment_content {
    max-width: 100px;
}

.copyright_text {
    width: 100%;
    display: block;
}

.scan-info #view_center_container > .ui-layout-center {
    z-index: 1!important;
}

.top-components-bordered {
    border-bottom: 1px solid #D3D3D9;
}

.top-components-bordered:nth-last-of-type(2) {
    border-bottom: none;;
}
#scan_page_tabs { 
    padding-top: 12px;
}

#scan_page_tabs.fossid-tabs > nav > ul li:nth-child(5) {
    margin-left: auto;
}

.scan-info #foss_id_result_wrapper {
    width: calc(100% - 32px)!important;
}

.scan-info #foss_id_result_wrapper .qv_grid_selected_row {
    background-color: #D6E3F8;
}

.component_ident_name,
.component_ident_version {
    max-width: 100%;
    overflow: hidden;
    word-break: normal;
    text-overflow: ellipsis;
    display: inline-block;
    white-space: nowrap;
}

.identification_new .component_ident_license,
.identification_new .component_ident_version {
    max-width: 70px;
}

.selectReportWidget {
    display: flex;
    flex-wrap: wrap;
}

.fossid-dialog.ui-dialog {
    border: 1px solid rgba(0,0,0,0.125);
    border-radius: 2px;
}

.fossid-dialog.ui-dialog .ui-dialog-titlebar {
    background: #FFF!important;
    color: #000!important;
    font-size: 18px;
    font-weight: 600;
    font-family: roboto, "Gill Sans", Calibri, sans-serif;
    text-align: center;
    padding: 0.75em 0 0.35em;
    border: none;
}

.fossid-dialog.ui-dialog .ui-dialog-titlebar .ui-button .ui-icon {
    background: url('../images/close_grey_24dp.svg');
    width: 24px;
    height: 24px;
    margin-top: -12px;
    margin-left: -16px;
}

.extensions_ranking_container_toggle_up,
.extensions_ranking_container_toggle_down {
    width: 52px;
    height: 52px;
    background-image: url(../images/ui_icons/arrowblackright_9x9.png);
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    float: right;
}

.extensions_ranking_container_toggle_up {
    background-image: url(../images/ui_icons/arrowblackdown_9x9.png);
}

.extensions_ranking_container_full {
    max-height: unset !important;
}

.extensions_ranking_container {
    overflow: hidden;
    max-height: 52px;
    min-height: 52px;
    margin-right: 50px;
    padding: 5px 0 5px;
}

.extensions_ranking_container:empty {
  display: none;
}

.extensions_ranking_container:empty {
  display: none;
}

#project_approval_log_table {
    min-width: 900px!important;
}


.license_category {
    border: solid 2px;
    padding: 2px 5px;
    display: inline-block;
    border-radius: 3px; 
}

.license_category.component_ident_license {
    transform: scale(0.75);
}

.license_category[license_category="PERMISSIVE"] {
    background: #62b4e5;
    color: #ffffff;
    border-color: #3499cd;
}

.license_category[license_category="UNCATEGORIZED"] {
    background: #ffffff;
    color: #777272;
    border-color: #666766;
}

.license_category[license_category="WEAK_COPYLEFT"] {
    background: #fbb041;
    color: #ffffff;
    border-color: #d78c2b;
}
.license_category[license_category="STRONG_COPYLEFT"] {
    background: #ff6566;
    color: #ffffff;
    border-color: #cc3233;
}

.license_category[license_category="SOURCE_AVAILABLE"] {
    background: #989898;
    color: #ffffff;
    border-color: #666766;
}

.license_category[license_category="NON_COMMERCIAL"] {
    background: #7f7f7f;
    color: #ffffff;
    border-color: #404040;
}

.license_category[license_category="COMMERCIAL"] {
    background: #262626;
    color: #ffffff;
    border-color: #000000;
}

.license_category[license_category="NON_LICENSE"] {
    background: #ffffff;
    color: #777272;
    border-color: #666766;
}

.break-word {
    display: block;
    word-break: break-word; 
}

.error_page_message {
    background-color: #E8E8E8;
    border: 1px solid #c56069;
    padding: 15px;
}
.error_page_message .title {
    color: #E64539;
}

.error_page_message .message-wrap{
    padding-left: 30px;
    font-size: 14px;
}
.error_page_message .message-wrap p{
    font-weight: bold;
}
.error_page_message .message-wrap p span{
    font-weight: normal;
}

#approval_request_form_wrapper {
    position: relative;
}
#approval_request_form_wrapper .fossid-loader {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
}

.rule-nav-link {
    cursor: pointer;
    padding: 20px;
    border: 1px solid #EEEEEE !important;
    color: #000;
    font-weight: bold;
}
.rules-nav-tabs{
    display: flex;
}

.rule-tab-pane {
    display: none;
    background: #EEEEEE !important;
    height: 100px;
    padding: 15px;
}
.rule-tab-pane.active {
    opacity: 1;
    display: flex;
}
.rule-tab-pane select{
    height: 25px;
}
.rule-tab-pane .search_result_div {
    color: #0c0c0c !important;
}
.rule-tab-pane .license_rule_result{
    width: 50%;
    border: 1px solid #EEEEEE;
    color: #0c0c0c;
}

#dependencies-warnings-count,
#policy-warnings-count {
    color: #40409a;
    transform: scale(0.8);
    margin: 0px 0 0 4px;
    display: flex;
    align-items: center;
    display:none;
}

.policy_warnings_message {
    padding: 12px 0 0px 25px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.policy_warnings_message .material-icons-outlined {
    font-size: 20px!important;
    color:#40409a;
}

.policy_warnings_message .identified {
    color:#40409a;
    cursor:pointer;
}


.quick_view_rules .dataTables_filter {
    display: none;
}

#quick-view-rules-table_wrapper {
    max-height: 70vh;
    overflow: auto;
}

#quick-view-rules-table > tbody > tr[class] { 
    cursor: pointer;
}

.icon-language {
    width: 25px;
    height: 25px;
    display: inline-block;
    background-repeat: no-repeat;
    transform: scale(0.75);
    transform-origin: 0 0;
}

.icon-language-as {
    background-image: url('../images/languages_icons/actionscript_26.png');
}

.icon-language-asp {
    background-image: url('../images/languages_icons/net_icon_26x26.png');
}
.icon-language-aspx {
    background-image: url('../images/languages_icons/net_icon_26x26.png');
}
.icon-language-bat {
    background-image: url('../images/languages_icons/bash_26.png');
}
.icon-language-c {
    background-image: url('../images/languages_icons/C++_26.png');
}
.icon-language-cpp {
    background-image: url('../images/languages_icons/C++_26.png');
}
.icon-language-coffee {
    background-image: url('../images/languages_icons/coffeescript_26.png');
}
.icon-language-csproj {
    background-image: url('../images/languages_icons/visualstudio_26.png');
}
.icon-language-cs {
    background-image: url('../images/languages_icons/csharp_26.png');
}
.icon-language-style,
.icon-language-css {
    background-image: url('../images/languages_icons/css_26.png');
}
.icon-language-cshtml {
    background-image: url('../images/languages_icons/csharp_26.png');
}
.icon-language-dll {
    background-image: url('../images/languages_icons/dll_26.png');
}
.icon-language-frag {
    background-image: url('../images/languages_icons/bash_26.png');
}
.icon-language-git,
.icon-language-gitignore {
    background-image: url('../images/languages_icons/git_26.png');
}

.icon-language-java {
    background-image: url('../images/languages_icons/java_26.png');
}
.icon-language-js {
    background-image: url('../images/languages_icons/javascript_26.png');
}
.icon-language-json {
    background-image: url('../images/languages_icons/json_26.png');
}
.icon-language-h {
    background-image: url('../images/languages_icons/H_26.png');
}
.icon-language-html {
    background-image: url('../images/languages_icons/html_26.png');
}
.icon-language-sh,
.icon-language-in {
    background-image: url('../images/languages_icons/bash_26.png');
}
.icon-language-less {
    background-image: url('../images/languages_icons/lesscss_26.png');
}
.icon-language-md {
    background-image: url('../images/languages_icons/markdown_26.png');
}
.icon-language-php {
    background-image: url('../images/languages_icons/php_26.png');
}
.icon-language-py,
.icon-language-pyc,
.icon-language-pyd,
.icon-language-pyo  {
    background-image: url('../images/languages_icons/python_26.png');
}

.icon-language-style {
    background-image: url('../images/languages_icons/css_26.png');
}
.icon-language-txt {
    background-image: url('../images/languages_icons/txt_26.png');
}
.icon-language-xml {
    background-image: url('../images/languages_icons/xml_26.png');
}

#current_status_filename {
    word-wrap: break-word;
}


.ui-button-icon.ui-icon.ui-icon-closethick {
	background-image: url("../images/close_grey_24dp.svg")!important;
    background-size: 100%;
    background-position: 0px 0px;
}

.ui-button-icon.ui-icon.close {
    background-image: url("../images/close_grey_24dp.svg")!important;
    background-size: 140%;
    background-position: -3px -4px;
}


.ui-autocomplete {
  border: 1px solid #dddddd!important;
  margin-top: -1px;
}

#start_scan_panel {
  padding: 20px;
  font-size: 13px;
}

#start_scan_panel fieldset {
  padding: 8px 25px 12px;
  border: 1px solid #eaeaea;
  border-radius: 3px;
  margin-bottom: 16px;
}

#start_scan_panel legend {
  margin-bottom: 0!important;
  margin-left: -15px;
  font-size: 14px;
  background-color: #fff;
  padding: 0 7px;
  width: auto;
}

#start_scan_panel legend .material-symbols-outlined{
  vertical-align: middle;
  font-size: 18px;
  cursor: pointer;
  margin: -2px 0 0 3px;
}