*{box-sizing:border-box}
body{background:#eef1f2}
.lsh-content-page{
  min-height:620px;
  padding:22px 28px 60px;
  background:#eef1f2;
}
.lsh-content-title{
  font-size:34px;
  font-weight:400;
  margin:0 0 30px;
}
.lsh-content-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.lsh-content-filter{
  display:flex;
  align-items:center;
  gap:5px;
  font-size:16px;
}
.lsh-content-filter span{font-weight:400}
.lsh-content-filter select{
  border:0;
  background:transparent;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
}
.lsh-content-search{
  display:flex;
  gap:10px;
  align-items:center;
}
.lsh-content-searchbox{
  width:300px;
  height:44px;
  display:flex;
  align-items:center;
  gap:6px;
  background:#fff;
  border:2px solid #c7ccd1;
  border-radius:8px;
  padding:0 10px;
}
.lsh-content-searchbox input{
  flex:1;
  border:0;
  outline:0;
  font-size:14px;
  min-width:0;
}
.lsh-content-search button{
  height:44px;
  padding:0 18px;
  border:0;
  border-radius:5px;
  background:linear-gradient(#444,#111);
  color:#fff;
  font-weight:700;
  cursor:pointer;
}
.lsh-content-divider{
  border-top:1px solid #aeb4bb;
  margin-top:18px;
}
.lsh-content-results{
  min-height:440px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.lsh-content-empty{
  font-size:22px;
  font-weight:700;
  color:#7c848b;
}
.lsh-content-list{
  width:100%;
  align-self:flex-start;
  padding-top:20px;
}
.lsh-content-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  background:#fff;
  border:1px solid #d5d9d9;
  border-radius:8px;
  padding:16px 18px;
  margin-bottom:10px;
}
.lsh-content-item h3{margin:0 0 5px;font-size:16px}
.lsh-content-item p{margin:0;color:#565959;font-size:12px}
.lsh-content-item small{display:block;margin-top:5px;color:#777}
.lsh-content-item a{
  color:#2162a1;
  text-decoration:none;
  font-weight:700;
}
@media(max-width:700px){
  .lsh-content-page{padding:16px 14px 40px}
  .lsh-content-title{font-size:28px}
  .lsh-content-toolbar{align-items:stretch;flex-direction:column}
  .lsh-content-search{width:100%}
  .lsh-content-searchbox{width:100%}
}

/* LSH Content Library custom All Content dropdown */
.lsh-content-filter-wrap{
  position:relative;
  z-index:25;
}
.lsh-content-filter-btn{
  border:0;
  background:transparent;
  padding:7px 0;
  font-size:16px;
  cursor:pointer;
  color:#111;
}
.lsh-content-filter-btn span:first-child{font-weight:400}
.lsh-content-filter-btn b{font-weight:700}
.lsh-content-filter-btn .caret{font-size:12px}

.lsh-content-filter-menu{
  position:absolute;
  top:42px;
  left:-2px;
  width:305px;
  background:#fff;
  border-radius:7px;
  box-shadow:0 4px 14px rgba(0,0,0,.3);
  padding:14px 14px 14px 14px;
  z-index:999;
}
.lsh-content-filter-menu::before{
  content:"";
  position:absolute;
  top:-10px;
  left:22px;
  border-left:10px solid transparent;
  border-right:10px solid transparent;
  border-bottom:10px solid #fff;
}
.lsh-content-filter-menu .filter-close{
  position:absolute;
  right:12px;
  top:8px;
  border:0;
  background:transparent;
  font-size:27px;
  font-weight:700;
  cursor:pointer;
  line-height:1;
}
.lsh-content-filter-menu label{
  display:flex;
  align-items:center;
  gap:14px;
  min-height:38px;
  padding:3px 26px 3px 2px;
  font-size:17px;
  cursor:pointer;
}
.lsh-content-filter-menu input[type="radio"]{
  appearance:none;
  width:20px;
  height:20px;
  border:1px solid #8b8f93;
  border-radius:50%;
  background:#fff;
  margin:0;
  position:relative;
}
.lsh-content-filter-menu input[type="radio"]:checked{
  border:2px solid #ff9900;
}
.lsh-content-filter-menu input[type="radio"]:checked::after{
  content:"";
  position:absolute;
  width:10px;
  height:10px;
  border-radius:50%;
  background:#1473e6;
  top:3px;
  left:3px;
}
@media(max-width:700px){
  .lsh-content-filter-menu{
    width:min(305px,calc(100vw - 30px));
  }
}
