﻿.kg-recommendations-view {
    width: calc(100% - 247px);
    height: calc(100% - 82px);
    float: left;
    box-sizing: border-box;
    overflow-y: auto;
    margin-top: 82px;
    display: flex;
    animation: fade-in 0.4s ease;
    transition: width 0.4s ease;
}

#main.widescreen .kg-recommendations-view {
    width: calc(100% - 68px);
}

.kg-recommendations-view .jsgrid-table{
    width:100% !important;
}

.kg-recommendations-view .jsgrid-table tr:first-child{
    border-top: none;
}
.kg-recommendations-view .jsgrid-table tr:last-child{
    border-bottom: none;
}
.kg-recommendations-view .jsgrid-table tr{
    border-bottom: 1px solid rgba(255,255,255, 0.5);
}

.kg-recommendations-view .jsgrid-grid-header{
    display: none;
}

.kg-recommendations-view .kg-form__bottom-actions {
    display: none;
}

.kg-recommendations-view__list {
    
}
.kg-recommendations-view__items{
    border-radius: 5px;
    width: 100% !important;
}

.kg-recommendations-view .kg-form_default{
    margin-right: 20px;
}
.kg-recommendation__info {
    padding: 20px;
    cursor: default;
}

.kg-recommendation__empty-info {
    position: relative;
    margin: 20px;
}
.kg-recommendation__empty-info-text {
    margin: 34px 0;
    color: #555;
}

.kg-recommendation__result-item {
    display: inline-block;
}

.kg-recommendation__result-name {
    cursor: pointer;
    color: #555;
    text-decoration: underline;
    font-size: large;
}

.kg-recommendation__attachment-icon {
    display: inline-block;
    padding: 0;
    border: none;
    background: url(/images/icons/doc1.png);
    background-position: center;
    vertical-align: middle;
    background-size: 24px 24px;
    height: 24px;
    width: 24px;
}

.kg-recommendation__attachment-icon_hidden {
    display: none;
} 

.kg-recommendation__attachment {
    display: inline-block; 
    color: #C80000;
}

.kg-recommendation__attachment_hidden {
    display: none;
}

.kg-recommendation__source {    
    font-size: 0.8em;
    color: #70685A;
}

.kg-recommendation__areas {    
    font-size: smaller;
    color: #70685A;
}

.kg-recommendation__source_hidden {
    display: none;
}

.kg-recommendation__result-bookmark {
    display: block;    
    background: url(/images/icons/star.png) no-repeat;
    background-size: 16px 16px;
    background-position: center;
    border: 0;
    height: 16px;
    width: 16px;
    vertical-align: top;    
    cursor: pointer;
    float: right;
    display: none;
}
.kg-recommendation__result-bookmark:active {
    background: url(/images/icons/star-orange.png) no-repeat;
}

.kg-recommendations-view__items .jsgrid-table td{
    padding: 0;
    background-color: rgba(255,255,255,0.8);
    transition: background-color 0.1s linear;
}
.kg-recommendations-view__items .jsgrid-table td:hover{
    background-color: rgba(255,255,255,1)
}
.kg-recommendations-view__items .jsgrid-table td:hover .kg-recommendation__result-bookmark{
    display: block;
}
.kg-recommendations-view-main {
    height: 100%;
    flex-shrink: 0;
    width: 100%;
    padding: 0 32px;
    box-sizing: border-box;
}

