.comparticles-line .container {
  padding: 0 15px;
  display: inline-block;
}

#results-widget-container li
{
  list-style: none;
  padding-top: 0;
  margin-top: 0;
}
#results-widget-container li h4, #results-widget-container li h4 p{
  padding-top: 0;
  margin-top: 0;
}

#results-widget-container li h4{
  font-size: 130%;
}
#results-widget-container li p {
  line-height: 115%;
}

/* ---------------- */
.search_button {
  width: 40px;
  height: 40px;
  border: 1px solid #8390af;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  background: #f3f5f9;
  font-size: 14px;
  line-height: 21px;
  padding: 6px 12px;
  white-space: nowrap;
  color: #031b4e;
  cursor: pointer;
  margin-left: auto;
}

.search_button:focus,
.search_button:focus-visible {
  outline: none;
}

.kbd,
.search_button-text {
  display: none;
}

.icon-search {
  font-size: 16px;
}

.kbd {
  background-color: #f5f5f5;
  border: 1px solid #e5e8ed;
  box-shadow: 0 1px rgba(0, 0, 0, 0.2), 0 0 0 2px #fff inset;
  margin-left: 10px;
  padding: 2px 5px;
}

.flex {
  display: flex;
  align-items: center;
}

.widget-container {
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.widget-container.open {
  opacity: 1;
  pointer-events: all;
}

.widget-content {
  background-color: #f3f5f9;
  border-radius: 3px;
  box-shadow: 0 2px 20px rgba(3, 27, 78, 0.1);
  height: auto;
  left: 50%;
  margin: auto;
  max-height: 70%;
  max-width: 1200px;
  position: absolute;
  top: 15%;
  transform: translate(-50%);
  width: 70%;
}

.widget-content {
  display: grid;
  grid-template-rows: auto 1fr;
}

.navigate-input {
  background: none;
  border: 1px solid #e5e8ed;
  border-radius: 3px 3px 0 0;
  box-sizing: border-box;
  color: #031b4e;
  font-size: 20px;
  line-height: 30px;
  padding: 16px 54px 12px;
  width: 100%;
  outline: none;
}

.navigate-input:focus-within {
  outline: none;
}

#searchbox-widget-container {
  position: relative;
}

#searchbox-widget-container .icon-search {
  color: #99a1b3;
  position: absolute;
  font-size: 18px;
  left: 20px;
  top: 24px;
}

.instructions-bar {
  background: #fff;
  border-radius: 0 0 3px 3px;
  border-top: 1px solid #f3f5f9;
  bottom: 0;
  color: #5b6987;
  font-size: 12px;
  line-height: 1;
  padding: 15px 20px 12px;
  display: flex;
  align-items: center;
}

.instructions-bar .label {
  padding: 0 16px 0 4px;
}

.icon-exit {
  font-size: 9px;
}

.icon-go,
.icon-navigate {
  font-size: 10px;
}

#results-widget-container {
  background: #fff;
  display: grid;
  grid-template-rows: min-content;
  overflow-y: auto;
  padding: 20px;
  gap: 3px;
}

.navigate-item {
  border-radius: 6px;
  margin-bottom: 5px;
  padding: 10px 15px 5px;
  position: relative;
  align-items: stretch;
}
.navigate-item-active,
#results-widget-container .navigate-item:hover {
  background: #e5e8ed;
}

.navigate-item .icon-go {
  color: #031b4e;
  position: absolute;
  top: 10px;
  right: 15px;
  opacity: 0;
}
.navigate-item-active .icon-go,
#results-widget-container .navigate-item:hover .icon-go {
  opacity: 1;
}

.navigate-item a {
  color: #031b4e;
  display: block;
  text-decoration: none;
}

.navigate-item a .eyebrow {
  color: #5b6987;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.navigate-item a h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 5px 0;
}

.navigate-item a p {
  color: #5b6987;
  font-size: 14px;
  margin: 0 0 5px;
}

em {
  color: #0069ff;
  font-style: normal;
}

@media screen and (min-width: 992px) {
  .search_button {
    width: auto;
  }
  .kbd,
  .search_button-text {
    display: block;
  }
  .icon-search {
    margin-right: 10px;
  }
}

@media screen and (min-width: 1200px) {
  .search_button {
    min-width: 360px;
    justify-content: space-between;
  }
}
