/*
 * Shops page specific styles - desktop version
 */
/*
 * Styles, which don't generate any output and can be safely imported from
 * all root level stylesheets
 */
/*
 * Paths
 */
/**
 * Animation & transition settings
 */
/*
 * Color Palette
 */
/*
 * Form color palette
 */
/*
 * Footer color palette
 */
/*
 * Settings for the `<body>` element
 */
/*
 * Text
 *
 * Settings for text, fonts, sizes
 */
/**
 * Text sizes
 *
 * Resolution specific font sizes, line height, etc.
 * All styles cascade up
 *
 * For each style is generated "%text--size-NAME" placeholder selector
 * Each style can also be used included using mixin "@include text--size(NAME);"
 *
 * See extends/_text-styles.scss
 */
/**
 * Link styles
 *
 * Settings for the anchor elements
 * For each link style is generated "%link--style-NAME" placeholder selector
 *
 * See extends/_links.scss
 *
 * @demo
 *   @extend %link--style-heading;
 */
/**
 * Grid
 *
 * Grid system settings
 * All resolution styles cascade up from mobile to desktop
 *
 * @demo
 *   <div class="row row--pad">...</div>
 *   <div class="row row--pad-small">...</div>
 */
/**
 * For each grid container is generated ".container--NAME" classname, except
 * for "default", for which ".container" classname is generated
 *
 * @demo
 *   <div class="container"></div>
 *   <div class="container container--footer"></div>
 */
/**
 * Spacing
 *
 * Settings for spacing between most of the elements
 *
 * @demo
 *   @include margins($spacing);
 *   @include margins($spacing-medium);
 */
/**
 * Breakpoints for devices / orientations / screens
 * Following already are default values, uncomment if needed
 */
/**
 * Minimal body width
 */
/**
 * Returns nth property from css property list
 *
 * @property {map} $list List
 * @property {number} $index Item index
 */
/**
 * In each $list pair of $breakpoint: $value replaces all values with 'inherit'
 * except for one in $index position
 *
 * @code
 *     $spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
 *     $spacer-top-only:    pick-css-nth($spacer, 1); // => (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
 *     $spacer-bottom-only: pick-css-nth($spacer, 3); // => (xs: inherit inherit 12px inherit, md: inherit inherit 20px inherit)
 */
/**
 * @function map-deep-get Deep get for sass maps
 * @author https://css-tricks.com/snippets/sass/deep-getset-maps/
 * @description
 * Returns deeply nested property from a map
 *
 *     $paddings: map-deep-get($grid-containers, default, paddings, xs);
 */
/**
 * Mixin for object-fit plugin
 *
 * @see https://github.com/bfred-it/object-fit-images
 * @see components/_background.scss
 * @example
 *   @include object-fit(contain);
 *   @include object-fit(cover, top);
 */
/**
 * Converts SVG into data url so that this SVG could be used as a
 * background image
 *
 * @demo
 *     background-image: svg-to-data-url('<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">...</svg>');
 */
/**
 * Selectors to target specific browsers without affecting specificity or
 * limiting use in media queries
 *
 * Pros:
 *   - Works with media queries
 *
 * Conts:
 *   - Can't be used with @extend as that will invalidate other selectors
 *
 * See http://browserstrangeness.bitbucket.org/css_hacks.html
 */
/**
 * Target Internet Explorer, but not Edge
 *
 * @demo
 *     div {
 *       @include browser-ie () {
 *         // ...
 *       }
 *     }
 */
/**
 * Target Edge
 */
/**
 * Target Firefox
 */
/**
 * Target Safari
 */
/**
 * Target all WebKit browsers
 */
/**
 * Breakpoints for devices / orientations / screens
 *
 * @code
 *     @include media-breakpoint (lg-up) {
 *         // ...
 *     }
 */
/**
 * Returns if media query name is valid and values exist
 */
/**
 * Output content in a media query
 *
 * @code
 *     .icon {
 *         @include media-breakpoint (sm-down) {
 *             // ...
 *         }
 *     }
 */
/**
 * Output content in retina display media query
 *
 * @code
 *     .icon {
 *         @include media-retina () {
 *             // ...
 *         }
 *     }
 */
/**
 * Output content in non-retina display media query
 *
 * @code
 *     .icon {
 *         @include media-non-retina () {
 *             // ...
 *         }
 *     }
 */
/**
 * Image rendering quality
 * In Chrome background image quality is not the best when using background-size
 */
/**
 * @function placeholder Set input placeholder styles
 * @demo
 *     input {
 *         @include placeholder () {
 *             color: #000;
 *         }
 *     }
 */
/**
 * Margins mixin
 */
/**
 * In each $list pair of $breakpoint: $value replaces all values with 'inherit'
 * except for one in $index position
 *
 * @demo
 *     @include padding(inherit 20px);
 *
 * @demo
 *     @include padding((
 *         xs: inherit 20px,
 *         md: inherit 40px
 *     ));
 */
/*
 * Grid generator mixins
 */
/**
 * Mixin to generate grid container classnames
 *
 * @property {map} $containers Containers
 * @property {number?} $gutter Gutter between grid columns
 */
/**
 * Mixins to generate content for grid container classname
 *
 * @property {map} $container Container
 * @property {map} $container.max-width List of max-widths
 * @property {map} $container.paddings  List of paddings
 * @property {number?} $gutter Gutter between grid columns
 */
/**
 * Mixin to generate column classnames for each resolutions
 *
 * @property {number}  $columns     Number of columns
 * @property {list}    $breakpoints Responsive breakpoints
 */
/**
 * Mixin to generate column paddings for each resolutions
 *
 * @property {number}  $columns     Number of columns
 * @property {list}    $breakpoints Responsive breakpoints
 * @property {number?} $gutter      Gutter between columns
 */
/*
 * 1. Fix for IE where paddings are not taken into account even with box-sizing
 * 2. Fix for Firefox
 */
/*
 * Button normal state style mixin
 *
 * Sets styles to button normal state
 * 1. We overwrite disabled state too because if classname is used, then :hover, :active will take precedent
 */
/*
 * Button hover state style mixin
 *
 * Sets styles to button hover, focused states
 */
/*
 * Button active state style mixin
 *
 * Sets styles to active state
 */
/*
 * Button hover + active state style mixin
 *
 * Sets styles to button active, hover, focused states
 */
/*
 * Active button state style mixin
 *
 * Sets styles to button active, hover, focused states
 */
/*
 * Button disabled state style mixin
 */
/*
 * Button style
 *
 * Sets hover, active, focus, disabled styles
 */
/*
 * Button size
 *
 * Sets different size for different breakpoints
 */
/*
 * Square button modifier mixin
 */
/*
 * Text size
 *
 * Sets different size for different breakpoints
 */
/*
 * Link normal state style mixin
 *
 * Sets styles to link normal state
 */
/*
 * Link hover state style mixin
 *
 * Sets styles to link hover and focused states
 */
/*
 * Link active state style mixin
 *
 * Sets styles to link active state
 */
/*
 * Link hover and active state style mixin
 *
 * Sets styles to link hover, focused and active states
 */
/*
 * Link disabled state style mixin
 *
 * Sets styles to link disabled state
 */
/*
 * Image icon generator mixin
 */
/*
 * Retina image for icon
 */
/**
 * Animations
 *
 * Enables transition for all properties for elements
 *
 * @demo
 *     div { @extend %transition; }
 */
.locations__map__info {
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.25, 0.74, 0.22, 0.99); }

/**
 * Layout component mixin and placeholder classname, which is above other components
 *
 * @demo
 *     .lightbox { @extend %layout-order-above-top; }
 *     .header { @extend %layout-order-top; }
 *
 *     .lightbox { @include layout-order-above-top(); }
 *     .header { @include layout-order-top(); }
 */
/**
 * Layout component mixin and placeholder classname which covers parent
 *
 * @demo
 *     .btn-large:before { @extend %layout-position-overlay; }
 *     .btn-small:before { @extend %layout-position-overlay-extended; }
 *
 *     .btn-large:before { @include layout-position-overlay(); }
 *     .btn-small:before { @include layout-position-overlay-extended(); }
 */
/**
 * Text style mixin and placeholder classnames
 *
 * Used to keep all standard text and all headings consistent without code
 * duplication / to improve maintainability
 *
 * See settings/_text.scss
 *
 * @demo
 *     body  { @extend %text--default; }
 *     h1    { @extend %text--heading; }
 *
 *     body  { @include text--default(); }
 *     h1    { @include text--heading(); }
 */
.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 0 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; }
    .shops__intro h3 + p {
      margin-top: 5px; }
  .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: 170px; }
    .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; }
      .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; }

/*# sourceMappingURL=shops.css.map */
