.site-logo {
  height:75px;
  background-size:contain;
  background-color: var(--color-bg-100);
  background-position:center;
  background-repeat:no-repeat;
  width: 100px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  transition: .4s all;
  position:relative;
  z-index: 2;
}
.directory-card {
  display: flex;
  flex-direction: row;
  padding: 15px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  gap: 20px;
  margin-bottom: 15px;
  color: var(--color-text-80);
  align-items: center;
  transition: .4s all;
  position:relative;
}
.directory-card:hover {
  text-decoration: none;
  box-shadow: var(--shadow-big);
  border-color: var(--color-grey-40);
}
.directory-card:hover .site-logo {
  border-color: var(--color-grey-40);
  scale: 1.05;
  box-shadow: var(--shadow-big);
}
.directory-card .dc-info {
  min-width: 0;
  flex: 1;
}

.dc-title {
  font-weight: bold;
  color: var(--color-text-100);
}
.dc-tagline {
  font-size:13px;
  color: var(--color-text-80);
}
.dc-host {
  font-size:12px;
  color: var(--color-text-60);
}
.dc-title, .dc-tagline, .dc-host, .dc-certs {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dc-certs {
  margin-top:10px;
  font-size:12px;
}
.dc-certs .sep {
  color:var(--color-border);
  margin:0 5px;
}
.dc-certs .stars {
  display: inline-block;
  position: relative;
  margin-right: 3px;
  font-size: 10px;
  transform: translateY(-1px);
}
.dc-certs .stars div {
  position: absolute;
  left: 0;
  top: 0;
}
.dc-certs .stars::before {
  content: "\f005 \f005 \f005 \f005 \f005";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  color: var(--color-grey-40);
}
.dc-sitetype-text {
  font-size:9px;
  font-weight:bold;
  text-align:center;
  background:var(--color-grey-20);
  color:var(--color-text-100);
  text-transform:uppercase;
  line-height:16px;
  letter-spacing: 1px;
  padding-top: 5px;
  margin-top: -5px;
  position: relative;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.dc-sitetype-icon {
  position:absolute;
  top:15px;
  right:15px;
  color:var(--color-text-60);
  font-size:13px;
}
.plink {
  display:inline-block;
  color:var(--color-text-80);
}
.search-box input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  outline: none;
  padding: 8px 10px;
}
.search-box {
  display: flex;
  align-items: center;
  border-radius: 100px;
  padding: 0 20px 0 10px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-primary);
  transition: border-color .2s, box-shadow .2s;
  background-color: white;
}
.search-box .fa {
  width: 25px;
}
.search-box:focus-within {
  border-color: var(--color-grey-40);
  box-shadow: var(--shadow-big);
}
.ui-autocomplete .ui-menu-item-wrapper {
  padding: 8px 15px;
  font-size: 13px;
  font-family: 'Open Sans', arial, sans-serif;
  border: none;
}
.ui-autocomplete .ui-menu-item:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}
.ui-autocomplete .ui-menu-item-wrapper.ui-state-active {
  background-color: var(--color-highlight);
  border: none;
  margin: 0;
}
.hero-check {
  background-color: #EFEFEF;
  background-image: url(//cdn.trustedsite.com/static/img/grey-check.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: min(120%, 1000px);
}
.pitch-card {
  background: linear-gradient(90deg, #0E3243 0%, #15719C 100%);
  color: white;
}
.meet-trustedsite {
  background: var(--color-bg-60);
  padding: 60px 20px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.meet-trustedsite > div {
  max-width: 400px;
  margin: 0 auto;
}

.search-and-filter {
  display: flex;
  gap: 10px;
  flex-direction: row;
  align-items: center;
}
.search-and-filter > div:first-child {
  flex: 1;
  align-items: center;
}

.filter-buttons {
   position: relative;
}
.filter-btn {
   background-color: white;
   border-radius: 20px;
   height: 42px;
   line-height: 42px;
   position: relative;
}
.filter-card {
   position: absolute;
   top: 100%;
   right: 45px;
   margin-top: 8px;
   background: white;
   border: 1px solid var(--color-border);
   border-radius: 4px;
   padding: 20px;
   box-shadow: var(--shadow-big);
   z-index: 10000;
   min-width: 270px;
   max-width: 400px;
}
.filter-card .chosen-container .chosen-drop {
  z-index: 10001;
}
#filter-all {
  left: auto;
  right: 0;
}
.filter-card h6 {
  margin-bottom: 3px;
  margin-top: 15px;
}
.filter-card > div:first-child h6 { margin-top: 0; }
.filter-card .ts-button {
  margin-top: 10px;
}
.filter-card li {
  margin-bottom: 3px;
}
.filter-pill {
  position: absolute;
  top: -7px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  border-radius: 11px;
  background: #73B200;
  color: white;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s;
  pointer-events: all;
  box-shadow: var(--shadow-big);
}
.filter-pill:hover {
  background: var(--color-red);
}
.filter-pill:hover .pill-count {
  display: none;
}
.filter-pill:hover::after {
  content: '\f00d';
  font-size: 10px;
  font-family: 'Font Awesome 6 Pro';
  font-weight: bold;
  line-height: 1;
}
.reset-filters-link {
  display: block;
  text-align: center;
  width: 100%;
}
