.synsearch .synsearch-form {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 780px;
  margin: 0 auto 70px;
}
.synsearch .synsearch-form .form-item {
  position: relative;
  flex-grow: 1;
  margin: 0 120px 0 0;
}
.synsearch .synsearch-form .form-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 16px;
  border: 1px solid #b6c3d0;
  background-color: transparent;
  transition: opacity 0.4s;
  z-index: 0;
}
.synsearch .synsearch-form .form-item:hover::before, .synsearch .synsearch-form .form-item:focus::before {
  opacity: 1;
}
@media (max-width: 575.98px) {
  .synsearch .synsearch-form .form-item {
    width: 100%;
    margin-right: 0;
  }
}
.synsearch .synsearch-form .form-control {
  color: #31456a;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  width: 100%;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  border: 3px solid transparent !important;
  border-radius: 18px;
  box-shadow: 0 5px 10px rgba(18, 61, 101, 0.34), 0 -6px 22px #fff;
  transform-origin: center top;
  transition: background-color 0.4s, border-color 0.4s, opacity 0.4s, transform 0.4s, box-shadow 0.4s;
  animation: shadowIn 0.3s;
  animation-fill-mode: forwards;
  cursor: pointer;
  z-index: 1;
}
.synsearch .synsearch-form .form-control:focus {
  background-color: transparent;
}
.synsearch .synsearch-form .form-control:hover {
  background-color: transparent;
}
.synsearch .synsearch-form .btn--submit {
  color: transparent;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  right: 120px;
  min-width: inherit;
  width: 60px;
  height: 60px;
  padding: 0;
  background-image: url("/themes/adaptive/images/template/icons/icon-search.png");
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: none;
  transform: translateY(-50%);
  z-index: 3;
}
@media (max-width: 575.98px) {
  .synsearch .synsearch-form .btn--submit {
    top: 0;
    right: 0;
    transform: none;
  }
}
.synsearch .synsearch-form .synbtn {
  color: #31456a;
  font-size: 16px;
  font-weight: 500;
  position: absolute;
  top: 50%;
  right: 0;
  opacity: 0.4;
  transform: translateY(-50%);
  transition: opacity 0.4s;
  z-index: 3;
}
.synsearch .synsearch-form .synbtn:hover {
  opacity: 1;
}
@media (max-width: 575.98px) {
  .synsearch .synsearch-form .synbtn {
    position: relative;
    top: auto;
    margin-top: 10px;
    padding: 10px 12px;
    transform: none;
  }
}
.synsearch .synsearch-form label {
  display: none;
}
@media (max-width: 575.98px) {
  .synsearch .synsearch-form {
    flex-wrap: wrap;
  }
}
.synsearch-result__title {
  color: #2e4268;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
}
.synsearch-result__object {
  color: #2e4268;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 30px;
  text-align: center;
}
.synsearch-result__list {
  max-width: 760px;
  margin: 0 auto;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: list;
}
.synsearch-result__item {
  color: #2e4268;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.synsearch-result__item::before {
  counter-increment: list;
  content: counter(list);
  color: #2e4268;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  display: inline-block;
  padding-right: 30px;
}
.synsearch-result__block {
  font: inherit;
  margin-bottom: 0;
  border-bottom: transparent solid 1px;
  transition: border-color 0.4s;
}
.synsearch-result__block:hover {
  border-bottom-color: #2e4268;
}