/* Sizes */
/* Themes */
/* Default */
/* Bright */
/* White */
/* Fire */
/* Fire solid */
/* Premium */
/* Premium solid */
/* Solid */
.s-button {
  font-size: 0;
  font-family: Lato, LatoWeb, 'PT Sans', Arial;
  position: relative;
  display: inline-block;
  padding: 0 4px;
  cursor: default;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.55);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  outline: none;
}
.s-button:hover {
  color: rgba(0, 0, 0, 0.75);
  border-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.s-button:active {
  color: rgba(0, 0, 0, 0.75);
  border-color: rgba(0, 0, 0, 0.75);
  -webkit-transform: scale(0.98);
  -ms-transform: scale(0.98);
  -o-transform: scale(0.98);
  transform: scale(0.98);
}
.s-button:focus {
  box-shadow: 0 0 0 2px #d5f1fd;
}
.s-button__text {
  display: inline-block;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 11px;
  font-size: 13px;
  line-height: 26px;
  position: relative;
  vertical-align: top;
  pointer-events: none;
}
.s-button_icon {
  padding: 0;
}
.s-button__icon {
  display: inline-block;
  width: 26px;
  height: 26px;
  cursor: pointer;
  background-size: 8px;
  position: relative;
}
.s-button__text + .s-button__icon {
  margin-left: -10px;
}
.s-button__icon + .s-button__text {
  margin-left: -10px;
}
.s-button_action .s-button__text {
  font-size: 11px;
  font-weight: bold;
  line-height: 26px;
  text-transform: uppercase;
}
.s-button_checkbox input[type=checkbox],
.s-button_radio input[type=checkbox],
.s-button_checkbox input[type=radio],
.s-button_radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.s-button_size_xs .s-button__text {
  font-size: 13px;
  line-height: 20px;
  height: 22px;
}
.s-button_size_xs .s-button__icon {
  width: 22px;
  height: 22px;
}
.s-button_size_xs.s-button_action .s-button__text {
  font-size: 10px;
  line-height: 22px;
}
.s-button_size_s .s-button__text {
  font-size: 13px;
  line-height: 26px;
  height: 26px;
}
.s-button_size_s .s-button__icon {
  width: 26px;
  height: 26px;
}
.s-button_size_s.s-button_action .s-button__text {
  font-size: 11px;
  line-height: 26px;
}
.s-button_size_m {
  border-radius: 16px;
}
.s-button_size_m .s-button__text {
  font-size: 14px;
  line-height: 28px;
  height: 30px;
  letter-spacing: .1em;
}
.s-button_size_m .s-button__icon {
  width: 30px;
  height: 30px;
}
.s-button_size_m.s-button_action .s-button__text {
  font-size: 11px;
  line-height: 30px;
}
.s-button_size_l {
  border-radius: 18px;
}
.s-button_size_l .s-button__text {
  font-size: 15px;
  line-height: 32px;
  height: 34px;
}
.s-button_size_l .s-button__icon {
  width: 34px;
  height: 34px;
}
.s-button_size_l.s-button_action .s-button__text {
  font-size: 12px;
  line-height: 34px;
}
.s-button_bright {
  color: rgba(0, 109, 217, 0.75);
  border-color: rgba(0, 109, 217, 0.5);
}
.s-button_bright:hover {
  color: #006dd9;
  border-color: rgba(0, 109, 217, 0.75);
}
.s-button_bright:active {
  color: #006dd9;
  border-color: rgba(0, 109, 217, 0.75);
}
.s-button_bright.s-button_arrow .s-button__text:after,
.s-button_bright.s-button_select .s-button__text:after {
  background-image: url('/static/images/button_arrow_down_bright.svg');
}
.s-button_premium.s-button_arrow .s-button__text:after,
.s-button_premium.s-button_select .s-button__text:after {
  background-image: url('/static/images/button_arrow_down_premium.svg');
}
.s-button_white.s-button_arrow .s-button__text:after {
  margin-top: -4px;
  width: 10px;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTAgNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNOC4zNzIuMjhMNSAzLjY1IDEuNjI4LjI4QzEuMjU2LS4wOTQuNjUyLS4wOTQuMjguMjhjLS4zNzMuMzcyLS4zNzMuOTc1IDAgMS4zNDhsNC4wNDYgNC4wNDZjLjM3Mi4zNzMuOTc2LjM3MyAxLjM1IDBMOS43MiAxLjYyOGMuMzczLS4zNzMuMzczLS45NzYgMC0xLjM1LS4zNy0uMzctLjk3NS0uMzctMS4zNDggMHoiIGZpbGw9IiMyQjg3REIiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==');
  background-position: center 40%;
}
.s-button_disabled,
.s-button_disabled:hover,
.s-button_disabled:hover {
  color: rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 0, 0, 0.3);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  cursor: default;
}
.s-button_solid,
.s-button_active,
.s-button_white.s-button_solid.s-button_active {
  color: #FFF;
  border-color: #2b87db;
  background-color: #2b87db;
}
.s-button_solid:hover,
.s-button_active:hover,
.s-button_white.s-button_solid.s-button_active:hover {
  color: #FFF;
  border-color: #256ba5;
  background-color: #256ba5;
}
.s-button_solid:hover,
.s-button_active:hover,
.s-button_white.s-button_solid.s-button_active:hover {
  color: #FFF;
  border-color: #256ba5;
  background-color: #256ba5;
}
.s-button_fire {
  color: rgba(236, 50, 48, 0.75);
  border-color: rgba(236, 50, 48, 0.5);
}
.s-button_fire:hover {
  color: #ec3230;
  border-color: rgba(236, 50, 48, 0.75);
}
.s-button_fire:active {
  color: #ec3230;
  border-color: rgba(236, 50, 48, 0.75);
}
.s-button_white {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.6);
}
.s-button_white:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.75);
}
.s-button_white:active {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.75);
}
.s-button_premium {
  color: rgba(253, 141, 58, 0.75);
  border-color: rgba(253, 141, 58, 0.5);
}
.s-button_premium:hover {
  color: #fd8d3a;
  border-color: rgba(253, 141, 58, 0.75);
}
.s-button_premium:active {
  color: #fd8d3a;
  border-color: rgba(253, 141, 58, 0.75);
}
.s-button_solid.s-button_premium {
  color: #fff;
  border-color: rgba(253, 141, 58, 0.9);
  background-color: rgba(253, 141, 58, 0.9);
}
.s-button_solid.s-button_premium:hover {
  border-color: #fd8d3a;
  background-color: #fd8d3a;
}
.s-button_solid.s-button_premium:active {
  border-color: #fd8d3a;
  background-color: #fd8d3a;
}
.s-button_solid.s-button_fire {
  color: #fff;
  border-color: rgba(236, 50, 48, 0.9);
  background-color: rgba(236, 50, 48, 0.9);
}
.s-button_solid.s-button_fire:hover {
  border-color: #ec3230;
  background-color: #ec3230;
}
.s-button_solid.s-button_fire:active {
  border-color: #ec3230;
  background-color: #ec3230;
}
.s-button_solid.s-button_white {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.25);
  background-color: #FFF;
}
.s-button_solid.s-button_white:hover {
  color: rgba(0, 0, 0, 0.75);
  border-color: rgba(0, 0, 0, 0.5);
}
.s-button_solid.s-button_white:active {
  border-color: rgba(0, 0, 0, 0.75);
}
.s-button_arrow .s-button__text {
  padding-right: 28px;
}
.s-button_arrow .s-button__text:after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 11px;
  height: 9px;
  margin-top: -5px;
  content: '';
  background-image: url('/static/images/button_arrow_down.svg');
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100%;
  pointer-events: none;
  -webkit-transition: -webkit-transform 150ms;
  transition: -webkit-transform 150ms;
  -o-transition: -o-transform 150ms;
  transition: transform 150ms;
  transition: transform 150ms, -webkit-transform 150ms, -o-transform 150ms;
  will-change: transform;
}
.s-button_solid.is-popup-open .s-button__text:after,
.s-button_bright.is-popup-open .s-button__text:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  background-image: url('/static/images/button_arrow_down_white.svg');
}
.s-button_arrow.is-popup-open .s-button__text:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.s-button_select select {
  padding: 0 26px 0 13px;
  height: inherit;
  width: 100%;
  font-weight: inherit;
  font-size: inherit;
  text-transform: inherit;
  line-height: inherit;
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: none;
  border: none;
  outline: none;
  background-color: transparent;
  color: inherit;
  margin-top: -1px;
  cursor: pointer;
}
.s-button_select .s-button__text {
  pointer-events: auto;
  padding: 0 0 0 0;
}
.s-button_select .s-button__text:after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 12px;
  height: 10px;
  margin-top: -6px;
  content: '';
  background-image: url('/static/images/button_arrow_down.svg');
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100%;
  pointer-events: none;
}
.s-dropdown {
  padding-right: 0;
}
.s-dropdown:hover .s-dropdown__caret {
  background-position: -24px 0;
}
.s-dropdown:active .s-dropdown__caret {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.s-dropdown_action .s-dropdown__caret {
  background-position: -12px 0;
}
.s-dropdown__caret {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: -3px 12px 0 12px;
  -webkit-transition: -webkit-transform .15s;
  transition: -webkit-transform .15s;
  -o-transition: -o-transform .15s;
  transition: transform .15s;
  transition: transform .15s, -webkit-transform .15s, -o-transform .15s;
  vertical-align: middle;
  background-image: url('/static/images/dropdown_caret.png');
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}
.s-button-group {
  font-size: 0;
  display: inline-block;
  vertical-align: middle;
}
.s-button-group .s-button {
  margin-left: -1px;
  border-radius: 0;
}
.s-button-group .s-button__text {
  padding-left: 8px;
  padding-right: 8px;
}
.s-button-group .s-button:first-child {
  margin-left: auto;
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.s-button-group .s-button:first-child .s-button__text {
  padding-left: 13px;
}
.s-button-group .s-button:last-child {
  border-top-left-radius: 0;
  border-top-right-radius: 14px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 14px;
}
.s-button-group .s-button:last-child .s-button__text {
  padding-right: 13px;
}
.filters {
  color: #555;
}
.filters label {
  display: inline-block;
  vertical-align: middle;
}
/* Sizes */
.s-input {
  font-size: 13px;
  line-height: 26px;
  display: inline-block;
  width: 90px;
  padding: 0 4px 0 8px;
  vertical-align: middle;
  color: #222;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  outline: none;
  -webkit-transition: border-color 0.15s, box-shadow 0.15s;
  -o-transition: border-color 0.15s, box-shadow 0.15s;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}
.ie .s-input {
  height: 26px;
}
.s-input:hover {
  border-color: rgba(0, 109, 217, 0.5);
}
.s-input:focus {
  border-color: rgba(0, 109, 217, 0.65);
  box-shadow: 0 0 0 2px #d5f1fd;
}
.s-input::-webkit-input-placeholder {
  color: #999999;
}
.s-input:-ms-input-placeholder {
  color: #999999;
}
.s-input::placeholder {
  color: #999999;
}
.s-input_size_s {
  font-size: 13px;
  line-height: 26px;
}
.ie .s-input_size_s {
  height: 26px;
}
.s-input_size_m {
  font-size: 14px;
  line-height: 30px;
  border-radius: 16px;
}
.ie .s-input_size_m {
  height: 30px;
}
.s-input_size_m {
  font-size: 15px;
  line-height: 34px;
  border-radius: 18px;
}
.ie .s-input_size_m {
  height: 34px;
}
.s-input_length_xs {
  width: 60px;
}
.s-input_length_s {
  width: 90px;
}
.s-input_length_m {
  width: 120px;
}
.s-input_length_l {
  width: 150px;
}
.s-input_invalid {
  border-color: #F5625D;
}
.s-input_invalid:focus {
  border-color: rgba(245, 98, 93, 0.65);
  box-shadow: 0 0 0 2px rgba(245, 98, 93, 0.35);
}
.s-input_invalid:hover {
  border-color: #F5625D;
}
.s-input-placeholder {
  position: relative;
  display: inline-block;
}
.s-input-placeholder__text {
  font-size: 13px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 5px 13px;
  text-align: center;
  pointer-events: none;
  color: rgba(0, 0, 0, 0.55);
}
.s-input-placeholder .s-input {
  padding-left: 32px;
}
.s-popup {
  position: absolute;
  z-index: 50000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background-color: #FFF;
  box-shadow: 0 4px 12px -1px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  /* Dropdown */
}
.s-popup_behavior_popup {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(24, 41, 48, 0.8);
  box-shadow: none;
}
.s-popup__tail {
  position: absolute;
  top: -8px;
  bottom: 100%;
  left: 50%;
  width: 16px;
  height: 16px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  background-color: #FFF;
}
.s-popup__tail:after {
  position: absolute;
  left: 6px;
  width: 1px;
  height: 24px;
  content: '';
  -webkit-transform: rotate(45deg) translateX(-11px);
  -ms-transform: rotate(45deg) translateX(-11px);
  -o-transform: rotate(45deg) translateX(-11px);
  transform: rotate(45deg) translateX(-11px);
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  background: #FFF;
}
.s-popup_behavior_popup .s-popup__wrapper {
  position: relative;
  width: 100%;
  width: 90%;
  max-width: 1392px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}
.s-popup__content {
  position: relative;
  border-radius: 3px;
}
.s-popup_behavior_popup .s-popup__content {
  max-height: 95vh;
  overflow-y: auto;
}
.s-popup__actions {
  font-size: 0;
  position: relative;
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.s-popup__actions__item {
  font-size: 11px;
  font-weight: bold;
  padding: 14px 0 13px 0;
  cursor: default;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  text-transform: uppercase;
  color: #595959;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
.s-popup__actions__item:hover {
  color: #FFF;
  background-color: #0084ff;
}
.s-popup__actions__item_half {
  display: inline-block;
  width: 50%;
}
.s-popup__actions__item_half:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.s-popup__actions__item_half:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.s-popup__actions {
  position: relative;
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.s-popup__actions__item {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  padding: 14px 0 13px 0;
  cursor: default;
  color: #595959;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}
.s-popup__actions__item:hover {
  color: #fff;
  background-color: #0084ff;
}
.s-popup__menu {
  padding: 8px 0;
}
.s-popup__menu__item,
a.s-popup__menu__item {
  display: block;
  position: relative;
  font-size: 13px;
  padding: 7px 20px 9px 20px;
  cursor: default;
  text-align: left;
  color: #595959;
  border: none;
}
.s-popup__menu__item:hover,
a.s-popup__menu__item:hover {
  color: #FFF !important;
  background-color: #0084ff;
  cursor: pointer;
}
.s-popup__menu__item_action,
a.s-popup__menu__item_action {
  font-size: 11px;
  font-weight: bold;
  padding-top: 9px;
  padding-bottom: 7px;
  text-transform: uppercase;
}
.s-popup__menu__item_selected,
a.s-popup__menu__item_selected {
  color: #000;
  background-color: rgba(0, 132, 255, 0.2);
}
.s-popup__close {
  position: absolute;
  top: 4px;
  right: 12px;
  z-index: 1;
  padding: 4px 14px;
  font-size: 32px;
  color: #585858;
  -webkit-transition: color .15s;
  -o-transition: color .15s;
  transition: color .15s;
  cursor: pointer;
}
.s-popup__close:hover {
  color: #121212;
}
.s-popup__close:active {
  -webkit-transform: scale(0.98);
  -ms-transform: scale(0.98);
  -o-transform: scale(0.98);
  transform: scale(0.98);
}
.s-modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.5);
}
.s-modal {
  position: fixed;
  display: none;
  border-radius: 3px;
  background-color: #FFF;
  box-shadow: 0 6px 16px -1px rgba(0, 0, 0, 0.3);
  border: none;
  z-index: 50000;
}
.s-modal__header {
  padding: 20px 30px 10px 30px;
}
.s-modal__body {
  padding: 10px 30px 10px 30px;
}
.s-modal__actions {
  text-align: center;
  padding: 10px 30px 20px 30px;
}
.s-modal__title {
  font-size: 22px;
}
.s-modal__content {
  position: relative;
  border-radius: 3px;
}
.s-tabs {
  display: inline-block;
}
.s-tabs:before,
.s-tabs:after {
  content: " ";
  display: table;
}
.s-tabs:after {
  clear: both;
}
.s-tabs__item {
  font-size: 12px;
  font-weight: bold;
  float: left;
  margin-bottom: -1px;
  padding: 2px;
  cursor: default;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  margin: 0 10px;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}
.s-tabs__item:first-child {
  margin-left: 0;
}
.s-tabs__item:last-child {
  margin-right: 0;
}
.s-tabs__item:hover {
  color: #000000;
  cursor: pointer;
}
.s-tabs__item_active {
  border-bottom-color: rgba(55, 147, 240, 0.8);
  color: #000;
}
.s-stepper {
  font-size: 0;
  display: inline-block;
  overflow: hidden;
  padding: 0 4px;
  cursor: default;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.55);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  outline: none;
}
.s-stepper:hover {
  border-color: rgba(0, 0, 0, 0.5);
}
.s-stepper_focus,
.s-stepper:focus,
.s-stepper_focus:hover {
  border-color: rgba(0, 109, 217, 0.65);
}
.s-stepper_focus .s-stepper__decrement,
.s-stepper:focus .s-stepper__decrement,
.s-stepper_focus:hover .s-stepper__decrement {
  opacity: 1;
  background-image: url('/static/images/stepper_decrement_focus.svg');
}
.s-stepper_focus .s-stepper__increment,
.s-stepper:focus .s-stepper__increment,
.s-stepper_focus:hover .s-stepper__increment {
  opacity: 1;
  background-image: url('/static/images/stepper_increment_focus.svg');
}
.s-stepper__decrement,
.s-stepper__increment {
  float: left;
  width: 26px;
  height: 26px;
  opacity: .5;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 12px 12px;
}
.s-stepper__decrement:hover,
.s-stepper__increment:hover {
  opacity: 1;
}
.s-stepper__decrement {
  background-image: url('/static/images/stepper_decrement.svg');
}
.s-stepper__increment {
  background-image: url('/static/images/stepper_increment.svg');
}
.s-stepper__input {
  font-size: 16px;
  float: left;
  width: 20px;
  height: 26px;
  text-align: center;
  border: none;
  outline: none;
}
.s-select {
  display: inline-block;
  overflow: hidden;
  padding: 0 4px;
  cursor: default;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
  font-size: 13px;
  line-height: 24px;
  height: 26px;
  padding: 0 13px;
  color: rgba(0, 0, 0, 0.55);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  outline: none;
  background-image: url('/static/images/button_arrow_down.svg');
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.s-select:hover {
  color: rgba(0, 0, 0, 0.75);
  border-color: rgba(0, 0, 0, 0.5);
}
.s-select:active {
  color: rgba(0, 0, 0, 0.75);
  border-color: rgba(0, 0, 0, 0.75);
}
.breadcrumbs__item {
  border: none;
  color: #666666;
  padding: 0;
  margin: 0;
  line-height: 20px;
  white-space: nowrap;
  -webkit-transition: color 150ms;
  -o-transition: color 150ms;
  transition: color 150ms;
  text-decoration: none;
}
.breadcrumbs__item:hover {
  color: #000000;
}
.breadcrumbs_override .breadcrumbs__item {
  color: #666666 !important;
  border: none;
}
.breadcrumbs_override .breadcrumbs__item:hover {
  color: #000000 !important;
}
.breadcrumbs__arrow {
  padding: 0;
  width: 10px;
  height: 10px;
  margin: 0 2px;
  vertical-align: -1px;
  fill: #c7c8ca;
}
.selectpopup {
  position: relative;
  display: inline-block;
  min-width: 20px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.selectpopup .s-button__text {
  padding-right: 34px;
}
.selectpopup .s-button__text::after {
  right: 12px;
}
.selectpopup .s-popup {
  top: 40px;
  left: 0;
  z-index: 8;
  display: block;
}
.selectpopup .s-popup__tail {
  left: 20px !important;
}
.selectpopup .s-popup__content {
  max-height: 340px;
  overflow-y: auto;
  white-space: nowrap;
}
.selectpopup_appearance_link .s-popup {
  top: 34px;
  left: -17px;
}
.selectpopup__link {
  margin-left: 4px;
  display: inline-block;
  color: #4992e3;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  border-bottom: 1px dashed currentColor;
  cursor: pointer;
}
.selectpopup__link:hover {
  color: #006dd9;
}
.selectpopup__link .cui-ruble {
  line-height: 15px;
}
.selectpopup__option {
  position: relative;
  overflow: hidden;
  padding-left: 27px;
  padding-right: 15px;
}
.selectpopup__option:hover {
  background-color: rgba(0, 122, 235, 0.1);
}
.selectpopup__option:before {
  position: absolute;
  top: 9px;
  left: 15px;
  content: '';
  width: 6px;
  height: 10px;
  border-right: 2px solid #2b87db;
  border-bottom: 2px solid #2b87db;
  opacity: .8;
  -webkit-transform: translateX(-40px) rotate(45deg);
  -ms-transform: translateX(-40px) rotate(45deg);
  -o-transform: translateX(-40px) rotate(45deg);
  transform: translateX(-40px) rotate(45deg);
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  -o-transition: -o-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out, -o-transform 0.1s ease-out;
  will-change: transform;
}
.selectpopup__option_active:before {
  -webkit-transform: translateX(0) rotate(45deg);
  -ms-transform: translateX(0) rotate(45deg);
  -o-transform: translateX(0) rotate(45deg);
  transform: translateX(0) rotate(45deg);
}
.selectpopup__sort-quality {
  margin: 4px 8px 12px;
  padding-top: 4px;
  padding-left: 5px;
  border-top: 1px solid #c8c8c8;
}
