body {
    overflow-x: hidden;
    position: relative;
    padding-top: 70px;
}

@media print {
    body {
        padding-top: 0;
    }
}

.dropdown-menu-radio {
    padding-left: 10px;
}

.drop-radio {
    margin-left: 10px;
}

.radio-small {
    margin-bottom: 0;
    margin-top: 0;
}

.companypic {
    width: 17px;
    display: inline;
}

.companypic:hover {
    filter: opacity(60%);
}

.companypic-bg {
    width: 20px;
    display: inline;
}

.companypic-bg:hover {
    filter: opacity(60%);
}

.td .table-small {
    font-size: 12px;
}

.hoverpic {
    min-width: 10px;
    max-width: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.treeview {
    font-size: 12px;
}

.form-group-sm {
    margin-bottom: 5px;
}

.table-compact>tbody>tr>td,
.table-compact>tbody>tr>th,
.table-compact>tfoot>tr>td,
.table-compact>tfoot>tr>th,
.table-compact>thead>tr>td,
.table-compact>thead>tr>th {
    padding: 3px;
}

table.dataTable tbody th, table.dataTable tbody td {
    padding: 3px;
}

.thumbnail-sm {
    height: 100px;
}

.auto-size-select {
    height: inherit;
}

/* Back to top button  */
.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display:none;
    z-index: 1030;
}


@media  (min-width: 768px) {
    .fixed-sidebar {
        position: fixed;
        left: 15px;
        z-index: 1000;
        width: inherit;
        overflow-x: hidden;
        overflow-y: auto;
        /*noinspection W3CssValidation*/
        -webkit-overflow-scrolling: touch;
        max-height: 100%;
        padding-bottom: 50px;
    }


}

/*noinspection W3CssValidation*/
@media  (max-width: 768px) {
    .fixed-sidebar {
        position: fixed;
        top: 56px;
        right: 0;
        left: 0;
        background-color: inherit;
        z-index: 1000;
        width: inherit;
        overflow-x: hidden;
        overflow-y: auto;
        /*noinspection W3CssValidation*/
        -webkit-overflow-scrolling: touch;
        max-height: 100%;
        opacity: 0.97;
        padding: 7px 15px 50px;
        margin-top: -10px;
    }

    .sidebar-container {
        margin-top: 0;
        padding-top: 5px;


        background-color: #F8F8F8;
    }
}

.fixed-sidebar::-webkit-scrollbar {display:none;}


@media (min-width: 768px) {
    .sidebar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important;
    }
}

.x3d-fullscreen {
    /*height: auto;*/
    width: 100%;
}

.btn-text {
    color: inherit;
    padding: 0;
    border: hidden;
    background-color: transparent;
}

.sidebar-title {
    margin-top: 0;
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.1;
}

.container-progress {
    padding-top: 25%;
}

.vertical-align {
    display: flex;
    align-items: center;
}

.vertical-align-table>tbody>tr>td,
.vertical-align-table>tbody>tr>th,
.vertical-align-table>tfoot>tr>td,
.vertical-align-table>tfoot>tr>th,
.vertical-align-table>thead>tr>td,
.vertical-align-table>thead>tr>th {
    vertical-align: middle;
}

.form-control-link {
    display: block;
    padding-top: 7px;
    padding-bottom: 7px;
}

@media print {
    a.hidden-print-href[href]:after {
        content: none !important;
    }
}

/*
    Fance Collapse
 */

.fancy-collapse-panel .panel-default > .panel-heading {
    padding: 0;
}

.panel-heading a[data-toggle=collapse] {
    display: inline-block;
    width: 100%;
    position: relative;
}

@font-face {
    font-family: 'FA5';
    font-style: normal;
    font-weight: 900;
    src: url("../../webfonts/fa-solid-900.eot");
    src: url("../../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../../webfonts/fa-solid-900.woff2") format("woff2"), url("../../webfonts/fa-solid-900.woff") format("woff"), url("../../webfonts/fa-solid-900.ttf") format("truetype"), url("../../webfonts/fa-solid-900.svg#fontawesome") format("svg");
}

.panel-heading a[data-toggle=collapse]:after {
    /*noinspection CssNoGenericFontName*/
    font-family: "FA5";
    content: "\f106";
    position: absolute;
    right: 20px;
    font-size: 20px;
    font-weight: 400;
    top: 50%;
    line-height: 1;
    margin-top: -10px;
}

.panel-heading a[data-toggle=collapse].collapsed:after
{
    content: "\f107";
}

.table-center{
    text-align: center;
}

.font-weight-bold {
    font-weight:bold;
}

/* Show symbol after exteral links */
/*noinspection CssNoGenericFontName*/
a[target="_blank"].link-external:after {
    content: "\f35d ";
    font-family: "FA5";
    margin-left: 3px;
    font-weight: normal;
    font-size: smaller;
    font-style: normal;
    display: inline-block;
    text-decoration: inherit;
}

/** Button outline defintions */

.btn-outline {
    background-color: transparent;
    color: inherit;
    transition: all .5s;
}

.btn-primary.btn-outline {
    color: #428bca;
}

.btn-success.btn-outline {
    color: #5cb85c;
}

.btn-info.btn-outline {
    color: #5bc0de;
}

.btn-warning.btn-outline {
    color: #f0ad4e;
}

.btn-danger.btn-outline {
    color: #d9534f;
}

.btn-primary.btn-outline:hover,
.btn-success.btn-outline:hover,
.btn-info.btn-outline:hover,
.btn-warning.btn-outline:hover,
.btn-danger.btn-outline:hover {
    color: #fff;
}

/**
 Use this class if you has a <span> or <p> and you want to create automatic textbreaks in the text.
 */
.text-break {
    /*noinspection W3CssValidation,CssUnknownProperty*/
    -ms-word-break: break-all;
    /*noinspection CssOverwrittenProperties*/
    word-break: break-all;

    /* Non standard for webkit */
    /*noinspection W3CssValidation,CssInvalidPropertyValue,CssOverwrittenProperties*/
    word-break: break-word;

    /*noinspection W3CssValidation*/
    -webkit-hyphens: auto;
    /*noinspection W3CssValidation*/
    -moz-hyphens: auto;
    hyphens: auto;
}

img.img-attachement {
    max-width: 25%;
    margin: 10px;
}

a.link-collapse {
    color: #333;
}

span.highlight {
    background-color: yellow;
}

/**
Bootstrap-Treeview override
 */
/* Set display style to flexbox, so wraped text is aligned to */
.list-group-item {
    padding: 5px 10px;
    display: flex;
}

/** Select in pagination */
.pagination>li>select
{
    position: relative;
    float: left;
    padding: 7px 5px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.pagination>li>button
{
    position: relative;
    float: left;
    padding: 6px 5px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

/* "Breadcrumb" like */

/* Style the list */
ul.structural_link {
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 0;
    list-style: none;
    background-color: inherit;
}

/* Display list items side by side */
ul.structural_link li {
    display: inline;
    font-size: inherit;
}

/* Add a slash symbol (/) before/behind each list item */
ul.structural_link li+li:before {
    padding: 2px;
    color: grey;
    /*content: "/\00a0";*/
    font-family: "FA5", sans-serif;
    font-style: normal;
    font-weight: normal;
    content: "\f30b"; /* long-arrow-alt-right */
}

/* Add a color to all links inside the list */
ul.structural_link li a {
    color: #0275d8;
    text-decoration: none;
}

/* Add a color on mouse-over */
ul.structural_link li a:hover {
    color: #01447e;
    text-decoration: underline;
}

a.text-white {
   color: #fff;
}

@media (max-width: 767px) {
    .pull-right-not-xs, .pull-left-not-xs{
        float: none;
    }
    .pull-right-xs {
        float: right;
    }
    .pull-left-xs {
        float: left;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .pull-right-not-sm, .pull-left-not-sm{
        float: none;
    }
    .pull-right-sm {
        float: right;
    }
    .pull-left-sm {
        float: left;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .pull-right-not-md, .pull-left-not-md{
        float: none;
    }
    .pull-right-md {
        float: right;
    }
    .pull-left-md {
        float: left;
    }
}
@media (min-width: 1200px) {
    .pull-right-not-lg, .pull-left-not-lg{
        float: none;
    }
    .pull-right-lg {
        float: right;
    }
    .pull-left-lg {
        float: left;
    }
}