/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");
html {
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*!
 * Bootstrap Grid v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@-ms-viewport {
  width: device-width;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .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, .col-sm,
.col-sm-auto, .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, .col-md,
.col-md-auto, .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, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -webkit-flex-basis: 0;
      -ms-flex-preferred-size: 0;
          flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8.33333%;
      -ms-flex: 0 0 8.33333%;
          flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.66667%;
      -ms-flex: 0 0 16.66667%;
          flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.33333%;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.66667%;
      -ms-flex: 0 0 41.66667%;
          flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.33333%;
      -ms-flex: 0 0 58.33333%;
          flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.66667%;
      -ms-flex: 0 0 66.66667%;
          flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 75%;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83.33333%;
      -ms-flex: 0 0 83.33333%;
          flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 91.66667%;
      -ms-flex: 0 0 91.66667%;
          flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
  -webkit-order: 13;
      -ms-flex-order: 13;
          order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
      -ms-flex-order: 0;
          order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
      -ms-flex-order: 5;
          order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
      -ms-flex-order: 6;
          order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
      -ms-flex-order: 7;
          order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -webkit-order: 8;
      -ms-flex-order: 8;
          order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -webkit-order: 9;
      -ms-flex-order: 9;
          order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -webkit-order: 10;
      -ms-flex-order: 10;
          order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -webkit-order: 11;
      -ms-flex-order: 11;
          order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -webkit-order: 12;
      -ms-flex-order: 12;
          order: 12;
}

.offset-1 {
  margin-left: 8.33333%;
}

.offset-2 {
  margin-left: 16.66667%;
}

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

.offset-4 {
  margin-left: 33.33333%;
}

.offset-5 {
  margin-left: 41.66667%;
}

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

.offset-7 {
  margin-left: 58.33333%;
}

.offset-8 {
  margin-left: 66.66667%;
}

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

.offset-10 {
  margin-left: 83.33333%;
}

.offset-11 {
  margin-left: 91.66667%;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333%;
  }
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333%;
  }
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  .offset-md-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333%;
  }
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -webkit-inline-flex !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: row !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: column !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: row-reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: column-reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-wrap {
  -webkit-flex-wrap: wrap !important;
      -ms-flex-wrap: wrap !important;
          flex-wrap: wrap !important;
}

.flex-nowrap {
  -webkit-flex-wrap: nowrap !important;
      -ms-flex-wrap: nowrap !important;
          flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse !important;
      -ms-flex-wrap: wrap-reverse !important;
          flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -webkit-justify-content: flex-start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -webkit-justify-content: flex-end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -webkit-justify-content: space-between !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -webkit-justify-content: space-around !important;
      -ms-flex-pack: distribute !important;
          justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -webkit-align-items: flex-start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -webkit-align-items: flex-end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -webkit-align-items: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -webkit-align-items: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -webkit-align-content: flex-start !important;
      -ms-flex-line-pack: start !important;
          align-content: flex-start !important;
}

.align-content-end {
  -webkit-align-content: flex-end !important;
      -ms-flex-line-pack: end !important;
          align-content: flex-end !important;
}

.align-content-center {
  -webkit-align-content: center !important;
      -ms-flex-line-pack: center !important;
          align-content: center !important;
}

.align-content-between {
  -webkit-align-content: space-between !important;
      -ms-flex-line-pack: justify !important;
          align-content: space-between !important;
}

.align-content-around {
  -webkit-align-content: space-around !important;
      -ms-flex-line-pack: distribute !important;
          align-content: space-around !important;
}

.align-content-stretch {
  -webkit-align-content: stretch !important;
      -ms-flex-line-pack: stretch !important;
          align-content: stretch !important;
}

.align-self-auto {
  -webkit-align-self: auto !important;
      -ms-flex-item-align: auto !important;
          align-self: auto !important;
}

.align-self-start {
  -webkit-align-self: flex-start !important;
      -ms-flex-item-align: start !important;
          align-self: flex-start !important;
}

.align-self-end {
  -webkit-align-self: flex-end !important;
      -ms-flex-item-align: end !important;
          align-self: flex-end !important;
}

.align-self-center {
  -webkit-align-self: center !important;
      -ms-flex-item-align: center !important;
          align-self: center !important;
}

.align-self-baseline {
  -webkit-align-self: baseline !important;
      -ms-flex-item-align: baseline !important;
          align-self: baseline !important;
}

.align-self-stretch {
  -webkit-align-self: stretch !important;
      -ms-flex-item-align: stretch !important;
          align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-sm-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-sm-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-sm-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-sm-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-sm-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-sm-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
            align-self: auto !important;
  }
  .align-self-sm-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-sm-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-sm-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
            align-self: center !important;
  }
  .align-self-sm-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
            align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-md-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-md-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-md-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-md-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-md-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-md-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-md-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-md-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
            align-self: auto !important;
  }
  .align-self-md-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-md-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-md-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
            align-self: center !important;
  }
  .align-self-md-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-md-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
            align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-lg-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-lg-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-lg-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-lg-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-lg-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-lg-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
            align-self: auto !important;
  }
  .align-self-lg-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-lg-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-lg-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
            align-self: center !important;
  }
  .align-self-lg-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
            align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xl-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-xl-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-xl-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-xl-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-xl-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-xl-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
            align-self: auto !important;
  }
  .align-self-xl-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-xl-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-xl-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
            align-self: center !important;
  }
  .align-self-xl-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
            align-self: stretch !important;
  }
}

.header__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F0F0F8;
  padding: 10px 20px;
}

.header__actions-wrap, .header__btns-wrp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-weight: 300;
}

.header__actions-wrap a, .header__btns-wrp a {
  color: #000;
  text-decoration: none;
}

.header__btn {
  background: #fff;
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  min-width: 93px;
  height: 41px;
  line-height: 41px;
  padding: 0 10px 0 38px;
  cursor: pointer;
  margin-right: 20px;
}

.header__btn:last-child {
  margin-right: 0;
}

.header__btn.menu__btn {
  padding: 0 10px 0 25px;
}

.logo-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.live-chat__wrp {
  margin-right: 50px;
}

.phone__wrp {
  margin-right: 70px;
}

.icon-element {
  position: relative;
}

.icon-element:before {
  position: absolute;
  content: "";
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("/images/orderform-redesign/headerSprite.png");
  background-repeat: no-repeat;
}

.icon-element.phone__number:before {
  width: 18px;
  height: 21px;
  background-position: -35px -30px;
}

.icon-element.live-chat {
  cursor: pointer;
}

.icon-element.live-chat:before {
  left: -30px;
  width: 20px;
  height: 19px;
  background-position: -5px -5px;
}

.icon-element.login__btn:before {
  left: 15%;
  width: 14px;
  height: 15px;
  background-position: -35px -5px;
}

.site-slogan {
  font-weight: 300;
  font-size: 15px;
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid #000;
}

.menu__arrows {
  width: 14px;
  height: 12px;
  display: inline-block;
  position: relative;
  top: 2px;
  left: -3px;
}

.menu__arrows span {
  display: block;
  background: #000;
  width: 14px;
  height: 1px;
  margin-bottom: 3px;
}

.menu__arrows span:last-child {
  margin-bottom: 0;
}

.mobile-el {
  display: none;
}

.mobile__phone {
  display: inline-block;
  background-image: url("/images/orderform-redesign/headerSprite.png");
  background-repeat: no-repeat;
  width: 18px;
  height: 21px;
  background-position: -35px -30px;
  margin-right: 15px;
  position: relative;
  top: 2px;
}

.mobile__chat {
  display: inline-block;
  background-image: url("/images/orderform-redesign/icon-chat.png");
  background-repeat: no-repeat;
  width: 19px;
  height: 18px;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #000;
}

.order-form__title {
  padding-bottom: 20px;
  margin-bottom: 32px;
  border-bottom: 1px solid #d5d5d5;
  font-weight: 300;
  font-size: 36px;
}

.order-form__block-title {
  font-size: 22px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 8px;
}

.order-form__part-wrp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.order-form__left {
  width: 470px;
}

.order-form__right {
  padding-top: 63px;
  width: 340px;
}

.order-form__lbl {
  font-size: 15px;
  font-weight: 300;
}

.order-details__label-wrp {
  margin-bottom: 5px;
}

.order-details__label-wrp label {
  font-weight: 300;
  font-size: 15px;
}

.order-details__td {
  padding-top: 15px;
  max-width: 470px;
}

.order-details__part-wrp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.order-details__part-block:first-child {
  width: 149px;
}

.order-details__part-block:last-child {
  margin-left: 15px;
  margin-top: 0;
}

.order-details__info-block {
  color: #555;
  font-size: 13px;
  font-weight: 300;
  margin-top: 7px;
}

.order-details__info-block span {
  display: block;
}

.order-details__description {
  color: #555;
  font-size: 13px;
  font-weight: 300;
  margin: 7px 0;
}

.order-details__description a {
  display: block;
  color: #000;
  font-size: 13px;
  font-weight: 300;
  text-decoration: none;
  margin: 5px 0 15px;
}

#row_doctype .order-details__td {
  padding-top: 0;
}

#row_doctype .order-details__label-wrp {
  margin-bottom: 8px;
}

#row_preff_wr_id ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#row_preff_wr_id .add {
  display: none;
}

#row_preff_wr_id .order-details__part-block:first-child {
  width: 195px;
  min-width: 195px;
}

#row_cost_per_page {
  display: none;
}

#row_phone1 .personal-info__element-wrp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

#row_phone1 .personal-info__element-wrp input {
  margin: 0 10px;
}

#row_phone1 .personal-info__element-wrp input:last-child {
  margin-right: 0;
}

#row_phone1 #phone1_country {
  margin-left: 0;
  width: 60px;
  text-align: center;
}

#row_phone1 #phone1_area {
  width: 70px;
  text-align: center;
}

#row_phone1 .validation_error {
  width: 100%;
}

#row_promo .order-details__description a {
  display: none;
}

#row_operational_system select {
  line-height: normal;
  height: auto;
  background: #fafafa;
  padding: 10px;
}

#row_preff_wr_id .order-details__part-wrp {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.order-page__part.vas-block .vas-row__wrp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 43px;
  line-height: 43px;
}

.order-page__part.mobile-price {
  display: none;
}

.order-page__container {
  width: 860px;
  margin: 0 auto;
}

.order-page__info {
  font-size: 13px;
  color: #000;
  margin: 22px 0;
  text-align: center;
  font-weight: 300;
  line-height: 14px;
}

.order-page__info a {
  color: #2f80ed;
  text-decoration: none;
}

.order-page .main-content {
  margin-bottom: 100px;
}

#pages-number {
  display: inline-block;
}

#order-details__total {
  display: none;
}

.vas-block .order-form__block-title {
  margin: 33px 0 18px;
}

.vas-block .vas-label {
  position: relative;
  font-size: 15px;
  padding-left: 24px;
  width: 60%;
}

.vas-block .vas-label:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  background-image: url("/images/orderform-redesign/vasSprite.png");
  background-repeat: no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.vas-block .vas-label_151:before {
    width: 20px;
    height: 20px;
    background-position: -62px -34px;
}

.vas-block .vas-label_152:before {
  width: 19px;
  height: 19px;
    background-position: -31px -5px;
}

.vas-block .vas-label_153:before {
  width: 22px;
  height: 22px;
    background-position: -62px -4px;
}

.vas-block .vas-label_147:before {
  width: 18px;
  height: 18px;
    background-position: -33px -32px;
}

.vas-block .vas-label_164:before {
    width: 20px;
    height: 20px;
    background-position: -4px -4px;
}

.vas-row {
  padding: 0 15px 0 0;
  border: 1px solid #B9B9B9;
  border-radius: 5px;
  margin-bottom: 8px;
}

.vas-row:hover {
  border: 1px solid #989898;
}

.vas-row.additional_151_price_wrap {
  background: -webkit-gradient(linear, left bottom, left top, from(#FFFAEA), to(rgba(255, 255, 255, 0))), #FFFDF8;
  background: -webkit-linear-gradient(bottom, #FFFAEA 0%, rgba(255, 255, 255, 0) 100%), #FFFDF8;
  background: linear-gradient(360deg, #FFFAEA 0%, rgba(255, 255, 255, 0) 100%), #FFFDF8;
  border: 1px solid #FFD75B;
}

.vas-row.additional_151_price_wrap:hover {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(16.98%, #FFFAEA), to(rgba(255, 255, 255, 0))), #FFFDF8;
  background: -webkit-linear-gradient(bottom, #FFFAEA 16.98%, rgba(255, 255, 255, 0) 100%), #FFFDF8;
  background: linear-gradient(360deg, #FFFAEA 16.98%, rgba(255, 255, 255, 0) 100%), #FFFDF8;
  border: 1px solid #F2BD1C;
}

.vas-row .orderLabel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.vas-row .orderLabel span {
  font-weight: 300;
}

.vas-row .vas-prices {
  font-weight: 300;
  position: relative;
  padding-right: 16px;
}

.vas-row input {
  height: 14px;
  width: 14px;
  background: #fafafa;
  margin-right: 10px;
  border: 1px solid #BCBCBC;
  outline: none;
}

.vas-row__hint {
  display: none;
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 15px;
  padding: 0 20px 0 50px;
}

.vas-row__hint p {
  margin: 0;
}

.vas-row.active-hint .vas-row__hint {
  display: block;
}

.vas-row__wrp input {
  pointer-events: all;
}

.additional_303_price_wrap .vas-prices {
  padding-right: 0;
}

.show-hint {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-left: 10px;
  background: url("/images/orderform-redesign/show-hint.svg") no-repeat 50% 50%;
  z-index: 9;
  -webkit-transition: all 150ms ease-in;
  transition: all 150ms ease-in;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -15px;
  height: auto;
  width: 30px;
}

.show-hint.active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.linear-select {
  border: 1px solid #a3a3a3;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 45px;
  line-height: 45px;
}

.linear-select a {
  font-size: 15px;
  text-decoration: none;
  padding: 0 9px;
  color: #000;
  text-align: center;
  border-right: 1px solid #a3a3a3;
  width: 100%;
  white-space: nowrap;
  background: #fafafa;
}

.linear-select a.selected {
  background: #2f80ed;
  color: #fff;
}

.linear-select a.selected:hover {
  border: 0;
}

.linear-select a:hover {
  border: 1px solid #2f80ed;
}

.linear-select a:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.linear-select a:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-right: 0;
}

.fixed-block-total {
  border: 1px solid #d5d5d5;
  border-radius: 5px;
  padding: 20px 15px;
  -webkit-box-shadow: 0 1px 7px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 7px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#price-total-bl {
  border-bottom: 1px solid #d5d5d5;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

#personal_info .order-form__block-title {
  margin-top: 8px;
  margin-bottom: 0;
}

.personal-info__lbl-wrp {
  margin-bottom: 5px;
}

.personal-info__lbl-wrp label {
  font-weight: 300;
  font-size: 15px;
}

.personal-info__td {
  padding: 9px 0;
  max-width: 470px;
}

.totalp-block {
  margin: 34px 0 25px;
}

.totalp-block__wrp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 22px;
}

.totalp-block__total {
  color: #219653;
  margin-left: 5px;
}

.wrap-block-total-price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 26px;
}

.wrap-block-total-price .title-name {
  font-size: 16px;
  font-weight: 300;
}

#total-add-ons-bl {
  display: none;
}

.prices-num-block {
  font-weight: 500;
  color: #219653;
}

.separate-price,
#price-doctype {
  font-size: 13px !important;
  font-weight: 300;
}

.separate-price .prices-num-block,
#price-doctype .prices-num-block {
  color: #000;
  font-weight: 300;
}

#discount-bl {
  color: #219653;
  background: #E1F1E8;
  margin: 0 -15px 10px;
  padding: 0 15px;
  font-size: 13px;
}

#discount-bl .title-name {
  font-size: 13px;
  color: #219653;
  font-weight: normal;
}

.choose-payment__wrp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}

.choose-payment .order-form__block-title {
  margin-bottom: 18px;
}

.choose-payment__item {
  cursor: pointer;
  background: #fafafa;
  border: 1px solid #a3a3a3;
  width: 48%;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  padding: 10px;
}

.choose-payment__item.selected {
  background: #fff;
  border: 1px solid #2f80ed;
}

.choose-payment__item.selected span {
  color: #2f80ed;
}

.choose-payment__item:hover {
  background: #fff;
  border-color: #2f80ed;
}

.choose-payment__item input[type=radio] + label {
  cursor: pointer;
  background: url("/images/orderform-redesign/checkBoxSprite.png") no-repeat;
  background-size: cover;
  background-position: 0 0;
  height: 13px;
  width: 13px;
  display: inline-block;
  margin-right: 7px;
}

.choose-payment__item input[type=radio]:checked + label {
  background-position: 0 -13px;
}

.choose-payment__input {
  display: none;
}

.choose-payment__img {
  padding-left: 25px;
  position: relative;
  top: 8px;
}

#input_deadline {
  display: block;
}

#input_deadline label {
  display: block;
  margin: 5px 0;
  font-weight: 300;
  font-size: 15px;
}

.extend_deadline_text {
  display: block;
  margin: 10px 0;
  font-weight: 300;
  font-size: 15px;
}

.format-text {
  display: none;
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  right: 35px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.loading-spinner::before {
  content: '';
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  border-top-color: #3c80ed;
  -webkit-animation: spinner 0.6s linear infinite;
          animation: spinner 0.6s linear infinite;
}

.wait-validation .loading-spinner {
  display: block;
}

.wait-validation #submit_order_form {
  opacity: 0.7;
}

.more-pages {
  display: none !important;
}

.more-pages.active {
  display: inline-block !important;
}

div.upload-area {
  margin-top: 10px;
}

div.qq-upload-drop-area {
  padding: 26px;
}

div.qq-upload-drop-area span {
  font-size: 15px;
}

div.qq-upload-drop-area .qq-upload-button {
  font-weight: normal;
}

.upload-area {
  background: #f2f2f2;
  text-align: center;
  height: 55px;
  line-height: 55px;
  font-size: 13px;
  font-weight: 300;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 17px;
  margin-top: 12px;
}

.upload-area__icon {
  display: inline-block;
  background: url("/images/orderform-redesign/upload.svg") no-repeat;
  width: 25px;
  height: 21px;
  margin-right: 11px;
}

#error_accept {
  padding: 12px;
  margin: 15px auto;
  border-radius: 4px;
  color: rgba(255, 76, 57, 0.82);
  background: rgba(255, 121, 112, 0.23);
  border: 1px solid rgba(255, 76, 57, 0.56);
  border-collapse: initial;
  display: none;
  width: 100%;
}

#accept {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

#accept_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  font-size: 15px;
}

#accept_container a {
  margin-left: 5px;
}

.no-words .separate-price__words,
.no-words .separate-price__separator,
.no-words .separate-price__wordsLabel {
  display: none;
}

.order-details__element-wrp {
  max-width: 470px;
}

.order-form__right .fixed-block-total {
  width: 340px;
}

.order-form__right .fixed {
  position: fixed;
  top: 10px;
  z-index: 9999;
}

.totalWithoutDiscount {
  text-decoration: line-through;
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  line-height: 23px;
  font-size: 15px;
  margin-right: 10px;
}

.totalp-block__lbl {
  margin-right: 10px;
}

.personal-info__phone-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.personal-info__phone-box-1 {
  width: 130px;
  margin-right: 10px;
}

.personal-info__phone-box-2 {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.personal-info__phone-select,
.personal-info__phone-input {
  width: 100%;
}

.country-code__name {
  text-transform: uppercase;
  font-style: normal;
}

.personal-info__phone-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.personal-info__phone-1, .personal-info__phone-2 {
  width: 100%;
  height: 45px;
  line-height: 45px;
  margin: 0;
  padding: 0 10px;
  outline: none;
  display: block;
  border: 1px solid #b9b9b9;
}

.personal-info__phone-1 {
  border-right: none;
  border-radius: 5px 0 0 5px;
  padding-right: 0;
}

.personal-info__phone-2 {
  border-left: none;
  border-radius: 0 5px 5px 0;
  padding-left: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__rendered {
  white-space: normal;
  overflow: hidden;
}

#doctype_loading {
  display: block;
}

.select2-dropdown {
  min-width: 250px !important;
}

.order-details__td .additional_303_price_wrap input[type="checkbox"] {
  display: none;
}

.order-details__td .additional_303_price_wrap input[type="checkbox"] + .orderLabel label {
  margin-left: 30px;
  cursor: pointer;
}

.order-details__td .additional_303_price_wrap input[type="checkbox"] + .orderLabel label::after {
  content: '';
  background: url(/images/checkbox.png) no-repeat;
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 2px;
  left: -30px;
}

.order-details__td .additional_303_price_wrap input[type="checkbox"]:checked + .orderLabel label::after {
  background: url(/images/checkbox_checked.png) no-repeat;
}

.vas-row input[type="checkbox"] {
  display: none;
}

.vas-row input[type="checkbox"] + .orderLabel label {
  margin-left: 36px;
  cursor: pointer;
}

.vas-row input[type="checkbox"] + .orderLabel label::after {
  content: '';
  background: url(/images/checkbox.png) no-repeat;
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 15px;
  left: -25px;
}

.vas-row input[type="checkbox"]:checked + .orderLabel label::after {
  background: url(/images/checkbox_checked.png) no-repeat;
}

.additional_303_price_wrap.vas-row {
  padding: 0 !important;
  border: 0;
  border-radius: 0;
  margin-bottom: 12px !important;
}

.additional_303_price_wrap.vas-row:hover {
  border: 0 !important;
}

.vas-label__custom {
  position: relative;
}

.order-details__element-wrp.ppt-wrapper {
  padding-bottom: 15px;
}

#row_numpages .order-details__td {
  padding-top: 0;
}

.footer {
  padding: 60px 0;
  color: #0d2847;
  border-top: 1px solid #d5d5d5;
}

.footer__wrp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer-links__title {
  font-size: 22px;
  margin-bottom: 30px !important;
  font-weight: 400;
}

.footer a {
  text-decoration: none;
  color: #0d2847;
  font-weight: 300;
}

.footer a:hover {
  text-decoration: underline;
}

.footer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 15px;
}

.footer li:last-child {
  margin-bottom: 0;
}

.footer .icon-element {
  margin-left: 30px;
}

.footer .phone__number {
  font-weight: 300;
}

.footer .paypal {
  background-image: url("/images/orderform-redesign/sprite.png");
  background-position: -106px 0px;
  width: 143px;
  height: 35px;
}

.footer .paypal-btn {
  padding: 7px 25px;
  border-radius: 5px;
  border: 1px solid #dadada;
  background: #fbfbfb;
  display: inline-block;
}

.disclaimer {
  text-align: center;
  padding: 30px 0 0;
  border-top: 1px solid #dadada;
  margin-top: 30px;
}

.disclaimer__img {
    font-size: 12px;
    color: #919191;
    font-weight: 300;
    font-family: Roboto;
}
.disclaimer__img::before {
    content: "DISCLAIMER: It is illegal to use the research materials ordered on this website for other than research purposes. You must quote the sources appropriately. The company bears no responsibility for the use of research work, not intended for education use, the work is sold as-is with the highest quality and service available and written by freelancers.";
}

.disclaimer p {
  margin: 10px auto 0;
  color: #919191;
  font-family: Roboto;
  font-size: 13px;
  font-weight: 300;
}

.block-accept .flex-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.block-accept .f-ic1 {
  background-image: url(/images/home-page/icons/footer-visa.svg);
  width: 54px;
  height: 33px;
}

.block-accept .f-ic2 {
  background-image: url(/images/home-page/icons/footer-mastercard.svg);
  width: 54px;
  height: 33px;
}

.block-accept .f-ic3 {
  background-image: url(/images/home-page/icons/footer-maestro.svg);
  width: 54px;
  height: 33px;
}

.block-accept .f-ic4 {
  background-image: url(/images/home-page/icons/footer-amex.svg);
  width: 54px;
  height: 33px;
}

.block-accept .f-ic5 {
  background-image: url(/images/home-page/icons/footer-discover.svg);
  width: 54px;
  height: 33px;
}

.block-accept .f-ic6 {
  background-image: url(/build/images/wiretrans.png);
  width: 54px;
  height: 33px;
}

.block-accept .paypal {
  background-image: url(/images/home-page/sprite/sprite.png);
  background-position: -106px 0px;
  width: 143px;
  height: 35px;
}

.block-accept .icon {
  display: block;
  margin-bottom: 10px;
}

.flex-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 60%;
}

.button {
  border-radius: 5px;
  border: 0;
  background: #ccc;
  padding: 10px;
  position: relative;
}

.button__pay {
  background: #2F80ED;
  width: 100%;
  height: 56px;
  line-height: 56px;
  color: #fff;
  padding: 0 10px;
  font-weight: bold;
  font-size: 18px;
  text-indent: 20px;
}

.button__pay:hover {
  background: #2272DF;
}

.btn-wrp {
  position: relative;
  display: inline-block;
  width: 100%;
}

.btn-wrp:before {
  position: absolute;
  content: "";
  left: 30%;
  top: 48%;
  background: url("/images/orderform-redesign/lock.svg");
  width: 12px;
  height: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
}

.wait-validation .loading-spinner::before {
  border-top-color: #61a7f2;
}

.wait-validation:hover .loading-spinner::before {
  border-top-color: #5f9ee9;
}

.order-details__element-wrp select {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  background: #fafafa url("/images/orderform-redesign/select-arrows.svg") no-repeat 97% center;
  border: 1px solid #a3a3a3;
  border-radius: 5px;
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
  width: 100%;
}

.order-details__part-wrp .order-details__element-wrp select {
  background: #fafafa url("/images/orderform-redesign/select-arrows.svg") no-repeat 91% center;
}

.personal-info__element-wrp select {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  background: #fafafa url("/images/orderform-redesign/select-arrows.svg") no-repeat 97% center;
  border: 1px solid #a3a3a3;
  border-radius: 5px;
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
  width: 100%;
}

.order-page .select2-container .select2-selection--single {
  height: 45px;
  border: 1px solid #A3A3A3;
  background-color: #fafafa;
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
  outline: none;
}

.order-page .select2-container .select2-selection--single:hover {
  border: 1px solid #878787;
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
}

.order-page .select2-container .select2-selection--single:focus {
  border: 1px solid #2F80ED;
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
}

.order-page .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 43px;
  padding-left: 14px;
}

.order-page .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 43px;
  background: url(/images/orderform-redesign/select-arrows.svg) no-repeat 0% center;
}

.order-page .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

#country {
  width: 130px;
}

.order-details__element-wrp textarea, .order-details__element-wrp input {
  border-radius: 5px;
  border: 1px solid #B9B9B9;
  width: 100%;
  padding: 0 10px;
  outline: none;
}

.order-details__element-wrp textarea:hover, .order-details__element-wrp input:hover {
  border: 1px solid #878787;
}

.order-details__element-wrp textarea:focus, .order-details__element-wrp input:focus {
  border: 1px solid #2F80ED;
}

.order-details__element-wrp input {
  height: 45px;
  line-height: 45px;
}

.order-details__element-wrp textarea {
  height: 84px;
  min-height: 84px;
  max-height: 277px;
  resize: vertical;
  padding: 10px;
}

.personal-info__element-wrp input {
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: 1px solid #B9B9B9;
  width: 100%;
  padding: 0 10px;
  outline: none;
}

.personal-info__element-wrp input:hover {
  border: 1px solid #878787;
}

.personal-info__element-wrp input:focus {
  border: 1px solid #2F80ED;
}

.info-placeholder::-webkit-input-placeholder {
  font-family: 'Roboto';
  font-weight: 300;
  color: #b0b0b0;
}

.info-placeholder:-moz-placeholder {
  font-family: 'Roboto';
  font-weight: 300;
  color: #b0b0b0;
}

.info-placeholder::-moz-placeholder {
  font-family: 'Roboto';
  font-weight: 300;
  color: #b0b0b0;
}

.info-placeholder:-ms-input-placeholder {
  font-family: 'Roboto';
  font-weight: 300;
  color: #b0b0b0;
}

.info-placeholder:focus::-webkit-input-placeholder {
  opacity: 0;
}

.info-placeholder:focus:-moz-placeholder {
  opacity: 0;
}

.info-placeholder:focus::-moz-placeholder {
  opacity: 0;
}

.info-placeholder:focus:-ms-input-placeholder {
  opacity: 0;
}

.login-form {
  width: 303px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 3px 18px rgba(0, 0, 0, 0.14);
          box-shadow: 0 3px 18px rgba(0, 0, 0, 0.14);
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 20px;
  z-index: 50;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.login-form__wrapper.active .login-form {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.login-form__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  visibility: hidden;
  opacity: 0;
}

.login-form__wrapper.active {
  visibility: visible;
  opacity: 1;
}

.login-form__label {
  color: #000;
  font-family: Roboto;
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 5px;
}

.login-form__input {
  border-radius: 5px;
  border: 1px solid #b9b9b9;
  color: #000;
  font-family: Roboto;
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  background: #fff;
  margin-bottom: 15px;
}

.login-form__input:focus,
.login-form__input:hover {
  -webkit-box-shadow: 0 1px 0 rgba(68, 128, 236, 0.22);
          box-shadow: 0 1px 0 rgba(68, 128, 236, 0.22);
  border: 1px solid #4480ec;
  outline: none;
}

.login-form__submit {
  color: #fff;
  font-family: Roboto;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 6px;
  background-color: #3e7ac3;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#4d4d4d), to(#000));
  background-image: -webkit-linear-gradient(top, #4d4d4d 0%, #000 100%);
  background-image: linear-gradient(to bottom, #4d4d4d 0%, #000 100%);
  padding: 0;
  text-align: center;
  display: block;
  cursor: pointer;
  line-height: 45px;
  border: none;
  margin-bottom: 20px;
  width: 100%;
}

.login-form__forgot {
  color: #000;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  text-decoration: none;
}

.login-form__forgot:hover {
  text-decoration: underline;
}

.login-form__forgot-wrapper {
  text-align: center;
}

.header #remember_me,
.header #promo {
  visibility: hidden;
  display: none;
}

#remember_me + label,
#promo + label {
  position: relative;
  padding-left: 0;
}

.login-form__remember-me {
  color: #000;
  font-family: Roboto;
  font-size: 15px;
  font-weight: 300;
  display: block;
  text-align: center;
  margin-bottom: 10px;
  cursor: pointer;
}

.login-form__remember-me:before {
  content: '';
  display: inline-block;
  vertical-align: text-top;
  height: 14px;
  margin-right: 10px;
  width: 14px;
  border: 1px solid #3b82e7;
  border-radius: 4px;
  overflow: hidden;
}

#remember_me:checked + .login-form__remember-me::before {
  content: url("/images/orderform-redesign/remember-me.png");
  border: none;
  height: 16px;
  width: 16px;
}

div.validation_error {
  display: none;
  color: #FF0000;
  font-size: 13px;
  line-height: 15px;
  font-weight: 300;
  margin: 5px 0;
}

div.validation_error input {
  border-color: #FF0000;
  background-color: #FFEAEA;
}

div.validation_error input:hover {
  background: #fff;
  border-color: #FF0000;
}

.validation-error input {
  border-color: #FF0000;
  background-color: #FFEAEA;
}

.validation-error input:hover {
  background: #fff;
  border-color: #FF0000;
}

.validation-error input:focus {
  border-color: #2F80ED;
  background: #fff;
}

.validation_error input {
  border-color: #FF0000;
  background-color: #FFEAEA;
}

.validation_error input:hover {
  background: #fff;
  border-color: #FF0000;
}

.validation_error input:focus {
  border-color: #2F80ED;
  background: #fff;
}

.order-page .validation-error .select2-container .select2-selection--single {
  border-color: #FF0000;
  background-color: #FFEAEA;
}

.order-page .validation-error .select2-container .select2-selection--single:hover {
  background: #fff;
  border-color: #FF0000;
}

.order-page .validation-error .select2-container .select2-selection--single:focus {
  border-color: #2F80ED;
  background: #fff;
}

.validation-error .order-details__element-wrp textarea, .validation-error .order-details__element-wrp input {
  border-color: #FF0000;
  background-color: #FFEAEA;
}

.validation-error .order-details__element-wrp textarea:hover, .validation-error .order-details__element-wrp input:hover {
  background: #fff;
  border-color: #FF0000;
}

.validation-error .order-details__element-wrp textarea:focus, .validation-error .order-details__element-wrp input:focus {
  border-color: #2F80ED;
  background: #fff;
}

.qq-uploader {
  position: relative;
  width: 100%;
}

.qq-upload-button-focus {
  outline: 1px dotted black;
}

.qq-upload-list {
  margin: 5px 0px;
  padding: 0;
  list-style: none;
}

.qq-upload-list li {
  margin-bottom: 10px;
  width: 100%;
}

.qq-upload-list li .qq-upload-wrapper {
  line-height: 1;
  font-size: 13px;
  margin: 0 15px 5px;
  padding: 10px 15px;
  border: 1px solid #8fb8e1;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

.qq-upload__error {
  margin: 0 15px 5px;
  line-height: 1.2;
  font-size: 12px;
  color: #fd636f;
}

.qq-upload-file,
.qq-upload-spinner,
.qq-upload-size,
.qq-upload-cancel,
.qq-upload-failed-text,
.qq-upload-remove {
  margin-right: 7px;
}

.qq-upload-remove,
.qq-upload-failed-remove {
  cursor: pointer;
  display: inline-block;
  margin: 0;
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 10px;
}

.qq-upload-remove::after,
.qq-upload-failed-remove::after {
  content: '\2715';
  font-size: 16px;
  color: #1f1f1f;
  line-height: 0;
}

.qq-upload-cancel {
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0;
  text-decoration: none;
  margin: 0;
  display: inline-block;
  padding: 10px;
}

.qq-upload-cancel::after {
  content: '\2715';
  font-size: 16px;
  color: #1f1f1f;
}

.qq-upload-file {
  background: url(/res/img/customer_profile/upload_files/image.png) no-repeat 0 0;
  padding-left: 23px;
  line-height: 18px;
  display: inline-block;
  position: relative;
}

.qq-upload-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  bottom: 0;
  background: #badbfd;
  -webkit-transition: width 0.5s linear;
  transition: width 0.5s linear;
  z-index: -1;
}

.qq-upload-size {
  font-size: 11px;
}

.qq-upload-size::before {
  content: '(';
}

.qq-upload-size::after {
  content: ')';
}

.qq-upload-failed-text {
  display: none;
}

.qq-upload-fail .qq-upload-failed-text {
  display: inline;
}

.attachFileInput {
  display: none;
}

.upload-area {
  background: none;
  position: relative;
  margin: 0;
  padding: 0;
  height: auto;
  display: block;
}

.qq-wrapper {
  background: #f5faff;
  border: 1px dashed #6fb8f2;
  border-radius: 5px;
  margin-bottom: 10px;
}

.qq-upload-drop-area {
  background: none;
  height: auto;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 25px;
}

.qq-upload-drop-area-active {
  background: #e0effe;
}

.qq-upload-drop-area span {
  background: none;
  color: #6f6868;
  font-size: 12px;
  margin: 0 2px;
}

.qq-upload-drop-area span.qq-upload-button {
  color: #0e8df6;
  text-shadow: none;
}

.qq-upload-drop-area span input {
  font-size: 5px !important;
}

.qq-upload-list {
  clear: both;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  text-align: left;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.qq-upload-text::before {
  content: '';
  display: inline-block;
  background: url("/images/orderform-redesign/upload.svg") no-repeat 0 0;
  width: 25px;
  height: 21px;
  vertical-align: middle;
  margin-right: 7px;
}

.qq-upload-success .qq-upload-wrapper {
  background: #e0effe;
}

.qq-upload-success .qq-upload-file::before {
  content: url(/res/img/customer_profile/upload_files/check.png);
  display: block;
  position: absolute;
  top: 1px;
  left: 5px;
}

.qq-upload-subtext {
  color: #000;
  font-size: 12px;
  line-height: 1.6;
  max-width: 80%;
  margin: 0 auto 15px;
  text-align: center;
}

.qq-upload-list li.qq-upload-fail .qq-upload-wrapper {
  border: 1px solid #f3bec1;
  background: #fff6f6;
}

.qq-upload-list li.qq-upload-fail .qq-upload-file::before {
  display: block;
  position: absolute;
  top: 11px;
  left: 5px;
  content: '\2715';
  font-size: 12px;
  color: #b71212;
  line-height: 0;
}

.qq-notice {
  text-align: left;
  margin-bottom: 10px;
  color: #555;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.2;
}

.fadeWrapper {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.4);
}

#row_promo {
  display: none;
}

.fixed-block__discount {
  margin-top: 15px;
}

.fixed-block__discount--text {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  font-size: 13px;
  text-align: center;
  color: #2f80ed;
  cursor: pointer;
}

.fixed-block__discount--text:hover {
  text-decoration: underline;
}

.fixed-block__discount--text.hidden {
  display: none;
}

.fixed-block__discount--text.hidden + .fixed-block__discount-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.fixed-block__discount-row {
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  display: none;
}

.fixed-block__discount-label {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  font-size: 13px;
  color: #000;
  width: 140px;
  text-align: right;
}

.fixed-block__discount-field {
  margin-left: 10px;
  width: 190px;
}

.fixed-block__promo-input {
  width: 134px;
  height: 42px;
  background: #fff;
  border: 1px solid #b9b9b9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  padding: 0 10px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  font-size: 13px;
  color: #000;
  margin-bottom: 10px;
}

.fixed-block__promo-input:hover, .fixed-block__promo-input:focus {
  outline: none;
  border: 1px solid #2f80ed;
  -webkit-box-shadow: 0 2px 2px rgba(47, 128, 237, 0.15);
          box-shadow: 0 2px 2px rgba(47, 128, 237, 0.15);
}

.fixed-block__discount-error {
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  font-size: 13px;
  color: #555;
}

.fixed-block__discount-error.hidden {
  display: none;
}

.fixed-block__minimal-total-error {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  text-align: center;
  color: #219653;
  background: #E1F1E8;
  line-height: 26px;
  margin: 0 -15px 10px;
  display: none;
}

.promo-accepted #price-total-bl {
  border-bottom: none;
  margin-bottom: 0;
}

.promo-accepted .fixed-block__minimal-total-error {
  display: block;
}

.promo-accepted .fixed-block__promo-input {
  border: 1px solid #77be96;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CjxyZWN0IHdpZHRoPSIxNCIgaGVpZ2h0PSIxNCIgZmlsbD0idXJsKCNwYXR0ZXJuMCkiLz4KPGRlZnM+CjxwYXR0ZXJuIGlkPSJwYXR0ZXJuMCIgcGF0dGVybkNvbnRlbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHdpZHRoPSIxIiBoZWlnaHQ9IjEiPgo8dXNlIHhsaW5rOmhyZWY9IiNpbWFnZTAiIHRyYW5zZm9ybT0ic2NhbGUoMC4wNjI1KSIvPgo8L3BhdHRlcm4+CjxpbWFnZSBpZD0iaW1hZ2UwIiB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHhsaW5rOmhyZWY9ImRhdGE6aW1hZ2UvcG5nO2Jhc2U2NCxpVkJPUncwS0dnb0FBQUFOU1VoRVVnQUFBQkFBQUFBUUNBWUFBQUFmOC85aEFBQUJWa2xFUVZSNFhxVlRyMi9DVUJCK0kvd1RXQndDaFVJMDZST2tBcjFrU1UwRjZSK0FJMWtDYzBWTlRFME5QMU5UMFJSbzlmNkFabTRKRmJoTklvQzgzWGQ3ZlIxa1pObDZ5ZGYzOWU2N2QvZCtYU21sUkIxcmlKcldCQms4RC82YVp3UEpkVEpEQi85SlRnbFQwOEh4ZUJUcm0vV1A2dm5IM1BBNGpqblpjUnp3YWdtSHcrSFhzbEVVY2ZKd09JUWVxRFp4djkvUCtrOTkrMUp5R0lZMmFUaDV0OXRCejJERE1mWWVlMHJEeHY5M3dJZFk4QjZveWRzRU9OR3lxUHZRWlFHTmdKa0V2SXlOWDhlQTBSQlkwOVJMRUVWUkNOZDF4V0t4U0R2M0hhbTdUejNQNHhoc3RWcGhrT1RMU0ZjdG9SMjAxZWhsQkhBMS9BUGcybC82VEhmRVR6cVFkQ3lwbEZMa2VTNTgzNGViT1N4TlU2Njh1ZDFrSURxSENiK0YxclJsTGdnbXFheEtKc3ZPL2R1N3JXaVU5OEN5ckl4R21TU0pPV2ZOcFk2SmM1emN4T1Z5Q1lvcWtqaVhCWWNQc1V0Vyt6bC9Bc0dlRXo5MWNtNzdBQUFBQUVsRlRrU3VRbUNDIi8+CjwvZGVmcz4KPC9zdmc+Cg==) no-repeat right 10px center;
}

.with-promo #price-total-bl {
  border-bottom: none;
  margin-bottom: 0;
}

.with-promo .fixed-block__minimal-total-error {
  display: none;
}

.with-pages-discount #price-total-bl {
  border-bottom: none;
  margin-bottom: 0;
}

.with-pages-discount .fixed-block__minimal-total-error {
  display: none;
}

.fixed-block-total__vas-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 26px;
  font-size: 13px;
  color: #000;
  font-weight: 300;
}

.fixed-block-total__vas-row {
  display: none;
}

.fixed-block-total__vas-row.visible {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.order-form__right > .fixed-block-total {
  display: none;
}

@media (max-width: 991px) {
  .site-slogan, .live-chat__wrp, .order-form__right {
    display: none;
  }
  .order-page__container {
    width: 470px;
  }
  .order-form__left {
    width: 100%;
  }
  .flex-wrapper {
    width: 100%;
  }
  .footer__item {
    width: 30%;
  }
  .footer__item:first-child {
    width: 45%;
  }
  .footer__item:last-child {
    width: 20%;
  }
  .login__btn {
    width: auto;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
    text-decoration: underline;
  }
  .login__btn:before {
    display: none;
  }
  .order-page__part.mobile-price {
    display: block;
    margin: 25px 0;
  }
  .order-page__part.totalp-block {
    display: none;
  }
  .vas-block .vas-label {
    width: 65%;
  }
}

@media (max-width: 767px) {
  #row_wrlevel .order-details__element-wrp {
    width: 100% !important;
    max-width: 100%;
  }
  .linear-select a {
    white-space: normal;
  }
  .header__logo-link img {
    width: 165px;
  }
  .header__btns-wrp {
    width: 120px;
  }
  .login-form__wrapper.active {
    background-color: rgba(0, 0, 0, 0.4);
  }
  .login-form__close:before {
    content: '\00d7';
    font-size: 30px;
    line-height: 1;
    position: absolute;
    top: 5px;
    left: 20px;
    z-index: 55;
    color: #000;
  }
  .login-form__wrapper.active .login-form {
    width: auto;
    left: 10px;
    right: 10px;
    padding: 40px 40px 20px;
  }
  .logined .login__btn {
    height: 30px;
  }
  .logined .login__btn a {
    font-size: 0;
  }
  .logined .login__btn a::before {
    content: url(/images/home-page/icons/header-icon-login.svg);
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
  }
  .logined .header__logo-link img {
    max-width: 80%;
  }
  .logined .header__btns-wrp {
    width: 100%;
  }
  .logined .header__item:last-child {
    width: 35%;
  }
  .phone__wrp {
    display: none;
  }
  .order-page__container {
    width: 355px;
  }
  .footer__wrp {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .footer__item {
    margin-bottom: 40px;
    width: 45%;
  }
  .footer__item:first-child {
    width: 100%;
  }
  .footer__item:last-child {
    width: 100%;
    margin-bottom: 0;
  }
  .footer-links__title {
    margin-bottom: 20px !important;
  }
  .main-content .container {
    padding: 0;
  }
  .btn-wrp:before {
    left: 24%;
  }
  .choose-payment__wrp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .choose-payment__item {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 45px;
  }
  .choose-payment__item:first-child {
    margin-bottom: 10px;
  }
  .choose-payment__img {
    top: auto;
  }
  #row_wrlevel .linear-select {
    height: auto;
    line-height: normal;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  #row_wrlevel .linear-select a {
    padding: 4.5px 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header__btn:last-child {
    text-align: right;
    width: 40%;
    min-width: auto;
  }
  .mobile-el {
    display: block;
  }
  .totalWithoutDiscount {
    font-size: 16px;
  }
}

/*# sourceMappingURL=order-page.css.map */
