@charset "UTF-8";
/**
needs bootstrap function str-replace()
 */
/**
* Метод дополняет svg-sprite.scss.
* Позволяет получить чистый урл элемента спрайта для использования в псевдоэлементах или background-image
* Example: content: url(get-svg-url('checkmark', $user-variables: (fill: 'tomato')));
* Example: background-image: url(get-svg-url('heart', $user-variables: (stroke: 'red', fill: 'pink')));
*/
/**
вертикальные отступы
для каждого цвета указываются в порядке как в $grid-breakpoints
 */
main .choices {
  color: #111111;
  margin-bottom: 0;
  max-width: 250px;
}
main .choices__inner {
  border-radius: 12px;
  border: none;
  text-transform: uppercase;
  padding: 16px 24px;
  background-color: #fff;
}
main .choices__placeholder {
  opacity: 1;
}
main .choices__list--single {
  padding: 0;
}
main .choices[data-type*=select-one] .choices__inner {
  padding-bottom: 16px;
}
main .choices[data-type*=select-one]:after {
  content: "";
  position: absolute;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 17 17'%3e%3cg clip-path='url(%23chevron_svg__a)'%3e%3cpath d='m15.506 4.94-7.24 7-7.132-6.795' stroke='%23666666'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='chevron_svg__a'%3e%3cpath fill='white' transform='translate(.333 .5)' d='M0 0h16v16H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e") center no-repeat;
  width: 16px;
  height: 16px;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  border: none;
  margin-top: 0;
}
main .choices.is-open .choices__inner {
  border-radius: 12px 12px 0 0;
}
main .choices.is-open .choices__list--dropdown {
  border-radius: 0 0 12px 12px;
}
main .choices.is-open[data-type*=select-one]:after {
  margin-top: 0;
  -webkit-transform: rotate(180deg) translateY(50%);
      -ms-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
}
