.search-results-container{
    overflow: auto;
    max-height: 200px;
    margin-top: 10px;
}


.related-input-container{
    display: flex;

}
.related-input{
    margin-right: 10px;
}
.suggested-button{
    margin-right: 10px;
}
.suggested-button.active,
.suggested-button:hover{
    background-color: #FFEB3B;
    color: #000;
}
.suggested-button.active:hover{
    background-color: inherit;
    color: inherit
}
.search-button:hover{
    background-color: #424242;
    color: #FFF;
}

.title-date,.title-relevance{
    cursor: pointer;
}
.title-date:hover,.title-relevance:hover{
    opacity: 0.3;
}

.search-results-table tbody tr:hover{
    background-color: #9E9E9E;

}

.checkbox-related{
    cursor: pointer;
    font-size: 1.5em;
}
.checkbox-related.active{
    color: #4CAF50;
}

a.related-a, .related-a{
    background-color: #f7f7f7;
    font-family: open sans, sans-serif;
    display: flex;
    color: inherit;
    text-decoration: none;
    margin-bottom: 0px;
    align-items: flex-start;
}
a.related-a:hover, .related-a:hover{
    text-decoration: none;
}
.related-wrapper{
    border: 1px solid #a9a9a9;
    border-radius: 0.625rem;
    overflow: hidden;
    margin-bottom: 20px;
    margin-top: 10px;
}
.related-wrapper img {
    max-height: 170px;
    border-radius: 0.425rem;
    margin: 10px;
}
.related-img{
    width: 150px;
    display: block;
}
.related-text{
    display: block;
    padding: 1.2rem;
    width: calc(100% - 150px);
}
.related-text.no-image{
    width: 100%;
}
.related-top-title{
    font-size: 0.7em;
    font-weight: bold;
    padding: 0.1rem 0.5rem;
    margin-right: 0.6rem;
    text-shadow: none;
    color: #fff;
    display: inline-block;
    margin-bottom: 10px;
    width: auto;
}
.related-title{
    font-size: 1.4rem;
    line-height: 1.8rem;
    font-weight: 700;
    width: auto;
    display: block;
    text-decoration: none;
}

.summary{
    padding: 1rem;
    background-color: #f0f0f0;
    /*material light grey */
    border-left: 4px solid #34495e;
    border-right: 4px solid #34495e;
    border-top: 4px solid #34495e;
    border-radius: 0.5em 0.5em 0 0;
}
.summary.no-article-list{
    border-radius: 0.5em;
    border-bottom: 4px solid #34495e;
}

.related-wrapper .article-list-container{
    overflow: hidden;
    width: 100%;
    border-top: 4px solid #34495e;
    border-left: 4px solid #34495e;
    border-right: 4px solid #34495e;
    background-color: #f0f0f0;

}
.related-wrapper .article-list{
    white-space: nowrap;
    width: 100%;
}
.article-list .related-a{
    width: 100%;
    font-size: 0.8em;
    display: inline-flex;
    margin-bottom: 0;
    padding-bottom: 0;
}
.article-list .related-text{
    font-size: 0.8em;
    width: calc(100% - 100px);
}
.article-list .related-title{
    font-size: 1.2rem;
    line-height: 1.5rem;
    white-space: normal;
    width: 100%;
}
.article-list .related-img{
    width: 100px
}

.related-wrapper .dots-container {
    width: 100%;
    height: 100%;
    background: #34495e;
    color: #fff;
    display: table;
}

.related-wrapper .dots-cell {
    display: table-cell;
    vertical-align: middle;
    margin: auto;
    text-align: center;
}

.related-wrapper .dots-ul  {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    cursor: default;
}

.related-wrapper .dots-ul .active div {
    -webkit-transform: scale3d(1.3, 1.3, 1.3);
    transform: scale3d(1.3, 1.3, 1.3);
}
.related-wrapper .dots-ul .active div:after{
    height: 100%;
}

.related-wrapper .dots-ul li {
    position: relative;
    display: block;
    float: left;
    margin: 0 8px;
    width: 10px;
    height: 10px;
    cursor: pointer;
}

.related-wrapper .dots-ul li div {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
    border-radius: 50%;
    text-indent: -999em;
    cursor: pointer;
    position: absolute;
    overflow: hidden;
    background-color: transparent;
    box-shadow: inset 0 0 0 2px white;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}
.related-wrapper .dots-ul li div:after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 1px #fff;
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
}


.summary-box{
    text-align: center;
    background-color: #F44336;
    color: #FFF;
    padding: 0.5em;
    margin-top: 10px;
}
.summary-box-count{
    font-weight: 700;
    margin-right: 5px;
}

.summary-box-button{
    margin-left: 10px;
    background-color: #FFF!important;
    color: #F44336;
}