/*
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

results

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/

.search-content .result-div{
  border-radius: 3px;
  border-top-left-radius: 0px;
  grid-row: 2;
  grid-column: 2;
  background-color: #FFFFFF;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
}
.result-list{
  display: flex;
  list-style-type: none;
  padding: 0 25px 0 25px;
  margin: 0;
  margin-bottom: 25px;
  flex-direction: column;
}
.result-list > li:hover {
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
  border-color: #4F86A0;
}
.result-list > li {
  min-height: 90px;  /* For IE 11. */
  min-height: min(min-content, 90px);  /* For modern browsers. */
  display:flex;
  border: 0;
  box-shadow: 0 0 7px 0 rgba(0,0,0,0.06);
  border: 1px solid #e5e5e5;
  margin: 5px 0 5px 0;
  padding:0;
  width: 100%;
  border-radius: 5px;
  transition: all .25s ease-in;
}
.result-list a {
  width: 100%;
}
.result-list > li img {
  display: none;
  width: 105px;
  border-radius: 5px;

}
.result-list .result-item {
  display: flex;
  height: 100%;
}
.result-item .content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
  padding: 10px 0;
  padding-right: 25px;
  width: 100%;
}
.result-list > li h4 {
  height: 20px;
  color: #4F86A0;
  font-size: 0.91rem;
  font-weight: normal;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  min-height: 1.3rem;
}
.result-list .private_results{
  background: url(../img/small-lock.svg) no-repeat 0.6rem center / contain;
  background-size: 0.6rem;
  font-size: 0.6rem;
  padding: 0rem 0.7rem 0rem 1.6rem;
  margin-right: 10px;
  background-color: #3E8CAE;
  color: #FFFFFF;
  border-radius: 13.5px;
  display: inline-flex;
  height: 0.91rem;
  align-items: center;
}
.result-list > li p {
  color: #98A3A3;
  font-size: 0.85rem;
  margin: 0;

}
.result-list > li p time {
  font-size: 0.72rem;
}
.result-list > li p.description {
  margin-top: 3px;
  font-size: 0.65rem;
}
.result-list > li ol {
  border-top: 1px solid #e5e5e5;
  color: #98a3a3;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.65rem;
  list-style: none;
  margin: 5px 0 0;
  padding: 5px 0 0;
  width: calc(100% - 10px);
}
.result-list > li li {
  border-radius: 2px;
  display: block;
  flex: 0 1 calc(20% - 10px);
  margin: 0 0 5px;
  padding: 0 10px 0 0;
}
.result-list > li ol.answers li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.result-list > li li.moreanswers {
  opacity: .4;
}
@media only screen and (min-width: 992px) {
  .result-list > li img {
    display: block;
    margin: auto 30px auto 10px;
  }
  .result-list > li span.image{
    min-width: 105px;
    min-height: 56px;
    border-radius: 5px;
    height: auto;
    display: block;
    margin: 15px 30px auto 10px;
    background-size: contain;
    width: 105px;
  }
  .result-list > li span.image{
    background: url(../img/file.svg) no-repeat center / contain;
  }
  .result-list > li span.pot,
  .result-list > li span.potx,
  .result-list > li span.ppt,
  .result-list > li span.pptx {
    background: url(../img/ppt.svg) no-repeat center / contain;
  }
  .result-list > li span.dot,
  .result-list > li span.dotx,
  .result-list > li span.doc,
  .result-list > li span.docx {
    background: url(../img/doc.svg) no-repeat center / contain;
  }
  .result-list > li span.xlt,
  .result-list > li span.xltx,
  .result-list > li span.xls,
  .result-list > li span.xlsx {
    background: url(../img/xls.svg) no-repeat center / contain;
  }
  .result-list > li span.pdf {
    background: url(../img/pdf.svg) no-repeat center / contain;
  }
  .result-list > li span.htm {
    background: url(../../img/featured-image-thumbnail1x.jpg) center / cover;
    min-height: 70px;
  }
  .result-list > li span.looker{
    background: url(../img/looker.svg) no-repeat center / contain;
  }
}
@media only screen and (max-width: 991px) {
  .result-list .result-item {
    padding: 0 15px;
  }
  .result-list > li ol {
    justify-content: space-between;
  }
  .result-list > li li {
    flex-basis: calc(30% - 10px);
    text-overflow: ellipsis;
  }
}
.result-list em {
  font-weight: bold;
  font-style: normal;
}
