.locations__map__info {
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99); }

.form-control-select--large.nice-select, select.form-control-select--large {
  font-family: "Museo Sans Cyrl", Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  text-transform: none;
  color: #333333; }

/**
 * Text size / style mixin and placeholder classname generator
 * For each style is generated "%text--size-NAME" placeholder selector
 *
 * See settings/_text.scss
 *
 * @demo
 *     .class { @extend %text--size-h1; }
 *
 *     .class { @include text--size(h1); }
 *
 *     .class {
 *         @include text--size((
 *             xs:  ( 'font-size': 1.4rem,  'line-height': 24 / 14 * 1em )
 *         ));
 *     }
 */
.shops__locations .locations__map-list a {
  font-size: 1.4rem;
  line-height: 1.42857em; }

.specs__tag, .shops__locations .locations__map-list a span {
  font-size: 1.2rem;
  line-height: 1.33333em; }

.form-control-select--large.nice-select, select.form-control-select--large, .locations__map-list a {
  font-size: 1.6rem;
  line-height: 1.3125em; }

/**
 * Link style mixin and placeholder classname generator
 *
 * For each link theme defined in settings/_colors.scss creates
 * a %link--style-NAME placeholder classname
 *
 * See settings/_links.scss
 *
 * @demo
 *     a     { @extend %link--style-default; }
 *     nav a { @extend %link--style-text; }
 *
 *     a     { @include link--style(default); }
 *     nav a { @include link--style(text); }
 */
.locations__map-list a {
  color: #306bf5; }
  .has-hover .locations__map-list a:focus, .locations__map-list .has-hover a:focus, .has-hover .locations__map-list a:hover, .locations__map-list .has-hover a:hover {
    color: #333333; }
  .locations__map-list a:active, .locations__map-list a.is-active {
    color: #333333; }

/**
 * Specification list
 *
 * @demo
 *     <div class="specs">
 *         <dl>
 *             <dt><span>Title</span></dt>
 *             <dd>Value</dd>
 *         </dl>
 *         <dl>
 *             <dt><span>Title</span></dt>
 *             <dd>Value</dd>
 *         </dl>
 *     </div>
 */
.specs {
  letter-spacing: 0; }
  .specs dl {
    display: flex;
    margin-top: 0.9rem;
    margin-bottom: 0.9rem; }
    .specs dl:first-child {
      margin-top: 0; }
    .specs dl:last-child {
      margin-bottom: 0; }
  .specs dt {
    display: flex;
    width: 240px;
    flex-grow: 0;
    flex-shrink: 0;
    color: #90989f; }
    .specs dt > span {
      flex: 0 1 auto;
      }
    .specs dt:after {
      content: "";
      flex: 1 1 auto;
      display: block;
      margin-left: 10px;
      border-top: 1px solid #edeef0;
      position: relative;
      top: 50%; }
  .specs dd {
    margin-left: 10px;
    display: flex;
    align-items: center; }
  .specs b {
    color: #333333;
    font-weight: 500; }
  .specs__tag {
    position: relative;
    display: inline-block;
    margin-left: 15px;
    padding: 0 8px 0 4px;
    height: 21px;
    background: #306bf5;
    border-radius: 4px;
    color: #ffffff;
    line-height: 21px; }
    .specs__tag:before {
      content: "";
      display: block;
      position: absolute;
      left: -5px;
      top: 1px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 9.5px 6px 9.5px 0;
      border-color: transparent #306bf5 transparent transparent; }

/**
 * Modifier for narrow title column
 *
 * @demo
 *     <div class="specs specs--narrow">...</div>
 */
.specs--narrow dt {
  width: 180px; }

/**
 * Modifier for wide title column
 *
 * @demo
 *     <div class="specs specs--wide">...</div>
 */
.specs--wide dt {
  width: 400px; }

/**
 * Modifier for full width list
 *
 * @demo
 *     <div class="specs specs--full">...</div>
 */
.specs--full dt {
  width: auto;
  flex-grow: 1; }

/**
 * Modifier to remove specific styles, just as simple inline text
 *
 * @demo
 *     <div class="specs specs--inline-text">...</div>
 */
.specs--inline-text dt {
  width: auto; }
  .specs--inline-text dt:after {
    content: ":";
    flex: 0 0 auto;
    display: inline;
    margin: 0;
    border: 0; }
.specs--inline-text dd {
  color: #90989f;
  margin-left: 4px; }

/**
 * Modifier to remove connecting line and align item to the sides
 */
.specs--no-lines dl {
  justify-content: space-between; }
.specs--no-lines dt {
  display: block;
  width: auto; }
  .specs--no-lines dt:after {
    display: none; }

/*
 * Product specification while inside product list
 */
.product-list .specs {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem; }
  .product-list .specs:first-child {
    margin-top: 0; }
  .product-list .specs:last-child {
    margin-bottom: 0; }
  .product-list .specs dl {
    margin-top: 5px;
    margin-bottom: 5px; }
    .product-list .specs dl:first-child {
      margin-top: 0; }
    .product-list .specs dl:last-child {
      margin-bottom: 0; }

/**
 * Large input style
 *
 * Using jquery-nice-select library for dropdowns
 */
.form-control-select--large.nice-select {
  height: 60px;
  padding-left: 20px;
  padding-right: 42px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #c2cbd2;
  color: #90989f;
  font-weight: 500;
  line-height: 60px; }
  .form-control-select--large.nice-select:after,
  .form-control-select--large.nice-select li:first-child:after {
    right: 20px;
    top: 28px;
    border-width: 7px 3.5px 0 3.5px; }
  .form-control-select--large.nice-select:hover, .form-control-select--large.nice-select:active, .form-control-select--large.nice-select:focus {
    border-color: #acb5bb; }
  .form-control-select--large.nice-select.open > .list {
    transform: translateY(0); }
  .form-control-select--large.nice-select.open:after {
    z-index: 7; }
  .form-control-select--large.nice-select .list {
    background-color: #ffffff;
    border-radius: 4px 4px;
    box-shadow: 0 10px 20px rgba(18, 42, 96, 0.12);
    border: 1px solid #c2cbd2;
    color: #90989f;
    box-sizing: content-box;
    transform: translateY(-30px);
    left: -1px;
    top: -1px; }
    .form-control-select--large.nice-select .list .list {
      box-shadow: none;
      border: 0;
      transform: none !important;
      left: auto;
      top: auto; }
  .form-control-select--large.nice-select ul.list {
    padding-bottom: 14px; }
  .form-control-select--large.nice-select .option {
    line-height: 40px;
    min-height: 40px;
    padding-left: 20px;
    padding-right: 42px; }
    .form-control-select--large.nice-select .option:hover, .form-control-select--large.nice-select .option.focus, .form-control-select--large.nice-select .option.selected.focus {
      background-color: #ffffff; }
    .form-control-select--large.nice-select .option.focus {
      color: #306bf5; }
    .form-control-select--large.nice-select .option.selected, .has-hover .form-control-select--large.nice-select .option:hover {
      color: #333333; }
    .form-control-select--large.nice-select .option.disabled, .has-hover .form-control-select--large.nice-select .option.disabled:hover {
      background-color: transparent;
      color: #90989f; }
    .form-control-select--large.nice-select .option:first-child {
      line-height: 60px;
      min-height: 60px;
      border-bottom: 1px solid #c2cbd2;
      margin-bottom: 8px; }

.form-control-select--large.form-control-select--placeholder {
  color: #90989f; }

select[required] + .form-control-select--large.form-control-select--placeholder .current:after {
  content: " *";
  color: #de2152; }

/**
 * Fallback
 */
select.form-control-select--large {
  -moz-appearance: button;
  -webkit-appearance: button;
  height: 60px;
  padding-left: 20px;
  padding-right: 10px;
  border: 0;
  background-color: #ffffff;
  background-position: right 16px top 27px;
  border-radius: 4px;
  border: 1px solid #c2cbd2;
  color: #90989f;
  line-height: 58px; }

.locations .alert {
  margin-bottom: 5.0rem; }
.locations .form-control-select {
  width: 33.5%; }

.locations__map-list {
  max-height: 640px !important;
  height: 640px !important;
  padding-right: 0 !important; }
  .locations__map-list a {
    display: block;
    margin-top: 1.4rem;
    margin-bottom: 1.4rem; }
    .locations__map-list a:first-child {
      margin-top: 0; }
    .locations__map-list a:last-child {
      margin-bottom: 0; }

.locations__map-list ~ .baron__track {
  top: 7px;
  bottom: 7px; }

.locations__map {
  position: relative;
  overflow: hidden;
  margin-left: 20px; }

.locations__map__map {
  width: 100%;
  height: 640px;
  border-radius: 4px; }

.locations__map__info {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40.5%;
  display: flex;
  flex-direction: column;
  border-radius: 4px 0 0 4px;
  position: absolute;
  background: #f5f6fa;
  transition-property: transform;
  transform: translateX(-100%); }
  .locations__map__info__close {
    position: absolute;
    z-index: 1;
    left: 20px;
    top: 20px; }
  .locations__map__info figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px 0 0 0; }
  .locations__map__info article {
    flex-grow: 1;
    padding: 31px 40px 0;
    line-height: 2em; }
  .locations__map__info footer {
    padding: 37px 40px 40px; }
  .locations__map__info p {
    margin-top: 2.8rem;
    margin-bottom: 2.8rem; }
    .locations__map__info p:first-child {
      margin-top: 0; }
    .locations__map__info p:last-child {
      margin-bottom: 0; }
  .locations__map__info span {
    display: block; }
  .locations__map__info.open {
    transform: translateX(0%); }

.locations__map__info__logo {
  margin-bottom: .5rem; }

.locations__map__info__split {
  display: flex !important; }
  .locations__map__info__split span + span {
    position: relative;
    padding-left: 2.0rem; }
    .locations__map__info__split span + span:before {
      content: "\2022";
      font-size: 1rem;
      line-height: 10px;
      position: absolute;
      left: 0.8rem;
      top: 50%;
      margin-top: -5px;
      color: #90989f; }

.shops__intro {
  margin-top: 4.4rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #edeef0;
  margin-bottom: 5.7rem; }
  .shops__intro h3 {
    margin-bottom: 0;}

  html[lang="ru"] .shops__intro h3 {
    min-height: 2.5em;
  }


    .shops__intro h3 + p {
      margin-top: 5px;
    min-height: 2.85em}
  .shops__intro__img {
    margin-bottom: 3.6rem; }
  .shops__intro .specs dl {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem; }
    .shops__intro .specs dl:first-child {
      margin-top: 0; }
    .shops__intro .specs dl:last-child {
      margin-bottom: 0; }
  .shops__intro .specs dt {
    width: 92px; }
    .shops__intro .specs dt:after {
      display: none; }

.shops__locations .locations .form-control-select {
  width: 100%; }
.shops__locations .locations__map-list {
  max-height: 550px !important;
  height: 550px !important; }
  .shops__locations .locations__map-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 40px; }
    .shops__locations .locations__map-list a span {
      color: #90989f;
      display: flex;
      align-items: center;
      white-space: nowrap;
      margin-left: 5px;
    }
      .shops__locations .locations__map-list a span:before {
        content: '';
        width: 6px;
        height: 6px;
        background: #0cb799;
        display: block;
        border-radius: 50%;
        margin-right: 0.7rem; }
      .shops__locations .locations__map-list a span.is-closed:before {
        background: #de2152; }
.shops__locations .locations__map {
  margin-left: 0; }
.shops__locations .locations__map__info .specs dl {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem; }
  .shops__locations .locations__map__info .specs dl:first-child {
    margin-top: 0; }
  .shops__locations .locations__map__info .specs dl:last-child {
    margin-bottom: 0; }
.shops__locations .locations__map__info .specs dt {
  width: 100px; }
  .shops__locations .locations__map__info .specs dt:after {
    display: none; }

.shops__contacts__form {
  background: #f7f9fc;
  position: relative;
  padding: 40px;
  margin: 60px 0 0;
  border-radius: 4px; }
  .shops__contacts__form .form-control--textarea textarea {
    height: 130px; }

.alert {
  color: #000;
  padding: 6px 0 5px 18px;
  border-left: 2px solid #306bf5;
  font-weight: bold;
}
.alert--warning {
  border-left-color: #ffd600;
}
