@charset "UTF-8";
/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/**
  @require sass-extension.rb
*/
/**
  @const
  @type {string}
*/
/**
  Returns absolute url to media resources (images, fonts, etc).
  $MEDIA_ROOT constant is used as path prefix.
  media-url(global/decor.png) => url("/f/media/global/decor.png")

  @param {string} path
  @param {boolean=} justPath
  @return {string|url}
*/
/**
  @param {string} value
  @param {boolean=} important
  @return {string}
*/
/**
  @param {string} prop
  @param {string} value
  @param {boolean=} important
*/
/**
  @param {string} value
  @param {boolean=} important
*/
/**
  @param {string} value
  @param {boolean=} important
*/
/**
  @param {color} hexOrName
  @param {boolean=} important
*/
/**
  @param {direction} direction margin  last child
  **/
/**
  @param {list} stops  Each list item must be a gradient stop - list containing
      color and optional offset. For example:
      (#ff0000 (white, 20px) (rgba(blue, 0.5), 40%) rgb(128,128,128))
      If offset is omitted it's calculated based on stop index.
      Pixel and percent offsets are supported only.
  @param {boolean=} withoutIeFilter
  @param {boolean=} printBgColor  Whether to generate
      background-color: <mix of first and last stop colors>.
  @param {string=} orientation  Possible values: 'vertical' or 'horizontal'.
  @param {boolean=} hackSvgHeight  Whether to put height="101%" attribute
      into <svg> element for IE9 svg gradient.
  @param {string=} sizeForIe9Svg  SVG doesn't support pixel offsets in gradient
      stops. So this argument is used to convert pixel offset in $stops
      argument to percent offset. For example, if stop offset is 20px and
      $sizeForIe9Svg: 200px, then svg stop offset would be 10% (20px / 200px).
      This argument can be a pixel value only.
*/
/**
  Returns url in data:uri form containing inlined img
  located on your hard drive by $path.
  inline-img(global/decor.png) => url("data:image/png;base64,PD9...bWw=")

  @param {path} string
  @return {url}
*/
/**
  Prints 2 background-images with regular and retina path.
  bg-with-retina(global/decor.png, 100, 200) =>
    .selector{
      background-image: url("/f/media/global/decor.png");
    }
    .retina .selector{
      background-image: url("/f/media/global/decor_2x.png");
      background-size: 100px 200px;
    }

  @param {path} string
  @param {number} origWidth
  @param {number} origHeight
*/
/**
  Splits color value into main part (without opacity) and opacity part.
  @param {color} color
  @return {list.<2>}
*/
/**
  @param {path} string
  @return {list} global/decor.png => global/decor, png
*/
/**
  @param {list} stops
  @param {string=} orientation
  @param {string=} prefix
  @return {string}
*/
/**
  @param {list} stops
  @param {string=} orientation
  @param {boolean=} hackHeight
  @param {string=} blockSize
  @return {string}
*/
/**
  @param {list} stops
  @param {string=} orientation
  @return {string}
*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300bold,300italic,500,700&subset=latin-ext,cyrillic-ext);
@import url(https://fonts.googleapis.com/css?family=Exo+2&subset=latin-ext,cyrillic);
@import url("/h/src/global/css/font-awesome.min.css");
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a, .pseudo {
  background-color: transparent;
}

a:active, .pseudo:active,
a:hover,
.pseudo:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}
.blackfon{display: none; position:fixed;top: 0px;left: 0px;width: 100%;height: 100%;background: rgba(0,0,0,0.4);z-index: 100;  }
.blagodars{display: none;position:fixed;top: 50%;left: 50%;-webkit-transform: translate(-50%, -50%);-ms-transform: translate(-50%, -50%);-o-transform: translate(-50%, -50%);transform: translate(-50%, -50%);background-color: #fff;max-width: 500px;width: calc(100% - 30px);border-radius: 20px;z-index: 101;padding: 15px 20px;}
.blagodars .close,.soglws .close{width: 20px;height: 20px;position:relative;cursor:pointer;float:right;}
.blagodars .close span,.soglws .close span{width: 100%;height: 2px;border-radius: 4px;background-color: #000;position:absolute;top:50%;-webkit-transform: translateY(-50%);-ms-transform: translateY(-50%);-o-transform: translateY(-50%);transform: translateY(-50%);}
.blagodars .close span:first-child,.soglws .close span:first-child{-webkit-transform: translateY(-50%) rotate(45deg);-ms-transform: translateY(-50%) rotate(45deg);-o-transform: translateY(-50%) rotate(45deg);transform: translateY(-50%) rotate(45deg);}
.blagodars .close span:last-child,.soglws .close span:last-child{-webkit-transform: translateY(-50%) rotate(-45deg);-ms-transform: translateY(-50%) rotate(-45deg);-o-transform: translateY(-50%) rotate(-45deg);transform: translateY(-50%) rotate(-45deg);}
.soglws{display: none;position: fixed;bottom: 0px;right: 0px;max-width: 432px;width: 100%;background: linear-gradient(to bottom, #f0f5f9 0%, #fdfeff 100%);padding: 15px;z-index: 10;max-height: 369px;overflow-y: auto;}
#formzajav .btns{margin-top: 15px;}
.list_reaz{width: 100%;}
.zajav_fon h2{font-size: 20px;}
.zajav_fon .btns .btn{display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border-width: 1px;
    border-style: solid;
    border-color: inherit;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.6;
    border-radius: 3px;color: #56b6e1;
    border-color: rgba(86, 182, 225, 0.3);}
    .zajav_fon .btns .btn:hover,.zajav_fon .btns .btn:focus,.zajav_fon .btns .btn.active{
    color: rgb(0, 79, 142) !important;
    border-color: rgba(0, 79, 142, 0.3) !important;
}
.form-control.list_reaz{display: none;margin-top: 15px;}
.comms .comm{display: none;margin-top: 22px;}
.caccept .comm,.creject .comm{display: block;}
.creject .list_reaz{display: block;}
.save{margin-top: 15px;}
.comm_zajav{margin-top: 15px;}
.comm_zajav .photo__file-input{margin-top: 15px;}
.form-control.comm_zvtx,input[type=file].file,.comm_zajav .photo__file-input{display: none;}
.comm_zajav.active .comm_zvtx,.comm_zajav.active input[type=file].file,.comm_zajav.active .photo__file-input{display: block;}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a, .pseudo,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after, [href].pseudo:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after, [href^="#"].pseudo:after,
  a[href^="javascript:"]:after,
  [href^="javascript:"].pseudo:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font: 300 16px/26px "Roboto", sans-serif;
  color: #000;
  background: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
}
body.no_scroll {
  overflow: hidden;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
  border: 0;
}

.vertical-middle {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 12px;
  margin-bottom: 12px;
  border: 0;
  border-top: 1px solid rgba(141, 142, 145, 0.33);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

[role=button] {
  cursor: pointer;
}

.calendar {
  position: absolute;
  right: 3px;
  top: 7px;
  width: 30px;
  height: 22px;
  opacity: 0.5;
}
.calendar svg {
  right: 5px;
  position: relative;
}
.calendar .caret {
  position: absolute;
  right: 1px;
  top: 50%;
  margin-top: -1px;
}

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  box-shadow: none;
}

pre {
  display: block;
  padding: 11.5px;
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1440px;
}
.container:before, .container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding: 0;
}
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}
.container-fluid:after {
  clear: both;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row:before, .row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
.row_fullscreen {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.stretch-col {
  padding: 0 0 0 15px;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.3333333333%;
}

.col-xs-2 {
  width: 16.6666666667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.3333333333%;
}

.col-xs-5 {
  width: 41.6666666667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.3333333333%;
}

.col-xs-8 {
  width: 66.6666666667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.3333333333%;
}

.col-xs-11 {
  width: 91.6666666667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.3333333333%;
}

.col-xs-pull-2 {
  right: 16.6666666667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.3333333333%;
}

.col-xs-pull-5 {
  right: 41.6666666667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.3333333333%;
}

.col-xs-pull-8 {
  right: 66.6666666667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.3333333333%;
}

.col-xs-pull-11 {
  right: 91.6666666667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.3333333333%;
}

.col-xs-push-2 {
  left: 16.6666666667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.3333333333%;
}

.col-xs-push-5 {
  left: 41.6666666667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.3333333333%;
}

.col-xs-push-8 {
  left: 66.6666666667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.3333333333%;
}

.col-xs-push-11 {
  left: 91.6666666667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-1 {
    width: 8.3333333333%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-push-1 {
    left: 8.3333333333%;
  }
  .col-sm-push-2 {
    left: 16.6666666667%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.3333333333%;
  }
  .col-sm-push-5 {
    left: 41.6666666667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.3333333333%;
  }
  .col-sm-push-8 {
    left: 66.6666666667%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.3333333333%;
  }
  .col-sm-push-11 {
    left: 91.6666666667%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-1 {
    width: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.3333333333%;
  }
  .col-md-pull-2 {
    right: 16.6666666667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.3333333333%;
  }
  .col-md-pull-5 {
    right: 41.6666666667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.3333333333%;
  }
  .col-md-pull-8 {
    right: 66.6666666667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.3333333333%;
  }
  .col-md-pull-11 {
    right: 91.6666666667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.3333333333%;
  }
  .col-md-push-2 {
    left: 16.6666666667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.3333333333%;
  }
  .col-md-push-5 {
    left: 41.6666666667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.3333333333%;
  }
  .col-md-push-8 {
    left: 66.6666666667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.3333333333%;
  }
  .col-md-push-11 {
    left: 91.6666666667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-1 {
    width: 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.3333333333%;
  }
  .col-lg-push-2 {
    left: 16.6666666667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.3333333333%;
  }
  .col-lg-push-5 {
    left: 41.6666666667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.3333333333%;
  }
  .col-lg-push-8 {
    left: 66.6666666667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.3333333333%;
  }
  .col-lg-push-11 {
    left: 91.6666666667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
table {
  background-color: transparent;
  font-weight: 300;
}

caption {
  padding-top: 4px;
  padding-bottom: 4px;
  color: #777777;
  text-align: left;
}

th {
  text-align: left;
}

.table__box {
  margin: 0 -15px;
}

.table {
  width: 100%;
  max-width: 100%;
  margin: 0 0 24px;
}
.table._auto {
  width: auto;
}
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 4px 8px;
  vertical-align: middle;
  line-height: 18px;
  font-size: 14px;
}
.table > thead > tr > th.with-button,
.table > thead > tr > td.with-button,
.table > tbody > tr > th.with-button,
.table > tbody > tr > td.with-button,
.table > tfoot > tr > th.with-button,
.table > tfoot > tr > td.with-button {
  vertical-align: middle;
  height: 46px;
}
.table > thead > tr > th.num,
.table > thead > tr > td.num,
.table > tbody > tr > th.num,
.table > tbody > tr > td.num,
.table > tfoot > tr > th.num,
.table > tfoot > tr > td.num {
  text-align: right;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: none;
  font-size: 12px;
  color: #999;
  font-weight: 300;
  padding-bottom: 10px;
}
.table > thead > tr > th.with-button {
  padding-bottom: 12px;
}
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}
.table .message {
  padding: 20px 0;
  text-align: center;
  color: black;
}
.table .message:hover {
  color: black;
}
.table_vtop th, .table_vtop td {
  vertical-align: top !important;
}

._condensed > thead > tr > th,
._condensed > thead > tr > td,
._condensed > tbody > tr > th,
._condensed > tbody > tr > td,
._condensed > tfoot > tr > th,
._condensed > tfoot > tr > td,
.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 2px;
}

.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-of-type(even) {
  background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover {
  background-color: #1896D4;
  color: white;
}
.table-hover .table-td-active-on-hover > * {
  opacity: 0;
}
.table-hover > tbody > tr:hover > .table-td-active-on-hover > * {
  opacity: 1;
}
.table-hover > td {
  cursor: pointer;
}

table col[class*=col-] {
  position: static;
  float: none;
  display: table-column;
}

table td[class*=col-],
table th[class*=col-] {
  position: static;
  float: none;
  display: table-cell;
}

.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #1896D4;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
  background-color: #1586bd;
}

.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #94C77F;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
  background-color: #85bf6d;
}

.table > thead > tr > td.info,
.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #7BC1E4;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
  background-color: #66b7e0;
}

.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #CABD7C;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  background-color: #c3b46a;
}

.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f27b6a;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  background-color: #f06653;
}

.table-responsive {
  overflow-x: auto;
  min-height: 0.01%;
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 18px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 24px;
  font-size: 24px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
}

input[type=search] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input[type=radio],
input[type=checkbox] {
  margin: 4px 0 0;
  margin-top: 1px \9 ;
  line-height: normal;
}

input[type=file] {
  display: block;
}

input[type=range] {
  display: block;
  width: 100%;
}

select[multiple],
select[size] {
  height: auto;
}

input[type=file]:focus,
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 7px;
  font-size: 16px;
  line-height: 1.5;
  color: #555555;
}

.form-control {
  display: block;
  width: 100%;
  height: 38px;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}
.form-control[disabled], fieldset[disabled] .form-control {
  cursor: default;
}

textarea.form-control {
  height: auto;
}

input[type=search] {
  -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  input[type=date].form-control,
  input[type=time].form-control,
  input[type=datetime-local].form-control,
  input[type=month].form-control {
    line-height: 38px;
  }
  input[type=date].input-sm,
  .input-group-sm > .input-group-btn > input[type=date].btn, .input-group-sm input[type=date],
  input[type=time].input-sm,
  .input-group-sm > .input-group-btn > input[type=time].btn,
  .input-group-sm input[type=time],
  input[type=datetime-local].input-sm,
  .input-group-sm > .input-group-btn > input[type=datetime-local].btn,
  .input-group-sm input[type=datetime-local],
  input[type=month].input-sm,
  .input-group-sm > .input-group-btn > input[type=month].btn,
  .input-group-sm input[type=month] {
    line-height: 34px;
  }
  input[type=date].input-lg,
  .input-group-lg > .input-group-btn > input[type=date].btn, .input-group-lg input[type=date],
  input[type=time].input-lg,
  .input-group-lg > .input-group-btn > input[type=time].btn,
  .input-group-lg input[type=time],
  input[type=datetime-local].input-lg,
  .input-group-lg > .input-group-btn > input[type=datetime-local].btn,
  .input-group-lg input[type=datetime-local],
  input[type=month].input-lg,
  .input-group-lg > .input-group-btn > input[type=month].btn,
  .input-group-lg input[type=month] {
    line-height: 49px;
  }
}
.form-tag {
  position: relative;
  padding-right: 20px;
  white-space: nowrap;
  line-height: 24px;
}
.form-tag__close {
  color: #000;
  position: absolute;
  top: -0.05em;
  right: 5px;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  display: none;
  font-weight: 100;
}
.form-tag__close:hover {
  color: rgb(0, 79, 142);
}
.form-tag:hover .form-tag__close {
  display: block;
}

.form-group {
  margin-bottom: 22.5px;
  position: relative;
}
.form-group__close {
  color: #000;
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 2em;
  line-height: 1;
  cursor: pointer;
  padding: 0 3px;
  display: block;
  font-weight: 100;
}
.form-group__close:hover {
  color: rgb(0, 79, 142);
}
.form-group__add {
  color: #000;
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 2em;
  line-height: 1;
  cursor: pointer;
  padding: 0 3px;
  display: block;
  font-weight: 100;
}
.form-group__add:hover {
  color: rgb(0, 79, 142);
}
.form-group:last-child {
  margin-bottom: 0;
}

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  min-height: 24px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

.radio input[type=radio],
.radio-inline input[type=radio],
.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9 ;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

input[type=radio][disabled], input[type=radio].disabled, fieldset[disabled] input[type=radio],
input[type=checkbox][disabled],
input[type=checkbox].disabled,
fieldset[disabled] input[type=checkbox] {
  cursor: default;
}

.radio-inline.disabled, fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled] .checkbox-inline {
  cursor: default;
}

.radio.disabled label, fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled] .checkbox label {
  cursor: default;
}

.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
  min-height: 40px;
}
.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control,
.input-group-lg > .form-control-static.input-group-addon,
.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control,
.input-group-sm > .form-control-static.input-group-addon,
.input-group-sm > .input-group-btn > .form-control-static.btn {
  padding-left: 0;
  padding-right: 0;
}

.input-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 34px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.6;
  border-radius: 3px;
}

select.input-sm, .input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
  height: 34px;
  line-height: 34px;
}

textarea.input-sm, .input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.input-group-sm > select[multiple].form-control,
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > select[multiple].btn {
  height: auto;
}

.form-group-sm .form-control {
  height: 34px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.6;
  border-radius: 3px;
}
.form-group-sm select.form-control {
  height: 34px;
  line-height: 34px;
}
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
  height: auto;
}
.form-group-sm .form-control-static {
  height: 34px;
  min-height: 38px;
  padding: 6px 10px;
  font-size: 14px;
  line-height: 1.6;
}

.input-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 49px;
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.3333333;
  border-radius: 6px;
}

select.input-lg, .input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
  height: 49px;
  line-height: 49px;
}

textarea.input-lg, .input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.input-group-lg > select[multiple].form-control,
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > select[multiple].btn {
  height: auto;
}

.form-group-lg .form-control {
  height: 49px;
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.form-group-lg select.form-control {
  height: 49px;
  line-height: 49px;
}
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
  height: auto;
}
.form-group-lg .form-control-static {
  height: 49px;
  min-height: 44px;
  padding: 11px 16px;
  font-size: 20px;
  line-height: 1.3333333;
}

.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 47.5px;
}

.form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  pointer-events: none;
}

.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback,
.input-group-lg > .input-group-addon + .form-control-feedback,
.input-group-lg > .input-group-btn > .btn + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
  width: 49px;
  height: 49px;
  line-height: 49px;
}

.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
  width: 34px;
  height: 34px;
  line-height: 34px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #94C77F;
}
.has-success .form-control-feedback {
  color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #CABD7C;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f27b6a;
}
.has-error .form-control-feedback {
  color: #a94442;
}

.has-feedback label ~ .form-control-feedback {
  top: 29px;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #404040;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-static {
    display: inline-block;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type=radio],
  .form-inline .checkbox input[type=checkbox] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 31px;
}
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
  content: " ";
  display: table;
}
.form-horizontal .form-group:after {
  clear: both;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}
@media (min-width: 768px) {
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.333333px;
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 14px;
  }
}

.form_controls_base_style, input[type=text], input[type=password], input[type=number], input[type=email], textarea {
  font-family: inherit;
  font-size: 15px;
  line-height: 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding: 0 13px;
  outline: none;
  background: transparent;
}

.c-radio-wrap-inline {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 5px;
}

textarea {
  background-color: #fff !important;
}

input {
  font-family: inherit;
}
input::-moz-placeholder {
  color: #222222;
}
input:-ms-input-placeholder {
  color: #222222;
}
input::-webkit-input-placeholder {
  color: #222222;
}
input[type=text], input[type=password], input[type=number], input[type=email], input[type=search] {
  margin: 0;
  outline: none;
}
input[type=text]:focus, input[type=password]:focus, input[type=number]:focus, input[type=email]:focus {
  border-color: #80c3f7;
}
input[type=search] {
  font-weight: 100;
  font-size: 17px;
  font-style: italic;
  border: none;
  color: #333333;
  border-bottom: 1px solid rgba(153, 153, 153, 0.3);
}
input[type=checkbox], input[type=radio] {
  display: none;
}
input[type=checkbox] + label, input[type=radio] + label {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 10px 0;
  vertical-align: baseline;
  padding-left: 30px;
  cursor: pointer;
}
input[type=checkbox] + label:before, input[type=radio] + label:before {
  content: "";
  position: absolute;
}
.ie7 input[type=checkbox] + label, .ie7 input[type=radio] + label {
  display: inline;
  zoom: 1;
}
input[type=checkbox] + label:before, input[type=radio] + label:before {
  display: inline-block;
  position: static;
  vertical-align: top;
  margin-right: 15px;
  position: absolute;
  left: 0;
}
input[type=checkbox] + label small, input[type=radio] + label small {
  opacity: 0;
}
input[type=checkbox] + label:hover small, input[type=radio] + label:hover small {
  opacity: 1;
  border: none;
  font-size: 12px;
}
input[type=checkbox]:disabled + label, input[type=radio]:disabled + label {
  -webkit-opacity: 0.4;
  -moz-opacity: 0.4;
  -o-opacity: 0.4;
  -ms-opacity: 0.4;
  opacity: 0.4;
}
input[type=checkbox] + label:before {
  background-image: url(/h/src/global/../../sprite.png);
  background-position: -146px -116px;
  width: 24px;
  height: 24px;
}
input[type=checkbox]:checked + label:before,input[type=checkbox] + label.checked:before {
  background-image: url(/h/src/global/../../sprite.png);
  background-position: 0px -154px;
  width: 24px;
  height: 24px;
}
input[type=radio] + label:before {
  background-image: url(/h/src/global/../../sprite.png);
  background-position: -182px -56px;
  width: 18px;
  height: 18px;
  top: 0;
}
input[type=radio]:checked + label:before {
  background-image: url(/h/src/global/../../sprite.png);
  background-position: -182px -34px;
  width: 18px;
  height: 18px;
}

.uib-datepicker table {
  border: none;
}
.uib-datepicker table th small {
  font-weight: 100;
  margin-bottom: 10px;
}
.uib-datepicker th button {
  border: none;
}
.uib-datepicker th button.uib-left:after {
  content: "<";
  display: block;
}
.uib-datepicker th button.uib-right:after {
  content: ">";
  display: block;
}
.uib-datepicker .uib-day button {
  border: none;
  box-shadow: none !important;
}
.uib-datepicker .uib-day button:disabled {
  opacity: 0.25;
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border-width: 1px;
  border-style: solid;
  border-color: inherit;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover, .btn:focus, .btn.focus {
  color: rgba(61, 166, 218, 0.85);
  text-decoration: none;
}
.btn:active, .btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.25);
}
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: default;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn + .btn {
  margin-left: 10px;
}
.btn.pull-right {
  margin-right: 0;
  margin-left: 10px;
}
.btn.disabled {
  pointer-events: none;
}

a.btn.disabled, .btn.disabled.pseudo, fieldset[disabled] a.btn, fieldset[disabled] .btn.pseudo {
  pointer-events: none;
}

.btn-default {
  color: rgba(61, 166, 218, 0.85);
  background-color: #fff;
  border-color: rgba(61, 166, 218, 0.85);
}
.btn-default:focus, .btn-default.focus {
  color: rgba(61, 166, 218, 0.85);
  background-color: #e6e6e6;
  border-color: rgba(24, 93, 127, 0.85);
}
.btn-default:hover {
  color: rgba(61, 166, 218, 0.85);
  background-color: #fafafa;
  border-color: rgba(52, 162, 216, 0.85);
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle, .open > .btn-default.choose-store__toggle {
  color: rgba(61, 166, 218, 0.85);
  background-color: #e6e6e6;
  border-color: rgba(35, 134, 183, 0.85);
}
.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.choose-store__toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.choose-store__toggle:focus, .open > .btn-default.dropdown-toggle.focus, .open > .btn-default.focus.choose-store__toggle {
  color: rgba(61, 166, 218, 0.85);
  background-color: #d4d4d4;
  border-color: rgba(24, 93, 127, 0.85);
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle, .open > .btn-default.choose-store__toggle {
  background-image: none;
}
.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: rgba(61, 166, 218, 0.85);
}
.btn-default .badge {
  color: #fff;
  background-color: rgba(61, 166, 218, 0.85);
}

.btn-primary {
  color: #fff;
  background-color: #1896d4;
  border-color: transparent;
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #1376a6;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:hover {
  color: #fff;
  background-color: #1790cb;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle, .open > .btn-primary.choose-store__toggle {
  color: #fff;
  background-color: #1376a6;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.choose-store__toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.choose-store__toggle:focus, .open > .btn-primary.dropdown-toggle.focus, .open > .btn-primary.focus.choose-store__toggle {
  color: #fff;
  background-color: #0f5f86;
  border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle, .open > .btn-primary.choose-store__toggle {
  background-image: none;
}
.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
  background-color: #1896d4;
  border-color: transparent;
}
.btn-primary .badge {
  color: #1896d4;
  background-color: #fff;
}

.btn-stroke {
  color: white;
  background-color: transparent;
  border-color: white;
}
.btn-stroke:focus, .btn-stroke.focus {
  color: white;
  background-color: rgba(0, 0, 0, 0);
  border-color: #bfbfbf;
}
.btn-stroke:hover {
  color: white;
  background-color: rgba(0, 0, 0, 0);
  border-color: #fafafa;
}
.btn-stroke:active, .btn-stroke.active, .open > .btn-stroke.dropdown-toggle, .open > .btn-stroke.choose-store__toggle {
  color: white;
  background-color: rgba(0, 0, 0, 0);
  border-color: #e0e0e0;
}
.btn-stroke:active:hover, .btn-stroke:active:focus, .btn-stroke:active.focus, .btn-stroke.active:hover, .btn-stroke.active:focus, .btn-stroke.active.focus, .open > .btn-stroke.dropdown-toggle:hover, .open > .btn-stroke.choose-store__toggle:hover, .open > .btn-stroke.dropdown-toggle:focus, .open > .btn-stroke.choose-store__toggle:focus, .open > .btn-stroke.dropdown-toggle.focus, .open > .btn-stroke.focus.choose-store__toggle {
  color: white;
  background-color: rgba(0, 0, 0, 0);
  border-color: #bfbfbf;
}
.btn-stroke:active, .btn-stroke.active, .open > .btn-stroke.dropdown-toggle, .open > .btn-stroke.choose-store__toggle {
  background-image: none;
}
.btn-stroke.disabled, .btn-stroke.disabled:hover, .btn-stroke.disabled:focus, .btn-stroke.disabled.focus, .btn-stroke.disabled:active, .btn-stroke.disabled.active, .btn-stroke[disabled], .btn-stroke[disabled]:hover, .btn-stroke[disabled]:focus, .btn-stroke[disabled].focus, .btn-stroke[disabled]:active, .btn-stroke[disabled].active, fieldset[disabled] .btn-stroke, fieldset[disabled] .btn-stroke:hover, fieldset[disabled] .btn-stroke:focus, fieldset[disabled] .btn-stroke.focus, fieldset[disabled] .btn-stroke:active, fieldset[disabled] .btn-stroke.active {
  background-color: transparent;
  border-color: white;
}
.btn-stroke .badge {
  color: transparent;
  background-color: white;
}

.btn-stroke-dark {
  color: rgba(61, 166, 218, 0.85);
  background-color: transparent;
  border-color: rgba(61, 166, 218, 0.85);
}
.btn-stroke-dark:focus, .btn-stroke-dark.focus {
  color: rgba(61, 166, 218, 0.85);
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(24, 93, 127, 0.85);
}
.btn-stroke-dark:hover {
  color: rgba(61, 166, 218, 0.85);
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(52, 162, 216, 0.85);
}
.btn-stroke-dark:active, .btn-stroke-dark.active, .open > .btn-stroke-dark.dropdown-toggle, .open > .btn-stroke-dark.choose-store__toggle {
  color: rgba(61, 166, 218, 0.85);
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(35, 134, 183, 0.85);
}
.btn-stroke-dark:active:hover, .btn-stroke-dark:active:focus, .btn-stroke-dark:active.focus, .btn-stroke-dark.active:hover, .btn-stroke-dark.active:focus, .btn-stroke-dark.active.focus, .open > .btn-stroke-dark.dropdown-toggle:hover, .open > .btn-stroke-dark.choose-store__toggle:hover, .open > .btn-stroke-dark.dropdown-toggle:focus, .open > .btn-stroke-dark.choose-store__toggle:focus, .open > .btn-stroke-dark.dropdown-toggle.focus, .open > .btn-stroke-dark.focus.choose-store__toggle {
  color: rgba(61, 166, 218, 0.85);
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(24, 93, 127, 0.85);
}
.btn-stroke-dark:active, .btn-stroke-dark.active, .open > .btn-stroke-dark.dropdown-toggle, .open > .btn-stroke-dark.choose-store__toggle {
  background-image: none;
}
.btn-stroke-dark.disabled, .btn-stroke-dark.disabled:hover, .btn-stroke-dark.disabled:focus, .btn-stroke-dark.disabled.focus, .btn-stroke-dark.disabled:active, .btn-stroke-dark.disabled.active, .btn-stroke-dark[disabled], .btn-stroke-dark[disabled]:hover, .btn-stroke-dark[disabled]:focus, .btn-stroke-dark[disabled].focus, .btn-stroke-dark[disabled]:active, .btn-stroke-dark[disabled].active, fieldset[disabled] .btn-stroke-dark, fieldset[disabled] .btn-stroke-dark:hover, fieldset[disabled] .btn-stroke-dark:focus, fieldset[disabled] .btn-stroke-dark.focus, fieldset[disabled] .btn-stroke-dark:active, fieldset[disabled] .btn-stroke-dark.active {
  background-color: transparent;
  border-color: rgba(61, 166, 218, 0.85);
}
.btn-stroke-dark .badge {
  color: transparent;
  background-color: rgba(61, 166, 218, 0.85);
}

.btn-cross {
  color: rgba(61, 166, 218, 0.85);
  background-color: transparent;
  border-color: transparent;
  font-size: 50px;
  padding: 0;
  line-height: 0.6;
  font-weight: 100;
  border: none;
  box-shadow: none !important;
  margin-left: 20px !important;
}
.btn-cross:focus, .btn-cross.focus {
  color: rgba(61, 166, 218, 0.85);
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
}
.btn-cross:hover {
  color: rgba(61, 166, 218, 0.85);
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
}
.btn-cross:active, .btn-cross.active, .open > .btn-cross.dropdown-toggle, .open > .btn-cross.choose-store__toggle {
  color: rgba(61, 166, 218, 0.85);
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
}
.btn-cross:active:hover, .btn-cross:active:focus, .btn-cross:active.focus, .btn-cross.active:hover, .btn-cross.active:focus, .btn-cross.active.focus, .open > .btn-cross.dropdown-toggle:hover, .open > .btn-cross.choose-store__toggle:hover, .open > .btn-cross.dropdown-toggle:focus, .open > .btn-cross.choose-store__toggle:focus, .open > .btn-cross.dropdown-toggle.focus, .open > .btn-cross.focus.choose-store__toggle {
  color: rgba(61, 166, 218, 0.85);
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
}
.btn-cross:active, .btn-cross.active, .open > .btn-cross.dropdown-toggle, .open > .btn-cross.choose-store__toggle {
  background-image: none;
}
.btn-cross.disabled, .btn-cross.disabled:hover, .btn-cross.disabled:focus, .btn-cross.disabled.focus, .btn-cross.disabled:active, .btn-cross.disabled.active, .btn-cross[disabled], .btn-cross[disabled]:hover, .btn-cross[disabled]:focus, .btn-cross[disabled].focus, .btn-cross[disabled]:active, .btn-cross[disabled].active, fieldset[disabled] .btn-cross, fieldset[disabled] .btn-cross:hover, fieldset[disabled] .btn-cross:focus, fieldset[disabled] .btn-cross.focus, fieldset[disabled] .btn-cross:active, fieldset[disabled] .btn-cross.active {
  background-color: transparent;
  border-color: transparent;
}
.btn-cross .badge {
  color: transparent;
  background-color: rgba(61, 166, 218, 0.85);
}
.btn-cross:hover, .btn-cross:active, .btn-cross:focus {
  color: rgb(0, 79, 142) !important;
  outline: none !important;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}
.btn-success:hover {
  color: #fff;
  background-color: #55b555;
  border-color: #49a749;
}
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle, .open > .btn-success.choose-store__toggle {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.choose-store__toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.choose-store__toggle:focus, .open > .btn-success.dropdown-toggle.focus, .open > .btn-success.focus.choose-store__toggle {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle, .open > .btn-success.choose-store__toggle {
  background-image: none;
}
.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #7BC1E4;
  border-color: #66b7e0;
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #51addb;
  border-color: #2279a4;
}
.btn-info:hover {
  color: #fff;
  background-color: #73bde2;
  border-color: #5db3de;
}
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle, .open > .btn-info.choose-store__toggle {
  color: #fff;
  background-color: #51addb;
  border-color: #339fd5;
}
.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.choose-store__toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.choose-store__toggle:focus, .open > .btn-info.dropdown-toggle.focus, .open > .btn-info.focus.choose-store__toggle {
  color: #fff;
  background-color: #339fd5;
  border-color: #2279a4;
}
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle, .open > .btn-info.choose-store__toggle {
  background-image: none;
}
.btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
  background-color: #7BC1E4;
  border-color: #66b7e0;
}
.btn-info .badge {
  color: #7BC1E4;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:focus, .btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}
.btn-warning:hover {
  color: #fff;
  background-color: #efa945;
  border-color: #ed9e2d;
}
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle, .open > .btn-warning.choose-store__toggle {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.choose-store__toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.choose-store__toggle:focus, .open > .btn-warning.dropdown-toggle.focus, .open > .btn-warning.focus.choose-store__toggle {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle, .open > .btn-warning.choose-store__toggle {
  background-image: none;
}
.btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}
.btn-danger:hover {
  color: #fff;
  background-color: #d74b47;
  border-color: #d33632;
}
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle, .open > .btn-danger.choose-store__toggle {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.choose-store__toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.choose-store__toggle:focus, .open > .btn-danger.dropdown-toggle.focus, .open > .btn-danger.focus.choose-store__toggle {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle, .open > .btn-danger.choose-store__toggle {
  background-image: none;
}
.btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

.btn-link {
  color: #56b6e1;
  font-weight: normal;
  border-radius: 0;
}
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}
.btn-link:hover, .btn-link:focus {
  color: rgb(0, 79, 142);
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}

.btn-lg {
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.3333333;
  border-radius: 6px;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.6;
  border-radius: 3px;
}

.btn-xs {
  padding: 1px 5px;
  font-size: 14px;
  line-height: 1.6;
  border-radius: 3px;
}

.btn-text {
  padding: 6px 0;
  display: inline-block;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Exo 2";
  line-height: 1.1;
  color: #333333;
  font-weight: 100;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child,
.h1:first-child, .h2:first-child, .h3:first-child, .h4:first-child, .h5:first-child, .h6:first-child {
  margin-top: 0 !important;
}
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1.4;
  color: #777777;
  padding: 0.3em 0;
  display: inline-block;
}

h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 14px;
}

h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%;
}

h1, h2, h3 {
  margin-top: 24px;
  margin-bottom: 24px;
}

h3 {
  margin-top: 36px;
}

h4, h5, h6 {
  margin-top: 12px;
  margin-bottom: 12px;
}

h5, .h5,
h6, .h6 {
  color: #999;
}

h1, .h1 {
  font-size: 42px;
}

h2, .h2 {
  font-size: 25px;
}

h3, .h3 {
  font-size: 20px;
}

h4, .h4 {
  font-size: 18px;
}

h5, .h5 {
  font-size: 16px;
}

h6, .h6 {
  font-size: 14px;
}

p {
  margin: 0 0 12px;
}
p .before_list {
  margin: 0 0 6px;
}
p:last-child {
  margin-bottom: 0;
}

.lead {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .lead {
    font-size: 24px;
  }
}

small,
.small {
  font-size: 87%;
}

mark,
.mark {
  background-color: #CABD7C;
  padding: 0.2em;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase, .initialism {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-muted {
  color: #777777;
}

.text-primary {
  color: #1896d4;
}

a.text-primary:hover, .text-primary.pseudo:hover,
a.text-primary:focus,
.text-primary.pseudo:focus {
  color: #1376a6;
}

.text-success {
  color: #3c763d;
}

a.text-success:hover, .text-success.pseudo:hover,
a.text-success:focus,
.text-success.pseudo:focus {
  color: #2b542c;
}

.text-info {
  color: #31708f;
}

a.text-info:hover, .text-info.pseudo:hover,
a.text-info:focus,
.text-info.pseudo:focus {
  color: #245269;
}

.text-warning {
  color: #8a6d3b;
}

a.text-warning:hover, .text-warning.pseudo:hover,
a.text-warning:focus,
.text-warning.pseudo:focus {
  color: #66512c;
}

.text-danger {
  color: #a94442;
}

a.text-danger:hover, .text-danger.pseudo:hover,
a.text-danger:focus,
.text-danger.pseudo:focus {
  color: #843534;
}

.bg-primary {
  color: #fff;
}

.bg-primary {
  background-color: #1896d4;
}

a.bg-primary:hover, .bg-primary.pseudo:hover,
a.bg-primary:focus,
.bg-primary.pseudo:focus {
  background-color: #1376a6;
}

.bg-success {
  background-color: #94C77F;
}

a.bg-success:hover, .bg-success.pseudo:hover,
a.bg-success:focus,
.bg-success.pseudo:focus {
  background-color: #76b75c;
}

.bg-info {
  background-color: #7BC1E4;
}

a.bg-info:hover, .bg-info.pseudo:hover,
a.bg-info:focus,
.bg-info.pseudo:focus {
  background-color: #51addb;
}

.bg-warning {
  background-color: #CABD7C;
}

a.bg-warning:hover, .bg-warning.pseudo:hover,
a.bg-warning:focus,
.bg-warning.pseudo:focus {
  background-color: #bbab58;
}

.bg-danger {
  background-color: #f27b6a;
}

a.bg-danger:hover, .bg-danger.pseudo:hover,
a.bg-danger:focus,
.bg-danger.pseudo:focus {
  background-color: #ee513b;
}

menu,
ul,
ol {
  list-style-type: none;
  margin: 0 0 12px;
}

li > ul, li > ol {
  margin: 0.75em 0 1em 1.5em;
}

ul,
ol {
  list-style: none;
  margin-bottom: 1em;
}
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

ul li,
ol li {
  display: block;
  position: relative;
  margin-bottom: 0.5335em;
  padding-left: 1.335em;
}

ul li {
  color: #000;
}

ol {
  counter-reset: itemFirst;
}

ul li:before {
  content: "— ";
  position: absolute;
  left: 0;
  top: -1px;
  text-align: right;
  color: #000;
}

ol li:before {
  font-size: inherit;
  position: absolute;
  left: 0;
  content: counter(itemFirst) ".";
  counter-increment: itemFirst;
}

li > ol {
  counter-reset: item;
}

li > ol li {
  padding-left: 28px;
}

li > ol li:before {
  content: counter(itemFirst) "." counter(item);
  counter-increment: item;
}

ul p + ul,
ol p + ul,
ul p + ol,
ol p + ol {
  margin-top: -0.2em;
}

menu {
  padding-left: 0;
}

.list-unstyled menu, .store__category-menu menu, .choose-store__menu menu, menu.list-unstyled, menu.store__category-menu, menu.choose-store__menu,
.list-unstyled ul,
.store__category-menu ul,
.choose-store__menu ul,
ul.list-unstyled,
ul.store__category-menu,
ul.choose-store__menu,
.list-unstyled ol,
.store__category-menu ol,
.choose-store__menu ol,
ol.list-unstyled,
ol.store__category-menu,
ol.choose-store__menu {
  padding-left: 0;
}
.list-unstyled menu li, .store__category-menu menu li, .choose-store__menu menu li, .list-unstyled menu ol, .store__category-menu menu ol, .choose-store__menu menu ol, menu.list-unstyled li, menu.store__category-menu li, menu.choose-store__menu li, menu.list-unstyled ol, menu.store__category-menu ol, menu.choose-store__menu ol,
.list-unstyled ul li,
.store__category-menu ul li,
.choose-store__menu ul li,
.list-unstyled ul ol,
.store__category-menu ul ol,
.choose-store__menu ul ol,
ul.list-unstyled li,
ul.store__category-menu li,
ul.choose-store__menu li,
ul.list-unstyled ol,
ul.store__category-menu ol,
ul.choose-store__menu ol,
.list-unstyled ol li,
.store__category-menu ol li,
.choose-store__menu ol li,
.list-unstyled ol ol,
.store__category-menu ol ol,
.choose-store__menu ol ol,
ol.list-unstyled li,
ol.store__category-menu li,
ol.choose-store__menu li,
ol.list-unstyled ol,
ol.store__category-menu ol,
ol.choose-store__menu ol {
  padding-left: 0;
}
.list-unstyled menu li:before, .store__category-menu menu li:before, .choose-store__menu menu li:before, .list-unstyled menu ol:before, .store__category-menu menu ol:before, .choose-store__menu menu ol:before, menu.list-unstyled li:before, menu.store__category-menu li:before, menu.choose-store__menu li:before, menu.list-unstyled ol:before, menu.store__category-menu ol:before, menu.choose-store__menu ol:before,
.list-unstyled ul li:before,
.store__category-menu ul li:before,
.choose-store__menu ul li:before,
.list-unstyled ul ol:before,
.store__category-menu ul ol:before,
.choose-store__menu ul ol:before,
ul.list-unstyled li:before,
ul.store__category-menu li:before,
ul.choose-store__menu li:before,
ul.list-unstyled ol:before,
ul.store__category-menu ol:before,
ul.choose-store__menu ol:before,
.list-unstyled ol li:before,
.store__category-menu ol li:before,
.choose-store__menu ol li:before,
.list-unstyled ol ol:before,
.store__category-menu ol ol:before,
.choose-store__menu ol ol:before,
ol.list-unstyled li:before,
ol.store__category-menu li:before,
ol.choose-store__menu li:before,
ol.list-unstyled ol:before,
ol.store__category-menu ol:before,
ol.choose-store__menu ol:before {
  display: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: 0;
}
.list-inline > li {
  display: inline-block;
}

dl {
  margin-top: 0;
  margin-bottom: 24px;
}

dt,
dd {
  line-height: 1.5;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table;
}
.dl-horizontal dd:after {
  clear: both;
}
@media (min-width: 768px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777777;
}

.initialism {
  font-size: 90%;
}

blockquote {
  padding: 12px 24px;
  margin: 0 0 24px;
  font-size: 20px;
  border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.5;
  color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: "— ";
}

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: "";
}
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: " —";
}

address {
  margin-bottom: 24px;
  font-style: normal;
  line-height: 1.5;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9 ;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropup,
.dropdown {
  position: relative;
}

.dropdown-toggle:focus, .choose-store__toggle:focus {
  outline: 0;
}

.dropdown-menu, .store__category-menu ul, .choose-store__menu {
  position: absolute;
  top: 103%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  padding: 5px 0;
  margin: 2px 0 0 -15px;
  list-style: none;
  font-size: 16px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background-clip: padding-box;
}
.dropdown-menu.pull-right, .store__category-menu ul.pull-right, .pull-right.choose-store__menu {
  right: 0;
  left: auto;
}
.dropdown-menu .divider, .store__category-menu ul .divider, .choose-store__menu .divider {
  height: 1px;
  margin: 11px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li, .store__category-menu ul > li, .choose-store__menu > li {
  margin-bottom: 0;
}
.dropdown-menu > li > a, .store__category-menu ul > li > a, .choose-store__menu > li > a, .dropdown-menu > li > .pseudo, .store__category-menu ul > li > .pseudo, .choose-store__menu > li > .pseudo,
.dropdown-menu > li > span,
.store__category-menu ul > li > span,
.choose-store__menu > li > span {
  display: block;
  padding: 4px 15px;
  clear: both;
  font-weight: 300;
  line-height: 1.5;
  color: #333333;
  border-bottom: none;
  white-space: nowrap;
  cursor: pointer;
}

.dropdown-menu > li > a:hover, .store__category-menu ul > li > a:hover, .choose-store__menu > li > a:hover, .dropdown-menu > li > .pseudo:hover, .store__category-menu ul > li > .pseudo:hover, .choose-store__menu > li > .pseudo:hover, .dropdown-menu > li > a:focus, .store__category-menu ul > li > a:focus, .choose-store__menu > li > a:focus, .dropdown-menu > li > .pseudo:focus, .store__category-menu ul > li > .pseudo:focus, .choose-store__menu > li > .pseudo:focus,
.dropdown-menu > li > span:hover,
.store__category-menu ul > li > span:hover,
.choose-store__menu > li > span:hover,
.dropdown-menu > li > span:focus,
.store__category-menu ul > li > span:focus,
.choose-store__menu > li > span:focus {
  color: #262626;
  background-color: #f5f5f5;
}

.dropdown-menu > .active > a, .store__category-menu ul > .active > a, .choose-store__menu > .active > a, .dropdown-menu > .active > .pseudo, .store__category-menu ul > .active > .pseudo, .choose-store__menu > .active > .pseudo, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus,
.dropdown-menu > .active > span,
.store__category-menu ul > .active > span,
.choose-store__menu > .active > span,
.dropdown-menu > .active > span:hover,
.dropdown-menu > .active > span:focus {
  color: #fff;
  outline: 0;
  background-color: #1896d4;
}

.dropdown-menu > .disabled > a:hover, .store__category-menu ul > .disabled > a:hover, .choose-store__menu > .disabled > a:hover, .dropdown-menu > .disabled > .pseudo:hover, .store__category-menu ul > .disabled > .pseudo:hover, .choose-store__menu > .disabled > .pseudo:hover, .dropdown-menu > .disabled > a:focus, .store__category-menu ul > .disabled > a:focus, .choose-store__menu > .disabled > a:focus, .dropdown-menu > .disabled > .pseudo:focus, .store__category-menu ul > .disabled > .pseudo:focus, .choose-store__menu > .disabled > .pseudo:focus,
.dropdown-menu > .disabled > span:hover,
.store__category-menu ul > .disabled > span:hover,
.choose-store__menu > .disabled > span:hover,
.dropdown-menu > .disabled > span:focus,
.store__category-menu ul > .disabled > span:focus,
.choose-store__menu > .disabled > span:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}

.open > .dropdown-menu, .store__category-menu .open > ul, .open > .choose-store__menu {
  display: block;
}
.open > a, .open > .pseudo,
.open > span {
  outline: 0;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*=col-] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.input-group-addon {
  padding: 6px 12px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon.input-sm,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .input-group-addon.btn {
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 3px;
}
.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
  padding: 10px 16px;
  font-size: 20px;
  border-radius: 6px;
}
.input-group-addon input[type=radio],
.input-group-addon input[type=checkbox] {
  margin-top: 0;
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:first-child > .choose-store__toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle):not(.choose-store__toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.input-group-addon:first-child {
  border-right: 0;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:last-child > .choose-store__toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.input-group-addon:last-child {
  border-left: 0;
}

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav:before, .nav:after {
  content: " ";
  display: table;
}
.nav:after {
  clear: both;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a, .nav > li > .pseudo {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover, .nav > li > .pseudo:hover, .nav > li > a:focus, .nav > li > .pseudo:focus {
  text-decoration: none;
  background-color: #eeeeee;
}
.nav > li.disabled > a, .nav > li.disabled > .pseudo {
  color: #777777;
}
.nav > li.disabled > a:hover, .nav > li.disabled > .pseudo:hover, .nav > li.disabled > a:focus, .nav > li.disabled > .pseudo:focus {
  color: #777777;
  text-decoration: none;
  background-color: transparent;
  cursor: default;
}
.nav .open > a, .nav .open > .pseudo, .nav .open > a:hover, .nav .open > a:focus {
  background-color: #eeeeee;
  border-color: #56b6e1;
}
.nav .nav-divider {
  height: 1px;
  margin: 11px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img, .nav > li > .pseudo > img {
  max-width: none;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a, .nav-tabs > li > .pseudo {
  margin-right: 2px;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover, .nav-tabs > li > .pseudo:hover {
  border-color: #eeeeee #eeeeee #ddd;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > .pseudo, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #555555;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-pills {
  margin-bottom: 12px;
}
.nav-pills > li {
  float: left;
  border: 1px solid #eee;
  border-left: none;
}
.nav-pills > li > a, .nav-pills > li > .pseudo,
.nav-pills > li > span {
  border-radius: 0;
  padding: 6px 15px;
  cursor: pointer;
  display: block;
}
.nav-pills > li.active > a, .nav-pills > li.active > .pseudo, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus, .nav-pills > li.active > span, .nav-pills > li.active > span:hover, .nav-pills > li.active > span:focus {
  color: white !important;
  background-color: #1896d4;
}
.nav-pills > li.disabled {
  cursor: default;
  opacity: 0.65;
  pointer-events: none;
}
.nav-pills > li:first-child {
  border-left: 1px solid #eee;
}
.nav-pills .nav-link {
  border: none;
}

.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}
.nav-justified > li > a, .nav-justified > li > .pseudo, .nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu, .nav-justified > .dropdown .store__category-menu ul, .store__category-menu .nav-justified > .dropdown ul, .nav-justified > .dropdown .choose-store__menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a, .nav-justified > li > .pseudo, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a, .nav-tabs-justified > li > .pseudo, .nav-tabs.nav-justified > li > a, .nav-tabs.nav-justified > li > .pseudo {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a, .nav-tabs-justified > .active > .pseudo, .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > .pseudo,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a, .nav-tabs-justified > li > .pseudo, .nav-tabs.nav-justified > li > a, .nav-tabs.nav-justified > li > .pseudo {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > .pseudo, .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > .pseudo,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.nav-tabs .dropdown-menu, .nav-tabs .store__category-menu ul, .store__category-menu .nav-tabs ul, .nav-tabs .choose-store__menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 24px;
  margin: 0 -15px;
  border: 1px solid transparent;
}
.navbar:before, .navbar:after {
  content: " ";
  display: table;
}
.navbar:after {
  clear: both;
}

.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table;
}
.navbar-header:after {
  clear: both;
}
@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}

.navbar-collapse {
  overflow-x: visible;
  overflow-y: hidden;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}
.navbar-collapse:before, .navbar-collapse:after {
  content: " ";
  display: table;
}
.navbar-collapse:after {
  clear: both;
}
.navbar-collapse:before, .navbar-collapse:after {
  content: none;
}
.navbar-collapse.in {
  overflow-y: auto;
}
@media (min-width: 768px) {
  .navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
  }
  .navbar-collapse.collapse {
    display: flex !important;
    justify-content: space-between;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .navbar-collapse.in {
    overflow-y: visible;
  }
  .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}
@media (min-width: 768px) {
  .container > .navbar-header,
  .container > .navbar-collapse,
  .container-fluid > .navbar-header,
  .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}
@media (min-width: 768px) {
  .navbar-static-top {
    border-radius: 0;
  }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}
@media (min-width: 768px) {
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    border-radius: 0;
  }
}

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

.navbar-brand {
  float: left;
  padding: 12px 15px;
  font-size: 20px;
  line-height: 24px;
  height: 50px;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}
.navbar-brand > img {
  display: block;
}
@media (min-width: 768px) {
  .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle:focus {
  outline: 0;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-nav {
  margin: 6px -15px;
}
.navbar-nav > li {
  cursor: pointer;
}
.navbar-nav > li.active {
  cursor: default;
}
.navbar-nav > li > a, .navbar-nav > li > .pseudo {
  border: none;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 24px;
}
.navbar-nav .badge {
  font-size: 85%;
  color: #ccc;
  line-height: 1;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu, .navbar-nav .open .store__category-menu ul, .store__category-menu .navbar-nav .open ul, .navbar-nav .open .choose-store__menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .store__category-menu ul > li > a, .store__category-menu .navbar-nav .open ul > li > a, .navbar-nav .open .choose-store__menu > li > a, .navbar-nav .open .dropdown-menu > li > .pseudo, .navbar-nav .open .store__category-menu ul > li > .pseudo, .store__category-menu .navbar-nav .open ul > li > .pseudo, .navbar-nav .open .choose-store__menu > li > .pseudo,
  .navbar-nav .open .dropdown-menu .dropdown-header,
  .navbar-nav .open .store__category-menu ul .dropdown-header,
  .store__category-menu .navbar-nav .open ul .dropdown-header,
  .navbar-nav .open .choose-store__menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .store__category-menu ul > li > a, .store__category-menu .navbar-nav .open ul > li > a, .navbar-nav .open .choose-store__menu > li > a, .navbar-nav .open .dropdown-menu > li > .pseudo, .navbar-nav .open .store__category-menu ul > li > .pseudo, .store__category-menu .navbar-nav .open ul > li > .pseudo, .navbar-nav .open .choose-store__menu > li > .pseudo {
    line-height: 24px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .store__category-menu ul > li > a:hover, .store__category-menu .navbar-nav .open ul > li > a:hover, .navbar-nav .open .choose-store__menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > .pseudo:hover, .navbar-nav .open .store__category-menu ul > li > .pseudo:hover, .store__category-menu .navbar-nav .open ul > li > .pseudo:hover, .navbar-nav .open .choose-store__menu > li > .pseudo:hover, .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-nav .open .store__category-menu ul > li > a:focus, .store__category-menu .navbar-nav .open ul > li > a:focus, .navbar-nav .open .choose-store__menu > li > a:focus, .navbar-nav .open .dropdown-menu > li > .pseudo:focus, .navbar-nav .open .store__category-menu ul > li > .pseudo:focus, .store__category-menu .navbar-nav .open ul > li > .pseudo:focus, .navbar-nav .open .choose-store__menu > li > .pseudo:focus {
    background-image: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }
  .navbar-nav > li {
    float: left;
  }
  .navbar-nav > li > a, .navbar-nav > li > .pseudo {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 0;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: 6px;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .navbar-form .form-control-static {
    display: inline-block;
  }
  .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .navbar-form .input-group .input-group-addon,
  .navbar-form .input-group .input-group-btn,
  .navbar-form .input-group .form-control {
    width: auto;
  }
  .navbar-form .input-group > .form-control {
    width: 100%;
  }
  .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio,
  .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .navbar-form .radio label,
  .navbar-form .checkbox label {
    padding-left: 0;
  }
  .navbar-form .radio input[type=radio],
  .navbar-form .checkbox input[type=checkbox] {
    position: relative;
    margin-left: 0;
  }
  .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}
@media (max-width: 767px) {
  .navbar-form .form-group {
    margin-bottom: 5px;
  }
  .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}
.navbar-form .form-control-block {
  width: 100%;
}
@media (min-width: 768px) {
  .navbar-form {
    width: auto;
    border: 0;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.navbar-text {
  margin-top: 13px;
  margin-bottom: 13px;
}
@media (min-width: 768px) {
  .navbar-text {
    float: left;
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (min-width: 768px) {
  .navbar-left {
    float: left !important;
  }
  .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}
.navbar-default .navbar-brand {
  color: #000;
}
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: black;
  background-color: transparent;
}
.navbar-default .navbar-text {
  color: #777;
}
.navbar-default .navbar-nav > li {
  border: 1px solid #eee;
  border-left: none;
}
.navbar-default .navbar-nav > li:first-child {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  border-left: 1px solid #eee;
}
.navbar-default .navbar-nav > li:first-child a, .navbar-default .navbar-nav > li:first-child .pseudo {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.navbar-default .navbar-nav > li:last-child {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.navbar-default .navbar-nav > li:last-child a, .navbar-default .navbar-nav > li:last-child .pseudo {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.navbar-default .navbar-nav > li .navbar-nav-link {
  border-bottom: 1px solid transparent;
}
.navbar-default .navbar-nav > li.parent .navbar-nav-link {
  border-bottom: 1px solid white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.navbar-default .navbar-nav > li > a, .navbar-default .navbar-nav > li > .pseudo {
  color: #000;
  border: none;
}
.navbar-default .navbar-nav > li > a .notify-led, .navbar-default .navbar-nav > li > .pseudo .notify-led {
  display: inline-block;
  border-radius: 100%;
  height: 12px;
  width: 12px;
  background-color: #cddc39;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > .pseudo, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  color: #fff !important;
  background-color: #1896D4 !important;
}
.navbar-default .navbar-nav > .parent > a, .navbar-default .navbar-nav > .parent > .pseudo, .navbar-default .navbar-nav > .parent > a:hover, .navbar-default .navbar-nav > .parent > a:focus {
  color: #fff;
  background-color: #1896D4;
}
.navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > .pseudo, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc !important;
  background-color: transparent !important;
}
.navbar-default .navbar-nav > .disabled {
  border-top: none;
  border-bottom: none;
}
.navbar-default .navbar-nav > li.parent a:hover .navbar-nav-link, .navbar-default .navbar-nav > li.parent .pseudo:hover .navbar-nav-link {
  color: #fff !important;
  opacity: 0.5;
}
.navbar-default .navbar-toggle {
  border-color: #ddd;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #eee;
}

.navbar-invert {
  background: #1896D4;
  margin: 0 -15px;
  padding: 15px 0;
}
.navbar-invert:after {
  position: absolute;
  content: "";
  border-top: 10px solid #1896D4;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  bottom: -10px;
  left: 12%;
}
.navbar-invert .form-control {
  background: white;
}

.pagination {
  margin: 24px 0;
  border-radius: 4px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination > li {
  display: block;
  padding: 0;
  margin: 0;
}
.pagination > li > a, .pagination > li > .pseudo,
.pagination > li > span {
  position: relative;
  padding: 6px 12px;
  line-height: 1.5;
  text-decoration: none;
  color: #56b6e1;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
  display: block;
}
.pagination > li:first-child > a, .pagination > li:first-child > .pseudo,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination > li:last-child > a, .pagination > li:last-child > .pseudo,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination > li:before {
  display: none;
}
.pagination > li > a:hover, .pagination > li > .pseudo:hover, .pagination > li > a:focus, .pagination > li > .pseudo:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
  z-index: 3;
  color: rgb(0, 79, 142);
  background-color: #eeeeee;
  border-color: #ddd;
}
.pagination > .active > a, .pagination > .active > .pseudo, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  background-color: #1896d4;
  border-color: #1896d4;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > .pseudo,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  background-color: #fff;
  border-color: #ddd;
}

.pagination-lg > li > a, .pagination-lg > li > .pseudo,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > .pseudo,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > .pseudo,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}

.pagination-sm > li > a, .pagination-sm > li > .pseudo,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.6;
}
.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > .pseudo,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > .pseudo,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.alert {
  padding: 15px;
  margin-bottom: 24px;
  border: 1px solid transparent;
  font-size: 15px;
}
.alert.row {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-mark {
  color: white;
  font-weight: 100;
  margin-right: 20px;
}

li.alert {
  padding-right: 0;
  padding-left: 0;
}

.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  background-color: #94C77F;
  border-color: #93bf6d;
  color: #fff;
}
.alert-success hr {
  border-top-color: #86b75c;
}
.alert-success .alert-link {
  color: #e6e6e6;
}

.alert-info {
  background-color: #7BC1E4;
  border-color: #5dc9de;
  color: #fff;
}
.alert-info hr {
  border-top-color: #48c1da;
}
.alert-info .alert-link {
  color: #e6e6e6;
}

.alert-warning {
  background-color: #CABD7C;
  border-color: #c3a56a;
  color: #fff;
}
.alert-warning hr {
  border-top-color: #bb9a58;
}
.alert-warning .alert-link {
  color: #e6e6e6;
}

.alert-danger {
  background-color: #f27b6a;
  border-color: #f05359;
  color: #fff;
}
.alert-danger hr {
  border-top-color: #ee3b43;
}
.alert-danger .alert-link {
  color: #e6e6e6;
}

.alert__app-done {
  background-color: #94C77F;
  border-color: #93bf6d;
  color: #fff;
  margin-bottom: 0;
}
.alert__app-done hr {
  border-top-color: #86b75c;
}
.alert__app-done .alert-link {
  color: #e6e6e6;
}

.alert__app-finished {
  background-color: #5e9c44;
  border-color: #608a3c;
  color: #fff;
  margin-bottom: 0;
}
.alert__app-finished hr {
  border-top-color: #547835;
}
.alert__app-finished .alert-link {
  color: #e6e6e6;
}

.alert__app-consideration {
  background-color: #7BC1E4;
  border-color: #5dc9de;
  color: #fff;
  margin-bottom: 0;
}
.alert__app-consideration hr {
  border-top-color: #48c1da;
}
.alert__app-consideration .alert-link {
  color: #e6e6e6;
}

.alert__app-draft {
  background-color: #aaa;
  border-color: #777;
  color: #fff;
  margin-bottom: 0;
}
.alert__app-draft hr {
  border-top-color: #6a6a6a;
}
.alert__app-draft .alert-link {
  color: #e6e6e6;
}

.alert__app-expired {
  background-color: #CABD7C;
  border-color: #c3a56a;
  color: #fff;
  margin-bottom: 0;
}
.alert__app-expired hr {
  border-top-color: #bb9a58;
}
.alert__app-expired .alert-link {
  color: #e6e6e6;
}

.alert__app-rejected {
  background-color: #f27b6a;
  border-color: #f05359;
  color: #fff;
  margin-bottom: 0;
}
.alert__app-rejected hr {
  border-top-color: #ee3b43;
}
.alert__app-rejected .alert-link {
  color: #e6e6e6;
}

.media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}

.media,
.media-body {
  zoom: 1;
  overflow: hidden;
}

.media-body {
  width: 10000px;
}

.media-object {
  display: block;
}
.media-object.img-thumbnail {
  max-width: none;
}

.media-right,
.media > .pull-right {
  padding-left: 10px;
}

.media-left,
.media > .pull-left {
  padding-right: 10px;
}

.media-left,
.media-right,
.media-body {
  display: table-cell;
  vertical-align: top;
}

.media-middle {
  vertical-align: middle;
}

.media-bottom {
  vertical-align: bottom;
}

.media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

.media-list {
  padding-left: 0;
  list-style: none;
}

.panel {
  margin-bottom: 24px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
  padding: 15px;
}
.panel-body:before, .panel-body:after {
  content: " ";
  display: table;
}
.panel-body:after {
  clear: both;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle, .panel-heading > .dropdown .choose-store__toggle {
  color: inherit;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  color: inherit;
}
.panel-title > a, .panel-title > .pseudo,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > small > .pseudo,
.panel-title > .small > a,
.panel-title > .small > .pseudo {
  color: inherit;
}

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

.list-group + .panel-footer {
  border-top-width: 0;
}

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-left: 15px;
  padding-right: 15px;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}

.panel-group {
  margin-bottom: 24px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

.panel-primary {
  border-color: #1896d4;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #1896d4;
  border-color: #1896d4;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #1896d4;
}
.panel-primary > .panel-heading .badge {
  color: #1896d4;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #1896d4;
}

.panel-success {
  border-color: #93bf6d;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #94C77F;
  border-color: #93bf6d;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #93bf6d;
}
.panel-success > .panel-heading .badge {
  color: #94C77F;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #93bf6d;
}

.panel-info {
  border-color: #5dc9de;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #7BC1E4;
  border-color: #5dc9de;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #5dc9de;
}
.panel-info > .panel-heading .badge {
  color: #7BC1E4;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #5dc9de;
}

.panel-warning {
  border-color: #c3a56a;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #CABD7C;
  border-color: #c3a56a;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #c3a56a;
}
.panel-warning > .panel-heading .badge {
  color: #CABD7C;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #c3a56a;
}

.panel-danger {
  border-color: #f05359;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f27b6a;
  border-color: #f05359;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #f05359;
}
.panel-danger > .panel-heading .badge {
  color: #f27b6a;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #f05359;
}

.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
  height: 100%;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 10px 15px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

@media only screen and (min-height: 900px) {
  .modal-content {
    margin-top: -50%;
    top: calc(50% - 10px);
  }
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #1896d4;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  padding: 15px 15px 0;
  min-height: 16.5px;
}
.modal-header small {
  font-size: 55%;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
}
.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 14px;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 400px;
  width: 400px;
  padding: 1px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  font-size: 13.6px;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.right {
  margin-left: 10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover.left {
  margin-left: -10px;
}

.popover-title {
  margin: 0;
  padding: 8px 14px;
  font-size: 16px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

.popover-content {
  padding: 9px 14px;
}

.popover > .arrow, .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover > .arrow {
  border-width: 11px;
}

.popover > .arrow:after {
  border-width: 10px;
  content: "";
}

.popover.top > .arrow {
  left: 50%;
  margin-left: -11px;
  border-bottom-width: 0;
  border-top-color: #999999;
  border-top-color: rgba(0, 0, 0, 0.25);
  bottom: -11px;
}
.popover.top > .arrow:after {
  content: " ";
  bottom: 1px;
  margin-left: -10px;
  border-bottom-width: 0;
  border-top-color: #fff;
}
.popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999999;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.popover.right > .arrow:after {
  content: " ";
  left: 1px;
  bottom: -10px;
  border-left-width: 0;
  border-right-color: #fff;
}
.popover.bottom > .arrow {
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  top: -11px;
}
.popover.bottom > .arrow:after {
  content: " ";
  top: 1px;
  margin-left: -10px;
  border-top-width: 0;
  border-bottom-color: #fff;
}
.popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999999;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.popover.left > .arrow:after {
  content: " ";
  right: 1px;
  border-right-width: 0;
  border-left-color: #fff;
  bottom: -10px;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

.margin {
  margin: 15px;
}
.margin-x {
  margin-left: 15px;
  margin-right: 15px;
}
.margin-y {
  margin-top: 15px;
  margin-bottom: 15px;
}
.margin-b {
  margin-bottom: 15px;
}
.margin-t {
  margin-top: 15px;
}
.margin-l {
  margin-left: 15px;
}
.margin-r {
  margin-right: 15px;
}

.padding {
  padding: 15px;
}
.padding-x {
  padding-left: 15px;
  padding-right: 15px;
}
.padding-y {
  padding-top: 15px;
  padding-bottom: 15px;
}
.padding-b {
  padding-bottom: 15px;
}
.padding-t {
  padding-top: 15px;
}
.padding-l {
  padding-left: 15px;
}
.padding-r {
  padding-right: 15px;
}

@-ms-viewport {
  width: device-width;
}
.visible-xs {
  display: none !important;
}

.visible-sm {
  display: none !important;
}

.visible-md {
  display: none !important;
}

.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}
@font-face {
  font-family: "icomoon";
  src: url("/g/src/global/fonts/icomoon.eot?5dd58w");
  src: url("/g/src/global/fonts/icomoon.woff?5dd58w") format("woff"), url("/g/src/global/fonts/icomoon.eot?5dd58w#iefix") format("embedded-opentype"), url("/g/src/global/fonts/icomoon.ttf?5dd58w") format("truetype"), url("/g/src/global/fonts/icomoon.svg?5dd58w#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-font-]:before, [class*=" icon-font-"]:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-font-doc:before {
  content: "\e800";
}

.icon-font-edit-circled:before {
  content: "\e801";
}

.icon-font-plus-circled:before {
  content: "\e802";
}

.icon-font-pencil-circled:before {
  content: "\e803";
}

.icon-font-minus-circled:before {
  content: "\e804";
}

.icon-font-cancel-circled:before {
  content: "\e806";
}

.icon-font-cancel-circled2:before {
  content: "\e807";
}

.icon-font-trash-circled:before {
  content: "\e809";
}

.icon-font-ok-circled2:before {
  content: "\e80a";
}

.icon-font-ok-circled:before {
  content: "\e80b";
}

.icon-font-cinema:before,
.icon-font-movie:before {
  content: "\e910";
}

.icon-font-map:before {
  content: "\e90f";
}

.icon-font-close:before {
  content: "\e90e";
}

.icon-font-video:before {
  content: "\e903";
}

.icon-font-services:before {
  content: "\e905";
}

.icon-font-maintenance:before {
  content: "\e911";
}

.icon-font-shopping-bag:before {
  content: "\e912";
}

.icon-font-entertainment:before,
.icon-font-funny:before {
  content: "\e906";
}

.icon-font-search:before {
  content: "\e907";
}

.icon-font-photo:before,
.icon-font-foto:before {
  content: "\e908";
}

.icon-font-cafe:before {
  content: "\e90a";
}

.icon-font-brand:before {
  content: "\e90b";
}

.icon-font-3d:before {
  content: "\e90d";
}

.icon-font-rent:before {
  content: "\e900";
}

.icon-font-zoom-in:before {
  content: "\e901";
}

.icon-font-zoom-out:before {
  content: "\e902";
}

.icon-font-view-list:before {
  content: "\e904";
}

.icon-font-enter:before {
  content: "\e909";
}

.icon-font-view-grid:before {
  content: "\e90c";
}

.icon-font-loyalty:before {
  content: "\e920";
}

.icon-font-tablet:before {
  content: "\e921";
}

.icon-font-contacts:before {
  content: "\e922";
}

.icon-font-checkmark:before,
.icon-font-checked:before {
  content: "\e923";
}

.icon-font-logout:before {
  content: "\e909";
}

/**
 * (c) 2015 Art. Lebedev Studio
 *
 * @package adamant
 * @author Valeriy Yatsko <dwr@design.ru>
 * @update Iblyaminov Albert <rie@artlebedev.ru>
 */
a, .pseudo {
  border-bottom: 1px solid;
  text-decoration: none !important;
  color: #56b6e1;
  border-color: rgba(86, 182, 225, 0.3);
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  cursor: pointer;
}
a img, .pseudo img {
  display: inline-block;
}
a:hover, .pseudo:hover, a:focus, .pseudo:focus, a.active, .active.pseudo, a.lightnings, .lightnings.pseudo {
  color: rgb(0, 79, 142) !important;
  border-color: rgba(0, 79, 142, 0.3) !important;
}
a:focus, .pseudo:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.pseudo {
  cursor: pointer;
  border-bottom: 1px dotted;
}
.pseudo.active {
  border: none;
}

.pseudo {
  cursor: pointer;
  border-bottom: 1px dotted;
}
.pseudo.active {
  border: none;
}

.bx-mac.bx-no-retina .pseudo,
.bx-mac.bx-no-retina a {
  border-bottom-width: 1.5px;
}

a.nonunderline, .nonunderline.pseudo,
.nonunderline a,
.nonunderline .pseudo {
  border: none;
}

.external-link,
.popup-link {
  margin-right: 19px;
  position: relative;
}
.external-link:after,
.popup-link:after {
  display: inline-block;
  content: "";
  margin-left: 2px;
  vertical-align: middle;
  opacity: 0.5;
}
.ie7 .external-link:after,
.ie7 .popup-link:after {
  display: inline;
  zoom: 1;
}

.external-link:after {
  background-image: url(/h/src/global/../../sprite.png);
  background-position: -182px -78px;
  width: 17px;
  height: 17px;
  margin-right: -19px;
}
.external-link.alt_dark:after {
  background-image: url(/h/src/global/../../sprite.png);
  background-position: -182px -141px;
  width: 17px;
  height: 17px;
  margin-right: -19px;
}
.external-link.alt_gray:after {
  background-image: url(/h/src/global/../../sprite.png);
  background-position: -182px -120px;
  width: 17px;
  height: 17px;
  margin-right: -18px;
}
.external-link:hover:after {
  background-image: url(/h/src/global/../../sprite.png);
  background-position: -182px -99px;
  width: 17px;
  height: 17px;
}

.popup-link:after {
  background-image: url(/h/src/global/../../sprite.png);
  background-position: -28px -154px;
  width: 16px;
  height: 15px;
  margin-right: -18px;
}
.popup-link.alt_dark:after {
  background-image: url(/h/src/global/../../sprite.png);
  background-position: -80px -86px;
  width: 16px;
  height: 15px;
  margin-right: -18px;
}
.popup-link.alt_gray:after {
  background-image: url(/h/src/global/../../sprite.png);
  background-position: -48px -154px;
  width: 16px;
  height: 15px;
  margin-right: -18px;
}
.popup-link:hover:after {
  background-image: url(/h/src/global/../../sprite.png);
  background-position: -182px -162px;
  width: 16px;
  height: 15px;
}

.info-link .q {
  display: inline-block;
  font-style: normal;
  border-radius: 100%;
  border-width: 1px;
  border-style: solid;
  box-sizing: border-box;
  width: 14px;
  text-align: center;
  height: 14px;
  line-height: 14px;
  font-size: 12px;
}

.file {
  max-width: 200px;
  position: relative;
  padding-right: 5px;
  padding-bottom: 5px;
}
.file__link {
  border: none;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.file__link svg {
  width: 35px;
  height: auto;
}
.file__title {
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 180px;
  display: block;
}
.file__name {
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 180px;
  display: block;
  font-size: 12px;
}
.file__size {
  display: block;
  color: #333333;
  margin: 0;
  font-size: 10px;
  white-space: nowrap;
  line-height: 1.2;
}
.file .delete-file {
  background-image: url(/f/src/global/i/sprite.png);
  background-position: -88px -335px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: none;
  text-decoration: none;
  border-radius: 100%;
  z-index: 10;
}
.file .delete-file:hover {
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5019607843);
}
.file .delete-file:active {
  opacity: 0.5;
}

.files-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: -5px;
  list-style: none;
}
.files-list li:before {
  content: none;
}
.files-list .file {
  margin: 0;
  padding: 5px;
  display: block;
  max-width: 200px;
  flex: 50%;
}
.files-list .file a, .files-list .file .pseudo {
  text-decoration: none !important;
}

/* -------- NG-WIG -------- */
/**
 *
 *  RESET BOX MODEL
 *
 */
.ng-wig,
[class^=nw-] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/**
 *   main wrapper for the editor
 *
 *  .ng-wig
 *
 */
.ng-wig {
  display: block;
  padding: 0;
  margin: 0 -1px;
}

/**
 *  styling for toolbar and its items
 *
 *  .nw-toolbar
 *    &__item
 *
 */
.nw-toolbar {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  font-size: 12px;
  color: #6B7277;
  border: 1px solid #CCCCCC;
  border-radius: 3px 3px 0 0;
  display: none;
}

.nw-toolbar__item {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  border-right: 1px solid #DEDEDE;
}

.nw-toolbar label {
  line-height: 30px;
  display: inline-block;
  padding: 0 6px 0 3px;
}

.nw-toolbar input[type=checkbox] {
  vertical-align: -3px;
  margin-right: -1px;
}

/**
 *  styling for the editor part: source code (original textarea) and resulting div
 *
 *  .nw-editor
 *    &__src
 *    &__res
 *
 */
.nw-editor {
  display: table;
  /* Default when height is not set */
  height: 300px;
  background: #fff;
  cursor: text;
  width: 100%;
  border-top: 1px solid #ccc;
}

.nw-editor-container {
  border: 1px solid #CCCCCC;
  border-top: none;
  border-radius: 0 0 3px 3px;
  position: relative;
}

.nw-editor__res {
  min-height: 100%;
  padding: 15px 15px;
  display: table-cell;
}

.nw-editor__src,
.nw-editor__res {
  width: 100%;
  outline: none;
  box-sizing: border-box;
  border: none;
  margin: 0;
}

.nw-editor__src-container {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.nw-editor__src {
  height: 100%;
  resize: none;
  padding: 0 8px;
}

.nw-editor--fixed .nw-editor {
  display: block;
  overflow-y: auto;
}

.nw-editor--fixed .nw-editor__res {
  padding: 1px 8px;
  display: block;
}

.nw-invisible {
  visibility: hidden;
}

.nw-editor--fixed .nw-invisible {
  display: none;
}

.nw-editor.nw-disabled {
  cursor: default;
}

/**
 *  styling for toolbar button, has two modifiers: active and type of icon for background
 *
 *  .nw-button
 *    &--active
 *    &--{button type}
 *
 */
.nw-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  opacity: 0.5;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  border: none;
  border-radius: 2px;
  font-size: 0;
  cursor: pointer;
}

.nw-button:before {
  font-size: 12px;
  font-family: FontAwesome;
}

.nw-button.bold:before {
  content: "\f032";
}

.nw-button.italic:before {
  content: "\f033";
}

.nw-button.list-ul:before {
  content: "\f0ca";
}

.nw-button.list-ol:before {
  content: "\f0cb";
}

.nw-button.link:before {
  content: "\f0c1";
}

.nw-button.font-color:before {
  content: "\f031";
}

.nw-button.nw-button--source:before {
  content: "\f040";
}

.nw-button:focus {
  outline: none;
}

.nw-button:hover,
.nw-button.nw-button--active {
  opacity: 1;
}

.nw-button--active {
  background-color: #EEEEEE;
}

.nw-button:disabled {
  cursor: default;
}

.nw-button:disabled:hover {
  opacity: 0.5;
}

/**
 *  styling & formatting of content inside contenteditable div
 *
 *  .nw-content
 *
 */
.nw-content {
  padding: 12px;
  margin: 0;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 24px;
}

.nw-select {
  height: 30px;
  padding: 6px;
  color: #555;
  background-color: inherit;
  border: 0;
}

.nw-select:disabled {
  opacity: 0.5;
}

.nw-select:focus {
  outline: none;
}

/** blocks style */
.layout {
  padding-bottom: 10em;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
.layout__content {
  padding-top: 0;
  padding-bottom: 20px;
}

header {
  position: relative;
  z-index: 2;
  border-top: 2px solid;
  padding-top: 10px;
}
header .time-work {
  font-size: 13px;
  color: #aaa;
}
header.fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}
header .logo img {
  position: relative;
  max-width: 100%;
}
header .trc_header {
  margin-left: 110px;
  padding-bottom: 10px;
}
.page-class-home header .trc_header, .page-class-search header .trc_header {
  margin-left: 85px;
}
header .trc_header__navigation__wrap .video-icon {
  background: url("/f/media/global/icon/table-icon-video-red.png") left center no-repeat;
  display: block;
  position: absolute;
  width: 22px;
  height: 22px;
  left: -27px;
  top: 0;
}
@media (max-width: 767px) {
  header .trc_header__navigation__wrap {
    padding: 0 0 10px 0;
  }
}
@media (max-width: 480px) {
  header .trc_header__navigation__wrap .video-icon {
    display: none !important;
  }
}
@media (max-width: 767px) {
  header .trc_header__navigation {
    margin-top: 35px !important;
  }
}
@media (max-width: 991px) {
  .page-class-home header .trc_header, .page-class-search header .trc_header {
    margin-left: 70px;
  }
}
@media (max-width: 767px) {
  .page-class-home header .trc_header, .page-class-search header .trc_header {
    margin-left: 80px;
  }
}
@media (max-width: 991px) {
  header .trc_header {
    margin-left: 8.3333333% !important;
  }
}
@media (max-width: 767px) {
  header .trc_header {
    margin-left: 15px !important;
  }
}
header .trc_header .logo {
  display: inline-block;
}
.ie7 header .trc_header .logo {
  display: inline;
  zoom: 1;
}
@media (max-width: 480px) {
  header .trc_header .logo {
    padding-left: 0;
  }
}
header .trc_header .logo img {
  position: relative;
  top: 20px;
}
@media (min-width: 991px) {
  .page-moremoll-moskva.page-class-home header .trc_header .logo img, .page-trc-galereya-novosibirsk.page-class-home header .trc_header .logo img {
    left: -25px;
  }
}
header .navigation {
  display: inline-block;
  vertical-align: top;
}
.ie7 header .navigation {
  display: inline;
  zoom: 1;
}
header .navigation__item {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}
@media (min-width: 767px) and (max-width: 991px) {
  .page-class-home header .navigation.header_navigation_trc, .page-class-search header .navigation.header_navigation_trc {
    margin: 30px 0 30px 65px;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  header .navigation.header_navigation_trc {
    margin: 30px 0 30px 110px;
  }
}
@media (max-width: 767px) {
  header .navigation.header_navigation_trc {
    margin-left: 15px !important;
  }
}
header .navigation.header_navigation_trc .navigation__item:last-child {
  position: relative;
}
header .navigation.header_navigation_trc .navigation__item:last-child:before {
  color: #56b6e1;
  position: absolute;
  display: block;
  left: 100%;
  margin-left: 5px;
  margin-top: 3px;
}
header .navigation.header_navigation_trc .navigation__item:last-child:hover:before {
  color: rgb(0, 79, 142);
}
header .navigation.header_navigation_trc .navigation__item:last-child.selected:before, header .navigation.header_navigation_trc .navigation__item:last-child.selected:hover:before {
  color: #000;
}
.error header .navigation.header_navigation_trc .navigation__item:last-child:before {
  display: none;
}
@media (max-width: 480px) {
  header .header__personal__wrap .time-work {
    display: none;
  }
}
header .header__personal {
  vertical-align: top;
  line-height: 20px;
  text-align: right;
  position: relative;
}
header .header__personal a, header .header__personal .pseudo {
  position: relative;
}
header .header__personal a:hover:before, header .header__personal .pseudo:hover:before {
  color: rgb(0, 79, 142);
}
header .header__personal a:before, header .header__personal .pseudo:before {
  color: #56b6e1;
  display: inline-block;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
header .header__personal .logout {
  margin-left: 10px;
  display: inline-block;
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 40px;
}

.choose-store {
  margin-bottom: 30px;
  font-size: 25px;
  display: inline-block;
  line-height: 1.1;
}
.choose-store .pseudo {
  color: black;
  border-color: rgba(0, 0, 0, 0.3);
}
.choose-store__menu {
  margin-left: 10px;
}
.choose-store__menu a, .choose-store__menu .pseudo {
  font-size: 16px;
}
.choose-store__after {
  white-space: nowrap;
}
.choose-store__toggle {
  padding: 0;
  font-size: 42px;
  position: relative;
  vertical-align: middle;
}
.choose-store__toggle_disabled {
  cursor: default;
}
.choose-store__toggle_disabled-trc {
  margin-left: 0;
}
.choose-store__toggle-trc, .choose-store__toggle-store {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .choose-store {
    line-height: 1;
    margin-bottom: 10px;
  }
  .choose-store__toggle, .choose-store__inline-element {
    font-size: 25px;
  }
}

.application-list__tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.application-list__buttons, .application-list__filter {
  display: flex;
}
.application-list__buttons .item, .application-list__filter .item {
  padding: 0 5px;
}
.application-list__buttons .item:first-child, .application-list__filter .item:first-child {
  padding-left: 0;
}
.application-list__buttons .item:last-child, .application-list__filter .item:last-child {
  padding-right: 0;
}
.application-list__buttons select,
.application-list__buttons .select-group, .application-list__filter select,
.application-list__filter .select-group {
  width: 220px;
}
.application-list__buttons {
  justify-content: flex-end;
}
.application-list__filter {
  justify-content: flex-start;
}
.application-list__filter button {
  font-size: 14px;
}
.application-list__filter select {
  font-size: 14px;
  height: 35px;
}
.application-list__container {
  max-width: none;
}
.sogls .application-list__table label.checkbox {
  vertical-align: baseline;
  padding-left: 0;
  margin: 0;
}
.creatz .application-list__table label.checkbox{display: none!important;}
.sogls .application-list__table label.checkbox:before {
  vertical-align: middle;
  margin-right: 0;
  left: unset;
  position: unset;
}
.application-list-type {
  margin-top: 15px;
}
.application-list-category {
  margin-top: 15px;
}
.application-list__td-mark {
  max-width: 1em;
}
.application-list__td-mark-led {
  border-radius: 20px;
  height: 10px;
  width: 10px;
  background: #CDDC39;
  display: inline-block;
}
.application-list__td-num {
  width: 2em;
}
.application-list__td-num .pseudo {
  position: relative;
  right: -3px;
}
.application-list__td-date {
  white-space: nowrap;
}
.application-list__td-category {
  max-width: 11em;
}
.application-list__td-status {
  max-width: 11em;
  min-width: 11em;
  white-space: nowrap;
}
.application-list__td-button {
  text-align: right;
  max-width: 14em;
}
.application-list__empty-result, .application-list__empty-result:hover, .application-list__empty-result td, .application-list__empty-result:hover td {
  background: none !important;
  cursor: default !important;
}

.application-item {
  font-size: 14px;
}
.application-item table a, .application-item table .pseudo {
  text-decoration: underline !important;
  border: none !important;
}
.application-item table > tbody > tr > td {
  vertical-align: top;
}
.application-item .table-overview {
  width: 100%;
  font-size: 14px;
  margin-bottom: 10px;
}
.application-item .table-overview td {
  padding: 2px 8px;
}
.application-item .table-overview td.title {
  font-weight: bold;
}
.application-item .table-data > tbody > tr:nth-child(odd) {
  background-color: #f9f9f9;
}
.application-item .table-data td.employee_list {
  padding: 0;
}
.application-item .table-employee {
  width: 100%;
  font-size: 14px;
}
.application-item .table-employee:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.application-item .table-employee > tbody > tr > td {
  padding: 2px 8px;
}
.application-item .table-overview td.title,
.application-item .table-data td.title,
.application-item .table-employee td.title {
  width: 0;
  white-space: nowrap;
  padding-right: 15px !important;
}
.application-item__header h2 {
  margin-bottom: 15px;
}
.application-item__header h2 small {
  color: #fff;
  font-weight: bold;
}
.application-item__header .small {
  margin-bottom: 10px;
}
.application-item__header ._bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.application-item__header ._bottom ._buttons {
  display: flex;
}
.application-item__header ._bottom ._buttons ._button {
  padding-right: 10px;
}
.application-item__header ._bottom ._buttons ._button:last-child {
  padding-right: 0;
}
.application-item__content, .application-item__delegations {
  padding-top: 15px;
  padding-bottom: 15px;
}
.application-item__delegations {
  background: #f0f5f9;
  background: linear-gradient(to bottom, #f0f5f9 0%, #fdfeff 100%);
}
.application-item .message {
  position: relative;
  padding: 6px;
  margin-bottom: 0;
  border: 1px solid transparent;
  font-size: 13px;
  color: #1896D4;
}
.application-item .message h4 {
  margin-top: 0;
  color: inherit;
}
.application-item .message h4 small {
  color: inherit;
}
.application-item .message.regular {
  background-color: #fff;
}
.application-item .message.alert {
  color: #fff;
}
.application-item .message ._date {
  position: absolute;
  top: 2px;
  right: 5px;
}

.date_warning {
  font-weight: bold;
  color: #c00;
}

.date_alert {
  display: inline-block;
  background-color: #f27b6a;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 1.25em;
  height: 1.25em;
  margin-left: 0.25em;
  text-align: center;
  cursor: pointer;
}
.date_alert + .tooltip .tooltip-inner {
  text-align: left;
  background-color: #f27b6a;
  border: 1px solid #000;
}

.application-popup__form {
  padding-left: 15px;
}
.application-popup__left {
  position: relative;
  z-index: 2;
  padding: 10px 15px 10px;
  border-right: 2px solid rgb(61, 166, 218);
}
.application-popup__left:after {
  content: "";
  display: block;
  position: absolute;
  border-right: none;
  border-left: 8px solid white;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  right: -8px;
  top: 52px;
}
.application-popup__left:before {
  content: "";
  display: block;
  position: absolute;
  border-right: none;
  border-left: 10px solid rgb(61, 166, 218);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  right: -10px;
  top: 50px;
}
.application-popup__right {
  border-left: 2px solid rgb(61, 166, 218);
  margin-left: -2px;
  position: relative;
  z-index: 1;
  padding-top: 10px;
}
.application-popup__add {
  display: block;
  height: auto;
  width: 100%;
  position: relative;
  vertical-align: middle;
  overflow: hidden;
}
.application-popup__add img {
  max-width: 100% !important;
  max-height: 100% !important;
  min-height: 0;
  min-width: 0;
}
.application-popup__add .photo__file-box {
  position: relative;
}
.application-popup__add .photo__file-box:after {
  line-height: 50px;
  font-size: 50px;
  color: rgba(61, 166, 218, 0.21);
  display: none;
}
.application-popup__add .photo__file-box-hover {
  opacity: 1 !important;
  padding: 15px;
  position: relative;
  background: rgba(61, 166, 218, 0.85);
}
.application-popup__category label {
  padding-left: 30px;
}
@media (min-width: 768px) {
  .modal.modal-mail-edit .modal-dialog,
  .modal.modal-mail .modal-dialog {
    width: 90%;
    margin: 30px auto;
    max-width: 1200px;
  }
}
@media only screen and (min-height: 900px) {
  .modal.modal-mail-edit .modal-content,
  .modal.modal-mail .modal-content {
    margin-top: inherit;
    top: inherit;
  }
}

.mail-popup .store-list {
  margin: -2px;
  list-style-type: none;
  counter-reset: stores;
  padding: 0 0 20px;
}
.mail-popup .store-list li {
  cursor: default;
  margin: 0;
  display: inline-block;
  font-size: 12px;
  line-height: 25px;
  padding: 2px;
  color: #888;
  width: 20%;
  counter-increment: stores;
}
@media (max-width: 1024px) {
  .mail-popup .store-list li {
    width: 25%;
  }
}
@media (max-width: 800px) {
  .mail-popup .store-list li {
    width: 33.33%;
  }
}
@media (max-width: 640px) {
  .mail-popup .store-list li {
    width: 50%;
  }
}
.mail-popup .store-list li .store {
  position: relative;
  display: block;
  border-radius: 5px;
  border: 1px solid #aaa;
}
.mail-popup .store-list li .store ._name {
  display: block;
  padding: 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mail-popup .store-list li .store ._name:before {
  display: inline-block;
  content: counter(stores) ".";
  padding-right: 3px;
}
.mail-popup .store-list li .store.has-read {
  color: #1896d4;
  border-color: #1896d4;
  padding-right: 15px;
}
.mail-popup .store-list li .store.has-read .is-read {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  width: 15px;
  font-size: 150%;
  text-align: center;
}

.photo {
  margin-top: -20px;
  padding: 20px 0;
  background: #1896d4;
}
.photo__submit {
  background: none;
  padding: 30px 0;
}
.photo__item {
  display: inline-block;
  position: relative;
  margin: 0 2px 2px 0;
  min-width: 250px;
  height: 250px;
  vertical-align: middle;
}
.photo__item-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(24, 150, 212, 0.8);
  opacity: 0;
}
.photo__item-hover-close {
  font-size: 50px;
  position: absolute;
  top: 0px;
  right: 10px;
  color: white;
  font-weight: 100;
  cursor: pointer;
}
.photo__item-hover-close:hover {
  color: red;
}
.photo__item-hover-up, .photo__item-hover-down {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  color: white;
  font-weight: 100;
  font-size: 20px;
  cursor: pointer;
}
.photo__item-hover-up:hover, .photo__item-hover-down:hover {
  color: red;
}
.photo__item-hover-up {
  right: 10px;
}
.photo__item-hover-down {
  left: 10px;
}
.photo__item-hover-move {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  width: 50px;
  height: 50px;
  opacity: 0.8;
  display: none;
}
.photo__item-wait {
  display: none;
  padding: 100px 60px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  color: white;
  vertical-align: middle;
}
.photo__item:hover .photo__item-hover-move {
  display: block;
}
.photo__item.consideration .photo__item-hover, .photo__item:hover .photo__item-hover {
  opacity: 1;
}
.photo__item.consideration .photo__item-wait {
  display: block;
}
.photo__item-nav {
  border: 1px solid transparent;
  border-radius: 3px;
  color: #fff;
  left: 10px;
  opacity: 0.3;
  overflow: hidden;
  padding: 5px 10px 0 5px;
  position: absolute;
  top: 22px;
  white-space: nowrap;
  width: 37px;
  z-index: 10;
  transition: all 0.23s ease-in-out;
}
.photo__item-nav label {
  font-size: 14px !important;
}
.photo__item:hover .photo__item-nav {
  background-color: #1896d4;
  border-color: #76c0e5;
  opacity: 1;
  width: auto;
}
.photo__add {
  display: inline-block;
  position: relative;
  height: 250px;
  width: 250px;
  vertical-align: middle;
  overflow: hidden;
  background: #3DA6DA;
}
.photo__file-box {
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  display: block;
  z-index: 2;
  overflow: hidden;
}
.photo__file-box p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 100;
  opacity: 0.8;
  letter-spacing: 2px;
}
.photo__file-box:after {
  content: "+";
  display: block;
  position: absolute;
  font-size: 200px;
  line-height: 230px;
  text-align: center;
  width: 100%;
  font-weight: 100;
  left: 0;
  top: 0;
  color: white;
  opacity: 0.3;
  z-index: 1;
}
.photo__file-box img {
  min-height: 100%;
  min-width: 100%;
}
.photo__file-box.highlight {
  border-color: yellow;
}
.photo__file-box-hover {
  opacity: 0;
  color: white;
  border: 1px dotted white;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 12px;
  padding: 100px 15px 15px;
  text-align: center;
  background: #1896d4;
  z-index: 2;
}
.photo__file-box:hover .photo__file-box-hover, .photo__file-box.highlight .photo__file-box-hover {
  opacity: 1;
}
.photo__file-input {
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
.photo__file-input-control {
  position: absolute;
  top: -50px;
  left: 0;
  opacity: 0;
  font-size: 200px;
  height: 250px;
  z-index: 1;
  cursor: pointer;
}
.photo__file-input-btn {
  cursor: pointer;
}
.photo__file-input:hover .photo__file-input-btn {
  border-color: #ccc;
}
.photo__file-input-center .photo__file-input-btn {
  margin-top: 30%;
}
.photo .dndPlaceholder {
  display: inline-block;
  vertical-align: bottom;
  min-height: 250px;
  width: 250px;
  position: relative;
}
.photo .dndPlaceholder:after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  border-radius: 15px;
  border: 1px dotted #fff;
}
.photo-item {
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.photo .dndDraggingSource {
  opacity: 0.2;
}

.photo-order img {
  max-width: 100%;
}

.store__add {
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  vertical-align: middle;
  overflow: hidden;
}
.store__add img {
  max-width: 100% !important;
  max-height: 100% !important;
  min-height: 0;
  min-width: 0;
}
.store__add .photo__file-box:after {
  display: none;
}
.store__add .photo__file-box-hover {
  padding-top: 20px;
  background: rgba(61, 166, 218, 0.85);
}
.store__sites {
  margin-bottom: 20px;
}
.store__sites p {
  line-height: 1.7;
}
.store__contacts {
  margin-bottom: 20px;
}
.store__contacts p {
  line-height: 1.7;
}
.store__contacts-site {
  position: relative;
}
.store__contacts-site-delete {
  border: 1px solid #1896d4;
  border-radius: 100px;
  color: #1896d4;
  position: absolute;
  display: block;
  height: 15px;
  width: 15px;
  top: 10px;
  right: 25px;
  line-height: 13px;
  text-align: center;
  font-size: 15px;
  cursor: pointer;
}
.store__contacts-site-delete:hover {
  color: red;
  border-color: red;
}
.store__category-toggle {
  position: relative;
}
.store__category-toggle .caret {
  position: absolute;
  top: 0.6em;
  left: -0.75em;
}
.store__category-menu {
  margin-left: -15px;
  padding: 15px;
  width: 600px;
}
.store__category-menu ul {
  position: relative;
  width: 199px;
  padding: 0;
  border: none;
  min-width: 0;
  display: block;
}
.store__category-menu ul li > a, .store__category-menu ul li > .pseudo,
.store__category-menu ul li > span {
  font-size: 14px;
  white-space: normal;
}
.store__logo-img {
  max-width: 100%;
}
.store__logo-param {
  margin-top: 20px;
  font-size: 12px;
  color: #999;
}
.store__desc {
  min-height: 300px;
  padding: 15px 15px 45px;
  border: 1px dashed #ccc;
  position: relative;
}
.store__desc.edited {
  border-color: transparent;
}
.store__desc-link {
  position: absolute;
  bottom: 15px;
  left: 15px;
}
.store__desc-text {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}
.store__desc-editor {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  background-color: white !important;
  z-index: 2;
  min-height: 340px;
}
.store__desc-editor-close {
  z-index: 3;
  display: none;
}
.store__desc-editor .nw-editor {
  border-color: #56b6e1;
  border-top: none;
}
.store__desc-editor .nw-editor-container {
  border-top: 1px solid;
  margin-top: -1px;
  padding-bottom: 30px;
  border-radius: 0;
  border-color: #56b6e1;
}
.store__desc-editor .nw-toolbar {
  display: none;
}

.store-order__empty {
  color: #999;
  font-style: italic;
}
.store-order__header {
  margin-top: 30px;
  margin-bottom: 15px;
}
.store-order__new {
  background: #f4fafd;
  padding-top: 15px;
  padding-bottom: 5px;
}
.store-order__old {
  padding-top: 15px;
  padding-bottom: 5px;
  background: none;
}

td.min-width {
  white-space: nowrap;
  width: 0;
}
td.date {
  white-space: nowrap;
  width: 0;
}
td.actions {
  white-space: nowrap;
  width: 0;
}
td.actions .action-icon {
  font-size: 200%;
  border-bottom: none;
  margin-right: 15px;
}
td.actions .action-icon:last-child {
  margin-right: 0;
}
td.actions .action-delete {
  color: #e15656;
  border-color: rgba(225, 86, 86, 0.3333333333);
}
td.actions .action-delete:hover, td.actions .action-delete:active {
  color: #8e0000 !important;
  border-color: rgba(142, 0, 0, 0.3333333333) !important;
}
td .file {
  display: inline-block;
  padding: 0;
}

.legal-info .table-overview {
  width: 100%;
  font-size: 14px;
  margin-bottom: 10px;
}
.legal-info .table-overview h3 {
  padding: 10px 0;
  margin: 0;
}
.legal-info .table-overview td {
  padding: 2px 8px;
}
.legal-info .table-overview td.title {
  font-weight: bold;
  width: 0;
  white-space: nowrap;
  padding-right: 15px !important;
}

.legal-kkt_form {
  padding-left: 30px;
  padding-right: 30px;
  background: #f0f5f9;
}
.legal-kkt_form form {
  margin: 40px 0;
  width: 50%;
  min-width: 400px;
  background: #fff;
  padding: 30px;
}
.legal-kkt_form form .form-group._submit {
  text-align: center;
}
.legal-kkt_form h2 {
  text-align: center;
}

.legal-kkt_list h2 {
  text-align: center;
}

.search {
  overflow: hidden;
}
.search .navbar {
  margin-bottom: 10px;
}
.search__control {
  cursor: pointer;
}
.search__control.active svg {
  fill: #1896D4;
}
.search__form {
  position: relative;
}
.search__group {
  display: flex;
  position: relative;
}
.search__clear {
  position: absolute;
  right: 15px;
  font-size: 14px;
  line-height: 38px;
  height: 38px;
  display: inline-block;
  top: 0;
}
.search__close {
  height: 38px;
  line-height: 38px;
  font-weight: 100;
}
.search__close-link {
  display: inline-block;
  color: #fff;
  font-size: 40px;
  line-height: 28px;
  cursor: pointer;
  vertical-align: unset;
  width: 38px;
  text-align: center;
  padding-bottom: 10px;
}
.search__close-link:hover {
  color: rgb(0, 79, 142);
}

.select-group .select {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}

.select-group .select .text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select-group .dropdown-menu, .select-group .choose-store__menu, .select-group .store__category-menu ul, .store__category-menu .select-group ul {
  top: 100%;
  margin: 0;
  padding: 0;
  width: 300px;
  left: unset;
  right: 0;
}

.select-group .dropdown-menu .list-wrapper, .select-group .choose-store__menu .list-wrapper, .select-group .store__category-menu ul .list-wrapper, .store__category-menu .select-group ul .list-wrapper {
  overflow-y: auto;
  max-height: 200px;
}

.select-group .dropdown-menu .list .item, .select-group .choose-store__menu .list .item, .select-group .store__category-menu ul .list .item, .store__category-menu .select-group ul .list .item {
  position: relative;
  padding-left: 10px;
  padding-right: 5px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
  height: 24px;
  line-height: 24px;
  font-size: 14px;
}

.select-group .dropdown-menu .list .item.active, .select-group .choose-store__menu .list .item.active, .select-group .store__category-menu ul .list .item.active, .store__category-menu .select-group ul .list .item.active,
.select-group .dropdown-menu .list .item:hover,
.select-group .choose-store__menu .list .item:hover,
.select-group .store__category-menu ul .list .item:hover,
.store__category-menu .select-group ul .list .item:hover {
  background-color: #1896d4;
  color: #fff;
}

.select-group .dropdown-menu .list .item:before, .select-group .choose-store__menu .list .item:before, .select-group .store__category-menu ul .list .item:before, .store__category-menu .select-group ul .list .item:before {
  display: none;
}

.select-group .search-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
}

.select-group .search-wrapper input {
  padding-right: 25px;
}

.select-group .search-wrapper .clear {
  position: relative;
  width: 20px;
  margin-left: -20px;
  padding-right: 5px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.select-group .search-wrapper .clear:before,
.select-group .search-wrapper .clear:after {
  position: absolute;
  content: "";
  width: 100%;
  display: block;
  border-bottom: 2px solid;
  transform: rotate(45deg);
}

.select-group .search-wrapper .clear:after {
  transform: rotate(-45deg);
}

.select-group .search-wrapper input:placeholder-shown + .clear {
  visibility: hidden;
}

.loader {
  position: fixed;
  top: 50%;
  margin-top: -30px;
  left: 50%;
  margin-left: -150px;
  width: 300px;
  z-index: 100000;
}
.loader__progress {
  z-index: 2;
  position: relative;
}
.loader__fade {
  position: fixed;
  z-index: 1;
  background: rgb(255, 255, 255);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.spinner {
  display: block;
  position: absolute;
  width: 120px;
  height: 120px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: url("/g/media/global/spinner-bg.png") center center no-repeat;
}
.spinner__loader {
  display: block;
  position: relative;
  width: 120px;
  height: 120px;
  border: 8px solid transparent;
  will-change: transform;
  background: url("/g/media/global/spinner.png") center center no-repeat;
  -webkit-animation: spinthis 800ms infinite;
  animation: spinthis 800ms infinite;
  animation-timing-function: linear;
}
.spinner_state_ready {
  display: none;
}
.spinner_state_ready .spinner__loader {
  will-change: auto;
  display: none;
  animation: none;
}

@-webkit-keyframes spinthis {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spinthis {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.view {
  padding-top: 20px;
  margin-top: 0;
  position: relative;
}
.view:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f0f5f9+0,ffffff+100 */
  background: rgb(240, 245, 249); /* Old browsers */
  background: -moz-linear-gradient(top, rgb(240, 245, 249) 0%, rgb(255, 255, 255) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgb(240, 245, 249) 0%, rgb(255, 255, 255) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgb(240, 245, 249) 0%, rgb(255, 255, 255) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f0f5f9", endColorstr="#ffffff",GradientType=0 ); /* IE6-9 */
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
}
.view__order {
  min-height: 100px;
}
.search.in + .view_after_search {
  margin-top: -10px;
}
.view__messages {
  position: relative;
  margin-top: 20px;
}
.view__editor {
  margin-top: 40px;
  background: rgb(240, 245, 249); /* Old browsers */
  background: -moz-linear-gradient(top, rgb(240, 245, 249) 0%, rgb(253, 254, 255) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgb(240, 245, 249) 0%, rgb(253, 254, 255) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgb(240, 245, 249) 0%, rgb(253, 254, 255) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f0f5f9", endColorstr="#ffffff",GradientType=0 ); /* IE6-9 */
}
.view__comment {
  margin-top: 30px;
}
.view__sign {
  opacity: 0.6;
  margin-top: 25px;
}
.view__files {
  margin-top: 30px;
}

.map {
  position: relative;
}
.map__trc {
  min-height: 500px;
}
.map__floor {
  height: 600px;
}
.map__floor svg {
  display: block;
  margin: 0 auto;
}
.map__floors-chooser {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: right;
  height: 30px;
  display: block;
}
.map__floors-chooser:after {
  content: "";
  display: block;
  position: relative;
  clear: both;
}
.map__floors-chooser-item {
  display: inline-block;
  padding: 0;
  line-height: 60px;
  text-align: center;
  height: 60px;
  width: 60px;
  cursor: pointer;
  font-size: 42px;
  border: 1px solid #5c9ccc;
  border-left: none;
}
.map__floors-chooser-item:first-child {
  border-left: 1px solid #5c9ccc;
}
.map__floors-chooser-item.selected {
  background: #5c9ccc;
  color: white;
}
.map__floors-chooser-item.current {
  color: #c4007e !important;
}
.map__color-current {
  background: #c4007e !important;
  border-radius: 30px;
  display: inline-block;
  height: 20px;
  width: 20px;
  position: relative;
  top: 5px;
}
.map__color-new {
  background: #EA6EBE !important;
  border-radius: 30px;
  display: inline-block;
  height: 20px;
  width: 20px;
  position: relative;
  top: 5px;
}

.tags {
  position: relative;
}
.tags tags-input {
  display: block;
  width: 100%;
}
.tags tags-input *, .tags tags-input :after, .tags tags-input :before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.tags tags-input .host {
  position: relative;
  margin-top: 0;
}
.tags tags-input .host:active {
  outline: 0;
}
.tags tags-input .tags {
  padding: 1px;
  overflow: hidden;
  word-wrap: break-word;
  cursor: text;
  background-color: #fff;
  border: none;
}
.tags tags-input .tags .tag-list {
  margin: -2px;
  padding: 0;
  list-style-type: none;
  counter-reset: tags;
}
.tags tags-input .tags .tag-item {
  cursor: default;
  margin: 0;
  display: inline-block;
  font-size: 12px;
  line-height: 25px;
  padding: 2px;
  color: #888;
  width: 20%;
  counter-increment: tags;
}
.test:before{content:"?";}
@media (max-width: 1024px) {
  .tags tags-input .tags .tag-item {
    width: 25%;
  }
}
@media (max-width: 800px) {
  .tags tags-input .tags .tag-item {
    width: 33.33%;
  }
}
@media (max-width: 640px) {
  .tags tags-input .tags .tag-item {
    width: 50%;
  }
}
.tags tags-input .tags .tag-item ti-tag-item {
  display: block;
  padding-left: 5px;
  border-radius: 5px;
  border: 1px solid #aaa;
}
.tags tags-input .tags .tag-item ti-tag-item ng-include {
  display: block;
  width: 100%;
  position: relative;
}
.tags tags-input .tags .tag-item ti-tag-item ng-include span {
  display: block;
  width: calc(100% - 20px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tags tags-input .tags .tag-item ti-tag-item ng-include span:before {
  display: inline-block;
  content: counter(tags) ".";
  padding-right: 3px;
}
.tags tags-input .tags .tag-item:hover {
  color: #04a;
}
.tags tags-input .tags .tag-item.selected {
  color: #04a;
}
.tags tags-input .tags .tag-item .remove-button {
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  font: 700 16px Arial, sans-serif;
  color: #888;
  display: inline-block;
  width: 20px;
  text-align: center;
  position: absolute;
  line-height: 25px;
  top: 0;
  right: 0;
}
.tags tags-input .tags .input.invalid-tag,
.tags tags-input .tags .tag-item .remove-button:hover,
.tags tags-input .tags .tag-item .remove-button:active {
  color: #b00 !important;
}
.tags tags-input .input_tag_wrapper {
  padding-bottom: 10px;
}
.tags tags-input .tags .input {
  border: 1px solid #ccc;
  outline: 0;
  margin: 2px 0;
  padding: 5px;
  line-height: 25px;
  font-size: 12px;
  opacity: 0.7;
  box-sizing: border-box;
  width: 100% !important;
}
.tags tags-input .tags .input::placeholder {
  color: #ccc;
}
.tags tags-input .tags .input:hover,
.tags tags-input .tags .input:focus {
  opacity: 1;
}
.tags tags-input .tags .input::-ms-clear {
  display: none;
}
.tags tags-input[disabled] .host:focus {
  outline: 0;
}
.tags tags-input[disabled] .tags {
  background-color: #eee;
  cursor: default;
}
.tags tags-input[disabled] .tags .tag-item {
  opacity: 0.65;
  background: -webkit-linear-gradient(top, #f0f9ff 0, rgba(203, 235, 255, 0.75) 47%, rgba(161, 219, 255, 0.62) 100%);
  background: linear-gradient(to bottom, #f0f9ff 0, rgba(203, 235, 255, 0.75) 47%, rgba(161, 219, 255, 0.62) 100%);
}
.tags tags-input[disabled] .tags .tag-item .remove-button {
  cursor: default;
}
.tags tags-input[disabled] .tags .tag-item .remove-button:active {
  color: #585858;
}
.tags tags-input[disabled] .tags .input {
  background-color: #666;
  cursor: default;
}
.tags tags-input .autocomplete {
  margin-top: 5px;
  position: absolute;
  padding: 5px 0;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.tags tags-input .autocomplete .suggestion-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  max-height: 280px;
  overflow-y: auto;
  position: relative;
}
.tags tags-input .autocomplete .suggestion-item {
  padding: 5px 10px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 300;
  color: #999;
  background-color: #fff;
}
.tags tags-input .autocomplete .suggestion-item.selected, .tags tags-input .autocomplete .suggestion-item.selected em {
  color: #fff;
  background-color: #0097cf;
}
.tags tags-input .autocomplete .suggestion-item em {
  font-style: normal;
  color: #000;
  background-color: #fff;
}

.hint {
  position: relative;
}
.hint__content {
  position: absolute;
  bottom: 50px;
  right: 0;
  left: 75%;
  font-size: 14px;
  color: #999;
  padding-left: 15px;
}

.delegation-list > h3 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.delegation {
  margin-bottom: 15px;
}
.delegation .form-control {
  padding: 6px;
  font-size: 14px;
  line-height: 1.2;
}
.delegation .approving-block,
.delegation .cancelling-block {
  margin-top: 15px;
}
.delegation ._status {
  font-weight: bold;
  color: #888;
}
.delegation ._comment {
  color: #fff;
  padding: 6px;
  background-color: #7BC1E4;
}
.delegation.accept ._status {
  color: #93bf6d;
}
.delegation.accept ._comment {
  background-color: #94C77F;
}
.delegation.reject ._status {
  color: #f05359;
}
.delegation.reject ._comment {
  background-color: #f27b6a;
}

.breadcrumbs {
  margin: 10px 0;
  font-size: 13px;
  line-height: 22px;
}
.breadcrumbs__link {
  border: none;
}
.breadcrumbs__sep {
  margin: 0 5px;
  color: rgba(0, 0, 0, 0.6);
}
.c-radio-wrap.ng-hide{display:block!important;}
});
/*# sourceMappingURL=main.css.map */