/*
 *  Remodal - v1.1.0
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;

  -ms-touch-action: none;
  touch-action: none;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;

  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;
  overflow: auto;

  text-align: center;

  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;

  height: 100%;
  margin-left: -0.05em;

  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;

  outline: none;

  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}



/*
 *  Remodal - v1.1.0
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;

  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);

  background: transparent;
}

.remodal.base {
  background: white;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

.remodal-close {
  position: absolute;
  top: 0;
  left: 0;

  display: block;
  overflow: visible;

  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;

  cursor: pointer;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;

  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;

  position: absolute;
  top: 0;
  left: 0;

  display: block;

  width: 35px;

  content: "\D7";
  text-align: center;
}

/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
  font: inherit;

  display: inline-block;
  overflow: visible;

  min-width: 110px;
  margin: 0;
  padding: 12px 0;

  cursor: pointer;
  -webkit-transition: background 0.2s;
  -o-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;

  border: 0;
}

/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 910px;
  }
}

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 910px;
}@charset "UTF-8";
/*!
 * Bootstrap 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)
 */
:root {
  --blue: #172983;
  --indigo: #6610f2;
  --purple: #7c2d5f;
  --pink: #e83e8c;
  --red: #e43227;
  --orange: #fd7e14;
  --yellow: #fbdb27;
  --green: #00a326;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #172983;
  --secondary: #6c757d;
  --success: #00a326;
  --info: #17a2b8;
  --warning: #fbdb27;
  --danger: #e43227;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 798px;
  --breakpoint-md: 1000px;
  --breakpoint-lg: 1420px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #172983;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: #0c1542;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

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

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

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

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

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

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

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

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

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

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

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

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

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

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

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

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "\2014\A0";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

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

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

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

.container {
  width: 100%;
  padding-right: 8px;
  padding-left: 8px;
  margin-right: auto;
  margin-left: auto;
  max-width: 90%;
}
@media (min-width: 798px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1000px) {
  .container {
    max-width: 970px;
  }
}
@media (min-width: 1420px) {
  .container {
    max-width: 1400px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 798px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-sm-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1000px) {
  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-md-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1420px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-lg-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}
.table .table {
  background-color: #fff;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #bec3dc;
}

.table-hover .table-primary:hover {
  background-color: #adb4d3;
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #adb4d3;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #b8e5c2;
}

.table-hover .table-success:hover {
  background-color: #a5deb2;
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #a5deb2;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #fef5c3;
}

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

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f7c6c3;
}

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

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #212529;
  border-color: #32383e;
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #212529;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #32383e;
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 797.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 999.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1419.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #3d57dd;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 41, 131, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(23, 41, 131, 0.25);
}
.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:not([size]):not([multiple]) {
  height: calc(2.25rem + 2px);
}
select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control,
.input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text,
.input-group-sm > .input-group-append > .form-control-plaintext.input-group-text,
.input-group-sm > .input-group-prepend > .form-control-plaintext.btn,
.input-group-sm > .input-group-append > .form-control-plaintext.btn, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control,
.input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text,
.input-group-lg > .input-group-append > .form-control-plaintext.input-group-text,
.input-group-lg > .input-group-prepend > .form-control-plaintext.btn,
.input-group-lg > .input-group-append > .form-control-plaintext.btn {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm, .input-group-sm > .form-control,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) {
  height: calc(1.8125rem + 2px);
}

.form-control-lg, .input-group-lg > .form-control,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]) {
  height: calc(2.875rem + 2px);
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #00a326;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(0, 163, 38, 0.8);
  border-radius: 0.2rem;
}

.was-validated .form-control:valid, .form-control.is-valid,
.was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #00a326;
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus,
.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #00a326;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 163, 38, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 163, 38, 0.25);
}
.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip,
.was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip,
.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #00a326;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #00a326;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #24ff57;
}
.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #00d632;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 163, 38, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 163, 38, 0.25);
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #00a326;
}
.was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before {
  border-color: inherit;
}
.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 163, 38, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 163, 38, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #e43227;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(228, 50, 39, 0.8);
  border-radius: 0.2rem;
}

.was-validated .form-control:invalid, .form-control.is-invalid,
.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #e43227;
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus,
.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #e43227;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(228, 50, 39, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(228, 50, 39, 0.25);
}
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip,
.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #e43227;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #e43227;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  background-color: #f29e98;
}
.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: #ea5d54;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(228, 50, 39, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(228, 50, 39, 0.25);
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #e43227;
}
.was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before {
  border-color: inherit;
}
.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(228, 50, 39, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(228, 50, 39, 0.25);
}

.form-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 798px) {
  .form-inline label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group {
    width: auto;
  }
  .form-inline .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.btn:hover, .btn:focus {
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 41, 131, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(23, 41, 131, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
  background-image: none;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #172983;
  border-color: #172983;
}
.btn-primary:hover {
  color: #fff;
  background-color: #111f62;
  border-color: #0f1b58;
}
.btn-primary:focus, .btn-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 41, 131, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 41, 131, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #172983;
  border-color: #172983;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0f1b58;
  border-color: #0d184d;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 41, 131, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 41, 131, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}
.btn-secondary:focus, .btn-secondary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #00a326;
  border-color: #00a326;
}
.btn-success:hover {
  color: #fff;
  background-color: #007d1d;
  border-color: #00701a;
}
.btn-success:focus, .btn-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 163, 38, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 163, 38, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #00a326;
  border-color: #00a326;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #00701a;
  border-color: #006317;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 163, 38, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 163, 38, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}
.btn-info:focus, .btn-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #fbdb27;
  border-color: #fbdb27;
}
.btn-warning:hover {
  color: #212529;
  background-color: #f7d305;
  border-color: #ebc804;
}
.btn-warning:focus, .btn-warning.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(251, 219, 39, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(251, 219, 39, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #fbdb27;
  border-color: #fbdb27;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #ebc804;
  border-color: #debd04;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(251, 219, 39, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(251, 219, 39, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #e43227;
  border-color: #e43227;
}
.btn-danger:hover {
  color: #fff;
  background-color: #cb2419;
  border-color: #c02218;
}
.btn-danger:focus, .btn-danger.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(228, 50, 39, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(228, 50, 39, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #e43227;
  border-color: #e43227;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c02218;
  border-color: #b52017;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(228, 50, 39, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(228, 50, 39, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}
.btn-dark:focus, .btn-dark.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-primary {
  color: #172983;
  background-color: transparent;
  background-image: none;
  border-color: #172983;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #172983;
  border-color: #172983;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 41, 131, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 41, 131, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #172983;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #172983;
  border-color: #172983;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 41, 131, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 41, 131, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #00a326;
  background-color: transparent;
  background-image: none;
  border-color: #00a326;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #00a326;
  border-color: #00a326;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 163, 38, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 163, 38, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #00a326;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #00a326;
  border-color: #00a326;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 163, 38, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 163, 38, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #fbdb27;
  background-color: transparent;
  background-image: none;
  border-color: #fbdb27;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #fbdb27;
  border-color: #fbdb27;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(251, 219, 39, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(251, 219, 39, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #fbdb27;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #fbdb27;
  border-color: #fbdb27;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(251, 219, 39, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(251, 219, 39, 0.5);
}

.btn-outline-danger {
  color: #e43227;
  background-color: transparent;
  background-image: none;
  border-color: #e43227;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #e43227;
  border-color: #e43227;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(228, 50, 39, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(228, 50, 39, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #e43227;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #e43227;
  border-color: #e43227;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(228, 50, 39, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(228, 50, 39, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #172983;
  background-color: transparent;
}
.btn-link:hover {
  color: #0c1542;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

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

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.show {
  opacity: 1;
}

.collapse {
  display: none;
}
.collapse.show {
  display: block;
}

tr.collapse.show {
  display: table-row;
}

tbody.collapse.show {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

.dropup,
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.dropup .dropdown-menu {
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #172983;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group,
.btn-group-vertical .btn + .btn,
.btn-group-vertical .btn + .btn-group,
.btn-group-vertical .btn-group + .btn,
.btn-group-vertical .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after {
  margin-left: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-group-vertical .btn,
.btn-group-vertical .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file:focus {
  z-index: 3;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::before {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label, .input-group > .custom-file:not(:first-child) .custom-file-label::before {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  background-color: #172983;
}
.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(23, 41, 131, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(23, 41, 131, 0.25);
}
.custom-control-input:active ~ .custom-control-label::before {
  color: #fff;
  background-color: #687de4;
}
.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  margin-bottom: 0;
}
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: #dee2e6;
}
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #172983;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  background-color: #172983;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(23, 41, 131, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(23, 41, 131, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #172983;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(23, 41, 131, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-select:focus {
  border-color: #3d57dd;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(61, 87, 221, 0.5);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(61, 87, 221, 0.5);
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  opacity: 0;
}

.custom-select-sm {
  height: calc(1.8125rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 75%;
}

.custom-select-lg {
  height: calc(2.875rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 125%;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin: 0;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-control {
  border-color: #3d57dd;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 41, 131, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(23, 41, 131, 0.25);
}
.custom-file-input:focus ~ .custom-file-control::before {
  border-color: #3d57dd;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(calc(2.25rem + 2px) - 1px * 2);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: 1px solid #ced4da;
  border-radius: 0 0.25rem 0.25rem 0;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #172983;
}

.nav-fill .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

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

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar > .container,
.navbar > .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}
.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 797.98px) {
  .navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 798px) {
  .navbar-expand-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
  }
}
@media (max-width: 999.98px) {
  .navbar-expand-md > .container,
.navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1000px) {
  .navbar-expand-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
.navbar-expand-md > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
  }
}
@media (max-width: 1419.98px) {
  .navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1420px) {
  .navbar-expand-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
  }
}
.navbar-expand {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .dropdown-menu-right {
  right: 0;
  left: auto;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.navbar-expand .navbar-collapse {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-text a {
  color: #fff;
}
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card-deck .card {
  margin-bottom: 8px;
}
@media (min-width: 798px) {
  .card-deck {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-right: -8px;
    margin-left: -8px;
  }
  .card-deck .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 8px;
    margin-bottom: 0;
    margin-left: 8px;
  }
}

.card-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card-group > .card {
  margin-bottom: 8px;
}
@media (min-width: 798px) {
  .card-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .card-group > .card {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:first-child .card-img-top,
.card-group > .card:first-child .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:first-child .card-img-bottom,
.card-group > .card:first-child .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:last-child .card-img-top,
.card-group > .card:last-child .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:last-child .card-img-bottom,
.card-group > .card:last-child .card-footer {
    border-bottom-left-radius: 0;
  }
  .card-group > .card:only-child {
    border-radius: 0.25rem;
  }
  .card-group > .card:only-child .card-img-top,
.card-group > .card:only-child .card-header {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  .card-group > .card:only-child .card-img-bottom,
.card-group > .card:only-child .card-footer {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: 0;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
.card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
.card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
.card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
    border-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 798px) {
  .card-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: #6c757d;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #172983;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  color: #0c1542;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 2;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 41, 131, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(23, 41, 131, 0.25);
}
.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #172983;
  border-color: #172983;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #172983;
}
.badge-primary[href]:hover, .badge-primary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #0f1b58;
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}
.badge-secondary[href]:hover, .badge-secondary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #545b62;
}

.badge-success {
  color: #fff;
  background-color: #00a326;
}
.badge-success[href]:hover, .badge-success[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #00701a;
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}
.badge-info[href]:hover, .badge-info[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #117a8b;
}

.badge-warning {
  color: #212529;
  background-color: #fbdb27;
}
.badge-warning[href]:hover, .badge-warning[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #ebc804;
}

.badge-danger {
  color: #fff;
  background-color: #e43227;
}
.badge-danger[href]:hover, .badge-danger[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #c02218;
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}
.badge-light[href]:hover, .badge-light[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #dae0e5;
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}
.badge-dark[href]:hover, .badge-dark[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #1d2124;
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}
@media (min-width: 798px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #0c1544;
  background-color: #d1d4e6;
  border-color: #bec3dc;
}
.alert-primary hr {
  border-top-color: #adb4d3;
}
.alert-primary .alert-link {
  color: #040819;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}
.alert-secondary hr {
  border-top-color: #c8cbcf;
}
.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #005514;
  background-color: #ccedd4;
  border-color: #b8e5c2;
}
.alert-success hr {
  border-top-color: #a5deb2;
}
.alert-success .alert-link {
  color: #002208;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
.alert-info hr {
  border-top-color: #abdde5;
}
.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #837214;
  background-color: #fef8d4;
  border-color: #fef5c3;
}
.alert-warning hr {
  border-top-color: #fef1aa;
}
.alert-warning .alert-link {
  color: #574b0d;
}

.alert-danger {
  color: #771a14;
  background-color: #fad6d4;
  border-color: #f7c6c3;
}
.alert-danger hr {
  border-top-color: #f4b1ad;
}
.alert-danger .alert-link {
  color: #4b100d;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light hr {
  border-top-color: #ececf6;
}
.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}
.alert-dark hr {
  border-top-color: #b9bbbe;
}
.alert-dark .alert-link {
  color: #040505;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  text-align: center;
  background-color: #172983;
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

.progress-bar-striped {
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
          animation: progress-bar-stripes 1s linear infinite;
}

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.list-group-item:hover, .list-group-item:focus {
  z-index: 1;
  text-decoration: none;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #172983;
  border-color: #172983;
}

.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}
.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0;
}

.list-group-item-primary {
  color: #0c1544;
  background-color: #bec3dc;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #0c1544;
  background-color: #adb4d3;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #0c1544;
  border-color: #0c1544;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #005514;
  background-color: #b8e5c2;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #005514;
  background-color: #a5deb2;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #005514;
  border-color: #005514;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #837214;
  background-color: #fef5c3;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #837214;
  background-color: #fef1aa;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #837214;
  border-color: #837214;
}

.list-group-item-danger {
  color: #771a14;
  background-color: #f7c6c3;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #771a14;
  background-color: #f4b1ad;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #771a14;
  border-color: #771a14;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
      -ms-transform: translate(0, -25%);
          transform: translate(0, -25%);
}
.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}

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

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
}
.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}
.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}

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

@media (min-width: 798px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 1420px) {
  .modal-lg {
    max-width: 800px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}
.bs-popover-top .arrow, .bs-popover-auto[x-placement^=top] .arrow {
  bottom: calc((0.5rem + 1px) * -1);
}
.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=top] .arrow::before,
.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^=top] .arrow::after {
  border-width: 0.5rem 0.5rem 0;
}
.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=top] .arrow::before {
  bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^=top] .arrow::after {
  bottom: 1px;
  border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}
.bs-popover-right .arrow, .bs-popover-auto[x-placement^=right] .arrow {
  left: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=right] .arrow::before,
.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^=right] .arrow::after {
  border-width: 0.5rem 0.5rem 0.5rem 0;
}
.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=right] .arrow::before {
  left: 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^=right] .arrow::after {
  left: 1px;
  border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}
.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^=bottom] .arrow {
  top: calc((0.5rem + 1px) * -1);
}
.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=bottom] .arrow::before,
.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^=bottom] .arrow::after {
  border-width: 0 0.5rem 0.5rem 0.5rem;
}
.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=bottom] .arrow::before {
  top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^=bottom] .arrow::after {
  top: 1px;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}
.bs-popover-left .arrow, .bs-popover-auto[x-placement^=left] .arrow {
  right: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=left] .arrow::before,
.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^=left] .arrow::after {
  border-width: 0.5rem 0 0.5rem 0.5rem;
}
.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=left] .arrow::before {
  right: 0;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^=left] .arrow::after {
  right: 1px;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  -o-transition: transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
@supports (transform-style: preserve-3d) {
  .carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.carousel-item-next,
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}
@supports (transform-style: preserve-3d) {
  .carousel-item-next,
.active.carousel-item-right {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

.carousel-item-prev,
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
@supports (transform-style: preserve-3d) {
  .carousel-item-prev,
.active.carousel-item-left {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  background-color: rgba(255, 255, 255, 0.5);
}
.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}
.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}
.carousel-indicators .active {
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

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

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #172983 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0f1b58 !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #00a326 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #00701a !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #fbdb27 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #ebc804 !important;
}

.bg-danger {
  background-color: #e43227 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #c02218 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #172983 !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #00a326 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #fbdb27 !important;
}

.border-danger {
  border-color: #e43227 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.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: -ms-flexbox !important;
  display: flex !important;
}

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

@media (min-width: 798px) {
  .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: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1000px) {
  .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: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1420px) {
  .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: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !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: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

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

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

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: 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;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 798px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

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

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: 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;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (min-width: 1000px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

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

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: 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;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}
@media (min-width: 1420px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

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

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: 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;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

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

.float-none {
  float: none !important;
}

@media (min-width: 798px) {
  .float-sm-left {
    float: left !important;
  }

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

  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 1000px) {
  .float-md-left {
    float: left !important;
  }

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

  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 1420px) {
  .float-lg-left {
    float: left !important;
  }

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

  .float-lg-none {
    float: none !important;
  }
}
.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  -webkit-clip-path: none;
          clip-path: none;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 798px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1000px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1420px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
.text-justify {
  text-align: justify !important;
}

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

.text-truncate {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

@media (min-width: 798px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 1000px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 1420px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

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

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #172983 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #0f1b58 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #545b62 !important;
}

.text-success {
  color: #00a326 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #00701a !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #117a8b !important;
}

.text-warning {
  color: #fbdb27 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ebc804 !important;
}

.text-danger {
  color: #e43227 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #c02218 !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #dae0e5 !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #1d2124 !important;
}

.text-muted {
  color: #6c757d !important;
}

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

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
*::before,
*::after {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
img {
    page-break-inside: avoid;
  }

  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }
  body {
    min-width: 1420px !important;
  }

  .container {
    min-width: 1420px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }
  .table td,
.table th {
    background-color: #fff !important;
  }

  .table-bordered th,
.table-bordered td {
    border: 1px solid #ddd !important;
  }
}
#slides {
  position: relative;
}

#slides .slides-container {
  display: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#slides .scrollable {
  *zoom: 1;
  position: relative;
  top: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
}

#slides .scrollable:after {
  content: "";
  display: table;
  clear: both;
}

#slides ul li {
  background: none;
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: rgb(30, 30, 30);
  opacity: 0;
  -webkit-transition-duration: inherit;
       -o-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
       -o-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
          transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
       -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  -o-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  -webkit-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  -o-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
          animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -ms-transform-origin: top left;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

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

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform: scaleX(0);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -ms-transform-origin: 0;
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
          animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Transition effects */
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
       -o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
          transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
          transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -ms-transform: rotate(-360deg);
  -webkit-transform: rotate(-360deg);
          transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -ms-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
          transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
          transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
          transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}
/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
/*! nouislider - 14.6.4 - 3/18/2021 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  -webkit-transform-style: flat;
          transform-style: flat;
}

.noUi-connect {
  height: 100%;
  width: 100%;
}

.noUi-origin {
  height: 10%;
  width: 10%;
}

/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  top: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  -webkit-box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
          box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #3FB8AF;
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  -webkit-box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
          box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.noUi-active {
  -webkit-box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
          box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #AAA;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
      transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  -ms-transform: translate(50%, 50%);
      transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
      transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);
      transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  -ms-transform: translate(0, -18px);
      transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.glide {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.glide * {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -ms-touch-action: pan-Y;
      touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  will-change: transform;
}

.glide__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.glide__slide {
  width: 100%;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.glide__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.glide--rtl {
  direction: rtl;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-track {
  background: #fff;
  border: thin solid #ccc;
}

::-webkit-scrollbar-thumb {
  background: #aaaaaa;
  border: none;
  -webkit-transition: 300ms;
  transition: 300ms;
}

::-webkit-scrollbar-thumb:hover {
  background: #CDCDCD;
}

::-webkit-scrollbar-track-piece {
  background: #fff;
  border: none;
  border-left: 1px solid #ccc;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.modal {
  padding-left: 14px;
  padding-right: 14px;
  padding-top: 60px;
}
.modal .modal-dialog {
  max-width: 850px;
}
.modal .modal-dialog .modal-content {
  border-radius: 0;
  border: none;
}
.modal .modal-dialog .modal-content .modal-body {
  padding: 0;
}
.modal .btn-exit {
  cursor: pointer;
  z-index: 1000;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  position: absolute;
  right: -15px;
  top: -15px;
  border: 1px solid #F7FAFB;
  background: white;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal .btn-exit:before, .modal .btn-exit:after {
  position: absolute;
  background: #000000;
  content: "";
  display: block;
}
.modal .btn-exit:after {
  width: 2px;
  height: 14px;
  left: 16px;
  top: 10px;
}
.modal .btn-exit:before {
  width: 14px;
  height: 2px;
  top: 16px;
  left: 10px;
}
.modal.size-guide-modal .modal-dialog {
  max-width: 888px;
}
.modal.size-guide-modal .modal-dialog .modal-content .modal-body {
  padding: 70px 50px;
}
.modal.size-guide-modal .modal-dialog .modal-content .modal-body .h1 {
  margin-top: 0;
}
.modal.size-guide-modal .modal-dialog .modal-content .modal-body .intro-margin:not(:last-child) {
  margin-bottom: 40px;
}
.modal.size-guide-modal .modal-dialog .modal-content .modal-body .size-guide__t-wrapper {
  margin-bottom: 0;
}

.gallery--var-2 {
  margin: 50px 0;
}
.gallery--var-2 .img--large {
  height: 467px;
  width: 100%;
}
.gallery--var-2 .img--small {
  height: 145px;
  margin-bottom: 16px;
}
.gallery--var-2 .img--small.g-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #178FCF;
  border: 2px solid #178FCF;
}
.gallery--var-2 .img--small.g-more:hover, .gallery--var-2 .img--small.g-more:focus {
  background: #EAF2F6;
}
.gallery--var-2 .img--small.g-more::before {
  content: "";
  display: block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 20px;
  margin-right: 4px;
  height: 20px;
  background: url("/userfiles/images/icons.svg") no-repeat -395px -41px;
}
.gallery--var-2 .img--small.g-more span {
  margin-left: 3px;
  font-weight: 400;
  color: #AACEE2;
}
.gallery--var-2 .img--small.g-more-virtual-tour::before {
  background-position: -395px -61px;
}
.gallery--var-2 .img--large img, .gallery--var-2 .img--small img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery__item {
  height: 180px;
  width: 100%;
  margin-bottom: 16px;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  background: #EAF2F6;
  background-size: 1920px;
  position: relative;
  line-height: 1.5;
}
body .body-gradient {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  z-index: -1;
}

p {
  font-size: 15px;
  line-height: 1.6;
}

.breadcrumb-wrapper {
  margin-top: -35px;
}
.breadcrumb-wrapper .breadcrumb {
  padding: 0;
  background: none;
  font-size: 13px;
  font-weight: 400;
}
.breadcrumb-wrapper .breadcrumb li {
  padding-bottom: 4px;
}
.breadcrumb-wrapper .breadcrumb li a {
  text-decoration: underline;
  color: #000000;
  margin-right: 35px;
  display: block;
  position: relative;
}
.breadcrumb-wrapper .breadcrumb li a::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid #178FCF;
  border-bottom: 1px solid #178FCF;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  right: -19px;
  top: 7px;
}
.breadcrumb-wrapper .breadcrumb li a:hover, .breadcrumb-wrapper .breadcrumb li a:focus {
  color: #959595;
}
.breadcrumb-wrapper .breadcrumb li.active {
  color: #959595;
}

a {
  color: #000000;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}
a:hover, a:focus {
  text-decoration: none;
  color: #178FCF;
}

.simple-link {
  text-decoration: underline;
}
.simple-link:hover, .simple-link:focus {
  text-decoration: underline;
}

@media all and (max-width: 1420px) {
  .gallery--var-2 .img--large {
    margin-bottom: 16px;
  }
  .gallery--var-2 .img--small {
    max-width: 240px;
  }
}
@media all and (max-width: 1000px) {
  .gallery__item {
    height: 240px;
  }

  body {
    font-size: 13px;
  }

  p {
    font-size: 13px;
  }
}
@media all and (min-width: 1000px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}
@media all and (max-width: 798px) {
  .gallery--var-2 .img--large {
    max-width: 240px;
    height: 145px;
  }
  .gallery__item {
    max-width: 300px;
    height: 200px;
  }
}
.mx-icon-left:before,
.mx-icon-right:before,
.mx-icon-double-left:before,
.mx-icon-double-right:before,
.mx-icon-double-left:after,
.mx-icon-double-right:after {
  content: "";
  position: relative;
  top: -1px;
  display: inline-block;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  border-style: solid;
  border-color: currentColor;
  border-width: 2px 0 0 2px;
  border-radius: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(-45deg) scale(0.7);
      -ms-transform: rotate(-45deg) scale(0.7);
          transform: rotate(-45deg) scale(0.7);
}

.mx-icon-double-left:after {
  left: -4px;
}

.mx-icon-double-right:before {
  left: 4px;
}

.mx-icon-right:before,
.mx-icon-double-right:before,
.mx-icon-double-right:after {
  -webkit-transform: rotate(135deg) scale(0.7);
      -ms-transform: rotate(135deg) scale(0.7);
          transform: rotate(135deg) scale(0.7);
}

.mx-btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 15px;
  margin: 0;
  cursor: pointer;
  background-color: transparent;
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  color: #178FCF;
  white-space: nowrap;
}
.mx-btn:hover {
  border-color: #004D75;
  color: #004D75;
}
.mx-btn:disabled, .mx-btn.disabled {
  color: #696969;
  cursor: not-allowed;
}

.mx-btn-text {
  border: 0;
  padding: 0 4px;
  text-align: left;
  line-height: inherit;
}

.mx-scrollbar {
  height: 100%;
}
.mx-scrollbar:hover .mx-scrollbar-track {
  opacity: 1;
}

.mx-scrollbar-wrap {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.mx-scrollbar-track {
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  width: 6px;
  z-index: 1;
  border-radius: 4px;
  opacity: 0;
  -webkit-transition: opacity 0.24s ease-out;
  -o-transition: opacity 0.24s ease-out;
  transition: opacity 0.24s ease-out;
}
.mx-scrollbar-track .mx-scrollbar-thumb {
  position: absolute;
  width: 100%;
  height: 0;
  cursor: pointer;
  border-radius: inherit;
  background-color: rgba(144, 147, 153, 0.3);
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.mx-zoom-in-down-enter-active,
.mx-zoom-in-down-leave-active {
  opacity: 1;
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -o-transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform-origin: center top;
      -ms-transform-origin: center top;
          transform-origin: center top;
}

.mx-zoom-in-down-enter,
.mx-zoom-in-down-enter-from,
.mx-zoom-in-down-leave-to {
  opacity: 0;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
}

.mx-datepicker {
  position: relative;
  display: inline-block;
  width: 210px;
}
.mx-datepicker svg {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}

.mx-datepicker-range {
  width: 320px;
}

.mx-datepicker-inline {
  width: auto;
}

.mx-input-wrapper {
  position: relative;
}

.mx-input {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 34px;
  padding: 6px 30px;
  padding-left: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #212529;
  background-color: #fff;
  border: 1px solid #AACEE2;
  border-radius: 0.25rem;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.mx-input:hover, .mx-input:focus {
  border-color: #004D75;
}
.mx-input:disabled, .mx-input.disabled {
  color: #696969;
  background-color: #cbcbcb;
  border-color: #AACEE2;
  cursor: not-allowed;
}
.mx-input:focus {
  outline: none;
}
.mx-input::-ms-clear {
  display: none;
}

.mx-icon-calendar,
.mx-icon-clear {
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 16px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.5);
  vertical-align: middle;
}

.mx-icon-clear {
  cursor: pointer;
}
.mx-icon-clear:hover {
  color: rgba(0, 0, 0, 0.8);
}

.mx-datepicker-main {
  font: 14px/1.5 "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei", sans-serif;
  color: #178FCF;
  background-color: #fff;
  border: 1px solid #AACEE2;
}

.mx-datepicker-popup {
  position: absolute;
  margin-top: 1px;
  margin-bottom: 1px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  z-index: 2001;
}

.mx-datepicker-sidebar {
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100px;
  padding: 6px;
  overflow: auto;
}

.mx-datepicker-sidebar + .mx-datepicker-content {
  margin-left: 100px;
  border-left: 1px solid #AACEE2;
}

.mx-datepicker-body {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.mx-btn-shortcut {
  display: block;
  padding: 0 6px;
  line-height: 24px;
}

.mx-range-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 750px) {
  .mx-range-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.mx-datepicker-header {
  padding: 6px 8px;
  border-bottom: 1px solid #AACEE2;
}

.mx-datepicker-footer {
  padding: 6px 8px;
  text-align: right;
  border-top: 1px solid #AACEE2;
}

.mx-calendar {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 248px;
  padding: 6px 12px;
}
.mx-calendar + .mx-calendar {
  border-left: 1px solid #AACEE2;
}

.mx-calendar-header, .mx-time-header {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 34px;
  line-height: 34px;
  text-align: center;
  overflow: hidden;
}

.mx-btn-icon-left,
.mx-btn-icon-double-left {
  float: left;
}

.mx-btn-icon-right,
.mx-btn-icon-double-right {
  float: right;
}

.mx-calendar-header-label {
  font-size: 14px;
}

.mx-calendar-decade-separator {
  margin: 0 2px;
}
.mx-calendar-decade-separator:after {
  content: "~";
}

.mx-calendar-content {
  position: relative;
  height: 224px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.mx-calendar-content .cell {
  cursor: pointer;
}
.mx-calendar-content .cell:hover {
  color: #178FCF;
  background-color: #fbfdfe;
}
.mx-calendar-content .cell.active {
  color: #004D75;
  background-color: #AACEE2;
}
.mx-calendar-content .cell.in-range, .mx-calendar-content .cell.hover-in-range {
  color: #178FCF;
  background-color: #f2f8fb;
}
.mx-calendar-content .cell.disabled {
  cursor: not-allowed;
  color: #696969;
  background-color: #cbcbcb;
}

.mx-calendar-week-mode .mx-date-row {
  cursor: pointer;
}
.mx-calendar-week-mode .mx-date-row:hover {
  background-color: #fbfdfe;
}
.mx-calendar-week-mode .mx-date-row.mx-active-week {
  background-color: #f2f8fb;
}
.mx-calendar-week-mode .mx-date-row .cell:hover {
  color: inherit;
  background-color: transparent;
}
.mx-calendar-week-mode .mx-date-row .cell.active {
  color: inherit;
  background-color: transparent;
}

.mx-week-number {
  opacity: 0.5;
}

.mx-table {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
.mx-table th {
  padding: 0;
  font-weight: 500;
  vertical-align: middle;
}
.mx-table td {
  padding: 0;
  vertical-align: middle;
}

.mx-table-date td,
.mx-table-date th {
  height: 32px;
  font-size: 12px;
}
.mx-table-date .today {
  color: black;
}
.mx-table-date .cell.not-current-month {
  color: #ccc;
  background: none;
}

.mx-time {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 224px;
  background: #fff;
}
.mx-time + .mx-time {
  border-left: 1px solid #AACEE2;
}

.mx-calendar-time {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mx-time-header {
  border-bottom: 1px solid #AACEE2;
}

.mx-time-content {
  height: 224px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

.mx-time-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mx-time-column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  border-left: 1px solid #AACEE2;
  text-align: center;
}
.mx-time-column:first-child {
  border-left: 0;
}
.mx-time-column .mx-time-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mx-time-column .mx-time-list::after {
  content: "";
  display: block;
  height: 192px;
}
.mx-time-column .mx-time-item {
  cursor: pointer;
  font-size: 12px;
  height: 32px;
  line-height: 32px;
}
.mx-time-column .mx-time-item:hover {
  color: #178FCF;
  background-color: #fbfdfe;
}
.mx-time-column .mx-time-item.active {
  color: #004D75;
  background-color: #AACEE2;
  font-weight: 700;
}
.mx-time-column .mx-time-item.disabled {
  cursor: not-allowed;
  color: #696969;
  background-color: #cbcbcb;
}

.mx-time-option {
  cursor: pointer;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 20px;
}
.mx-time-option:hover {
  color: #178FCF;
  background-color: #fbfdfe;
}
.mx-time-option.active {
  color: #004D75;
  background-color: #AACEE2;
  font-weight: 700;
}
.mx-time-option.disabled {
  cursor: not-allowed;
  color: #696969;
  background-color: #cbcbcb;
}

.btn-brand {
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  text-decoration: none;
  color: white;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.btn-brand:hover, .btn-brand:focus {
  text-decoration: none;
}

.btn-facebook {
  background: #1877F2;
  font-size: 14px;
  padding: 14px 20px;
  font-weight: 500;
}
.btn-facebook::before {
  content: "";
  display: inline-block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 25px;
  height: 22px;
  flex-shrink: 0;
  margin-right: 10px;
  background: url("/userfiles/images/icons.svg") no-repeat -3px -64px;
}
.btn-facebook:hover, .btn-facebook:focus {
  background: #0b5fcc;
}

.btn-dark-blue {
  background: #004D75;
  padding: 15px 20px;
  font-weight: 500;
  color: white;
  border: 2px solid;
  border-color: #004D75;
  font-size: 13px;
  padding: 12px 20px;
}
.btn-dark-blue:hover, .btn-dark-blue:focus {
  background: #178FCF;
  color: white;
  border-color: #178FCF;
}

.btn-basket {
  background: #18B21D;
  padding: 15px 20px;
  font-weight: 500;
  color: white;
  border: 2px solid;
  border-color: #18B21D;
  font-size: 16px;
  margin: 20px 0;
}
.btn-basket:hover, .btn-basket:focus {
  background: #0f6f12;
  color: white;
  border-color: #0f6f12;
}
.btn-basket.disabled {
  pointer-events: none;
  cursor: not-allowed;
  background: lightgray;
  border-color: lightgray;
}

#gopay_button.disabled {
  color: grey;
  background-color: #128516;
  cursor: not-allowed !important;
  text-decoration: none;
}

.btn-basket-inverted {
  background: white;
  padding: 15px 20px;
  font-weight: 500;
  color: #18B21D;
  border: 2px solid;
  border-color: #18B21D;
  font-size: 16px;
}
.btn-basket-inverted:hover, .btn-basket-inverted:focus {
  background: #0f6f12;
  color: white;
  border-color: #0f6f12;
}

.btn-search::before {
  content: "";
  display: inline-block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 16px;
  height: 14px;
  background: url("/userfiles/images/icons.svg") no-repeat -153px -3px;
  margin-right: 5px;
}

.btn-color-3 {
  background: #178FCF;
  padding: 15px 20px;
  font-weight: 500;
  color: white;
  border: 2px solid;
  border-color: transparent;
  font-size: 16px;
  margin: 20px 0;
}
.btn-color-3:hover, .btn-color-3:focus {
  background: #004D75;
  color: white;
  border-color: transparent;
}

.btn-color-3-inverted {
  background: white;
  padding: 15px 20px;
  font-weight: 500;
  color: #178FCF;
  border: 2px solid;
  border-color: #178FCF;
  font-size: 14px;
  padding: 11px 25px;
}
.btn-color-3-inverted:hover, .btn-color-3-inverted:focus {
  background: #178FCF;
  color: white;
  border-color: #178FCF;
}

@media all and (max-width: 1420px) {
  .btn-color-3 {
    font-size: 14px;
    padding: 11px 15px;
  }
}
.btn-color-2-inverted {
  background: white;
  padding: 15px 20px;
  font-weight: 500;
  color: #18B21D;
  border: 2px solid;
  border-color: #18B21D;
  font-size: 14px;
  padding: 11px 25px;
}
.btn-color-2-inverted:hover, .btn-color-2-inverted:focus {
  background: #18B21D;
  color: white;
  border-color: #18B21D;
}

@media all and (max-width: 1420px) {
  .btn-color-2 {
    font-size: 14px;
    padding: 11px 15px;
  }
}
@media all and (max-width: 1000px) {
  .btn-facebook {
    font-size: 12px;
    padding: 11px 16px;
  }

  .btn-color-3-inverted {
    font-size: 12px;
    padding: 9px 17px;
  }
}
.navbar {
  padding: 0;
}
.navbar__search-toggler {
  display: none;
}
.navbar__user-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar__user-group .usr-btn {
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar__user-group .usr-btn::before {
  content: "";
  display: block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 15px;
  height: 18px;
  margin-right: 5px;
  background: url("/userfiles/images/icons.svg") no-repeat -192px -2px;
}
.navbar .lang-group {
  padding-right: 50px;
  margin-left: auto;
}
.navbar .lang-group .lang {
  margin-right: 15px;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  display: block;
  opacity: 0.31;
}
.navbar .lang-group .lang.is-active {
  pointer-events: none;
}
.navbar .lang-group .lang.is-active, .navbar .lang-group .lang:hover, .navbar .lang-group .lang:focus {
  opacity: 1;
}
.navbar .lwr-menu, .navbar .upp-row {
  display: none;
}
.navbar-container {
  position: relative;
  width: 100%;
}
.navbar--upper {
  display: block;
  padding: 0;
  border-bottom: 1px solid #EAF2F6;
  width: 100%;
}
.navbar--upper .navbar-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.navbar--upper .navbar-nav {
  margin: 0 -10px;
}
.navbar--upper .navbar-nav .nav-item .nav-link {
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 400;
  color: #000000;
}
.navbar--upper .navbar-nav .nav-item .nav-link:hover, .navbar--upper .navbar-nav .nav-item .nav-link:focus {
  color: #178FCF;
}
.navbar-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 0;
  position: relative;
  z-index: 500;
}
.navbar-header .navbar-brand {
  padding: 0;
  margin-right: 30px;
  width: 212px;
  height: 62px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar-header .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
}
.navbar-basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: all;
}
.navbar-basket:hover, .navbar-basket:focus {
  text-decoration: none;
}
.navbar-basket:hover .navbar-basket__ico, .navbar-basket:focus .navbar-basket__ico {
  -webkit-transform: scale(1.03) translateZ(0);
          transform: scale(1.03) translateZ(0);
}
.navbar-basket .p-price {
  display: block;
  line-height: 1.2;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.navbar-basket .p-price span {
  font-weight: 400;
  font-size: 12px;
  color: #959595;
  display: block;
}
.navbar-basket__ico {
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  margin-right: 10px;
  width: 50px;
  height: 50px;
  background: url("/userfiles/images/icons.svg") no-repeat -60px -160px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  -o-transition: 0.3s transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
  pointer-events: none;
}
.navbar-basket__ico .p-count {
  background: #18B21D;
  font-size: 11px;
  font-weight: 500;
  color: white;
  border-radius: 6px;
  padding: 1px 5px;
  position: absolute;
  right: 3px;
  top: -3px;
}
.navbar .log {
  position: relative;
}
.navbar .log-wrapper.login {
  min-width: 151px;
}
.navbar .log-wrapper.login .log-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.navbar .log-wrapper {
  right: 0;
  display: none;
  position: absolute;
  min-width: 220px;
  top: 100%;
  z-index: 999;
}
.navbar .log-wrapper .log-box {
  position: relative;
  margin-top: 0;
  border-radius: 0;
  padding: 10px 0;
  top: 11px;
  border: 1px solid #AACEE2;
  background: white;
}
.navbar .log-wrapper .log-box.has-padding {
  padding: 20px;
}
.navbar .log-wrapper .log-box .acc_link {
  font-size: 14px;
  padding: 5px 10px;
  text-align: center;
}
.navbar .log-wrapper .log-box:before, .navbar .log-wrapper .log-box:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  top: -9px;
}
.navbar .log-wrapper .log-box:before {
  top: -10px;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #AACEE2 transparent;
  right: 21px;
}
.navbar .log-wrapper .log-box::after {
  right: 21px;
}
.navbar .log-wrapper .log-box.login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.navbar .log-wrapper .log-box .additional-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.navbar .log-wrapper .log-box .additional-info .reg {
  font-size: 12px;
  text-decoration: underline;
  color: #000000;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
  margin-top: 5px;
}
.navbar .log-wrapper .log-box .additional-info .reg:hover, .navbar .log-wrapper .log-box .additional-info .reg:focus {
  color: #000000;
}
.navbar .log-wrapper .log-box .c-input {
  padding: 10px 11px;
  margin-bottom: 12px;
}
.navbar .log-wrapper .log-box .btn-color-3 {
  font-size: 12px;
  font-weight: 600;
  padding: 10px 25px;
  margin: 0;
}
.navbar .cnt-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: auto;
}
.navbar .cnt-phone, .navbar .cnt-mail {
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 30px;
}
.navbar--main {
  position: relative;
}
.navbar--main .navbar-nav {
  display: table;
  width: 100%;
  position: relative;
}
.navbar--main .navbar-nav .nav-item {
  position: static;
  display: table-cell;
}
.navbar--main .navbar-nav .nav-item:not(:last-of-type) .nav-link:not(.dropdown-item) {
  border-right: 1px solid #0C7AB5;
}
.navbar--main .navbar-nav .nav-item .dropdown-menu {
  background: #EAF2F6;
  right: 0;
  left: 0;
  top: 100%;
  border-radius: 0;
  border: none;
  margin-top: 0;
  max-height: 360px;
  padding: 0;
}
.navbar--main .navbar-nav .nav-item .dropdown-menu-wrap {
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 360px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.navbar--main .navbar-nav .nav-item .dropdown-menu .nav-link {
  color: #000000;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  display: block;
  width: auto;
  margin: 0 40px 0 0;
  max-width: 100%;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  padding: 14px 28px 14px 0;
}
.navbar--main .navbar-nav .nav-item .dropdown-menu .nav-link:hover, .navbar--main .navbar-nav .nav-item .dropdown-menu .nav-link:focus {
  background: none;
  font-weight: 500;
  padding-right: 0px;
}
.navbar--main .navbar-nav .nav-item .dropdown-menu .nav-link:hover::before, .navbar--main .navbar-nav .nav-item .dropdown-menu .nav-link:focus::before {
  content: "";
  display: inline-block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  top: -4px;
  margin-right: 2px;
  width: 13px;
  height: 1px;
  background: #178FCF;
}
.navbar--main .navbar-nav .nav-link:not(.dropdown-item) {
  padding: 20px 16px;
  background: #178FCF;
  font-size: 16px;
  font-weight: 500;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.navbar--main .navbar-nav .nav-link:not(.dropdown-item).dropdown-toggle::after {
  content: none;
}
.navbar--main .navbar-nav .nav-link:not(.dropdown-item):hover, .navbar--main .navbar-nav .nav-link:not(.dropdown-item):focus {
  background: #004D75;
}
.navbar__search-group label {
  margin-bottom: 0;
}
.navbar__search-group input {
  width: 100%;
}

@media all and (max-width: 1420px) {
  .navbar--upper .navbar-nav .nav-item .nav-link {
    padding: 6px 7px;
    font-size: 11px;
  }
  .navbar-basket {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
  }
  .navbar-basket__ico {
    background-position: -111px -160px;
    width: 42px;
    height: 38px;
  }
  .navbar-basket__ico .p-count {
    font-size: 10px;
    padding: 1px 5px;
    right: 1px;
    top: 0px;
  }
  .navbar-basket .p-price {
    font-size: 16px;
  }
  .navbar .cnt-wrap {
    white-space: nowrap;
    margin-right: 15px;
  }
  .navbar .cnt-phone .cnt-phone-num {
    font-size: 14px;
  }
  .navbar .cnt-mail {
    font-size: 14px;
  }
  .navbar .cnt-opening-hours {
    font-size: 11px;
  }
  .navbar .cnt-phone, .navbar .cnt-mail {
    margin-right: 0;
  }
  .navbar--main .navbar-nav .nav-item .dropdown-menu-wrap {
    padding: 10px 20px;
  }
  .navbar--main .navbar-nav .nav-item .dropdown-menu .nav-link {
    font-size: 13px;
    padding: 10px 28px 10px 0;
  }
  .navbar--main .navbar-nav .nav-link:not(.dropdown-item) {
    font-size: 12px;
    padding: 12px 4px;
  }
  .navbar-header {
    padding: 15px 0;
  }
  .navbar-header .navbar-brand {
    width: 120px;
  }
  .navbar .input-btn-group {
    margin-right: 22px;
  }
  .navbar .input-btn-group .btn-search {
    padding: 9px 11px;
  }
  .navbar .input-btn-group input {
    font-size: 12px;
    min-width: 330px;
  }
}
@media all and (max-width: 1000px) {
  .navbar__search-toggler {
    margin-right: 8px;
    display: block;
    width: 36px;
    height: 36px;
    background: url("/userfiles/images/icons.svg") no-repeat -343px -1px;
    margin-left: auto;
  }
  .navbar .upp-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    background: #178FCF;
    border-bottom: 1px solid #0C7AB5;
    padding: 8px 16px;
  }
  .navbar .upp-row .navbar__user-group .usr-btn {
    color: white;
  }
  .navbar .upp-row .navbar__user-group .usr-btn:hover, .navbar .upp-row .navbar__user-group .usr-btn:focus {
    color: #004D75;
  }
  .navbar .lwr-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-height: 140px;
    padding: 10px 0;
    background: #F7FAFB;
  }
  .navbar .lwr-menu a {
    font-size: 12px;
    padding: 5px 12px;
  }
  .navbar--upper {
    display: none;
  }
  .navbar--main .navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .navbar--main .navbar-nav .nav-item {
    display: block;
  }
  .navbar--main .navbar-nav .nav-item .nav-link, .navbar--main .navbar-nav .nav-item .nav-link.dropdown-toggle {
    width: 100%;
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    position: relative;
    padding: 9px 44px 9px 12px;
  }
  .navbar--main .navbar-nav .nav-item .nav-link::after, .navbar--main .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
    content: "";
    display: block;
    position: absolute;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    right: 19px;
    top: 14px;
    padding: 0;
    margin: 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 8px;
    height: 8px;
    border: none;
    border-right: 2px solid white;
    border-top: 2px solid white;
  }
  .navbar--main .navbar-collapse {
    -webkit-box-shadow: 0 11px 30px rgba(0, 77, 117, 0.1);
            box-shadow: 0 11px 30px rgba(0, 77, 117, 0.1);
    position: absolute;
    z-index: 999;
    left: 0;
    right: 0;
  }
  .navbar-basket {
    margin-right: 8px;
    margin-left: 0;
    width: auto;
  }
  .navbar-basket__ico {
    margin-right: 0;
  }
  .navbar-basket .p-price {
    display: none;
  }
  .navbar-toggler {
    padding: 0;
  }
  .navbar-toggler-bar {
    background: #178FCF;
    height: 2px;
    width: 31px;
    display: block;
  }
  .navbar-toggler-bar:not(:last-of-type) {
    margin-bottom: 8px;
  }
  .navbar-header .navbar-brand {
    margin-right: 15px;
  }
  .navbar-header .navbar__search-group, .navbar-header .cnt-wrap {
    display: none;
  }
  .navbar-header .navbar__search-group {
    position: absolute;
    top: 100%;
    right: 0px;
    left: 0px;
  }
  .navbar-header .navbar__search-group .twitter-typeahead {
    -webkit-box-flex: 1;
        -ms-flex: 1 100%;
            flex: 1 100%;
  }
  .navbar-header .navbar__search-group input {
    min-width: 0px;
  }
}
.input-btn-group {
  padding: 8px 8px 8px 15px;
  position: relative;
  background: #EAF2F6;
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.input-btn-group input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  background: none;
  border: none;
  outline: none;
  font-size: 14px;
  min-width: 410px;
}
.input-btn-group span input {
  height: 100%;
}
.input-btn-group .btn-brand {
  white-space: nowrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 0;
          flex: 0 0;
}

.c-input {
  padding: 8px 8px 8px 15px;
  background: #EAF2F6;
  font-size: 16px;
  width: 100%;
  border: none;
  outline: none;
}
.c-input::-webkit-input-placeholder {
  color: #000000;
}
.c-input::-moz-placeholder {
  color: #000000;
}
.c-input:-ms-input-placeholder {
  color: #000000;
}
.c-input::-ms-input-placeholder {
  color: #000000;
}
.c-input::placeholder {
  color: #000000;
}
.c-comp-styled {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 6px;
  cursor: pointer;
}
.c-comp-styled .c-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-comp-styled .c-wrapper__mark {
  width: 22px;
  height: 22px;
  background: #EAF2F6;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
  position: relative;
}
.c-comp-styled.is-selected .c-wrapper .c-wrapper__mark::after, .c-comp-styled input:checked + .c-wrapper .c-wrapper__mark::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.c-comp-styled.is-selected .c-wrapper .c-wrapper__text, .c-comp-styled input:checked + .c-wrapper .c-wrapper__text {
  font-weight: 700;
}
.c-comp-styled.is-selected .c-wrapper .c-wrapper__text span, .c-comp-styled input:checked + .c-wrapper .c-wrapper__text span {
  font-weight: 400;
}
.c-comp-styled input {
  display: none;
}
.c-option-styled .c-wrapper__mark {
  width: 21px;
  height: 21px;
  background: #EAF2F6;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
  position: relative;
  border-radius: 50%;
}
.c-option-styled .c-wrapper__mark::after {
  border-radius: 50%;
  width: 9px;
  height: 9px;
  top: 6px;
  left: 6px;
  background: #178FCF;
}
.c-check-styled .c-wrapper__text span {
  color: #959595;
}
.c-check-styled .c-wrapper__mark::after {
  width: 7px;
  height: 14px;
  border-right: 2px solid #178FCF;
  border-bottom: 2px solid #178FCF;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 3px;
  left: 8px;
}
.c-check-styled span {
  font-size: 14px;
}

@media all and (max-width: 1000px) {
  .c-comp-styled span {
    font-size: 12px;
  }
  .c-check-styled .c-wrapper__mark {
    width: 18px;
    height: 18px;
    margin-right: 8px;
  }
  .c-check-styled .c-wrapper__mark::after {
    width: 6px;
    height: 12px;
    top: 2px;
    left: 6px;
  }
  .c-option-styled .c-wrapper__mark {
    width: 17px;
    height: 17px;
    margin-right: 8px;
  }
  .c-option-styled .c-wrapper__mark::after {
    top: 4px;
    left: 4px;
  }
}
.form__item .error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.form__item .error:before {
  content: "";
  display: inline-block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  position: absolute;
  background: url(/userfiles/images/exclamation.svg) no-repeat;
  left: 0;
  /* top: 0; */
  bottom: 10px;
  /* margin: auto 0; */
  width: 30px;
  height: 30px;
  background-size: 100%;
}
.form__item .error input {
  width: calc( 100% - 40px);
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.mt-4:has(.input_error) {
  position: relative;
}
.mt-4:has(.input_error):before {
  content: "";
  display: inline-block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  position: absolute;
  background: url(/userfiles/images/exclamation.svg) no-repeat;
  left: 0;
  /* top: 0; */
  bottom: 39px;
  /* margin: auto 0; */
  width: 30px;
  height: 30px;
  background-size: 100%;
}
.mt-4:has(.input_error) label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mt-4:has(.input_error) input {
  width: calc(100% - 40px);
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.mailing_phone_wrapper:has(.input_error) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.mailing_phone_wrapper:has(.input_error):before {
  content: "";
  display: inline-block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  position: absolute;
  background: url(/userfiles/images/exclamation.svg) no-repeat;
  left: 0;
  /* top: 0; */
  bottom: 63px;
  /* margin: auto 0; */
  width: 30px;
  height: 30px;
  background-size: 100%;
}
.mailing_phone_wrapper:has(.input_error) label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mailing_phone_wrapper:has(.input_error) .mailing_phone_wrap {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.mailing_phone_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}

.mailing_phone_wrap:has(.input_error) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
}
.mailing_phone_wrap:has(.input_error) input {
  width: calc( 100% - 40px);
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.phone-select {
  max-height: 50px;
}

.form-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.form-flex--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cnt-form--width {
  width: 100%;
}

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

@media all and (min-width: 1420px) {
  .cnt-form__bottom-wrap {
    padding-right: 45px;
    padding-left: 11px;
  }
}
.form-gdpr {
  line-height: 1.3rem;
  color: #AACEE2 !important;
}
.form-gdpr a {
  line-height: 1.3rem !important;
}

.h1 {
  font-size: 41px;
  font-weight: 700;
  margin: 0;
}
.h1 span {
  display: block;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.h1 a {
  text-decoration: none;
  position: relative;
  border-image-source: url(/userfiles/images/border-dark.svg);
  border-image-slice: 1;
  border-image-repeat: repeat;
  border-bottom: 1px solid;
}

.h2, h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 30px 0 20px 0;
}

.h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 25px 0 15px 0;
}

@media all and (max-width: 1420px) {
  .h1 {
    font-size: 31px;
  }
  .h1 span {
    font-size: 23px;
  }

  .h2 {
    font-size: 24px;
  }
}
@media all and (max-width: 1000px) {
  .h1 {
    font-size: 25px;
  }
  .h1 span {
    font-size: 18px;
  }

  .h2 {
    font-size: 21px;
  }
}
.img--background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gdpr-modal .btn-brand {
  margin-bottom: 0;
}
.gdpr-modal .modal-dialog .modal-content .modal-body {
  padding: 15px;
}

.download-list {
  padding-left: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 25px 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.download-list li:not(:last-of-type) {
  margin-bottom: 20px;
}
.download-list__item {
  padding-left: 40px;
  position: relative;
  display: block;
  font-size: 15px;
  color: #178FCF;
  text-decoration: underline;
}
.download-list__item:hover, .download-list__item:focus {
  color: #004D75;
}
.download-list__item::before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  left: 0;
  top: -7px;
  width: 31px;
  height: 35px;
  background: url("/userfiles/images/icons.svg") no-repeat -120px -3px;
}

.store-detail__wrap {
  margin-bottom: 70px;
}
.store-detail__benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
.store-detail__benefits::before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  top: 0;
  bottom: 0;
  left: -16px;
  width: 1px;
  background: #AACEE2;
}
.store-detail__benefit {
  text-align: left;
  font-size: 14px;
  position: relative;
  padding-left: 35px;
  line-height: 1.2;
}
.store-detail__benefit.parking::before {
  background-position: -153px -45px;
  height: 21px;
}
.store-detail__benefit.parking::before {
  background-position: -153px -45px;
  height: 21px;
}
.store-detail__benefit.public-transport::before {
  background-position: -153px -74px;
  height: 22px;
}
.store-detail__benefit.wheelchair-access::before {
  background-position: -153px -104px;
  height: 24px;
}
.store-detail__benefit:not(:last-of-type) {
  margin-bottom: 25px;
}
.store-detail__benefit span {
  display: block;
  font-weight: 700;
}
.store-detail__benefit::before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 25px;
  height: 20px;
  background: url("/userfiles/images/icons.svg") no-repeat -153px -20px;
  left: 0;
  top: 3px;
}
.store-detail__cnt-item {
  max-width: 160px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 21px;
  color: #000000;
}
.store-detail__cnt-item span {
  display: block;
  font-size: 17px;
  color: #959595;
}
.store-detail__cnt-item::before {
  content: "";
  display: block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  margin-bottom: 15px;
  width: 41px;
  height: 44px;
  background: url("/userfiles/images/icons.svg") no-repeat -214px -85px;
}
.store-detail__cnt-item.cnt-address::before {
  height: 44px;
  background-position: -261px -83px;
}

.crt-item {
  display: block;
  text-align: center;
  margin: auto;
  margin-bottom: 25px;
}
.crt-item:hover, .crt-item:focus {
  color: #000000;
}
.crt-item:hover .crt-image img, .crt-item:focus .crt-image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.crt-image {
  width: 100%;
  max-width: 460px;
  height: 620px;
  overflow: hidden;
}
.crt-image img {
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.crt-text .h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.crt-text .h3 span {
  display: block;
  font-size: 17px;
  font-weight: 400;
}
.crt-text p {
  margin: 0;
  font-size: 14px;
}

.section--cnt-benefits {
  background: #004D75;
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section--cnt-benefits .h2 {
  color: white;
}
.section--store-detail {
  padding: 80px 0 50px 0;
  background: white;
}
.section--store-detail .gallery--var-2 {
  margin-top: 0;
}
.section--store-detail .cnt-col {
  margin-top: auto;
  margin-bottom: auto;
}
.section--store-detail .cnt-map {
  height: 480px;
  margin-bottom: 40px;
}
.section--history {
  padding: 75px 0;
  background: white;
}
.section--history .hist-wrapper {
  position: relative;
}
.section--history .hist-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.section--history .hist-item:not(:last-of-type)::before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  left: 55px;
  bottom: -100px;
  top: 101px;
  width: 1px;
  background: #AACEE2;
}
.section--history .hist-item::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  left: 55px;
  bottom: 0;
  top: 101px;
  width: 160px;
  height: 2px;
  background: url("/userfiles/images/border-light.svg") repeat-x 0px 0px;
}
.section--history .hist-item__year {
  margin-top: 55px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 108px;
  height: 93px;
  background: url("/userfiles/images/icons.svg") no-repeat -370px -673px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-size: 28px;
  position: relative;
  z-index: 3;
}
.section--history .hist-item .h2 {
  margin-top: 0;
  margin-bottom: 20px;
}
.section--history .hist-item p {
  margin: 0;
}
.section--history .hist-item:not(:last-of-type) {
  margin-bottom: 40px;
}
.section--history .hist-item__box {
  margin-left: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 11px 30px rgba(0, 77, 117, 0.1);
          box-shadow: 0 11px 30px rgba(0, 77, 117, 0.1);
}
.section--history .hist-item__image {
  width: 300px;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.section--history .hist-item__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section--history .hist-item__text {
  padding: 45px;
}
.section--num-benefits {
  padding: 60px 0;
}
.section--num-benefits .section--benefits {
  margin-top: 0;
}
.section--our-story {
  background: white;
  padding-top: 95px;
  padding-bottom: 95px;
}
.section--our-story .story-item:not(:last-of-type) {
  margin-bottom: 55px;
}
.section--our-story .story-item__image {
  width: 100%;
  max-width: 695px;
  height: 444px;
  overflow: hidden;
  display: block;
}
.section--our-story .story-item__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.section--our-story .story-item__text {
  padding-top: 70px;
}
.section--our-story .story-item__text .h2 {
  margin-top: 0;
}
.section--our-story .story-item__text .btn-brand {
  margin-bottom: 0;
  margin-top: 15px;
}
.section--page-detail {
  padding-top: 50px;
  padding-bottom: 50px;
  background: white;
}
.section--catalogues-detail .f-wrap {
  max-width: 700px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 0;
  border-bottom: 1px solid #EAF2F6;
}
.section--catalogues-detail .f-wrap:first-of-type {
  border-top: 1px solid #EAF2F6;
}
.section--catalogues-detail .f-wrap .download-list {
  margin-top: 5px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 300px;
          flex: 0 1 300px;
}
.section--catalogues-detail .f-wrap .download-list__item::before {
  background-position: -120px -43px;
}
.section--catalogues-detail .f-wrap .h2 {
  margin-top: 0;
  margin-right: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 300px;
          flex: 0 1 300px;
}
.section--intro-image {
  margin-top: 40px;
}
.section--intro-image .intro-image {
  margin-top: -130px;
}
.section--pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section--pagination .btn-brand {
  margin: 0;
}
.section--pagination .p-numbers {
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section--pagination .p-numbers .p-arrow {
  width: 52px;
  height: 45px;
  display: block;
  background: url("/userfiles/images/icons.svg") no-repeat;
  -webkit-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
}
.section--pagination .p-numbers .p-arrow.p-first {
  margin-right: 10px;
  background-position: -292px -250px;
}
.section--pagination .p-numbers .p-arrow.p-first:hover, .section--pagination .p-numbers .p-arrow.p-first:focus {
  background-position: -234px -250px;
}
.section--pagination .p-numbers .p-arrow.p-previous {
  margin-right: 15px;
  background-position: -59px -250px;
}
.section--pagination .p-numbers .p-arrow.p-previous:hover, .section--pagination .p-numbers .p-arrow.p-previous:focus {
  background-position: -2px -250px;
}
.section--pagination .p-numbers .p-arrow.p-next {
  margin-left: 15px;
  background-position: -169px -250px;
}
.section--pagination .p-numbers .p-arrow.p-next:hover, .section--pagination .p-numbers .p-arrow.p-next:focus {
  background-position: -111px -250px;
}
.section--pagination .p-numbers .p-arrow.p-last {
  margin-left: 10px;
  background-position: -414px -250px;
}
.section--pagination .p-numbers .p-arrow.p-last:hover, .section--pagination .p-numbers .p-arrow.p-last:focus {
  background-position: -356px -250px;
}
.section--pagination .p-numbers .p-number {
  font-size: 16px;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section--pagination .p-numbers .p-number:not(.is-active) {
  padding: 0 9px;
}
.section--pagination .p-numbers .p-number.is-active {
  width: 33px;
  height: 29px;
  background: url("/userfiles/images/icons.svg") no-repeat -233px -686px;
}
.section--cooperation {
  background: white;
}
.section--cooperation .h2 {
  margin-top: 0;
  text-align: center;
  margin-bottom: 35px;
}
.section--cooperation .coop-slider-wrap {
  position: relative;
  padding: 0 90px;
}
.section--cooperation .coop-slider-wrap .glide__custom-arrows {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  top: 10px;
}
.section--cooperation .coop-slider__logo {
  width: 100%;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.section--cooperation .coop-slider__logo img {
  max-width: 100%;
  max-height: 100%;
}
.section--benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}
.section--benefits .h2 {
  margin: 25px 0;
}
.section--benefits .b-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 0 30px;
  max-width: 270px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0;
}
.section--benefits .b-item .number-part {
  font-size: 28px;
  color: #178FCF;
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  line-height: 1.2;
}
.section--benefits .b-item .number-part::before, .section--benefits .b-item .number-part::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  height: 14px;
  width: 1px;
  left: 16px;
  background: #AACEE2;
}
.section--benefits .b-item .number-part::before {
  bottom: 100%;
}
.section--benefits .b-item .number-part::after {
  top: 100%;
}
.section--benefits .b-item .text-part .h3 {
  margin-top: 0;
  margin-bottom: 10px;
}
.section--benefits .b-item .text-part p {
  color: #959595;
  font-size: 13px;
  margin-bottom: 0;
}

.polygon-image-svg {
  color: #EAF2F6;
  -webkit-filter: drop-shadow(0 11px 30px rgba(0, 77, 117, 0.1));
          filter: drop-shadow(0 11px 30px rgba(0, 77, 117, 0.1));
}

.brand-alert {
  width: 100%;
  min-height: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  background: #FFD256;
  padding: 15px 20px;
  position: relative;
  z-index: 400;
}
.brand-alert__more {
  white-space: nowrap;
  margin-right: 10px;
}
.brand-alert__close {
  width: 21px;
  height: 21px;
  position: relative;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  margin-left: auto;
  padding: 8px;
}
.brand-alert__close::before, .brand-alert__close::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 15px;
  height: 1.5px;
  background: #000000;
  top: 9px;
  left: 3px;
}
.brand-alert__close::after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.brand-alert__text {
  margin: 0 25px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.brand-alert__text::before {
  content: "";
  display: inline-block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 32px;
  height: 32px;
  background: url("/userfiles/images/icons.svg") no-repeat -24px -173px;
  margin-right: 25px;
}
.brand-alert a {
  font-weight: 700;
  text-decoration: underline;
}
.brand-alert a:hover, .brand-alert a:focus {
  color: #178FCF;
}

.page__list-box {
  max-width: 295px;
  padding: 28px;
  background: #F7FAFB;
  border: 1px solid #EAF2F6;
}
.page__list-box .h2 {
  margin-top: 0;
  font-size: 24px;
}
.page__list-box .l-item {
  font-size: 15px;
}
.page__list-box .l-item:not(:last-of-type) {
  margin-bottom: 8px;
}
.page__list-box .l-item a {
  color: #178FCF;
  text-decoration: underline;
  margin-right: 3px;
}
.page__list-box .l-item a:hover, .page__list-box .l-item a:focus {
  color: #004D75;
}
.page__list-box .l-item span {
  color: #AACEE2;
  text-decoration: none;
}
.page__right-col {
  padding-left: 45px;
}
.page__right-col .h3 {
  font-size: 24px;
}
.page__right-col .cnt-box {
  margin-top: 90px;
  margin-bottom: 50px;
}

.glide__custom-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 3;
  pointer-events: none;
  left: 0px;
  right: 0px;
}
.glide__custom-arrows .arrow--left, .glide__custom-arrows .arrow--right {
  cursor: pointer;
  pointer-events: all;
  width: 52px;
  height: 45px;
  background: url("/userfiles/images/icons.svg") no-repeat;
  display: block;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  -webkit-filter: drop-shadow(0 11px 13px #EAF2F6);
          filter: drop-shadow(0 11px 13px #EAF2F6);
}
.glide__custom-arrows .arrow--left {
  background-position: 0px -250px;
}
.glide__custom-arrows .arrow--left:hover, .glide__custom-arrows .arrow--left:focus {
  background-position: -58px -250px;
}
.glide__custom-arrows .arrow--right {
  background-position: -112px -250px;
}
.glide__custom-arrows .arrow--right:hover, .glide__custom-arrows .arrow--right:focus {
  background-position: -170px -250px;
}

.intro-prd-slider {
  position: relative;
}
.intro-prd-slider-wrap {
  background: white;
  padding: 35px 50px;
  min-height: 375px;
  -webkit-box-shadow: 0 11px 30px rgba(0, 77, 117, 0.1);
          box-shadow: 0 11px 30px rgba(0, 77, 117, 0.1);
  position: relative;
}
.intro-prd-slider-wrap .glide__custom-arrows {
  left: -28px;
  right: -28px;
}
.intro-prd-slider .upper-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 45px;
}
.intro-prd-slider .upper-row .h3 {
  font-size: 21px;
  margin: 0 15px 0 0;
}
.intro-prd-slider .upper-row .glide__bullets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.intro-prd-slider .upper-row .glide__bullets .glide__bullet {
  width: 5px;
  height: 8px;
  display: block;
  background: #AACEE2;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.intro-prd-slider .upper-row .glide__bullets .glide__bullet::before, .intro-prd-slider .upper-row .glide__bullets .glide__bullet::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  top: 0;
  z-index: -1;
}
.intro-prd-slider .upper-row .glide__bullets .glide__bullet::before {
  right: 100%;
  border-right: 2px solid #AACEE2;
}
.intro-prd-slider .upper-row .glide__bullets .glide__bullet::after {
  left: 100%;
  border-left: 2px solid #AACEE2;
}
.intro-prd-slider .upper-row .glide__bullets .glide__bullet:not(:last-of-type) {
  margin-right: 8px;
}
.intro-prd-slider .upper-row .glide__bullets .glide__bullet--active {
  background: #178FCF;
}
.intro-prd-slider .upper-row .glide__bullets .glide__bullet--active::before, .intro-prd-slider .upper-row .glide__bullets .glide__bullet--active::after {
  border-left-color: #178FCF;
  border-right-color: #178FCF;
}

.full-anchor {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
}

@media all and (max-width: 1440px) {
  .intro-prd-slider-wrap {
    max-width: 600px;
    margin-top: 15px;
  }
  .intro-prd-slider-wrap .glide__custom-arrows {
    left: -18px;
    right: -18px;
  }
}
@media all and (max-width: 1420px) {
  .crt-image {
    height: 420px;
  }
  .crt-text p {
    font-size: 13px;
  }
  .crt-text .h3 {
    font-size: 17px;
  }
  .crt-text .h3 span {
    font-size: 15px;
  }

  .store-detail__wrap {
    margin-bottom: 40px;
  }
  .store-detail__benefits {
    padding-left: 10px;
    margin-top: 20px;
  }
  .store-detail__benefits::before {
    content: none;
  }

  .page__right-col {
    padding-left: 0;
  }

  .section--store-detail .cnt-map {
    height: 380px;
  }
  .section--history .hist-item__image {
    width: 200px;
  }
  .section--history .hist-item__text {
    padding: 25px;
  }
  .section--history .hist-item__text .h2 {
    font-size: 20px;
  }
  .section--history .hist-item__text p {
    font-size: 13px;
  }
  .section--our-story .story-item p {
    font-size: 13px;
  }
  .section--our-story .story-item__image {
    height: 344px;
  }
  .section--our-story .story-item__text {
    padding-top: 20px;
  }
  .section--benefits {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 610px;
    margin-top: 80px;
  }
  .section--benefits .h2 {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }

  .brand-alert {
    font-size: 13px;
    background: #FFD256;
    padding: 11px 10px;
    position: absolute;
    min-height: 0;
  }
  .brand-alert p {
    font-size: 13px;
  }
}
@media all and (max-width: 1000px) {
  .crt-item {
    text-align: center;
    max-width: 490px;
    margin-bottom: 40px;
  }
  .crt-image {
    width: 100%;
    max-width: 350px;
    height: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .section--page-detail {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .section--our-story {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .section--our-story .story-item {
    max-width: 490px;
  }
  .section--our-story .story-item:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .section--our-story .story-item__image {
    height: 300px;
    max-width: 445px;
  }
  .section--history {
    padding: 35px 0;
  }
  .section--history .hist-item::after {
    width: 120px;
  }
  .section--history .hist-item__box {
    margin-left: 70px;
  }
  .section--history .hist-item__year {
    font-size: 20px;
  }
  .section--cooperation .coop-slider-wrap {
    position: relative;
    padding: 0 70px;
  }
}
@media all and (max-width: 798px) {
  .crt-image {
    max-width: 240px;
    height: 330px;
  }

  .store-detail__cnt-item {
    font-size: 16px;
    margin-top: 20px;
  }
  .store-detail__cnt-item::before {
    margin-bottom: 10px;
  }
  .store-detail__cnt-item span {
    font-size: 14px;
  }

  .section--store-detail .cnt-map {
    height: 290px;
  }
  .section--our-story .story-item__image {
    height: 180px;
    max-width: 299px;
  }
  .section--history .hist-item__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .section--history .hist-item__text {
    padding: 0;
  }
  .section--history .hist-item__image {
    height: auto;
    margin-bottom: 15px;
  }
  .section--history .hist-item__image img {
    position: static;
  }

  .intro-prd-slider-wrap {
    padding: 25px 30px;
  }
  .intro-prd-slider .prd-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .intro-prd-slider .prd-wrapper .prd__image {
    margin-right: 0;
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
  }

  .brand-alert {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 7px 23px;
  }
  .brand-alert p {
    font-size: 12px;
  }
  .brand-alert__more {
    margin-right: 0;
  }
  .brand-alert__close {
    position: absolute;
    top: 2px;
    right: 2px;
  }
  .brand-alert__text {
    margin: 0;
    width: 100%;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .brand-alert__text::before {
    content: none;
  }
}
@media all and (max-width: 580px) {
  .section--history .hist-item:not(:last-of-type)::before {
    content: none;
  }
  .section--history .hist-item__year {
    display: none;
  }
  .section--history .hist-item__box {
    margin-left: 0;
  }
}
.intro-image {
  min-height: 470px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: white;
}
.intro-image__gradient {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: -o-linear-gradient(bottom, black 0%, transparent 85%);
  background: -webkit-gradient(linear, left bottom, left top, from(black), color-stop(85%, transparent));
  background: linear-gradient(to top, black 0%, transparent 85%);
}
.intro-image__content {
  position: relative;
  z-index: 3;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.intro-image__content, .intro-image__content.article__bottom {
  padding: 50px 40px;
}
.intro-image__content .article__author-wrap .atr__name {
  color: white;
}
.intro-image__content .article__wrap-upper {
  margin-bottom: 20px;
}
.intro-image__content .article__cat {
  color: white;
  border-color: white;
}
.intro-image__content .article__cat:hover, .intro-image__content .article__cat:focus {
  color: #178FCF;
}
.intro-image__content .article__cat::before {
  background-position: -42px -298px;
}
.intro-image__content .article__cat::after {
  background-position: -60px -298px;
}
.intro-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro-section {
  padding-top: 50px;
  padding-bottom: 40px;
}
.intro-section--title {
  padding-bottom: 0;
}
.intro-section--blog-author .atr__image {
  margin-bottom: 20px;
}
.intro-section--blog-author .intro-section__text p {
  max-width: 1000px;
}
.intro-section--categories {
  padding-bottom: 70px;
}
.intro-section--categories .page__right-col .cnt-box {
  margin-top: 0;
}
.intro-section--faq-detail {
  padding-bottom: 30px;
}
.intro-section--faq-detail .article__author-wrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: left;
  margin-left: auto;
  max-width: unset;
}
.intro-section--faq-detail .article__author-wrap .atr__image {
  margin-right: 20px;
}
.intro-section__text {
  margin-right: 25px;
}
.intro-section .article__wrap-upper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.intro-section .article__wrap-upper .article__date {
  margin-top: 5px;
  margin-bottom: 5px;
}
.intro-section__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.intro-section .intro-image .h1 {
  margin-bottom: 0;
}
.intro-section .atr__image {
  width: 119px;
  height: 102px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
}
.intro-section .h1 {
  margin-bottom: 25px;
}

@media all and (max-width: 1420px) {
  .intro-section {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .intro-section--categories .page__right-col .cnt-box {
    margin-top: 90px;
  }
  .intro-section .article__date {
    font-size: 13px;
  }
  .intro-section .article__cat {
    font-size: 13px;
  }
  .intro-section .h1 {
    max-width: 600px;
  }
  .intro-section .atr__name {
    font-size: 13px;
  }
  .intro-section .atr__name span {
    font-size: 12px;
  }
  .intro-section .atr__image {
    width: 100px;
    height: 90px;
  }
  .intro-image {
    min-height: 390px;
  }
}
@media all and (max-width: 1000px) {
  .intro-image {
    min-height: 300px;
  }
  .intro-image__content, .intro-image__content.article__bottom {
    padding: 20px 20px;
  }
  .intro-image__content .article__wrap-upper {
    margin-bottom: 18px;
  }
  .intro-section {
    padding-top: 125px;
    padding-bottom: 40px;
  }
  .intro-section__text {
    margin-right: 0;
  }
  .intro-section .atr__name {
    font-size: 13px;
  }
  .intro-section .atr__name span {
    font-size: 12px;
  }
  .intro-section .atr__image {
    width: 100px;
    height: 90px;
  }
  .intro-section--faq-detail {
    padding-bottom: 20px;
  }
  .intro-section--faq-detail .intro-section__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .intro-section--faq-detail .intro-section__row .article__author-wrap {
    margin-left: 0;
    margin-top: 20px;
  }
  .intro-section--shorter {
    padding-bottom: 10px;
  }
}
@media all and (max-width: 798px) {
  .intro-section--faq-detail .article__author-wrap .atr__image {
    width: 80px;
    height: 70px;
    margin-bottom: 0;
    margin-right: 15px;
  }
  .intro-image {
    min-height: 300px;
  }
  .intro-image__gradient {
    background: -o-linear-gradient(bottom, black 0%, transparent 125%);
    background: -webkit-gradient(linear, left bottom, left top, from(black), color-stop(125%, transparent));
    background: linear-gradient(to top, black 0%, transparent 125%);
  }
  .intro-image__author .article__author-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 15px;
  }
  .intro-image__author .article__author-wrap .atr__image {
    width: 80px;
    height: 70px;
    margin-bottom: 0;
    margin-right: 15px;
  }
  .intro-image__author .article__author-wrap .atr__name {
    text-align: left;
  }
  .intro-image__content .article__wrap-upper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .intro-image__content.article__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.f-filter {
  background: #EAF2F6;
  height: 6px;
  border-radius: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
}
.f-filter__expandable {
  display: none;
  margin-bottom: 15px;
}
.f-filter__not-found {
  padding-top: 40px;
}
.f-filter__label {
  font-size: 16px;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.f-filter__label:not(.always-expanded)::after {
  content: "";
  display: block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid #178FCF;
  border-bottom: 1px solid #178FCF;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0px;
}
.f-filter__value {
  margin-top: 20px;
  width: 95px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #EAF2F6;
  padding: 13px;
  outline: none;
  border: none;
}
.f-filter__value input {
  display: inline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: none;
  border: none;
  min-width: 0px;
  text-align: center;
}
.f-filter__value-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.f-filter-wrapper {
  position: relative;
}
.f-filter-wrapper.is-expanded {
  margin-bottom: 15px;
}
.f-filter-wrapper.is-expanded .f-filter__label:not(.always-expanded)::after {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: 2px;
}
.f-filter-wrapper.is-expanded .f-filter__expandable {
  display: block;
}
.f-filter .noUi-connect {
  background: #AACEE2;
}
.f-filter .noUi-handle {
  width: 28px;
  height: 28px;
  background: url("/userfiles/images/icons.svg") no-repeat -121px -681px;
  position: absolute;
  right: -17px;
  top: -11px;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.f-filter .noUi-handle::before, .f-filter .noUi-handle::after {
  content: none;
}
.f-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
.f-nav__label {
  font-size: 16px;
  color: #959595;
  margin-right: 25px;
}
.f-nav__list {
  margin-bottom: 0px;
  padding-left: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.f-nav__item {
  display: block;
  font-size: 16px;
  color: #178FCF;
  padding: 16px 4px;
  margin: 0 20px;
  border-bottom: 1px solid transparent;
}
.f-nav__item:hover, .f-nav__item:focus {
  color: #000000;
}
.f-nav__item.is-active {
  color: #000000;
  border-bottom-color: #178FCF;
}

.product-preview--small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-preview--small .product__image {
  height: 75px;
  min-width: 75px;
  width: 75px;
  display: block;
  margin-right: 10px;
}
.product-preview--small .product__image img {
  max-width: 100%;
  max-height: 100%;
}
.product-preview--small .product__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: auto;
}
.product-preview--small .product__name {
  font-size: 20px;
  font-weight: 500;
}
.product-preview--small .product__name-var {
  font-weight: bold;
}
.product-preview--small .added-successfully {
  display: block;
  font-size: 15px;
  font-weight: 400;
}
.product-preview--small .price-and-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 8px;
}
.product-preview--small .price-and-count .count, .product-preview--small .price-and-count .price {
  font-size: 15px;
  font-weight: 400;
  margin-right: 15px;
}
.product-preview--small .price-and-count .count {
  color: #e9ecef;
}

.cat__info {
  margin-top: 20px;
}
.cat-sm-prevs {
  margin-bottom: 20px;
}
.cat__show-more {
  display: block;
  margin-top: 30px;
  color: #178FCF;
  text-decoration: underline;
}
.cat__show-more:hover, .cat__show-more:focus {
  color: #000000;
  text-decoration: underline;
}
.cat-sm-prev {
  min-height: 60px;
  background: white;
  -webkit-box-shadow: 0 11px 30px rgba(0, 77, 117, 0.1);
          box-shadow: 0 11px 30px rgba(0, 77, 117, 0.1);
  padding: 8px 15px;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #EAF2F6;
}
.cat-sm-prev.inverted {
  background: #178FCF;
  color: white;
}
.cat-sm-prev.inverted .part--right .arrow {
  background: url("/userfiles/images/icons.svg") no-repeat -122px -331px;
}
.cat-sm-prev.inverted:hover, .cat-sm-prev.inverted:focus {
  color: #000000;
}
.cat-sm-prev.inverted:hover .part--right .arrow, .cat-sm-prev.inverted:focus .part--right .arrow {
  background: url("/userfiles/images/icons.svg") no-repeat -82px -331px;
}
.cat-sm-prev:hover, .cat-sm-prev:focus {
  color: #178FCF;
}
.cat-sm-prev:hover .part--right .arrow, .cat-sm-prev:focus .part--right .arrow {
  background: url("/userfiles/images/icons.svg") no-repeat -122px -331px;
}
.cat-sm-prev .part--right {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cat-sm-prev .part--right .count {
  font-size: 16px;
  color: #959595;
  margin-right: 10px;
}
.cat-sm-prev .part--right .arrow {
  width: 36px;
  height: 35px;
  background: url("/userfiles/images/icons.svg") no-repeat -82px -331px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
}

.recommended-products {
  max-width: 1920px;
  margin: auto;
  background: white;
  padding: 60px 0;
}
.recommended-products .h2 {
  margin-top: 0;
}
.recommended-products + .cnt-form-section {
  padding-top: 20px;
}
.recommended-products .prd-slider-wrap:not(:last-of-type) {
  margin-bottom: 70px;
}
.recommended-products .bottom-products .prd-preview {
  max-width: 310px;
}
.recommended-products .bottom-products:not(.is-last) {
  margin-bottom: 70px;
}
.recommended-products .h3 {
  margin-top: 0;
}
.recommended-products .glide__custom-arrows .arrow--left, .recommended-products .glide__custom-arrows .arrow--right {
  width: 97px;
  height: 86px;
}
.recommended-products .glide__custom-arrows .arrow--left {
  background-position: -102px -373px;
}
.recommended-products .glide__custom-arrows .arrow--left:hover, .recommended-products .glide__custom-arrows .arrow--left:focus {
  background-position: -2px -373px;
}
.recommended-products .glide__custom-arrows .arrow--right {
  background-position: -302px -373px;
}
.recommended-products .glide__custom-arrows .arrow--right:hover, .recommended-products .glide__custom-arrows .arrow--right:focus {
  background-position: -202px -373px;
}

.prd__sm-vars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -8px;
  margin-left: -8px;
  margin-bottom: 15px;
}
.prd__sm-vars .prd__var-opt {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 16px);
          flex: 0 1 calc(50% - 16px);
  margin-right: 8px;
  margin-left: 8px;
  padding: 9px;
  border: 1px solid #EAF2F6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  margin-bottom: 16px;
}
.prd__sm-vars .prd__var-opt.is-selected, .prd__sm-vars .prd__var-opt:hover {
  border-color: #AACEE2;
}
.prd__sm-vars .prd__var-opt.is-selected .p-var-text {
  font-weight: 700;
}
.prd__sm-vars .prd__var-opt.is-selected .c-option-styled .c-wrapper__mark::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.prd__sm-vars .prd__var-opt .c-option-styled {
  margin-bottom: 0;
}
.prd__sm-vars .prd__var-opt .p-stock {
  margin-left: auto;
  color: #18B21D;
  font-size: 12px;
  font-weight: 500;
}
.prd__sm-vars .prd__var-opt .p-stock.not-aviable {
  color: initial;
}
.prd__sm-vars .prd__var-opt .p-var-text {
  margin-right: 10px;
  line-height: 1.2;
  font-size: 15px;
  font-weight: 500;
}
.prd__sm-vars .prd__var-opt .p-var-text span {
  font-size: 12px;
  font-weight: 400;
  display: block;
}
.prd-slider-wrap {
  position: relative;
  background: white;
}
.prd-slider-wrap .gradient {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: 150px;
}
.prd-slider-wrap .gradient--left {
  left: 0;
  background: -o-linear-gradient(left, white 0%, transparent 100%);
  background: -webkit-gradient(linear, left top, right top, from(white), to(transparent));
  background: linear-gradient(to right, white 0%, transparent 100%);
}
.prd-slider-wrap .gradient--right {
  right: 0;
  background: -o-linear-gradient(right, white 0%, transparent 100%);
  background: -webkit-gradient(linear, right top, left top, from(white), to(transparent));
  background: linear-gradient(to left, white 0%, transparent 100%);
}
.prd-slider-wrap .glide__custom-arrows {
  left: 90px;
  right: 90px;
}
.prd-slider-wrap .glide__custom-arrows .arrow--left {
  -webkit-transform-origin: 0% 50%;
      -ms-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
}
.prd-slider-wrap .glide__custom-arrows .arrow--right {
  -webkit-transform-origin: 100% 50%;
      -ms-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
}
.prd-slider .prd-preview {
  margin-top: 10px;
  margin-bottom: 0;
  background: white;
}
.prd__more-vars-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.prd__more-vars-row .btn-brand {
  margin-right: 40px;
}
.prd__more-vars-row span {
  margin: 10px 0;
  font-size: 15px;
}
.prd-counter {
  position: relative;
  padding: 0 16px;
}
.prd-counter .symbol {
  position: absolute;
  width: 35px;
  height: 30px;
  background: url("/userfiles/images/icons.svg") no-repeat;
  top: 3px;
  cursor: pointer;
}
.prd-counter .symbol--limit {
  -webkit-filter: grayscale(80%) brightness(85%);
          filter: grayscale(80%) brightness(85%);
  cursor: not-allowed;
}
.prd-counter .symbol--minus {
  left: 0px;
  background-position: -232px -725px;
}
.prd-counter .symbol--plus {
  right: 0px;
  background-position: -272px -725px;
}
.prd-counter__value {
  background: #EAF2F6;
  font-size: 14px;
  line-height: 1.2;
  width: 95px;
  padding: 10px 25px;
  text-align: center;
  outline: none;
  border: none;
}
.prd-detail .prd__price-original {
  font-size: 11px;
  text-decoration: line-through;
}
.prd-detail .prd__info {
  min-height: auto;
}
.prd-detail .prd__prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.2;
  margin-right: 15px;
}
.prd-detail .prd__prices--sale {
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.prd-detail .prd__prices--sale .prd__price {
  grid-column: 1;
}
.prd-detail .prd__prices--sale .prd__price-current {
  color: #FF5656;
}
.prd-detail .prd__prices--sale .discount-badge {
  width: 16px;
  height: 26px;
  display: block;
  background: #FF5656;
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1/-1;
  align-self: center;
  color: white;
  font-size: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  margin: 0;
}
.prd-detail .prd__prices--sale .discount-badge::before, .prd-detail .prd__prices--sale .discount-badge::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  top: 0;
  z-index: -1;
}
.prd-detail .prd__prices--sale .discount-badge::before {
  right: 100%;
  border-right: 7px solid #FF5656;
}
.prd-detail .prd__prices--sale .discount-badge::after {
  left: 100%;
  border-left: 7px solid #FF5656;
}
.prd-detail .prd__var-count {
  font-size: 17px;
  font-weight: 500;
}
.prd-detail .prd__bottom-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.prd-detail .prd__bottom-part .h3 {
  margin-top: 0;
  font-size: 20px;
  margin-bottom: 25px;
}
.prd-detail .prd__bottom-part .prd__download {
  margin-right: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 300px;
          flex: 0 1 300px;
}
.prd-detail .prd__actions-wrap {
  border: 1px solid #EAF2F6;
  -webkit-box-shadow: 0 11px 30px rgba(0, 77, 117, 0.1);
          box-shadow: 0 11px 30px rgba(0, 77, 117, 0.1);
  padding: 25px 25px 25px 30px;
  margin-bottom: 20px;
  background: white;
}
.prd-detail .prd__actions-wrap .h3:first-of-type {
  margin-top: 0;
}
.prd-detail .prd__add-to-basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.prd-detail .prd__add-to-basket .btn-basket {
  margin-top: 0;
  margin-bottom: 0;
}
.prd-detail .prd__add-to-basket .p-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
.prd-detail .prd__add-to-basket .p-right .prd__var-count {
  margin-right: 25px;
}
.prd-detail .prd__add-to-basket .p-right.direct-add .prd-counter {
  margin: 10px;
}
.prd-detail .prd__add-to-basket .p-right.direct-add .prd-counter__value {
  padding: 17px 25px 18px;
}
.prd-detail .prd__add-to-basket .p-right.direct-add .prd-counter .symbol {
  top: 11px;
}
.prd-detail .prd__add-to-basket .p-right.direct-add .btn-basket::before {
  width: 20px;
  height: 24px;
  background-position: 1px -178px;
}
.prd-detail .prd__add-to-basket .btn-basket-inverted {
  margin-right: 10px;
  padding: 14px 20px;
}
.prd-detail .prd__add-to-basket .btn-basket-inverted::before {
  content: "";
  display: inline-block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 19px;
  height: 18px;
  background: url("/userfiles/images/icons.svg") no-repeat 0 -161px;
}
.prd-detail .prd__add-to-basket .btn-basket {
  margin-left: auto;
  padding: 11px 30px 11px 20px;
}
.prd-detail .prd__add-to-basket .btn-basket.disabled {
  pointer-events: none;
  cursor: not-allowed;
  background: lightgray;
  border-color: lightgray;
}
.prd-detail .prd__add-to-basket .btn-basket.expired {
  max-width: 350px;
  width: 100%;
  background: #e43227;
  border-color: #e43227;
}
.prd-detail .prd__add-to-basket .btn-basket:not(.without-cart)::before {
  content: "";
  display: inline-block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 36px;
  height: 31px;
  background: url("/userfiles/images/icons.svg") no-repeat -273px -685px;
  margin-right: 8px;
}
.prd-detail .prd__image {
  height: 460px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
  width: 100%;
}
.prd-detail .prd__image .image-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.prd-detail .prd__image .image-overlay > span {
  font-size: 25px;
  font-weight: bold;
  color: #e43227;
  z-index: 1000;
}
.prd-detail .prd__text {
  margin-bottom: 40px;
}
.prd-detail .prd__text a {
  display: block;
  text-decoration: underline;
  color: #178FCF;
}
.prd-detail .prd__text a:hover, .prd-detail .prd__text a:focus {
  color: #004D75;
}
.prd-detail .prd__info {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.prd-detail .prd__info .p-table:not(:last-of-type) {
  margin-right: 25px;
}
.prd-detail .prd__info .p-table tr td {
  padding-right: 15px;
  font-size: 15px;
  color: #000000;
}
.prd-detail .prd__info .p-table tr td:first-of-type {
  color: #959595;
}
.prd-detail .prd__info .p-table tr td.stock-td {
  font-weight: 500;
  color: #18B21D;
}
.prd-detail .prd__info .p-table tr td.stock-td.pointer {
  cursor: pointer;
}
.prd-detail .prd__info .p-table tr td.stock-td.not-available {
  color: initial;
}
.prd-detail .prd__info .p-table tr td.stock-td.not-available.red {
  color: #FF5656;
}
.prd-detail .prd__info .p-table tr td.stock-td.not-available.yellow {
  color: #FFD256;
}
.prd-detail .prd__badges {
  left: 32px;
  top: 23px;
}
.prd-detail .prd__media-more {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.prd-detail .prd__more-images, .prd-detail .prd__video {
  color: #178FCF;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.prd-detail .prd__more-images:hover, .prd-detail .prd__more-images:focus, .prd-detail .prd__video:hover, .prd-detail .prd__video:focus {
  color: #004D75;
}
.prd-detail .prd__more-images::before, .prd-detail .prd__video::before {
  content: "";
  display: inline-block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  margin-right: 5px;
  background: url("/userfiles/images/icons.svg") no-repeat;
}
.prd-detail .prd__more-images {
  margin-right: 15px;
}
.prd-detail .prd__more-images::before {
  background-position: -64px -1px;
  width: 22px;
  height: 18px;
}
.prd-detail .prd__video::before {
  background-position: -93px -3px;
  width: 24px;
  height: 24px;
}
.prd-detail .prd__sm-image {
  width: 128px;
  height: 103px;
  padding: 8px;
  background: white;
  margin: 0 10px;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.prd-detail .prd__sm-image a {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.prd-detail .prd__sm-image img {
  max-width: 100%;
  max-height: 100%;
}
.prd-detail .prd__gallery {
  margin: 20px -10px 0 -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.prd__nav {
  width: 100%;
  border-bottom: 1px solid #EAF2F6;
  padding-top: 19px;
  background: white;
  margin: auto;
  z-index: 995;
}
.prd__nav.js--fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #178FCF;
  color: #fff;
  border-bottom: transparent;
}
.prd__nav.js--fixed-header .f-nav__item {
  color: #fff;
}
.prd__nav.js--fixed-header .f-nav__item:hover, .prd__nav.js--fixed-header .f-nav__item:focus {
  color: #EAF2F6;
}
.prd__nav.js--fixed-header .f-nav__item.is-active {
  border-bottom-color: #004D75;
}
.prd__nav-wrapper {
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.prd__nav .f-nav {
  margin-bottom: 0;
}
.prd__nav .prd__sm-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 15px;
  margin-right: 50px;
}
.prd__nav .prd__sm-desc .p-image {
  width: 60px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 10px;
}
.prd__nav .prd__sm-desc .p-image img {
  max-width: 100%;
  max-height: 100%;
}
.prd__nav .prd__sm-desc .p-text {
  line-height: 1.2;
}
.prd__nav .prd__sm-desc .p-text .h3 {
  font-size: 15px;
  margin: 0 0 5px 0;
}
.prd__norms {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 390px;
          flex: 0 1 390px;
}
.prd__norms .norms-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.prd__norm {
  color: white;
  font-size: 15px;
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 6px 9px;
  line-height: 1.2;
  background: #AACEE2;
}
.prd-list {
  margin-bottom: 40px;
}
.prd-list__visible-count {
  display: block;
  font-size: 15px;
  margin-bottom: 25px;
}
.prd__stock {
  color: #18B21D;
  font-size: 12px;
  font-weight: 700;
}
.prd__yellow {
  color: #FFD256;
  font-size: 12px;
  font-weight: 700;
}
.prd__red {
  color: #FF5656;
  font-size: 12px;
  font-weight: 700;
}
.prd__info {
  font-size: 13px;
  margin-bottom: 15px;
  min-height: 100px;
}
.prd__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.prd__t-wrap {
  width: 100%;
}
.prd__t-wrap .h3 {
  margin: 0 0 20px 0;
  font-size: 18px;
}
.prd__t-wrap .h3 a {
  text-decoration: underline;
  color: #178FCF;
}
.prd__t-wrap .h3 a:hover, .prd__t-wrap .h3 a:focus {
  color: #004D75;
}
.prd__t-wrap .btn-brand {
  margin: 0 15px 0 0;
}
.prd-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.prd__price-current {
  white-space: nowrap;
  font-size: 17px;
  font-weight: 700;
}
.prd__price-current span {
  font-size: 13px;
  font-weight: 400;
}
.prd__price-vat {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 400;
  color: #959595;
  display: block;
}
.prd__badges {
  position: absolute;
  left: 17px;
  top: 0;
}
.prd__image {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 220px;
  height: 220px;
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.prd__image:hover img, .prd__image:focus img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.prd__image img {
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  -o-transition: 0.3s transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
  max-width: 100%;
  max-height: 100%;
}
.prd-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 20px 25px 20px 0;
  border: 1px solid #EAF2F6;
  margin-bottom: 20px;
}
.prd-horizontal .breaker {
  display: none;
}
.prd-horizontal .prd__btn-wrap {
  margin-left: auto;
}
.prd-horizontal .prd__number {
  margin-right: 15px;
  color: #000000;
  margin-left: -18px;
  width: 70px;
  height: 61px;
  background: url("/userfiles/images/icons.svg") no-repeat -155px -686px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 16px;
}
.prd-horizontal .prd__prices {
  margin-right: 20px;
}
.prd-horizontal .prd__image {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
}
.prd-horizontal .prd__image a {
  width: 100%;
  height: 100%;
}
.prd-horizontal .prd__image img {
  max-width: 100%;
  max-height: 100%;
}
.prd-horizontal .prd__info {
  margin-right: 15px;
  min-height: auto;
  margin-bottom: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 330px;
          flex: 0 1 330px;
}
.prd-horizontal .prd__info .p-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.prd-horizontal .prd__info .p-bottom .prd__free-transport {
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.prd-horizontal .prd__info .p-bottom .prd__free-transport:not(.prd-horizontal .prd__info .p-bottom .prd__free-transport.first) {
  border-left: 1px solid #AACEE2;
  margin-left: 6px;
  padding-left: 9px;
}
.prd-horizontal .prd__info .p-bottom .prd__free-transport::before {
  content: "";
  display: inline-block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 19px;
  height: 16px;
  margin-right: 6px;
  background: url("/userfiles/images/icons.svg") no-repeat -20px -42px;
}
.prd-horizontal .prd__info .h3 {
  margin: 0 0 6px 0;
}
.prd-horizontal .prd__info .h3 a {
  color: #178FCF;
  text-decoration: underline;
}
.prd-horizontal .prd__info .h3 a:hover, .prd-horizontal .prd__info .h3 a:focus {
  color: #004D75;
}
.prd-horizontal .prd__badges {
  min-width: 190px;
  position: static;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 15px;
  margin-right: 20px;
}
.prd-horizontal .prd__badges .prd__badge:not(:last-of-type) {
  margin-right: 35px;
}
.prd-filter {
  padding: 45px 0;
  background: white;
}
.prd-filter .f-top-products {
  margin-bottom: 60px;
}
.prd-filter .f-top-products .h2 {
  margin-bottom: 30px;
}
.prd-filter .f-wrapper {
  margin-right: 35px;
  background: #F7FAFB;
  padding: 25px 25px;
}
.prd-filter .f-wrapper .h3 {
  font-size: 20px;
  margin: 0 0 15px 0;
}
.prd-filter .f-toggler {
  display: none;
}
.prd__badges .prd__badge {
  width: 28px;
  height: 46px;
  display: block;
  background: #AACEE2;
  position: relative;
  z-index: 1;
  margin-bottom: 6px;
  color: white;
  font-size: 13px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.prd__badges .prd__badge::before, .prd__badges .prd__badge::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 0;
  height: 0;
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
  top: 0;
  z-index: -1;
}
.prd__badges .prd__badge::before {
  right: 100%;
  border-right: 14px solid #AACEE2;
}
.prd__badges .prd__badge::after {
  left: 100%;
  border-left: 14px solid #AACEE2;
}
.prd__badges .prd__badge--discount {
  background: #FF5656;
}
.prd__badges .prd__badge--discount::before, .prd__badges .prd__badge--discount::after {
  border-right-color: #FF5656;
  border-left-color: #FF5656;
}
.prd__badges .prd__badge--new {
  background: #178FCF;
}
.prd__badges .prd__badge--new::before, .prd__badges .prd__badge--new::after {
  border-right-color: #178FCF;
  border-left-color: #178FCF;
}
.prd__badges .prd__badge--sale {
  color: #fff;
  background: #00344E;
  min-width: 28px;
  width: auto;
}
.prd__badges .prd__badge--sale::before, .prd__badges .prd__badge--sale::after {
  border-right-color: #00344E;
  border-left-color: #00344E;
}
.prd-catalog {
  padding: 60px 0 80px;
  background: white;
}
.prd-catalog .h2 {
  text-align: center;
  margin-bottom: 35px;
  margin-top: 0;
}
.prd-catalog .h3 {
  margin-top: 0;
  margin-bottom: 0;
}
.prd-catalog__cat {
  cursor: pointer;
  padding: 30px 30px;
  border: #EAF2F6 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: white;
  position: relative;
  height: calc(100% - 25px);
  margin-bottom: 25px;
}
.prd-catalog__cat:hover, .prd-catalog__cat:focus {
  -webkit-box-shadow: 0 11px 30px rgba(0, 77, 117, 0.1);
          box-shadow: 0 11px 30px rgba(0, 77, 117, 0.1);
}
.prd-catalog__cat:hover .c-bottom .h3, .prd-catalog__cat:focus .c-bottom .h3 {
  color: #178FCF;
}
.prd-catalog__cat:hover .c-bottom__arrow, .prd-catalog__cat:focus .c-bottom__arrow {
  background-position: -170px -250px;
}
.prd-catalog__cat .c-image {
  width: 100%;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.prd-catalog__cat .c-image img {
  max-width: 100%;
  max-height: 100%;
}
.prd-catalog__cat .c-bottom {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
  line-height: 1.2;
}
.prd-catalog__cat .c-bottom .c-subcats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  pointer-events: all;
  padding-top: 10px;
}
.prd-catalog__cat .c-bottom .c-subcats a {
  margin-right: 10px;
  font-size: 15px;
  color: #000000;
  text-decoration: underline;
}
.prd-catalog__cat .c-bottom .c-subcats a:hover, .prd-catalog__cat .c-bottom .c-subcats a:focus {
  color: #178FCF;
}
.prd-catalog__cat .c-bottom__arrow {
  cursor: pointer;
  pointer-events: all;
  width: 52px;
  height: 45px;
  background: url("/userfiles/images/icons.svg") no-repeat;
  display: block;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-position: -112px -250px;
}
.prd-catalog__cat .c-bottom__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.prd-catalog__cat .c-bottom__left .h3 {
  color: #000000;
  font-weight: 700;
  font-size: 22px;
  pointer-events: none;
}
.prd-preview {
  position: relative;
  border: 1px solid #EAF2F6;
  padding: 16px;
  text-align: center;
  margin-bottom: 20px;
}
.prd-preview .prd__vars {
  position: absolute;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: -10px;
}
.prd-preview .prd__var {
  width: auto;
  height: 20px;
  display: block;
  background: #8B979D;
  position: relative;
  z-index: 1;
  margin: 0px 6px 4px 6px;
  font-size: 13px;
  font-weight: 400;
  color: white;
  position: relative;
  padding-left: 4px;
  padding-right: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
}
.prd-preview .prd__var::before, .prd-preview .prd__var::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  top: 0;
  z-index: -1;
}
.prd-preview .prd__var::before {
  right: 100%;
  border-right: 5px solid #8B979D;
}
.prd-preview .prd__var::after {
  left: 100%;
  border-left: 5px solid #8B979D;
}
.prd-preview .prd__var.copper, .prd-preview .prd__var.med {
  background: #E48254;
}
.prd-preview .prd__var.copper::before, .prd-preview .prd__var.copper::after, .prd-preview .prd__var.med::before, .prd-preview .prd__var.med::after {
  border-left-color: #E48254;
  border-right-color: #E48254;
}
.prd-preview .prd__var.steel, .prd-preview .prd__var.ocel {
  background: #8B979D;
}
.prd-preview .prd__var.steel::before, .prd-preview .prd__var.steel::after, .prd-preview .prd__var.ocel::before, .prd-preview .prd__var.ocel::after {
  border-left-color: #8B979D;
  border-right-color: #8B979D;
}
.prd-preview .prd__var.mosaz {
  background: #f4b756;
}
.prd-preview .prd__var.mosaz::before, .prd-preview .prd__var.mosaz::after {
  border-left-color: #f4b756;
  border-right-color: #f4b756;
}
.prd-preview .prd__var.nerez {
  background: #c5d1d8;
}
.prd-preview .prd__var.nerez::before, .prd-preview .prd__var.nerez::after {
  border-left-color: #c5d1d8;
  border-right-color: #c5d1d8;
}
.prd-preview .prd__var.hlinik {
  background: #75c3e1;
}
.prd-preview .prd__var.hlinik::before, .prd-preview .prd__var.hlinik::after {
  border-left-color: #75c3e1;
  border-right-color: #75c3e1;
}
.prd-preview .prd__var.polyamid {
  background: #76b54b;
}
.prd-preview .prd__var.polyamid::before, .prd-preview .prd__var.polyamid::after {
  border-left-color: #76b54b;
  border-right-color: #76b54b;
}
.prd-preview .prd__t-wrap .h3 {
  font-size: 16px;
}
.prd-preview .prd__t-wrap .btn-brand {
  margin: 0 0 0 15px;
}
.prd-preview .prd__image {
  width: 100%;
  height: 260px;
  margin-bottom: 10px;
}
.prd-preview .prd__badges {
  right: 14px;
  left: auto;
}
.prd-preview .prd__prices {
  text-align: left;
  line-height: 1.2;
}
.prd-variants {
  background: white;
  padding: 50px 0;
}
.prd-variants .content {
  max-width: 860px;
}
.prd-variants-list {
  display: table;
  width: 100%;
}
.prd-variants-list .v-label {
  padding: 10px 9px;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: #959595;
  display: table-cell;
}
.prd-variants-list .v-labels {
  text-align: left;
  display: table-row;
}
.prd-variants-list .v-labels-group {
  display: table-header-group;
}
.prd-variants-list .v-items {
  display: table-row-group;
}
.prd-variants-list .v-text {
  vertical-align: middle;
  font-size: 14px;
  padding: 10px 9px;
  display: table-cell;
}
.prd-variants-list .v-text.green {
  color: #18B21D;
}
.prd-variants-list .v-text.yellow {
  color: #FFD256;
}
.prd-variants-list .v-text.red, .prd-variants-list .v-text__red {
  color: #FF5656;
}
.prd-variants-list .v-text__price {
  min-width: 95px;
}
.prd-variants-list .v-text__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.prd-variants-list .v-text .discount-badge {
  width: 16px;
  height: 26px;
  display: block;
  background: #FF5656;
  position: relative;
  z-index: 1;
  color: white;
  font-size: 17px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  margin: 0 10px;
}
.prd-variants-list .v-text .discount-badge::before, .prd-variants-list .v-text .discount-badge::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  top: 0;
  z-index: -1;
}
.prd-variants-list .v-text .discount-badge::before {
  right: 100%;
  border-right: 7px solid #FF5656;
}
.prd-variants-list .v-text .discount-badge::after {
  left: 100%;
  border-left: 7px solid #FF5656;
}
.prd-variants-list .v-text .prd-counter {
  margin-right: 10px;
}
.prd-variants-list .v-text .add-to-basket-btn {
  width: 36px;
  height: 36px;
  background: #18B21D;
  position: relative;
}
.prd-variants-list .v-text .add-to-basket-btn:hover, .prd-variants-list .v-text .add-to-basket-btn:focus {
  background: #0f6f12;
}
.prd-variants-list .v-text .add-to-basket-btn::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  left: 7px;
  top: 9px;
  width: 20px;
  height: 18px;
  background: url("/userfiles/images/icons.svg") no-repeat 0px -181px;
}
.prd-variants-list .v-text .request-basket-btn {
  width: 36px;
  height: 36px;
  background: #18B21D;
  position: relative;
}
.prd-variants-list .v-text .request-basket-btn:hover, .prd-variants-list .v-text .request-basket-btn:focus {
  background: #0f6f12;
}
.prd-variants-list .v-text__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.prd-variants-list .v-text__row .btn-brand {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.prd-variants-list .v-text--price {
  font-size: 14px;
  white-space: nowrap;
}
.prd-variants-list .v-text--price .p-vat {
  display: block;
  color: #959595;
}
.prd-variants-list .v-text--name {
  max-width: 185px;
}
.prd-variants-list .v-text--to-basket {
  text-align: right;
}
.prd-variants-list .v-item {
  display: table-row;
  border-bottom: 1px solid #EAF2F6;
}
.prd-variants-list .v-item:not(:last-of-type) .v-text {
  border-bottom: 1px solid #EAF2F6;
}
.prd-variants-list .v-item:first-of-type .v-text {
  border-top: 1px solid #EAF2F6;
}
.prd-variants-list .v-item:nth-of-type(odd) {
  background: white;
}
.prd-variants-list .v-item:nth-of-type(even) {
  background: #F7FAFB;
}
.prd-variants-list .v-item.cursor-pointer {
  cursor: pointer;
}
.prd-variants__filter {
  background: #F7FAFB;
  border: 1px solid #EAF2F6;
  margin-bottom: 30px;
}
.prd-variants__filter .h2 {
  margin-top: 0;
}
.prd-variants .f-wrap {
  padding: 25px;
}
.prd-variants .f-lower {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.prd-variants .f-lower .f-filter-wrapper {
  max-width: 180px;
  width: 100%;
  margin-right: 60px;
}
.prd-variants .f-lower .f-filter-wrapper:first-of-type {
  margin-right: 30px;
}
.prd-variants .f-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.prd-variants .f-filter-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -40px;
}
.prd-variants .f-filter-row .f-filter-wrapper {
  max-width: 240px;
  width: 100%;
  margin-right: 40px;
}
.prd-variants .f-search {
  margin-right: 70px;
  position: relative;
  max-width: 380px;
  width: 100%;
}
.prd-variants .f-search span {
  font-size: 16px;
  color: #959595;
  display: block;
}
.prd-variants .f-search::before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  left: 21px;
  top: 27px;
  content: "";
  width: 18px;
  height: 19px;
  background: url("/userfiles/images/icons.svg") no-repeat -171px -1px;
}
.prd-variants .f-search .c-input {
  margin-bottom: 12px;
  padding: 25px 15px 25px 55px;
}

.seasonal-products {
  background: white;
  padding: 80px 0;
}
.seasonal-products .h2 {
  margin-top: 0;
  text-align: center;
  margin-bottom: 55px;
}

.section--categories-additional {
  padding: 55px 0 65px 0;
}
.section--categories-additional.has-background {
  background: #EAF2F6;
}
.section--categories-additional .c-info {
  margin-bottom: 60px;
}
.section--categories-additional .c-info .h2 {
  margin-top: 0;
}
.free-shipping-bar-wrapper {
  width: 100%;
  margin-bottom: 40px;
}
.free-shipping-bar-wrapper .p-text {
  margin-bottom: 15px;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.free-shipping-bar-wrapper .p-text__info {
  margin-bottom: 0;
}
.free-shipping-bar-wrapper .p-text__price {
  text-align: right;
}
.free-shipping-bar-wrapper .progress {
  height: 6px;
  background: #AACEE2;
  border-radius: 0;
  overflow: visible;
}
.free-shipping-bar-wrapper .progress-bar {
  background: #178FCF;
  position: relative;
}
.free-shipping-bar-wrapper .progress-bar::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  right: -24px;
  top: -17px;
  width: 48px;
  height: 41px;
  background: url("/userfiles/images/icons.svg") no-repeat -312px -685px;
}

@media all and (max-width: 1420px) {
  .f-nav__item {
    padding: 9px 4px;
    margin: 0 10px;
    font-size: 14px;
  }

  .prd-detail .prd__bottom-part .prd__download {
    margin-right: 20px;
  }
  .prd-detail .prd__image {
    height: 350px;
  }
  .prd-detail .prd__sm-image {
    width: 82px;
    height: 82px;
  }
  .prd-horizontal .btn-color-3-inverted {
    font-size: 13px;
    padding: 12px 16px;
  }
  .prd-horizontal .h3 {
    font-size: 15px;
  }
  .prd-horizontal .prd__info {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 260px;
            flex: 0 1 260px;
  }
  .prd-filter .f-toggler {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: relative;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 25px;
    padding-right: 40px;
  }
  .prd-filter .f-toggler::after {
    content: "";
    display: block;
    position: absolute;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    width: 8px;
    height: 8px;
    right: 25px;
    top: 15px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .prd-filter .f-wrapper {
    margin-bottom: 30px;
    margin-right: 0;
    display: none;
  }
  .prd__price-current {
    font-size: 15px;
  }
  .prd-detail .prd__norms {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 310px;
            flex: 0 1 310px;
  }
  .prd-detail .prd__norm {
    font-size: 13px;
  }
  .prd-detail .prd__bottom-part .prd__download {
    margin-right: 35px;
  }
  .prd-detail .prd__bottom-part .prd__download .download-list__item {
    font-size: 13px;
  }
  .prd-detail .prd__var-count {
    font-size: 15px;
  }
  .prd-detail .prd__add-to-basket .p-right .prd__var-count {
    margin-right: 15px;
  }
  .prd-detail .prd__add-to-basket .btn-basket {
    padding: 10px 13px 10px 13px;
    font-size: 14px;
  }
  .prd-detail .prd__actions-wrap {
    padding: 15px 15px 15px 15px;
  }
  .prd-detail .prd__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .prd-detail .prd__info .p-table tr td {
    font-size: 13px;
  }
  .prd-detail .prd__info .p-table:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .prd-preview .prd__price-current {
    font-size: 15px;
  }
  .prd-preview .prd__price-vat {
    font-size: 11px;
    margin-top: 2px;
  }
  .prd-preview .btn-color-3-inverted {
    padding: 11px 15px;
  }
}
@media all and (max-width: 1000px) {
  .section--categories-additional {
    padding-bottom: 40px;
  }
  .section--categories-additional .c-info {
    margin-bottom: 30px;
  }

  .recommended-products {
    padding: 30px 0;
  }

  .prd-slider-wrap:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .prd-slider-wrap .gradient {
    width: 80px;
  }
  .prd-slider-wrap .glide__custom-arrows {
    left: 10px;
    right: 10px;
  }
  .prd-slider-wrap .glide__custom-arrows .arrow--left, .prd-slider-wrap .glide__custom-arrows .arrow--right {
    -webkit-transform: scale(0.6);
        -ms-transform: scale(0.6);
            transform: scale(0.6);
  }

  .cat-sm-prev {
    font-size: 14px;
  }
  .cat-sm-prev .part--right .count {
    font-size: 14px;
  }

  .f-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .f-nav__label {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .f-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .f-nav__item {
    padding: 5px 4px;
    margin: 0;
  }
  .f-filter__label {
    font-size: 14px;
    padding: 6px 0;
  }
  .f-filter__label:not(.always-expanded)::after {
    top: -4px;
  }

  .seasonal-products {
    padding: 40px 0;
  }

  .prd-horizontal {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .prd-horizontal .breaker {
    display: block;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    height: 0;
  }
  .prd-horizontal .prd__badges {
    padding-left: 30px;
    min-width: 210px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .prd-horizontal .prd__info, .prd-horizontal .prd__image, .prd-horizontal .prd__number {
    margin-bottom: 20px;
  }
  .prd-detail .prd__bottom-part .h3__bottom-part {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .prd-detail .prd__bottom-part .h3__bottom-part .prd__norms, .prd-detail .prd__bottom-part .h3__bottom-part .prd__download {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .prd-detail .prd__gallery {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 20px;
  }
  .prd-detail .prd__image {
    height: 340px;
  }
  .prd-detail .prd__sm-image {
    height: 82px;
  }
  .prd__nav .prd__sm-desc {
    margin-right: 0;
  }
  .prd__nav .prd__sm-desc .p-text .h3 {
    font-size: 14px;
  }
  .prd__price-current {
    font-size: 13px;
  }
  .prd__nav-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .prd-variants {
    padding: 30px 0;
  }
  .prd-variants .h2 {
    font-size: 17px;
  }
  .prd-variants .f-wrap {
    padding: 15px;
  }
  .prd-variants .f-search::before {
    left: 12px;
    top: 14px;
  }
  .prd-variants .f-search span {
    font-size: 12px;
  }
  .prd-variants .f-search .c-input {
    font-size: 13px;
    margin-bottom: 12px;
    padding: 14px 10px 14px 40px;
  }
  .prd-variants-list .prd-counter {
    padding: 0 9px;
  }
  .prd-variants-list .prd-counter .symbol {
    -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
            transform: scale(0.7);
  }
  .prd-variants-list .prd-counter .symbol--minus {
    left: -7px;
  }
  .prd-variants-list .prd-counter .symbol--plus {
    right: -7px;
  }
  .prd-variants-list .prd-counter__value {
    width: 75px;
    font-size: 11px;
  }
  .prd-variants-list .v-text {
    padding: 7px 5px;
    font-size: 11px;
  }
  .prd-variants-list .v-text .add-to-basket-btn {
    width: 33px;
    height: 33px;
  }
  .prd-variants-list .v-text .add-to-basket-btn::after {
    left: 6px;
    top: 7px;
  }
  .prd-variants-list .v-text .add-to-basket-btn .request-basket-btn {
    width: 33px;
    height: 33px;
  }
  .prd-variants-list .v-text--price {
    font-size: 11px;
  }
  .prd-variants-list .v-label {
    padding: 7px 5px;
    font-size: 10px;
  }
  .prd__more-vars-row span {
    font-size: 13px;
  }
  .prd-catalog__cat .c-bottom__left .h3 {
    font-size: 18px;
  }
  .prd-catalog__cat .c-subcats a {
    font-size: 12px;
  }
  .prd-preview .prd__image {
    height: 200px;
  }
}
@media all and (max-width: 798px) {
  .prd-slider-wrap .prd-preview {
    margin-left: 0;
  }

  .free-shipping-bar-wrapper .p-text__info {
    font-size: 13px;
  }
  .free-shipping-bar-wrapper .p-text__price {
    font-size: 13px;
  }

  .prd__sm-vars {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .prd-slider-wrap .gradient {
    width: 20px;
  }
  .prd-detail .prd__prices {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .prd-detail .prd__bottom-part {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .prd-detail .prd__bottom-part .prd__norms, .prd-detail .prd__bottom-part .prd__download {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .prd__actions-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .prd__actions-wrap .prd__add-to-basket {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .prd__actions-wrap .prd__add-to-basket .btn-basket {
    margin-right: auto;
  }
  .prd__actions-wrap .prd__add-to-basket .p-right {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: auto;
  }
  .prd__actions-wrap .prd__add-to-basket .p-right .prd__var-count {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .prd-catalog__cat {
    padding: 15px 15px;
  }
  .prd-catalog__cat .c-bottom__left .h3 {
    font-size: 18px;
  }
  .prd-catalog__cat .c-bottom__arrow {
    display: none;
  }
  .prd-preview {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  .prd-preview .btn-color-3-inverted {
    padding: 8px 7px;
    font-size: 12px;
  }
}
@media all and (max-width: 650px) {
  .prd-horizontal {
    padding-left: 25px;
  }
  .prd-horizontal .prd__info {
    font-size: 11px;
  }
  .prd-horizontal .prd__info .h3 {
    margin: 0 0 9px 0;
  }
  .prd-horizontal .prd__stock {
    font-size: 11px;
  }
  .prd-horizontal .prd__btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .prd-horizontal .prd__prices {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .prd-detail .prd__gallery {
    margin: 13px -7px 20px -7px;
  }
}
.prd__request-banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ffffff;
  border-radius: 0;
  padding: 24px 32px 24px 48px;
  margin-top: 8px;
  margin-bottom: 24px;
  border: 1px solid #EAF2F6;
  -webkit-box-shadow: 0 11px 30px rgba(0, 77, 117, 0.1);
          box-shadow: 0 11px 30px rgba(0, 77, 117, 0.1);
  overflow: visible;
}
.prd__request-banner-icon {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 1;
}
.prd__request-banner-icon svg {
  display: block;
}
.prd__request-banner-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #37474f;
}

.btn-basket--request {
  background-color: #2e7d32;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border: none;
  padding: 14px 36px;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
}
.btn-basket--request:hover {
  background-color: #1b5e20;
  color: #fff;
}
.btn-basket--request::before {
  display: none;
}

.request-basket-btn.btn-basket--request {
  padding: 10px 10px;
  font-size: 13px;
  border-radius: 0;
  white-space: nowrap;
  min-width: 140px;
}

@media all and (max-width: 500px) {
  .prd-detail .prd__sm-image {
    height: 15vw;
  }
}
.article__wrap-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.article__image {
  height: 220px;
  width: 100%;
  position: relative;
  display: block;
}
.article__lead {
  margin-bottom: 0;
  font-size: 15px;
}
.article__cat {
  font-size: 15px;
  padding: 0 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  border-top: 1px solid #AACEE2;
  border-bottom: 1px solid #AACEE2;
  position: relative;
  color: #178FCF;
}
.article__cat:hover, .article__cat:focus {
  color: #000000;
}
.article__cat::after, .article__cat::before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 9px;
  height: 29px;
  top: 0;
  background: url("/userfiles/images/icons.svg") no-repeat -21px -298px;
}
.article__cat::before {
  right: 100%;
  background-position: -3px -298px;
}
.article__cat::after {
  left: 100%;
  background-position: -21px -298px;
}
.article__date {
  font-size: 15px;
  color: #959595;
  margin-right: 25px;
}
.article__author-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 200px;
  text-align: center;
}
.article__author-wrap:not(.not-link):hover .atr__image, .article__author-wrap:not(.not-link):focus .atr__image {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.article__author-wrap:not(.not-link):hover .atr__name, .article__author-wrap:not(.not-link):focus .atr__name {
  color: #178FCF;
}
.article__author-wrap .atr__image {
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 120px;
  height: 100px;
  margin-top: auto;
  margin-bottom: 15px;
}
.article__author-wrap .atr__name {
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  max-width: 100px;
}
.article__author-wrap .atr__name span {
  display: block;
  text-transform: uppercase;
  color: #959595;
  font-size: 13px;
}
.article__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 50px;
}
.article__text-wrap {
  margin-right: 30px;
}
.article__text-wrap .btn-brand {
  margin-bottom: 0;
  margin-top: 25px;
}
.article__text-wrap .h2 {
  text-align: left;
  font-size: 22px;
  font-weight: 500;
  margin: 15px 0 20px;
}
.article__text-wrap .h2 a {
  color: #178FCF;
}
.article__text-wrap .h2 a:hover, .article__text-wrap .h2 a:focus {
  color: #004D75;
}

.section--art-author {
  border: 1px solid #EAF2F6;
  display: block;
  padding: 35px;
  margin: 35px 0;
}
.section--art-author:hover, .section--art-author:focus {
  color: #000000;
}
.section--art-author p {
  margin-bottom: 0;
}
.section--art-author .atr__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}
.section--art-author .atr__upper .btn-brand {
  margin: 0;
}
.section--art-author .atr__upper .h2 {
  margin-top: 10px;
  margin-right: 15px;
  margin-bottom: 10px;
}
.section--art-author .atr__text {
  max-width: 640px;
}
.section--art-author .atr__text .h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
}
.section--art-author .atr__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section--art-author .atr__image {
  width: 120px;
  height: 100px;
  margin-right: 27px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.section--fb-like {
  background: #EAF2F6;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
  margin: 45px 0;
}
.section--fb-like:hover, .section--fb-like:focus {
  color: #000000;
}
.section--fb-like .h2 {
  padding-left: 10px;
  margin-right: 20px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
}
.section--fb-like .btn-brand {
  margin-left: auto;
}
.section--blog-detail {
  padding-bottom: 70px;
}
.section--blog-posts {
  background: white;
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}
.section--blog-posts.has-border-top {
  border-top: 1px solid #EAF2F6;
}
.section--blog-posts .body-gradient {
  z-index: 0;
}
.section--blog-posts__heading {
  margin-top: 0;
  margin-bottom: 55px;
  text-align: center;
}

.blog-outline {
  margin-bottom: 35px;
  margin-top: 45px;
}
.blog-outline__list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.blog-outline__item {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.blog-outline__item::before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 10px;
  height: 10px;
  background: url("/userfiles/images/icons.svg") no-repeat 0px -679px;
  left: 0px;
  top: 5px;
}
.blog-outline__link {
  color: #000000;
}
.blog-outline__link:hover, .blog-outline__link:focus {
  color: #178FCF;
  text-decoration: underline;
}
.blog-outline .h3 {
  margin-top: 0;
  margin-bottom: 20px;
}
.blog-detail-content {
  padding-left: 40px;
  padding-top: 30px;
  padding-right: 25px;
}
.blog-detail-content .no-h-margin {
  margin-left: -40px;
  margin-right: -25px;
}
.blog-labels {
  margin: 50px 0 40px;
  max-width: 295px;
}
.blog-labels .h3 {
  margin-top: 0;
  margin-bottom: 20px;
}
.blog-labels__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog-labels__list a {
  display: block;
  font-size: 15px;
  color: #178FCF;
  text-decoration: underline;
  margin-right: 15px;
  margin-bottom: 10px;
}
.blog-labels__list a:hover, .blog-labels__list a:focus {
  color: #004D75;
}
.blog-article {
  position: relative;
  background: white;
  border: 1px solid #EAF2F6;
  -webkit-box-shadow: 0 11px 30px rgba(0, 77, 117, 0.1);
          box-shadow: 0 11px 30px rgba(0, 77, 117, 0.1);
  margin-bottom: 60px;
}
.blog-article.blog-article--full .article__image {
  height: 312px;
}
.blog-article.odd {
  margin-right: 35px;
}
.blog-article.even {
  margin-left: 35px;
}
.blog-article .article__image {
  position: relative;
  display: block;
}

@media all and (max-width: 1420px) {
  .blog-detail-content {
    padding-left: 40px;
    padding-top: 30px;
    padding-right: 40px;
  }
  .blog-detail-content .no-h-margin {
    margin-left: -40px;
    margin-right: -40px;
  }
  .blog-article.blog-article--full .article__bottom {
    padding: 25px 25px;
  }
  .blog-article.blog-article--full .article__image {
    height: 252px;
  }

  .section--blog-posts .blog-article.odd, .section--blog-posts .blog-article.even {
    margin-left: 0;
    margin-right: 0;
  }
  .section--blog-posts .blog-article .article__author-wrap .atr__name {
    font-size: 13px;
  }
  .section--blog-posts .blog-article .article__author-wrap .atr__image {
    width: 90px;
    height: 80px;
  }
  .section--blog-posts .blog-article .article__lead {
    font-size: 13px;
  }
  .section--blog-posts .blog-article .article__text-wrap .h2 {
    font-size: 19px;
  }
  .section--blog-posts .blog-article .article__date {
    font-size: 13px;
  }
  .section--blog-posts .blog-article .article__cat {
    font-size: 13px;
  }
  .section--blog-posts .blog-article .article__bottom {
    padding: 30px 30px;
  }
}
@media all and (max-width: 1000px) {
  .section--fb-like {
    margin: 25px 0;
  }
  .section--fb-like .h2 {
    font-size: 20px;
  }
  .section--blog-posts {
    padding: 40px 0;
  }
  .section--blog-posts__heading {
    margin-bottom: 35px;
  }
  .section--blog-posts .blog-article.odd, .section--blog-posts .blog-article.even {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-detail-content {
    padding-left: 20px;
    padding-top: 20px;
    padding-right: 20px;
  }
  .blog-detail-content .no-h-margin {
    margin-left: 0;
    margin-right: 0;
  }
  .blog-detail-content .content .content-product .prd__badges {
    padding-left: 15px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .blog-article .article__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .blog-article .article__author-wrap {
    background: white;
    padding-bottom: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0;
  }
  .blog-article .article__author-wrap .atr__image {
    margin-bottom: 0;
    width: 80px;
    height: 70px;
    margin-right: 15px;
  }
  .blog-article .article__author-wrap .atr__name {
    text-align: left;
  }
}
@media all and (max-width: 798px) {
  .blog-detail-content {
    padding-left: 0px;
    padding-top: 20px;
    padding-right: 0px;
  }
  .blog-article .article__date {
    font-size: 13px;
    margin: 6px 16px 6px 0;
  }
  .blog-article .article__wrap-upper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .blog-article .article__bottom {
    padding: 15px 15px;
  }

  .section--art-author {
    padding: 15px;
  }
  .section--art-author .atr__image {
    margin-bottom: 15px;
  }
  .section--art-author .atr__detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .section--blog-posts .blog-article .article__bottom {
    padding: 15px 15px;
  }
  .section--fb-like {
    padding: 15px 25px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .section--fb-like .h2 {
    padding-left: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
  }
  .section--fb-like .btn-brand {
    margin-left: 0;
  }
}
.newsletter-box {
  background: #004D75;
  padding: 25px;
  color: white;
  margin: 35px 0;
  max-width: 295px;
}
.newsletter-box .input-btn-group {
  margin-right: -8px;
  margin-left: -8px;
}
.newsletter-box .input-btn-group input {
  min-width: 0;
  width: 100%;
}
.newsletter-box .gdpr {
  margin-top: 15px;
  margin-bottom: 0;
  max-width: 178px;
  line-height: 1.2;
}
.newsletter-box .gdpr a {
  color: white;
  text-decoration: underline;
}
.newsletter-box .gdpr a:hover, .newsletter-box .gdpr a:focus {
  color: #EAF2F6;
}
.newsletter-box .h3 {
  color: white;
  margin-top: 0;
  margin-bottom: 15px;
}
.newsletter-box .nl__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.newsletter-box .nl__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: -30px;
}
.newsletter-box .nl__bottom {
  position: relative;
  z-index: 3;
}
.newsletter-box p {
  margin-top: 0;
  font-size: 13px;
  color: #AACEE2;
  margin-right: 12px;
}

.nl__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
  z-index: 2;
}
.nl__mail {
  width: 100%;
}
.nl__image {
  z-index: -1;
}
.nl__left .h2 {
  margin-top: 0;
  margin-bottom: 20px;
}
.nl__info {
  font-size: 15px;
  color: #AACEE2;
}
.nl__center {
  position: relative;
  width: 100%;
  max-width: 420px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}
.nl__center .gdpr {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  color: #AACEE2;
}
.nl__center .gdpr a {
  color: white;
  text-decoration: underline;
}
.nl__center .gdpr a:hover, .nl__center .gdpr a:focus {
  color: #AACEE2;
}
.nl__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  height: 100%;
}
.nl__socials .h3 {
  font-size: 20px;
  max-width: 200px;
  margin-right: 25px;
}
.nl__socials-item {
  width: 71px;
  height: 63px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: url("/userfiles/images/icons.svg") no-repeat -45px -684px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  -o-transition: 0.3s transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
  position: relative;
}
.nl__socials-item:not(:last-of-type) {
  margin-right: 15px;
}
.nl__socials-item::after {
  content: "";
  display: block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 19px;
  height: 36px;
  background: url("/userfiles/images/icons.svg") no-repeat 0px 0px;
}
.nl__socials-item.instagram::after {
  width: 31px;
  background-position: -26px 0;
}
.nl__socials-item:hover, .nl__socials-item:focus {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.nl__socials::before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  top: 0px;
  bottom: 0px;
  width: 1px;
  left: -60px;
  background: #20749F;
}

.section--newsletter {
  background: #004D75;
  color: white;
  padding: 60px 0;
  overflow: hidden;
  min-height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section--newsletter .nl__left {
  margin-right: 120px;
  max-width: 380px;
}
.section--newsletter .nl__image {
  position: absolute;
  right: calc(100% - 45px);
  top: calc(100% - 160px);
}
.section--newsletter .input-btn-group {
  margin-right: 0;
  margin-bottom: 10px;
  padding-left: 50px;
}
.section--newsletter .input-btn-group::before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 24px;
  left: 19px;
  background: url("/userfiles/images/icons.svg") no-repeat -314px -5px;
  top: 20px;
  height: 21px;
}
.section--newsletter .input-btn-group input {
  min-width: unset;
}

@media all and (max-width: 1420px) {
  .section--newsletter {
    padding: 40px 0;
  }
  .section--newsletter .nl__image {
    position: absolute;
    right: calc(100% - 85px);
    top: calc(100% - 110px);
  }
  .section--newsletter .nl__socials {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .section--newsletter .nl__socials::before {
    content: none;
  }
}
@media all and (max-width: 1000px) {
  .section--newsletter .nl__image {
    display: none;
  }
  .section--newsletter .nl__socials .h3 {
    max-width: 160px;
  }
}
@media all and (max-width: 798px) {
  .nl__center .input-btn-group .btn-brand {
    padding: 9px 13px;
  }

  .section--newsletter {
    padding: 30px 0;
  }
  .section--newsletter .input-btn-group input {
    min-width: 10px;
  }
  .section--newsletter .nl__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
  .section--newsletter .nl__left {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .section--newsletter .nl__socials {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .section--newsletter .nl__socials-item {
    -webkit-transform: scale(0.85);
        -ms-transform: scale(0.85);
            transform: scale(0.85);
  }
  .section--newsletter .nl__socials-item:not(:last-of-type) {
    margin-right: 5px;
  }
  .section--newsletter .nl__socials .h3 {
    font-size: 17px;
    margin-right: 5px;
  }
}
.section--footer {
  background: white;
  padding: 90px 0;
  color: white;
  background: #00344E;
}
.section--footer .h3 {
  margin-top: 0;
}
.section--footer .f__copyright {
  margin-top: 80px;
  font-size: 15px;
  color: #AACEE2;
  text-align: right;
}
.section--footer .f__copyright a {
  color: white;
}
.section--footer .f__copyright a:hover, .section--footer .f__copyright a:focus {
  text-decoration: underline;
}
.section--footer .f__nav {
  list-style-type: none;
  margin-top: 40px;
  padding-left: 0;
}
.section--footer .f__nav li a {
  display: block;
  color: #AACEE2;
  font-size: 15px;
  margin-bottom: 20px;
}
.section--footer .f__nav li a:hover, .section--footer .f__nav li a:focus {
  color: white;
}
.section--footer .f__quick-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section--footer .h3 {
  font-size: 21px;
  margin-bottom: 20px;
}
.section--footer .cnt-card {
  max-width: 320px;
  width: 100%;
  margin: 20px 0;
  background: #00344E;
}
.section--footer .cnt-card__label {
  background: #00344E;
}
.section--footer .cnt-card__item {
  color: white;
}
.section--footer .cnt-card__item a {
  color: white;
}
.section--footer .cnt-card__item a:hover, .section--footer .cnt-card__item a:focus {
  color: #AACEE2;
}

@media all and (max-width: 1420px) {
  .section--footer .f__copyright {
    margin-top: 30px;
  }
  .section--footer .f__quick-contacts {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media all and (max-width: 1000px) {
  .section--footer {
    padding: 30px 0;
  }
  .section--footer .f__nav {
    margin-top: 10px;
    margin-bottom: 40px;
  }
  .section--footer .f__nav li a {
    margin-bottom: 11px;
  }
  .section--footer .f__quick-contacts {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .section--footer .f__quick-contacts .cnt-card {
    margin-right: 20px;
  }
  .section--footer .f__copyright {
    font-size: 13px;
    margin-top: 20px;
    text-align: center;
  }
}
@media all and (max-width: 798px) {
  .section--footer {
    padding: 30px 0;
  }
  .section--footer .f__copyright {
    font-size: 13px;
    margin-top: 20px;
    text-align: left;
  }
}
textarea.c-input {
  min-height: 140px;
}

.c-input {
  padding: 14px 10px 14px 15px;
}

.cnt-benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cnt-benefits .h2 {
  max-width: 170px;
  font-size: 22px;
  margin: 20px 23px 20px 0;
}
.cnt-benefits .store__benefit {
  min-height: 0;
}
.cnt-benefits .store__benefit .b-icon {
  width: 166px;
  height: 144px;
  padding-bottom: 35px;
}
.cnt-benefits .store__benefit:not(.is-last) {
  margin-right: 8px;
}
.cnt-benefits .store__benefit .h3 {
  font-size: 14px;
}
.cnt-benefits .store__benefit.transport .b-icon {
  background-position: -2px -794px;
}
.cnt-benefits .store__benefit.b2b .b-icon {
  background-position: -172px -794px;
}
.cnt-benefits .store__benefit.system .b-icon {
  background-position: -342px -794px;
}
.cnt-store__image {
  max-width: 345px;
  height: 250px;
  width: 100%;
}
.cnt-store__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cnt-store__info {
  padding-left: 55px;
}
.cnt-store__info .store__info {
  font-size: 15px;
  color: #000000;
}
.cnt-store__info .store__info span {
  font-size: 13px;
  color: #959595;
  margin-bottom: 3px;
}
.cnt-store__info .store__opening-hours::before {
  background-position: -214px -40px;
}
.cnt-store__info .store__address::before {
  background-position: -247px -41px;
}
.cnt-store__info .h2 {
  margin-top: 0;
}
.cnt-info-wrapper {
  margin-top: 110px;
}
.cnt-info-wrapper .h3 {
  margin-top: 15px;
  margin-bottom: 25px;
  font-size: 20px;
}
.cnt-info-wrapper .h4 {
  font-size: 15px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 5px;
}
.cnt-info-wrapper p {
  max-width: 285px;
  font-size: 13px;
}
.cnt-info-wrapper p a {
  color: #178FCF;
  display: block;
  text-decoration: underline;
}
.cnt-info-wrapper p a:hover, .cnt-info-wrapper p a:focus {
  color: #004D75;
}
.cnt-col--phone-mail .cnt-mail, .cnt-col--phone-mail .cnt-phone {
  font-size: 15px;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 40px;
  position: relative;
}
.cnt-col--phone-mail .cnt-mail::before, .cnt-col--phone-mail .cnt-phone::before {
  position: absolute;
  left: 0;
  top: 2px;
}
.cnt-col--phone-mail .cnt-mail {
  color: #178FCF;
}
.cnt-col--phone-mail .cnt-mail::before {
  top: -6px;
  background-position: -310px -30px;
}
.cnt-col--phone-mail .cnt-mail:hover, .cnt-col--phone-mail .cnt-mail:focus {
  color: #000000;
}
.cnt-col--phone-mail .cnt-phone {
  margin-bottom: 15px;
}
.cnt-col--phone-mail .cnt-phone::before {
  background-position: -280px -30px;
}
.cnt-form {
  max-width: 390px;
}
.cnt-form__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cnt-form__bottom .c-submit {
  width: auto;
  margin-right: 30px;
  margin-bottom: 0;
}
.cnt-form__bottom .c-submit .btn-brand {
  margin: 0;
}
.cnt-form__bottom .c-submit input {
  display: none;
}
.cnt-form__bottom .gdpr {
  margin: 10px 0;
  font-size: 13px;
  color: #959595;
}
.cnt-form__bottom .gdpr a {
  display: block;
  color: #178FCF;
  text-decoration: underline;
}
.cnt-form__bottom .gdpr a:hover, .cnt-form__bottom .gdpr a:focus {
  color: #004D75;
}
.cnt-form .h2 {
  margin-top: 0;
  margin-bottom: 25px;
  text-align: center;
}
.cnt-form label {
  margin-bottom: 15px;
  font-size: 14px;
  width: 100%;
}
.cnt-form-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
  padding: 70px 30px;
  border: 1px solid #EAF2F6;
  -webkit-box-shadow: 0 11px 30px rgba(0, 77, 117, 0.1);
          box-shadow: 0 11px 30px rgba(0, 77, 117, 0.1);
}
.cnt-form-section {
  padding: 115px 0;
  position: relative;
}
.cnt-box {
  max-width: 295px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 20px 35px;
  border: 1px solid #AACEE2;
}
.cnt-box .cnt__info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.cnt-box .cnt__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 119px;
  width: 100%;
  margin-top: -51px;
}
.cnt-box .cnt-phone {
  margin-bottom: 15px;
}
.cnt-box .h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 30px;
}
.cnt-box .h3 span {
  display: block;
  font-size: 12px;
  color: #959595;
  font-weight: 400;
}
.cnt-phone, .cnt-mail {
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cnt-mail {
  font-size: 16px;
}
.cnt-mail::before {
  content: "";
  display: inline-block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 28px;
  height: 24px;
  background: url("/userfiles/images/icons.svg") no-repeat -310px -2px;
  margin-right: 8px;
}
.cnt-mail:hover, .cnt-mail:focus {
  text-decoration: none;
}
.cnt-mail:hover.navbar__phone__num, .cnt-mail:focus.navbar__phone__num {
  color: #178FCF;
}
.cnt-phone::before {
  content: "";
  display: inline-block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 28px;
  height: 26px;
  background: url("/userfiles/images/icons.svg") no-repeat -280px 0px;
  margin-right: 8px;
}
.cnt-phone .cnt-phone-num {
  font-size: 16px;
  display: block;
  -webkit-transition: 0.3s color;
  -o-transition: 0.3s color;
  transition: 0.3s color;
}
.cnt-phone .cnt-opening-hours {
  color: #959595;
  font-size: 12px;
  display: block;
}
.cnt-phone:hover, .cnt-phone:focus {
  text-decoration: none;
}
.cnt-phone:hover.cnt-phone-num, .cnt-phone:focus.cnt-phone-num {
  color: #178FCF;
}
.cnt-card {
  border: 1px solid #004D75;
  padding: 30px 25px;
  line-height: 1.2;
  position: relative;
}
.cnt-card__label {
  position: absolute;
  left: 15px;
  top: -12px;
  padding: 3px 8px;
  font-size: 14px;
  color: #AACEE2;
}
.cnt-card__item {
  position: relative;
  padding-left: 35px;
  font-size: 16px;
}
.cnt-card__item a {
  display: block;
  font-size: 16px;
}
.cnt-card__item::before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 24px;
  height: 23px;
  left: 0;
  background: url("/userfiles/images/icons.svg") no-repeat;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.cnt-card__item:not(:last-of-type) {
  margin-bottom: 20px;
}
.cnt-card__phone::before {
  background-position: -284px -3px;
}
.cnt-card__mail {
  height: 21px;
}
.cnt-card__mail::before {
  background-position: -314px -5px;
}

.section--cnt-boxes {
  padding: 50px 0 0px 0;
  background: white;
}
.section--cnt-boxes .cnt-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-width: 465px;
  text-align: left;
  padding: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 21px;
}
.section--cnt-boxes .cnt-box .h3 {
  margin-top: 0;
  margin-bottom: 10px;
}
.section--cnt-boxes .cnt-box .cnt__image {
  margin-right: 25px;
  margin-top: 0;
}
.section--cnt-boxes .cnt-box .cnt-mail {
  font-size: 14px;
}
.section--cnt-boxes .cnt-box .cnt-phone {
  margin-bottom: 8px;
}
.section--cnt-boxes .cnt-box .cnt-phone .cnt-phone-num {
  font-size: 14px;
}
.section--cnt-boxes .cnt-box .cnt-phone .cnt-opening-hours {
  font-size: 11px;
}
.section--cnt-boxes .cnt-box .cnt-mail, .section--cnt-boxes .cnt-box .cnt-phone {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.section--store-detailed {
  background: white;
  padding-top: 125px;
  padding-bottom: 60px;
}
.section--store-detailed .cnt-map {
  padding-left: 50px;
  height: 480px;
  width: 100%;
}
.section--store-detailed .cnt-benefits {
  margin-right: -5px;
  margin-top: 80px;
}
.section--store {
  position: relative;
  max-width: 1920px;
  margin: auto;
  min-height: 350px;
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section--store .h2 {
  color: white;
  margin-bottom: 30px;
  margin-top: 0;
}

.store__benefit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}
.store__benefit .h3 {
  color: white;
  font-size: 15px;
  margin: 0;
}
.store__benefit.transport .b-icon {
  background-position: -2px -954px;
}
.store__benefit.b2b .b-icon {
  background-position: -233px -954px;
}
.store__benefit.system .b-icon {
  background-position: -462px -954px;
}
.store__benefit .b-icon {
  width: 223px;
  height: 192px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url("/userfiles/images/icons.svg") no-repeat;
  padding-bottom: 45px;
}
.store__info {
  line-height: 1.2;
  font-size: 16px;
  color: white;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.store__info::before {
  content: "";
  display: inline-block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 32px;
  height: 32px;
  margin-right: 10px;
}
.store__info span {
  font-size: 12px;
  display: block;
  color: #AACEE2;
}
.store__address::before {
  background: url("/userfiles/images/icons.svg") no-repeat -247px -3px;
  height: 34px;
}
.store__opening-hours::before {
  background: url("/userfiles/images/icons.svg") no-repeat -214px -5px;
}

@media all and (max-width: 1420px) {
  .cnt-info-wrapper .cnt-box {
    margin-bottom: 30px;
  }

  .section--store-detailed .cnt-benefits {
    margin-right: 0px;
    margin-top: 48px;
    margin-bottom: 30px;
  }
  .section--store-detailed .cnt-map {
    height: 380px;
    padding-left: 0;
    max-width: 600px;
  }
  .section--store .store__info {
    font-size: 13px;
  }
}
@media all and (max-width: 1000px) {
  .cnt-info-wrapper .h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 18px;
  }
  .cnt-info-wrapper .cnt-box {
    margin-bottom: 0;
  }

  .cnt-form-section {
    padding: 45px 0;
  }
  .cnt-form-wrap {
    padding: 20px 20px;
  }

  .section--store {
    background: #004D75;
  }
  .section--store .row--benefits {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 30px;
  }
  .section--store .row--benefits .col {
    width: auto;
    max-width: 230px;
  }
  .section--store .store__benefit {
    min-height: 153px;
  }
  .section--store .img--background {
    display: none;
  }
}
@media all and (max-width: 798px) {
  .cnt-benefits {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .cnt-benefits .h2 {
    margin-right: 0;
    max-width: 250px;
  }
  .cnt-benefits .store__benefit:not(.is-last) {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .cnt-store__image {
    max-width: 305px;
    height: 220px;
  }
  .cnt-store__info {
    padding-left: 0;
    margin-top: 15px;
  }

  .section--cnt-boxes .cnt-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section--cnt-boxes .cnt-box .cnt__image {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .section--store-detailed .cnt-map {
    height: 290px;
  }
  .section--store .h2 {
    text-align: center;
  }
  .section--store .store__benefit {
    margin: auto;
    margin-bottom: 30px;
    max-width: 180px;
  }
  .section--store .store__info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .section--store .row--benefits .col {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: unset;
  }
}
.faq__box {
  margin: 40px 0;
}
.faq__box .h3 {
  margin-bottom: 25px;
}
.faq__box .faq__list {
  padding-left: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.2;
}
.faq__box .faq__list-item {
  font-size: 15px;
  color: #178FCF;
  text-decoration: underline;
  margin-bottom: 7px;
  display: block;
}
.faq__box .faq__list-item:hover, .faq__box .faq__list-item:focus {
  color: #000000;
}

@media all and (max-width: 1000px) {
  .faq__box .h3 {
    margin-bottom: 15px;
    font-size: 21px;
  }
}
.content {
  font-size: 15px;
}
.content .btn-color-3 {
  font-size: 14px;
  padding: 11px 20px;
}
.content .tech-tinfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 480px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.content .tech-tinfo__col {
  margin: 10px 0;
  margin-right: 20px;
}
.content a:not(.btn-brand) {
  text-decoration: underline;
}
.content table {
  margin: 15px 0;
}
.content table.tech-table {
  border: 1px solid #AACEE2;
  height: auto !important;
  max-width: 100% !important;
}
.content table.tech-table tr:first-of-type td {
  color: white;
  background: #000000;
  font-weight: 700;
  border-left: 0;
  border-right: 0;
}
.content table.tech-table tr td {
  padding: 6px 14px;
  font-size: 14px;
}
.content table.tech-table tr td.blue {
  background: #EAF2F6;
}
.content table.tech-table tr td.lightblue {
  background: #F9FBFC;
}
.content table.tech-table tr:not(:last-of-type) td {
  border-bottom: 1px solid #AACEE2;
}
.content table:not(.tech-table) {
  width: 100%;
  border: 1px solid #AACEE2;
  max-width: 750px;
}
.content table:not(.tech-table) tr:nth-of-type(odd) {
  background: white;
}
.content table:not(.tech-table) tr:nth-of-type(even) {
  background: #F7FAFB;
}
.content table:not(.tech-table) tr:not(:last-of-type) td {
  border-bottom: 1px solid #AACEE2;
}
.content table:not(.tech-table) tr td {
  padding: 15px 30px;
  font-size: 14px;
}
.content table:not(.tech-table) tr td:last-of-type {
  font-weight: bold;
}
.content h2 {
  margin-top: 40px;
  margin-bottom: 25px;
  font-size: 28px;
}
.content h3 {
  font-size: 20px;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 400;
}
.content p {
  font-size: 15px;
  margin: 10px 0;
}
.content ol, .content ul {
  padding-left: 0;
  list-style-type: none;
  margin: 25px 0;
}
.content ol li, .content ul li {
  margin-bottom: 15px;
  position: relative;
}
.content ol {
  counter-reset: listCounter;
}
.content ol li {
  padding-left: 38px;
  counter-increment: listCounter;
}
.content ol li::before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 25px;
  height: 22px;
  left: 0px;
  top: 0px;
  background: url("/userfiles/images/icons.svg") no-repeat -13px -684px;
}
.content ol li::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  content: counter(listCounter);
  font-size: 15px;
  color: #178FCF;
  left: 13px;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  top: 0px;
}
.content ul li {
  padding-left: 16px;
}
.content ul li::before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  width: 10px;
  height: 10px;
  left: 0;
  top: 7px;
  background: url("/userfiles/images/icons.svg") no-repeat 0px -680px;
}

@media all and (max-width: 1000px) {
  .content {
    font-size: 13px;
  }
  .content table tr td {
    font-size: 12px;
    padding: 10px 10px;
  }
  .content ul li, .content ol li {
    margin-bottom: 11px;
  }
  .content ul li::before {
    top: 5px;
  }
  .content ol li::before, .content ol li::after {
    top: -2px;
  }
  .content p {
    font-size: 13px;
  }
  .content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 21px;
  }
}
.content .content-category {
  border: 1px solid #EAF2F6;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.content .content-category .cat-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 155px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 15px;
}
.content .content-category .cat-image img {
  max-width: 100%;
  max-height: 100%;
}
.content .content-category .cat-text {
  max-width: 440px;
  margin-right: 50px;
}
.content .content-category .btn-brand {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
}
.content .content-category .h3 {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 22px;
  margin-top: 0;
}
.content .content-newsletter {
  margin-top: 45px;
  margin-bottom: 45px;
  background: #004D75;
  color: white;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.content .content-newsletter .input-btn-group {
  margin-right: 0;
  margin-bottom: 10px;
}
.content .content-newsletter .input-btn-group input {
  min-width: 0;
  width: 100%;
}
.content .content-newsletter .nl__left {
  margin-right: 140px;
}
.content .content-newsletter .nl__image {
  width: 120px;
  position: absolute;
  left: -90px;
  bottom: -40px;
}
.content .content-newsletter .h3 {
  margin-top: 0;
  font-size: 24px;
}
.content .content-gallery {
  margin-top: 50px;
  margin-bottom: 50px;
}
.content .content-gallery .img--large, .content .content-gallery .img--small {
  display: block;
  margin-bottom: 16px;
}
.content .content-gallery .img--large img, .content .content-gallery .img--small img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content .content-gallery .img--large {
  width: 100%;
  height: 310px;
}
.content .content-gallery .img--small {
  width: 100%;
  height: 160px;
}
.content .content-gallery .img--small.g-more-photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: #EAF2F6 solid 1px;
}
.content .content-gallery .img--small.g-more-photos:hover, .content .content-gallery .img--small.g-more-photos:focus {
  background: #EAF2F6;
}
.content .content-gallery .img--small.g-more-photos span {
  color: #178FCF;
  font-size: 15px;
}
.content .content-gallery .img--small.g-more-photos .icon {
  width: 40px;
  height: 34px;
  background: url("/userfiles/images/icons.svg") no-repeat -385px -2px;
  margin-bottom: 8px;
}
.content .content-product-slider-wrapper {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
}
.content .content-product-slider-wrapper .glide__custom-arrows {
  z-index: 6;
}
.content .content-product-slider-wrapper .glide__custom-arrows .arrow--left, .content .content-product-slider-wrapper .glide__custom-arrows .arrow--right {
  width: 97px;
  height: 86px;
}
.content .content-product-slider-wrapper .glide__custom-arrows .arrow--left {
  background-position: -102px -373px;
}
.content .content-product-slider-wrapper .glide__custom-arrows .arrow--left:hover, .content .content-product-slider-wrapper .glide__custom-arrows .arrow--left:focus {
  background-position: -2px -373px;
}
.content .content-product-slider-wrapper .glide__custom-arrows .arrow--right {
  background-position: -302px -373px;
}
.content .content-product-slider-wrapper .glide__custom-arrows .arrow--right:hover, .content .content-product-slider-wrapper .glide__custom-arrows .arrow--right:focus {
  background-position: -202px -373px;
}
.content .content-product-slider-wrapper .white-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
  top: 0;
  pointer-events: none;
  left: 0;
  bottom: 0;
  display: block;
  background: -o-linear-gradient(right, white 0px, transparent 260px);
  background: linear-gradient(to left, white 0px, transparent 260px);
}
.content .content-slider__prd {
  margin-top: 10px;
}
.content .content-product {
  padding: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
  width: auto;
}
.content .content-product .h3 {
  font-size: 19px;
}
.content .content-product .p-info-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
.content .content-product .p-bottom {
  margin-bottom: 20px;
}
.content .content-product .prd__badges {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 0;
}
.content .content-product .prd__image {
  width: 124px;
  height: 124px;
}
.content .content-product .prd__info {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.content .content-product .prd__info-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 225px;
          flex: 1 0 225px;
}
.content .content-product .p-text {
  font-size: 15px;
  margin: 0;
  margin-right: 40px;
}

@media all and (max-width: 1420px) {
  .content .content-product {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 1000px) {
  .content .content-newsletter {
    padding: 25px;
  }
  .content .content-newsletter .nl__left {
    margin-right: 110px;
  }
  .content .content-newsletter .nl__image {
    width: 90px;
    position: absolute;
    left: -100px;
    bottom: -25px;
  }
  .content .content-newsletter .h3 {
    font-size: 18px;
  }
  .content .content-product-slider-wrapper .white-overlay {
    background: -o-linear-gradient(right, white 0px, transparent 80px);
    background: linear-gradient(to left, white 0px, transparent 80px);
  }
  .content .glide__custom-arrows .arrow--left, .content .glide__custom-arrows .arrow--right {
    -webkit-transform: scale(0.6);
        -ms-transform: scale(0.6);
            transform: scale(0.6);
  }
  .content .content-gallery {
    margin: 30px 0;
  }
  .content .content-gallery .img--large {
    height: 260px;
  }
  .content .content-gallery .img--small {
    height: 120px;
  }
}
@media all and (max-width: 798px) {
  .content .content-category {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content .content-category .btn-brand {
    margin-left: 0;
    margin-top: 20px;
  }
  .content .content-category .cat-text {
    margin-right: 0;
  }
  .content .content-category .cat-image {
    width: 225px;
    height: auto;
    margin-bottom: 20px;
  }
  .content .content-newsletter {
    max-width: 370px;
    margin: 25px auto;
  }
  .content .content-newsletter .nl__left {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .content .content-newsletter .nl__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content .content-newsletter .nl__image {
    display: none;
  }
  .content .content-gallery .img--large {
    max-width: 300px;
    height: 210px;
  }
  .content .content-gallery .img--small {
    max-width: 300px;
    height: 210px;
  }
}
@media all and (max-width: 500px) {
  .content .content-product {
    padding: 15px;
  }
}
.basket-box-wrapper {
  position: relative;
  padding-bottom: 15px;
  padding-top: 15px;
  cursor: pointer;
}
.basket-box-wrapper .basket-box {
  top: calc(100% - 1px);
  position: absolute;
  word-break: break-word;
  z-index: 1100;
  right: 0;
  background: white;
  padding: 20px;
  border: 1px solid #AACEE2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 400px;
  display: none;
  opacity: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.basket-box-wrapper .basket-box .basket__title {
  margin-top: 0;
}
.basket-box-wrapper .basket-box .basket__summary {
  margin: 35px -20px 0;
  padding: 10px 20px;
  background: #EAF2F6;
}
.basket-box-wrapper .basket-box .basket__sum-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 5px 0;
  font-size: 19px;
}
.basket-box-wrapper .basket-box .basket__sum-item--small {
  font-size: 14px;
}
.basket-box-wrapper .basket-box .basket__sum-price {
  font-weight: 700;
}
.basket-box-wrapper .basket-box .basket-box__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.basket-box-wrapper .basket-box .btn-brand {
  text-align: center;
  margin-bottom: 0;
}
.basket-box-wrapper .basket-box .free-shipping-bar-wrapper {
  margin: 25px 0;
}
.basket-box-wrapper .basket-box .free-shipping-bar-wrapper .p-text, .basket-box-wrapper .basket-box .free-shipping-bar-wrapper p {
  font-size: 13px;
}
.basket-box-wrapper .basket-box .product-preview--small {
  margin-bottom: 25px;
}
.basket-box-wrapper .basket-box .product-preview--small .product__info {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.basket-box-wrapper .basket-box .product-preview--small a {
  width: 100%;
  display: block;
  line-height: 1;
}
.basket-box-wrapper .basket-box .product-preview--small .product__name {
  max-width: 100%;
  font-size: 14px;
}
.basket-box-wrapper .basket-box .product-preview--small .product__name-var {
  font-weight: 400;
  font-size: 12px;
  display: block;
}
.basket-box-wrapper .basket-box .product-preview--small .price-and-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8px;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.basket-box-wrapper .basket-box .product-preview--small .price-and-count .prd-counter {
  margin-right: 10px;
}
.basket-box-wrapper .basket-box .product-preview--small .price-and-count .price {
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
  font-size: 13px;
  margin-right: 0;
}

.contact-modal-container {
  margin: 40px 0;
}

.add-to-basket-modal .product-preview--small .price-and-count.dph {
  margin: 0;
}
.add-to-basket-modal .product-preview--small .price-and-count.dph .price {
  color: #959595;
  font-size: 12px;
}
.add-to-basket-modal .product-preview--small .price-and-count .price {
  margin-right: 10px;
}
.add-to-basket-modal .product-preview--small .price-and-count .count {
  color: #178FCF;
}
.add-to-basket-modal .h2 {
  font-size: 22px;
  text-align: center;
  margin-top: 0;
}
.add-to-basket-modal .btn-basket {
  font-size: 14px;
  padding: 13px 25px;
  margin: 0;
}
.add-to-basket-modal .prd-preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 15px;
  margin-bottom: 0;
  height: 100%;
}
.add-to-basket-modal .prd-preview .btn-color-3-inverted {
  font-size: 12px;
  padding: 9px 8px;
}
.add-to-basket-modal .prd-preview .prd__var {
  height: 19px;
  font-size: 11px;
}
.add-to-basket-modal .prd-preview .prd__t-wrap {
  height: 100%;
}
.add-to-basket-modal .prd-preview .prd__image {
  height: 190px;
}
.add-to-basket-modal .prd-preview .prd__bottom {
  margin-top: auto;
}
.add-to-basket-modal .prd-preview .prd__price-current {
  font-size: 14px;
}
.add-to-basket-modal .prd-preview .prd__price-vat {
  font-size: 12px;
}
.add-to-basket-modal .basket-part {
  padding: 50px 25px;
  border-bottom: 1px solid #AACEE2;
}
.add-to-basket-modal .basket-part .product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.add-to-basket-modal .basket-part .btn-row {
  margin-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.add-to-basket-modal .could-be-interested-in {
  padding: 40px 25px 30px;
}
.add-to-basket-modal .could-be-interested-in .h3--basket {
  margin-top: 0;
  margin-bottom: 30px;
}
.add-to-basket-modal .could-be-interested-in .product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -7.5px;
  margin-right: -7.5px;
}
.add-to-basket-modal .could-be-interested-in .product-list .product-list__item-wrapper {
  margin-bottom: 0;
  padding-left: 7.5px;
  padding-right: 7.5px;
  width: calc(100% / 3);
}
.add-to-basket-modal .could-be-interested-in .product-list .product-list__item-wrapper .product-preview--var-2 {
  margin-bottom: 0;
}
.add-to-basket-modal .could-be-interested-in .product-list .product-list__item-wrapper .product-preview--var-2 .image {
  height: 260px;
}
.add-to-basket-modal .could-be-interested-in .product-list .product-list__item-wrapper .product-preview--var-2 .h3 {
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 2px;
}
.add-to-basket-modal .could-be-interested-in .product-list .product-list__item-wrapper .product-preview--var-2 .price {
  display: block;
  font-size: 13px;
}

.request-modal .modal-dialog {
  max-width: 780px;
}
.request-modal .modal-content {
  border-radius: 8px;
  overflow: hidden;
  border: none;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.request-modal .modal-body {
  padding: 0;
}
.request-modal .btn-exit {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.request-modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid #eee;
}

.request-modal__product-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 56px;
  height: 56px;
}
.request-modal__product-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.request-modal__product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}

.request-modal__product-name {
  font-size: 13px;
  line-height: 1.3;
  color: #666;
}

.request-modal__product-price {
  font-weight: 700;
  font-size: 17px;
  color: #222;
}

.request-modal__title {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin: 32px 0 28px;
  color: #222;
}

.request-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 48px 48px;
}

.request-form__fields {
  display: grid;
  gap: 20px;
  margin: 0 85px;
}
@media (max-width: 640px) {
  .request-form__fields {
    margin: 0;
  }
}

.request-form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.request-form__label {
  font-size: 13px;
  font-weight: 500;
  color: #555;
}

.request-form__input {
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-radius: 0;
  background: #EAF2F6;
  font-size: 14px;
  -webkit-transition: border-color 0.2s, background-color 0.2s;
  -o-transition: border-color 0.2s, background-color 0.2s;
  transition: border-color 0.2s, background-color 0.2s;
}
.request-form__input:focus {
  outline: none;
  background: #EAF2F6;
}

textarea.request-form__input {
  min-height: 100px;
  resize: vertical;
}

.request-form__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 640px) {
  .request-form__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.request-form__submit {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 10px 24px;
  border: 2px solid #2c8fcf;
  border-radius: 6px;
  background: transparent;
  color: #2c8fcf;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background-color 0.2s, color 0.2s;
  -o-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
}
.request-form__submit:hover {
  background: #2c8fcf;
  color: #fff;
}

.request-form__gdpr {
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .request-form__gdpr {
    text-align: center;
  }
}
.request-form__gdpr a {
  color: #2c8fcf;
  text-decoration: underline;
}

@media all and (max-width: 1000px) {
  .add-to-basket-modal .basket-part {
    padding-bottom: 20px;
  }
  .add-to-basket-modal .btn-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .add-to-basket-modal .btn-basket {
    margin: 8px 0;
    font-size: 12px;
    padding: 9px 25px;
  }
  .add-to-basket-modal .btn-color-3-inverted {
    margin: 8px 0;
    margin-right: 15px;
  }
  .add-to-basket-modal .could-be-interested-in {
    display: none !important;
  }

  .basket-box-wrapper .basket-box {
    display: none !important;
  }
}
.incredible-select {
  width: 100%;
  display: block;
  position: relative;
  cursor: pointer;
  margin-bottom: 15px;
  text-transform: none;
  color: #000;
}

.incredible-select {
  width: 100%;
  display: block;
  position: relative;
  cursor: pointer;
  margin-bottom: 15px;
  text-transform: none;
  color: #000;
}
.incredible-select__bar {
  padding: 4px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #e9ecef;
}
.incredible-select__bar .incredible-select__close-btn {
  font-size: 13px;
  padding: 4px 8px;
}
.incredible-select.is-disabled .incredible-select__selected-option {
  background: #f5f9fb;
}
.incredible-select__selected-option {
  padding: 13px 25px 13px 15px;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  border: 1px solid #F7FAFB;
  background: #EAF2F6;
  min-height: 50px;
}
.incredible-select__selected-option::after {
  position: absolute;
  right: 15px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: "";
  display: block;
  top: 18px;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.incredible-select__options {
  position: absolute;
  background: white;
  top: calc(100% - 1px);
  display: none;
  left: 0px;
  right: 0px;
  border: 1px solid #AACEE2;
  z-index: 900;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
}
.incredible-select__options .incredible-select__item {
  width: 100%;
  padding: 13px 15px;
  color: #000;
  background: white;
}
.incredible-select__options .incredible-select__item.is-selected {
  font-weight: 700;
}
.incredible-select__options .incredible-select__item:not(:last-of-type) {
  border-bottom: 1px solid #F7FAFB;
}
.incredible-select__options .incredible-select__item:hover {
  cursor: pointer;
  background: #f8f9fa;
}

@media all and (max-width: 798px) {
  .incredible-select--stylable.var--2 .incredible-select__selected-option {
    font-size: 15px;
  }
}
.tp-table {
  display: table;
  width: 100%;
  min-width: 880px;
}
.tp-table-responsive {
  margin-bottom: 50px;
}
.tp-table .t-image {
  width: 68px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 8px;
}
.tp-table .t-image img {
  max-width: 100%;
  max-height: 100%;
}
.tp-table .t-nm-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tp-table .t-item {
  padding: 7px 18px;
  font-size: 15px;
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}
.tp-table .t-item:nth-of-type(1), .tp-table .t-item:nth-of-type(2) {
  text-align: left;
}
.tp-table .t-header {
  display: table-header-group;
}
.tp-table .t-header .t-item {
  border-bottom: 1px solid #004D75;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}
.tp-table .t-body {
  display: table-row-group;
}
.tp-table .t-body .t-item {
  padding: 18px 18px;
}
.tp-table .t-body .t-item:first-of-type {
  font-weight: 600;
}
.tp-table .t-body .t-row:nth-of-type(odd) {
  background: #F8F8F8;
}
.tp-table .t-row {
  display: table-row;
}
.tp-info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 620px;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tp-info-row__item h3 {
  margin-top: 10px;
}
.tp-info-row__item:first-of-type {
  margin-right: 30px;
}

.references__box {
  margin: 0 0 16px 0;
  border: 1px solid #AACEE2;
  padding: 25px;
  text-align: center;
  line-height: 1.1;
  background: white;
  min-height: 185px;
}

.references__figure {
  height: 75px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 15px 0;
}

.references__img {
  max-width: 200px;
  max-height: 100%;
}

.references__subtitle {
  margin: 0;
  font-size: 20px;
}

.references__link {
  text-decoration: underline;
  color: #178FCF;
  font-size: 15px;
  display: block;
}

.paid-shipping {
  margin-bottom: 40px;
}

.paid-shipping__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.paid-shipping__icon-wrap {
  width: 48px;
  height: 41px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
}

.paid-shipping__icon {
  width: 100%;
  height: 100%;
}

.paid-shipping__texts {
  position: relative;
  padding-left: 60px;
}
.paid-shipping__texts span {
  font-weight: 700;
}
.paid-shipping__texts:after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 48px;
  height: 41px;
  background: url(/userfiles/images/icons.svg) no-repeat -312px -685px;
}

.modals {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.modals.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modals__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.modals__content {
  position: relative;
  background: #FFF;
  border-radius: 0;
  max-width: 900px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-box-shadow: 0 11px 30px rgba(0, 77, 117, 0.1);
          box-shadow: 0 11px 30px rgba(0, 77, 117, 0.1);
  -webkit-animation: modalFadeIn 0.3s ease-out;
          animation: modalFadeIn 0.3s ease-out;
}
@media (max-width: 768px) {
  .modals__content {
    width: 95%;
    min-width: auto;
    max-height: 95vh;
  }
}
.modals__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  color: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modals__close::before {
  content: "\2715";
  font-weight: 300;
}
.modals__close:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.modals__image {
  border-radius: 0 0 0 0;
  overflow: hidden;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -30px;
}
.modals__image img {
  display: block;
  width: 100%;
  height: auto;
}
.modals__body {
  padding: 30px 30px;
  color: #000;
}
@media (max-width: 768px) {
  .modals__body {
    padding: 20px 20px;
  }
}
.modals__title {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 600;
  color: #000;
}
@media (max-width: 768px) {
  .modals__title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.modals__text {
  color: #959595;
  line-height: 1.6;
  margin-bottom: 20px;
}
.modals__text p {
  margin: 0 0 1em;
}
.modals__text p:last-child {
  margin-bottom: 0;
}
.modals__text:last-child {
  margin-bottom: 0;
}
.modals__buttons {
  padding: 0 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .modals__buttons {
    padding: 0 20px 20px;
  }
}
.modals__btn {
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@-webkit-keyframes modalFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #00344E;
  color: #FFF;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.bar.is-visible {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.bar__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  gap: 20px;
}
@media (max-width: 768px) {
  .bar__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.bar__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .bar__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.bar__text {
  font-size: 14px;
}
.bar__link {
  color: #FFF;
  text-decoration: underline;
  white-space: nowrap;
}
.bar__link:hover {
  text-decoration: none;
}
.bar__close {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background: transparent;
  line-height: 1;
  cursor: pointer;
  color: #FFF;
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bar__close::before {
  content: "\2715";
  font-size: 14px;
  font-weight: 300;
}
.bar__close:hover {
  opacity: 1;
}

.header-bar {
  position: relative;
  width: 100%;
  background: #004D75;
  color: #FFF;
  display: none;
}
.header-bar.is-active {
  display: block;
}
.header-bar__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  gap: 20px;
  position: relative;
}
@media (max-width: 768px) {
  .header-bar__container {
    padding: 10px 40px 10px 15px;
    gap: 10px;
  }
}
.header-bar__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  .header-bar__content {
    gap: 8px;
  }
}
.header-bar__text {
  font-size: 14px;
  text-align: center;
}
.header-bar__text p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .header-bar__text {
    font-size: 13px;
  }
}
.header-bar__link {
  color: #FFF;
  text-decoration: underline;
  white-space: nowrap;
  font-weight: 500;
}
.header-bar__link:hover {
  text-decoration: none;
}
.header-bar__close {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background: transparent;
  line-height: 1;
  cursor: pointer;
  color: #FFF;
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header-bar__close::before {
  content: "\2715";
  font-size: 14px;
  font-weight: 300;
}
.header-bar__close:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .header-bar__close {
    right: 10px;
  }
}

@-webkit-keyframes headerBarSlideIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes headerBarSlideIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
body.modal-open {
  overflow: hidden;
}

.modals--briol .modals__content {
  min-width: auto;
  width: 520px;
  max-width: 90%;
  padding: 0;
  overflow: hidden;
}

.modals-briol {
  position: relative;
  padding: 40px 40px 35px;
  text-align: center;
  overflow: hidden;
  background: white;
}
@media (max-width: 768px) {
  .modals-briol {
    padding: 30px 20px 25px;
  }
}
.modals-briol__bg {
  position: absolute;
  top: -190px;
  left: 0;
  width: 100%;
  height: 200%;
  z-index: 0;
  pointer-events: none;
}
.modals-briol__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modals-briol__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  color: #000;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modals-briol__close::before {
  content: "\2715";
  font-weight: 300;
}
.modals-briol__badge {
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  color: #FF5656;
}
.modals-briol__badge svg {
  position: absolute;
  width: 60px;
  height: 60px;
}
.modals-briol__badge-text {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 700;
  color: #FFF;
  line-height: 1;
}
.modals-briol__title {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 700;
  color: #FF5656;
}
@media (max-width: 768px) {
  .modals-briol__title {
    font-size: 26px;
  }
}
.modals-briol__text {
  position: relative;
  z-index: 1;
  color: #000;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 25px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.modals-briol__text p {
  margin: 0 0 0.5em;
  font-size: inherit;
}
.modals-briol__text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .modals-briol__text {
    font-size: 15px;
  }
}
.modals-briol__buttons {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modals-briol__btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
@media (max-width: 768px) {
  .modals-briol__btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}

.header-bar--briol {
  background: #F7FAFB;
  overflow: hidden;
}
.header-bar--briol .header-bar__container {
  position: relative;
  max-width: 1200px;
  padding: 0;
  overflow: hidden;
}

.header-bar-briol__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
}
.header-bar-briol__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-bar-briol__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 60px 16px 20px;
  gap: 20px;
}
@media (max-width: 768px) {
  .header-bar-briol__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 14px 40px 14px 15px;
    gap: 12px;
    text-align: center;
  }
}
.header-bar-briol__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .header-bar-briol__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.header-bar-briol__badge {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  color: #FF5656;
  position: relative;
}
.header-bar-briol__badge svg {
  position: absolute;
  width: 48px;
  height: 48px;
}
.header-bar-briol__badge-text {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 700;
  color: #FFF;
  line-height: 1;
}
.header-bar-briol__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
.header-bar-briol__title {
  font-size: 18px;
  font-weight: 700;
  color: #FF5656;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .header-bar-briol__title {
    font-size: 16px;
  }
}
.header-bar-briol__text {
  font-size: 14px;
  color: #000;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .header-bar-briol__text {
    font-size: 13px;
  }
}
.header-bar-briol__right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header-bar-briol__btn {
  white-space: nowrap;
  margin: 0;
  padding: 10px 24px;
  font-size: 14px;
}
.header-bar-briol--content {
  background: white;
  margin: 0;
  padding: 30px 0 40px;
  position: relative;
  z-index: 1;
}
.header-bar-briol--content .modals-wrapper {
  width: 100%;
}
.header-bar-briol--content .header-bar--briol {
  border: 1px solid #EAF2F6;
  background: transparent;
  -webkit-box-shadow: 0 11px 30px #004D751A;
          box-shadow: 0 11px 30px #004D751A;
  overflow: hidden;
}
.header-bar-briol--content .header-bar__container {
  max-width: 100%;
  padding: 0;
  position: relative;
}
.header-bar-briol--content .header-bar-briol__bg {
  position: absolute;
  top: -58px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}
.header-bar-briol--content .header-bar-briol__bg img {
  width: 100%;
  height: 200%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-bar-briol--content .header-bar-briol__inner {
  padding: 45px 50px;
  gap: 30px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .header-bar-briol--content .header-bar-briol__inner {
    padding: 25px 40px 25px 20px;
  }
}
.header-bar-briol--content .header-bar-briol__badge {
  width: 64px;
  height: 64px;
}
.header-bar-briol--content .header-bar-briol__badge svg {
  width: 64px;
  height: 64px;
}
.header-bar-briol--content .header-bar-briol__badge-text {
  font-size: 24px;
}
.header-bar-briol--content .header-bar-briol__title {
  font-size: 41px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .header-bar-briol--content .header-bar-briol__title {
    font-size: 26px;
  }
}
.header-bar-briol--content .header-bar-briol__text {
  font-size: 28px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .header-bar-briol--content .header-bar-briol__text {
    font-size: 18px;
  }
}
.header-bar-briol--content .header-bar-briol__btn {
  padding: 16px 36px;
  font-size: 16px;
}
.header-bar-briol--content .header-bar__close {
  top: 12px;
  right: 12px;
}

.twitter-typeahead h3 {
  font-size: 12px;
  margin-top: 12px;
  margin-bottom: 10px;
}
.twitter-typeahead h3 .number {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 7px;
  border-radius: 37px;
  border: 1px solid #AACEE2;
  color: #000000;
  font-weight: normal;
}

.tt-menu {
  left: -15px !important;
  right: -95px !important;
  top: 125% !important;
  border-radius: 4px;
  border: 1px solid #AACEE2;
  overflow: visible;
  padding: 0 !important;
  background: white;
  z-index: 1001;
}
.tt-menu .btn-brand {
  margin: 15px;
  display: block;
  text-align: center;
}
.tt-menu:before {
  content: "";
  position: absolute;
  top: -11px;
  left: 53%;
  margin-left: -11px;
  display: block;
  width: 20px;
  height: 11px;
  z-index: 9999;
  background: url(/userfiles/images/edge-typehead.png) bottom center no-repeat;
}
.tt-menu h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 11px;
  text-transform: uppercase;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tt-menu .count_products {
  font-size: 11px;
  margin-left: 7px;
  color: #000000;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  border: 1px solid #AACEE2;
  overflow: hidden;
  display: inline-block;
  line-height: 24px;
  text-align: center;
}
.tt-menu .tt-dataset {
  padding: 15px;
  border-bottom: 1px solid #AACEE2;
}
.tt-menu .tt-dataset .typeahead_text {
  padding-left: 22px;
  padding-right: 22px;
  position: relative;
}
.tt-menu .tt-dataset h3 {
  margin-top: 0;
}
.tt-menu .tt-dataset .typeahead_wrapper a {
  height: auto;
  padding: 5px 0;
  text-decoration: none;
  color: #178FCF;
}
.tt-menu .tt-dataset .typeahead_wrapper a:hover {
  background: #eaeaea;
}
.tt-menu .tt-dataset-products h3 {
  padding-left: 0;
}
.tt-menu .tt-dataset-products .typeahead_wrapper a {
  color: #000000;
  text-decoration: underline;
}
.tt-menu .tt-dataset-products .typeahead_wrapper a:hover {
  background: none;
  color: black;
}

.typeahead_wrapper {
  position: relative;
}
.typeahead_wrapper a {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.typeahead_image {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
  overflow: hidden;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.typeahead_image img {
  max-width: 100%;
  max-height: 100%;
}

.typeahead_text {
  font-size: 14px;
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
  padding: 0 10px;
}
.typeahead_text span:not(.var_name) {
  font-size: 10px;
  color: #929292;
  -webkit-text-decoration: underline #fafafa;
          text-decoration: underline #fafafa;
}

@-webkit-keyframes loadingAnimation {
  0%, 100% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
}

@keyframes loadingAnimation {
  0%, 100% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
}
.loading-animation::after {
  content: "";
  -webkit-animation: loadingAnimation 1s infinite;
          animation: loadingAnimation 1s infinite;
}

.prd__free {
  color: green;
  font-size: large;
}

.gift-add, .gift-remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem;
  width: 100%;
  aspect-ratio: 1/1;
  font-size: 1.5rem;
  color: #fff;
  border: none;
  cursor: pointer;
}
.gift-add {
  background-color: lawngreen;
}
.gift-add:after {
  content: "+";
}
.gift-remove {
  background-color: red;
}
.gift-remove:after {
  content: "-";
}

.gift-items-summary-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.gift-items-summary-labels .product-label--price {
  min-width: 140px;
  margin-right: 40px;
  text-align: right;
}
.gift-items-summary-labels .product-label--add {
  margin-left: auto;
  min-width: 140px;
  margin-right: 40px;
  text-align: right;
}

.gift-items-summary {
  border-bottom: #AACEE2 1px solid;
  border-top: #AACEE2 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  margin-bottom: 35px;
}
.gift-items-summary .not-eligible-for-gift {
  color: gray !important;
  text-decoration: line-through;
}
.gift-items-summary .name-and-mobile-count {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: 75px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gift-items-summary .name-and-mobile-count .prd-counter {
  display: none;
}
.gift-items-summary .product-wrapper {
  padding-top: 24px;
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.gift-items-summary .product-wrapper.expired {
  background: #ffd1d3;
}
.gift-items-summary .product-wrapper.gray-out {
  border-top: #AACEE2 1px solid;
  padding-top: 24px;
}
.gift-items-summary .product-wrapper.gray-out > * {
  opacity: 0.7;
}
.gift-items-summary .product-wrapper:not(:last-of-type) {
  border-bottom: #AACEE2 1px solid;
}
.gift-items-summary .product-wrapper .aligner {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gift-items-summary .product-wrapper .aligner .product-counter {
  margin-right: 30px;
}
.gift-items-summary .product-wrapper .aligner .price {
  text-align: right;
  min-width: 140px;
  font-size: 17px;
  font-weight: 700;
  margin-right: 40px;
  overflow: visible;
}
.gift-items-summary .product-wrapper .aligner .remove-from-basket {
  cursor: pointer;
  width: 29px;
  height: 29px;
  position: relative;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.gift-items-summary .product-wrapper .aligner .remove-from-basket:after, .gift-items-summary .product-wrapper .aligner .remove-from-basket:before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  background: #AACEE2;
}
.gift-items-summary .product-wrapper .aligner .remove-from-basket:after {
  left: 14px;
  top: 0;
  width: 2px;
  height: 100%;
}
.gift-items-summary .product-wrapper .aligner .remove-from-basket:before {
  top: 14px;
  left: 0;
  height: 2px;
  width: 100%;
}
.gift-items-summary .product-wrapper .aligner .stock-cell {
  margin-right: 50px;
  font-size: 17px;
  font-weight: 700;
  min-width: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.gift-items-summary .product-wrapper .aligner .stock-cell.danger {
  color: #e43227;
}
.gift-items-summary .product-wrapper .aligner .stock-cell.in-stock {
  color: #00a326;
}
.gift-items-summary .product-wrapper .aligner .stock-cell.in-stock:before {
  content: "";
  display: inline-block;
  position: relative;
  width: 5px;
  height: 11px;
  top: -1px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 8px;
}
.gift-items-summary .product-wrapper .prd__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 60px;
  width: 60px;
  height: 70px;
  margin-right: 20px;
}
.gift-items-summary .product-wrapper .prd__image img {
  max-width: 100%;
  max-height: 100%;
}
.gift-items-summary .product-wrapper p.prd-name span:not(.name), .gift-items-summary .product-wrapper a.prd-name span:not(.name) {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #178FCF;
}
.gift-items-summary .product-wrapper p.prd-name span.name, .gift-items-summary .product-wrapper a.prd-name span.name {
  padding-right: 30px;
  font-size: 17px;
  font-weight: 500;
  color: #000000;
}
.gift-items-summary .product-wrapper p.prd-name span.var_name, .gift-items-summary .product-wrapper a.prd-name span.var_name {
  color: black;
  font-size: 15px;
  font-weight: 500;
  display: block;
}
.gift-items-summary .product-wrapper a.prd-name:hover .name, .gift-items-summary .product-wrapper a.prd-name:focus .name {
  color: #178FCF;
}

.order-items-summary-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.order-items-summary-labels .product-label {
  padding-bottom: 8px;
  text-align: left;
}
.order-items-summary-labels .product-label--price {
  min-width: 140px;
  margin-right: 40px;
  text-align: right;
}
.order-items-summary-labels .product-label--stock {
  margin-left: auto;
  margin-right: 50px;
  min-width: 130px;
}
.order-items-summary-labels .product-label--count {
  min-width: 127px;
}

.order-full-wrapper .alert-danger {
  color: white;
  font-weight: bold;
  background: #e43227;
}

.transport-payment-options-info {
  margin: 0 0 30px 0;
}

.tp-header {
  font-size: 24px;
}

.order-items-summary {
  border-bottom: #AACEE2 1px solid;
  border-top: #AACEE2 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  margin-bottom: 35px;
}
.order-items-summary .name-and-mobile-count {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: 75px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.order-items-summary .name-and-mobile-count .prd-counter {
  display: none;
}
.order-items-summary .product-wrapper {
  padding-top: 24px;
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.order-items-summary .product-wrapper.expired {
  background: #ffd1d3;
}
.order-items-summary .product-wrapper.gray-out {
  border-top: #AACEE2 1px solid;
  padding-top: 24px;
}
.order-items-summary .product-wrapper.gray-out > * {
  opacity: 0.7;
}
.order-items-summary .product-wrapper:not(:last-of-type) {
  border-bottom: #AACEE2 1px solid;
}
.order-items-summary .product-wrapper .aligner {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.order-items-summary .product-wrapper .aligner .product-counter {
  margin-right: 30px;
}
.order-items-summary .product-wrapper .aligner .price {
  text-align: right;
  min-width: 140px;
  font-size: 17px;
  font-weight: 700;
  margin-right: 10px;
  overflow: visible;
}
.order-items-summary .product-wrapper .aligner .remove-from-basket {
  cursor: pointer;
  width: 29px;
  height: 29px;
  position: relative;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.order-items-summary .product-wrapper .aligner .remove-from-basket:after, .order-items-summary .product-wrapper .aligner .remove-from-basket:before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  background: #AACEE2;
}
.order-items-summary .product-wrapper .aligner .remove-from-basket:after {
  left: 14px;
  top: 0;
  width: 2px;
  height: 100%;
}
.order-items-summary .product-wrapper .aligner .remove-from-basket:before {
  top: 14px;
  left: 0;
  height: 2px;
  width: 100%;
}
.order-items-summary .product-wrapper .aligner .stock-cell {
  margin-right: 50px;
  font-size: 17px;
  font-weight: 700;
  min-width: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.order-items-summary .product-wrapper .aligner .stock-cell.danger {
  color: #e43227;
}
.order-items-summary .product-wrapper .aligner .stock-cell.in-stock {
  color: #00a326;
}
.order-items-summary .product-wrapper .aligner .stock-cell.in-stock:before {
  content: "";
  display: inline-block;
  position: relative;
  width: 5px;
  height: 11px;
  top: -1px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 8px;
}
.order-items-summary .product-wrapper .prd__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 60px;
  width: 60px;
  height: 70px;
  margin-right: 20px;
}
.order-items-summary .product-wrapper .prd__image img {
  max-width: 100%;
  max-height: 100%;
}
.order-items-summary .product-wrapper p.prd-name span:not(.name), .order-items-summary .product-wrapper a.prd-name span:not(.name) {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #178FCF;
}
.order-items-summary .product-wrapper p.prd-name span.name, .order-items-summary .product-wrapper a.prd-name span.name {
  padding-right: 30px;
  font-size: 17px;
  font-weight: 500;
  color: #000000;
}
.order-items-summary .product-wrapper p.prd-name span.var_name, .order-items-summary .product-wrapper a.prd-name span.var_name {
  color: black;
  font-size: 15px;
  font-weight: 500;
  display: block;
}
.order-items-summary .product-wrapper a.prd-name:hover .name, .order-items-summary .product-wrapper a.prd-name:focus .name {
  color: #178FCF;
}

.order__qr-payment {
  margin-top: 30px;
}

.order__qr-payment-title {
  font-size: 16px;
  font-weight: bold;
}

.proceed-to-next-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 35px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.proceed-to-next-step .wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.proceed-to-next-step .coupons-section {
  margin-right: 20px;
}

.cost-sum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.cost-sum .price-with-vat {
  font-size: 23px;
  font-weight: 400;
}
.cost-sum .price-with-vat span {
  margin-left: 10px;
  font-weight: 600;
}
.cost-sum .total-weight {
  font-size: 16px;
  font-weight: 400;
}
.cost-sum .total-weight span {
  margin-left: 10px;
  font-weight: 600;
}
.cost-sum .btn-color-1-fill {
  margin-bottom: 19px;
  margin-top: 25px;
}

.order-payment-summary .border-space {
  padding: 75px 145px;
  border: 1px solid #F7FAFB;
}
.order-payment-summary .send-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.order-payment-summary .send-order .btn-brand {
  margin: 10px 0;
}
.order-payment-summary .send-order .disabled {
  cursor: wait;
  background: #004D75 !important;
  border-color: #004D75 !important;
}
.order-payment-summary .send-order .checkout {
  margin-right: 15px;
}
.order-payment-summary .order-form {
  background: white;
  border: 1px solid #AACEE2;
}
.order-payment-summary .order-form .margin-bottom {
  margin-bottom: 40px;
}
.order-payment-summary .order-form label {
  margin-bottom: 15px;
  font-size: 14px;
  width: 100%;
}
.order-payment-summary .order-form .mailing_phone_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.order-payment-summary .order-form .mailing_phone_wrapper .phone-select {
  margin-left: 0;
  max-width: 115px;
  height: 100%;
  border-right: 1px solid #0000001f;
}
.order-payment-summary .order-form .mailing_phone_wrapper .select-option__flag {
  width: 18px;
  height: 18px;
  margin: 0 8px 0 0;
}
.order-payment-summary .order-form .mailing_phone_wrapper input {
  margin-bottom: 15px;
  padding: 13px 15px;
}
.order-payment-summary .order-form label.mailing_phone {
  margin-bottom: 0;
}
.order-payment-summary .order-form .custom-checkbox {
  margin: 30px 0;
}
.order-payment-summary .order-form .input_error {
  margin-bottom: 25px;
  margin-top: -8px;
  font-size: 15px;
  color: #e43227;
  display: block;
}
.order-payment-summary .order-form .section-label {
  margin-top: 35px;
  margin-bottom: 15px;
  font-size: 20px;
}
.order-payment-summary .order-form .ares-ic .form__item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 0;
  width: 100%;
  max-width: 100%;
}
.order-payment-summary .order-form .ares-ic .ares-ic__wrapper {
  margin-bottom: 15px;
  -ms-flex-item-align: end;
      align-self: end;
}
.order-payment-summary .order-form .ares-ic .ares-ic__wrapper--btn {
  height: 52px;
  position: relative;
}
.order-payment-summary .order-form .ares-ic .ares-ic__wrapper--btn.is-loading {
  color: rgba(255, 255, 255, 0.5);
  background: #178FCF;
  border-color: #178FCF;
}
.order-payment-summary .order-form .ares-ic .ares-ic__wrapper--btn.is-loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  -webkit-animation: button-loading-spinner 1s ease infinite;
          animation: button-loading-spinner 1s ease infinite;
}
.order-payment-summary .order-form .ares-ic .ares-ic__error-btn {
  color: #18B21D;
}
.order-payment-summary .order-form .ares-ic .ares-ic__error-btn:hover, .order-payment-summary .order-form .ares-ic .ares-ic__error-btn:focus {
  color: white;
}
.order-payment-summary .order-form .ares-ic .input_error {
  grid-column: 1/-1;
  padding: 10px 0;
}

@-webkit-keyframes button-loading-spinner {
  from {
    -webkit-transform: rotate(0turn);
            transform: rotate(0turn);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes button-loading-spinner {
  from {
    -webkit-transform: rotate(0turn);
            transform: rotate(0turn);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.order-transfer-wrap {
  margin: 0 40px 15px 0;
}

.order-payment-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 40px 0;
}

.order-payment-wrap-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: white;
  padding: 15px;
  border: 1px solid #AACEE2;
}

.order-transfer-header {
  font-size: 20px;
  line-height: 1.6;
  font-weight: normal;
  margin-top: 0;
}
.order-transfer-header__small {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.2;
}

@media all and (max-width: 798px) {
  .order-payment-wrap-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.order-final .order-text {
  max-width: 600px;
}
.order-final fieldset {
  border: 1px solid black;
  position: relative;
  max-width: 180px;
  width: 100%;
  max-height: 180px;
}
.order-final fieldset legend {
  position: absolute;
  top: 0;
  left: 10px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: white;
  padding: 0 5px;
  width: auto;
  font-size: 20px;
  border: none;
  margin: 0;
}
.order-final fieldset img {
  width: 100%;
}

.tp-item {
  min-height: 67px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  padding: 15px 20px;
  -webkit-box-shadow: 0 0 0 1px #AACEE2;
          box-shadow: 0 0 0 1px #AACEE2;
  border-collapse: collapse;
  background: white;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  cursor: pointer;
}
.tp-item .btn-color-3 {
  padding: 10px 15px;
  margin: 10px 0 0 0;
}
.tp-item .incredible-select--stylable {
  margin-top: 15px;
  margin-bottom: 0;
}
.tp-item .results_box div {
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tp-item .results_box div img {
  width: 75px;
}
.tp-item .results_box div p {
  margin: 0 0 0 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.tp-item .personal-pickup-box {
  padding-top: 5px;
}
.tp-item .personal-pickup-box__label {
  display: block;
  font-size: 13px;
  margin-top: 7px;
  color: #000;
}
.tp-item .choices, .tp-item .transport_options {
  display: none;
}
.tp-item.selected {
  background: #F7FAFB;
  position: relative;
  z-index: 10;
}
.tp-item.selected .choices, .tp-item.selected .transport_options {
  display: block;
}
.tp-item.selected .text .option-name {
  font-weight: 700;
}
.tp-item.selected .text .option-name span {
  font-weight: 400;
}
.tp-item.selected .c-wrapper__mark::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.tp-item .c-comp-styled {
  margin-bottom: 0;
}
.tp-item .image {
  min-width: 65px;
  width: 65px;
  height: 45px;
  margin-right: 15px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tp-item .image img {
  max-width: 100%;
  max-height: 100%;
}
.tp-item .text .option-name {
  line-height: 1.1;
  font-size: 17px;
  font-weight: 400;
}
.tp-item .text .option-name span {
  display: block;
  font-size: 13px;
  margin-top: 7px;
  color: #178FCF;
}
.tp-item .price {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-transform: uppercase;
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  min-width: 100px;
}

.purchase-items-summary {
  padding: 22px;
  border: 1px solid #AACEE2;
  background: white;
}
.purchase-items-summary .section-label {
  font-size: 20px;
  margin-bottom: 6px;
}
.purchase-items-summary .cost-sum {
  padding: 20px 0 0 0;
}
.purchase-items-summary .cost-sum .price-with-vat {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.purchase-items-summary .cost-sum .price-with-vat span {
  font-size: 18px;
  font-weight: bold;
}
.purchase-items-summary .payment-transport-summary {
  padding-top: 15px;
  border-bottom: 1px solid #AACEE2;
}
.purchase-items-summary .payment-transport-summary .transport-payment-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 15px;
}
.purchase-items-summary .payment-transport-summary .transport-payment-item .image {
  margin-right: 13px;
  min-width: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 37px;
  height: 30px;
}
.purchase-items-summary .payment-transport-summary .transport-payment-item .image img {
  max-width: 100%;
  max-height: 100%;
}
.purchase-items-summary .payment-transport-summary .transport-payment-item .name {
  font-weight: 500;
  font-size: 14px;
}
.purchase-items-summary .payment-transport-summary .transport-payment-item .price {
  text-transform: uppercase;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}
.purchase-items-summary .product-list {
  border-top: 1px solid #AACEE2;
  border-bottom: 1px solid #AACEE2;
  padding-top: 15px;
}
.purchase-items-summary .product-list .product-preview--small {
  margin-bottom: 15px;
}
.purchase-items-summary .product-list .product-preview--small .product__image {
  min-width: 37px;
  width: 37px;
  height: 37px;
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.purchase-items-summary .product-list .product-preview--small .product__name {
  width: 100%;
  font-size: 14px;
  margin-bottom: 5px;
}
.purchase-items-summary .product-list .product-preview--small .product__name-var {
  font-size: 12px;
  font-weight: 400;
}
.purchase-items-summary .product-list .product-preview--small .product__info {
  width: 100%;
  margin-right: 8px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.purchase-items-summary .product-list .product-preview--small .product__info .product-options {
  width: 100%;
  font-size: 12px;
  color: #178FCF;
}
.purchase-items-summary .product-list .product-preview--small .price-and-count {
  margin-top: 0;
  text-align: right;
  min-width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.purchase-items-summary .product-list .product-preview--small .price-and-count .count {
  font-size: 14px;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.purchase-items-summary .product-list .product-preview--small .price-and-count .count span {
  margin-left: 1px;
  line-height: 0;
  font-size: 12px;
}
.purchase-items-summary .product-list .product-preview--small .price-and-count .price {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}
.purchase-items-summary .product-list .product-preview--small .price-and-count .price, .purchase-items-summary .product-list .product-preview--small .price-and-count .count {
  margin-right: 0;
}

.order-steps-intro .mobile-order-steps {
  display: none;
}

@media all and (max-width: 798px) {
  .quick-contact {
    display: none;
  }

  .tp-item .image {
    min-width: 48px;
    width: 48px;
  }
  .tp-item .text .option-name {
    font-size: 13px;
  }
  .tp-item .text .option-name span {
    font-size: 11px;
  }
  .tp-item .text .price {
    text-align: left;
    margin-left: 0;
    margin-top: 5px;
    font-size: 13px;
  }

  .order-sent-summary {
    margin-top: 0px;
    margin-bottom: 10px;
  }
  .order-sent-summary .h2 {
    font-size: 19px;
  }
  .order-sent-summary .h2.payment-heading {
    margin-top: 60px;
  }
  .order-sent-summary .address-info {
    font-size: 15px;
  }
  .order-sent-summary .payment-info .small-info {
    font-size: 13px;
  }

  .purchase-items-summary {
    margin-top: 60px;
  }
  .purchase-items-summary .cost-sum {
    margin-bottom: 0px;
    padding: 0;
  }
  .purchase-items-summary .section-label {
    font-size: 18px;
  }

  .order-steps-intro .basket__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .order-steps-intro .basket__row .h1 {
    margin-bottom: 0;
  }
  .order-steps-intro .basket__row .mobile-order-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .order-steps-intro .basket__row .mobile-order-steps .step--basket {
    z-index: 5;
  }
  .order-steps-intro .basket__row .mobile-order-steps .step--basket, .order-steps-intro .basket__row .mobile-order-steps .step--summary {
    position: relative;
    width: 37px;
    height: 37px;
  }
  .order-steps-intro .basket__row .mobile-order-steps .step--basket:before, .order-steps-intro .basket__row .mobile-order-steps .step--summary:before {
    background: url("/userfiles/images/icons.svg") no-repeat -414px -12px;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    content: "";
    display: block;
  }
  .order-steps-intro .basket__row .mobile-order-steps .step--summary {
    z-index: 3;
    margin-left: 18px;
  }
  .order-steps-intro .basket__row .mobile-order-steps .step--summary:before {
    background-position: -469px -56px;
  }
  .order-steps-intro .basket__row .mobile-order-steps .step--summary.current span {
    background: #000000;
  }
  .order-steps-intro .basket__row .mobile-order-steps .step--summary.current:before {
    background-position: -469px -12px;
  }
  .order-steps-intro .basket__row .mobile-order-steps .step--summary span {
    left: -20px;
    top: 17px;
    display: block;
    z-index: 1;
    width: 22px;
    height: 3px;
    position: absolute;
  }

  .order-payment-summary .border-space {
    padding: 15px;
    border: none;
  }
  .order-payment-summary .border-space .country-select-wrapper {
    margin-bottom: 25px;
  }
  .order-payment-summary .send-order {
    margin-bottom: 30px;
  }
  .order-payment-summary .order-form .section-label {
    margin-top: 25px;
  }
  .order-payment-summary .mailing_phone_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .cost-sum {
    margin-bottom: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cost-sum .price-with-vat {
    margin-top: 15px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .cost-sum .btn-color-1-fill {
    margin-top: 13px;
  }

  .proceed-to-next-step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 300px;
    margin: auto;
  }
  .proceed-to-next-step .wrapper {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .proceed-to-next-step .coupons-section {
    margin-right: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .proceed-to-next-step .coupons-section .coupon-input-expandable {
    margin-bottom: 20px;
  }
  .proceed-to-next-step .btn-color-1-fill {
    font-size: 14px;
  }

  .order-items-summary-labels {
    display: none;
  }

  .order-items-summary .product-wrapper {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .order-items-summary .product-wrapper .prd__image {
    min-width: 66px;
    width: 66px;
    height: 84px;
    margin-right: 12px;
  }
  .order-items-summary .product-wrapper .prd-name {
    padding-right: 5px;
    font-size: 13px;
    margin-bottom: 6px;
  }
  .order-items-summary .product-wrapper .prd-name span {
    font-size: 12px;
  }
  .order-items-summary .product-wrapper .aligner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .order-items-summary .product-wrapper .aligner .prd-counter {
    display: none;
  }
  .order-items-summary .product-wrapper .aligner .stock-cell {
    margin-right: 0;
    font-size: 11px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    min-width: 0px;
  }
  .order-items-summary .product-wrapper .aligner .stock-cell.in-stock:before {
    width: 4px;
    height: 8px;
    margin-right: 5px;
  }
  .order-items-summary .product-wrapper .aligner .price {
    margin-right: 0;
    font-size: 17px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    min-width: 0px;
  }
  .order-items-summary .product-wrapper .aligner .remove-from-basket {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: auto;
    width: 21px;
    height: 21px;
  }
  .order-items-summary .product-wrapper .aligner .remove-from-basket:before {
    top: 10px;
    left: 0px;
  }
  .order-items-summary .product-wrapper .aligner .remove-from-basket:after {
    left: 10px;
    top: 0px;
  }
  .order-items-summary .product-wrapper .name-and-mobile-count {
    margin-right: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .order-items-summary .product-wrapper .name-and-mobile-count .prd-counter {
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .order-items-summary .product-wrapper .name-and-mobile-count .prd-counter .counter__value {
    font-size: 15px;
  }
}
.order__gift {
  margin-bottom: 66px;
}

.order__gift-list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.order__gift-box {
  border: 1px solid #AACEE2;
  background: #FFF;
  padding: 0 50px 0 50px;
  max-height: 545px;
  overflow-y: auto;
  position: relative;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.order__gift-title {
  padding-bottom: 50px;
  padding-top: 50px;
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #FFF;
  z-index: 5;
  margin: 0 !important;
}

.order__gift-title-span {
  color: #178FCF;
}

.order__gift-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.order__gift-item-left-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.order__gift-item-left-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.order__gift-item-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.order__gift-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  padding-left: 0;
  /*&::before {
    content: "";
    position: absolute;
    inset: 0;
    display: block;
    height: 100%;
    width: 2px;
    left: -29.6%;
    background: $brand-color-3;
  }*/
}

@media all and (max-width: 1420px) {
  .order__gift-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    list-style: none;
    padding-left: 0;
    /* &::before {
       //display: none;
       content: "";
       position: absolute;
       inset: 0;
       display: block;
       height: 100%;
       width: 2px;
       left: -27.8%;
       background: $brand-color-3;
     }*/
  }
}
@media all and (max-width: 1000px) {
  .order__gift-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    list-style: none;
    padding-left: 0;
    /* &::before {
       //display: none;
       content: "";
       position: absolute;
       inset: 0;
       display: block;
       height: 100%;
       width: 2px;
       left: -25.9%;
       background: $brand-color-3;
     }*/
  }
}
.order__gift-line {
  display: block;
  position: relative;
  height: 100%;
  width: 2px;
  margin-left: 20px;
}

@media all and (max-width: 800px) {
  .order__gift-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    list-style: none;
    padding-left: 0;
  }
  .order__gift-list::before {
    display: none;
    content: "";
    position: absolute;
    inset: 0;
    height: 100%;
    width: 2px;
    left: -16%;
    background: #178FCF;
  }
}
.order__gift-list-item {
  width: 100%;
  padding-top: 9px;
  padding-bottom: 9px;
}
.order__gift-list-item:first-of-type {
  padding-top: 0;
}
.order__gift-list-item:last-of-type {
  padding-bottom: 0;
}

.order__gift-item-number {
  color: #178FCF;
}

.order__gift-item-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 62px;
  height: 62px;
}

.order__gift-item-pic {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.order__gift-price-actual-price {
  position: absolute;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  font-size: 14px;
  font-weight: 500;
  color: #178FCF;
  left: -15px;
  z-index: 5;
}

.order__gift-price-actual-price-icon {
  width: 35px;
  height: 30px;
  background: url(/userfiles/images/icons.svg) no-repeat -492px -666px;
}

.order__gift-price-level-amount {
  font-size: 22px;
  font-weight: 500;
  background-color: white;
  color: #178FCF;
  padding-top: 6px;
  padding-bottom: 6px;
}

.order__gift-box--no-scroll {
  overflow: hidden;
  max-height: 209px;
}
.order__gift-box--no-scroll::after {
  bottom: 0;
}

.order__gift-price-line-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.order__gift-box--shrinked {
  max-height: 200px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  overflow: hidden;
}

.order__gift-item-button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.order__gift-item-button-close {
  background: none;
  border: none;
}

.tips-wrapper {
  border: 1px solid #AACEE2;
  background: #FFF;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tips-wrapper .tips-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.tips-wrapper .tips-text .tips-title {
  font-size: 17px;
  font-weight: 700;
  color: #178FCF;
}
.tips-wrapper .tips-text p {
  margin-bottom: 0;
}
.tips-wrapper .tips-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tips-wrapper .tips-list .tips-item {
  display: block;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 35px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.tips-wrapper .tips-list .tips-item .tips-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.tips-wrapper .tips-list .tips-item .tips-custom-input {
  width: 70px;
  border: none;
  background: #EAF2F6;
  font-size: inherit;
  text-align: center;
  outline: none;
  padding: 10px;
}
.tips-wrapper .tips-list .tips-item .tips-checkmark {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #EAF2F6;
  border-radius: 50%;
  -webkit-transition: background-color 0.15s ease;
  -o-transition: background-color 0.15s ease;
  transition: background-color 0.15s ease;
}
.tips-wrapper .tips-list .tips-item .tips-checkmark::after {
  content: "";
  position: absolute;
  display: none;
  top: 6px;
  left: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #178FCF;
}
.tips-wrapper .tips-list .tips-input:checked ~ .tips-checkmark {
  background-color: #EAF2F6;
}
.tips-wrapper .tips-list .tips-input:checked ~ .tips-checkmark::after {
  display: block;
}

@media all and (max-width: 797px) {
  .order__gift-line {
    display: none;
  }

  .order__gift-price-level-amount {
    margin-bottom: 10px;
  }

  .tips-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }

  .tips-list {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 20px !important;
  }
}
@media all and (max-width: 480px) {
  .order__gift-item-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .order-gift__top-choose {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }

  .order__gift-title {
    padding: 10px;
  }

  .order__gift-box--shrinked {
    max-height: 225px;
  }

  .order__gift-box {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.account-section .cnt-form {
  max-width: none;
  background: white;
  padding: 20px;
}
.account-section .cnt-form .btn-brand {
  font-size: 13px;
  padding: 8px 12px;
  margin-bottom: 0;
}
.account-section .cnt-form .select-group {
  position: relative;
}
.account-section .cnt-form .select-group::after {
  right: 18px;
  top: 42px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
}
.account-section .cnt-form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.account-section .account-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.account-section .account-steps .step {
  background: #178FCF;
  color: white;
  padding: 11px 19px;
}
.account-section .account-steps .step.selected, .account-section .account-steps .step:hover, .account-section .account-steps .step:focus {
  background: #004D75;
}
.account-section .account-steps .step:not(:last-of-type) {
  border-right: 1px solid #0C7AB5;
}
.account-section .in-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.account-section .in-line .h1 {
  margin-right: 150px;
}
.account-section .in-line .order-steps {
  margin-bottom: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 600px;
}
.account-section .in-line .order-steps .step {
  min-height: 5px;
  padding: 11px;
}
.account-section .address-table {
  margin-bottom: 20px;
  width: 100%;
  margin: 30px 0;
  border: solid 1px #178FCF;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 1010px;
}
.account-section .address-table .btn-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.account-section .address-table .btn-brand {
  margin-bottom: 3px;
  margin-top: 3px;
}
.account-section .address-table .btn-simple {
  color: #000000;
  text-decoration: underline;
  text-align: right;
  margin-right: 10px;
}
.account-section .address-table .btn-simple:hover, .account-section .address-table .btn-simple:focus {
  color: #178FCF;
}
.account-section .address-table .btn-color-3 {
  padding: 5px 20px;
  font-size: 12px;
}
.account-section .address-table .btn-color-3-inverted {
  margin-right: 10px;
  font-size: 12px;
  padding: 5px 14px;
}
.account-section .address-table tr th {
  border-bottom: 1px solid #178FCF;
}
.account-section .address-table tr:not(.success) td {
  background: #F7FAFB;
}
.account-section .address-table tr.success > td {
  background: #D1EFFF;
}
.account-section .address-table tr td, .account-section .address-table tr th {
  padding: 8px 10px;
  font-size: 14px;
}
.account-section .address-table tr td:last-of-type, .account-section .address-table tr th:last-of-type {
  font-weight: bold;
}
.account-section .address-table tr:not(:last-of-type) td {
  border-bottom: 1px solid #178FCF;
}

@media all and (max-width: 1000px) {
  .account-section .in-line {
    margin-bottom: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .account-section .in-line .h1 {
    margin-right: 0;
  }
  .account-section .order-steps .steps .step {
    border-bottom: 1px solid #178FCF;
  }
  .account-section .order-steps .steps .step.first, .account-section .order-steps .steps .step.last {
    border-left: none;
    border-right: none;
  }
  .account-section .order-steps .steps .step.last {
    border-bottom: none;
  }
}
.categories .more-category {
  visibility: hidden;
  opacity: 0;
  display: none;
  -webkit-transition: visibility 0s, opacity 500ms ease-out;
  -o-transition: visibility 0s, opacity 500ms ease-out;
  transition: visibility 0s, opacity 500ms ease-out;
  overflow: hidden;
}

.intro-section--search {
  padding-bottom: 0;
}
.intro-section--search .nav-link {
  border-radius: 5px 5px 0 0;
  margin-right: 15px;
  padding: 10px 15px;
  background: #FFF;
  color: #178FCF;
}
.intro-section--search .nav-link, .intro-section--search .nav-link.active {
  border: 1px solid #AACEE2;
  border-bottom: 0 #fff;
}
.intro-section--search .nav-link:hover, .intro-section--search .nav-link.active {
  color: #004D75;
}

.search-nav .nav-link__count {
  color: #959595;
}

/* Cookie css settings */
/* Cookie modal */
.cookie-modal {
  padding: 0px;
  z-index: 9999999999;
  pointer-events: none;
}

/* Cookie modal | Container */
.cookie-modal__container {
  max-width: 500px;
  max-height: 100%;
  overflow-y: auto;
  pointer-events: all;
}

/* Cookie box */
.cookie-box {
  background: white;
  display: block;
  padding: 30px;
  z-index: 9999999999;
}
@media screen and (max-width: 992px) {
  .cookie-box {
    padding: 15px;
  }
}
@media screen and (max-width: 500px) {
  .cookie-box {
    padding: 8px;
  }
}

.cookie-box--modal {
  max-width: 520px;
  margin: auto;
  pointer-events: all;
}

.cookie-box--bar {
  bottom: 0;
  position: fixed;
  left: 0;
  right: 0;
}

.cookie-box--hidden .cookie-box--bar {
  display: none;
}
.cookie-box--hidden .cookie-overlay {
  display: none;
}

.click-through {
  pointer-events: none;
}

/* Cookie overlay */
.cookie-overlay {
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: block;
  position: fixed;
  pointer-events: none;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999999998;
  opacity: 1;
}
.cookie-overlay.modal {
  z-index: -1;
}

/* Cookie box | Settings */
.cookie-box__settings {
  margin-bottom: 20px;
}

.cookie-box__settings-top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-right: 8px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}

.cookie-box__settings-label {
  font-size: 16px;
  font-weight: 700;
  margin-right: 10px;
}

/* Cookie box | Content */
.cookie-box__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  text-align: left;
}
@media screen and (max-width: 1420px) {
  .cookie-box__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cookie-box--modal .cookie-box__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* Cookie box | Title */
.cookie-box__title {
  font-weight: 700;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 992px) {
  .cookie-box__title {
    font-size: 19px;
  }
}
.cookie-box__title:not(:first-child) {
  margin-top: 35px;
}

/* Cookie box | Text */
.cookie-box__text {
  margin-right: 40px;
  overflow: auto;
  -ms-overflow-style: none;
  /* width */
  /* Track */
  /* Handle */
  /* Track piece */
}
@media screen and (max-width: 1420px) {
  .cookie-box__text {
    margin-right: 0px;
  }
}
@media screen and (max-width: 992px) {
  .cookie-box__text {
    font-size: 12px;
  }
}
@media screen and (max-width: 992px) {
  .cookie-box--bar .cookie-box__text {
    max-height: 130px;
  }
}
.cookie-box--modal .cookie-box__text {
  margin-right: 0px;
  max-height: 450px;
}
@media screen and (max-width: 992px) {
  .cookie-box--modal .cookie-box__text {
    max-height: 200px;
  }
}
.cookie-box__text::-webkit-scrollbar {
  background: none;
  border: none;
  width: 7px;
}
.cookie-box__text::-webkit-scrollbar-track {
  border: none;
}
.cookie-box__text::-webkit-scrollbar-thumb {
  background: #c2c2c2;
}
.cookie-box__text::-webkit-scrollbar-corner {
  border: none;
}
.cookie-box__text::-webkit-scrollbar-track-piece {
  border-left: none;
}

/* Cookie box | Lead */
.cookie-box__lead {
  font-size: 14px;
  /* Cookie box | Lead - Anchor underline */
}
@media screen and (max-width: 992px) {
  .cookie-box__lead {
    font-size: 12px;
  }
}
.cookie-box__lead > a, .cookie-box__lead > p a {
  text-decoration: underline;
}

/* Cookie box | Buttons */
.cookie-box__buttons {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1420px) {
  .cookie-box__buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 10px;
  }
}
.cookie-box--modal .cookie-box__buttons {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}

.cookie-box__button, .cookie-box__button.btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  min-height: 52px;
  font-size: 14px;
  height: auto;
  line-height: 1.2;
  padding: 4px 10px 4px 10px;
  white-space: nowrap;
  margin-bottom: 0;
}
.cookie-box__button:not(:last-of-type), .cookie-box__button.btn:not(:last-of-type) {
  margin-right: 30px;
}
@media screen and (max-width: 992px) {
  .cookie-box__button:not(:last-of-type), .cookie-box__button.btn:not(:last-of-type) {
    margin-right: 12px;
  }
}
@media screen and (max-width: 992px) {
  .cookie-box__button, .cookie-box__button.btn {
    font-size: 12px;
    min-height: 34px;
  }
}
@media screen and (max-width: 500px) {
  .cookie-box__button, .cookie-box__button.btn {
    font-size: 11px;
    min-height: 34px;
    padding: 4px 8px 4px 8px;
  }
}

.cookie-box__mobile-item {
  display: none;
}
@media all and (max-width: 992px) {
  .cookie-box__mobile-item {
    display: block;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.cookie-box__desktop-item {
  display: block;
}
@media all and (max-width: 992px) {
  .cookie-box__desktop-item {
    display: none;
  }
}

.cookie-box__toggle {
  display: block;
  background: #e8e8e8;
  border-radius: 20px;
  cursor: pointer;
  height: 24px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 50px;
}

.cookie-box__toggle-mark {
  background: #bbbbbb;
  border-radius: 50%;
  display: block;
  height: 20px;
  position: absolute;
  left: 3px;
  top: 2px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 20px;
}

.cookie-box__checkbox {
  display: none;
}
.cookie-box__checkbox:checked + .cookie-box__toggle-mark {
  background: #178FCF;
  left: 27px;
}

.cookie-box__checkbox--disabled:checked + .cookie-box__toggle-mark {
  background: #5fbced;
  cursor: not-allowed;
}

.cookie-box__manage {
  text-decoration: underline;
  font-size: 14px;
}
.cookie-box--modal .cookie-box__manage {
  margin-top: 8px;
}

/* Cookie box | Content | Bottom */
.cookie-box__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
}
.cookie-box__bottom a {
  text-decoration: underline;
}
@media screen and (max-width: 992px) {
  .cookie-box__bottom {
    font-size: 12px;
  }
}