/**
 * @file
 * Search textarea for listing.
 */
/* stylelint-disable scss/at-import-partial-extension */
/* stylelint-disable scss/at-import-partial-extension */ /**
 * @file
 * Aspect ratio mixins.
 */
/**
 * @file
 * Centering mixin.
 *
 * Center an element orizontally, vertically or both, assuming the parent
 * element has relative or absolute position.
 * https://css-tricks.com/snippets/sass/centering-mixin/
 */
/**
 * @file
 * Globally used mixins and functions.
 *
 * Here you can add your custom SASS mixins or functions.
 */
/**
 * @file
 * Globally tools for images.
 */
/* stylelint-enable scss/at-import-partial-extension */
/**
 * @file
 * Global colors variables.
 */
/* stylelint-disable-line scss/at-import-partial-extension */
/**
 * @file
 * Global colors variables.
 */
/**
 * @file
 * Shadows variables.
 */
/**
 * @file
 * Animations elements.
 */
@keyframes slideOutRight {
  from {
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(5px, 0, 0);
  }
}
@keyframes selectedElementOpacity {
  0% {
    opacity: 100%;
  }
  10% {
    opacity: 60%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes opacityDecrease {
  from {
    opacity: 100%;
  }
  to {
    opacity: 60%;
  }
}
@keyframes selectedElementPaddingLeft {
  0% {
    padding-left: 0;
  }
  40% {
    padding-left: 0.75rem;
  }
  100% {
    padding-left: 0;
  }
}
@keyframes slideInFromRight {
  from {
    visibility: visible;
    transform: translate3d(32px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
/**
 * @file
 * All stuff for typography.
 */
/* HEADING */
/* TEXT & CONTENT */
.form--search_api_form .form-item--textfield .form-control,
.form--search_api_form .form-item--search .form-control {
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
}

/**
 * @file
 * Buttons elements.
 *
 * Style for buttons
 */
/**
 * @file
 * Variables for links style.
 */
/**
 * @file
 * Background elements style.
 */
/**
 * @file
 * Elements for Video.
 */
/**
 * @file
 * Cards variables element style.
 */
/**
 * @file
 * Forms variables element style.
 */
/* INLINE SEARCH FORM. */
.form--search_api_form .form-item--textfield .form-control,
.form--search_api_form .form-item--search .form-control {
  width: 100%;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  padding-left: 3.5rem;
  font-weight: 300;
  color: #444;
  background-color: #ededed;
  border: 0.125rem solid #ededed;
  border-radius: 2rem;
  transition: all 0.2s ease 0s;
}
.form--search_api_form .form-item--textfield .form-control:hover,
.form--search_api_form .form-item--search .form-control:hover {
  cursor: pointer;
  background-color: #fff;
  border-color: #a5a5a5;
}
.form--search_api_form .form-item--textfield .form-control::placeholder,
.form--search_api_form .form-item--search .form-control::placeholder {
  color: #767676;
}
.form--search_api_form .form-item--textfield .form-control::-webkit-search-decoration,
.form--search_api_form .form-item--search .form-control::-webkit-search-decoration, .form--search_api_form .form-item--textfield .form-control::-webkit-search-cancel-button,
.form--search_api_form .form-item--search .form-control::-webkit-search-cancel-button {
  appearance: none;
}

/**
 * @file
 * Search, common elements style.
 */
/**
 * @file
 * Accordion elements variables.
 */
/* stylelint-enable scss/at-import-partial-extension */
/* stylelint-disable-line scss/at-import-partial-extension */
.form--search_api_form {
  position: relative;
  display: flex;
}
.form--search_api_form .form-item--textfield,
.form--search_api_form .form-item--search {
  position: relative;
  width: 100%;
}
.form--search_api_form .form-item--textfield::before,
.form--search_api_form .form-item--search::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: auto;
  margin-bottom: auto;
  content: "";
  background-image: url("../../../images/icons/icon-search.svg");
  background-position: center;
  z-index: 1;
  transition: width 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.form--search_api_form .form-submit-wrapper {
  position: relative;
  margin-top: -1px;
  margin-bottom: -1px;
}
.form--search_api_form .form-submit-wrapper .form-submit {
  width: 0;
  height: 100%;
  padding-top: 0.875rem;
  padding-right: 0;
  padding-bottom: 0.875rem;
  padding-left: 0;
  font-size: 1rem;
  font-size: 0;
  line-height: 1.75;
  line-height: 1.5;
  border-radius: 0 2rem 2rem 0;
  transition: width 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.form--search_api_form .form-submit-wrapper .icon-submit {
  position: relative;
}
.form--search_api_form .form-submit-wrapper .icon-submit::after {
  position: absolute;
  top: 0;
  right: -0.5rem;
  bottom: 0;
  width: 0;
  height: 1.5rem;
  margin-top: auto;
  margin-bottom: auto;
  content: "";
  background-image: url("../../../images/icons/icon-search--white.svg");
  background-position: center;
}
.form--search_api_form:focus-within .form-item--textfield::before,
.form--search_api_form:focus-within .form-item--search::before {
  width: 0;
}
.form--search_api_form:focus-within .form-item--textfield .form-control,
.form--search_api_form:focus-within .form-item--search .form-control {
  padding-left: 1.5rem;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 2rem 0 0 2rem;
  outline: 1px solid #008444;
  box-shadow: none;
}
.form--search_api_form:focus-within .form-submit-wrapper .icon-submit::after {
  width: 1.5rem;
}
.form--search_api_form:focus-within .form-submit {
  width: 3rem;
  visibility: visible;
}
.form--search_api_form .form-control[type=search] {
  outline-offset: 0;
}

/*# sourceMappingURL=components.search-blog.css.map */
