/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

@charset "UTF-8";
:root {
  --blue: #17a2b8;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #999;
  --gray-dark: #343a40;
  --primary: #17a2b8;
  --secondary: #999;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --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%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

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

[tabindex="-1"]:focus:not(:focus-visible) {
  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: 7.5px;
}

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;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

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;
}

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: #17a2b8;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: rgb(14.5, 102.1304347826, 116);
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", 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 {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

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

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

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

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

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;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

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

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

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;
}

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-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: 7.5px;
  font-weight: 500;
  line-height: 1.2;
}

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: 15px;
  margin-bottom: 15px;
  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: 15px;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #999;
}
.blockquote-footer::before {
  content: "— ";
}

.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: 7.5px;
  line-height: 1;
}

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

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: 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,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 760px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

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

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .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%;
  padding-right: 15px;
  padding-left: 15px;
}

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

.row-cols-1 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6666666667%;
          flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

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

.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: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .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: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .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: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .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%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 15px;
  color: #212529;
}
.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-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-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

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

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

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: rgb(190.04, 228.96, 235.12);
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: rgb(134.36, 206.64, 218.08);
}

.table-hover .table-primary:hover {
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: rgb(226.44, 226.44, 226.44);
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: rgb(201.96, 201.96, 201.96);
}

.table-hover .table-secondary:hover {
  background-color: rgb(213.69, 213.69, 213.69);
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: rgb(213.69, 213.69, 213.69);
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: rgb(194.8, 230.36, 202.92);
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: rgb(143.2, 209.24, 158.28);
}

.table-hover .table-success:hover {
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: rgb(190.04, 228.96, 235.12);
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: rgb(134.36, 206.64, 218.08);
}

.table-hover .table-info:hover {
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: rgb(255, 237.64, 185.56);
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: rgb(255, 222.76, 126.04);
}

.table-hover .table-warning:hover {
  background-color: rgb(255, 231.265, 160.06);
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: rgb(255, 231.265, 160.06);
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: rgb(245.2, 198.44, 202.92);
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: rgb(236.8, 149.96, 158.28);
}

.table-hover .table-danger:hover {
  background-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: rgb(253.04, 253.32, 253.6);
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: rgb(251.36, 251.88, 252.4);
}

.table-hover .table-light:hover {
  background-color: rgb(238.165, 240.57, 242.975);
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: rgb(238.165, 240.57, 242.975);
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: rgb(198.16, 199.84, 201.52);
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: rgb(149.44, 152.56, 155.68);
}

.table-hover .table-dark:hover {
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}

.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: #343a40;
  border-color: rgb(69.1465517241, 77.125, 85.1034482759);
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: rgb(69.1465517241, 77.125, 85.1034482759);
}
.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 {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: 44px;
  padding: 12px 15px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 2px;
  -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;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
.form-control:focus {
  background-color: #fff;
  border-color: rgb(99, 216.847826087, 235.5);
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}
.form-control::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.form-control::placeholder {
  color: #999;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

.form-control-label {
  width: 100%;
  margin: 0;
}

.form-control-title {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 5px;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.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-row .c-shadow-overflow:after {
  min-height: 34px;
}
.form-row .c-shadow-overflow .c-mobile-scrolling .btn-group {
  padding-right: 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, .form-check-input:disabled ~ .form-check-label {
  color: #999;
}

.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: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}
.form-row > .col > .valid-tooltip, .form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #28a745;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem / calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.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: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: rgb(51.6956521739, 206.3043478261, 87);
  background-color: rgb(51.6956521739, 206.3043478261, 87);
}
.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 0.2rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #28a745;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

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

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}
.form-row > .col > .invalid-tooltip, .form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem / calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
.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: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: rgb(227.5316455696, 96.4683544304, 109.0253164557);
  background-color: rgb(227.5316455696, 96.4683544304, 109.0253164557);
}
.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 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 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: 576px) {
  .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,
  .form-inline .custom-select {
    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;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    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;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  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;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    -webkit-transition: none;
    transition: none;
  }
}
.btn:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-primary:hover {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  border-color: rgb(15.9166666667, 112.1086956522, 127.3333333333);
}
.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(57.8, 175.95, 194.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}

.btn-secondary {
  color: #212529;
  background-color: #999;
  border-color: #999;
}
.btn-secondary:hover {
  color: #fff;
  background-color: rgb(133.875, 133.875, 133.875);
  border-color: rgb(127.5, 127.5, 127.5);
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: rgb(133.875, 133.875, 133.875);
  border-color: rgb(127.5, 127.5, 127.5);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(135, 135.6, 136.2, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(135, 135.6, 136.2, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #212529;
  background-color: #999;
  border-color: #999;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: rgb(127.5, 127.5, 127.5);
  border-color: rgb(121.125, 121.125, 121.125);
}
.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(135, 135.6, 136.2, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(135, 135.6, 136.2, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: rgb(30.1449275362, 125.8550724638, 52);
  border-color: rgb(27.6811594203, 115.5688405797, 47.75);
}
.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(72.25, 180.2, 96.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(72.25, 180.2, 96.9, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 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: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  border-color: rgb(15.9166666667, 112.1086956522, 127.3333333333);
}
.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(57.8, 175.95, 194.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
}
.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: rgb(211, 158.25, 0);
  border-color: rgb(198.25, 148.6875, 0);
}
.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(221.7, 169.6, 12.1, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(225.25, 83.3, 96.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(225.25, 83.3, 96.9, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
  border-color: rgb(178.3481012658, 30.9018987342, 45.0284810127);
}
.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(225.25, 83.3, 96.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(225.25, 83.3, 96.9, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
}
.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 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: rgb(218.25, 223.5, 228.75);
  border-color: rgb(210.8125, 217.125, 223.4375);
}
.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(215.75, 217.2, 218.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
}
.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 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: rgb(29.1379310345, 32.5, 35.8620689655);
  border-color: rgb(23.4224137931, 26.125, 28.8275862069);
}
.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(82.45, 87.55, 92.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(82.45, 87.55, 92.65, 0.5);
}

.btn-outline-primary {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-primary:focus, .btn-outline-primary.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-primary.disabled, .btn-outline-primary:disabled {
  color: #17a2b8;
  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: #17a2b8;
  border-color: #17a2b8;
}
.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, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-secondary {
  color: #999;
  border-color: #999;
}
.btn-outline-secondary:hover {
  color: #212529;
  background-color: #999;
  border-color: #999;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(153, 153, 153, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(153, 153, 153, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #999;
  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: #212529;
  background-color: #999;
  border-color: #999;
}
.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(153, 153, 153, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(153, 153, 153, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  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: #28a745;
  border-color: #28a745;
}
.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(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  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: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  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: #ffc107;
  border-color: #ffc107;
}
.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(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  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: #dc3545;
  border-color: #dc3545;
}
.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(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  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;
  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: #17a2b8;
  text-decoration: none;
}
.btn-link:hover {
  color: rgb(14.5, 102.1304347826, 116);
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
  color: #999;
  pointer-events: none;
}

.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 {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  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;
  max-height: 300px;
  overflow-y: auto;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  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 {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  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 {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  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-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 7.5px 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: rgb(21.6283783784, 24.25, 26.8716216216);
  text-decoration: none;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #17a2b8;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  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: #999;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.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: 1;
      -ms-flex: 1 1 auto;
          flex: 1 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-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:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.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, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
  margin-right: 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:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.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 > .form-control-plaintext,
.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%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .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:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.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(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group:not(.has-validation) > .form-control:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > .form-control:nth-last-child(n+3),
.input-group.has-validation > .custom-select:nth-last-child(n+3),
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-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:focus,
.input-group-append .btn:focus {
  z-index: 3;
}
.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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.375rem 15px;
  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;
  min-width: 70px;
  border-radius: 0.25rem;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.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;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.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;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .btn,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .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;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}

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

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #17a2b8;
  background-color: #17a2b8;
}
.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: rgb(99, 216.847826087, 235.5);
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: rgb(144.3333333333, 227.9347826087, 241.1666666667);
  border-color: rgb(144.3333333333, 227.9347826087, 241.1666666667);
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #999;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50% / 50% 50% no-repeat;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #17a2b8;
  background-color: #17a2b8;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' 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, 162, 184, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(23, 162, 184, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' 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, 162, 184, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}
.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: transform 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: transform 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-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  -webkit-transform: translateX(0.75rem);
      -ms-transform: translateX(0.75rem);
          transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(23, 162, 184, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-select:focus {
  border-color: rgb(99, 216.847826087, 235.5);
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}
.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: #999;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  display: none;
}
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

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

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: rgb(99, 216.847826087, 235.5);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  overflow: hidden;
  font-weight: 400;
  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(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-range:focus {
  outline: 0;
}
.custom-range:focus::-webkit-slider-thumb {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #17a2b8;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: 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;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: rgb(144.3333333333, 227.9347826087, 241.1666666667);
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #17a2b8;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: rgb(144.3333333333, 227.9347826087, 241.1666666667);
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #17a2b8;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: rgb(144.3333333333, 227.9347826087, 241.1666666667);
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: 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;
}
@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    -webkit-transition: none;
    transition: none;
  }
}

.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: #999;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  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: #999;
  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: #17a2b8;
}

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

.nav-justified > .nav-link,
.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;
}

.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 {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #999;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #999;
}

.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: #17a2b8;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: rgb(14.5, 102.1304347826, 116);
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}

.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: 3;
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.page-item.disabled .page-link {
  color: #999;
  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;
  -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;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    -webkit-transition: none;
    transition: none;
  }
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.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: #17a2b8;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  -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);
}

.badge-secondary {
  color: #212529;
  background-color: #999;
}
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #212529;
  background-color: rgb(127.5, 127.5, 127.5);
}
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(153, 153, 153, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(153, 153, 153, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}
a.badge-success:hover, a.badge-success:focus {
  color: #fff;
  background-color: rgb(30.1449275362, 125.8550724638, 52);
}
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}
a.badge-info:hover, a.badge-info:focus {
  color: #fff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  -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);
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}
a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: rgb(211, 158.25, 0);
}
a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}
a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}
a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: rgb(218.25, 223.5, 228.75);
}
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  -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);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}
a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: rgb(29.1379310345, 32.5, 35.8620689655);
}
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  -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);
}

.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;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(208.6, 236.4, 240.8);
  border-color: rgb(190.04, 228.96, 235.12);
}
.alert-primary hr {
  border-top-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.alert-primary .alert-link {
  color: rgb(6.2933333333, 44.3269565217, 50.3466666667);
}

.alert-secondary {
  color: rgb(79.56, 79.56, 79.56);
  background-color: rgb(234.6, 234.6, 234.6);
  border-color: rgb(226.44, 226.44, 226.44);
}
.alert-secondary hr {
  border-top-color: rgb(213.69, 213.69, 213.69);
}
.alert-secondary .alert-link {
  color: rgb(54.06, 54.06, 54.06);
}

.alert-success {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(212, 237.4, 217.8);
  border-color: rgb(194.8, 230.36, 202.92);
}
.alert-success hr {
  border-top-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}
.alert-success .alert-link {
  color: rgb(10.9449275362, 45.6950724638, 18.88);
}

.alert-info {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(208.6, 236.4, 240.8);
  border-color: rgb(190.04, 228.96, 235.12);
}
.alert-info hr {
  border-top-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.alert-info .alert-link {
  color: rgb(6.2933333333, 44.3269565217, 50.3466666667);
}

.alert-warning {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 242.6, 205.4);
  border-color: rgb(255, 237.64, 185.56);
}
.alert-warning hr {
  border-top-color: rgb(255, 231.265, 160.06);
}
.alert-warning .alert-link {
  color: rgb(82.9625954198, 62.7912977099, 2.2774045802);
}

.alert-danger {
  color: rgb(114.4, 27.56, 35.88);
  background-color: rgb(248, 214.6, 217.8);
  border-color: rgb(245.2, 198.44, 202.92);
}
.alert-danger hr {
  border-top-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
}
.alert-danger .alert-link {
  color: rgb(73.3010989011, 17.6589010989, 22.9898901099);
}

.alert-light {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(253.6, 253.8, 254);
  border-color: rgb(253.04, 253.32, 253.6);
}
.alert-light hr {
  border-top-color: rgb(238.165, 240.57, 242.975);
}
.alert-light .alert-link {
  color: rgb(103.5492351816, 103.98, 104.4107648184);
}

.alert-dark {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(214.4, 215.6, 216.8);
  border-color: rgb(198.16, 199.84, 201.52);
}
.alert-dark hr {
  border-top-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.alert-dark .alert-link {
  color: rgb(4.1779310345, 4.66, 5.1420689655);
}

.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;
  border-radius: 0.25rem;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  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;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #999;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(190.04, 228.96, 235.12);
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(11.96, 84.24, 95.68);
  border-color: rgb(11.96, 84.24, 95.68);
}

.list-group-item-secondary {
  color: rgb(79.56, 79.56, 79.56);
  background-color: rgb(226.44, 226.44, 226.44);
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: rgb(79.56, 79.56, 79.56);
  background-color: rgb(213.69, 213.69, 213.69);
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(79.56, 79.56, 79.56);
  border-color: rgb(79.56, 79.56, 79.56);
}

.list-group-item-success {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(194.8, 230.36, 202.92);
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: rgb(20.8, 86.84, 35.88);
  background-color: rgb(176.7059405941, 222.9540594059, 187.2665346535);
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: rgb(20.8, 86.84, 35.88);
  border-color: rgb(20.8, 86.84, 35.88);
}

.list-group-item-info {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(190.04, 228.96, 235.12);
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: rgb(11.96, 84.24, 95.68);
  border-color: rgb(11.96, 84.24, 95.68);
}

.list-group-item-warning {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 237.64, 185.56);
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 231.265, 160.06);
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: rgb(132.6, 100.36, 3.64);
  border-color: rgb(132.6, 100.36, 3.64);
}

.list-group-item-danger {
  color: rgb(114.4, 27.56, 35.88);
  background-color: rgb(245.2, 198.44, 202.92);
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: rgb(114.4, 27.56, 35.88);
  background-color: rgb(241.4341772152, 176.7058227848, 182.9073417722);
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: rgb(114.4, 27.56, 35.88);
  border-color: rgb(114.4, 27.56, 35.88);
}

.list-group-item-light {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(253.04, 253.32, 253.6);
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(238.165, 240.57, 242.975);
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: rgb(128.96, 129.48, 130);
  border-color: rgb(128.96, 129.48, 130);
}

.list-group-item-dark {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(198.16, 199.84, 201.52);
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: rgb(27.04, 30.16, 33.28);
  background-color: rgb(185.0216751269, 187.09, 189.1583248731);
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: rgb(27.04, 30.16, 33.28);
  border-color: rgb(27.04, 30.16, 33.28);
}

.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 {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

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

a.close.disabled {
  pointer-events: none;
}

.toast {
  -ms-flex-preferred-size: 350px;
      flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.25rem;
}
.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}
.toast.showing {
  opacity: 1;
}
.toast.show {
  display: block;
  opacity: 1;
}
.toast.hide {
  display: none;
}

.toast-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.25rem 0.75rem;
  color: #999;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.toast-body {
  padding: 0.75rem;
}

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

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.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;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
      -ms-transform: translate(0, -50px);
          transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.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% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  -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;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.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;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  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 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .close {
  padding: 1rem 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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

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

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  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, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  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);
}
.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=top] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 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-width: 0.5rem 0.5rem 0;
  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);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=right] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 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-width: 0.5rem 0.5rem 0.5rem 0;
  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);
}
.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  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-width: 0 0.5rem 0.5rem 0.5rem;
  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 rgb(247.35, 247.35, 247.35);
}

.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);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=left] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  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-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: rgb(247.35, 247.35, 247.35);
  border-bottom: 1px solid rgb(234.6, 234.6, 234.6);
  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;
}

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

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 0.75s linear infinite spinner-border;
          animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: 0.75s linear infinite spinner-grow;
          animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
  }
}
.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: #17a2b8 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667) !important;
}

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

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: rgb(127.5, 127.5, 127.5) !important;
}

.bg-success {
  background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: rgb(30.1449275362, 125.8550724638, 52) !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: rgb(17.3333333333, 122.0869565217, 138.6666666667) !important;
}

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

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: rgb(211, 158.25, 0) !important;
}

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

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: rgb(189.2151898734, 32.7848101266, 47.7721518987) !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: rgb(218.25, 223.5, 228.75) !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: rgb(29.1379310345, 32.5, 35.8620689655) !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: #17a2b8 !important;
}

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

.border-success {
  border-color: #28a745 !important;
}

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

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

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

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

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

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

.rounded-sm {
  border-radius: 0.2rem !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-lg {
  border-radius: 0.3rem !important;
}

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

.rounded-pill {
  border-radius: 50rem !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: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -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: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -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: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -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 (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-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;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !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: 576px) {
  .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;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !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: 768px) {
  .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;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !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: 992px) {
  .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;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !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;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xl-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: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

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

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

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

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

.position-sticky {
  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: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

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

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

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

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

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

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

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

.w-auto {
  width: auto !important;
}

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

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

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

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

.h-auto {
  height: auto !important;
}

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

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

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !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: 5px !important;
}

.mt-1,
.my-1 {
  margin-top: 5px !important;
}

.mr-1,
.mx-1 {
  margin-right: 5px !important;
}

.mb-1,
.my-1 {
  margin-bottom: 5px !important;
}

.ml-1,
.mx-1 {
  margin-left: 5px !important;
}

.m-2 {
  margin: 10px !important;
}

.mt-2,
.my-2 {
  margin-top: 10px !important;
}

.mr-2,
.mx-2 {
  margin-right: 10px !important;
}

.mb-2,
.my-2 {
  margin-bottom: 10px !important;
}

.ml-2,
.mx-2 {
  margin-left: 10px !important;
}

.m-3 {
  margin: 15px !important;
}

.mt-3,
.my-3 {
  margin-top: 15px !important;
}

.mr-3,
.mx-3 {
  margin-right: 15px !important;
}

.mb-3,
.my-3 {
  margin-bottom: 15px !important;
}

.ml-3,
.mx-3 {
  margin-left: 15px !important;
}

.m-4 {
  margin: 19.95px !important;
}

.mt-4,
.my-4 {
  margin-top: 19.95px !important;
}

.mr-4,
.mx-4 {
  margin-right: 19.95px !important;
}

.mb-4,
.my-4 {
  margin-bottom: 19.95px !important;
}

.ml-4,
.mx-4 {
  margin-left: 19.95px !important;
}

.m-5 {
  margin: 45px !important;
}

.mt-5,
.my-5 {
  margin-top: 45px !important;
}

.mr-5,
.mx-5 {
  margin-right: 45px !important;
}

.mb-5,
.my-5 {
  margin-bottom: 45px !important;
}

.ml-5,
.mx-5 {
  margin-left: 45px !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: 5px !important;
}

.pt-1,
.py-1 {
  padding-top: 5px !important;
}

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

.pb-1,
.py-1 {
  padding-bottom: 5px !important;
}

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

.p-2 {
  padding: 10px !important;
}

.pt-2,
.py-2 {
  padding-top: 10px !important;
}

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

.pb-2,
.py-2 {
  padding-bottom: 10px !important;
}

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

.p-3 {
  padding: 15px !important;
}

.pt-3,
.py-3 {
  padding-top: 15px !important;
}

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

.pb-3,
.py-3 {
  padding-bottom: 15px !important;
}

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

.p-4 {
  padding: 19.95px !important;
}

.pt-4,
.py-4 {
  padding-top: 19.95px !important;
}

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

.pb-4,
.py-4 {
  padding-bottom: 19.95px !important;
}

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

.p-5 {
  padding: 45px !important;
}

.pt-5,
.py-5 {
  padding-top: 45px !important;
}

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

.pb-5,
.py-5 {
  padding-bottom: 45px !important;
}

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

.m-n1 {
  margin: -5px !important;
}

.mt-n1,
.my-n1 {
  margin-top: -5px !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -5px !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -5px !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -5px !important;
}

.m-n2 {
  margin: -10px !important;
}

.mt-n2,
.my-n2 {
  margin-top: -10px !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -10px !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -10px !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -10px !important;
}

.m-n3 {
  margin: -15px !important;
}

.mt-n3,
.my-n3 {
  margin-top: -15px !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -15px !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -15px !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -15px !important;
}

.m-n4 {
  margin: -19.95px !important;
}

.mt-n4,
.my-n4 {
  margin-top: -19.95px !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -19.95px !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -19.95px !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -19.95px !important;
}

.m-n5 {
  margin: -45px !important;
}

.mt-n5,
.my-n5 {
  margin-top: -45px !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -45px !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -45px !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -45px !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: 576px) {
  .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: 5px !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 5px !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 5px !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 5px !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 5px !important;
  }
  .m-sm-2 {
    margin: 10px !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 10px !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 10px !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 10px !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 10px !important;
  }
  .m-sm-3 {
    margin: 15px !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 15px !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 15px !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 15px !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 15px !important;
  }
  .m-sm-4 {
    margin: 19.95px !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 19.95px !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 19.95px !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 19.95px !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 19.95px !important;
  }
  .m-sm-5 {
    margin: 45px !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 45px !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 45px !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 45px !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 45px !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: 5px !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 5px !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 5px !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 5px !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 5px !important;
  }
  .p-sm-2 {
    padding: 10px !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 10px !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 10px !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 10px !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 10px !important;
  }
  .p-sm-3 {
    padding: 15px !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 15px !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 15px !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 15px !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 15px !important;
  }
  .p-sm-4 {
    padding: 19.95px !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 19.95px !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 19.95px !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 19.95px !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 19.95px !important;
  }
  .p-sm-5 {
    padding: 45px !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 45px !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 45px !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 45px !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 45px !important;
  }
  .m-sm-n1 {
    margin: -5px !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -5px !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -5px !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -5px !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -5px !important;
  }
  .m-sm-n2 {
    margin: -10px !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -10px !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -10px !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -10px !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -10px !important;
  }
  .m-sm-n3 {
    margin: -15px !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -15px !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -15px !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -15px !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -15px !important;
  }
  .m-sm-n4 {
    margin: -19.95px !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -19.95px !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -19.95px !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -19.95px !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -19.95px !important;
  }
  .m-sm-n5 {
    margin: -45px !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -45px !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -45px !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -45px !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -45px !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: 768px) {
  .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: 5px !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 5px !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 5px !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 5px !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 5px !important;
  }
  .m-md-2 {
    margin: 10px !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 10px !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 10px !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 10px !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 10px !important;
  }
  .m-md-3 {
    margin: 15px !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 15px !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 15px !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 15px !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 15px !important;
  }
  .m-md-4 {
    margin: 19.95px !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 19.95px !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 19.95px !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 19.95px !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 19.95px !important;
  }
  .m-md-5 {
    margin: 45px !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 45px !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 45px !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 45px !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 45px !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: 5px !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 5px !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 5px !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 5px !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 5px !important;
  }
  .p-md-2 {
    padding: 10px !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 10px !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 10px !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 10px !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 10px !important;
  }
  .p-md-3 {
    padding: 15px !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 15px !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 15px !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 15px !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 15px !important;
  }
  .p-md-4 {
    padding: 19.95px !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 19.95px !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 19.95px !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 19.95px !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 19.95px !important;
  }
  .p-md-5 {
    padding: 45px !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 45px !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 45px !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 45px !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 45px !important;
  }
  .m-md-n1 {
    margin: -5px !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -5px !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -5px !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -5px !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -5px !important;
  }
  .m-md-n2 {
    margin: -10px !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -10px !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -10px !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -10px !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -10px !important;
  }
  .m-md-n3 {
    margin: -15px !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -15px !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -15px !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -15px !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -15px !important;
  }
  .m-md-n4 {
    margin: -19.95px !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -19.95px !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -19.95px !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -19.95px !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -19.95px !important;
  }
  .m-md-n5 {
    margin: -45px !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -45px !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -45px !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -45px !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -45px !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: 992px) {
  .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: 5px !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 5px !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 5px !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 5px !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 5px !important;
  }
  .m-lg-2 {
    margin: 10px !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 10px !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 10px !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 10px !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 10px !important;
  }
  .m-lg-3 {
    margin: 15px !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 15px !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 15px !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 15px !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 15px !important;
  }
  .m-lg-4 {
    margin: 19.95px !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 19.95px !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 19.95px !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 19.95px !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 19.95px !important;
  }
  .m-lg-5 {
    margin: 45px !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 45px !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 45px !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 45px !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 45px !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: 5px !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 5px !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 5px !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 5px !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 5px !important;
  }
  .p-lg-2 {
    padding: 10px !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 10px !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 10px !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 10px !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 10px !important;
  }
  .p-lg-3 {
    padding: 15px !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 15px !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 15px !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 15px !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 15px !important;
  }
  .p-lg-4 {
    padding: 19.95px !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 19.95px !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 19.95px !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 19.95px !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 19.95px !important;
  }
  .p-lg-5 {
    padding: 45px !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 45px !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 45px !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 45px !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 45px !important;
  }
  .m-lg-n1 {
    margin: -5px !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -5px !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -5px !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -5px !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -5px !important;
  }
  .m-lg-n2 {
    margin: -10px !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -10px !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -10px !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -10px !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -10px !important;
  }
  .m-lg-n3 {
    margin: -15px !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -15px !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -15px !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -15px !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -15px !important;
  }
  .m-lg-n4 {
    margin: -19.95px !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -19.95px !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -19.95px !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -19.95px !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -19.95px !important;
  }
  .m-lg-n5 {
    margin: -45px !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -45px !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -45px !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -45px !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -45px !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;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 5px !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 5px !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 5px !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 5px !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 5px !important;
  }
  .m-xl-2 {
    margin: 10px !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 10px !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 10px !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 10px !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 10px !important;
  }
  .m-xl-3 {
    margin: 15px !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 15px !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 15px !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 15px !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 15px !important;
  }
  .m-xl-4 {
    margin: 19.95px !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 19.95px !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 19.95px !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 19.95px !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 19.95px !important;
  }
  .m-xl-5 {
    margin: 45px !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 45px !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 45px !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 45px !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 45px !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 5px !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 5px !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 5px !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 5px !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 5px !important;
  }
  .p-xl-2 {
    padding: 10px !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 10px !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 10px !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 10px !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 10px !important;
  }
  .p-xl-3 {
    padding: 15px !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 15px !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 15px !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 15px !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 15px !important;
  }
  .p-xl-4 {
    padding: 19.95px !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 19.95px !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 19.95px !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 19.95px !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 19.95px !important;
  }
  .p-xl-5 {
    padding: 45px !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 45px !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 45px !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 45px !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 45px !important;
  }
  .m-xl-n1 {
    margin: -5px !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -5px !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -5px !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -5px !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -5px !important;
  }
  .m-xl-n2 {
    margin: -10px !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -10px !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -10px !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -10px !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -10px !important;
  }
  .m-xl-n3 {
    margin: -15px !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -15px !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -15px !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -15px !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -15px !important;
  }
  .m-xl-n4 {
    margin: -19.95px !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -19.95px !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -19.95px !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -19.95px !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -19.95px !important;
  }
  .m-xl-n5 {
    margin: -45px !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -45px !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -45px !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -45px !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -45px !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

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

.text-wrap {
  white-space: normal !important;
}

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

.text-truncate {
  overflow: hidden;
  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: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-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-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

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

.text-primary {
  color: #17a2b8 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: rgb(14.5, 102.1304347826, 116) !important;
}

.text-secondary {
  color: #999 !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: rgb(114.75, 114.75, 114.75) !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: rgb(25.2173913043, 105.2826086957, 43.5) !important;
}

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

a.text-info:hover, a.text-info:focus {
  color: rgb(14.5, 102.1304347826, 116) !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: rgb(185.5, 139.125, 0) !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: rgb(167.4810126582, 29.0189873418, 42.2848101266) !important;
}

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

a.text-light:hover, a.text-light:focus {
  color: rgb(203.375, 210.75, 218.125) !important;
}

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

a.text-dark:hover, a.text-dark:focus {
  color: rgb(17.7068965517, 19.75, 21.7931034483) !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #999 !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

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

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

:root {
  --success-color: #74b31b;
  --danger-color: #FF585B;
  --info-color: #0096C7;
}

/*settings*/
.clear, .p-pay-methods:after {
  display: block;
  content: "";
  clear: both;
}

.clear-ul, .hl-list-search, .hl-list-items, .dropdown-menu-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-item {
  padding: 3px 0;
  list-style-type: none;
  line-height: 1.5;
  position: relative;
}
.list-item + li {
  margin-top: 6px;
}
.list-item:before {
  content: "";
  left: -35px;
  top: 13px;
  position: absolute;
}
.list-item ul {
  margin-bottom: -6px;
}

.list-item-line:before, .list-item:before {
  display: block;
  min-width: 15px;
  max-width: 15px;
  height: 3px;
  background-color: var(--primary-base-color);
  margin: 0 10px;
}

.article-title {
  font-size: 48px;
  line-height: 1.15;
  font-weight: bold;
}

.rightMore {
  fill: #595959;
  max-width: 11px;
  min-width: 11px;
  max-height: 8px;
  min-height: 8px;
}

.fs-12, small {
  font-size: 12px !important;
  line-height: 18px;
}

.fs-14 {
  font-size: 14px !important;
}

@media (max-width: 767px) {
  .fs-14-mob {
    font-size: 14px !important;
  }
}

.fs-13 {
  font-size: 13px;
  line-height: 24px;
}

.fs-16 {
  font-size: 16px !important;
  line-height: 24px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.nowrap {
  white-space: nowrap;
}

.white {
  color: white !important;
}

.c-orange-color {
  color: #2A2349 !important;
}

.grey-text {
  color: #595959 !important;
}

.danger-color {
  color: var(--danger-color) !important;
}

.danger-hover .ico {
  color: #999999;
}
.danger-hover:hover .ico {
  color: var(--danger-color) !important;
}

.text-success {
  color: var(--success-color) !important;
}

.text-color {
  color: var(--text-color) !important;
}

.text-green {
  color: var(--success-color) !important;
}

a.text-color:hover,
.hidden-link.text-color:hover {
  color: rgba(var(--links-color)) !important;
}

a.grey-link,
.hidden-link.grey-link {
  color: #595959 !important;
}
a.grey-link:hover,
.hidden-link.grey-link:hover {
  color: rgba(var(--links-color)) !important;
}

/* Links */
a, .hidden-link {
  cursor: pointer;
  text-decoration: none !important;
  color: rgba(var(--links-color));
  outline: none !important;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
a:not(.btn):not(.cc-btn):hover, .hidden-link:not(.btn):not(.cc-btn):hover {
  color: rgba(var(--links-color));
}
a:hover, .hidden-link:hover {
  text-decoration: underline;
  color: rgba(var(--links-color), 0.8);
}

.c-link {
  color: rgba(var(--links-color)) !important;
}
.c-link:hover {
  color: rgba(var(--links-color), 0.7) !important;
}

.c-link-underline {
  text-decoration: underline !important;
}
.c-link-underline:hover {
  text-decoration: none !important;
}

.c-ico-link {
  text-decoration: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-ico-link:hover span {
  text-decoration: none;
}
.c-ico-link .ico, .c-ico-link.ico {
  font-size: inherit;
  margin-right: 10px;
  color: #999999;
}
.c-ico-link.c-ico-link-xs .ico, .c-ico-link.c-ico-link-xs.ico {
  width: 10px;
  font-size: 10px !important;
}
.c-ico-link span {
  text-decoration: none;
  color: var(--text-color);
}
.c-ico-link.c-ico-link-hover:hover .ico {
  color: #595959;
}

.grey-icon {
  color: #999999 !important;
}
.grey-icon.pointer:hover {
  color: var(--text-color) !important;
}

.grey-bg {
  background-color: #595959 !important;
}

.grey-fill path {
  fill: #595959;
}

.c-primary-color {
  color: var(--primary-base-color) !important;
}
.c-primary-color path {
  fill: var(--primary-base-color);
}

.c-secondary-color {
  color: var(--secondary-base-color) !important;
}
.c-secondary-color path {
  fill: var(--secondary-base-color);
}

.c-link-ajax,
.hidden-link.c-link-ajax {
  text-decoration: none !important;
  white-space: nowrap;
}
.c-link-ajax.grey-text > span:not(.c-drop-arrow),
.hidden-link.c-link-ajax.grey-text > span:not(.c-drop-arrow) {
  border-bottom: 1px dashed #595959 !important;
}
.c-link-ajax.text-color > span,
.hidden-link.c-link-ajax.text-color > span {
  border-bottom: 1px dashed var(--text-color) !important;
}
.c-link-ajax.c-primary-color > span,
.hidden-link.c-link-ajax.c-primary-color > span {
  border-bottom-color: var(--primary-base-color) !important;
}
.c-link-ajax:hover > span,
.c-link-ajax:hover > b, .c-link-ajax:active > span,
.c-link-ajax:active > b, .c-link-ajax:focus > span,
.c-link-ajax:focus > b,
.hidden-link.c-link-ajax:hover > span,
.hidden-link.c-link-ajax:hover > b,
.hidden-link.c-link-ajax:active > span,
.hidden-link.c-link-ajax:active > b,
.hidden-link.c-link-ajax:focus > span,
.hidden-link.c-link-ajax:focus > b {
  border-color: transparent !important;
}
.c-link-ajax > span:not(.c-drop-arrow),
.c-link-ajax > b,
.hidden-link.c-link-ajax > span:not(.c-drop-arrow),
.hidden-link.c-link-ajax > b {
  border-bottom: 1px dashed #0096C7;
  border-bottom: 1px dashed rgba(var(--links-color));
}
.c-link-ajax .c-drop-arrow,
.hidden-link.c-link-ajax .c-drop-arrow {
  border-bottom: 0 !important;
}

.link-red {
  color: var(--danger-color) !important;
}
.link-red .c-ico-cancel, .link-red.c-ico-cancel {
  color: var(--danger-color) !important;
}
.link-red .c-ico-cancel svg, .link-red .c-ico-cancel path, .link-red.c-ico-cancel svg, .link-red.c-ico-cancel path {
  fill: var(--danger-color);
}
.link-red.c-link-ajax > span {
  border-bottom-color: var(--danger-color) !important;
}
.link-red:hover.c-link-ajax > span {
  border-bottom-color: transparent;
}

p + p, p + ul {
  margin-top: 20px;
}

/* Price */
.c-price {
  white-space: nowrap;
  font-weight: bold;
  color: #5aa926;
}

.fw-bold {
  font-weight: bold;
}

.c-price-sub {
  margin-top: 7px;
  font-size: 13px;
  color: #595959;
  font-weight: normal;
}
@media (max-width: 767px) {
  .c-price-sub {
    display: inline-block;
    white-space: nowrap;
  }
}

/* Date */
.l-date {
  color: #595959;
}

.c-article {
  margin-bottom: 20px;
}

.c-article h1, .c-article h2, .c-article h3, .c-article h4, .c-article h5,
.l-info h1,
.l-info h2,
.l-info h3,
.l-info h4,
.l-info h5 {
  margin-top: 20px;
  margin-bottom: 15px;
}
.c-article li + li,
.l-info li + li {
  margin-top: 10px;
}
.c-article ol, .c-article ul,
.l-info ol,
.l-info ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.c-article ul li,
.l-info ul li {
  list-style-type: initial;
}
.c-article ol li,
.l-info ol li {
  list-style-type: decimal;
}
.c-article ol ul,
.l-info ol ul {
  margin-top: 10px;
}
.c-article ol ul li,
.l-info ol ul li {
  list-style-type: circle;
}
.c-article .block,
.l-info .block {
  /* overflow: auto;*/
  max-width: 100%;
}
.c-article .block:empty,
.l-info .block:empty {
  display: none;
}
@media (max-width: 767px) {
  .c-article .block img,
  .l-info .block img {
    height: auto;
  }
}
.c-article table,
.l-info table {
  max-width: 100%;
}
.c-article table td,
.l-info table td {
  min-width: 100px;
  border: 1px solid #EBEBEB;
  padding: 20px;
}

.tooltip {
  font-size: 13px !important;
  z-index: 10015;
}
.tooltip .text-left br {
  content: " ";
}
.tooltip .text-left br:after {
  content: " ";
}

.h1-28-mod {
  font-size: 28px;
  line-height: 38px;
}
@media (max-width: 767px) {
  .h1-28-mod {
    font-size: 22px;
    line-height: 30px;
  }
}

h1, .h1 {
  font-size: 32px;
  line-height: 39px;
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 24px;
    line-height: 29px;
  }
}

h2, .h2 {
  font-size: 24px;
  line-height: 29px;
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 20px;
    line-height: 26px;
  }
}

.h2-mob {
  font-size: 24px;
  line-height: normal;
}
@media (max-width: 767px) {
  .h2-mob {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  h3, .h3 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  h3, .h3 {
    font-size: 20px;
    line-height: 26px;
  }
}

.h3-mob {
  font-size: 20px;
  line-height: 26px;
}
@media (max-width: 767px) {
  .h3-mob {
    font-size: 20px;
    line-height: 26px;
  }
}

h4, .h4 {
  font-size: 16px;
  line-height: 24px;
}

.h3-h4-mob {
  font-size: 20px;
  line-height: 26px;
}
@media (max-width: 767px) {
  .h3-h4-mob {
    font-size: 16px;
    line-height: 24px;
  }
}

h5, .h5 {
  font-size: 14px;
  line-height: 18px;
}

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

.table {
  color: var(--text-color);
}

.c-title {
  font-weight: bold;
}

.c-title.c-title-overflow {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.c-title-linkout {
  display: inline-block;
  position: relative;
  top: -3px;
  margin-left: 5px;
}
@media (max-width: 767px) {
  .c-title-linkout {
    top: -2px;
  }
}

.c-upper-letter-spacing {
  color: var(--text-color) !important;
  margin: 10px 0 5px !important;
  font-size: 14px !important;
}

.c-text-transform-normal {
  text-transform: capitalize !important;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  padding-left: 0 !important;
  padding-right: 0 !important;
  min-height: 100vh !important;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-x: hidden;
  font-weight: normal;
  line-height: 1.428571429;
  font-size: 14px;
  color: var(--text-color);
  background: var(--body-bg-color);
  min-width: 320px;
}

.c-transition {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-date {
  color: #595959;
  font-size: 12px;
  line-height: 22px;
}

.c-default-offset-b {
  margin-bottom: 20px;
}

.c-default-offset-t {
  margin-top: 20px;
}

.c-default-offset-r {
  margin-right: 20px;
}

.c-default-offset-l {
  margin-left: 20px;
}

.vw-white-box .vw-white-box,
.vw-white-box .trp-pay-box {
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.c-shadow-overflow {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.c-shadow-overflow::after {
  content: "";
  display: block;
  width: 16px;
  min-height: 23px;
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #FFFFFF), color-stop(133.33%, rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, #FFFFFF 50%, rgba(255, 255, 255, 0) 133.33%);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 1px;
  z-index: 10;
}
@media (min-width: 768px) {
  .c-shadow-overflow.c-shadow-overflow-10 {
    padding-right: 10px;
    margin-right: -10px;
  }
  .c-shadow-overflow.c-shadow-overflow-10:after {
    width: 10px;
    min-height: 18px;
  }
}

.bg-white .c-shadow-overflow:after,
.bg-white .b-breadcrumbs:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, white), color-stop(133.33%, rgba(255, 255, 255, 0))) !important;
  background: linear-gradient(270deg, white 50%, rgba(255, 255, 255, 0) 133.33%) !important;
}

@media (max-width: 767px) {
  .c-shadow-overflow-mob {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
  }
  .c-shadow-overflow-mob::after {
    content: "";
    display: block;
    width: 16px;
    min-height: 23px;
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #FFFFFF), color-stop(133.33%, rgba(255, 255, 255, 0)));
    background: linear-gradient(270deg, #FFFFFF 50%, rgba(255, 255, 255, 0) 133.33%);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 1px;
    z-index: 10;
  }
}

.c-overflow-x {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .c-overflow-x-mob {
    overflow-x: hidden;
  }
}

@media (min-width: 768px) {
  .c-overflow-x-on-lg {
    overflow-x: hidden;
  }
}

.c-iphone-overflow-fix .l-flex-column-content {
  overflow-x: hidden;
}

.c-border-radius {
  border-radius: 4px;
}

.ico {
  min-height: 10px;
}

.ico-hover-primary,
.ico-hover-primary-link,
.ico-hover-primary-link .ico {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ico-hover-primary path,
.ico-hover-primary-link path,
.ico-hover-primary-link .ico path {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ico-hover-primary:hover,
.ico-hover-primary-link:hover,
.ico-hover-primary-link .ico:hover {
  color: var(--primary-base-color);
}
.ico-hover-primary:hover path,
.ico-hover-primary-link:hover path,
.ico-hover-primary-link .ico:hover path {
  fill: var(--primary-base-color) !important;
}

.table-responsive {
  overflow: auto;
  width: auto;
}

.hide,
.hidden {
  display: none !important;
}

@media (max-width: 767px) {
  .hide-mob {
    display: none !important;
  }
}

/* container mod */
.container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 1024px) {
  .container {
    max-width: 1000px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 850px) and (max-width: 991px) {
  .container {
    max-width: 850px;
  }
}
.container .container {
  padding: 0 !important;
}

img {
  max-width: 100%;
}

hr {
  border-color: #E5E5E5;
}

.btn {
  outline: none !important;
}

/* Positions */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.pointer {
  cursor: pointer;
}

/* Nav Tabs */
@media (min-width: 768px) {
  .nav-tabs.collapse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/*3976 signs left*/
@media (max-width: 767px) {
  .c-under-desc {
    position: absolute;
    right: 10px;
    top: -25px;
    margin-top: 0 !important;
  }
}

.c-dot {
  min-width: 3px;
  height: 3px;
  display: inline-block;
  border-radius: 50%;
  background-color: var(--primary-base-color);
}

.c-dot.c-count-dot {
  width: 12px;
  height: 12px;
  background-color: var(--success-color);
  border: 1px solid white;
  border-radius: 50%;
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

/*status online*/
.c-status-wrap {
  display: inline-block;
  cursor: default;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  font-size: 4px;
  z-index: 1;
}
.c-status-wrap .tooltip-inner {
  white-space: nowrap;
}

.c-status-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-status-txt .c-status {
  margin-right: 5px;
  margin-top: -4px;
}

.c-status-txt-online {
  color: var(--success-color);
}
.c-status-txt-online .c-status {
  background-color: var(--success-color);
}

.c-status-txt-offline {
  color: #595959;
}
.c-status-txt-offline .c-status {
  background-color: #595959;
}

.c-status {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #999999;
  display: inline-block;
  -webkit-transform: translateY(1px);
      -ms-transform: translateY(1px);
          transform: translateY(1px);
  border: 2px solid white;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.c-status-lg {
  width: 13px;
  height: 13px;
}

.c-status-inline {
  display: inline-block;
  position: relative;
  margin-right: 2px;
  top: -1px;
}

.c-status-online {
  background: #74B31B;
}

/*dropdowns arrows*/
.c-drop-arrow {
  color: #999999;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  width: 8px;
  height: 5px;
  fill: #999999;
  min-width: 9px;
  min-height: 5px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-image: url(../css/images/arrow.svg?a870a5c2a903e4f05f823ab64aea4dd8);
}
.c-drop-arrow.rotate {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.c-drop-arrow.rotate-l {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-drop-arrow.rotate-r {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.c-drop-arrow.c-drop-arrow-white {
  background-image: url(../css/images/arrow-white.svg?5e2dd1544de69f2dcade609f427ac4d5);
}
.c-drop-arrow.c-drop-arrow-black {
  background-image: url(../css/images/arrow-black.svg?48a2382c848b99be26e84e5e1988eb09);
}
.c-drop-arrow + * {
  vertical-align: middle;
}

.open .c-drop-arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* Scroll to top */
.c-scrolltop {
  opacity: 0;
  position: fixed;
  right: 15px;
  bottom: 15px;
  text-align: center;
  z-index: 200;
  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: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px;
  background-color: #F4F4F4;
  border-radius: 5px;
  color: #595959;
  text-decoration: none;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
}
.c-scrolltop:hover {
  text-decoration: none;
  color: white !important;
  background-color: var(--primary-base-color);
}
.c-scrolltop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 767px) {
  .c-scrolltop {
    display: none;
  }
}
.c-scrolltop .ico {
  display: block;
  font-size: 18px;
}
.c-scrolltop .c-scrolltop-txt {
  font-size: 13px;
}

.c-mobile-scrolling {
  width: auto;
  white-space: nowrap;
  overflow-x: auto;
}
@media (min-width: 768px) {
  .c-mobile-scrolling {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .c-mobile-scrolling {
    padding-left: 15px;
    margin-left: -15px;
    margin-right: -15px;
  }
}
.c-mobile-scrolling > * {
  display: table !important;
  padding-right: 15px;
}

@media (max-width: 575px) {
  .c-mobile-fill-offset {
    margin-left: -15px;
    margin-right: -15px;
    min-width: calc(100% + 15px * 2);
  }
  .c-mobile-fill-offset .c-mobile-scrolling {
    margin: 0;
  }
}

.c-mobile-scrolling {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-mobile-scrolling::-webkit-scrollbar {
  display: none;
  width: 0;
  background: transparent;
}

/* Tags */
.c-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  gap: 10px;
}

.c-tag {
  font-size: 12px;
  padding: 0 10px;
  height: 24px;
  line-height: 24px;
  max-width: 100%;
  white-space: normal;
  text-align: left;
  display: inline-block;
  border-radius: 4px;
  overflow: hidden;
}

.c-tags-spacing {
  margin: 15px -5px;
}

.btn.c-tag {
  color: #0096C7;
}

.c-loader {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(../css/images/loader.gif?8b4e738c970e1e7184968911e39fa1ac);
}

.spinner-border {
  margin-right: 5px;
  color: var(--primary-base-color);
}

/* Metro */
.c-metro-dropdown {
  min-width: inherit !important;
}
@media (max-width: 767px) {
  .c-metro-dropdown {
    width: 100%;
  }
}
.c-metro-dropdown a {
  font-size: 14px;
}
.c-metro-dropdown .fl-dropdown-header {
  margin-top: -15px;
}

.c-selected-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.06);
  padding: 9px;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
}
.c-selected-line + .c-selected-line {
  margin-top: 10px;
}

.c-metro-ico {
  display: inline-block;
  min-width: 17px;
  min-height: 17px;
  background-color: #ccc;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
}

.dropdown-item .c-metro-ico {
  top: 1px;
}

.c-metro-ico-cnt {
  color: white;
  text-align: center;
  font-size: 10px;
  display: block;
  position: relative;
  top: 2px;
}

/* Other */
.block-video {
  margin-bottom: 20px;
}
.block-video object {
  width: 800px;
  margin: 0 auto;
  height: 480px;
  display: block;
}
.block-video object embed {
  width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  .block-video object {
    width: 100%;
    min-height: 320px;
    height: auto;
  }
}

.faq-help-img {
  text-align: center;
  margin: 10px 0;
}

.faq-help-img_msg {
  margin-top: 10px;
}

[data-toggle~=collapse] {
  cursor: pointer;
}

.c-close {
  margin-left: 15px;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 1;
}

.c-close:not(.hide) {
  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;
}

.c-ico-cancel {
  line-height: 1;
  margin-top: -1px;
  max-width: 10px;
}
.c-ico-cancel svg {
  max-width: 10px;
}
.c-ico-cancel:hover svg path {
  fill: #595959;
}
.c-ico-cancel.c-ico-cancel-lg svg {
  max-width: 13px;
  min-width: inherit;
  margin-right: 0;
}
.c-ico-cancel.c-ico-cancel-lg + span {
  line-height: 1;
}

.c-debug-info {
  margin-top: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f5f5f5;
  border-top: 1px solid #F4F4F4;
  font-size: 13px;
}
.c-debug-info > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .c-debug-info > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-debug-info > ul > li {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  padding: 10px 15px;
  border-left: 1px solid rgb(203.5, 203.5, 203.5);
  border-right: 1px solid rgb(203.5, 203.5, 203.5);
  margin-right: -1px;
}
@media (min-width: 768px) {
  .c-debug-info {
    width: 100vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

input:focus {
  outline: none !important;
}

.c-desc {
  font-size: 14px;
  line-height: 20px;
  color: #595959;
}

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

.owl-dot {
  background-color: white !important;
  width: 6px;
  height: 6px;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  margin: 0 2.5px;
}
.owl-dot.active {
  width: 13px;
  background-color: var(--primary-base-color) !important;
}

.c-no-bg {
  background-color: white !important;
}

.c-page-back-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .c-page-back-link {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 5px;
  }
}
.c-page-back-link .ico {
  margin-right: 5px;
  margin-top: -1px;
  width: 14px;
  height: 14px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.c-page-back-link .ico path {
  fill: #0096C7;
  fill: rgba(var(--links-color));
}
.c-page-back-link.active .c-page-back-ico-r {
  display: inline-block;
}
.c-page-back-link.active .c-page-back-ico-l {
  display: none;
}
.c-page-back-link .c-page-back-ico-r {
  display: none;
}

.l-page-title + .c-page-back-link {
  margin-top: 10px;
}

.c-arrow,
.lSPrev,
.lSNext {
  padding: 0;
  width: 35px;
  height: 35px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid rgba(var(--links-color));
  border-radius: 50%;
  color: rgba(var(--links-color)) !important;
  background-color: transparent;
  cursor: pointer;
  outline: none !important;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.c-arrow:hover,
.lSPrev:hover,
.lSNext:hover {
  background-color: rgba(var(--links-color));
  color: #fff !important;
}
.c-arrow svg,
.lSPrev svg,
.lSNext svg {
  width: 19px;
  height: 19px;
}
.c-arrow.disabled,
.lSPrev.disabled,
.lSNext.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.c-arrow.c-right .fas,
.lSPrev.c-right .fas,
.lSNext.c-right .fas {
  margin-left: 3px;
}
.c-arrow .fas,
.lSPrev .fas,
.lSNext .fas {
  font-size: 16px;
}

.lSPrev,
.lSNext {
  top: 45%;
  opacity: 1;
}
.lSPrev:hover,
.lSNext:hover {
  opacity: 0.7;
}
.lSPrev .fas,
.lSNext .fas {
  opacity: 1 !important;
}

.c-nav-actions.c-nav-items-light .fas {
  color: #595959 !important;
}
.c-nav-actions.c-nav-items-sm .c-arrow {
  width: 30px;
  height: 30px;
}
.c-nav-actions.disabled {
  display: none;
}
.c-nav-actions .c-arrow + .c-arrow {
  margin-left: 10px;
}

/* show more button */
.c-lg-action-btn {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  color: var(--text-color) !important;
  text-decoration: none !important;
  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;
  margin-bottom: 15px;
}
.c-lg-action-btn.loading .ico {
  -webkit-animation: rotating 1s linear infinite;
          animation: rotating 1s linear infinite;
}
.c-lg-action-btn .ico {
  color: var(--primary-base-color);
  margin-right: 8px;
  max-width: 16px;
  max-height: 16px;
  font-size: 16px;
}
.c-lg-action-btn a {
  line-height: 20px;
  color: #49525A;
}
.c-lg-action-btn .ico,
.c-lg-action-btn span {
  display: inline-block;
  vertical-align: middle;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.badge {
  padding: 3px 5px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: inherit;
  border-radius: 2px;
}
.badge.badge-success {
  background-color: var(--success-color);
}
.badge.badge-danger {
  background-color: var(--danger-color);
}
.badge.badge-danger-lighten {
  background-color: rgba(255, 88, 91, 0.1);
  color: var(--danger-color);
}
.badge.badge-warning {
  background: var(--primary-base-color);
  color: white;
  font-weight: normal;
}
.badge.badge-primary {
  background-color: var(--primary-base-color);
}

.tooltip-date .text-left {
  white-space: nowrap;
}
.tooltip-date .text-left br {
  display: none;
}

.c-count {
  color: #595959;
}

.c-item-fav,
.c-fav {
  cursor: pointer;
  min-width: 20px;
  max-height: 20px;
}
.c-item-fav.dropdown-item,
.c-fav.dropdown-item {
  max-height: inherit;
}
.c-item-fav .ico,
.c-fav .ico {
  max-width: 20px;
  max-height: 20px;
  font-size: 20px;
  fill: var(--primary-base-color);
  color: var(--primary-base-color);
}
.c-item-fav:hover .ico,
.c-fav:hover .ico {
  color: var(--primary-base-color) !important;
}
.c-item-fav:hover .ico path,
.c-fav:hover .ico path {
  fill: #2A2349;
}
.c-item-fav .c-item-fav-remove-txt,
.c-fav .c-item-fav-remove-txt {
  display: none;
}
.c-item-fav.active .ico,
.c-fav.active .ico {
  color: var(--primary-base-color) !important;
  font-weight: 900;
}
.c-item-fav.active .c-item-fav-add-txt,
.c-fav.active .c-item-fav-add-txt {
  display: none;
}
.c-item-fav.active .c-item-fav-remove-txt,
.c-fav.active .c-item-fav-remove-txt {
  display: inline;
}

.c-item-danger {
  min-width: 18px;
  max-height: 18px;
  font-size: 18px;
}
.c-item-danger .ico {
  color: #999999;
}
.c-item-danger.active .ico, .c-item-danger:hover .ico {
  color: var(--danger-color);
}

.row > .c-banner-h {
  margin-top: 40px;
}

/* range slider */
.c-price-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .c-price-slider {
    margin-bottom: 15px;
  }
}
.c-price-slider .form-control {
  min-width: 75px;
  border-color: #E5E5E5;
}
.c-price-slider .dash {
  max-height: 33px;
  margin: 0 -8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.c-price-slider .btn {
  padding: 0 10px;
  background: #E5E5E5;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.c-price-slider-items {
  margin-left: 10px;
}

/* stars */
.rw-stars svg, .rw-stars .fa, .rw-stars .ico {
  color: var(--primary-base-color);
}

/*shop tooltip*/
.tooltip-inner {
  max-width: 300px;
  text-align: left;
  padding: 6px 10px;
}

.stat-icons-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px 7px;
}

.stat-ico {
  font-size: 16px;
  color: #C3C3C3;
}

.stat-count {
  font-size: 13px;
  line-height: 16px;
  margin-left: 8px;
}
.stat-count + .stat-ico {
  margin-left: 20px;
}

.block-text {
  margin-bottom: 35px;
}

.gm-style .gm-style-iw-c,
.ymaps-2-1-74-balloon__layout,
.ymaps-2-1-74-balloon {
  border-radius: 5px !important;
}

.c-map {
  width: 100%;
  height: 250px;
}

.c-block-loader.loading .c-circle-loader {
  -webkit-transform: translate(-50%, -50%) scale(0.5);
      -ms-transform: translate(-50%, -50%) scale(0.5);
          transform: translate(-50%, -50%) scale(0.5);
}

.c-circle-loader {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2001;
}
.c-circle-loader .c-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.c-circle-loader .c-child:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 7px;
  height: 7px;
  background-color: var(--primary-base-color);
  border-radius: 50%;
  -webkit-animation: c-circleBounceDelay 0.8s infinite both;
  animation: c-circleBounceDelay 0.8s infinite both;
}
.c-circle-loader .c-circle1 {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-circle-loader .c-circle2 {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-circle-loader .c-circle3 {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}
.c-circle-loader .c-circle4 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.c-circle-loader .c-circle5 {
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
}
.c-circle-loader .c-circle6 {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
}
.c-circle-loader .c-circle7 {
  -webkit-transform: rotate(315deg);
      -ms-transform: rotate(315deg);
          transform: rotate(315deg);
}
.c-circle-loader .c-circle8 {
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}
.c-circle-loader .c-circle1:before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}
.c-circle-loader .c-circle2:before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}
.c-circle-loader .c-circle3:before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}
.c-circle-loader .c-circle4:before {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}
.c-circle-loader .c-circle5:before {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}
.c-circle-loader .c-circle6:before {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
.c-circle-loader .c-circle7:before {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}
.c-circle-loader .c-circle8:before {
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}

@-webkit-keyframes c-circleBounceDelay {
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes c-circleBounceDelay {
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
.loading {
  position: relative;
}
.loading:before {
  content: "";
  background-color: white;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.7;
  z-index: 2;
}

.ps__thumb-y {
  border-radius: 0 !important;
  width: 4px !important;
  opacity: 1 !important;
  display: block !important;
  left: auto !important;
  right: 0 !important;
}

.form-group .c-google-recaptcha {
  margin-top: 0;
}

.c-form-capcha-box {
  padding-top: 7px;
  text-align: center;
}

@media (max-width: 767px) {
  .w-100-mobile {
    width: 100% !important;
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 100% !important;
            flex: 1 1 100% !important;
  }
}

.w-auto {
  min-width: inherit !important;
  max-width: inherit !important;
}

.ps__rail-y {
  opacity: 1 !important;
  background-color: white !important;
}

.ps__thumb-y {
  background-color: #E5E5E5 !important;
  margin-right: 5px;
}

.j-regions-delivery {
  margin-top: 10px;
  display: block;
}

.c-ellipsis {
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
}

.c-aside-search-wrap {
  position: relative;
  height: 35px;
}
.c-aside-search-wrap .form-control {
  padding-right: 45px;
  height: 100%;
}

.c-aside-search-btn {
  width: 35px;
  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: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border: none;
  border-left: 1px solid #E5E5E5 !important;
  color: #999999;
  margin: 5px 0;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-aside-search-btn:hover {
  color: var(--text-color) !important;
}

.owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ico-check {
  background-image: url(../css/images/check-green.svg?5a72b554d4e6f0220f04a3aa41c6773c);
  min-width: 12px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: 10px;
  display: inline-block;
}

.ico-check-14 {
  background-size: 14px;
  height: 12px;
  min-width: 14px;
}

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

@media (max-width: 767px) {
  .c-mobile-two-btn {
    margin: 0 -5px 0 -5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: nowrap !important;
        flex-flow: nowrap !important;
  }
  .c-mobile-two-btn > * {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    margin: 0 5px;
  }
}

.c-grey-bg {
  background-color: #F4F4F4;
}
.c-grey-bg .in-box-head.c-shadow-overflow:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #F4F4F4), color-stop(133.33%, rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, #F4F4F4 50%, rgba(255, 255, 255, 0) 133.33%);
}

.c-none-if-empty:empty {
  display: none;
}

.c-slider-overflow-with-popup .container {
  position: relative;
}
.c-slider-overflow-with-popup .container .owl-stage-outer {
  overflow: visible;
}
@media (min-width: 1400px) {
  .c-slider-overflow-with-popup .container::before, .c-slider-overflow-with-popup .container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc((100vw - 1240px) / 2);
    height: 100%;
    background-color: white;
    z-index: 105;
  }
  .c-slider-overflow-with-popup .container::before {
    left: -10px;
    -webkit-transform: translate(-100%, -37px);
        -ms-transform: translate(-100%, -37px);
            transform: translate(-100%, -37px);
  }
  .c-slider-overflow-with-popup .container::after {
    right: -10px;
    -webkit-transform: translate(100%, -37px);
        -ms-transform: translate(100%, -37px);
            transform: translate(100%, -37px);
  }
}

.c-item {
  border: 1px solid #EBEBEB;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 4px;
}
.c-item:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.p-6 {
  padding: 30px;
}

.pt-6 {
  padding-top: 30px;
}

.pb-6 {
  padding-bottom: 30px;
}

.gap-1 {
  gap: 5px;
}

.gap-2 {
  gap: 10px;
}

.gap-3 {
  gap: 15px;
}

.gap-4 {
  gap: 20px;
}

@media (min-width: 768px) {
  .ib .in-box-head > * {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .ib .in-box-head > * {
    padding-bottom: 15px;
  }
}
.ib .it-view-gallery {
  margin-bottom: 0 !important;
}
@media (min-width: 1400px) {
  .ib .in-index-box.c-slider-overflow-with-popup .container:before {
    -webkit-transform: translate(-104%, 0);
        -ms-transform: translate(-104%, 0);
            transform: translate(-104%, 0);
    height: calc(100% + 20px);
  }
}
@media (min-width: 1400px) {
  .ib .in-index-box.c-slider-overflow-with-popup .container:after {
    -webkit-transform: translate(104%, 0);
        -ms-transform: translate(104%, 0);
            transform: translate(104%, 0);
    height: calc(100% + 20px);
  }
}
.ib .vw-items {
  padding: 30px 0 90px 0;
}
.ib .in-cities-map {
  background-color: transparent;
  padding: 0;
}

.ib-tabs-pane .in-cities-map .in-box-head {
  display: none !important;
}

@media (max-width: 767px) {
  .c-article .ib {
    margin: 0 -15px !important;
  }
}
@media (max-width: 767px) {
  .c-article .ib .container {
    padding: 0 15px !important;
  }
}

.c-is-disabled {
  opacity: 0.6;
}

.c-methods-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.c-methods-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 10px 20px;
  background-color: white;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  text-align: left;
  min-height: 50px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-methods-item:hover {
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.06);
}

.c-method-icon {
  margin-right: 20px;
  width: 30px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.c-method-title {
  color: var(--text-color) !important;
}

/*

.usr-settings-box-content {
  .c-methods-item {
    &:not(.active) {
      opacity: .5;
    }
  }
}*/
.btn-border {
  font-size: 16px !important;
  color: rgba(var(--links-color));
  border: 1px solid rgba(var(--links-color)) !important;
  padding: 13px 30px !important;
}
.btn-border:hover {
  background-color: rgba(var(--links-color));
  color: #fff;
}
@media (max-width: 767px) {
  .btn-border {
    width: 100%;
  }
}

.usr-settings-photo-box-r .btn-simple {
  padding: 12px 20px;
}
.usr-settings-photo-box-r .grey-text {
  color: #999 !important;
}

.usr-settings-tab .form-group + .form-group {
  margin-top: 15px;
}
.usr-settings-tab .input-group-text {
  width: 45px;
  min-width: 45px;
}
.usr-settings-tab .form-row-item + .form-row-item {
  margin-top: 15px;
}
.usr-settings-tab .usr-settings-box {
  margin-bottom: 15px;
}
.usr-settings-tab .c-social-link {
  width: 50px;
  height: 50px;
  background-color: #fff;
  padding: 10px;
  border: 1px solid #E5E5E5;
}
.usr-settings-tab .c-social-link .ico {
  padding: 0;
}
.usr-settings-tab .dr-collapse-act .c-title {
  font-size: 18px;
}
.usr-settings-tab .table th, .usr-settings-tab .table td {
  padding: 15px 35px;
}
@media (max-width: 767px) {
  .usr-settings-tab .table th, .usr-settings-tab .table td {
    padding: 15px;
  }
}
.usr-settings-tab .table th:last-child, .usr-settings-tab .table td:last-child {
  padding-right: 0;
}
.usr-settings-tab .table th .form-check-label, .usr-settings-tab .table td .form-check-label {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.usr-settings-tab .form-control:disabled, .usr-settings-tab .form-control[readonly],
.usr-settings-tab .form-check-label input[type=checkbox]:disabled + .ico-check, .usr-settings-tab .form-check-label input[type=checkbox].disabled + .ico-check, .usr-settings-tab .form-check-label input[type=checkbox][disabled] + .ico-check {
  background-color: #fff;
  cursor: not-allowed;
}
.usr-settings-tab .c-link-ajax span {
  border-bottom: 1px solid rgba(var(--links-color));
}
.usr-settings-tab .input-group-prepend {
  height: 44px;
}
.usr-settings-tab .input-group-prepend .input-group-text {
  padding: 7px 15px;
  width: auto;
}
.usr-settings-tab .input-group-prepend .input-group-text .country-icon {
  margin-right: 9px;
}
.usr-settings-tab .form-phone-input.dropdown .dropdown-menu.show {
  top: 5px !important;
  width: 100%;
}
.usr-settings-tab .dropdown {
  max-width: 100% !important;
}
@media (max-width: 767px) {
  .usr-settings-tab .usr-settings-box {
    padding: 15px;
  }
}

/* open-sans-regular - latin_cyrillic */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url(../css/fonts/open-sans-v18-latin_cyrillic-regular.woff2?9e49b964c26c32c70d1a0d6f152ea083) format("woff2"), url(../css/fonts/open-sans-v18-latin_cyrillic-regular.woff?792c25544581795907b83b45cc871d06) format("woff"), url(../css/fonts/open-sans-v18-latin_cyrillic-regular.ttf?16b67e57b1af62c44946f17627acb404) format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
}
/* open-sans-700 - latin_cyrillic */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url(../css/fonts/open-sans-v18-latin_cyrillic-700.woff2?690d8558faee6a0562955cb44f4917a8) format("woff2"), url(../css/fonts/open-sans-v18-latin_cyrillic-700.woff?a8b07ded7d0db0758f7c72b4ce5af8ca) format("woff"), url(../css/fonts/open-sans-v18-latin_cyrillic-700.ttf?fd871ea8c2cfeccdffd4f0706f05a7a1) format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
}
/* ubuntu-regular - latin_cyrillic */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  src: url(../css/fonts/ubuntu-v15-latin_cyrillic-regular.woff2?d7115b526e4688a4690481c147d666e7) format("woff2"), url(../css/fonts/ubuntu-v15-latin_cyrillic-regular.woff?8efd18174f24d758cb7ccda4e404f72a) format("woff"), url(../css/fonts/ubuntu-v15-latin_cyrillic-regular.ttf?43f0e2df105cdcdedf735e2aea23334e) format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
}
/* ubuntu-700 - latin_cyrillic */
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  src: url(../css/fonts/ubuntu-v15-latin_cyrillic-700.woff2?1b6d580968d6cd082e3cc98360f11086) format("woff2"), url(../css/fonts/ubuntu-v15-latin_cyrillic-700.woff?61c3a20a7231b0fc6cb6f18ed36fb9b7) format("woff"), url(../css/fonts/ubuntu-v15-latin_cyrillic-700.ttf?c6721a173c269163175bbf86adc03d75) format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
}
/* roboto-regular - latin_cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url(../css/fonts/roboto-v20-latin_cyrillic-regular.woff2?f3cc56e19e8c2b9706bd63a75c2d2291) format("woff2"), url(../css/fonts/roboto-v20-latin_cyrillic-regular.woff?3a9d859c0b19407fa725dbc9929526ff) format("woff"), url(../css/fonts/roboto-v20-latin_cyrillic-regular.ttf?1bfc1feecd499c8410a66f40379f9e85) format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
}
/* roboto-700 - latin_cyrillic */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url(../css/fonts/roboto-v20-latin_cyrillic-700.woff2?fe848f0b984ed7d46b526062f3f89606) format("woff2"), url(../css/fonts/roboto-v20-latin_cyrillic-700.woff?e8f864e2301587e39a1c760d9ea77d5a) format("woff"), url(../css/fonts/roboto-v20-latin_cyrillic-700.ttf?424addcde10965c9987a77ac6617ba0a) format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
}
/* montserrat-regular - latin_cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url(../css/fonts/montserrat-v15-latin_cyrillic-regular.woff2?f263cfd0a6fa311229a6321b6f901d03) format("woff2"), url(../css/fonts/montserrat-v15-latin_cyrillic-regular.woff?c1ba4359982fe0cc48ec8d1ad403fdeb) format("woff"), url(../css/fonts/montserrat-v15-latin_cyrillic-regular.ttf?4ff99841b08686bda3f7921d91044afb) format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
}
/* montserrat-700 - latin_cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url(../css/fonts/montserrat-v15-latin_cyrillic-700.woff2?e9dea54ec59e29a6913f2b5829d766b9) format("woff2"), url(../css/fonts/montserrat-v15-latin_cyrillic-700.woff?082762b455a3f227e8ac329c283f8ad6) format("woff"), url(../css/fonts/montserrat-v15-latin_cyrillic-700.ttf?6cbb516e629a7542e7a823790091e885) format("truetype"); /* Safari, Android, iOS */
  font-display: swap;
}
.c-upper-sub-title {
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 767px) {
  .h2-mob {
    font-size: 22px !important;
    line-height: 30px !important;
  }
}

.c-ico-link:hover span {
  color: var(--links-color);
}

.c-scrolltop {
  background-color: #ddd;
  color: white !important;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  bottom: 50px;
  right: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-scrolltop:hover {
  background-color: var(--primary-base-color);
}
.c-scrolltop:hover .ico {
  color: white;
}
.c-scrolltop .ico {
  font-size: 18px;
  color: #595959;
}

.c-scrolltop-txt {
  display: none;
}

@media (min-width: 768px) {
  .c-mobile-scrolling {
    max-width: 100%;
  }
}

.c-shadow-overflow-bg:after,
.usr-content-top.c-shadow-overflow:after,
.usr-content-top-l.c-shadow-overflow:after,
.in-box-head.c-shadow-overflow:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, var(--body-bg-color)), color-stop(133.33%, rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, var(--body-bg-color) 50%, rgba(255, 255, 255, 0) 133.33%);
}

.ico {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.c-arrow {
  position: absolute;
  top: 50%;
}
.c-arrow .fas,
.c-arrow .ico {
  color: #595959 !important;
  opacity: 1 !important;
}

.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dot {
  margin: 0 5px;
  width: 14px;
  border-radius: 50%;
  height: 14px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #c8d0d4 !important;
}

.c-lg-action-btn {
  color: rgba(var(--links-color)) !important;
  height: 35px;
  border: none;
  background: white;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.c-tag {
  background-color: white;
}

.loading:before {
  background-color: var(--body-bg-color);
  z-index: 11;
}

.usr-settings-box-collapse .loading:before {
  background-color: white;
}

.vw-white-box,
.c-shadow-white-box {
  background: white;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
  padding: 30px;
  margin-bottom: 20px;
}
.vw-white-box.vw-aside-page-actions,
.c-shadow-white-box.vw-aside-page-actions {
  padding: 0;
}
@media (min-width: 768px) {
  .vw-white-box.c-shadow-white-box-top-offset,
  .c-shadow-white-box.c-shadow-white-box-top-offset {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .vw-white-box.c-shadow-white-box-top-offset,
  .c-shadow-white-box.c-shadow-white-box-top-offset {
    padding-top: 0;
  }
}
.vw-white-box .vw-white-box,
.c-shadow-white-box .vw-white-box {
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (max-width: 767px) {
  .c-page-back-link {
    padding: 10px 0;
    margin-bottom: 0;
  }
}

hr {
  border-color: #E8EDEF;
}

@media (min-width: 768px) {
  .c-info-tab-box {
    padding-bottom: 40px !important;
  }
}
@media (max-width: 767px) {
  .c-info-tab-box {
    padding-bottom: 30px !important;
  }
}
.c-info-tab-box .in-box-title {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .c-info-tab-box .in-box-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .c-info-tab-box .in-box-title {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .c-info-tab-box .usr-navs {
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .c-info-tab-content {
    padding-top: 36px;
  }
}
@media (max-width: 767px) {
  .c-info-tab-content {
    padding-top: 20px;
  }
}

.c-info-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media (max-width: 1024px) {
  .c-info-columns {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    gap: 30px;
  }
}

.c-info-column-item {
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .c-info-column-item {
    max-width: 226px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .c-info-column-item {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}
.c-info-column-item .ico {
  width: 96px;
  height: 96px;
  margin-bottom: 22px;
}

/*settings*/
/*reset*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0-modified | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* make sure to set some focus styles for accessibility */
:focus {
  outline: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

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

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

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  max-width: 100%;
}

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

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}

/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -ms-text-size-adjust: 100%; /* 2 */
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0; /* 1 */
  -ms-interpolation-mode: bicubic; /* 2 */
}

/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0;
}

/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0;
}

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

/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0; /* 1 */
  padding: 0;
  white-space: normal; /* 2 */
  *margin-left: -7px; /* 3 */
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%; /* 1 */
  margin: 0; /* 2 */
  vertical-align: baseline; /* 3 */
  *vertical-align: middle; /* 3 */
}

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

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

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

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

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

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

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

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

html,
button,
input,
select,
textarea {
  color: #222;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

img {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

select {
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 95% 50%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-position: right 2px center;
  background-size: 14px;
  cursor: pointer;
  padding-right: 15px !important;
}

label {
  cursor: pointer;
  margin-bottom: 3px;
}

.badge-success {
  background-color: var(--success-color);
}

.table > thead:first-child th {
  border-top: 0;
}

.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), .input-group > .input-group-append:not(:last-child) > .btn, .input-group > .input-group-append:not(:last-child) > .input-group-text, .input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.fa-pencil:before {
  content: "\f303";
}

.fa-skype {
  font-family: "Font Awesome 5 Brands";
  font-size: 16px;
}

.fa-map-marker:before {
  content: "\f3c5";
}

.fa-phone:before {
  content: "\f095";
}

.fa-whatsapp {
  font-family: "Font Awesome 5 Brands";
}
.fa-whatsapp:before {
  content: "\f232";
}

.fa-telegram {
  font-family: "Font Awesome 5 Brands";
}
.fa-telegram:before {
  content: "\f3fe";
}

/*reset*/
/*components*/
.btn {
  min-height: 34px;
  padding: 12px 30px;
  white-space: nowrap;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  text-overflow: ellipsis;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:disabled, .btn.disabled {
  opacity: 0.6;
}
.btn:focus, .btn.focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.btn.active {
  border-color: var(--primary-base-color) !important;
  background-color: var(--primary-base-color);
  color: white !important;
}
.btn.active.btn-simple .ico, .btn.active.btn-simple span {
  color: white !important;
}
.btn.active .ico, .btn.active span {
  color: white !important;
}
.btn .count {
  display: block;
  font-size: 11px;
  line-height: normal;
}
.btn.form-control {
  padding-left: 12px;
  padding-right: 12px;
  color: var(--text-color);
  border-color: #E5E5E5 !important;
}
.btn .ico {
  vertical-align: middle;
}
.btn .ico + span {
  vertical-align: middle;
  display: inline-block;
}

.btn-simple {
  background-color: white;
  border-color: #E5E5E5;
  color: var(--text-color);
}
.btn-simple:hover {
  border-color: #999999;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  color: black;
}
.btn-simple:hover .ico {
  color: var(--secondary-base-color) !important;
}

.btn-shadow {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.btn-success {
  background-color: rgba(var(--action-buttons-color)) !important;
  border-color: transparent !important;
}
.btn-success:hover, .btn-success:focus {
  background-color: var(--primary-base-color) !important;
  opacity: 1;
}
.btn-success .spinner-border {
  color: white;
}
.btn-success .ico {
  color: white;
}
.btn-success .ico path {
  fill: white;
}

.btn-primary {
  background-color: var(--primary-base-color);
  border-color: transparent !important;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.btn-primary:hover {
  background-color: rgba(var(--action-buttons-color)) !important;
}
.btn-primary:after {
  display: none !important;
}

.btn-danger {
  background-color: #FF585B !important;
  border-color: transparent !important;
}

.btn-info {
  background-color: var(--info-color) !important;
  border-color: transparent !important;
}

.btn-ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn-ico .ico {
  width: 14px;
  min-width: 10px;
  height: 14px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.btn-ico:hover {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.btn-ico-light .ico {
  color: #999999;
}
.btn-ico-light svg path {
  fill: #999999;
}
.btn-ico-light:hover .ico, .btn-ico-light:hover svg path {
  color: var(--secondary-base-color);
}

.btn-ico-md {
  min-width: 35px;
}
.btn-ico-md .ico {
  font-size: 16px;
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  vertical-align: middle;
}

.btn-ico-lg {
  min-width: 58px;
}
.btn-ico-lg .ico {
  font-size: 16px;
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.btn-lg-height {
  padding-top: 9px;
  padding-bottom: 9px;
}

.btn-w-180 {
  min-width: 180px;
}

.btn-rounded {
  border-radius: 22px;
}

.btn.dropdown-toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 30px;
  padding-left: 13px;
  position: relative;
}
.btn.dropdown-toggle > span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn.dropdown-toggle .c-drop-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 11px;
  -webkit-transform-origin: 50% 40%;
      -ms-transform-origin: 50% 40%;
          transform-origin: 50% 40%;
}
.btn.dropdown-toggle::after {
  display: none;
}
.btn.dropdown-toggle + .dropdown-menu {
  min-width: 100%;
}

.btn-show-more {
  padding: 15px;
  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: 100%;
}
.btn-show-more.is-loading .ico {
  -webkit-animation: rotate 1s linear infinite;
          animation: rotate 1s linear infinite;
}

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

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.btn-block + .btn-block {
  margin-top: 10px;
}

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

.upload-btn {
  position: relative;
}
.upload-btn .ico {
  margin-right: 5px;
}

.upload-mask {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 30px;
}
.upload-mask input {
  position: absolute;
  left: 0;
  width: 0;
  font-size: 100px;
  cursor: pointer;
  opacity: 0;
  z-index: -1;
}

button {
  outline: none !important;
}

@media (max-width: 767px) {
  .btn-with-title-xs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
    padding-top: 2px;
    padding-bottom: 2px;
  }
}

.btn-group input[type=hidden] + .btn {
  border-bottom-left-radius: 4px !important;
  border-top-left-radius: 4px !important;
  margin-left: 1px;
}

.c-checked-items-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  gap: 10px;
}

.c-btn-check-btn.btn {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid #D9E1E4 !important;
  -webkit-transition: none !important;
  transition: none !important;
  background-color: white !important;
}
.c-btn-check-btn.btn:hover {
  opacity: 1 !important;
}
.c-btn-check-btn.btn.active {
  border: 1px solid rgb(var(--primary-base-color-rgba)) !important;
  color: var(--primary-base-color) !important;
  background-color: rgb(var(--primary-base-color-rgba), 0.1) !important;
}

.dropdown {
  position: relative;
}
.dropdown.open .c-drop-arrow, .dropdown.show .c-drop-arrow {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.dropdown.hide {
  display: none !important;
}
.dropdown a {
  text-decoration: none;
}

.dropdown-toggle {
  cursor: pointer;
  color: inherit;
}
.dropdown-toggle:after {
  display: none;
}
.dropdown-toggle.c-link-ajax {
  color: #0096C7;
  color: rgba(var(--links-color));
}
.dropdown-toggle.open .c-drop-arrow, .dropdown-toggle.show .c-drop-arrow {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.dropdown-toggle::after {
  border: none !important;
}

.dr-collapse-act {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  color: var(--text-color);
}
.dr-collapse-act:not(.collapsed) .c-drop-arrow, .dr-collapse-act.active .c-drop-arrow {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.dr-collapse-act .c-drop-arrow {
  background-size: 10px;
  width: 10px;
  height: 6px;
}
.dr-collapse-act .c-title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-bottom: 0 !important;
  padding-right: 20px;
}

.dropdown-item-head {
  display: block;
  font-weight: bold;
  padding: 0 15px;
  height: 31px;
  line-height: 31px;
}

.dropdown-menu li a,
.dropdown-menu li button,
a.dropdown-item,
.dropdown-item.hidden-link {
  padding: 5px 15px !important;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 19px;
  color: var(--text-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}
.dropdown-menu li a.dropdown-item-lg-height,
.dropdown-menu li button.dropdown-item-lg-height,
a.dropdown-item.dropdown-item-lg-height,
.dropdown-item.hidden-link.dropdown-item-lg-height {
  height: auto;
  line-height: inherit;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}
.dropdown-menu li a.bg-white:hover, .dropdown-menu li a.bg-white:active, .dropdown-menu li a.bg-white:focus, .dropdown-menu li a.bg-white.active,
.dropdown-menu li button.bg-white:hover,
.dropdown-menu li button.bg-white:active,
.dropdown-menu li button.bg-white:focus,
.dropdown-menu li button.bg-white.active,
a.dropdown-item.bg-white:hover,
a.dropdown-item.bg-white:active,
a.dropdown-item.bg-white:focus,
a.dropdown-item.bg-white.active,
.dropdown-item.hidden-link.bg-white:hover,
.dropdown-item.hidden-link.bg-white:active,
.dropdown-item.hidden-link.bg-white:focus,
.dropdown-item.hidden-link.bg-white.active {
  background-color: white !important;
}
.dropdown-menu li a:hover, .dropdown-menu li a:active, .dropdown-menu li a:focus, .dropdown-menu li a.active,
.dropdown-menu li button:hover,
.dropdown-menu li button:active,
.dropdown-menu li button:focus,
.dropdown-menu li button.active,
a.dropdown-item:hover,
a.dropdown-item:active,
a.dropdown-item:focus,
a.dropdown-item.active,
.dropdown-item.hidden-link:hover,
.dropdown-item.hidden-link:active,
.dropdown-item.hidden-link:focus,
.dropdown-item.hidden-link.active {
  background-color: #F4F4F4 !important;
  color: var(--text-color) !important;
}
.dropdown-menu li a:hover .c-shadow-overflow:after, .dropdown-menu li a:active .c-shadow-overflow:after, .dropdown-menu li a:focus .c-shadow-overflow:after, .dropdown-menu li a.active .c-shadow-overflow:after,
.dropdown-menu li button:hover .c-shadow-overflow:after,
.dropdown-menu li button:active .c-shadow-overflow:after,
.dropdown-menu li button:focus .c-shadow-overflow:after,
.dropdown-menu li button.active .c-shadow-overflow:after,
a.dropdown-item:hover .c-shadow-overflow:after,
a.dropdown-item:active .c-shadow-overflow:after,
a.dropdown-item:focus .c-shadow-overflow:after,
a.dropdown-item.active .c-shadow-overflow:after,
.dropdown-item.hidden-link:hover .c-shadow-overflow:after,
.dropdown-item.hidden-link:active .c-shadow-overflow:after,
.dropdown-item.hidden-link:focus .c-shadow-overflow:after,
.dropdown-item.hidden-link.active .c-shadow-overflow:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #F4F4F4), color-stop(133.33%, rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, #F4F4F4 50%, rgba(255, 255, 255, 0) 133.33%);
}
.dropdown-menu li a > .ico,
.dropdown-menu li button > .ico,
a.dropdown-item > .ico,
.dropdown-item.hidden-link > .ico {
  margin-right: 10px;
}

@media (max-width: 767px) {
  .dropdown-item-mobile-only {
    padding: 5px 15px !important;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    line-height: 19px;
    color: var(--text-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    white-space: nowrap;
  }
  .dropdown-item-mobile-only.dropdown-item-lg-height {
    height: auto;
    line-height: inherit;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .dropdown-item-mobile-only.bg-white:hover, .dropdown-item-mobile-only.bg-white:active, .dropdown-item-mobile-only.bg-white:focus, .dropdown-item-mobile-only.bg-white.active {
    background-color: white !important;
  }
  .dropdown-item-mobile-only:hover, .dropdown-item-mobile-only:active, .dropdown-item-mobile-only:focus, .dropdown-item-mobile-only.active {
    background-color: #F4F4F4 !important;
    color: var(--text-color) !important;
  }
  .dropdown-item-mobile-only:hover .c-shadow-overflow:after, .dropdown-item-mobile-only:active .c-shadow-overflow:after, .dropdown-item-mobile-only:focus .c-shadow-overflow:after, .dropdown-item-mobile-only.active .c-shadow-overflow:after {
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #F4F4F4), color-stop(133.33%, rgba(255, 255, 255, 0)));
    background: linear-gradient(270deg, #F4F4F4 50%, rgba(255, 255, 255, 0) 133.33%);
  }
  .dropdown-item-mobile-only > .ico {
    margin-right: 10px;
  }
}
.dropdown-item-mobile-only.c-item-fav {
  max-width: inherit;
  max-height: inherit;
}

.dropdown-item-ico {
  margin-right: 6px;
  margin-top: 4px;
}

li.active .dropdown-item {
  background-color: #F4F4F4 !important;
  color: var(--text-color) !important;
}
li.active .dropdown-item:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #F4F4F4), color-stop(133.33%, rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, #F4F4F4 50%, rgba(255, 255, 255, 0) 133.33%);
}

.dropdown-item.active.c-shadow-overflow:after, .dropdown-item:hover.c-shadow-overflow:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #F4F4F4), color-stop(133.33%, rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, #F4F4F4 50%, rgba(255, 255, 255, 0) 133.33%);
}

.dropdown-toggle-link {
  color: rgba(var(--links-color));
}
.dropdown-toggle-link span {
  color: rgba(var(--links-color));
}
.dropdown-toggle-link:hover {
  color: var(--text-color);
}
.dropdown-toggle-link:hover span {
  color: var(--text-color);
}

.dropdown-menu {
  padding: 10px 0;
  margin-top: 0;
  min-width: inherit;
  border-radius: 5px;
  border: 1px solid #E5E5E5;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
  font-size: 14px;
  line-height: 20px;
  z-index: 10000;
}
.dropdown-menu li {
  list-style-type: none;
}
.dropdown-menu li:hover {
  background-color: #F4F4F4;
}
.dropdown-menu li:hover .c-shadow-overflow:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #F4F4F4), color-stop(133.33%, rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, #F4F4F4 50%, rgba(255, 255, 255, 0) 133.33%);
}
.dropdown-menu.show {
  z-index: 9095;
}
.dropdown-menu .ps__rail-y {
  background-color: transparent !important;
}

.dropdown-menu.dropdown-menu-sm {
  min-width: inherit !important;
}

.dropdown-menu-right {
  left: auto !important;
}

.dropdown-menu-autocomplete li {
  padding: 0 15px;
  height: 31px;
  line-height: 31px;
  color: var(--text-color);
  font-size: 14px;
  cursor: pointer;
}
.dropdown-menu-autocomplete li:hover {
  background-color: #F4F4F4;
}
.dropdown-menu-autocomplete li.active .dropdown-item {
  background-color: #F4F4F4 !important;
}

.dropdown-menu-in {
  padding: 15px;
}
.dropdown-menu-in + .dropdown-menu-in {
  border-top: 1px dotted #E5E5E5;
}

.dropdown-menu-list {
  max-height: 300px;
  overflow: auto;
}
.dropdown-menu-list > li {
  white-space: nowrap;
}
.dropdown-menu-list > li > a {
  display: block;
  padding: 7px 15px;
  text-decoration: none;
}
.dropdown-menu-list > li > a:hover {
  background-color: #f5f5f5;
}
.dropdown-menu-list > li + li {
  border-top: 1px solid #E5E5E5;
}

.dropdown-menu-heading {
  padding: 15px;
  border-bottom: 1px solid #E5E5E5;
  position: relative;
}

.dropdown-menu-footer {
  margin-top: 15px;
}

.dropdown-menu-heading-title {
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  white-space: normal;
}

.dropdown-menu-nav-header {
  padding: 5px 15px;
  font-weight: bold;
}

.divider {
  height: 1px;
  margin: 10px 15px;
  overflow: hidden;
  background-color: #E5E5E5;
}

.dr-cust-dropdown {
  position: relative;
}
.dr-cust-dropdown .dr-collapse-act {
  display: block;
  border-top: 1px solid #EBEBEB;
  padding: 10px 0;
  margin: 0 20px;
  border-bottom: 1px solid transparent;
}
.dr-cust-dropdown .dr-collapse-act:not(.collapsed) {
  border-bottom: 1px solid #EBEBEB;
}

.dr-lang-dropdown-menu {
  min-width: 160px !important;
}
.dr-lang-dropdown-menu .dropdown-item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dr-lang-dropdown-menu .country-icon {
  margin-right: 10px;
  margin-top: -2px;
}
.dr-lang-dropdown-menu img.country-icon {
  margin-top: 1px;
}

.dr-country-dropdown {
  width: 100%;
  padding: 0;
}

.dr-country-dropdown-list .country-icon {
  top: 13px;
}
.dr-country-dropdown-list > li > a {
  display: block;
  padding: 7px 10px 7px 40px;
  position: relative;
  text-decoration: none !important;
}
.dr-country-dropdown-list > li > a:hover {
  background-color: #f5f5f5;
}
.dr-country-dropdown-list > li + li {
  border-top: 1px solid #E5E5E5;
}

.dr-backto {
  font-size: 13px;
  display: inline-block;
  margin-bottom: 6px;
}

.mega-dropdown {
  width: auto !important;
}

@media (min-width: 768px) {
  .dropdown-menu-mob-only {
    position: static !important;
    border: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    padding: 0 !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    z-index: 1 !important;
  }
}

.c-form-creation {
  /*главный hr*/
  /*hr inside form*/
}
@media (max-width: 767px) {
  .c-form-creation {
    padding-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .c-form-creation {
    padding-bottom: 45px;
  }
}
.c-form-creation.vw-white-box {
  padding-bottom: 20px;
}
.c-form-creation .form-control {
  min-height: 35px;
}
.c-form-creation hr {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .c-form-creation .row hr {
    margin-bottom: 15px !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
.c-form-creation .col-md-auto {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.c-form-creation-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .c-form-creation-actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10px;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .c-form-creation-actions .btn:not(:only-child) {
    min-width: 111px;
  }
}
@media (max-width: 575px) {
  .c-form-creation-actions .btn:not(:only-child) {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .c-form-creation-actions .btn-simple {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

.j-block-divider.hide + .form-row .c-form-creation-actions {
  margin-top: 20px;
}

.c-form-box .form-row.c-shadow-overflow:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, white), color-stop(133.33%, rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, white 50%, rgba(255, 255, 255, 0) 133.33%);
  bottom: 0;
}
@media (max-width: 767px) {
  .c-form-box .form-row.c-shadow-overflow .c-shadow-overflow-in {
    overflow: auto;
    padding-right: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .c-form-box .form-row.c-shadow-overflow .c-shadow-overflow-in::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
  }
}

@media (min-width: 768px) {
  .control-label {
    text-align: right;
    padding-top: 5px;
  }
}
@media (max-width: 767px) {
  .control-label {
    margin-bottom: 10px;
  }
}

.c-form-creation-login {
  background-color: #F4F4F4;
  border-radius: 5px;
  padding: 15px 20px;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .c-form-creation-login {
    display: none;
  }
}
@media (min-width: 992px) {
  .c-form-creation-login {
    margin-left: 70px;
    position: absolute;
    right: 15px;
  }
}
@media (max-width: 767px) {
  .c-form-creation-login {
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
  }
}
.c-form-creation-login .ico {
  margin-bottom: 5px;
}

.c-form-left-signs-box {
  position: relative;
}
@media (min-width: 768px) {
  .c-form-left-signs-box input {
    padding-right: 140px;
  }
}
@media (max-width: 767px) {
  .c-form-left-signs-box input {
    padding-right: 58px;
  }
}

.c-form-left-signs {
  position: absolute;
  right: 10px;
  top: 9px;
  font-size: 13px;
  line-height: 16px;
  color: #595959;
}

.c-form-sub-title {
  font-size: 22px;
  line-height: normal;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .c-form-sub-title {
    font-size: 20px;
  }
}

.c-cat-line {
  background-color: white;
}
.c-cat-line .dropdown {
  max-width: 100%;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}
@media (max-width: 767px) {
  .c-cat-line .dropdown {
    display: block !important;
  }
}
@media (min-width: 768px) {
  .c-cat-line .fl-search-cats-list {
    padding-top: 10px;
  }
}
.c-cat-line .fl-search-cats-list-in {
  margin-bottom: 0 !important;
}
.c-cat-line .fl-search-cats-dropdown {
  -webkit-box-shadow: none;
          box-shadow: none;
  display: block;
  position: relative;
}
.c-cat-line .fl-search-cats-dropdown.hide {
  display: none !important;
}
@media (min-width: 768px) {
  .c-cat-line .fl-search-cats-dropdown {
    min-width: 600px;
  }
}
@media (min-width: 768px) {
  .c-cat-line .fl-search-cats-dropdown-sm {
    min-width: 300px;
    position: relative;
  }
}
.c-cat-line input.input-error + * {
  border-color: var(--danger-color);
}
.c-cat-line input.input-error + * .c-cat-select-title {
  color: var(--danger-color);
}

.c-form-cat-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  min-width: inherit !important;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
  z-index: 1002;
  background-color: white;
}
@media (max-width: 767px) {
  .c-form-cat-dropdown {
    min-width: 100% !important;
    max-width: 100%;
  }
}

.c-cat-line-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-cat-line-in::after {
    content: "";
    display: block;
    width: 16px;
    min-height: 23px;
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #FFFFFF), color-stop(133.33%, rgba(255, 255, 255, 0)));
    background: linear-gradient(270deg, #FFFFFF 50%, rgba(255, 255, 255, 0) 133.33%);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 1px;
    z-index: 10;
  }
  .c-cat-line-in:after {
    top: 8px;
  }
}
@media (max-width: 767px) {
  .c-cat-line-in {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    min-height: 60px;
    padding-left: 15px;
  }
  .c-cat-line-in::after {
    content: "";
    display: block;
    width: 16px;
    min-height: 23px;
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #FFFFFF), color-stop(133.33%, rgba(255, 255, 255, 0)));
    background: linear-gradient(270deg, #FFFFFF 50%, rgba(255, 255, 255, 0) 133.33%);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 1px;
    z-index: 10;
  }
  .c-cat-line-in::before {
    content: "";
    display: block;
    width: 16px;
    height: 23px;
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #FFFFFF), color-stop(133.33%, rgba(255, 255, 255, 0)));
    background: linear-gradient(270deg, #FFFFFF 50%, rgba(255, 255, 255, 0) 133.33%);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
  }
  .c-cat-line-in:after {
    top: 8px;
  }
  .c-cat-line-in:before {
    top: 25px;
  }
}

.c-cat-select-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 20px;
  white-space: nowrap;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media (max-width: 767px) {
  .c-cat-select-title {
    padding: 10px 15px;
  }
}

.c-cat-select-title-item {
  font-size: 14px;
  line-height: 20px;
  color: #595959;
}

.c-form-images-block .filepond--item {
  width: calc(25% - 0.5em);
  max-height: 20em;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .c-form-images-block .filepond--item {
    width: calc(33% - 0.5em);
  }
}
@media (max-width: 991px) {
  .c-form-images-block .filepond--item {
    width: calc(50% - 0.5em);
  }
}
.c-form-images-block .filepond--file-info-main {
  display: none;
}

/* Autocomplete */
.autocomplete {
  display: none;
  position: absolute;
  top: 100%;
  background-color: white;
  border: 1px solid #E5E5E5;
  z-index: 10000;
  width: 100% !important;
  -webkit-box-shadow: 0 5px 11px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 11px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 10px 0;
}
.autocomplete > li {
  display: block;
  padding: 7px 10px;
  cursor: pointer;
}
.autocomplete > li:hover {
  background: #f5f5f5;
}
.autocomplete .hovered {
  background-color: #F4F4F4;
}

.c-cat-select-ico {
  max-width: 30px;
  max-height: 20px;
}
@media (max-width: 767px) {
  .c-cat-select-ico {
    margin-top: 20px;
  }
}

.c-cat-box {
  margin-bottom: 51px;
}
@media (max-width: 767px) {
  .c-cat-box {
    margin-bottom: 30px;
  }
}

.form-horizontal .control-label {
  text-align: right;
}
@media (max-width: 767px) {
  .form-horizontal .control-label {
    text-align: left;
  }
}

.form-check {
  padding-left: 0;
}
.form-check.d-block + .form-check {
  margin-top: 5px;
}

.form-row {
  margin-bottom: 20px;
  margin-right: -10px;
  margin-left: -10px;
}
.form-row:empty {
  display: none;
}
@media (max-width: 767px) {
  .form-row .col-12 + .col-12 {
    margin-top: 20px;
  }
}
.form-row > .col,
.form-row > [class*=col-],
.form-row > [class*=col-] > .row [class*=col-] {
  padding-right: 10px;
  padding-left: 10px;
}
.form-row [class*=col-] > .row {
  margin-right: -10px;
  margin-left: -10px;
}
.form-row .d-flex {
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  gap: 10px;
}

.j-images-block .form-row {
  margin-bottom: 20px !important;
}

.has-error .form-control,
.has-error .input-group-text,
.has-error div.input-group-text,
.has-error span.input-group-text {
  border-color: var(--danger-color) !important;
  -webkit-box-shadow: 0 0 4px rgba(255, 88, 91, 0.5);
          box-shadow: 0 0 4px rgba(255, 88, 91, 0.5);
}

.form-horizontal .checkbox {
  padding-top: 7px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .form-horizontal .col-form-label {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    text-align: right;
  }
}

.input-group-append .input-group-text {
  color: #999c9e;
  font-size: 14px;
}
.input-group-append .input-group-text,
.input-group-append .form-control {
  border-radius: 0 3px 3px 0 !important;
  border-color: #E5E5E5 !important;
}

.input-group-prepend {
  margin-right: -1px;
  height: calc(1.5em + 0.75rem + 2px);
}

.form-control-with-clear .btn-close {
  display: none;
}
.form-control-with-clear.is-input .btn-close {
  display: block;
}
.form-control-with-clear.is-input .btn-submit {
  display: none;
}
.form-control-with-clear.is-input .form-control.autocomplete-progress + .btn-submit + .btn-close, .form-control-with-clear.is-input .form-control.autocomplete-progress + * + .btn-submit + .btn-close {
  display: none;
}

.form-control {
  min-height: 35px;
  outline: none;
  font-size: 14px;
  border: 1px solid #E5E5E5;
}
.form-control::-webkit-input-placeholder {
  color: #595959;
}
.form-control::-moz-placeholder {
  color: #595959;
}
.form-control:-ms-input-placeholder {
  color: #595959;
}
.form-control:-moz-placeholder {
  color: #595959;
}
.form-control.is-invalid + .input-tip {
  opacity: 0;
}
.form-control.input-mini, .form-control.form-control-xs {
  width: 70px;
  max-width: 70px;
}
.form-control.input-mini + .help-inline, .form-control.form-control-xs + .help-inline {
  margin-top: -4px;
}
@media (max-width: 767px) {
  .form-control.input-mini + .help-inline, .form-control.form-control-xs + .help-inline {
    padding-top: 0;
    padding-left: 5px;
  }
}
.form-control.form-control-sm-100, .form-control.input-small {
  min-width: 100px;
  max-width: 100px;
}
.form-control.form-control-sm-80 {
  min-width: 80px;
  max-width: 80px;
}
.form-control.input-medium, .form-control.form-control-sm {
  min-width: 158px;
  max-width: 158px;
}
@media (min-width: 768px) {
  .form-control.form-control-md {
    min-width: 200px;
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  .form-control.form-control-md {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .form-control.input-large, .form-control.form-control-lg {
    min-width: 250px;
    max-width: 250px;
  }
}
@media (max-width: 767px) {
  .form-control.input-large, .form-control.form-control-lg {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .form-control.input-xlarge, .form-control.form-control-xl {
    width: 350px;
  }
}
@media (max-width: 767px) {
  .form-control.input-xlarge, .form-control.form-control-xl {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .form-control.p-6 {
    padding: 20px !important;
  }
}

.form-control-250 {
  max-width: 250px;
}

select.form-control {
  padding-right: 30px !important;
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.25 4.79795L2.26513 3.75L7.5 9.15411L12.7349 3.75L13.75 4.79795L7.5 11.25L1.25 4.79795Z' fill='%23999999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px 15px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

@media (min-width: 768px) {
  .form-inline .form-group + .form-group {
    margin-left: 5px;
  }
}

.form-row-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form-row-actions .btn + .btn {
  margin-left: 10px;
}

.form-group {
  position: relative;
  margin-bottom: 0 !important;
}
.form-group + .form-group {
  margin-top: 20px;
}
.form-group .btn + .btn {
  margin-left: 5px;
}
.form-group .additions {
  display: block;
  margin-top: 5px;
  text-decoration: underline !important;
}

.form-group-multiple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form-group-multiple .form-control {
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (max-width: 767px) {
  .form-group-multiple.is-multiple-7-items, .form-group-multiple.is-multiple-8-items, .form-group-multiple.is-multiple-9-items, .form-group-multiple.is-multiple-10-items {
    gap: 7px;
    margin-left: -10px;
    margin-right: -10px;
  }
  .form-group-multiple.is-multiple-7-items .form-control, .form-group-multiple.is-multiple-8-items .form-control, .form-group-multiple.is-multiple-9-items .form-control, .form-group-multiple.is-multiple-10-items .form-control {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 25px;
    height: 30px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 374px) {
  .form-group-multiple.is-multiple-7-items, .form-group-multiple.is-multiple-8-items, .form-group-multiple.is-multiple-9-items, .form-group-multiple.is-multiple-10-items {
    gap: 5px;
  }
  .form-group-multiple.is-multiple-7-items .form-control, .form-group-multiple.is-multiple-8-items .form-control, .form-group-multiple.is-multiple-9-items .form-control, .form-group-multiple.is-multiple-10-items .form-control {
    width: 20px;
  }
}

.form-group-with-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 576px) {
  .form-group-with-label {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 575px) {
  .form-group-with-label {
    -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;
  }
}
@media (min-width: 576px) {
  .form-group-with-label .control-label {
    min-width: 33%;
    margin-bottom: 0;
    margin-right: 20px;
    text-align: right;
  }
}
@media (max-width: 575px) {
  .form-group-with-label .form-control {
    max-width: inherit !important;
  }
}

.form-row-sm {
  margin-bottom: 10px;
}

.form-row-item + .form-row-item {
  margin-top: 20px;
}
.form-row-item.form-row-contact + .form-row-contact {
  margin-top: 10px;
}
.form-row-item.form-row-contact .input-group-text {
  width: 40px;
}
.form-row-item .input-group-text {
  border-right: none;
  margin-right: -1px;
  border-radius: 3px 0 0 3px !important;
}

.form-row-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.form-row-price .form-control {
  width: auto;
}

.form-lang .country-icon {
  position: relative;
  left: auto;
  top: auto;
  margin-top: 0;
  margin-right: 0;
}
.form-lang > a {
  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;
  opacity: 0.6;
}
.form-lang > a:hover {
  opacity: 1;
}
.form-lang > a.active {
  opacity: 1;
}
@media (min-width: 768px) {
  .form-lang {
    position: absolute;
    z-index: 99;
    top: 8px;
    right: -25px;
  }
  .form-lang > a {
    border-radius: 2px;
    border: 1px solid transparent;
    width: 30px;
    height: 24px;
    background-color: #fff;
  }
  .form-lang > a.active {
    border-color: #E5E5E5;
  }
}
@media (max-width: 767px) {
  .form-lang {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #E5E5E5;
    border-radius: 2px;
    overflow: hidden;
  }
  .form-lang > a {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 32px;
  }
  .form-lang > a + a {
    border-left: 1px solid #E5E5E5;
  }
  .form-lang > a.active {
    background-color: #F4F4F4;
  }
}

.input-group .input-group-dp {
  border-radius: 0 2px 2px 0 !important;
  margin-right: -1px;
  border-left: none;
  font-size: 14px;
  padding: 12px 15px;
  height: 44px;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.input-group.input-error .input-group-text {
  border-color: var(--danger-color) !important;
}

.input-group-password input[type=password] + .input-group-append .ico-password-hide {
  display: none;
}
.input-group-password input[type=text] + .input-group-append .ico-password-show {
  display: none;
}
.input-group-password .input-group-text {
  width: 43px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.required-mark {
  color: var(--danger-color);
}

.input-error {
  border-color: var(--danger-color) !important;
}

.input-phone {
  position: relative;
}
.input-phone > .form-control {
  padding-left: 30px;
}

.form-controls-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin: -5px;
}
.form-controls-inline > .form-control {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}
.form-controls-inline > * {
  margin: 5px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=number],
input[type=tel],
textarea,
select,
.form-control,
textarea.form-control {
  border: 1px solid #E5E5E5;
  text-shadow: none !important;
  outline: none;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=tel]:focus,
textarea:focus,
select:focus,
.form-control:focus,
textarea.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
input[type=text]:-webkit-autofill, input[type=text]:-webkit-autofill:hover, input[type=text]:-webkit-autofill:focus, input[type=text]:-webkit-autofill:active,
input[type=password]:-webkit-autofill,
input[type=password]:-webkit-autofill:hover,
input[type=password]:-webkit-autofill:focus,
input[type=password]:-webkit-autofill:active,
input[type=email]:-webkit-autofill,
input[type=email]:-webkit-autofill:hover,
input[type=email]:-webkit-autofill:focus,
input[type=email]:-webkit-autofill:active,
input[type=number]:-webkit-autofill,
input[type=number]:-webkit-autofill:hover,
input[type=number]:-webkit-autofill:focus,
input[type=number]:-webkit-autofill:active,
input[type=tel]:-webkit-autofill,
input[type=tel]:-webkit-autofill:hover,
input[type=tel]:-webkit-autofill:focus,
input[type=tel]:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active,
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:active,
textarea.form-control:-webkit-autofill,
textarea.form-control:-webkit-autofill:hover,
textarea.form-control:-webkit-autofill:focus,
textarea.form-control:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #fff inset !important;
          box-shadow: 0 0 0 30px #fff inset !important;
}

.input-append .add-on,
.input-prepend .add-on,
.input-group-addon {
  border-color: #E5E5E5;
}

.checkbox {
  display: block;
}
.checkbox label {
  margin-bottom: 0;
  padding-left: 16px;
  position: relative;
}
.checkbox label input[type=checkbox],
.checkbox label input[type=radio] {
  position: absolute;
  top: 4px;
  left: 0;
}

@media (max-width: 767px) {
  .checkbox-box-one-row {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}
.checkbox-box-one-row .checkbox-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  padding-left: 0 !important;
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  width: auto;
  max-width: 100%;
  min-width: 100%;
  margin-bottom: 0 !important;
  gap: 10px;
}
@media (max-width: 767px) {
  .checkbox-box-one-row .checkbox-box .d-inline-block {
    margin-right: 0 !important;
    display: block !important;
  }
}
@media (min-width: 768px) {
  .checkbox-box-one-row .checkbox-box li {
    margin-top: 0 !important;
  }
}
@media (max-width: 767px) {
  .checkbox-box-one-row .checkbox-box li {
    margin-top: 0 !important;
  }
}

.dp-checkbox-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  min-width: 100%;
}
@media (min-width: 992px) {
  .dp-checkbox-wrap {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 15px;
  }
}
@media (max-width: 991px) {
  .dp-checkbox-wrap {
    gap: 15px;
  }
}
.dp-checkbox-wrap .checkbox-box {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.checkbox-box {
  padding: 0;
}
.checkbox-box li + li {
  margin-top: 15px;
}
@media (max-width: 767px) {
  .checkbox-box li + li {
    margin-top: 11px;
  }
}
.checkbox-box .form-check-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-row-body .form-text {
  margin-top: -5px !important;
}

.form-check-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
}
.form-check-label input[type=checkbox],
.form-check-label input[type=radio] {
  opacity: 0;
  position: absolute;
  left: -99999px;
}
.form-check-label input[type=checkbox]:focus + .ico-check,
.form-check-label input[type=radio]:focus + .ico-check {
  border-color: var(--primary-base-color) !important;
}
.form-check-label .ico-check {
  float: left;
}
.form-check-label .ico-check + span {
  display: block;
  overflow: hidden;
}
.form-check-label.d-block + .form-check-label {
  margin-top: 10px;
}
.form-check-label input[type=checkbox]:checked + .ico-check,
.form-check-label input[type=checkbox]:checked + * + .ico-check {
  border-color: var(--primary-base-color) !important;
  background-color: var(--primary-base-color);
  color: white;
}
.form-check-label input[type=checkbox]:checked + .ico-check:after,
.form-check-label input[type=checkbox]:checked + * + .ico-check:after {
  background-color: transparent;
}
.form-check-label input[type=checkbox]:checked + .ico-check .fa-check,
.form-check-label input[type=checkbox]:checked + * + .ico-check .fa-check {
  opacity: 1;
}
.form-check-label input[type=checkbox]:indeterminate + .ico-check,
.form-check-label input[type=checkbox]:indeterminate + * + .ico-check {
  border-color: var(--primary-base-color) !important;
  background-color: var(--primary-base-color);
  color: white;
}
.form-check-label input[type=checkbox]:indeterminate + .ico-check:after,
.form-check-label input[type=checkbox]:indeterminate + * + .ico-check:after {
  content: "";
  display: block;
  background-color: var(--secondary-base-color);
  position: absolute;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
}
.form-check-label input[type=checkbox]:indeterminate + .ico-check .fa-check,
.form-check-label input[type=checkbox]:indeterminate + * + .ico-check .fa-check {
  opacity: 0;
}
.form-check-label input[type=checkbox] + .ico-check,
.form-check-label input[type=checkbox] + * + .ico-check {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 10px 0 0;
  vertical-align: middle;
  background: white;
  color: white;
  cursor: pointer;
  border: 1px solid #E5E5E5;
  border-radius: 3px;
  position: relative;
  text-align: left;
}
.form-check-label input[type=checkbox] + .ico-check .fa-check,
.form-check-label input[type=checkbox] + * + .ico-check .fa-check {
  opacity: 0;
}
.form-check-label input[type=checkbox] + .ico-check .fa-check::before,
.form-check-label input[type=checkbox] + * + .ico-check .fa-check::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 11 11' fill='none'%3E%3Cpath d='M3.82479 7.92519L9.80987 1.89825L10.5092 2.59761L4.15681 8.97961C4.05975 9.07734 3.94392 9.12082 3.80919 9.12082C3.67445 9.12082 3.55863 9.07734 3.46157 8.97961L0.490234 5.98749L1.18998 5.28775L3.82479 7.92519Z' fill='white'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.form-check-label input[type=checkbox]:disabled + .ico-check,
.form-check-label input[type=checkbox].disabled + .ico-check,
.form-check-label input[type=checkbox][disabled] + .ico-check {
  background-color: #F4F4F4;
  cursor: not-allowed;
}
.form-check-label input[type=checkbox]:disabled + .ico-check,
.form-check-label input[type=checkbox].disabled + .ico-check,
.form-check-label input[type=checkbox][disabled] + .ico-check,
.form-check-label input[type=checkbox]:disabled + .ico-check + *,
.form-check-label input[type=checkbox].disabled + .ico-check + *,
.form-check-label input[type=checkbox][disabled] + .ico-check + * {
  cursor: not-allowed;
}
.form-check-label.form-radio-label-link.active .ico-check:after,
.form-check-label input[type=radio]:checked + .ico-check:after,
.form-check-label input[type=radio]:checked + * + .ico-check:after {
  border-color: var(--primary-base-color) !important;
  color: var(--primary-base-color);
  background-color: var(--primary-base-color);
}
.form-check-label.form-radio-label-link .ico-check:after,
.form-check-label input[type=radio] + .ico-check:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  text-align: center;
  border-radius: 50%;
}
.form-check-label.form-radio-label-link .ico-check,
.form-check-label input[type=radio] + .ico-check {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 10px 0 0;
  vertical-align: middle;
  background: white;
  color: white;
  cursor: pointer;
  border: 1px solid #d9e1e4;
  border-radius: 50%;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  position: relative;
}
.form-check-label.form-radio-label-link.active .ico-check,
.form-check-label input[type=radio]:checked + .ico-check {
  border-color: var(--primary-base-color) !important;
  color: var(--primary-base-color);
}

.input-with-tip {
  position: relative;
  cursor: pointer;
}
.input-with-tip .input-tip {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 11px;
  color: #999999;
}
.input-with-tip input {
  padding-right: 35px;
}

.ico-check {
  background-color: white;
}

.switch {
  position: relative;
  display: inline-block;
  min-width: 35px;
  height: 22px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch .ico-no {
  color: rgba(var(--links-color));
}
.switch .ico-yes {
  color: rgba(var(--links-color));
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E5E5E5;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 18px;
  max-width: 35px;
}
.switch .slider .slider-round {
  position: absolute;
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
  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;
}
.switch .slider .slider-round .ico-yes {
  font-size: 10px;
  display: none;
}
.switch .slider .slider-round .ico-no {
  color: black;
  opacity: 0.5;
  font-size: 10px;
  display: inline-block;
}
.switch input:checked + .slider,
.switch input:checked + * + .slider {
  background-color: rgba(var(--links-color));
}
.switch input:checked + .slider .slider-round,
.switch input:checked + * + .slider .slider-round {
  -webkit-transform: translateX(13px);
      -ms-transform: translateX(13px);
          transform: translateX(13px);
}
.switch input:checked + .slider .slider-round .ico-yes,
.switch input:checked + * + .slider .slider-round .ico-yes {
  display: inline-block;
}
.switch input:checked + .slider .slider-round .ico-no,
.switch input:checked + * + .slider .slider-round .ico-no {
  display: none;
}
.switch.switch-primary input:checked + .slider,
.switch.switch-primary input:checked + * + .slider {
  background-color: var(--primary-base-color);
}
.switch.switch-primary .ico-yes {
  color: var(--primary-base-color);
}

.switch-dyn-txt.active .switch-txt-on {
  display: inline-block;
}
.switch-dyn-txt.active .switch-txt-off {
  display: none;
}

.switch-txt-on {
  display: none;
}

textarea {
  min-height: 120px;
  -webkit-appearance: none !important;
}
textarea.noresize {
  resize: none;
}

.form-assigns-text {
  padding-left: 25px;
  display: block;
  font-size: 14px !important;
  line-height: 20px !important;
  text-align: left;
}
.form-assigns-text a {
  text-decoration: underline !important;
}

.form-assigns {
  margin-top: 20px;
}
.form-assigns .ico-check {
  position: absolute !important;
  top: 0;
  left: 0;
  margin-top: 2px !important;
}

.input-group-text {
  background-color: white;
  border-color: #E5E5E5 !important;
}

.form-phone-input .input-group-text {
  height: 100%;
}
.form-phone-input .input-group-text .country-icon {
  position: static;
  margin-right: 10px;
}
.form-phone-input .input-group-text .country-icon.open + .c-drop-arrow {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.form-phone-input.dropdown .dropdown-menu {
  -webkit-transform: translate3d(0, 40px, 0) !important;
          transform: translate3d(0, 40px, 0) !important;
}
.form-phone-input.dropdown .dropdown-menu .ps {
  max-height: 340px;
}
.form-phone-input.dropdown .dropdown-menu.show {
  display: block !important;
}

.form-group-label {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
}

.required-mark {
  margin-left: 3px;
}

.form-text {
  color: #595959;
  font-size: 13px;
  margin-top: 0 !important;
}

.f-social-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: nowrap;
      flex-flow: nowrap;
  position: relative;
}
.f-social-form .form-control {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.f-social-form-select {
  display: table-cell;
  padding-right: 10px;
  width: 160px;
}

.f-social-form-input {
  display: table-cell;
  position: relative;
}

.f-social-form-delete {
  margin-left: 10px;
}
.f-social-form-delete .ico {
  min-width: inherit !important;
}

.form-row > .f-social-form-delete {
  margin-right: 10px;
}

input.autocomplete-progress {
  position: relative;
  background-image: url(../css/images/loader.gif?8b4e738c970e1e7184968911e39fa1ac);
  background-repeat: no-repeat;
  background-size: 20px !important;
  background-position: right 7px center;
  padding-right: 35px !important;
}

.f-color-select-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .f-color-select-box {
    -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;
  }
}
@media (max-width: 767px) {
  .f-color-select-box .f-color-select {
    margin-bottom: 10px;
  }
}

.f-color-select {
  position: relative;
}
.f-color-select .form-control {
  padding-right: 40px;
}

.form-control-color {
  position: absolute;
  top: 6px;
  right: 8px;
  padding: 0;
  background: none;
  width: 20px;
  height: 20px;
  border: 1px solid #C3C3C3;
}

.f-input-with-text-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1199px) {
  .f-input-with-text-r {
    -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;
  }
}
@media (min-width: 1200px) {
  .f-input-with-text-r .c-link-ajax {
    margin-left: auto;
  }
}
@media (max-width: 1199px) {
  .f-input-with-text-r .c-link-ajax {
    margin-left: 0;
    margin-top: 12px;
  }
}

.f-upload-photo {
  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;
  border: 2px dashed #E5E5E5;
  width: 100%;
  height: 113px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 20px;
  border-radius: 4px;
  background-image: url(../css/images/creation-item-bg.svg?f7d014dca015608921241bdcd0236819);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  position: relative;
  background-color: white;
}
.f-upload-photo.is-uploaded {
  background-image: none;
}
.f-upload-photo.f-photo-noinput {
  border: none;
  width: 100px;
  height: 80px;
}
.f-upload-photo.f-photo-noinput .usr-settings-photo {
  -o-object-position: left center;
     object-position: left center;
}
.f-upload-photo .usr-settings-photo {
  margin-right: 0;
}
@media (max-width: 767px) {
  .f-upload-photo .usr-settings-photo {
    margin: 0;
  }
}

.usr-settings-box .form-row-body,
.au-form .form-row-body,
.dp-checkbox-one-column .form-row-body {
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.usr-settings-box .form-row:last-child,
.au-form .form-row:last-child,
.dp-checkbox-one-column .form-row:last-child {
  margin-bottom: 0 !important;
}
.usr-settings-box textarea,
.au-form textarea,
.dp-checkbox-one-column textarea {
  height: auto;
  min-height: 200px !important;
}

@media (min-width: 768px) {
  .usr-settings-tab .usr-settings-box .form-row-dyn-props .control-label {
    width: 33.3333%;
    max-width: 33.3333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%;
  }
}
@media (min-width: 768px) {
  .usr-settings-tab .usr-settings-box .form-row-dyn-props .form-row-body {
    padding-right: 10px !important;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    max-width: inherit;
  }
}

.au-form .form-group + .form-row {
  margin-top: 15px;
}

.dp-checkbox-one-column .checkbox-box,
.dp-checkbox-one-column .form-row-dyn-props {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.dp-checkbox-one-column .c-form-sub-title {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .dp-checkbox-one-column .c-form-sub-title {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .dp-checkbox-one-column .c-form-sub-title {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 768px) {
  .dp-checkbox-one-column .form-row-dyn-props .control-label {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    text-align: left;
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) {
  .dp-checkbox-one-column .form-row-dyn-props .form-row-body {
    padding-right: 10px !important;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    max-width: inherit;
    padding-top: 0 !important;
  }
}

a.cp-au-link {
  color: var(--primary-base-color);
}
a.cp-au-link:hover, a.cp-au-link:focus {
  color: #00CCDB !important;
}

@media (min-width: 768px) {
  .dropdown-mob-title {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .dropdown-mob-title {
    display: block;
    color: #595959;
    font-size: 13px;
    line-height: 16px;
  }
}

@media (max-width: 991px) {
  .mob-cat-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
    position: relative;
    padding: 10px 0;
  }
  .mob-cat-item + .mob-cat-item {
    border-top: 1px solid #EBEBEB;
  }
  .mob-cat-item .ico {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-90deg);
        -ms-transform: translateY(-50%) rotate(-90deg);
            transform: translateY(-50%) rotate(-90deg);
    right: 0;
  }
  .mob-cat-item a {
    display: block;
    width: 100%;
  }
  .mob-fl-cat-list li.mob-cat-item {
    padding: 0;
  }
  .mob-fl-cat-list li.mob-cat-item a, .mob-fl-cat-list li.mob-cat-item .hidden-link {
    padding: 10px 0;
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .mob-fl-cat-pic {
    min-width: 35px;
    max-width: 35px;
    max-height: 35px;
    margin-right: 23px;
  }
  .mob-fl-cat-header {
    padding: 15px 20px;
    background-color: #F4F4F4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mob-fl-cat-parent-img {
    margin-right: 10px;
  }
  .mob-fl-cat-back {
    font-size: 14px;
    margin-bottom: 5px;
    display: inline-block;
    text-decoration: none;
  }
  .mob-fl-cat-back-title {
    font-size: 16px;
    line-height: normal;
  }
  .mob-fl-search {
    position: relative;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .mob-fl-search {
    display: none;
  }
}
@media (max-width: 991px) {
  .mob-fl-search:after {
    display: none;
  }
  .mob-fl-search .btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: transparent;
    background-image: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    padding: 4px 10px;
  }
  .mob-fl-search .btn .ico {
    display: block;
    width: 18px;
  }
  .mob-fl-search .btn .ico path {
    fill: #999999;
  }
  .mob-fl-nav-collapse-langs {
    padding-bottom: 5px;
    padding-top: 5px;
    position: relative;
  }
  .mob-fl-nav-collapse-langs:empty {
    display: none;
  }
  .mob-fl-nav-collapse-langs .dr-collapse-act {
    color: rgba(var(--links-color));
  }
  .mob-fl-nav-collapse-langs .c-link-ajax {
    padding: 0;
    color: rgba(var(--links-color));
  }
  .mob-fl-nav-collapse-langs .c-link-ajax:not(.collapsed) .c-drop-arrow {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.country-icon-element {
  position: relative;
  font-size: 14px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.country-icon {
  -webkit-transform: scale(1.35);
      -ms-transform: scale(1.35);
          transform: scale(1.35);
  min-width: 16px;
  height: 11px;
  background-image: url(../css/images/flags.png?d62cdf895d623bfbea004b0748e6b522);
  cursor: pointer;
  display: inline-block;
  text-decoration: none !important;
}

img.country-icon {
  width: 16px;
  height: 16px;
  background-image: none;
}

/*rtl:begin:ignore*/
.country-icon-ad {
  background-position: -16px 0;
}

.country-icon-ae {
  background-position: -32px 0;
}

.country-icon-af {
  background-position: -48px 0;
}

.country-icon-ag {
  background-position: -64px 0;
}

.country-icon-ai {
  background-position: -80px 0;
}

.country-icon-al {
  background-position: -96px 0;
}

.country-icon-am {
  background-position: -113px 0;
}

.country-icon-an {
  background-position: -128px 0;
}

.country-icon-ao {
  background-position: -144px 0;
}

.country-icon-ar {
  background-position: -160px 0;
}

.country-icon-as {
  background-position: -176px 0;
}

.country-icon-at {
  background-position: -192px 0;
}

.country-icon-au {
  background-position: -208px 0;
}

.country-icon-aw {
  background-position: -224px 0;
}

.country-icon-az {
  background-position: -240px 0;
}

.country-icon-ba {
  background-position: 0 -11px;
}

.country-icon-bb {
  background-position: -16px -11px;
}

.country-icon-bd {
  background-position: -32px -11px;
}

.country-icon-be {
  background-position: -48px -11px;
}

.country-icon-bf {
  background-position: -64px -11px;
}

.country-icon-bg {
  background-position: -80px -11px;
}

.country-icon-bh {
  background-position: -96px -11px;
}

.country-icon-bi {
  background-position: -113px -11px;
}

.country-icon-bj {
  background-position: -128px -11px;
}

.country-icon-bm {
  background-position: -144px -11px;
}

.country-icon-bn {
  background-position: -160px -11px;
}

.country-icon-bo {
  background-position: -176px -11px;
}

.country-icon-br {
  background-position: -192px -11px;
}

.country-icon-bs {
  background-position: -208px -11px;
}

.country-icon-bt {
  background-position: -224px -11px;
}

.country-icon-bv {
  background-position: -240px -11px;
}

.country-icon-bw {
  background-position: 0 -22px;
}

.country-icon-by {
  background-position: -16px -22px;
}

.country-icon-bz {
  background-position: -32px -22px;
}

.country-icon-ca {
  background-position: -48px -22px;
}

.country-icon-cd {
  background-position: -80px -22px;
}

.country-icon-cf {
  background-position: -96px -22px;
}

.country-icon-cg {
  background-position: -113px -22px;
}

.country-icon-ch {
  background-position: -128px -22px;
}

.country-icon-ci {
  background-position: -144px -22px;
}

.country-icon-ck {
  background-position: -160px -22px;
}

.country-icon-cl {
  background-position: -176px -22px;
}

.country-icon-cm {
  background-position: -192px -22px;
}

.country-icon-cn {
  background-position: -208px -22px;
}

.country-icon-co {
  background-position: -224px -22px;
}

.country-icon-cr {
  background-position: -240px -22px;
}

.country-icon-cu {
  background-position: 0 -33px;
}

.country-icon-cv {
  background-position: -16px -33px;
}

.country-icon-cw {
  background-position: -32px -33px;
}

.country-icon-cy {
  background-position: -48px -33px;
}

.country-icon-cz {
  background-position: -64px -33px;
}

.country-icon-de {
  background-position: -80px -33px;
}

.country-icon-dj {
  background-position: -96px -33px;
}

.country-icon-dk {
  background-position: -113px -33px;
}

.country-icon-dm {
  background-position: -128px -33px;
}

.country-icon-do {
  background-position: -144px -33px;
}

.country-icon-dz {
  background-position: -160px -33px;
}

.country-icon-ec {
  background-position: -176px -33px;
}

.country-icon-ee {
  background-position: -192px -33px;
}

.country-icon-eg {
  background-position: -208px -33px;
}

.country-icon-eh {
  background-position: -224px -33px;
}

.country-icon-en {
  background-position: -240px -33px;
}

.country-icon-er {
  background-position: 0 -44px;
}

.country-icon-es {
  background-position: -16px -44px;
}

.country-icon-et {
  background-position: -32px -44px;
}

.country-icon-eu {
  background-position: -48px -44px;
}

.country-icon-fi {
  background-position: -64px -44px;
}

.country-icon-fj {
  background-position: -80px -44px;
}

.country-icon-fk {
  background-position: -96px -44px;
}

.country-icon-fm {
  background-position: -113px -44px;
}

.country-icon-fo {
  background-position: -128px -44px;
}

.country-icon-fr {
  background-position: -144px -44px;
}

.country-icon-ga {
  background-position: -160px -44px;
}

.country-icon-gb {
  background-position: -176px -44px;
}

.country-icon-gd {
  background-position: -192px -44px;
}

.country-icon-ge {
  background-position: -208px -44px;
}

.country-icon-gf {
  background-position: -224px -44px;
}

.country-icon-gg {
  background-position: -240px -44px;
}

.country-icon-gh {
  background-position: 0 -55px;
}

.country-icon-gi {
  background-position: -16px -55px;
}

.country-icon-gl {
  background-position: -32px -55px;
}

.country-icon-gm {
  background-position: -48px -55px;
}

.country-icon-gn {
  background-position: -64px -55px;
}

.country-icon-gp {
  background-position: -80px -55px;
}

.country-icon-gq {
  background-position: -96px -55px;
}

.country-icon-gr {
  background-position: -113px -55px;
}

.country-icon-gs {
  background-position: -128px -55px;
}

.country-icon-gt {
  background-position: -144px -55px;
}

.country-icon-gu {
  background-position: -160px -55px;
}

.country-icon-gw {
  background-position: -176px -55px;
}

.country-icon-gy {
  background-position: -192px -55px;
}

.country-icon-hk {
  background-position: -208px -55px;
}

.country-icon-hm {
  background-position: -224px -55px;
}

.country-icon-hn {
  background-position: -240px -55px;
}

.country-icon-hr {
  background-position: 0 -66px;
}

.country-icon-ht {
  background-position: -16px -66px;
}

.country-icon-hu {
  background-position: -32px -66px;
}

.country-icon-ic {
  background-position: -48px -66px;
}

.country-icon-id {
  background-position: -64px -66px;
}

.country-icon-ie {
  background-position: -80px -66px;
}

.country-icon-il {
  background-position: -96px -66px;
}

.country-icon-im {
  background-position: -113px -66px;
}

.country-icon-in {
  background-position: -128px -66px;
}

.country-icon-io {
  background-position: -144px -66px;
}

.country-icon-iq {
  background-position: -160px -66px;
}

.country-icon-ir {
  background-position: -176px -66px;
}

.country-icon-is {
  background-position: -192px -66px;
}

.country-icon-it {
  background-position: -208px -66px;
}

.country-icon-je {
  background-position: -224px -66px;
}

.country-icon-jm {
  background-position: -240px -66px;
}

.country-icon-jo {
  background-position: 0 -77px;
}

.country-icon-jp {
  background-position: -16px -77px;
}

.country-icon-ke {
  background-position: -32px -77px;
}

.country-icon-kg {
  background-position: -48px -77px;
}

.country-icon-kh {
  background-position: -64px -77px;
}

.country-icon-ki {
  background-position: -80px -77px;
}

.country-icon-km {
  background-position: -96px -77px;
}

.country-icon-kn {
  background-position: -113px -77px;
}

.country-icon-kp {
  background-position: -128px -77px;
}

.country-icon-kr {
  background-position: -144px -77px;
}

.country-icon-kw {
  background-position: -176px -77px;
}

.country-icon-ky {
  background-position: -192px -77px;
}

.country-icon-kz {
  background-position: -208px -77px;
}

.country-icon-la {
  background-position: -224px -77px;
}

.country-icon-lb {
  background-position: -240px -77px;
}

.country-icon-lc {
  background-position: 0 -88px;
}

.country-icon-li {
  background-position: -16px -88px;
}

.country-icon-lk {
  background-position: -32px -88px;
}

.country-icon-lr {
  background-position: -48px -88px;
}

.country-icon-ls {
  background-position: -64px -88px;
}

.country-icon-lt {
  background-position: -80px -88px;
}

.country-icon-lu {
  background-position: -96px -88px;
}

.country-icon-lv {
  background-position: -113px -88px;
}

.country-icon-ly {
  background-position: -128px -88px;
}

.country-icon-ma {
  background-position: -144px -88px;
}

.country-icon-mc {
  background-position: -160px -88px;
}

.country-icon-md {
  background-position: -176px -88px;
}

.country-icon-me {
  background-position: -192px -88px;
}

.country-icon-mg {
  background-position: -208px -88px;
}

.country-icon-mh {
  background-position: -224px -88px;
}

.country-icon-mk {
  background-position: -240px -88px;
}

.country-icon-ml {
  background-position: 0 -99px;
}

.country-icon-mm {
  background-position: -16px -99px;
}

.country-icon-mn {
  background-position: -32px -99px;
}

.country-icon-mo {
  background-position: -48px -99px;
}

.country-icon-mp {
  background-position: -64px -99px;
}

.country-icon-mq {
  background-position: -80px -99px;
}

.country-icon-mr {
  background-position: -96px -99px;
}

.country-icon-ms {
  background-position: -113px -99px;
}

.country-icon-mt {
  background-position: -128px -99px;
}

.country-icon-mu {
  background-position: -144px -99px;
}

.country-icon-mv {
  background-position: -160px -99px;
}

.country-icon-mw {
  background-position: -176px -99px;
}

.country-icon-mx {
  background-position: -192px -99px;
}

.country-icon-my {
  background-position: -208px -99px;
}

.country-icon-mz {
  background-position: -224px -99px;
}

.country-icon-na {
  background-position: -240px -99px;
}

.country-icon-nc {
  background-position: 0 -110px;
}

.country-icon-ne {
  background-position: -16px -110px;
}

.country-icon-nf {
  background-position: -32px -110px;
}

.country-icon-ng {
  background-position: -48px -110px;
}

.country-icon-ni {
  background-position: -64px -110px;
}

.country-icon-nl {
  background-position: -80px -110px;
}

.country-icon-no {
  background-position: -96px -110px;
}

.country-icon-np {
  background-position: -113px -110px;
}

.country-icon-nr {
  background-position: -128px -110px;
}

.country-icon-nu {
  background-position: -144px -110px;
}

.country-icon-nz {
  background-position: -160px -110px;
}

.country-icon-om {
  background-position: -176px -110px;
}

.country-icon-pa {
  background-position: -192px -110px;
}

.country-icon-pe {
  background-position: -208px -110px;
}

.country-icon-pf {
  background-position: -224px -110px;
}

.country-icon-pg {
  background-position: -240px -110px;
}

.country-icon-ph {
  background-position: 0 -121px;
}

.country-icon-pk {
  background-position: -16px -121px;
}

.country-icon-pl {
  background-position: -32px -121px;
}

.country-icon-pm {
  background-position: -48px -121px;
}

.country-icon-pn {
  background-position: -64px -121px;
}

.country-icon-pr {
  background-position: -80px -121px;
}

.country-icon-ps {
  background-position: -96px -121px;
}

.country-icon-pt {
  background-position: -113px -121px;
}

.country-icon-pw {
  background-position: -128px -121px;
}

.country-icon-py {
  background-position: -144px -121px;
}

.country-icon-qa {
  background-position: -160px -121px;
}

.country-icon-re {
  background-position: -176px -121px;
}

.country-icon-ro {
  background-position: -192px -121px;
}

.country-icon-rs {
  background-position: -208px -121px;
}

.country-icon-ru {
  background-position: -224px -121px;
}

.country-icon-rw {
  background-position: -240px -121px;
}

.country-icon-sa {
  background-position: 0 -132px;
}

.country-icon-sb {
  background-position: -16px -132px;
}

.country-icon-sc {
  background-position: -32px -132px;
}

.country-icon-sd {
  background-position: -64px -132px;
}

.country-icon-se {
  background-position: -80px -132px;
}

.country-icon-sg {
  background-position: -96px -132px;
}

.country-icon-sh {
  background-position: -113px -132px;
}

.country-icon-si {
  background-position: -128px -132px;
}

.country-icon-sk {
  background-position: -144px -132px;
}

.country-icon-sl {
  background-position: -160px -132px;
}

.country-icon-sm {
  background-position: -176px -132px;
}

.country-icon-sn {
  background-position: -192px -132px;
}

.country-icon-so {
  background-position: -208px -132px;
}

.country-icon-sr {
  background-position: -240px -132px;
}

.country-icon-ss {
  background-position: 0 -143px;
}

.country-icon-st {
  background-position: -16px -143px;
}

.country-icon-sv {
  background-position: -32px -143px;
}

.country-icon-sx {
  background-position: -48px -143px;
}

.country-icon-sy {
  background-position: -64px -143px;
}

.country-icon-sz {
  background-position: -80px -143px;
}

.country-icon-tc {
  background-position: -96px -143px;
}

.country-icon-td {
  background-position: -113px -143px;
}

.country-icon-tf {
  background-position: -128px -143px;
}

.country-icon-tg {
  background-position: -144px -143px;
}

.country-icon-th {
  background-position: -160px -143px;
}

.country-icon-tj {
  background-position: -176px -143px;
}

.country-icon-tk {
  background-position: -192px -143px;
}

.country-icon-tl {
  background-position: -208px -143px;
}

.country-icon-tm {
  background-position: -224px -143px;
}

.country-icon-tn {
  background-position: -240px -143px;
}

.country-icon-to {
  background-position: 0 -154px;
}

.country-icon-tr {
  background-position: -16px -154px;
}

.country-icon-tt {
  background-position: -32px -154px;
}

.country-icon-tv {
  background-position: -48px -154px;
}

.country-icon-tw {
  background-position: -64px -154px;
}

.country-icon-tz {
  background-position: -80px -154px;
}

.country-icon-ua {
  background-position: -96px -154px;
}

.country-icon-ug {
  background-position: -113px -154px;
}

.country-icon-um {
  background-position: -128px -154px;
}

.country-icon-us {
  background-position: -144px -154px;
}

.country-icon-uy {
  background-position: -160px -154px;
}

.country-icon-uz {
  background-position: -176px -154px;
}

.country-icon-va {
  background-position: -192px -154px;
}

.country-icon-vc {
  background-position: -208px -154px;
}

.country-icon-ve {
  background-position: -224px -154px;
}

.country-icon-vg {
  background-position: -240px -154px;
}

.country-icon-vi {
  background-position: 0 -165px;
}

.country-icon-vn {
  background-position: -16px -165px;
}

.country-icon-vu {
  background-position: -32px -165px;
}

.country-icon-wf {
  background-position: -64px -165px;
}

.country-icon-ws {
  background-position: -80px -165px;
}

.country-icon-ye {
  background-position: -96px -165px;
}

.country-icon-yt {
  background-position: -113px -165px;
}

.country-icon-za {
  background-position: -128px -165px;
}

.country-icon-zm {
  background-position: -160px -165px;
}

.country-icon-zw {
  background-position: -176px -165px;
}

/*rtl:end:ignore*/
/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
.alert-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: -1;
  opacity: 0;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.alert-popup .alert {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .alert-popup {
    left: 10px;
    right: 10px;
    top: 10px;
  }
}
@media (min-width: 768px) {
  .alert-popup {
    width: 316px;
  }
}
.alert-popup .close {
  font-size: 16px;
  margin-left: 10px;
}
.alert-popup.show {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  z-index: 99999;
}

.alert {
  padding: 20px 30px;
  border-radius: 5px;
  border: none;
  -ms-flex-flow: nowrap !important;
      flex-flow: nowrap !important;
}
@media (max-width: 767px) {
  .alert {
    padding: 15px;
    margin-bottom: 20px;
  }
}
.alert .d-flex {
  margin: -10px -10px -10px 0;
}
@media (max-width: 767px) {
  .alert .d-flex {
    margin: 0;
  }
}
.alert.d-flex .ico {
  margin-top: 3px;
}

.alert-success {
  background: #E9FFCB;
}
.alert-success .alert-title {
  color: #74B31B;
}
.alert-success .close path {
  fill: #74B31B;
}

.alert-danger,
.alert-error {
  background: #FFE3E4;
}
.alert-danger .alert-title,
.alert-error .alert-title {
  color: #FF585B;
}
.alert-danger .close path,
.alert-error .close path {
  fill: #FF585B;
}

.alert-info {
  background: #EAF9F9;
  color: var(--text-color);
}
.alert-info .alert-title {
  color: var(--text-color);
}
.alert-info .close path {
  fill: #999999;
}

.alert-info-blue {
  background: #F1F9FF;
  color: var(--text-color);
}
.alert-info-blue .alert-title {
  color: var(--text-color);
}
.alert-info-blue .close path {
  fill: #a0e2f5;
}

.alert-grey {
  background-color: #F8F8F8;
}

.alert-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}

.alert-message {
  color: var(--text-color);
  font-size: 14px;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767px) {
  .alert-controls {
    margin-top: 10px;
  }
}
@media (min-width: 768px) {
  .alert-controls {
    margin-top: -5px;
    float: right;
    margin-left: 20px;
  }
}

.alert-actions-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.alert-actions-text .ico {
  margin-top: 3px;
}

.alert-actions .d-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .alert-actions .d-flex {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.alert-actions .btn {
  margin-left: auto;
}
@media (max-width: 767px) {
  .alert-actions .btn {
    margin: 15px auto 0 auto;
  }
}
.alert-actions .ico {
  color: var(--secondary-base-color);
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .c-payment-alert-wrap {
    margin: 0 20px 20px 20px;
  }
}
@media (max-width: 1199px) {
  .c-payment-alert-wrap {
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .c-payment-alert {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 20px;
    margin-bottom: 0;
  }
}
@media (max-width: 1199px) {
  .c-payment-alert {
    padding: 20px;
  }
}
.c-payment-alert .ico {
  margin-bottom: 0;
}
.c-payment-alert .alert {
  padding: 0;
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .c-payment-alert-l {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 1199px) {
  .c-payment-alert-l {
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  .c-payment-alert-l .text-color {
    margin-top: 12px;
  }
}

@media (max-width: 1199px) {
  .c-payment-alert-r {
    text-align: center;
  }
}

.usr-dialogs {
  position: relative;
}

.usr-dialogs-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #E5E5E5;
  padding: 20px;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  position: relative;
  cursor: pointer;
}
.usr-dialogs-item + .usr-dialogs-item {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .usr-dialogs-item {
    border-radius: 5px;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .usr-dialogs-item {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (max-width: 767px) {
  .usr-dialogs-item {
    min-width: 100%;
    padding-bottom: 50px;
    border-left: 0;
    border-right: 0;
  }
}
.usr-dialogs-item:hover {
  -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.usr-dialogs-item-avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 15px;
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 60px;
}
.usr-dialogs-item-avatar img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f5f5f5;
  width: 60px;
  height: 60px;
}
@media (max-width: 767px) {
  .usr-dialogs-item-avatar {
    margin-right: 0;
  }
}

.usr-dialogs-item-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}

.usr-dialogs-item-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.usr-dialogs-item-title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .usr-dialogs-item-title {
    -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: 20px;
    padding-top: 2px;
    min-height: 60px;
  }
}
.usr-dialogs-item-title .usr-dialogs-item-msg-date {
  margin-top: 3px;
}
@media (min-width: 768px) {
  .usr-dialogs-item-title .usr-dialogs-item-msg-date {
    display: none;
  }
}

.usr-dialogs-item-title-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .usr-dialogs-item-title-in {
    margin-bottom: 3px;
  }
}

.usr-dialogs-item-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .usr-dialogs-item-actions {
    position: absolute;
    bottom: 10px;
    right: 0;
    left: 0;
  }
}
.usr-dialogs-item-actions .ico {
  color: #999999;
  font-size: 16px;
}
.usr-dialogs-item-actions a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .usr-dialogs-item-actions a {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-height: inherit;
    position: relative;
  }
}
@media (min-width: 768px) {
  .usr-dialogs-item-actions a + a {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .usr-dialogs-item-actions a + a:before {
    content: "";
    display: block;
    background-color: #EAE5CF;
    width: 1px;
    height: 16px;
    position: absolute;
    left: 0;
  }
}

.usr-dialogs-item-msg {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .usr-dialogs-item-msg {
    margin-left: -60px;
  }
}
@media (max-width: 767px) {
  .usr-dialogs-item-msg .usr-dialogs-item-msg-date {
    display: none;
  }
}

.usr-dialogs-item-msg-text {
  font-size: 16px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.usr-dialogs-item-msg-title {
  font-weight: bold;
}

.usr-dialogs-item-msg-date {
  font-size: 13px;
  color: #595959;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .usr-dialogs-item-msg-date {
    padding-left: 20px;
  }
}

/*chat window*/
@media (max-width: 767px) {
  .ch-page-mp {
    margin: 0 -15px -37px -15px;
  }
}

.ch-folder-dropdown .dropdown-toggle s .ico,
.ch-folder-dropdown .dropdown-menu s .ico {
  color: #999999;
  font-size: 16px;
}

.ch-header-action {
  max-width: 18px;
  font-size: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (max-width: 767px) {
  .ch-header-action {
    display: none;
  }
}
.ch-header-action + .ch-header-action {
  margin-left: 30px;
}

.ch-ad-item {
  border-radius: 2px;
  background-color: white;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}

.ch-ad-item-l {
  width: 54px;
  height: 44px;
  margin-right: 15px;
}
.ch-ad-item-l img {
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
  max-height: 100%;
  min-height: 100%;
}

.ch-ad-item-r {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -ms-flex-item-align: center;
      align-self: center;
}

@media (max-width: 767px) {
  .ch-ad-item-num {
    display: none;
  }
}

/* basic */
@media (min-width: 768px) {
  .chat-order-box {
    border: 1px solid #EBEBEB;
    border-radius: 4px;
  }
}
@media (max-width: 767px) {
  .chat-order-box {
    margin: 20px -20px 0 -20px;
  }
}

.chat-order-window {
  position: relative;
}
@media (min-width: 768px) {
  .chat-order-window {
    padding: 15px 20px 20px 20px;
  }
}
@media (min-width: 992px) {
  .chat-order-window {
    max-height: 700px;
  }
  .chat-order-window:not(.ps) {
    overflow: auto !important;
  }
}
@media (max-width: 767px) {
  .chat-order-window.ps {
    overflow: auto !important;
  }
}
@media (max-width: 767px) {
  .chat-order-window {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.chat-order-window .c-article {
  margin-bottom: 0;
  margin-top: 10px;
}
.chat-order-window .c-article:empty {
  display: none;
}

.chat-order-window .ps__rail-y,
.ch-window .ps__rail-y {
  margin: 5px 0;
}
@media (max-width: 767px) {
  .chat-order-window .ps__rail-y,
  .ch-window .ps__rail-y {
    display: none;
  }
}

@media (min-width: 768px) {
  .ch-item-header {
    margin-top: 5px;
    padding-right: 100px;
  }
}

.chat-order-date {
  position: relative;
  text-align: center;
  margin: 15px 0;
  font-size: 13px;
  color: #595959;
}
@media (max-width: 767px) {
  .chat-order-date {
    margin: 10px 0;
  }
}

.ch-item {
  position: relative;
  border-radius: 4px;
  padding: 20px;
  overflow: hidden;
  margin: 10px 0;
}

.ch-item-self {
  background-color: #F1F9FF;
}
@media (min-width: 992px) {
  .ch-item-self {
    margin-left: 200px;
    margin-right: 27px;
  }
}
@media (max-width: 991px) {
  .ch-item-self {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .ch-item-self {
    border-radius: 4px 0 0 4px;
  }
}

.ch-item-third {
  background-color: #FFFBEB;
}

.ch-item-avater {
  min-width: 40px;
  max-width: 40px;
  font-size: 0;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .ch-item-avater {
    display: none;
  }
}
.ch-item-avater img {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .ch-item-r {
    width: 100%;
    padding-right: 25px;
  }
}

.ch-item-others,
.ch-item-third {
  background-color: #F4F4F4;
}
@media (max-width: 767px) {
  .ch-item-others,
  .ch-item-third {
    border-radius: 0 4px 4px 0;
    margin-right: 20px;
  }
}
@media (min-width: 992px) {
  .ch-item-others,
  .ch-item-third {
    margin-right: 200px;
  }
}

.ch-item-badge {
  display: inline-block;
}
@media (min-width: 768px) {
  .ch-item-badge {
    position: absolute;
    top: 15px;
    right: 15px;
  }
}
@media (max-width: 767px) {
  .ch-item-badge {
    margin-bottom: 10px;
  }
}
.ch-item-badge .badge {
  background-color: white;
}
@media (max-width: 767px) {
  .ch-item-badge .ico {
    margin-right: 0 !important;
    position: absolute;
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 767px) {
  .ch-chat-page {
    margin-bottom: -50px;
  }
}

.ch-page-mp .c-circle-loader {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 767px) {
  body.is-page-no-header-mob .h-header,
  body.is-page-no-header-mob .l-page-head,
  body.is-page-no-header-mob .h-header-border,
  body.is-page-no-header-mob .h-header-top-box {
    display: none;
  }
}

.ch-header {
  background-color: white;
  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;
  border-bottom: 1px solid #E5E5E5;
}
@media (min-width: 768px) {
  .ch-header {
    padding: 20px 0;
  }
}
@media (max-width: 767px) {
  .ch-header {
    padding: 10px;
    top: 0;
    right: 0;
    left: 0;
    position: sticky;
    z-index: 10;
    border-bottom: 1px solid #E5E5E5;
  }
}
@media (max-width: 767px) {
  .ch-header .c-title.fs-16 {
    font-size: 14px !important;
    line-height: 20px !important;
  }
}

.ch-header-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .ch-header-user {
    max-width: 63%;
  }
}

.ch-header-user-ava {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .ch-header-user-ava {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .ch-header-user-ava {
    margin-right: 10px;
  }
}
.ch-header-user-ava img {
  border-radius: 50%;
}
@media (min-width: 768px) {
  .ch-header-user-ava img {
    width: 53px;
    height: 53px;
  }
}
@media (max-width: 767px) {
  .ch-header-user-ava img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .ch-header-user-ava .c-status-wrap {
    top: -4px;
    left: -4px;
  }
}

.ch-window {
  position: relative;
}
@media (min-width: 992px) {
  .ch-window {
    max-height: 500px;
  }
}
@media (min-height: 900px) {
  .ch-window {
    max-height: 700px;
  }
}
@media (max-width: 767px) {
  .ch-window .ch-item-r {
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .ch-window:not(.ps) {
    overflow: hidden !important;
  }
}

@media (max-width: 767px) {
  .ch-back {
    padding: 10px;
  }
}
.ch-back .ico {
  color: #0096C7;
}

.ch-folder-dropdown .dropdown-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .ch-folder-dropdown .dropdown-toggle {
    padding: 10px;
  }
}
.ch-folder-dropdown .dropdown-toggle .c-drop-arrow {
  margin-left: 10px;
}
.ch-folder-dropdown span {
  line-height: 1;
}
.ch-folder-dropdown .dropdown-menu {
  margin-top: 5px;
}

.ch-ellipsis-ico {
  font-size: 18px;
  color: #999999;
}

.ch-compact-attach-link .ico {
  font-size: 18px;
  color: #999999;
  margin-right: 0;
}
.ch-compact-attach-link:hover .ico {
  color: #0096C7;
}

.ch-attach-filename {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 10;
  max-width: 200px;
  white-space: nowrap;
}
.ch-attach-filename small {
  display: none;
}
@media (max-width: 767px) {
  .ch-attach-filename span {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.ch-compact-send-btn {
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background-color: transparent !important;
  margin-left: 10px;
}
.ch-compact-send-btn:disabled .ico path {
  fill: #999999 !important;
}
@media (max-width: 767px) {
  .ch-compact-send-btn {
    width: auto !important;
    height: auto;
  }
  .ch-compact-send-btn:hover {
    background-color: transparent !important;
  }
}

.ch-compact-attach-link,
.ch-compact-send-btn {
  padding: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.ch-compact-ico path {
  fill: #0096C7;
}

@media (min-width: 768px) {
  .ch-footer {
    padding: 20px;
    background: #F4F4F4;
    position: relative;
    border-radius: 5px;
  }
}
@media (max-width: 767px) {
  .ch-footer {
    background-color: white;
    z-index: 10;
    bottom: 0;
    left: 0;
    right: 0;
    position: sticky;
    padding: 15px 20px;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
  }
}
@media (max-width: 767px) {
  .ch-footer.is-active textarea {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .ch-footer.is-active .ch-attach-filename {
    margin-top: -20px;
  }
}
.ch-footer textarea {
  min-height: inherit;
  resize: none;
}
@media (min-width: 768px) {
  .ch-footer textarea {
    height: 44px;
    padding: 10px 100px 10px 15px;
  }
}
@media (max-width: 767px) {
  .ch-footer textarea {
    border-radius: 0;
    border: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    padding: 0;
    height: 24px;
    max-height: 154px;
  }
}

.ch-footer-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
}
@media (min-width: 768px) {
  .ch-footer-actions {
    right: 5px;
    bottom: 2px;
  }
}
@media (max-width: 767px) {
  .ch-footer-actions {
    bottom: -7px;
    right: -10px;
  }
}
.ch-footer-actions .c-attach-link,
.ch-footer-actions .c-attach-link + input {
  max-width: 150px;
}

.pagination-box {
  position: relative;
}
.pagination-box:empty {
  display: none;
}
.pagination-box .btn {
  position: absolute;
  right: 0;
  top: 5px;
  height: 40px;
  line-height: 40px !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (max-width: 991px) {
  .pagination-box .btn {
    position: static;
    margin-top: 20px;
    text-align: center;
  }
}
.pagination-box .btn .ico {
  min-width: 18px;
  min-height: 18px;
}

@media (min-width: 992px) {
  .pagination-box-mobile-arrows {
    display: none;
  }
}
@media (max-width: 991px) {
  .pagination-box-mobile-arrows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: -10px;
    margin-right: -10px;
  }
  .pagination-box-mobile-arrows .page-item {
    width: 50%;
    margin: 0 10px;
    min-width: 0;
  }
  .pagination-box-mobile-arrows .page-item.prev .page-link {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .pagination-box-mobile-arrows .page-item.next .page-link {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .pagination-box-mobile-arrows .page-item.next .page-link:after {
    left: 0;
    right: auto;
  }
}

.pagination-box-compact .pagination {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
@media (max-width: 991px) {
  .pagination {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    gap: 8px;
  }
}
.pagination .page-item {
  background: white;
  border: none !important;
}
.pagination .page-item.active .page-link {
  background-color: var(--primary-base-color);
  border-color: var(--primary-base-color);
}
.pagination .page-item:not(.pagination-arrow):hover .page-link {
  color: white;
}
.pagination .page-link,
.pagination .pagination-arrow .page-link {
  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;
  color: #49525a;
  border-radius: 4px;
  min-width: 40px;
  min-height: 40px;
  border: 1px solid #E5E5E5;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.pagination .page-link:hover,
.pagination .pagination-arrow .page-link:hover {
  border-color: transparent;
  background-color: var(--primary-base-color);
}

.pagination-arrow.prev .ico {
  margin-right: 8px;
}
.pagination-arrow.next .ico {
  margin-left: 8px;
}
.pagination-arrow .page-link {
  padding: 10px 15px !important;
  border-radius: 5px !important;
  color: var(--text-color);
}
@media (max-width: 991px) {
  .pagination-arrow .page-link {
    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;
  }
}
.pagination-arrow .page-link.disabled .ico {
  color: #999999;
  color: rgba(var(--links-color));
}
.pagination-arrow .page-link:hover {
  border-color: #E5E5E5 !important;
  background-color: transparent !important;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  color: black !important;
}
.pagination-arrow .ico {
  font-size: 14px;
  color: var(--primary-base-color);
}

.b-breadcrumbs {
  padding-bottom: 5px;
  position: relative;
  overflow: hidden;
}
.b-breadcrumbs::after {
  content: "";
  display: block;
  width: 16px;
  min-height: 23px;
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #FFFFFF), color-stop(133.33%, rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, #FFFFFF 50%, rgba(255, 255, 255, 0) 133.33%);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 1px;
  z-index: 10;
}

@media (max-width: 575px) {
  .b-breadcrumbs-scroll {
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .b-breadcrumbs-scroll::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
  }
}

.b-breadcrumbs-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  white-space: nowrap;
}
.b-breadcrumbs-in li {
  position: relative;
  display: inline-block;
  font-size: 14px;
}
.b-breadcrumbs-in li:last-child a:after {
  display: none;
}
.b-breadcrumbs-in li span {
  color: rgba(var(--links-color));
}
.b-breadcrumbs-in li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.b-breadcrumbs-in li a span {
  color: var(--primary-base-color);
}
.b-breadcrumbs-in li a:hover span, .b-breadcrumbs-in li a:focus span {
  text-decoration: underline;
}
.b-breadcrumbs-in li a:after {
  content: "";
  background-color: var(--primary-base-color);
  border-radius: 50%;
  display: inline-block;
  width: 5px;
  height: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1/1;
}

.modal {
  z-index: 10020;
  overflow: auto;
}
@media (max-width: 767px) {
  .modal {
    padding-right: 0 !important;
  }
}
.modal.modal-vertical-top .modal-dialog {
  margin-top: 30px;
  margin-bottom: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: auto;
}
@media (max-width: 767px) {
  .modal .modal-dialog.modal-dialog-centered {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .modal .modal-dialog.modal-dialog-centered .modal-content {
    margin-top: auto;
  }
}
.modal .close {
  font-size: 31px;
  font-weight: 200;
  position: absolute;
  z-index: 10;
  color: var(--text-color);
  right: 10px;
  top: 9px;
  opacity: 1 !important;
}
@media (max-width: 767px) {
  .modal .close {
    top: 17px;
    right: 20px;
  }
}
.modal .close:hover {
  color: #000;
}
.modal .close:hover span {
  opacity: 1;
}
.modal .close span {
  position: relative;
  z-index: 10;
  line-height: 17px;
  display: inherit;
  opacity: 0.6;
}
@media (min-width: 768px) {
  .modal .close:after {
    content: "";
    position: absolute;
    background: #F4F4F4;
    display: block;
    width: 95px;
    height: 59px;
    top: -30px;
    right: -45px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@media (max-width: 767px) {
  .modal-bottom-on-mob .modal-dialog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin: 0 auto;
  }
  .modal-bottom-on-mob .modal-dialog .vw-bottom-mob-actions {
    padding: 25px 0 0 0;
  }
  .modal-bottom-on-mob .modal-dialog .vw-bottom-mob-actions .btn-simple {
    background-color: #F4F4F4;
    border-color: transparent;
  }
}
@media (max-width: 767px) {
  .modal-bottom-on-mob .modal-dialog-centered {
    min-height: 100%;
  }
}
@media (max-width: 767px) {
  .modal-bottom-on-mob .close {
    display: none;
  }
}

@media (max-width: 767px) {
  .modal-contacts-mob-offset .modal-content {
    margin-bottom: 43px;
  }
}

@media (max-width: 767px) {
  .modal-dialog-full-mobile {
    height: 100%;
  }
  .modal-dialog-full-mobile .modal-content {
    overflow: auto;
  }
  .modal-dialog-full-mobile .modal-content,
  .modal-dialog-full-mobile .modal-with-aside-box {
    height: 100%;
  }
  .modal-dialog-full-mobile .modal-aside-info {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

@media (max-width: 767px) {
  .modal-dialog.modal-dialog-centered-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 767px) {
  .modal-dialog.modal-dialog-centered-mob .modal-body {
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  .modal-dialog.modal-dialog-centered-mob .modal-content {
    margin-top: 0 !important;
  }
}

.modal-title {
  color: var(--text-color);
  font-weight: bold;
  font-size: 24px;
  line-height: 33px;
  margin-bottom: 17px;
}
@media (max-width: 767px) {
  .modal-title {
    font-size: 16px;
    line-height: 24px;
    margin: -20px -20px 15px -20px;
    padding: 15px 49px 15px 20px;
    background-color: #F4F4F4;
  }
}
.modal-title a {
  position: relative;
}
@media (max-width: 767px) {
  .modal-title a {
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    display: block;
    padding-right: 15px;
  }
  .modal-title a::after {
    content: "";
    display: block;
    width: 16px;
    min-height: 23px;
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #FFFFFF), color-stop(133.33%, rgba(255, 255, 255, 0)));
    background: linear-gradient(270deg, #FFFFFF 50%, rgba(255, 255, 255, 0) 133.33%);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 1px;
    z-index: 10;
  }
  .modal-title a:after {
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #F4F4F4), color-stop(133.33%, rgba(255, 255, 255, 0)));
    background: linear-gradient(270deg, #F4F4F4 50%, rgba(255, 255, 255, 0) 133.33%);
  }
}
@media (min-width: 768px) {
  .modal-title + .modal-title-sub {
    margin-top: -17px;
  }
}

.modal-title-sub {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .modal-title-sub {
    padding-right: 30px;
  }
}

.modal-sub-text {
  margin-bottom: 22px;
}

.modal-dialog {
  border-radius: 4px;
}
@media (max-width: 767px) {
  .modal-dialog {
    display: block;
    margin: 0;
    border-radius: 0;
  }
}
@media (min-width: 768px) {
  .modal-dialog {
    max-width: 700px;
  }
}

@media (min-width: 768px) {
  .modal-dialog-xs.modal-dialog {
    max-width: 450px;
  }
}

@media (min-width: 768px) {
  .modal-dialog-md.modal-dialog {
    max-width: 610px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .modal-dialog-lg {
    max-width: 700px;
  }
}
@media (min-width: 992px) {
  .modal-dialog-lg {
    max-width: 960px;
  }
}

@media (min-width: 768px) {
  .modal-body-min-height {
    min-height: 476px;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.modal-with-form .modal-dialog {
  max-width: 586px;
}

.modal-with-aside .close:after {
  display: none;
}
@media (min-width: 992px) {
  .modal-with-aside .modal-dialog {
    max-width: 900px;
  }
}

.modal-with-aside-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .modal-with-aside-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.modal-backdrop {
  display: none;
  z-index: 10019;
}
.modal-backdrop.show {
  display: block;
}

.modal-header {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-color: #EBEBEB;
  padding-right: 40px;
}

.modal-body {
  padding: 21px 40px 35px 40px;
}
@media (max-width: 767px) {
  .modal-body {
    padding: 20px;
    max-width: 100%;
  }
}

.modal-aside {
  background: #EAF9F9;
}
@media (min-width: 768px) {
  .modal-aside {
    width: 250px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 104px 27px 64px 20px;
  }
}
@media (max-width: 767px) {
  .modal-aside {
    max-width: inherit;
    padding: 24px 20px;
  }
}

.modal-aside-sm-offset {
  padding-top: 44px;
}

.modal-aside-info {
  position: relative;
}
.modal-aside-info .modal-aside-title,
.modal-aside-info .modal-aside-text {
  position: relative;
  z-index: 1;
}
.modal-aside-info:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 216px;
  height: 216px;
  max-height: 100%;
  background-image: url(../css/images/info-big-icon.svg?212e7f096232da6be566cf268c85d811);
  background-repeat: no-repeat;
  /*rtl:ignore*/
  background-position: 100% 10px;
}
.modal-aside-info > * {
  position: relative;
  z-index: 1;
}

.modal-aside-text p + p {
  margin-top: 15px;
}

.modal-aside-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 10px;
}

.modal-actions {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .modal-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 768px) {
  .modal-actions .c-google-recaptcha {
    margin-top: 0 !important;
  }
}

.modal-actions-l {
  max-width: 100%;
}
@media (max-width: 767px) {
  .modal-actions-l {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

@media (min-width: 768px) {
  .modal-actions-r {
    margin-left: auto;
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .modal-actions-r {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .modal-actions-r .btn-success {
    margin: 0 auto;
    display: block;
  }
}

.modal-content {
  overflow: hidden;
  border-color: #E5E5E5;
}
@media (max-width: 767px) {
  .modal-content {
    border-radius: 0;
    border: none;
  }
}

.modal-file-types {
  font-size: 13px;
  line-height: 16px;
  color: #595959;
  margin-top: 10px;
  max-width: 190px;
}

.cb-brand-modal img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .modal-map {
    margin: 0 -40px -35px -40px;
  }
}
@media (max-width: 767px) {
  .modal-map {
    margin: 0 -20px -5px -20px;
  }
}
.modal-map img {
  width: 100%;
  display: block;
}

.modal-body-fill-textarea {
  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-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 100%;
}
.modal-body-fill-textarea textarea {
  height: 100%;
}

.modal-fill-column-tab {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modal-fill-column-tab textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

/*tooltip inside modal fix*/
.modal .tooltip {
  z-index: 10030;
}
.modal .dropdown-menu {
  z-index: 10025;
}
.modal .dropdown-menu.show {
  z-index: 10024;
}

/* socials */
.c-social-links-wrap {
  margin: 0 -5px;
}

.c-social-link {
  width: 40px;
  height: 40px;
  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: 18px;
  border-radius: 5px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.c-social-link .ico,
.c-social-link .ico path {
  width: 18px;
  max-width: 18px;
  max-height: 18px;
}
.c-social-link img {
  min-width: 100%;
  min-height: 100%;
}
.c-social-link:hover {
  -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
          transform: scale(1.15);
}

.usr-settings-box-content .c-social-link:not(.active) {
  opacity: 0.5;
}

.c-social-link-fb {
  background-color: #284B86;
}
.c-social-link-fb path {
  fill: white;
}

.c-social-link-tw {
  background-color: #0f1419;
}
.c-social-link-tw path {
  fill: white;
}

.c-social-link-vk {
  background-color: #376590;
}
.c-social-link-vk path {
  fill: white;
}

.c-social-link-telegram {
  background-color: #25a4e4;
}
.c-social-link-telegram path {
  fill: white;
}

.c-social-link-apple {
  background-color: white;
  border: 1px solid #D4D4D4;
}

.c-social-link-od {
  background-color: #FD6E21;
}
.c-social-link-od path {
  fill: white;
}

.c-social-link-mm {
  background-color: #286CF1;
}

.c-social-link-im {
  background-color: #E1306C;
}
.c-social-link-im path {
  fill: white;
}

.c-social-link-ya {
  background-color: #ED0C19;
}
.c-social-link-ya path {
  fill: white;
}

.c-social-link-twitter {
  background-color: #1DA1F2;
}

.c-social-link-yahoo {
  background-color: #6441d1;
}
.c-social-link-yahoo path {
  fill: white;
}

.c-social-link-aol {
  background-color: #39f;
}
.c-social-link-aol path {
  fill: white;
}

.c-social-link-live {
  background-color: #0067b8;
}
.c-social-link-live path {
  fill: white;
}

.c-social-link-linkedin {
  background-color: #0e72a3;
}
.c-social-link-linkedin path {
  fill: white;
}

.c-social-link-foursquare {
  background-color: #ed4b73;
}
.c-social-link-foursquare path {
  fill: white;
}

.c-social-link-gg {
  background-color: #00CCDB;
  padding: 1px;
}
.c-social-link-gg .ico {
  max-height: inherit;
  min-height: 100% !important;
  max-width: 100% !important;
  min-width: 100%;
  background: white;
  border-radius: 5px;
  padding: 5px;
}

/* Banners */
.l-banner.l-banner-top {
  margin-top: 0;
  margin-bottom: 0;
  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-color: white;
}

/*banner in list*/
.it-list-item .l-banner-link {
  display: block;
}
.it-list-item .l-banner-link img {
  margin: 0 auto;
  display: block;
}

.l-banner-content {
  max-width: 100%;
}

.l-banner {
  margin: 20px 0;
}
.l-banner .owl-dots {
  position: absolute;
  bottom: 27px;
  left: 0;
  right: 0;
}
.l-banner .owl-dots:not(.active) {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .l-banner .owl-dots {
    bottom: 10px;
  }
}

.in-last-block:empty {
  display: none;
}
.in-last-block .l-banner {
  margin-bottom: 0;
}

.ib-banner,
.l-banner-h,
.l-banner-v {
  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;
  gap: 20px;
}

.l-banner-v a {
  display: block;
}
.l-banner-v a img {
  border-radius: 5px;
}

@media (min-width: 768px) {
  .l-banner-v-sticky {
    position: sticky;
    top: 20px;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .fc-popup {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 11;
    background-color: white;
    border: 1px solid #EBEBEB;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-top: 1px;
  }
}
@media (min-width: 768px) {
  .fc-popup.fc-popup-st-2 .fc-item:last-child {
    margin-bottom: 10px;
  }
}
.fc-popup.fc-popup-st-2 .fc-item-r {
  margin-left: 37px;
}
@media (max-width: 767px) {
  .fc-popup.fc-popup-st-2 .fc-item-r {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .fc-popup.fc-popup-st-2 .fc-popup-in {
    padding-top: 12px;
  }
}
@media (min-width: 768px) {
  .fc-popup .wb-f-panel-header {
    display: none;
  }
}
.fc-popup .wb-f-back,
.fc-popup .wb-f-close {
  z-index: 1;
}

.fc-popup-head {
  position: relative;
}
@media (min-width: 768px) {
  .fc-popup-head {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 20px 5px 20px;
    z-index: 10;
  }
  .fc-popup-head:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block;
    height: 18px;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 100%);
  }
}

.fc-popup-head-back {
  margin-right: 20px;
}
@media (min-width: 768px) {
  .fc-popup-head-back {
    display: block !important;
    line-height: 1;
  }
}
@media (min-width: 768px) {
  .fc-popup-head-back .ico {
    color: var(--primary-base-color);
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .fc-popup-head-back .ico {
    color: #999999;
  }
}

.fc-popup-title {
  font-weight: bold;
}

@media (min-width: 768px) {
  .fc-popup-in {
    position: relative;
    max-height: 445px;
    overflow: hidden;
  }
}
.fc-popup-in .ps__rail-y {
  background-color: transparent !important;
  right: 0 !important;
  margin: 5px 0;
  z-index: 10;
}
@media (max-width: 767px) {
  .fc-popup-in .ps__rail-y {
    display: none !important;
  }
}

.fc-popup-mob-search-res {
  margin-top: 5px;
}
@media (max-width: 767px) {
  .fc-popup-mob-search-res .fc-item-r {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.fc-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  position: relative;
}
.fc-item:hover {
  background: #F8F8F8;
}
.fc-item:hover:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #F8F8F8), color-stop(133.33%, rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, #F8F8F8 50%, rgba(255, 255, 255, 0) 133.33%);
}
.fc-item:hover .fc-item-name {
  color: rgba(var(--links-color));
}
.fc-item:last-of-type .fc-item-r {
  border-bottom: none;
}
.fc-item.c-shadow-overflow:after {
  top: 2px;
  bottom: 2px;
}

.fc-item-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #E5E5E5;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 10px 0;
  min-width: 0;
  margin-left: 37px;
}
@media (max-width: 767px) {
  .fc-item-r {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.fc-item-r.flex-column {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.fc-item-name {
  color: var(--text-color);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fc-item-pic {
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 0;
}

.fc-item .fc-item-pic {
  position: absolute;
  left: 20px;
  top: 13px;
}

.fc-item-big-pic rect, .fc-item-big-pic path, .fc-item-big-pic circle, .fc-item-big-pic line,
.fl-search-cat-pic rect,
.fl-search-cat-pic path,
.fl-search-cat-pic circle,
.fl-search-cat-pic line,
.fc-item-pic rect,
.fc-item-pic path,
.fc-item-pic circle,
.fc-item-pic line {
  stroke: var(--icons-color);
}

/*mobile suggests*/
@media (max-width: 767px) {
  .fc-quick-suggests {
    max-width: 100%;
    overflow-x: auto;
    padding: 5px 10px;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    height: 80px;
  }
  .fc-quick-suggests .fc-item-r {
    border-bottom: 0;
    padding: 15px 0;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .fc-quick-suggests .fc-item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border: 1px solid #E5E5E5;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    min-width: 265px;
    max-width: 265px;
    height: 100%;
  }
  .fc-quick-suggests .fc-item + .fc-item {
    margin-left: 10px;
  }
}
@media (max-width: 767px) {
  .fc-quick-suggests::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
  }
}

/*mobile search inside popup*/
@media (max-width: 767px) {
  .fc-cat-select-box.fc-mob-search-active .wb-f-panel-title,
  .fc-cat-select-box.fc-mob-search-active .wb-f-search {
    display: none;
  }
}
.fc-cat-select-box.fc-mob-search-active .fc-quick-search-mob {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fc-cat-input {
  position: relative;
}
.fc-cat-input .form-control {
  padding-right: 40px;
}
.fc-cat-input .form-control.j-cat-select-input {
  background-color: #fff !important;
  cursor: pointer;
}

.fc-cat-input-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  line-height: 1;
}

.fc-cat-selected {
  padding: 12px 15px;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.fc-cat-selected + .fc-cat-selected {
  margin-top: 10px;
}

.fc-cat-selected-with-close {
  position: relative;
}
.fc-cat-selected-with-close .ico-cancel {
  position: absolute;
  top: 15px;
  right: 20px;
  background-color: white;
}
.fc-cat-selected-with-close .fc-cat-selected-title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: calc(100% - 47px);
  overflow: hidden;
}
.fc-cat-selected-with-close .fc-cat-selected-title:before {
  display: none;
}

.fc-cat-selected-title {
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.fc-cat-selected-title:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: white;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
}
.fc-cat-selected-title .c-dot {
  height: 5px;
  width: 5px;
  background-color: #999;
}

.fc-cat-selected-ico {
  max-width: 20px;
  height: 20px;
  margin-right: 10px;
}

.bnf-index-box {
  padding-bottom: 40px !important;
}

.bnf-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  gap: 50px;
}

.bnf-item {
  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;
  width: 267px;
}
.bnf-item .c-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: var(--text-color);
  text-align: center;
  margin-top: 20px;
}

.bnf-img {
  width: 96px;
  height: 96px;
}

.bnf-btn {
  padding-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bnf-btn .btn {
  font-size: 16px;
  padding: 12px 20px;
}

.c-social-box {
  background: #49525A;
  text-align: center;
  color: white;
  margin: 0 !important;
}
@media (min-width: 768px) {
  .c-social-box {
    padding: 50px 0 !important;
  }
}
@media (max-width: 767px) {
  .c-social-box {
    padding: 25px 0 !important;
  }
}
.c-social-box .in-box-title {
  color: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: normal;
}

.c-social-box-sub-title {
  opacity: 0.8;
}

.c-social-box-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  max-width: 750px;
  margin: 20px auto 0 auto;
}
@media (max-width: 767px) {
  .c-social-box-items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 300px;
  }
}

.c-social-box-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .c-social-box-item {
    width: calc(50% - 30px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-social-box-item:hover .c-social-box-ico {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.c-social-box-ico {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background-color: var(--primary-base-color);
  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;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .c-social-box-ico {
    width: 56px;
    height: 56px;
  }
}
@media (max-width: 767px) {
  .c-social-box-ico {
    width: 46px;
    height: 46px;
  }
}

.c-social-box-num {
  font-size: 16px;
  line-height: 24px;
  color: white;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .c-social-box-num {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .c-social-box-num {
    margin-top: 15px;
  }
}

.in-tab-main-cat-txt,
.c-sub-grid-txt {
  color: var(--text-color, #333);
  max-width: 100%;
}
@media (min-width: 768px) {
  .in-tab-main-cat-txt,
  .c-sub-grid-txt {
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
  }
}
.in-tab-main-cat-txt span,
.c-sub-grid-txt span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-sub-grid-txt {
  padding-top: 10px;
}

.c-article .ib-links-box {
  border-bottom: 1px solid #E8EDEF;
}
.c-article .ib:first-child .ib-links-box {
  padding-top: 0;
}
.c-article .ib:last-child .ib-links-box {
  border-bottom: 0;
}

.ib-links-box {
  padding: 30px 0;
}
.ib-links-box .in-box-head.c-shadow-overflow:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #F4F4F4), color-stop(133.33%, rgba(255, 255, 255, 0))) !important;
  background: linear-gradient(270deg, #F4F4F4 50%, rgba(255, 255, 255, 0) 133.33%) !important;
}

.ib-links-list {
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media (max-width: 767px) {
  .ib-links-list {
    -webkit-column-count: 1 !important;
       -moz-column-count: 1 !important;
            column-count: 1 !important;
    margin-bottom: -15px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ib-links-list-desk-1-columns {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .ib-links-list-desk-1-columns {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .ib-links-list-desk-1-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media (min-width: 1200px) {
  .ib-links-list-desk-1-columns {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ib-links-list-desk-2-columns {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .ib-links-list-desk-2-columns {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .ib-links-list-desk-2-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media (min-width: 1200px) {
  .ib-links-list-desk-2-columns {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ib-links-list-desk-3-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .ib-links-list-desk-3-columns {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .ib-links-list-desk-3-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media (min-width: 1200px) {
  .ib-links-list-desk-3-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ib-links-list-desk-4-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .ib-links-list-desk-4-columns {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .ib-links-list-desk-4-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media (min-width: 1200px) {
  .ib-links-list-desk-4-columns {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ib-links-list-desk-5-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .ib-links-list-desk-5-columns {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .ib-links-list-desk-5-columns {
    -webkit-column-count: 5;
       -moz-column-count: 5;
            column-count: 5;
  }
}
@media (min-width: 1200px) {
  .ib-links-list-desk-5-columns {
    -webkit-column-count: 5;
       -moz-column-count: 5;
            column-count: 5;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ib-links-list-desk-6-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .ib-links-list-desk-6-columns {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .ib-links-list-desk-6-columns {
    -webkit-column-count: 6;
       -moz-column-count: 6;
            column-count: 6;
  }
}
@media (min-width: 1200px) {
  .ib-links-list-desk-6-columns {
    -webkit-column-count: 6;
       -moz-column-count: 6;
            column-count: 6;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ib-links-list-desk-7-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .ib-links-list-desk-7-columns {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .ib-links-list-desk-7-columns {
    -webkit-column-count: 7;
       -moz-column-count: 7;
            column-count: 7;
  }
}
@media (min-width: 1200px) {
  .ib-links-list-desk-7-columns {
    -webkit-column-count: 7;
       -moz-column-count: 7;
            column-count: 7;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ib-links-list-desk-8-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .ib-links-list-desk-8-columns {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .ib-links-list-desk-8-columns {
    -webkit-column-count: 8;
       -moz-column-count: 8;
            column-count: 8;
  }
}
@media (min-width: 1200px) {
  .ib-links-list-desk-8-columns {
    -webkit-column-count: 8;
       -moz-column-count: 8;
            column-count: 8;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ib-links-list-desk-9-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .ib-links-list-desk-9-columns {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .ib-links-list-desk-9-columns {
    -webkit-column-count: 8;
       -moz-column-count: 8;
            column-count: 8;
  }
}
@media (min-width: 1200px) {
  .ib-links-list-desk-9-columns {
    -webkit-column-count: 9;
       -moz-column-count: 9;
            column-count: 9;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ib-links-list-desk-10-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .ib-links-list-desk-10-columns {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .ib-links-list-desk-10-columns {
    -webkit-column-count: 8;
       -moz-column-count: 8;
            column-count: 8;
  }
}
@media (min-width: 1200px) {
  .ib-links-list-desk-10-columns {
    -webkit-column-count: 10;
       -moz-column-count: 10;
            column-count: 10;
  }
}

@media (max-width: 767px) {
  .ib-links-list-mob-1-columns {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}

@media (max-width: 767px) {
  .ib-links-list-mob-2-columns {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

.ib-links-list-txt {
  text-overflow: ellipsis;
  overflow: hidden;
}

.ib-links-list-link {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  white-space: nowrap;
}

.ib-links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media (min-width: 768px) {
  .ib-links-grid {
    gap: 40px 10px;
  }
}
@media (max-width: 767px) {
  .ib-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}
@media (max-width: 767px) {
  .ib-links-grid .in-tab-ico-box {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .ib-links-grid .in-tab-sub-cat-link {
    border-top: 0 !important;
    gap: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .ib-links-grid-desk-1-columns {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 768px) {
  .ib-links-grid-desk-2-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ib-links-grid-desk-3-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .ib-links-grid-desk-3-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .ib-links-grid-desk-4-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .ib-links-grid-desk-4-columns {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ib-links-grid-desk-5-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .ib-links-grid-desk-5-columns {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1200px) {
  .ib-links-grid-desk-5-columns {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ib-links-grid-desk-6-columns {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .ib-links-grid-desk-6-columns {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1200px) {
  .ib-links-grid-desk-6-columns {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .ib-links-grid-desk-7-columns {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .ib-links-grid-desk-7-columns {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1200px) {
  .ib-links-grid-desk-7-columns {
    grid-template-columns: repeat(7, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .ib-links-grid-desk-8-columns {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .ib-links-grid-desk-8-columns {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (min-width: 1200px) {
  .ib-links-grid-desk-8-columns {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .ib-links-grid-desk-9-columns {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .ib-links-grid-desk-9-columns {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (min-width: 1200px) {
  .ib-links-grid-desk-9-columns {
    grid-template-columns: repeat(9, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .ib-links-grid-desk-10-columns {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .ib-links-grid-desk-10-columns {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .ib-links-grid-desk-10-columns {
    grid-template-columns: repeat(9, 1fr);
  }
}
@media (min-width: 1200px) {
  .ib-links-grid-desk-10-columns {
    grid-template-columns: repeat(10, 1fr);
  }
}

@media (max-width: 767px) {
  .ib-links-grid-mob-1-columns {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .ib-links-grid-mob-1-columns .in-tab-sub-cat-link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}
.ib-links-grid-mob-1-columns .c-sub-grid-txt {
  padding-top: 0;
}

@media (max-width: 767px) {
  .ib-links-grid-mob-2-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .ib-links-grid-mob-2-columns .in-tab-ico-box {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .ib-links-grid-mob-2-columns .c-sub-grid-txt {
    padding-top: 5px;
  }
}

@media (min-width: 768px) {
  .ib-tabs-box {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  .ib-tabs-box {
    padding: 44px 0;
  }
}
.ib-tabs-box.ib-tabs-box-has-bg {
  background-color: rgb(var(--primary-base-color-rgba), 0.1);
}
.ib-tabs-box.ib-tabs-box-has-bg .ib-tabs-background-color {
  border: none;
}
.ib-tabs-box.ib-tabs-box-has-bg .in-box-head:after {
  display: none;
}
@media (min-width: 768px) {
  .ib-tabs-box .in-box-head {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .ib-tabs-box .in-box-head {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .ib-tabs-links-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .ib-tabs-links-wrapper .c-mobile-scrolling {
    padding-right: 20px;
  }
}

.ib-tabs-bottom-border {
  border-bottom: 1px solid #E5E5E5;
  padding-right: 0;
}
.ib-tabs-bottom-border .ib-tabs-link-nav {
  padding: 0 30px 15px 30px;
  border-bottom: 2px solid transparent;
  position: relative;
}
.ib-tabs-bottom-border .ib-tabs-link-nav:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--primary-base-color);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
}
.ib-tabs-bottom-border .ib-tabs-link-nav.active {
  color: var(--primary-base-color) !important;
}
.ib-tabs-bottom-border .ib-tabs-link-nav.active:before {
  display: block;
  bottom: -2px;
}
.ib-tabs-background-color {
  border-radius: 53px;
  border: 1px solid #E8EDEF;
}
.ib-tabs-background-color .ib-tabs-link-item:first-child .ib-tabs-link-nav {
  border-radius: 53px 0 0 53px;
}
.ib-tabs-background-color .ib-tabs-link-item:last-child .ib-tabs-link-nav {
  border-radius: 0 53px 53px 0;
}
.ib-tabs-background-color .ib-tabs-link-item + .ib-tabs-link-item {
  border-left: 1px solid #E8EDEF;
}
.ib-tabs-background-color .ib-tabs-link-nav {
  background: white;
  height: 40px;
  padding: 0 30px;
}
.ib-tabs-background-color .ib-tabs-link-nav.active {
  color: white !important;
  background-color: var(--primary-base-color);
}

.ib-tabs-link-item {
  display: table-cell;
}
.ib-tabs-link-nav {
  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;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-color) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ib-tabs-link-nav:hover {
  color: rgba(var(--links-color)) !important;
}

@media (min-width: 768px) {
  .ib-tabs-content {
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .ib-tabs-content {
    padding-top: 30px;
  }
}
.ib-tabs-content .ib-links-box,
.ib-tabs-content .ib-links-grid {
  padding-top: 0;
  padding-bottom: 0;
}

.hvr-slider:after {
  content: "";
  display: table;
  clear: both;
}

.hvr-slider {
  position: relative;
}

.hvr-slider img {
  display: none;
}

.hvr-slider img:first-child {
  display: block;
}

.hvr-slider-wrap {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hvr-slider-wrap .hvr-slider-wrap-table {
  display: table;
  height: 100%;
  width: 100%;
}

.hvr-slider-wrap-table div {
  display: table-cell;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.btn-primary {
  background-color: var(--primary-base-color) !important;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.btn-primary:hover {
  background-color: rgba(var(--action-buttons-color)) !important;
}
.btn-primary:after {
  display: none !important;
}

.btn-transparent {
  background-color: transparent;
  color: white;
  border: 2px solid white !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-transparent:hover {
  background-color: white;
}

.btn-simple {
  color: var(--primary-base-color);
  border-color: var(--primary-base-color);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-simple:hover {
  background-color: #E6FCFA;
}

.btn-group .btn-simple.active {
  background-color: rgb(var(--primary-base-color-rgba), 0.1) !important;
  border-color: var(--primary-base-color) !important;
  color: var(--primary-base-color) !important;
}

.rp-btn-check {
  margin-bottom: 0;
}
.rp-btn-check input {
  position: absolute;
  display: none;
  color: #fff !important;
}
.rp-btn-check input:checked + .rp-btn-check-btn {
  border: 1px solid rgb(var(--primary-base-color-rgba), 0.3) !important;
  color: var(--primary-base-color) !important;
}

.rp-btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  gap: 10px;
}
@media (max-width: 991.55px) {
  .rp-btn-box {
    padding: 20px;
  }
}

.rp-btn-check-btn {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid transparent !important;
  -webkit-transition: none !important;
  transition: none !important;
  background-color: white !important;
}
.rp-btn-check-btn:hover {
  opacity: 1 !important;
}
@media (max-width: 991.55px) {
  .rp-btn-check-btn {
    border: 1px solid #E5E5E5 !important;
  }
}

.dropdown-menu > li > a .ico {
  color: #595959;
}

.dr-lang-dropdown-toggle {
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .dr-lang-dropdown-menu {
    margin-top: 16px;
  }
}

@media (max-width: 767px) {
  .c-form-creation .cp-tariffs-mobile-scrolling {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.c-form-box .loading:before {
  background-color: white;
}

.form-control {
  border: 1px solid #E5E5E5;
  border-radius: 2px;
}

@media (max-width: 767px) {
  .usr-dialogs.loading:before {
    left: -15px;
    right: -15px;
  }
}

.usr-dialogs-item,
.usr-chat-nav,
.usr-chat-box {
  background-color: white;
}

@media (max-width: 767px) {
  .usr-chat-box {
    -webkit-transform: translateY(46px);
        -ms-transform: translateY(46px);
            transform: translateY(46px);
    margin-top: -46px;
  }
}

@media (min-width: 768px) {
  .ch-page-mp {
    background: white;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    padding: 20px;
  }
}
@media (min-width: 768px) {
  .ch-page-mp .loading:before {
    background: white;
  }
}

@media (min-width: 768px) {
  .ch-header {
    padding: 0 0 20px 0;
  }
}

.ch-item-others, .ch-item-third {
  background-color: white;
}

.page-link {
  background-color: white;
}

.b-breadcrumbs-scroll {
  padding-left: 0;
}

.b-breadcrumbs {
  padding: 20px 0;
}
@media (max-width: 767px) {
  .b-breadcrumbs {
    padding: 15px 0 20px;
  }
}
@media (max-width: 575px) {
  .b-breadcrumbs .b-breadcrumbs-in {
    padding: 0;
  }
}
.b-breadcrumbs li:last-child .c-drop-arrow {
  display: none;
}
.b-breadcrumbs:after {
  display: none;
}
.b-breadcrumbs .c-drop-arrow {
  margin-top: -2px;
  -webkit-transform: translateX(10px) rotate(-90deg);
      -ms-transform: translateX(10px) rotate(-90deg);
          transform: translateX(10px) rotate(-90deg);
}
.b-breadcrumbs + .alert {
  margin-top: 0;
}
@media (max-width: 767px) {
  .b-breadcrumbs + .it-search-page {
    margin-top: 17px;
  }
}

@media (max-width: 575px) {
  .b-breadcrumbs-in {
    padding: 0 15px;
  }
}
.b-breadcrumbs-in li::before {
  display: none;
}

@media (max-width: 767px) {
  .b-breadcrumbs-mob {
    overflow: hidden;
  }
}

.rp-fl-index-box {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media (min-width: 768px) {
  .rp-fl-index-box {
    padding: 70px 0;
  }
}
@media (min-width: 992px) {
  .rp-fl-index-box {
    min-height: 450px;
  }
}
@media (max-width: 767px) {
  .rp-fl-index-box {
    padding: 65px 0 50px 0;
  }
}
.rp-fl-index-box:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  background-color: var(--welcome-bg-color);
}
.rp-fl-index-box .container {
  z-index: 10;
  position: relative;
}
@media (min-width: 768px) {
  .rp-fl-index-box .rp-fl-container {
    margin-top: 45px;
  }
}
@media (max-width: 767px) {
  .rp-fl-index-box .rp-fl-container {
    margin-top: 30px;
  }
}
.rp-fl-index-box .rp-more-filters-btn {
  display: none;
}
@media (max-width: 991px) {
  .rp-fl-index-box .rp-btn-show-map {
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .rp-fl-index-box + .i-categories-box-tiles, .rp-fl-index-box + * + .i-categories-box-tiles {
    margin-top: -75px;
  }
}
@media (min-width: 768px) {
  .rp-fl-index-box.rp-fl-index-box-no-bg {
    min-height: 300px;
  }
}
@media (max-width: 767px) {
  .rp-fl-index-box .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 991.55px) {
  body.is-filter-opened .rp-fl-index-box .container {
    z-index: 10020;
  }
}

@media (min-width: 768px) {
  .rp-fl-index-box-opacity-10.rp-fl-index-box-no-bg {
    min-height: inherit;
  }
}
@media (min-width: 768px) {
  .rp-fl-index-box-opacity-10.rp-fl-index-box-no-bg + .i-categories-box-tiles, .rp-fl-index-box-opacity-10.rp-fl-index-box-no-bg + * + .i-categories-box-tiles {
    margin-top: 0;
  }
}

.rp-fl-index-box-opacity-1:before {
  opacity: 0.1;
}

.rp-fl-index-box-opacity-2:before {
  opacity: 0.2;
}

.rp-fl-index-box-opacity-3:before {
  opacity: 0.3;
}

.rp-fl-index-box-opacity-4:before {
  opacity: 0.4;
}

.rp-fl-index-box-opacity-5:before {
  opacity: 0.5;
}

.rp-fl-index-box-opacity-6:before {
  opacity: 0.6;
}

.rp-fl-index-box-opacity-7:before {
  opacity: 0.7;
}

.rp-fl-index-box-opacity-8:before {
  opacity: 0.8;
}

.rp-fl-index-box-opacity-9:before {
  opacity: 0.9;
}

.rp-fl-index-box-opacity-10:before {
  opacity: 0;
}

@media (max-width: 991px) {
  .rp-fl-h {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .rp-fl-h .rp-btn-show-map {
    margin-top: 0;
  }
}

.rp-fl-index-title {
  color: white;
  font-weight: bold;
}
@media (min-width: 768px) {
  .rp-fl-index-title {
    font-size: 40px;
    line-height: 47px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .rp-fl-index-title {
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1200px) {
  .rp-fl-index-title {
    text-align: center;
  }
}

.rp-fl-index-sub-title {
  color: white;
}
@media (min-width: 768px) {
  .rp-fl-index-sub-title {
    font-size: 18px;
    line-height: 25px;
  }
}
@media (max-width: 767px) {
  .rp-fl-index-sub-title {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
}
@media (max-width: 1200px) {
  .rp-fl-index-sub-title {
    text-align: center;
  }
}

@media (min-width: 991.55px) {
  .rp-fl-index-fl-toggle-mob {
    display: none;
  }
}
@media (max-width: 991.55px) {
  .rp-fl-index-fl-toggle-mob {
    width: 100%;
    padding-top: 11px;
    padding-bottom: 11px;
  }
}

/*components*/
/*layout*/
.h-header {
  padding: 20px 0;
}
@media (min-width: 768px) {
  .h-header {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .h-header {
    padding: 0;
  }
}
@media (max-width: 576px) {
  .h-header .container {
    padding: 0;
  }
}

.h-header-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .h-header-in {
    -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;
    position: relative;
  }
}
@media (max-width: 767px) {
  .h-header-in .container {
    padding: 0;
  }
}

@media (max-width: 767px) {
  body.is-mob-nav-opened .h-header-r-actions,
  body.is-mob-nav-opened .l-banner.l-banner-top {
    z-index: 10020;
  }
}
@media (max-width: 767px) {
  body.is-mob-nav-opened .fl-search-container {
    position: static;
  }
}

.h-header-r-actions {
  margin-left: auto;
}
@media (max-width: 767px) {
  .h-header-r-actions {
    min-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 45px;
    padding: 0 15px;
  }
}
.h-header-r-actions .c-link-fav .ico {
  font-size: 18px;
}

.h-header-act {
  position: relative;
}
.h-header-act:hover {
  opacity: 0.7;
}
.h-header-act .c-count-dot {
  position: absolute;
}
@media (max-width: 767px) {
  .h-header-act .c-count-dot {
    top: 5px;
    right: 0;
  }
}
@media (min-width: 768px) {
  .h-header-act .c-count-dot {
    top: -5px;
    left: 12px;
  }
}

@media (min-width: 768px) {
  .h-header-m-nav-btn {
    display: none;
  }
}
@media (max-width: 767px) {
  .h-header-m-nav-btn {
    width: 55px;
    height: 45px;
    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;
    margin-left: -15px;
    margin-right: 5px;
    color: #fff;
  }
}
.h-header-m-nav-btn.open, .h-header-m-nav-btn:hover, .h-header-m-nav-btn:focus {
  color: rgba(var(--action-buttons-color)) !important;
}
.h-header-m-nav-btn svg {
  width: 25px;
  height: 25px;
}

.h-header-m-actions-r {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.h-header-r-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.h-header-r-menu .btn-add-item {
  display: none !important;
}
@media (max-width: 767px) {
  .h-header-r-menu {
    margin-left: auto;
    height: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}
@media (min-width: 768px) {
  .h-header-r-menu {
    padding-left: 20px;
  }
}
@media (min-width: 768px) {
  .h-header-r-menu .c-ico-link {
    margin-left: 20px;
  }
}
.h-header-r-menu .c-ico-link .ico {
  margin-right: 0;
  width: 20px;
  height: 20px;
}
@media (max-width: 767px) {
  .h-header-r-menu .in-user-open-act,
  .h-header-r-menu .c-ico-link {
    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;
    height: 45px;
  }
}

.in-user-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .in-user-menu .c-ico-link {
    margin-right: 20px;
  }
}

.in-user-dropdown {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .in-user-dropdown {
    margin-left: 0;
  }
}
.in-user-dropdown .in-user-open-act {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}
@media (max-width: 767px) {
  .in-user-dropdown .in-user-open-act {
    gap: 10px;
    color: #fff !important;
    opacity: 1;
  }
  .in-user-dropdown .in-user-open-act.collapsed .ico path, .in-user-dropdown .in-user-open-act.collapsed .ico {
    stroke: none !important;
    fill: #999999 !important;
    color: #999999;
  }
}
@media (max-width: 767px) {
  .in-user-dropdown .in-user-open-act .c-count-dot {
    position: absolute;
    right: 3px;
    top: 6px;
  }
}
@media (min-width: 768px) {
  .in-user-dropdown .in-user-open-act .collapse-opened {
    display: none;
  }
}
.in-user-dropdown .in-user-open-act .ico {
  margin-right: 10px;
  color: #999999;
}
@media (max-width: 767px) {
  .in-user-dropdown .in-user-open-act .ico {
    margin-right: 0;
  }
}
.in-user-dropdown .in-user-open-act .c-drop-arrow {
  margin-right: 0;
}
.in-user-dropdown .in-user-open-act:hover span {
  text-decoration: none;
}
@media (min-width: 768px) {
  .in-user-dropdown .in-user-open-act span {
    display: inline-block;
    margin-right: 10px;
    text-decoration: none;
    color: #fff;
    max-width: 199px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.in-user-dropdown a:not(.in-user-open-act) .ico {
  display: inline-block;
  margin-right: 10px;
}
.in-user-dropdown .dropdown-menu {
  min-width: 200px;
  max-width: 340px;
  right: 0 !important;
  left: auto !important;
}
@media (min-width: 768px) {
  .in-user-dropdown .dropdown-menu {
    -webkit-transform: translate3d(0px, 8px, 0px) !important;
            transform: translate3d(0px, 8px, 0px) !important;
  }
}

.in-user-dropdown-item.dropdown-item {
  color: var(--text-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .in-user-dropdown-item.dropdown-item {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.in-user-dropdown-item.dropdown-item .ico {
  color: #999999;
  display: inline-block;
  margin-right: 10px;
  min-width: 20px;
  max-width: 20px;
  font-size: 20px;
}
.in-user-dropdown-item.dropdown-item .ico path {
  fill: #999999;
}
.in-user-dropdown-item.dropdown-item .badge {
  font-size: 14px;
  line-height: 1;
  font-weight: normal;
}

.in-user-dropdown-item-l {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.in-user-dropdown-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-right: 10px;
}
.in-user-dropdown-txt.c-shadow-overflow::after {
  right: -6px;
}

.in-user-dropdown-sub-title {
  margin: 10px 15px;
  padding-top: 15px;
  border-top: 1px solid #E5E5E5;
  font-size: 14px !important;
  line-height: normal !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  padding-left: 15px !important;
  padding-bottom: 5px !important;
}

.in-user-dropdown-item.dropdown-item:not(:last-child) {
  margin-bottom: 5px;
}

.dropdown-item.in-header-user-act {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: auto !important;
  line-height: normal !important;
  padding: 10px 15px !important;
}
.dropdown-item.in-header-user-act .in-user-dropdown-item-l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.in-header-user-pic-box {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
}
.in-header-user-pic-box .c-user-badge {
  position: absolute;
  right: -5px;
  top: -4px;
}

.in-header-user-pic {
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .h-header .in-user-dropdown .dropdown-menu {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .h-mob-user-menu-toggle:not(.collapsed) .ico {
    color: var(--secondary-base-color) !important;
  }
}

.h-header-top-box {
  position: relative;
  border-bottom: 1px solid #EBEBEB;
}

.h-header-top-box-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.h-header-top-box-in.loaded .h-header-nav.c-shadow-overflow,
.h-header-in.loaded .h-header-nav.c-shadow-overflow {
  overflow: visible;
}
.h-header-top-box-in.loaded .h-header-nav.c-shadow-overflow:after,
.h-header-in.loaded .h-header-nav.c-shadow-overflow:after {
  display: none;
}

@media (min-width: 768px) {
  .h-header-dropdown > .c-link-ajax {
    line-height: 43px;
  }
}
@media (max-width: 767px) {
  .h-header-dropdown .dr-collapse-act {
    padding: 10px 20px;
  }
}

.h-header-nav {
  padding-left: 20px;
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.h-header-nav-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  margin-bottom: 0;
}

.h-header-nav-item {
  position: relative;
  white-space: nowrap;
}
.h-header-nav-item + .h-header-nav-item {
  margin-left: 30px;
}
@media (min-width: 768px) {
  .h-header-nav-item.active:before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--primary-base-color);
    display: block;
    width: 100%;
    height: 1px;
  }
}
.h-header-nav-item > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (min-width: 768px) {
  .h-header-nav-item > a {
    height: 43px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.h-header-nav-more .dropdown-toggle {
  gap: 7px;
}
@media (min-width: 768px) {
  .h-header-nav-more .dropdown-menu li {
    white-space: nowrap;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .h-mob-nav-langs .country-icon {
    margin-right: 10px;
    margin-top: -2px;
  }
  .h-mob-nav-langs .dropdown-item {
    padding: 0 15px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: transparent !important;
  }
  .h-mob-nav-langs-in {
    padding-top: 5px;
    padding-bottom: 10px;
  }
  .h-mob-nav {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 10020;
    overflow: hidden;
    margin-top: 0;
  }
}
@media (max-width: 767px) and (min-width: 768px) {
  .h-mob-nav.collapse.show {
    display: none;
  }
}
@media (max-width: 767px) {
  .h-mob-nav li:not(:last-child) {
    margin-bottom: 5px;
  }
  .h-mob-nav li.active .dropdown-item {
    color: var(--primary-base-color) !important;
    background-color: transparent !important;
  }
  .h-mob-nav .dropdown-item {
    line-height: normal;
    font-size: 14px;
    padding: 5px 0 !important;
  }
  .h-mob-nav .dropdown-item:hover, .h-mob-nav .dropdown-item:focus, .h-mob-nav .dropdown-item.active {
    background-color: transparent !important;
  }
  .h-mob-nav .dropdown-item:hover .ico, .h-mob-nav .dropdown-item:focus .ico, .h-mob-nav .dropdown-item.active .ico {
    color: var(--primary-base-color);
  }
  .h-mob-nav .dropdown-item:hover .ico path, .h-mob-nav .dropdown-item:focus .ico path, .h-mob-nav .dropdown-item.active .ico path {
    fill: var(--primary-base-color);
  }
  .h-mob-nav .dropdown-item:hover span, .h-mob-nav .dropdown-item:focus span, .h-mob-nav .dropdown-item.active span {
    color: var(--primary-base-color);
  }
  .h-mob-nav .dropdown-item:hover .in-user-dropdown-txt::after, .h-mob-nav .dropdown-item:focus .in-user-dropdown-txt::after, .h-mob-nav .dropdown-item.active .in-user-dropdown-txt::after {
    display: none;
  }
  .h-mob-nav .dropdown-item .c-drop-arrow {
    margin-left: 4px;
  }
  .h-mob-nav .dropdown-item .ico path {
    fill: #999999;
  }
  .h-mob-nav .dropdown-item .usr-count {
    margin-left: 10px;
  }
  .h-mob-nav .divider {
    display: block;
    height: 1px;
    border-bottom: 1px solid #EBEBEB;
    margin: 10px 20px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .h-mob-nav .divider {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .h-mob-nav-in {
    border-top: 1px solid #EBEBEB;
    padding: 10px 15px;
  }
  .h-mob-user-login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 25px 20px;
    font-size: 16px;
    border-top: 1px solid #EBEBEB;
  }
  .h-mob-user-login .c-dot {
    margin: 0 15px;
  }
}
@media (max-width: 767px) {
  .l-banner-top + .h-header-top-box + .h-header + .h-mob-nav {
    top: 138px;
  }
}

@media (min-width: 768px) {
  .h-mob-nav {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .h-header-border.container {
    padding: 0 !important;
    max-width: initial !important;
  }
}
@media (max-width: 575px) {
  .h-header-border.container .border-bottom {
    margin-left: -20px;
    margin-right: -20px;
    width: auto;
  }
}

.btn-add-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  padding: 12px 20px;
  background-color: var(--primary-base-color) !important;
  color: #fff !important;
}
.btn-add-item:hover, .btn-add-item:focus {
  background-color: rgba(var(--action-buttons-color)) !important;
}
@media (min-width: 768px) {
  .btn-add-item {
    margin-left: 30px;
  }
}
.btn-add-item svg path {
  fill: none;
}

.h-header-logo {
  max-width: 200px;
  max-height: 100px;
  min-width: 30px;
  min-height: 35px;
}

.h-header-logo-mob img,
.h-header-logo-mob svg {
  min-width: 40px;
  max-width: 118px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.h-header-logo-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .h-header-logo-box {
    display: none;
  }
}

.h-header-logo-title {
  margin-left: 10px;
  font-size: 18px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .h-header-logo-title {
    font-size: 16px;
  }
}

.h-header-logo-ver {
  margin-left: 10px;
  font-size: 13px;
  color: #595959;
}

.l-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-content .container > .l-page-head:first-child {
  margin-top: 15px;
}
@media (max-width: 767px) {
  .l-content .container > .l-page-head:first-child {
    margin-top: 10px;
  }
}
.l-content > .pb-4.text-center {
  margin-top: auto;
  margin-bottom: auto;
}

.l-columns-box-l {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 100%;
  min-width: 0;
}

.l-content-white {
  background-color: white !important;
  border-top: 1px solid #EBEBEB;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.l-content-minimal {
  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-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.l-content-minimal .l-content-white {
  border-top: 0 !important;
  padding-top: 0 !important;
}
.l-content-minimal .container {
  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-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.l-content-minimal .container .row {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.l-content-minimal .usr-content {
  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-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.l-content-minimal .usr-settings.tab-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.l-page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 100vh;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.l-flex-column-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*modal layer*/
.l-busy-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: black;
  z-index: 10000;
  opacity: 0.5;
}

/*modal layer*/
/*short page*/
.l-header-short {
  padding: 30px 0;
  position: relative;
  background-color: var(--primary-base-color);
}
@media (max-width: 991px) {
  .l-header-short {
    padding: 15px 0;
  }
}

.l-page-auth .l-content-short {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

.l-content-short {
  padding-bottom: 36px;
}
.l-content-short .l-short-page-footer > * + * {
  margin-top: 5px;
}

.l-page-short-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 520px;
}
.l-page-short-info .l-content-short {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.l-page-short-info .l-header-short-heading-title {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .l-page-short-info .l-header-short-heading-title {
    margin-bottom: 15px;
  }
}
.l-page-short-info .ico-check {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .l-page-short-info .ico-check .ico {
    max-width: 60px;
    max-height: 60px;
  }
}
.l-page-short-info .l-short-page-footer {
  margin-top: 28px;
}
.l-page-short-info p {
  font-size: 16px;
  line-height: 24px;
}

.l-short-page-footer {
  font-size: 14px;
  line-height: 20px;
}
.l-short-page-footer li + li {
  margin-top: 10px;
}

.l-header-short-logo {
  text-align: center;
  display: block;
  max-width: 295px;
  height: 50px;
  margin: 0 auto;
  color: var(--text-color) !important;
}
@media (max-width: 991px) {
  .l-header-short-logo {
    max-width: 180px;
    height: 30px;
  }
}
.l-header-short-logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.l-header-short-logo-title {
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 7px;
}

.l-header-short-heading-title {
  font-weight: bold;
  font-size: 28px;
  line-height: 38px;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .l-header-short-heading-title {
    font-size: 20px;
    line-height: 26px;
  }
}

/*short page*/
.l-away-ico {
  text-align: center;
  margin-bottom: 17px;
}
.l-away-ico .ico {
  width: 74px;
  height: 74px;
  -webkit-animation: rotating 1s linear infinite;
          animation: rotating 1s linear infinite;
}

.l-page-head {
  margin-bottom: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.l-page-head .c-title {
  display: inline;
}
.l-page-head .badge {
  font-size: 12px;
  line-height: 16px;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .l-page-head .badge {
    margin-top: 5px;
    margin-left: 0;
    vertical-align: top;
  }
}
.l-page-head .vw-dynprops {
  margin-top: 20px;
  margin-bottom: 0;
}

.l-page-head-cabinet {
  margin-top: 15px;
}
@media (max-width: 767px) {
  .l-page-head-cabinet {
    margin-top: 10px;
  }
}

.l-page-title {
  font-weight: bold;
  font-size: 24px;
  line-height: normal;
  color: var(--text-color);
}
@media (max-width: 991px) {
  .l-page-title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .l-page-title {
    display: inline;
    position: relative;
  }
}

.l-page-item-r-info {
  font-size: 13px;
  line-height: 16px;
  color: #595959;
  margin-left: auto;
  padding-left: 20px;
  text-align: right;
}
@media (max-width: 767px) {
  .l-page-item-r-info {
    text-align: left;
    padding-left: 0;
    position: relative;
  }
  .l-page-item-r-info .c-link-ajax {
    position: absolute;
    top: 0;
    right: 0;
  }
  .l-page-item-r-info .c-link-ajax span {
    color: #595959;
  }
}

.l-info {
  font-size: 14px;
  line-height: normal;
  color: #595959;
  margin-top: auto;
}
@media (max-width: 767px) {
  .l-info {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .l-info {
    border-top: 1px solid #EBEBEB;
  }
}
.l-info .container {
  padding-top: 15px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .l-info .container {
    padding-top: 10px;
    padding-bottom: 15px;
  }
}
.l-info .container:empty {
  display: none;
}

.l-page-auth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #F4F4F4;
}
.l-page-auth .l-content-short {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-sub-head-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1200px) {
  .l-sub-head-box {
    display: block;
    margin-bottom: 10px;
  }
}
.l-sub-head-box .usr-content-top-search {
  width: 232px;
  margin-right: 20px;
}

.l-sub-head-box-l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media (min-width: 992px) {
  .l-sub-head-box-l {
    padding-right: 20px;
  }
}
@media (max-width: 1199px) {
  .l-sub-head-box-l {
    padding-bottom: 10px;
  }
}
.l-sub-head-box-l .usr-content-top-search {
  margin-left: 0;
}
@media (max-width: 991px) {
  .l-sub-head-box-l .dropdown {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .l-sub-head-box-l .dropdown .btn {
    width: 100%;
  }
}

.l-sub-head-box-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-sub-head-box-r .it-list-view-toggle {
  margin-left: 10px;
}
.l-sub-head-box-r .it-list-view-toggle-act {
  padding-top: 0;
  padding-bottom: 0;
}
.l-sub-head-box-r .it-list-view-toggle-act:after {
  display: none;
}
@media (max-width: 767px) {
  .l-sub-head-box-r .dropdown-toggle {
    padding-bottom: 5px !important;
  }
}

.l-table-actions > a .ico {
  font-size: 13px;
}

.l-table-mob-control .ico {
  font-size: 16px;
}

/* user cabinet left aside */
.l-columns-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .l-columns-box {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
}

.l-sidebar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-sidebar::-webkit-scrollbar {
  display: none;
  width: 0;
  background: transparent;
}
.l-sidebar:empty {
  display: none;
}

@media (min-width: 768px) {
  .l-aside,
  .u-cabinet-aside {
    width: 280px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
@media (max-width: 767px) {
  .l-aside,
  .u-cabinet-aside {
    margin-top: 40px;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
@media (max-width: 767px) {
  .l-aside.order-first,
  .u-cabinet-aside.order-first {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .l-aside .l-banner-v,
  .u-cabinet-aside .l-banner-v {
    margin-bottom: 0;
  }
}

.l-aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-bottom: 0;
}

.l-sidebar-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 20px;
}

.l-sidebar-item + .l-sidebar-item {
  margin-top: 20px;
}

.l-sidebar-nav li + li {
  margin-top: 20px;
}

.l-section-right-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .l-section-right-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-section-right-left-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .l-section-right-left-r {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding-right: 20px;
  }
}

.l-section-right-left-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .l-section-right-left-r {
    margin-left: auto;
  }
}

.l-list-empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 300px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-form-add .form-row {
  display: block;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 15px;
  max-width: 700px;
}
.c-form-add .form-row > div,
.c-form-add .form-row .control-label {
  padding: 0 !important;
  max-width: 100%;
  width: 100%;
  text-align: left;
}
.c-form-add .form-row .control-label {
  margin-bottom: 5px;
}
.c-form-add .checkbox-box li + li {
  margin-top: 10px;
}
.c-form-add .c-under-desc {
  font-size: 14px !important;
  margin-top: 5px !important;
}
.c-form-add .filepond--root {
  font-family: inherit;
}
.c-form-add .filepond--drip {
  opacity: 1;
  border-radius: 2px;
  background: #F1F0EF;
}
.c-form-add .form-control-sm {
  padding: 12px 15px;
  height: 44px;
}
.c-form-add .form-row-price .j-price-curr {
  max-width: 55px;
  width: 100%;
}
.c-form-add .form-row-price .j-price {
  max-width: calc(100% - 65px);
  width: 100%;
}
.c-form-add .offset-md-3 {
  margin: 0;
}
.c-form-add .c-form-images-block hr {
  margin-top: 10px;
}

.fc-cat-custom-wrap {
  margin-top: 15px;
}

.j-dynprops-block .fc-cat-custom-wrap {
  margin-top: 0;
  width: 100%;
}

.fc-cat-custom.show a {
  border-color: rgba(var(--links-color));
}
.fc-cat-custom a {
  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;
  width: 100%;
  border: 1px solid #E5E5E5;
  border-radius: 2px;
  height: 44px;
  padding: 12px 15px;
  color: #999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.fc-cat-custom a:hover {
  color: #999 !important;
}
.fc-cat-custom a.has-error {
  border-color: var(--danger-color) !important;
  -webkit-box-shadow: 0 0 4px rgba(255, 88, 91, 0.5);
          box-shadow: 0 0 4px rgba(255, 88, 91, 0.5);
}
.fc-cat-custom a .c-drop-arrow {
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.25 4.79795L2.26513 3.75L7.5 9.15411L12.7349 3.75L13.75 4.79795L7.5 11.25L1.25 4.79795Z' fill='%23999999'/%3E%3C/svg%3E");
}
.fc-cat-custom a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.fc-cat-custom a img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.fc-cat-custom .dropdown-menu {
  width: 100%;
  top: 5px !important;
}
.fc-cat-custom .dropdown-menu button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  background-color: transparent;
  border: none;
  width: 100%;
  padding: 5px 20px !important;
}
.fc-cat-custom .dropdown-menu img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.fc-cat-custom .dropdown-menu .title {
  background-color: transparent !important;
  margin-bottom: 5px;
}
.fc-cat-custom .dropdown-menu .title:not(:first-child) {
  margin-top: 5px;
}
.fc-cat-custom .dropdown-menu .title span {
  display: block;
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  padding: 0 20px;
}
.fc-cat-custom .empty {
  padding: 5px 20px;
  color: #706D7A;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
.fc-cat-custom .empty:hover {
  background: transparent;
}

.wb-f-filter .fc-cat-custom-wrap {
  display: none;
}

.fc-cat-custom-search {
  position: relative;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0 20px;
}

.fc-cat-custom-search .form-control {
  width: 100%;
  height: 40px;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
}

.fc-cat-custom-search .form-control:placeholder {
  color: #999999;
}

.fc-cat-custom-search-close {
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border: none !important;
  padding: 0 !important;
  width: 15px !important;
  height: 15px !important;
}
.fc-cat-custom-search-close svg {
  width: 15px;
  height: 15px;
}
.fc-cat-custom-search-close svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.fc-cat-custom-search-close:hover path {
  fill: rgba(var(--links-color));
}

.fc-cat-custom-scroll {
  max-height: 200px;
  overflow-y: auto;
  margin-right: 10px;
}
.fc-cat-custom-scroll ul {
  margin-right: 7px;
}
.fc-cat-custom-scroll::-webkit-scrollbar {
  width: 3px;
}
.fc-cat-custom-scroll::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 3px;
}
.fc-cat-custom-scroll::-webkit-scrollbar-thumb {
  background-color: #E5E5E5;
  border-radius: 3px;
}

.hidden-block {
  display: none !important;
}

.rp-header-top-box {
  position: relative;
  background-color: white;
}
@media (min-width: 768px) {
  .rp-header-top-box {
    padding: 15px 0;
    border-bottom: 1px solid #EBEBEB;
  }
}
@media (max-width: 767px) {
  .rp-header-top-box {
    border-bottom: 0 !important;
  }
}
@media (min-width: 768px) {
  .rp-header-top-box .h-header-dropdown {
    padding-left: 20px;
    margin-left: 20px;
    position: relative;
  }
  .rp-header-top-box .h-header-dropdown:before {
    content: "";
    display: block;
    background: #E8EDEF;
    width: 1px;
    height: 28px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .rp-header-top-box .h-header-dropdown {
    display: none;
  }
}
@media (min-width: 768px) {
  .rp-header-top-box .h-header-dropdown .c-link-ajax {
    line-height: 30px;
  }
  .rp-header-top-box .h-header-dropdown .c-link-ajax span {
    border-bottom: 0;
    color: var(--text-color);
  }
}
@media (min-width: 768px) {
  .rp-header-top-box .h-header-logo {
    max-height: 30px;
    min-height: 30px;
  }
}
@media (max-width: 575px) {
  .rp-header-top-box .h-header-r-actions {
    padding: 0 15px;
  }
}
@media (min-width: 768px) {
  .rp-header-top-box .dr-lang-dropdown-menu {
    right: 0;
    left: auto;
  }
}
@media (max-width: 767px) {
  .rp-header-top-box .container {
    padding: 0 !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .rp-header-top-box .container {
    max-width: inherit;
  }
}
.rp-header-top-box .c-ico-link span {
  color: #FFFFFF;
}

.is-mob-nav-opened .rp-header-top-box {
  z-index: 999999;
}

@media (max-width: 767px) {
  body.modal-open .rp-header-top-box {
    z-index: 10019;
  }
}

.rp-header {
  padding: 10px 0;
  background-color: white;
  position: relative;
}
@media (max-width: 767px) {
  .rp-header {
    display: none;
  }
}
.rp-header .h-header-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.rp-header .h-header-nav {
  margin-left: 0;
  padding-left: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 100%;
}
.rp-header .h-header-nav.c-shadow-overflow:after {
  width: 24px;
  right: 0;
}
.rp-header .h-header-nav-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 30px;
}

.h-header-nav-item a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
}
.h-header-nav-item a:hover {
  color: rgb(var(--links-color));
}
.h-header-nav-item + .h-header-nav-item {
  margin-left: 30px;
}
.h-header-nav-item.active a {
  color: var(--primary-base-color);
}
.h-header-nav-item.active:before {
  display: none;
}

.rp-header-top-box {
  background-color: var(--primary-base-color);
}

@media (min-width: 768px) {
  .in-user-dropdown .dropdown-menu {
    margin-top: 13px;
  }
}

.in-user-dropdown-txt.c-shadow-overflow:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, white), color-stop(133.33%, rgba(255, 255, 255, 0))) !important;
  background: linear-gradient(270deg, white 50%, rgba(255, 255, 255, 0) 133.33%) !important;
}

.in-user-dropdown-item:hover .in-user-dropdown-txt.c-shadow-overflow:after, .in-user-dropdown-item:active .in-user-dropdown-txt.c-shadow-overflow:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #F4F4F4), color-stop(133.33%, rgba(255, 255, 255, 0))) !important;
  background: linear-gradient(270deg, #F4F4F4 50%, rgba(255, 255, 255, 0) 133.33%) !important;
}

body {
  background-color: white;
}

@media (min-width: 768px) {
  .l-columns-box {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .l-columns-box {
    padding-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .l-columns-box .usr-fav-empty {
    margin-left: 10px;
  }
}

@media (min-width: 992px) {
  .l-columns-box.l-columns-box-w-aside {
    gap: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .l-columns-box.l-columns-box-w-aside {
    gap: 30px;
  }
}

.l-content {
  background-color: var(--body-bg-color);
}
.l-content .l-content-white .b-breadcrumbs {
  padding-top: 0;
}

@media (min-width: 768px) {
  .l-content-minimal {
    padding-top: 15px;
  }
}
@media (max-width: 767px) {
  .l-content-minimal {
    border-top: 1px solid #EBEBEB;
  }
}
@media (min-width: 768px) {
  .l-content-minimal > .l-content-white {
    margin-top: -15px;
    border-top: 1px solid #EBEBEB !important;
  }
}
@media (min-width: 768px) {
  .l-content-minimal > .l-content-white .b-breadcrumbs {
    padding-top: 15px;
  }
}
.l-content-minimal .b-breadcrumbs {
  padding-top: 0;
}

.l-content-white {
  padding-top: 15px;
}

@media (max-width: 767px) {
  .l-page-head {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .l-page-head.d-flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .l-page-head.d-flex {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.l-page-sub-title {
  font-size: 24px;
  line-height: 29px;
}
@media (max-width: 767px) {
  .l-page-sub-title {
    font-size: 22px;
    line-height: 27px;
  }
}

.l-page-head-cabinet {
  margin-top: 0;
  margin-bottom: 23px;
}

@media (min-width: 768px) {
  .l-columns-box-l {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .l-columns-box-l + .vw-aside {
    margin-top: 30px;
  }
}
.l-columns-box-l .in-index-box {
  padding-top: 0;
}

.l-aside {
  margin-left: auto;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media (max-width: 991.55px) {
  .l-aside {
    display: none;
    margin-bottom: 20px;
  }
}
.l-aside .nav-link {
  background-color: transparent !important;
}
@media (min-width: 768px) {
  .l-aside .nav-link {
    padding: 10px 0 !important;
  }
}
.l-aside .nav-link.active {
  border: none !important;
}
.l-aside .nav-link.active .ico, .l-aside .nav-link.active span {
  color: var(--primary-base-color) !important;
}
.l-aside .nav-link.active .usr-count {
  color: white !important;
}
.l-aside .nav-link .ico {
  color: #595959 !important;
}
.l-aside.c-shadow-white-box {
  padding: 20px !important;
}

.l-page-item-r-info {
  color: var(--text-color);
  font-size: 14px;
  text-align: left;
}
@media (max-width: 767px) {
  .l-page-item-r-info {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .l-page-item-r-info {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 334px;
            flex: 0 0 334px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .l-page-item-r-info {
    margin-top: 15px;
  }
}
@media (max-width: 991px) {
  .l-page-item-r-info {
    margin-left: 0;
    padding-left: 0;
  }
}

/*realty only*/
.l-content-white .b-breadcrumbs:after,
.l-content-white .in-box-head.c-shadow-overflow:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, white), color-stop(133.33%, rgba(255, 255, 255, 0))) !important;
  background: linear-gradient(270deg, white 50%, rgba(255, 255, 255, 0) 133.33%) !important;
}
@media (max-width: 767px) {
  .l-content-white .c-page-back-link {
    padding: 5px 0 20px 0;
  }
}
.l-content-white .l-page-head {
  margin-top: 0 !important;
}
.l-content-white .l-content {
  background: white;
}
@media (max-width: 767px) {
  .l-content-white .rp-header-top-box {
    border-bottom: 1px solid #EBEBEB !important;
  }
}
.l-content-white .b-breadcrumbs:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, white), color-stop(133.33%, rgba(255, 255, 255, 0))) !important;
  background: linear-gradient(270deg, white 50%, rgba(255, 255, 255, 0) 133.33%) !important;
}
.l-content-white .hl-list,
.l-content-white .l-aside {
  padding: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.l-content-white .l-aside {
  padding: 0 10px !important;
}
.l-content-white .vw-white-box {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
@media (min-width: 768px) {
  .l-content-white .vw-white-box {
    border: 1px solid #EBEBEB !important;
  }
}

.f-footer {
  padding: 34px 0;
  position: relative;
  border-top: 1px solid #EBEBEB;
  margin-top: auto;
  background-color: white;
}
@media (max-width: 767px) {
  .f-footer {
    padding: 24px 0;
  }
}
.f-footer li {
  list-style-type: none;
  font-size: 14px;
  line-height: 20px;
}

.f-footer-link {
  color: var(--text-color);
}

.f-footer-copy {
  font-size: 13px;
  line-height: 16px;
  color: #595959;
}

@media (min-width: 768px) {
  .f-footer-debug {
    padding-bottom: 83px;
  }
}
@media (max-width: 767px) {
  .f-footer-debug {
    padding-bottom: 172px;
  }
}

.f-footer-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .f-footer-in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.f-footer-l {
  min-width: 362px;
  max-width: 362px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 13px;
  line-height: 16px;
}
@media (min-width: 767px) {
  .f-footer-l {
    margin-right: 10%;
  }
}
@media (max-width: 991px) {
  .f-footer-l {
    min-width: inherit;
    max-width: 298px;
  }
}
@media (max-width: 767px) {
  .f-footer-l {
    text-align: center;
    padding-top: 5px;
    margin-right: 0;
  }
}

.f-footer-r {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: block;
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
  max-width: 50%;
}
@media (max-width: 1279px) {
  .f-footer-r {
    max-width: inherit !important;
  }
}
@media (max-width: 991px) {
  .f-footer-r {
    -webkit-column-count: 2 !important;
       -moz-column-count: 2 !important;
            column-count: 2 !important;
  }
}
@media (max-width: 767px) {
  .f-footer-r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
}
@media (max-width: 767px) {
  .f-footer-r li {
    display: inline-block;
    padding: 10px;
  }
  .f-footer-r li a {
    font-size: 14px;
  }
}
.f-footer-r li + li {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .f-footer-r li + li {
    margin-top: 0;
  }
}

.f-footer-r-counters {
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4;
  max-width: 60%;
}

.rn-item-counter {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .rn-item-counter {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
}

.f-footer-info {
  margin-top: 10px;
}

.f-footer-text {
  font-size: 13px;
  line-height: 16px;
  padding-top: 20px;
  width: 100%;
}
@media (max-width: 767px) {
  .f-footer-text {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    text-align: center;
  }
}

.f-footer {
  background: #2c323a;
  border-top: 0 !important;
}
.f-footer .f-footer-copy {
  color: #595959;
}

.f-footer-link {
  color: white !important;
}
.f-footer-link.active {
  color: var(--primary-base-color) !important;
  cursor: default;
}
.f-footer-link:not(.active):hover {
  opacity: 0.7;
}

.f-footer-text {
  color: #595959;
}

/*layout*/
/*filter*/
@media (min-width: 991.55px) {
  .d-fl-breakpoint-none {
    display: none !important;
  }
}

@media (max-width: 991.55px) {
  .d-fl-breakpoint-flex {
    display: none !important;
  }
}
@media (min-width: 991.55px) {
  .d-fl-breakpoint-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (max-width: 991px) {
  .fl-geo-input {
    display: none !important;
  }
}
.fl-geo-input .form-control {
  border: 0 !important;
  background-position: 100% 50%;
  text-overflow: ellipsis;
  padding: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
@media (min-width: 992px) {
  .fl-geo-input .form-control {
    padding: 0 27px 0 0 !important;
  }
}
.fl-geo-input .form-control::-webkit-input-placeholder {
  color: var(--text-color);
}
.fl-geo-input .form-control::-moz-placeholder {
  color: var(--text-color);
}
.fl-geo-input .form-control:-ms-input-placeholder {
  color: var(--text-color);
}
.fl-geo-input .form-control:-moz-placeholder {
  color: var(--text-color);
}

.fl-dropdown-suggest li {
  position: relative;
}
.fl-dropdown-suggest li + li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  border-top: 1px solid #E5E5E5;
  display: block;
  height: 1px;
}
.fl-dropdown-suggest .dropdown-item {
  padding: 13px 20px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.fl-dropdown-suggest .fs-14 {
  line-height: 19px;
}

@media (min-width: 991.55px) {
  .fl-dropdown-scrolled {
    max-height: 350px;
    position: relative;
  }
  .fl-dropdown-scrolled:not(.ps) {
    overflow: auto;
  }
}

.c-cat-line .fl-dropdown-header {
  margin-top: 0;
}

.fl-dropdown-body {
  position: relative;
  padding-left: 0 !important;
}
@media (min-width: 991.55px) {
  .fl-dropdown-body {
    padding: 10px 0;
    margin-bottom: 0;
  }
}

.fl-dropdown-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
}

@media (min-width: 991.55px) {
  .fl-dyn-dropdown-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-top: 1px solid #E5E5E5;
    padding: 15px 20px;
    min-width: 220px;
  }
  .fl-dyn-dropdown-footer .checkbox {
    padding-left: 10px;
  }
}

.fl-dyn-dropdown-footer .btn-info,
.fl-filter-options-footer .btn-info {
  min-height: inherit;
  max-height: 30px;
  line-height: 30px !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #0096C7;
  background-image: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
  color: white;
}
.fl-dyn-dropdown-footer .btn-info:hover,
.fl-filter-options-footer .btn-info:hover {
  opacity: 0.8;
}
.fl-dyn-dropdown-footer .btn-cancel,
.fl-filter-options-footer .btn-cancel {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background-image: none;
  text-shadow: none;
  border: 1px solid #EBEBEB;
}
.fl-dyn-dropdown-footer .btn-cancel:hover,
.fl-filter-options-footer .btn-cancel:hover {
  border-color: #C3C3C3;
}

.fl-dyn-not-important {
  padding-left: 15px;
  margin-left: auto;
  white-space: nowrap;
}
.fl-dyn-not-important .checkbox {
  margin-bottom: 0;
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991px) {
  .fl-dyn-dropdown-label-styles,
  .fl-dyn-dropdown-label-styles > div {
    height: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.fl-dyn-dropdown-label-styles:empty,
.fl-dyn-dropdown-label-styles > div:empty {
  display: none;
}
.fl-dyn-dropdown-label-styles:empty + .divider,
.fl-dyn-dropdown-label-styles > div:empty + .divider {
  display: none;
}
.fl-dyn-dropdown-label-styles ul,
.fl-dyn-dropdown-label-styles > div ul {
  list-style-type: none;
  margin-bottom: 0;
  max-width: 100%;
}
@media (min-width: 991.55px) {
  .fl-dyn-dropdown-label-styles ul,
  .fl-dyn-dropdown-label-styles > div ul {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
.fl-dyn-dropdown-label-styles ul:only-of-type,
.fl-dyn-dropdown-label-styles > div ul:only-of-type {
  max-width: 100%;
}
@media (min-width: 991.55px) {
  .fl-dyn-dropdown-label-styles ul li,
  .fl-dyn-dropdown-label-styles > div ul li {
    line-height: 26px;
    white-space: nowrap;
    text-align: left;
    max-width: 100%;
  }
  .fl-dyn-dropdown-label-styles ul li .checkbox,
  .fl-dyn-dropdown-label-styles > div ul li .checkbox {
    padding: 2px 0;
  }
}
@media (min-width: 991.55px) {
  .fl-dyn-dropdown-label-styles label:not(.form-check-label-reset),
  .fl-dyn-dropdown-label-styles > div label:not(.form-check-label-reset) {
    padding: 0 15px;
    height: 31px;
    line-height: 31px;
    font-weight: 400;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
}

.fl-all-link {
  display: inline-block;
}

@media (min-width: 991.55px) {
  .fl-metro-item + .fl-metro-item {
    border-top: 1px solid #EBEBEB;
  }
}
.fl-metro-item .fl-dyn-dropdown-label-styles {
  margin: -5px 0 5px 0;
}
.fl-metro-item .fl-metro-item-branch {
  height: auto;
  margin: 0 -20px;
  width: auto;
}
@media (min-width: 991.55px) {
  .fl-metro-item .fl-metro-item-branch {
    padding: 13px 20px !important;
  }
}
@media (max-width: 991px) {
  .fl-metro-item .fl-metro-item-branch {
    margin: 0;
    padding: 20px !important;
  }
}
.fl-metro-item .fl-metro-item-branch:not(.collapsed) .c-drop-arrow {
  -webkit-transform: rotate(180deg) !important;
      -ms-transform: rotate(180deg) !important;
          transform: rotate(180deg) !important;
}
.fl-metro-item .fl-metro-item-branch .c-drop-arrow {
  -webkit-transform: rotate(0) !important;
      -ms-transform: rotate(0) !important;
          transform: rotate(0) !important;
}

@media (min-width: 991.55px) {
  .fl-dyn-dropdown-metro-list .form-check-label {
    padding-left: 26px !important;
  }
}

.fl-metro-item-color {
  position: relative;
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  border-radius: 50%;
  margin-right: 10px;
}

.fl-metro-item-count {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
  color: white;
  text-align: center;
  font-weight: normal;
}

.mob-fl-cats .mob-fl-cat-header {
  margin: 0 -20px;
}

.fl-filter-options {
  position: relative;
}
@media (min-width: 991.55px) {
  .fl-filter-options {
    margin-top: 10px;
  }
}

@media (max-width: 991px) {
  .fl-arrow {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 4px solid var(--primary-base-color);
    z-index: 10;
  }
}

@media (min-width: 991.55px) {
  .fl-dropdown-header {
    background: #F4F4F4;
    z-index: 10;
    position: relative;
    padding: 15px 20px;
    border-radius: 5px 5px 0 0;
  }
}
@media (max-width: 991px) {
  .fl-dropdown-header {
    padding: 15px;
  }
}

@media (min-width: 991.55px) {
  .fl-dropdown-header-l {
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .fl-dropdown-header-l {
    width: 100%;
  }
}

@media (min-width: 991.55px) {
  .fc-item-big-pic {
    display: block;
    width: auto;
    height: auto;
    min-width: 20px;
    max-width: 70px;
    max-height: 70px;
  }
  .fc-item-big-pic svg, .fc-item-big-pic img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 991px) {
  .fl-dropdown-header-r {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 991.55px) {
  .fl-dropdown-header-r .fl-search-back {
    margin-bottom: 5px;
  }
}

.fl-dropdown-header-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .fl-dropdown-header-in {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.fl-dropdown-header-close {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 10;
  text-shadow: none;
  line-height: 1;
  font-size: 14px;
  opacity: 1;
}

@media (min-width: 991.55px) {
  .fl-search-back {
    margin-right: 15px;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 991.55px) {
  .fl-search-back .ico {
    font-size: 16px;
    min-width: 16px;
    max-width: 16px;
  }
}

@media (min-width: 991.55px) {
  .fl-search-back-sm .ico {
    min-width: 11px;
    max-width: 11px;
    font-size: 12px;
    line-height: 15px;
  }
}

.fl-search-next {
  margin-bottom: 0;
  margin-left: 5px;
}
.fl-search-next .ico {
  margin-left: 5px;
  /*rtl:remove*/
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.fl-search-dynamics {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .fl-search-dynamics {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (min-width: 991.55px) {
  .fl-search-dynamics-btn {
    display: none;
  }
}

.fl-search-dynamics-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .fl-search-dynamics-in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media (min-width: 991.55px) {
  .fl-search-dynamics-in {
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .fl-search-dynamics-in > .dropdown {
    max-width: 100%;
  }
}

@media (min-width: 991.55px) {
  .fl-dyn-item-row {
    background-color: white;
  }
}
@media (max-width: 991px) {
  .fl-dyn-item-row {
    width: 100%;
    z-index: 10;
  }
}
@media (min-width: 991.55px) {
  .fl-dyn-item-row .fl-aside-filter-item-head {
    padding-top: 2px;
    padding-bottom: 2px;
    min-height: 44px;
  }
}
@media (min-width: 991.55px) {
  .fl-dyn-item-row .fl-aside-filter-item-head .fl-aside-filter-item-title {
    min-height: 20px;
  }
}
@media (min-width: 991.55px) {
  .fl-dyn-item-row.open .c-drop-arrow {
    -webkit-transform: translateY(-50%) rotate(180deg);
        -ms-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
  }
}

.fl-search-dynamics-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991px) {
  .fl-search-dynamics-check {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
@media (min-width: 991.55px) {
  .fl-search-dynamics-check {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.fl-search-dynamics-check .form-check-label {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
@media (min-width: 991.55px) {
  .fl-search-dynamics-check .form-check-label {
    margin-left: 10px;
  }
}
.fl-search-dynamics-check .ico-check {
  margin-top: 0;
}

.fl-search-dyn-fromto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 10px;
}
@media (min-width: 991.55px) {
  .fl-search-dyn-fromto {
    padding: 0 15px 15px;
  }
}
.fl-search-dyn-fromto.fl-search-cats-dropdown-head-shdw {
  padding-bottom: 0;
}
.fl-search-dyn-fromto.fl-search-cats-dropdown-head-shdw:before {
  height: 11px;
  bottom: -15px;
}
@media (max-width: 991px) {
  .fl-search-dyn-fromto .form-control {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
}
.fl-search-dyn-fromto span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fl-search-dyn-fromto select {
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 25px;
  background-position: right 7px center;
}
.fl-search-dyn-fromto .fl-search-dyn-close {
  right: 30px;
  top: 14px;
}
.fl-search-dyn-fromto > .align-self-center:empty {
  display: none;
}

@media (max-width: 991px) {
  .fl-search-dyn-search {
    padding: 0 !important;
  }
}
@media (max-width: 991px) {
  .fl-search-dyn-search .fl-search-dyn-close {
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    padding: 20px;
  }
  .fl-search-dyn-search .fl-search-dyn-close .ico {
    margin-right: 0;
    max-width: 16px;
    min-width: 16px;
    height: 16px;
  }
}

@media (max-width: 991px) {
  .fl-search-dyn-input {
    padding: 12px 20px !important;
  }
}

.fl-search-dyn-close {
  position: absolute;
  right: 22px;
  top: 15px;
  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;
  width: 16px;
  height: 16px;
}
.fl-search-dyn-close.hide {
  display: none;
}
.fl-search-dyn-close .ico {
  max-width: 11px;
}

.fl-search-all-region {
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
  color: var(--primary-base-color) !important;
}
.fl-search-all-region:hover {
  color: rgba(var(--links-color)) !important;
}

.wb-f-mob-selector {
  color: var(--text-color) !important;
}
.wb-f-mob-selector b {
  font-weight: 400;
}

.rp-fl-dynamics-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  color: #333;
  font-size: 22px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 15px;
}

@media (min-width: 991.55px) {
  .fl-search-dropdown-title {
    font-size: 14px;
    line-height: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: bold;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding-right: 10px;
    white-space: nowrap;
  }
}
@media (max-width: 991px) {
  .fl-search-dropdown-title {
    width: 100%;
  }
}

.fl-search-cats-dropdown {
  display: none;
}
@media (min-width: 991.55px) {
  .fl-search-cats-dropdown {
    position: absolute;
    max-width: 620px;
    min-width: 200px;
    top: calc(100% + 2px);
    left: 0;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background-color: white;
    z-index: 10000;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@media (max-width: 990.55px) {
  .fl-search-cats-dropdown {
    opacity: 1 !important;
  }
}
@media (max-width: 991px) {
  .fl-search-cats-dropdown.open {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 991px) {
  .fl-search-cats-dropdown .divider {
    display: none;
  }
}
@media (max-width: 991px) {
  .fl-search-cats-dropdown .fl-dropdown-header-l {
    display: none;
  }
}
.fl-search-cats-dropdown .dropdown-item {
  position: relative;
}
.fl-search-cats-dropdown .dropdown-item:hover {
  z-index: 11;
}
@media (max-width: 991px) {
  .fl-search-cats-dropdown li.active:first-child {
    /*offset on mobile filter: issue stick to header on monile*/
    margin-top: 10px;
  }
}

@media (min-width: 991.55px) {
  .fl-search-cats-metro {
    width: 300px;
  }
}
@media (max-width: 991px) {
  .fl-search-cats-metro .tab-content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .fl-search-cats-metro .wb-f-panel-body {
    height: calc(100vh - 147px);
  }
}

/*dropdown dyn props*/
.fl-dyn-dropdown {
  padding: 0;
}
@media (min-width: 991.55px) {
  .fl-dyn-dropdown {
    min-width: 250px;
    max-width: 350px;
    position: absolute;
    z-index: 10025;
    border: 1px solid #EBEBEB;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background-color: white;
    left: 0;
    margin-top: 5px;
  }
}
.fl-dyn-dropdown .ps__rail-y {
  z-index: 12;
  margin: 5px 0;
}
@media (max-width: 991.55px) {
  .fl-dyn-dropdown .ps__rail-y {
    background-color: transparent !important;
  }
}
@media (min-width: 991.55px) {
  .fl-dyn-dropdown .dropdown-item.has-checkboxes {
    padding-left: 40px !important;
  }
}
@media (max-width: 991px) {
  .fl-dyn-dropdown .dropdown-item.has-checkboxes {
    padding-left: 45px !important;
  }
}

@media (min-width: 991.55px) {
  .fl-dyn-dropdown-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #EBEBEB;
  }
}

@media (min-width: 991.55px) {
  .fl-dyn-dropdown-body {
    padding: 10px 20px;
  }
  .fl-dyn-dropdown-body .form-check-label {
    padding: 0;
  }
}

@media (min-width: 991.55px) {
  .fl-dyn-dropdown-in {
    padding: 10px 0;
  }
  .fl-dyn-dropdown-in .fl-dyn-dropdown-header {
    margin-top: -10px;
  }
  .fl-dyn-dropdown-in .fl-dyn-dropdown-body {
    margin-bottom: -10px;
  }
}
.fl-dyn-dropdown-in .divider:first-child {
  display: none;
}

.fl-dyn-dropdown-header-act {
  border: none !important;
  background-color: transparent !important;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
  padding: 15px;
  border-bottom: 1px solid transparent !important;
  width: 50%;
  color: var(--text-color) !important;
}
.fl-dyn-dropdown-header-act.active {
  border-bottom-color: var(--primary-base-color) !important;
  z-index: 1;
}
@media (max-width: 991.55px) {
  .fl-dyn-dropdown-header-act {
    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;
  }
}

.fl-search-cats-count {
  font-size: 13px;
  margin-top: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .fl-search-cats-count {
    display: none;
  }
}

.fl-search-cats-list {
  position: relative;
}
@media (min-width: 991.55px) {
  .fl-search-cats-list {
    padding: 10px 20px;
  }
}
.fl-search-cats-list .fl-search-cat-pic {
  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-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 0;
}
@media (min-width: 991.55px) {
  .fl-search-cats-list .fl-search-cat-pic {
    width: 25px;
    height: 25px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
@media (max-width: 991px) {
  .fl-search-cats-list .fl-search-cat-pic {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 991px) {
  .fl-search-cats-list .fl-search-cat-pic {
    padding: 0 !important;
    margin-bottom: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-right: 10px;
  }
}
.fl-search-cats-list .fl-search-cats-list-in {
  list-style: none;
  padding-left: 0 !important;
}
@media (max-width: 991px) {
  .fl-search-cats-list .fl-search-cats-list-in {
    margin-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 991.55px) {
  .fl-search-cats-list .fl-search-cats-item-name {
    padding: 10px 0;
    margin-left: 10px;
  }
}

@media (min-width: 991.55px) {
  .fl-search-cats-item-name {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

@media (min-width: 991.55px) {
  .fl-search-cats-sub-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    padding: 15px 20px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .fl-search-cats-sub-list .fl-search-cats-item-name {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.fl-search-cats-item {
  list-style-type: none !important;
  margin-top: 0 !important;
}
@media (max-width: 990.55px) {
  .fl-search-cats-item {
    max-width: 100%;
  }
}
@media (min-width: 991.55px) {
  .fl-search-cats-item + .fl-search-cats-item .fl-search-cats-item-name {
    border-top: 1px solid #E5E5E5;
  }
}
@media (min-width: 991.55px) {
  .fl-search-cats-item .c-drop-arrow {
    display: none;
  }
}

@media (min-width: 991.55px) {
  .fl-search-cats-item-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.fl-search-sub-cats {
  list-style: none !important;
  margin-bottom: 0 !important;
}
@media (min-width: 991.55px) {
  .fl-search-sub-cats {
    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: 250px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    row-gap: 7px;
  }
}
.fl-search-sub-cats li {
  list-style-type: none !important;
}
@media (min-width: 991.55px) {
  .fl-search-sub-cats li {
    background: transparent !important;
    font-size: 14px;
    line-height: 25px;
    white-space: nowrap;
    text-align: left;
  }
  .fl-search-sub-cats li .c-drop-arrow {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    margin-left: 4px;
    margin-top: -1px;
  }
  .fl-search-sub-cats li a, .fl-search-sub-cats li .hidden-link {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}

.fl-search-cats-dropdown-head-shdw {
  padding: 4px 20px 0 20px;
  font-size: 16px;
  line-height: 24px;
  position: relative;
  margin-bottom: 10px;
}
.fl-search-cats-dropdown-head-shdw:before {
  content: "";
  position: absolute;
  bottom: -18px;
  right: 0;
  left: 0;
  height: 17px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #FFFFFF), color-stop(133.33%, rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, #FFFFFF 50%, rgba(255, 255, 255, 0) 133.33%);
  z-index: 100;
}

.fl-filter-options-title {
  text-align: center;
  position: relative;
}
@media (min-width: 991.55px) {
  .fl-filter-options-title {
    display: none;
  }
}

.fl-filter-options-item .select-box {
  position: relative;
}
.fl-filter-options-item .select-box:after {
  content: "";
  position: absolute;
  top: 15px;
  right: 10px;
  width: 9px;
  height: 5px;
  display: block;
  background-repeat: no-repeat;
  background-image: url(../css/images/arrow.svg?a870a5c2a903e4f05f823ab64aea4dd8);
  background-size: contain;
}
@media (max-width: 991px) {
  .fl-filter-options-item input, .fl-filter-options-item select {
    min-height: 34px;
  }
}
.fl-filter-options-item input, .fl-filter-options-item select, .fl-filter-options-item .checkbox {
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
}
.fl-filter-options-item select {
  background-color: white;
  line-height: 1.5;
}
.fl-filter-options-item .checkbox {
  padding-left: 0;
  font-weight: normal;
}
.fl-filter-options-item + .fl-filter-options-item {
  margin-top: 10px;
}

.fl-filter-options-footer {
  margin-top: 10px;
}
.fl-filter-options-footer .btn {
  height: 34px;
  max-height: 34px;
  line-height: 32px;
  padding-top: 0;
  padding-bottom: 0;
}
.fl-filter-options-footer .btn-cancel {
  background-color: white;
}

@media (max-width: 991px) {
  .fl-filter-box-mobile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
@media (min-width: 991.55px) {
  .fl-filter-box-mobile {
    display: none;
  }
}

.fc-quick-search-title-t {
  padding: 15px 20px 3px 20px;
  color: #595959;
}
@media (max-width: 767px) {
  .fc-quick-search-title-t {
    padding-bottom: 10px;
  }
}

.fc-quick-search-mob {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .fc-quick-search-mob {
    display: none !important;
  }
}
.fc-quick-search-mob .wb-f-search-close {
  position: absolute !important;
  right: 10px;
  top: 7px;
  margin: 0 !important;
  z-index: 10;
}
.fc-quick-search-mob .form-control {
  color: var(--text-color);
  height: 100%;
  background-color: transparent;
  border-radius: 0;
  margin-top: 2px;
  padding-left: 58px;
  padding-right: 50px;
  border: none;
  border-bottom: 2px solid transparent !important;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.fc-quick-search-mob .form-control:focus {
  border-bottom-color: var(--primary-base-color) !important;
}

.fc-quick-search-mob .form-control::-webkit-input-placeholder {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.fc-quick-search-mob .form-control::-moz-placeholder {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.fc-quick-search-mob .form-control:-ms-input-placeholder {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.fc-quick-search-mob .form-control:-moz-placeholder {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .fc-quick-search-mob-title {
    margin-left: 35px !important;
  }
}

.fc-quick-search-title-b {
  padding: 25px 20px 10px 20px;
  color: #595959;
}
@media (max-width: 767px) {
  .fc-quick-search-title-b {
    padding-top: 20px;
  }
}

.fc-quick-search-path {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 18px;
  color: #595959;
}

.fc-quick-search-nothing {
  padding: 20px;
}

.fa-arrow-left:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M16.6666 9.16669C17.1269 9.16669 17.5 9.53977 17.5 10C17.5 10.4603 17.1269 10.8334 16.6666 10.8334H5.34521L9.75588 15.2441C10.0813 15.5695 10.0813 16.0972 9.75588 16.4226C9.43046 16.748 8.90279 16.748 8.57738 16.4226L2.74412 10.5893C2.41863 10.2639 2.41863 9.73619 2.74412 9.41077L8.57738 3.57744C8.90279 3.25202 9.43046 3.25202 9.75588 3.57744C10.0813 3.90285 10.0813 4.43052 9.75588 4.75594L5.34521 9.16669H16.6666Z' fill='%232A2349'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.j-cat-select-popup .fa-arrow-left {
  margin: 0;
}
.j-cat-select-popup .fa-arrow-left:before {
  width: 20px;
  height: 20px;
}
.j-cat-select-popup .wb-f-back {
  top: 11px;
}

.fl-dyn-dropdown-label-styles li.title {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  padding: 5px 15px !important;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .fl-dyn-dropdown-label-styles li.title {
    padding: 15px 15px 0 !important;
    margin-bottom: 0;
  }
}
.fl-dyn-dropdown-label-styles li.title:not(:first-child) {
  margin-top: 5px;
}
@media (max-width: 991px) {
  .fl-dyn-dropdown-label-styles li.title:not(:first-child) {
    margin-top: 0;
  }
}
.fl-dyn-dropdown-label-styles li.title:hover {
  background-color: transparent;
}
.fl-dyn-dropdown-label-styles li.empty {
  color: #706D7A;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  padding: 10px 0 5px 20px;
  white-space: normal;
}
@media (max-width: 991px) {
  .fl-dyn-dropdown-label-styles li.empty {
    padding-top: 20px;
  }
}
.fl-dyn-dropdown-label-styles li.empty:hover {
  background-color: transparent;
}

.fl-dyn-dropdown-ident-none li.empty {
  padding-right: 20px;
  padding-bottom: 20px;
}

.fl-search-h-results {
  position: absolute;
  top: 100%;
  z-index: 10000;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background-color: white;
  padding: 10px;
  min-width: 100%;
  max-width: 100%;
  display: none;
}

.fl-search-quick-item {
  display: block;
  text-decoration: none;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  min-height: 100px;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.fl-search-quick-item:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.fl-search-quick-item + .fl-search-quick-item {
  margin-top: 10px;
}
.fl-search-quick-item .it-price {
  display: block;
  color: black;
  margin-bottom: 5px;
}

.fl-search-quick-item-l {
  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: 100px;
  height: 100px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.fl-search-quick-item-l > img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100px;
  height: 100px;
}
.fl-search-quick-item-l .it-img-box-empty {
  width: 100%;
  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;
}
.fl-search-quick-item-l .it-img-box-empty img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.fl-search-quick-item-r {
  padding-left: 20px;
  white-space: nowrap;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.fl-search-quick-title {
  display: block;
  margin-bottom: 6px;
}

.fl-search-quick-item-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fl-selected-geo-box {
  position: relative;
}
@media (min-width: 992px) {
  .fl-selected-geo-box {
    margin-right: 30px;
  }
}

.fl-search-geo-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  border: 1px solid #E5E5E5;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  background-color: white;
  z-index: 10000;
}
@media (min-width: 991.55px) {
  .fl-search-geo-dropdown {
    min-width: calc(100% + 48px);
    right: 0;
  }
}
@media (min-width: 991.55px) and (max-width: 991px) {
  .fl-search-geo-dropdown {
    max-width: 640px;
  }
}
@media (max-width: 991px) {
  .fl-search-geo-dropdown {
    width: 100%;
    right: 0;
    left: 0;
    border-radius: 0 0 5px 5px;
  }
}
.fl-search-geo-dropdown .fl-dropdown-header {
  margin-top: 0;
}
@media (min-width: 991.55px) {
  .fl-search-geo-dropdown .fl-dropdown-body {
    max-height: 67vh;
    overflow: auto;
    padding-left: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 991.55px) {
  .fl-search-geo-dropdown .fl-dropdown-body .dropdown-item .c-drop-arrow {
    display: none;
  }
}

@media (min-width: 991.55px) {
  .fl-search-geo-in-lg .fl-dropdown-header-r {
    margin-left: auto;
    min-width: 250px;
  }
}

@media (min-width: 768px) {
  .fl-auto-geo-dropdown-mob {
    display: none;
  }
}
@media (max-width: 767px) {
  .fl-auto-geo-dropdown-mob {
    position: absolute;
    top: 52px;
    z-index: 99999;
    left: 10px;
    right: 10px;
  }
}
@media (max-width: 767px) {
  .fl-auto-geo-dropdown-mob .c-close {
    top: 20px;
    right: 20px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

.fl-auto-geo-dropdown-mob-t {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 50px;
  margin-bottom: 20px;
}

.fl-auto-geo-footer-mob {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fl-areas-cities-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991px) {
  .fl-areas-cities-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
}
@media (min-width: 991.55px) {
  .fl-areas-cities-list.fl-areas [class*=col-] {
    min-width: 210px;
  }
}
@media (max-width: 991px) {
  .fl-areas-cities-list [class*=col-] {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
}
@media (min-width: 991.55px) {
  .fl-areas-cities-list [class*=col-] {
    padding: 0 10px;
    min-width: 180px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.fl-areas-cities-list ul {
  overflow: hidden;
  list-style-type: none;
  position: relative;
  margin-left: 0;
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}

.fl-letter {
  position: absolute;
  left: 0;
  font-size: 14px;
  color: #595959;
}
@media (max-width: 991px) {
  .fl-letter {
    display: none !important;
  }
}

.fl-city-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-top: 0 !important;
}
.fl-city-item:hover a, .fl-city-item:hover .hidden-link {
  background: #F4F4F4;
}
.fl-city-item:hover a, .fl-city-item:hover .hidden-link,
.fl-city-item:hover .fl-city-item-letter {
  color: var(--text-color) !important;
}
@media (min-width: 991.55px) {
  .fl-city-item a, .fl-city-item .hidden-link {
    display: block;
    padding: 8px 10px;
    border-radius: 2px;
    line-height: 1.4;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .fl-city-item a:hover, .fl-city-item .hidden-link:hover {
    text-decoration: none;
  }
}
@media (min-width: 991.55px) {
  .fl-city-item .c-drop-arrow {
    display: none;
  }
}

.fl-city-item-letter {
  font-weight: bold;
  position: absolute;
  left: 10px;
  top: 5px;
  color: #0096C7;
  color: rgba(var(--links-color));
  line-height: 20px;
}

.fl-aside-filter {
  width: 100%;
}

.fl-aside-filter-item {
  display: block;
}
@media (max-width: 991px) {
  .fl-aside-filter-item {
    color: var(--text-color);
  }
}
@media (min-width: 991.55px) {
  .fl-aside-filter-item {
    border: 1px solid #E5E5E5;
    border-radius: 5px;
    background-color: white;
  }
}
.fl-aside-filter-item + .fl-aside-filter-item {
  margin-top: 10px;
}
.fl-aside-filter-item.fl-aside-filter-item-seek {
  border: none;
  margin-top: 18px;
}
.fl-aside-filter-item.fl-aside-filter-item-seek .fl-aside-filter-item-in {
  padding: 0;
}
@media (min-width: 991.55px) {
  .fl-aside-filter-item.selected {
    background: #F2FAFC;
    border: 1px solid #A9DCEC;
    background: white;
    border: 1px solid rgba(var(--filter-active-color), 0.3);
  }
  .fl-aside-filter-item.selected .fl-aside-filter-item-val {
    color: #0096C7;
    color: rgba(var(--filter-active-color));
  }
}

.fl-aside-filter-item-sub + .fl-aside-filter-item-sub {
  margin-top: 10px;
}

.fl-aside-filter-body {
  border-top: 1px solid #EBEBEB;
  background: white;
  border-radius: 0 0 5px 5px;
}
.fl-aside-filter-body .c-price-slider {
  padding: 0 20px;
}
.fl-aside-filter-body .form-check + .form-check {
  margin-top: 10px;
}
.fl-aside-filter-body .form-check-label .c-count {
  margin-left: 3px;
}

.fl-aside-filter-dropdown {
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.fl-aside-filter-dropdown .dropdown-toggle {
  text-transform: uppercase;
  color: #0096C7;
  color: rgba(var(--links-color));
}

.fl-aside-filter-dropdown-title {
  margin-right: 6px;
}

.fl-aside-filter-item-in {
  position: relative;
  padding: 20px 0;
}
.fl-aside-filter-item-in .form-check-label {
  display: block;
  padding: 5px 20px;
}
.fl-aside-filter-item-in.ps {
  max-height: 400px;
}

@media (min-width: 768px) {
  .fl-aside-scroll.ps {
    position: relative;
    max-height: 400px;
  }
}

.fl-aside-filter-item-title {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-color);
}
@media (max-width: 991px) {
  .fl-aside-filter-item-title {
    font-size: 13px;
    line-height: 18px;
    color: #595959;
  }
}

@media (min-width: 991.55px) {
  .fl-aside-filter-item-val {
    font-size: 13px;
    line-height: 20px;
    color: #595959;
  }
}

.fl-aside-filter-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 18px;
}
.fl-aside-filter-footer .c-ico-link {
  margin-left: auto;
  padding-left: 10px;
}
.fl-aside-filter-footer .c-ico-link .ico {
  max-width: 13px;
  min-width: inherit;
}
.fl-aside-filter-footer .c-ico-link > span {
  font-size: 13px;
}

.fl-aside-filter-item-head {
  cursor: pointer;
  padding: 10px 30px 7px 10px;
  position: relative;
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .fl-aside-filter-item-head {
    padding: 0 30px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
}
.fl-aside-filter-item-head .c-drop-arrow {
  position: absolute;
  width: 10px;
  height: 4px;
  right: 10px;
  top: 50%;
  text-align: center;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transform-origin: 48% 58%;
      -ms-transform-origin: 48% 58%;
          transform-origin: 48% 58%;
}
@media (max-width: 991px) {
  .fl-aside-filter-item-head .c-drop-arrow {
    right: 0;
  }
}
.fl-aside-filter-item-head:not(.collapsed) .c-drop-arrow {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.fl-search-h-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 100%;
}
@media (max-width: 991px) {
  .fl-search-h-line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    border: none !important;
  }
}
@media (min-width: 991.55px) {
  .fl-search-h-line {
    border-radius: 3px;
    border: 1px solid var(--primary-base-color);
    background-color: white;
    height: 48px;
  }
}

@media (max-width: 991px) {
  .fl-search-h-cat-box {
    position: relative;
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 991.55px) {
  .fl-search-h-cat {
    background-color: var(--primary-base-color);
    text-decoration: none !important;
    padding: 0 25px 0 20px;
    min-width: 250px;
    max-width: 250px;
    height: 48px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: -1px 0 -1px -1px;
    border-radius: 3px 0 0 3px;
  }
}
@media (min-width: 991.55px) and (max-width: 991px) {
  .fl-search-h-cat {
    min-width: 170px;
    max-width: 170px;
  }
}
.fl-search-h-cat.open .c-drop-arrow {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.fl-search-h-cat.open:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (min-width: 991.55px) {
  .fl-search-h-cat .c-drop-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 20px;
    background-image: url(../css/images/arrow-white.svg?5e2dd1544de69f2dcade609f427ac4d5);
  }
}

.fl-search-h-cat-title {
  font-size: 16px;
}
@media (min-width: 991.55px) {
  .fl-search-h-cat-title {
    color: white;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    text-overflow: ellipsis;
    max-width: 93%;
  }
  .fl-search-h-cat-title:after {
    display: none;
  }
}
@media (max-width: 991px) {
  .fl-search-h-cat-title {
    color: var(--text-color);
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding-right: 10px;
  }
}

@media (min-width: 991.55px) {
  .fl-search-h-input-box {
    height: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    position: relative;
  }
}
@media (max-width: 991px) {
  .fl-search-h-input-box {
    padding: 11px 15px !important;
    height: 42px;
    border-radius: 5px;
  }
}

.rp-fl-h noindex {
  width: 100%;
}

.fl-search-h-input {
  padding-right: 50px;
  border: none !important;
  margin-bottom: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  border-radius: 3px;
}
@media (min-width: 991.55px) {
  .fl-search-h-input {
    padding-right: 20px;
    padding-left: 20px;
    height: 100%;
  }
}

@media (min-width: 991.55px) {
  .fl-geo-input {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .fl-geo-input .ico {
    display: none;
  }
}

@media (min-width: 768px) {
  .fl-geo-blocks-wrap {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
}

.fl-search-geo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (min-width: 991.55px) {
  .fl-search-geo {
    padding: 0 15px;
    position: relative;
    margin-left: auto;
    height: 100%;
  }
  .fl-search-geo:before {
    content: "";
    display: block;
    width: 1px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: #E5E5E5;
  }
}
@media (min-width: 991.55px) and (max-width: 991px) {
  .fl-search-geo {
    width: 150px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
@media (min-width: 992px) {
  .fl-search-geo {
    min-width: 195px;
    max-width: 250px;
  }
}
@media (max-width: 991px) {
  .fl-search-geo {
    position: relative;
  }
  .fl-search-geo .c-close {
    display: none;
  }
}
@media (min-width: 991.55px) {
  .fl-search-geo .fl-dyn-dropdown {
    top: 100%;
    right: 3px;
    left: auto;
  }
}
.fl-search-geo:empty {
  display: none;
}
.fl-search-geo .fl-dropdown-header {
  margin-top: 0;
}

@media (min-width: 991.55px) {
  .fl-search-geo-region .badge {
    min-width: 20px;
    text-align: center;
    height: 18px;
    line-height: 18px;
    padding: 0;
    margin-right: 16px;
  }
}
@media (max-width: 991px) {
  .fl-search-geo-region .badge {
    display: none;
  }
}

.fl-selected-geo {
  color: var(--text-color) !important;
  text-decoration: none !important;
  max-width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.fl-selected-geo.open + .fl-search-geo-dropdown {
  display: block;
}
@media (max-width: 991px) {
  .fl-selected-geo.open:after {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.fl-selected-geo .ico {
  max-width: 14px;
  min-width: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
}
@media (min-width: 991.55px) {
  .fl-selected-geo .c-drop-arrow {
    display: none;
  }
}

.fl-selected-geo-title {
  display: inline-block;
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .fl-selected-geo-title {
    display: block !important;
  }
}
@media (min-width: 991.55px) and (max-width: 991px) {
  .fl-selected-geo-title {
    max-width: 80px;
  }
}

.fl-search-container {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .fl-search-container.fl-on-list-page {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    visibility: visible !important;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10010;
  }
  .fl-search-container.fl-on-list-page.down {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .fl-search-container.fl-on-list-page.visible {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}

@media (max-width: 991px) {
  body.is-filter-opened .fl-search-container {
    position: static !important;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    -webkit-transition: all;
    transition: all;
  }
}

.fl-search-h {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  /*filter at main page*/
  /*filter at list page*/
}
@media (max-width: 575px) {
  .fl-search-h {
    margin: 0 -15px;
  }
}
@media (max-width: 991px) {
  .fl-search-h {
    padding: 10px;
  }
  .fl-search-h .fl-search-h-next .fl-search-h-cat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.fl-search-h .checkbox input[type=checkbox] {
  display: none;
}
.fl-search-h .checkbox input[type=checkbox]:disabled {
  cursor: not-allowed;
}
.fl-search-h .checkbox input[type=checkbox]:disabled + .rn-ico-check {
  opacity: 0.5;
}
.fl-search-h select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (min-width: 991.55px) {
  .fl-search-h.fl-search-h-company:before {
    display: none;
  }
}
.fl-search-h:before {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  right: 0;
  left: 0;
  background-color: var(--primary-base-color);
}
@media (min-width: 991.55px) {
  .fl-search-h:before {
    opacity: 0.1;
  }
}
@media (max-width: 991px) {
  .fl-search-h:before {
    bottom: 0;
    top: 0;
  }
}
.fl-search-h form {
  margin-bottom: 0;
}
.fl-search-h input[type=hidden] {
  display: none !important;
}
@media (max-width: 991px) {
  .fl-search-h + .m-banner {
    margin-bottom: 0;
  }
}
.fl-search-h > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
}
.fl-search-h .container {
  position: relative;
}
@media (max-width: 991px) {
  .fl-search-h .container:before {
    content: "";
    padding: 10px 0;
    background-color: #EAF9F9;
    position: absolute;
    top: -10px;
    left: 5px;
    right: 5px;
    bottom: -10px;
    z-index: -1;
    display: block;
  }
}
@media (min-width: 991.55px) {
  .fl-search-h.fl-search-h-index:before {
    display: none;
  }
}
@media (max-width: 991px) {
  .fl-search-h.fl-search-h-index {
    /*.fl-search-h-cat-box {
      display: none !important;
    }*/
  }
  .fl-search-h.fl-search-h-index .fl-search-h-line {
    padding-bottom: 0;
  }
}
@media (min-width: 991.55px) {
  .fl-search-h.fl-search-h-list:before {
    display: none;
  }
}

.fl-search-h-help::before {
  display: none;
}

.fl-search-h-form.query-active .fl-search-h-input-filter-toggle {
  display: none;
}
.fl-search-h-form.query-active .fl-search-h-input-filter-close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (max-width: 991px) {
  .fl-search-h-form .fl-search-geo,
  .fl-search-h-form .fl-search-h-cat-box,
  .fl-search-h-form .fl-search-dynamics {
    display: none;
  }
}

.fl-search-panel {
  position: relative;
  padding: 0 10px;
}
@media (max-width: 991px) {
  .fl-search-panel {
    padding: 10px;
  }
}
.fl-search-panel > * {
  position: relative;
}
.fl-search-panel:before {
  display: block !important;
}

@media (max-width: 991px) {
  .fl-search-btn {
    visibility: hidden;
    position: absolute !important;
    left: -200px;
  }
}

.fl-search-h-input-filter-toggle,
.fl-search-h-input-filter-close {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  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;
  padding: 10px 15px;
}
@media (min-width: 991.55px) {
  .fl-search-h-input-filter-toggle,
  .fl-search-h-input-filter-close {
    display: none;
  }
}
.fl-search-h-input-filter-toggle:before,
.fl-search-h-input-filter-close:before {
  content: "";
  border-left: 1px solid #E5E5E5;
  width: 1px;
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
}
.fl-search-h-input-filter-toggle .ico,
.fl-search-h-input-filter-close .ico {
  color: #999999;
  font-size: 18px;
}

.fl-search-h-input-filter-close {
  display: none;
}
@media (min-width: 991.55px) {
  .fl-search-h-input-filter-close {
    display: none !important;
  }
}
.fl-search-h-input-filter-close:before {
  display: none;
}

@media (max-width: 767px) {
  .fl-search-h-input-filter-toggle .c-count-dot {
    position: absolute;
    top: 5px;
    right: 8px;
    border-width: 2px;
    width: 13px;
    height: 13px;
  }
}
@media (min-width: 768px) {
  .fl-search-h-input-filter-toggle .c-count-dot {
    display: none;
  }
}

@media (max-width: 991px) {
  .fl-search-h-form.wb-f-filter,
  .wb-f-filter {
    /*mobile search loc active*/
  }
  .fl-search-h-form.wb-f-filter.fc-mob-search-active .fc-quick-search-mob,
  .wb-f-filter.fc-mob-search-active .fc-quick-search-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .fl-search-h-form.wb-f-filter.fc-mob-search-active .wb-f-panel-title,
  .fl-search-h-form.wb-f-filter.fc-mob-search-active .wb-f-close:not(.wb-f-search-close),
  .wb-f-filter.fc-mob-search-active .wb-f-panel-title,
  .wb-f-filter.fc-mob-search-active .wb-f-close:not(.wb-f-search-close) {
    display: none;
  }
  .fl-search-h-form.wb-f-filter.fc-mob-search-active .wb-f-back,
  .wb-f-filter.fc-mob-search-active .wb-f-back {
    z-index: 999999;
  }
  .fl-search-h-form.wb-f-filter .fl-search-geo,
  .fl-search-h-form.wb-f-filter .fl-search-h-cat-box,
  .fl-search-h-form.wb-f-filter .fl-search-dynamics,
  .wb-f-filter .fl-search-geo,
  .wb-f-filter .fl-search-h-cat-box,
  .wb-f-filter .fl-search-dynamics {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .fl-search-h-form.wb-f-filter .fl-search-h-input-box,
  .wb-f-filter .fl-search-h-input-box {
    display: none !important;
  }
  /*mobile search filter*/
  .fl-search-geo .fc-quick-search-mob {
    background-color: #F4F4F4;
  }
  .fl-search-geo .fc-quick-search-mob .form-control {
    padding-left: 53px;
  }
  .fl-dropdown-suggest {
    padding-top: 48px;
  }
  .wb-f-item,
  .wb-f-item .form-check-label {
    padding: 10px 20px;
    background-color: white;
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .wb-f-item .c-drop-arrow,
  .wb-f-item .form-check-label .c-drop-arrow {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .wb-f-item.fl-search-dyn-fromto {
    padding-bottom: 25px;
  }
  .wb-f-item.fl-search-dyn-fromto + .divider {
    display: none;
  }
  .wb-f-item.fl-search-dyn-fromto .form-control {
    border-bottom: 2px solid #EBEBEB;
    border-left: none;
    border-right: none;
    border-top: none;
    margin-bottom: 0;
    border-radius: 0;
    padding: 5px 0 15px 0;
    height: auto;
    max-width: inherit;
  }
  .wb-f-item.fl-search-dyn-fromto .form-control:focus {
    border-bottom-color: var(--primary-base-color) !important;
  }
  .wb-f-filters {
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.06);
            box-shadow: 0 4px 4px rgba(0, 0, 0, 0.06);
  }
  /*main filter panel*/
  .fl-search-geo-in,
  .fl-search-geo-in-lg,
  .fl-dyn-dropdown,
  .wb-f-filter.show,
  .wb-f-filter.wb-f-filter-showed {
    position: fixed;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    /*important изза выпадаек дин свойств*/
    z-index: 999998;
    background-color: white;
  }
  .fl-search-geo-in.open, .fl-search-geo-in.show,
  .fl-search-geo-in-lg.open,
  .fl-search-geo-in-lg.show,
  .fl-dyn-dropdown.open,
  .fl-dyn-dropdown.show,
  .wb-f-filter.show.open,
  .wb-f-filter.show.show,
  .wb-f-filter.wb-f-filter-showed.open,
  .wb-f-filter.wb-f-filter-showed.show {
    border: none !important;
    border-radius: 0;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .fl-search-geo {
    width: 100%;
  }
  .fl-search-geo .fc-quick-search-mob {
    position: fixed;
    top: 0;
    bottom: auto;
    z-index: 10020;
    height: 48px;
  }
  /*if filter opened*/
  .wb-f-filter.wb-f-filter-showed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wb-f-filter.wb-f-filter-showed .wb-f-panel-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .wb-f-filter.wb-f-filter-showed .fl-search-h-input-filter-toggle {
    display: none;
  }
  .wb-f-filter.wb-f-filter-showed .fl-search-h-input-box {
    border-bottom: 1px solid #EBEBEB;
  }
  .wb-f-filter.wb-f-filter-showed .fl-search-h-input {
    padding: 20px;
    height: auto;
  }
  .wb-f-filter.wb-f-filter-showed .wb-f-panel-footer {
    display: block;
  }
  .wb-f-filter.wb-f-filter-showed .wb-f-panel-body {
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 40px;
  }
  /*end if filter opened*/
  /*mobile category / locations select*/
  .wb-f-mob-selector,
  a.wb-f-mob-selector,
  .hidden-link.dropdown-item.wb-f-mob-selector {
    font-size: 16px;
    height: auto !important;
    background-color: white !important;
    border-bottom: 1px solid #EBEBEB;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-decoration: none;
    padding: 10px 20px !important;
    color: var(--text-color) !important;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    line-height: inherit !important;
    min-height: 40px;
    position: relative;
  }
  .wb-f-mob-selector::after,
  a.wb-f-mob-selector::after,
  .hidden-link.dropdown-item.wb-f-mob-selector::after {
    content: "";
    display: block;
    width: 16px;
    min-height: 23px;
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #FFFFFF), color-stop(133.33%, rgba(255, 255, 255, 0)));
    background: linear-gradient(270deg, #FFFFFF 50%, rgba(255, 255, 255, 0) 133.33%);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 1px;
    z-index: 10;
  }
  .wb-f-mob-selector:hover,
  a.wb-f-mob-selector:hover,
  .hidden-link.dropdown-item.wb-f-mob-selector:hover {
    background-color: transparent !important;
  }
  .wb-f-mob-selector:after,
  a.wb-f-mob-selector:after,
  .hidden-link.dropdown-item.wb-f-mob-selector:after {
    display: none;
  }
  .wb-f-mob-selector .c-drop-arrow,
  a.wb-f-mob-selector .c-drop-arrow,
  .hidden-link.dropdown-item.wb-f-mob-selector .c-drop-arrow {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    margin-left: auto;
    margin-top: -1px;
  }
  .wb-f-mob-selector .fl-search-cats-item-name,
  a.wb-f-mob-selector .fl-search-cats-item-name,
  .hidden-link.dropdown-item.wb-f-mob-selector .fl-search-cats-item-name {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .wb-f-mob-selector.form-check-label:after,
  a.wb-f-mob-selector.form-check-label:after,
  .hidden-link.dropdown-item.wb-f-mob-selector.form-check-label:after {
    display: none;
  }
  .wb-f-mob-selector-reset {
    position: fixed;
    bottom: 48px;
  }
  .wb-f-panel-body {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .wb-f-panel-header,
  .wb-f-panel-footer {
    display: none;
  }
  .wb-f-panel-header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 15px;
    position: relative;
    background-color: #F4F4F4;
    min-height: 60px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .wb-f-panel-header-lg {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .wb-f-panel-header-user {
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    overflow: hidden;
  }
  .wb-f-panel-user-title {
    margin-left: 20px;
    font-weight: bold;
  }
  .wb-f-panel-title {
    font-size: 22px;
    font-weight: bold;
    margin-right: 10px;
    margin-left: 35px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
  .wb-f-panel-title:first-child {
    margin-left: 0;
  }
  .wb-f-panel-title::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 20px;
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #F4F4F4), color-stop(133.33%, rgba(255, 255, 255, 0)));
    background: linear-gradient(270deg, #F4F4F4 50%, rgba(255, 255, 255, 0) 133.33%);
  }
  .wb-f-panel-title svg {
    width: 20px;
    height: 20px;
  }
  .wb-f-panel-title svg path {
    fill: currentColor;
  }
  .wb-f-filter-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 290px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 100%;
    max-height: 100%;
  }
  .wb-f-filter-panel .l-header-nav {
    padding: 24px 20px;
    margin: 0;
    max-width: inherit;
    overflow: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .wb-f-panel-body {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .wb-f-panel-body::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
  }
  .wb-f-cats-body-main .wb-f-item {
    border-top: 0 !important;
  }
  .wb-f-cats-body-main .wb-f-item:before {
    content: "";
    border-bottom: 1px solid #EBEBEB;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin-left: 58px;
    margin-right: 20px;
  }
  .wb-f-cats-body-main .wb-f-item:last-of-type:before {
    display: none;
  }
  .wb-f-panel-footer {
    display: none;
  }
  .wb-f-panel-footer .ico {
    max-height: 14px;
    max-width: 14px;
    color: white;
    fill: white;
    margin-right: 10px;
  }
  .wb-f-panel-footer .btn {
    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;
  }
  .wb-f-panel-footer .btn.multiple {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-height: 1 !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wb-f-panel-footer .btn.loading:before {
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
  }
  .wb-f-close,
  .wb-f-back {
    margin-left: auto;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .wb-f-close .ico,
  .wb-f-back .ico {
    min-width: 18px;
    max-width: 18px;
    max-height: 18px;
    font-size: 18px;
    margin-right: 0;
  }
  .wb-f-back-txt {
    display: none;
  }
  .wb-f-close {
    margin: -4px -10px -10px -10px;
    padding: 10px;
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-left: auto;
  }
  .wb-f-close .ico {
    min-width: 20px;
    max-width: 20px;
    max-height: 20px;
    margin-right: 0;
  }
  .wb-f-close .ico path {
    fill: #999999;
  }
  .wb-f-search-btn .ico {
    min-width: 18px !important;
    max-width: 18px !important;
    height: 18px !important;
    max-height: 18px !important;
  }
  .wb-f-back {
    padding-left: 0;
    position: absolute;
    left: 10px;
    top: 6px;
    width: 35px;
    height: 35px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .wb-f-back .ico {
    color: var(--primary-base-color);
  }
  .wb-f-back .ico path {
    fill: var(--primary-base-color);
  }
  .wb-f-box {
    position: relative;
  }
  .wb-f-box + .wb-f-box {
    margin-top: 10px;
  }
  .wb-f-box + .wb-f-box:before {
    content: "";
    height: 11px;
    position: absolute;
    top: -11px;
    width: 100%;
    display: block;
    background-color: #F4F4F4;
    z-index: 800;
  }
  .wb-f-box.wb-f-mob-selector {
    border-bottom: 0;
  }
  .wb-f-dyn-list {
    margin: -10px -20px;
  }
  .wb-f-dyn-list .wb-f-item {
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .wb-f-dyn-list li.active .wb-f-item {
    background-color: #EAF9F9;
  }
  .wb-f-item {
    position: relative;
    padding: 15px 20px;
    background: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--text-color) !important;
    font-size: 14px;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #E5E5E5;
  }
  .wb-f-item .ico {
    font-size: 18px;
    max-width: 20px;
    min-width: 20px;
    height: 20px;
    margin-right: 18px;
    text-align: center;
  }
  .wb-f-item span {
    display: block;
    max-width: 100%;
    overflow: hidden;
  }
  .wb-f-item.flex-column {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .wb-f-item.flex-column .wb-f-item-l-t {
    margin-bottom: 13px;
  }
  .wb-f-item.f-overflow::after {
    content: "";
    display: block;
    width: 16px;
    min-height: 23px;
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #FFFFFF), color-stop(133.33%, rgba(255, 255, 255, 0)));
    background: linear-gradient(270deg, #FFFFFF 50%, rgba(255, 255, 255, 0) 133.33%);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 1px;
    z-index: 10;
  }
  .wb-f-item.f-overflow:after {
    right: 14px;
    top: 0;
    bottom: 0;
  }
  .wb-f-item.wb-f-item-divided {
    padding: 0 0 10px 0;
    background-color: #F4F4F4;
  }
  .wb-f-item-divided-in {
    background-color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 11px 20px;
  }
  .wb-f-item-l {
    font-size: 14px;
    text-overflow: ellipsis;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    max-width: 100%;
    overflow: hidden;
  }
  .wb-f-item-l-t {
    font-size: 13px;
    line-height: 16px;
    color: #595959;
    display: block;
  }
  .wb-f-item-l-b {
    color: var(--text-color);
  }
  .wb-f-item-l .c-drop-arrow,
  .wb-f-item-r .c-drop-arrow {
    max-width: 11px;
    min-width: 11px;
    min-height: 7px;
  }
  .wb-f-item-l .switch,
  .wb-f-item-r .switch {
    margin-bottom: 0;
  }
  .wb-f-item-r {
    padding-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .wb-f-item-r .c-drop-arrow {
    margin-right: 0;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .wb-f-filter-select > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(100% - 20px);
    display: inline-block;
    margin-right: 14px;
    color: var(--primary-base-color);
    font-size: 14px;
    line-height: 44px;
  }
  .wb-f-reset-loc {
    margin-top: 20px;
    padding: 0 20px;
  }
  .wb-f-reset-loc .btn {
    width: 100%;
    border: 1px solid #E5E5E5 !important;
  }
  .wb-f-loc-search {
    padding: 0 20px;
    background-color: white;
    border-bottom: 1px solid #EBEBEB;
  }
  .wb-f-loc-search-input {
    position: relative;
    margin: 10px -20px -12px -20px;
    min-width: calc(100% + 70px);
  }
  .wb-f-loc-search-input .ico {
    position: absolute;
    top: 13px;
    left: 20px;
    width: 16px;
    height: 16px;
  }
  .wb-f-loc-search-input input.form-control {
    height: auto;
    color: var(--text-color);
    font-size: 16px;
    padding: 10px 20px 10px 54px;
    display: block;
    width: 100%;
    background-color: transparent;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0;
    border-bottom: 2px solid transparent;
  }
  .wb-f-loc-search-input input.form-control.autocomplete-progress {
    background-position: right 25px center;
  }
  .wb-f-loc-search-input input.form-control:focus {
    border-bottom-color: var(--primary-base-color) !important;
  }
  .wb-f-loc-search-input input.form-control::-webkit-input-placeholder {
    color: #595959;
  }
  .wb-f-loc-search-input input.form-control::-moz-placeholder {
    color: #595959;
  }
  .wb-f-loc-search-input input.form-control:-ms-input-placeholder {
    color: #595959;
  }
  .wb-f-loc-search-input input.form-control:-moz-placeholder {
    color: #595959;
    font-size: 16px;
  }
  .wb-f-loc-search-input .autocomplete {
    border-radius: 0;
    border: none;
  }
  .wb-f-filter-inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 11px;
  }
  .wb-f-res-view-toggle {
    background-color: white;
    padding: 15px 20px;
    text-align: center;
  }
  .wb-f-res-view-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .wb-f-res-view-title {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 16px;
    color: #595959;
    padding: 10px 0;
    text-align: center;
    background: #F4F4F4;
  }
  .wb-f-res-view-item {
    min-width: 76px;
    max-width: 76px;
    max-height: 50px;
    min-height: 50px;
    margin: 0 15px;
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--text-color);
  }
  .wb-f-res-view-item.active .ico path {
    fill: var(--primary-base-color);
  }
  .wb-f-res-view-item svg.ico {
    max-width: 18px;
    height: 18px;
    margin-bottom: 3px;
    margin-right: 0 !important;
  }
  .wb-f-res-view-item svg.ico path {
    fill: #999999;
  }
  .wb-f-res-view-box-mob {
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
  }
  .wb-f-sm-title {
    color: #595959;
    font-size: 13px;
    line-height: 18px;
  }
}
@media (min-width: 991.55px) {
  .wb-f-close,
  .wb-f-back {
    display: none;
  }
}

@media (min-width: 991.55px) {
  .wb-f-back.fl-search-back {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

@media (max-width: 767px) {
  .wb-f-curr {
    min-width: 65px;
  }
}

@media (min-width: 992px) {
  .wb-f-el-filter-for-mob {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .wb-f-el-filter-for-desktop {
    display: none !important;
  }
}

.wb-f-item .form-control {
  padding: 6px 10px;
  height: 30px;
  min-height: 30px;
}

.rp-btn-show-map {
  border: 1px solid #E8EDEF;
  border-radius: 4px;
  color: white;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
}
@media (max-width: 991.55px) {
  .rp-btn-show-map {
    width: 100%;
    height: 44px;
    margin-top: 10px;
    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;
  }
}
.rp-btn-show-map:hover {
  background-color: white;
  opacity: 1;
  border-color: white;
}
.rp-btn-show-map .ico {
  margin-right: 7px;
}
.rp-btn-show-map .ico path {
  fill: var(--primary-base-color);
}

@media (min-width: 991.55px) {
  .fl-dyn-dropdown-footer {
    padding: 0;
    border-top: 0;
  }
}
@media (min-width: 991.55px) {
  .fl-dyn-dropdown-footer .btn-success {
    display: none;
  }
}

@media (min-width: 991.55px) {
  .rp-fl-dyn-reset {
    padding: 15px 0 15px 0;
    border-top: 1px solid #E5E5E5;
    width: 100%;
  }
}
@media (min-width: 991.55px) {
  .rp-fl-dyn-reset .form-check-label {
    font-size: 14px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    color: var(--primary-base-color);
  }
  .rp-fl-dyn-reset .form-check-label span {
    gap: 10px;
  }
}
.rp-fl-dyn-reset .form-check-label:hover .ico path {
  fill: var(--secondary-base-color);
}
.rp-fl-dyn-reset .form-check-label:hover span {
  color: rgba(var(--links-color)) !important;
}
.rp-fl-dyn-reset .form-check-label .ico {
  margin-right: 6px;
}

@media (min-width: 991.55px) {
  .fl-search-geo-dropdown {
    right: auto;
    left: 0;
  }
}
@media (min-width: 991.55px) and (max-width: 1200px) {
  .fl-search-geo-dropdown {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media (min-width: 991.55px) {
  .fl-search-geo {
    min-width: 170px;
    max-width: 170px;
  }
}
@media (min-width: 991.55px) and (max-width: 1200px) {
  .fl-search-geo .fl-geo-input {
    position: static;
  }
}
.fl-search-geo:before {
  display: none !important;
}
@media (min-width: 991.55px) {
  .fl-search-geo + .fl-search-geo {
    border-left: 1px solid #E5E5E5;
  }
}
@media (min-width: 991.55px) {
  .fl-search-geo .fl-dyn-dropdown {
    right: 0;
  }
}
.fl-search-geo .c-close {
  text-align: center;
}
@media (min-width: 991.55px) and (max-width: 1200px) {
  .fl-search-geo .c-close {
    display: none;
  }
}
.fl-search-geo .c-close .ico {
  width: 12px;
  height: 12px;
}

@media (min-width: 991.55px) {
  .fl-geo-input .form-control {
    padding-right: 20px !important;
    text-overflow: inherit;
  }
}
@media (min-width: 991.55px) {
  .fl-geo-input::after {
    content: "";
    display: block;
    width: 16px;
    min-height: 23px;
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, #FFFFFF), color-stop(133.33%, rgba(255, 255, 255, 0)));
    background: linear-gradient(270deg, #FFFFFF 50%, rgba(255, 255, 255, 0) 133.33%);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 1px;
    z-index: 10;
  }
  .fl-geo-input:after {
    width: 15px;
    right: 13px;
  }
}

@media (min-width: 991.55px) {
  .fl-geo-input .form-control:focus::-webkit-input-placeholder {
    color: #595959;
  }
}

@media (min-width: 991.55px) {
  .fl-selected-geo > .ico {
    max-width: 12px;
    min-width: 12px;
  }
}

.fl-geo-blocks-wrap {
  background-color: white;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}
@media (min-width: 991.55px) {
  .fl-geo-blocks-wrap {
    height: 44px;
  }
}
@media (max-width: 991.55px) {
  .fl-geo-blocks-wrap {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .fl-geo-blocks-wrap {
    margin-right: 10px;
  }
}

@media (max-width: 991.55px) {
  .fl-dropdown-header .fl-search-all-region {
    display: none !important;
  }
}

@media (max-width: 991.55px) {
  .fl-dropdown-body .fl-search-all-region {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (max-width: 991.55px) {
  .rp-h-form:not(.wb-f-filter-showed) .rp-fl-dynamics {
    display: none !important;
  }
}
@media (max-width: 991.55px) {
  .rp-h-form:not(.wb-f-filter-showed) .fl-geo-blocks-wrap {
    display: none !important;
  }
}
@media (max-width: 991.55px) {
  .rp-h-form:not(.wb-f-filter-showed) .rp-h-line-in {
    display: none !important;
  }
}
.rp-h-form .fa-search {
  height: 20px;
}
.rp-h-form .fa-search:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M8.04938 16.0919C9.83702 16.0919 11.5735 15.4955 12.9838 14.397L18.3045 19.7176C18.7019 20.1015 19.3353 20.0905 19.7192 19.693C20.0936 19.3053 20.0936 18.6906 19.7192 18.303L14.3985 12.9823C17.1243 9.47353 16.4895 4.41944 12.9807 1.69368C9.47196 -1.03208 4.41791 -0.397346 1.69215 3.11144C-1.03361 6.62023 -0.398872 11.6743 3.10992 14.4001C4.52252 15.4975 6.26058 16.0928 8.04938 16.0919ZM3.77429 3.77274C6.13538 1.41161 9.96347 1.41156 12.3246 3.77266C14.6857 6.13375 14.6858 9.96183 12.3247 12.323C9.9636 14.6841 6.13551 14.6841 3.77438 12.3231C3.77434 12.323 3.77434 12.323 3.77429 12.323C1.4132 9.97908 1.39929 6.16495 3.74318 3.80386C3.75354 3.79346 3.76389 3.7831 3.77429 3.77274Z' fill='%232A2349'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.rp-h-form.wb-f-filter-showed .wb-f-item {
  padding: 15px 0 !important;
  height: auto;
  border-radius: 0;
}
@media (max-width: 767px) {
  .rp-h-form.wb-f-filter-showed .wb-f-item {
    max-width: calc(100% - 30px);
    margin: 0 auto !important;
  }
  .rp-h-form.wb-f-filter-showed .wb-f-item .form-control {
    width: 100%;
    max-width: 100%;
  }
  .rp-h-form.wb-f-filter-showed .wb-f-item .wb-f-mob-selector {
    width: calc(100% - 30px) !important;
  }
}
.rp-h-form.wb-f-filter-showed .wb-f-item b {
  font-weight: 400;
}
.rp-h-form.wb-f-filter-showed .fl-geo-blocks-wrap {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.rp-h-form.wb-f-filter-showed .c-drop-arrow {
  width: 15px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='16' viewBox='0 0 15 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.79795 14.25L3.75 13.2349L9.15411 8L3.75 2.76513L4.79795 1.75L11.25 8L4.79795 14.25Z' fill='%23999999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: rotate(0) translateY(-50%) !important;
      -ms-transform: rotate(0) translateY(-50%) !important;
          transform: rotate(0) translateY(-50%) !important;
  right: 0;
  position: absolute;
  top: 50%;
}
.rp-h-form.wb-f-filter-showed .c-shadow-overflow::after {
  right: 20px;
}
.rp-h-form.wb-f-filter-showed .fl-aside-filter-item-val::after {
  right: -5px;
}
.rp-h-form.wb-f-filter-showed .wb-f-item.fl-search-h-input-box {
  display: none !important;
}
.rp-h-form.wb-f-filter-showed .wb-f-panel-footer {
  background: #F5F5F5;
  padding: 15px;
}
.rp-h-form.wb-f-filter-showed .fl-dyn-dropdown {
  max-height: 100%;
}
.rp-h-form.wb-f-filter-showed .wb-f-back {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 5px;
}
.rp-h-form.wb-f-filter-showed .wb-f-close .ico, .rp-h-form.wb-f-filter-showed .wb-f-back .ico {
  min-width: 20px;
  max-width: 20px;
  max-height: 20px;
  font-size: 20px;
}
.rp-h-form.wb-f-filter-showed .fa-arrow-left:before {
  width: 20px;
  height: 20px;
}
.rp-h-form.wb-f-filter-showed .fl-city-item .wb-f-mob-selector {
  padding: 15px 0 !important;
  margin: 0 15px;
}
.rp-h-form.wb-f-filter-showed .fl-search-all-region {
  position: relative;
  padding: 15px 30px !important;
}
.rp-h-form.wb-f-filter-showed .fl-search-all-region::after, .rp-h-form.wb-f-filter-showed .fl-search-all-region::before {
  position: absolute;
  top: 0;
  display: block;
  content: "";
  width: 15px;
  height: 100%;
  background: #F5F5F5;
}
.rp-h-form.wb-f-filter-showed .fl-search-all-region::after {
  left: 0;
}
.rp-h-form.wb-f-filter-showed .fl-search-all-region::before {
  right: 0;
}
.rp-h-form.wb-f-filter-showed .wb-f-box + .wb-f-box {
  margin-top: 15px;
}
.rp-h-form.wb-f-filter-showed .fl-dyn-dropdown-label-styles .wb-f-mob-selector,
.rp-h-form.wb-f-filter-showed .dropdown-menu li a, .rp-h-form.wb-f-filter-showed .dropdown-menu li button, .rp-h-form.wb-f-filter-showed a.dropdown-item, .rp-h-form.wb-f-filter-showed .dropdown-item.hidden-link {
  padding: 15px 0 !important;
  margin: 0 15px;
}
.rp-h-form.wb-f-filter-showed .fl-dyn-dropdown-label-styles .wb-f-mob-selector .ico-check,
.rp-h-form.wb-f-filter-showed .dropdown-menu li a .ico-check, .rp-h-form.wb-f-filter-showed .dropdown-menu li button .ico-check, .rp-h-form.wb-f-filter-showed a.dropdown-item .ico-check, .rp-h-form.wb-f-filter-showed .dropdown-item.hidden-link .ico-check {
  margin: 0;
}
.rp-h-form.wb-f-filter-showed .wb-f-mob-selector-reset {
  display: none;
}
.rp-h-form.wb-f-filter-showed .fl-search-dyn-fromto {
  margin: 0 15px;
  border: none;
}
.rp-h-form.wb-f-filter-showed .fl-search-dyn-fromto .form-control {
  padding: 0 0 10px;
  border-width: 1px;
}
.rp-h-form.wb-f-filter-showed .fl-search-dyn-fromto .wb-f-curr {
  min-width: 40px;
}
.rp-h-form.wb-f-filter-showed .btn-success {
  background-color: var(--primary-base-color) !important;
}
.rp-h-form.wb-f-filter-showed .btn-success:hover {
  background-color: rgba(var(--links-color)) !important;
}
.rp-h-form.wb-f-filter-showed .wb-f-box + .wb-f-box:before {
  height: 16px;
  top: -16px;
}
.rp-h-form.wb-f-filter-showed .fl-search-dyn-fromto.fl-search-dyn-search {
  background-color: #F5F5F5;
  overflow: visible;
}
.rp-h-form.wb-f-filter-showed .fl-search-dyn-fromto.fl-search-dyn-search:after, .rp-h-form.wb-f-filter-showed .fl-search-dyn-fromto.fl-search-dyn-search:before {
  display: block;
  content: "";
  height: 100%;
  width: 15px;
  position: absolute;
  top: 0;
  background: #f4f4f4;
}
.rp-h-form.wb-f-filter-showed .fl-search-dyn-fromto.fl-search-dyn-search:after {
  right: -15px;
}
.rp-h-form.wb-f-filter-showed .fl-search-dyn-fromto.fl-search-dyn-search:before {
  left: -15px;
}
.rp-h-form.wb-f-filter-showed .fl-search-dyn-fromto.fl-search-dyn-search .form-control {
  border: none;
  background-color: #fff;
  border-radius: 0;
}

.rp-header-mob-add {
  background-color: rgba(var(--primary-base-color-rgba), 0.1);
  padding: 15px;
}
@media (max-width: 767px) {
  .rp-header-mob-add {
    padding-bottom: 10px;
  }
}
.rp-header-mob-add .btn-add-item {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  padding: 10px 20px;
}

.rp-fl-box-in-search {
  background-color: rgba(var(--primary-base-color-rgba), 0.1);
  padding: 0 0 15px;
}
@media (min-width: 768px) {
  .rp-fl-box-in-search {
    padding-top: 15px;
  }
}
@media (min-width: 991.55px) {
  .rp-fl-box-in-search {
    max-width: 100%;
  }
}
.rp-fl-box-in-search .rp-btn-show-map {
  display: none !important;
}
@media (min-width: 991.55px) {
  .rp-fl-box-in-search .rp-h-line .fl-search-h-input {
    padding-right: 158px;
  }
}

.rp-fl-scrl-filters-mob-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 991.55px) {
  .rp-h-in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
}
@media (min-width: 991.55px) and (max-width: 1199px) {
  .rp-h-in {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
  }
}
@media (min-width: 991px) {
  .rp-h-in {
    -ms-flex-flow: nowrap;
        flex-flow: nowrap;
  }
}

@media (min-width: 1200px) {
  .rp-h-line-l-box {
    margin-right: 10px;
  }
}
@media (min-width: 991.55px) {
  .rp-h-line-l-box .rp-h-line .dropdown {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
  }
}
@media (min-width: 991.55px) {
  .rp-h-line-l-box .rp-h-line .dropdown:last-child {
    border-right: 0;
  }
}
@media (min-width: 991.55px) {
  .rp-h-line-l-box .rp-h-line .dropdown:last-child .dropdown-menu {
    left: auto;
    right: 0;
  }
}
@media (min-width: 991.55px) {
  .rp-h-line-l-box .rp-h-line-in {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
@media (min-width: 991.55px) {
  .rp-h-line-l-box .rp-fl-cell {
    max-width: inherit;
    padding: 0 20px;
  }
}

@media (min-width: 991.55px) {
  .rp-h-line-r-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-width: 0;
  }
}
@media (min-width: 991.55px) and (max-width: 1200px) {
  .rp-h-line-r-box {
    width: 100%;
  }
}

@media (min-width: 991.55px) {
  .rp-h-line {
    height: 44px;
    border-radius: 4px;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    background-color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-width: 0;
  }
}
@media (max-width: 991.55px) {
  .rp-h-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 991.55px) {
  .rp-h-line.loading .c-circle-loader {
    width: 24px;
    height: 24px;
  }
}
@media (min-width: 991.55px) {
  .rp-h-line.loading .c-circle-loader .c-child:before {
    width: 4px;
    height: 4px;
  }
}
@media (min-width: 991.55px) {
  .rp-h-line .dropdown {
    border-right: 1px solid #E5E5E5;
    height: 100%;
  }
}
@media (min-width: 991.55px) {
  .rp-h-line .dropdown .fl-dyn-dropdown {
    min-width: 270px;
    max-width: 270px;
  }
  .rp-h-line .dropdown .fl-dyn-dropdown .fl-dropdown-scrolled {
    max-height: 180px;
  }
  .rp-h-line .dropdown .fl-dyn-dropdown:not(.fl-dyn-dropdown-mark) .fl-dyn-dropdown-ident-none {
    padding-bottom: 0;
  }
  .rp-h-line .dropdown .fl-dyn-dropdown.fl-dyn-dropdown-mark {
    min-width: 410px;
    max-width: 410px;
  }
  .rp-h-line .dropdown .fl-dyn-dropdown.fl-dyn-dropdown-mark ul.fl-dyn-dropdown-label-styles {
    margin-right: 15px;
  }
  .rp-h-line .dropdown .fl-dyn-dropdown.fl-dyn-dropdown-mark .fl-dropdown-scrolled {
    max-height: 220px;
  }
  .rp-h-line .dropdown .fl-dyn-dropdown .fl-search-cats-dropdown-head-shdw {
    padding: 0 15px;
    margin-bottom: 5px;
  }
  .rp-h-line .dropdown .fl-dyn-dropdown .fl-search-cats-dropdown-head-shdw .form-control {
    padding: 10px 20px;
    height: 40px;
    min-height: 40px;
    border-radius: 5px;
  }
  .rp-h-line .dropdown .fl-dyn-dropdown .fl-search-cats-dropdown-head-shdw .fl-search-dyn-fromto .fl-search-dyn-close {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .rp-h-line .dropdown .fl-dyn-dropdown .fl-search-cats-dropdown-head-shdw::before {
    bottom: -11px;
  }
}
@media (min-width: 991.55px) {
  .rp-h-line .fl-aside-filter-item,
  .rp-h-line .rp-fl-dynamics-check {
    height: 100%;
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 991.55px) {
  .rp-h-line .rp-fl-dynamics-check .form-check-label {
    margin-left: 0;
    padding: 5px 20px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.rp-h-line .fl-search-h-input {
  font-size: 14px;
}
@media (min-width: 991.55px) {
  .rp-h-line .fl-search-h-input {
    padding: 0 15px;
  }
}

.fl-search-h-input::-webkit-input-placeholder {
  color: #595959;
}

.fl-search-h-input::-moz-placeholder {
  color: #595959;
}

.fl-search-h-input:-ms-input-placeholder {
  color: #595959;
}

.fl-search-h-input:-moz-placeholder {
  color: #595959;
}

@media (min-width: 991.55px) {
  .rp-fl-cell {
    padding: 0 29px 0 20px;
    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;
    position: relative;
    height: 100%;
  }
}
@media (max-width: 991.55px) {
  .rp-fl-cell {
    padding-right: 20px;
    width: 100%;
  }
}
@media (min-width: 991.55px) and (max-width: 1199px) {
  .rp-fl-cell {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (min-width: 1200px) {
  .rp-fl-cell {
    max-width: 200px;
  }
}
.rp-fl-cell .rp-fl-cell-empty {
  padding-right: 10px;
}
.rp-fl-cell .c-drop-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}
@media (max-width: 991.55px) {
  .rp-fl-cell .c-drop-arrow {
    right: 20px;
  }
}

.rp-fl-cell.selected .rp-fl-cell-title,
.rp-fl-dynamics .fl-aside-filter-item.selected .rp-fl-cell-title,
.bk-filter.is-bk-fl-date-selected .rp-fl-cell .rp-fl-cell-title {
  color: #595959;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 991.55px) {
  .rp-fl-cell.selected .rp-fl-cell-title,
  .rp-fl-dynamics .fl-aside-filter-item.selected .rp-fl-cell-title,
  .bk-filter.is-bk-fl-date-selected .rp-fl-cell .rp-fl-cell-title {
    font-size: 12px;
    line-height: 14px;
  }
}
@media (max-width: 991.55px) {
  .rp-fl-cell.selected .rp-fl-cell-title,
  .rp-fl-dynamics .fl-aside-filter-item.selected .rp-fl-cell-title,
  .bk-filter.is-bk-fl-date-selected .rp-fl-cell .rp-fl-cell-title {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 3px;
  }
}
@media (min-width: 991.55px) {
  .rp-fl-cell.selected .rp-fl-cell-title:empty,
  .rp-fl-dynamics .fl-aside-filter-item.selected .rp-fl-cell-title:empty,
  .bk-filter.is-bk-fl-date-selected .rp-fl-cell .rp-fl-cell-title:empty {
    display: none;
  }
}
@media (min-width: 991.55px) {
  .rp-fl-cell.selected .rp-fl-cell-val,
  .rp-fl-dynamics .fl-aside-filter-item.selected .rp-fl-cell-val,
  .bk-filter.is-bk-fl-date-selected .rp-fl-cell .rp-fl-cell-val {
    font-size: 14px;
    line-height: 17px;
    color: var(--text-color) !important;
    position: relative;
  }
}

@media (min-width: 991.55px) {
  .rp-fl-cell-title.c-shadow-overflow,
  .rp-fl-cell-val.c-shadow-overflow {
    padding-right: 10px;
  }
}
@media (max-width: 991.55px) {
  .rp-fl-cell-title.c-shadow-overflow:after:after,
  .rp-fl-cell-val.c-shadow-overflow:after:after {
    display: none;
  }
}
@media (min-width: 991.55px) {
  .rp-fl-cell-title.c-shadow-overflow:after,
  .rp-fl-cell-val.c-shadow-overflow:after {
    min-height: inherit !important;
    width: 10px !important;
    height: 19px;
  }
}
@media (max-width: 991.55px) {
  .rp-fl-cell-title,
  .rp-fl-cell-val {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 95%;
  }
}
.rp-fl-cell-title .extra,
.rp-fl-cell-val .extra {
  font-size: 12px;
  color: var(--text-color);
}
.rp-fl-cell-title span b,
.rp-fl-cell-val span b {
  font-weight: 400;
}

@media (max-width: 991.55px) {
  .rp-fl-cell-title.c-shadow-overflow:after {
    display: none;
  }
}

@media (min-width: 991.55px) {
  .rp-h-line-in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
}

.rp-fl-btn {
  background-color: var(--primary-base-color);
}
.rp-fl-btn:hover {
  background-color: rgba(var(--links-color));
}
@media (min-width: 991.55px) {
  .rp-fl-btn {
    border-radius: 0 4px 4px 0;
    height: 100%;
    color: white !important;
    margin-left: auto;
    width: 90px;
    padding-left: 5px;
    padding-right: 5px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
@media (max-width: 991.55px) {
  .rp-fl-btn {
    display: none;
  }
}
.rp-fl-btn.loading {
  color: var(--primary-base-color) !important;
}
.rp-fl-btn.loading:before {
  display: none;
}
.rp-fl-btn.loading .c-circle-loader .c-child:before {
  background-color: white;
}

@media (min-width: 991.55px) {
  .rp-fl-dynamics {
    margin-top: 20px;
  }
}
@media (max-width: 991.55px) {
  .rp-fl-dynamics {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 991.55px) {
  .rp-fl-dynamics .fl-search-dynamics-check {
    margin: 10px 20px 10px 0;
  }
}
@media (max-width: 991px) {
  .rp-fl-dynamics .fl-search-dynamics-check .form-check-label {
    margin-left: 15px !important;
    padding-left: 0 !important;
  }
  .rp-fl-dynamics .fl-search-dynamics-check .form-check-label .ico-check {
    margin: 0 !important;
  }
}
@media (min-width: 991.55px) {
  .rp-fl-dynamics .fl-aside-filter-item {
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 44px;
  }
}
@media (min-width: 1200px) {
  .rp-fl-dynamics .rp-fl-cell {
    max-width: 270px;
  }
}

@media (min-width: 991.55px) {
  .rp-fl-dynamics-in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    gap: 10px;
  }
}

.rp-more-filters-btn {
  background: #E0DFE3;
  border-radius: 5px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 15px;
  font-weight: 400;
}
.rp-more-filters-btn:hover {
  background-color: rgba(224, 223, 227, 0.9);
}
@media (min-width: 991.55px) {
  .rp-more-filters-btn {
    position: absolute;
    top: 5px;
    bottom: 5px;
    right: 5px;
    overflow: hidden;
  }
}
.rp-more-filters-btn .fa-sliders-h:before {
  display: block;
  content: "";
  width: 19px;
  height: 19px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 19 19' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.7663 0.791656C11.1477 0.791656 11.4568 1.11656 11.4568 1.51735V5.06519C11.4568 5.46598 11.1477 5.79088 10.7663 5.79088C10.3849 5.79088 10.0758 5.46598 10.0758 5.06519V4.01697H1.48252C1.10115 4.01697 0.791992 3.69206 0.791992 3.29127C0.791992 2.89048 1.10115 2.56558 1.48252 2.56558H10.0758V1.51735C10.0758 1.11656 10.3849 0.791656 10.7663 0.791656ZM13.4517 3.29127C13.4517 2.89048 13.7608 2.56558 14.1422 2.56558H16.6742C17.0555 2.56558 17.3647 2.89048 17.3647 3.29127C17.3647 3.69206 17.0555 4.01697 16.6742 4.01697H14.1422C13.7608 4.01697 13.4517 3.69206 13.4517 3.29127ZM8.23436 7.00038C8.61573 7.00038 8.92489 7.32528 8.92489 7.72607V8.7743H17.5181C17.8995 8.7743 18.2087 9.0992 18.2087 9.49999C18.2087 9.90078 17.8995 10.2257 17.5181 10.2257H8.92489V11.2739C8.92489 11.6747 8.61573 11.9996 8.23436 11.9996C7.85299 11.9996 7.54383 11.6747 7.54383 11.2739V7.72607C7.54383 7.32528 7.85299 7.00038 8.23436 7.00038ZM0.791992 9.49999C0.791992 9.0992 1.10115 8.7743 1.48252 8.7743H4.85844C5.23981 8.7743 5.54897 9.0992 5.54897 9.49999C5.54897 9.90078 5.23981 10.2257 4.85844 10.2257H1.48252C1.10115 10.2257 0.791992 9.90078 0.791992 9.49999ZM10.7663 13.2091C11.1477 13.2091 11.4568 13.534 11.4568 13.9348V17.4826C11.4568 17.8834 11.1477 18.2083 10.7663 18.2083C10.3849 18.2083 10.0758 17.8834 10.0758 17.4826V16.4344H1.48252C1.10115 16.4344 0.791992 16.1095 0.791992 15.7087C0.791992 15.3079 1.10115 14.983 1.48252 14.983H10.0758V13.9348C10.0758 13.534 10.3849 13.2091 10.7663 13.2091ZM13.4517 15.7087C13.4517 15.3079 13.7608 14.983 14.1422 14.983H16.6742C17.0555 14.983 17.3647 15.3079 17.3647 15.7087C17.3647 16.1095 17.0555 16.4344 16.6742 16.4344H14.1422C13.7608 16.4344 13.4517 16.1095 13.4517 15.7087Z' fill='%232A2349'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 991.55px) {
  .rp-more-filters-btn {
    display: none;
  }
}
.rp-more-filters-btn.is-active .c-dot {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.rp-more-filters-btn.is-pressed .c-dot {
  display: none !important;
}
.rp-more-filters-btn.is-pressed .ico,
.rp-more-filters-btn.is-pressed span {
  color: var(--primary-base-color);
}
.rp-more-filters-btn .ico {
  color: #595959;
  margin-right: 10px;
}
.rp-more-filters-btn span.c-dot {
  min-width: 12px;
  min-height: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: absolute;
  top: 3px;
  left: 24px;
  background-color: var(--primary-base-color);
  max-height: 10px;
  display: none;
}

.rp-fl-group-title {
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 991.55px) {
  .rp-fl-group-title {
    letter-spacing: 0.1em;
    padding: 5px 0 15px 0;
    color: #85979C;
  }
}
@media (max-width: 991.55px) {
  .rp-fl-group-title {
    letter-spacing: 0.2em;
    color: #595959;
    background-color: #F4F4F4;
    padding: 10px 0;
  }
}

.rp-fl-group-box {
  width: 100%;
}

@media (max-width: 767px) {
  .rp-fl-container {
    max-width: inherit;
  }
}

.wb-f-reset-btn {
  padding: 6px 10px;
  border-radius: 5px;
  background: #999;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-size: 14px;
  line-height: normal;
  color: #fff;
  border: none;
  margin-right: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wb-f-reset-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.wb-f-reset-btn:not(.disabled):hover {
  background: #797676;
}

.fl-aside-filter {
  margin-bottom: 0;
}

@media (min-width: 991.55px) {
  .fl-aside-filter-item-seek .form-check-label {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 991.55px) {
  .fl-aside-filter-item-in .fl-aside-scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 991.55px) {
  .wb-f-filter .fl-search-h-input-box {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .wb-f-filter .fl-search-h-input-box .ico {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .wb-f-filter .fl-search-h-input {
    padding: 0 !important;
  }
  .wb-f-filter .wb-f-mob-selector.dropdown-item,
  .wb-f-filter .dropdown-menu li {
    background-color: transparent !important;
  }
  .wb-f-filter.wb-f-filter-showed .wb-f-panel-header {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .wb-f-item,
  .wb-f-mob-selector,
  a.wb-f-mob-selector {
    font-size: 14px;
    line-height: 17px;
  }
  .wb-f-mob-selector .ico-check {
    margin-left: auto;
  }
  .wb-f-item .rp-fl-cell-title {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .wb-f-item .c-drop-arrow {
    -webkit-transform: rotate(-90deg) !important;
        -ms-transform: rotate(-90deg) !important;
            transform: rotate(-90deg) !important;
  }
  .wb-f-item .ico {
    margin-right: 10px !important;
  }
  .rp-fl-scrl-filters-mob-item {
    padding-right: 0;
  }
  .rp-fl-scrl-filters-mob-item select {
    border: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: none;
    padding: 12px 27px 12px 44px !important;
  }
  .rp-fl-scrl-filters-mob-item .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: white;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    padding: 0;
    position: relative;
    margin-bottom: 0;
  }
  .rp-fl-scrl-filters-mob-item .btn .ico {
    color: var(--primary-base-color);
    height: 18px;
    margin-right: 10px;
    font-size: 17px;
  }
  .rp-fl-scrl-filters-mob-item .btn .ico path {
    fill: var(--primary-base-color);
  }
  .rp-fl-scrl-filters-mob-item .rp-btn-filters-mob-select .ico {
    position: absolute;
    top: 13px;
    left: 15px;
  }
  .rp-fl-scrl-filters-mob-item .rp-btn-filters-mob-select .c-drop-arrow {
    margin-left: 10px;
    position: absolute;
    right: 11px;
    top: 18px;
  }
  .rp-fl-cell {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -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;
  }
  .rp-fl-group-box + .fl-search-dynamics-check .wb-f-mob-selector {
    border-top: 1px solid #E5E5E5;
  }
  .rp-fl-cell-sm-title {
    font-size: 13px;
    line-height: 18px;
    color: #595959;
    width: 100%;
  }
}
.rp-btn-filters-mob-action {
  padding: 10px !important;
}
.rp-btn-filters-mob-action svg {
  width: 20px;
  height: 20px;
}
.rp-btn-filters-mob-action svg path {
  fill: #fff;
}

/*filter*/
/*pages*/
.au-form-box {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .au-form-box {
    padding: 40px 0;
  }
}
.au-form-box.au-form-box-sm .au-form-body {
  max-width: 100%;
}
.au-form-box.au-form-box-sm .au-form {
  max-width: 357px;
}

.au-form {
  margin: 0 auto;
  max-width: 630px;
  background-color: white;
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .au-form {
    border-radius: 10px;
  }
}
.au-form .form-group + .form-phone-input {
  margin-top: 20px;
}

.au-form-border-footer {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #E5E5E5;
}

.j-step-set {
  text-decoration: underline !important;
}

.au-form .form-control,
.au-form .input-group,
.u-authorize-form .form-control,
.u-authorize-form .input-group {
  height: 40px;
}
.au-form .input-group-prepend,
.u-authorize-form .input-group-prepend {
  height: 100%;
}

.au-form-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px;
}
@media (max-width: 767px) {
  .au-form-in {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    padding: 20px 15px;
  }
}

.au-form-socials {
  border-left: 1px solid #E5E5E5;
  padding-left: 30px;
  margin-left: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  min-width: 200px;
  text-align: center;
}
@media (max-width: 767px) {
  .au-form-socials {
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    min-width: inherit;
    padding-left: 0;
    border-left: none;
    margin-top: 20px;
    margin-left: 0;
    padding-top: 20px;
    border-top: 1px solid #E5E5E5;
  }
}

.au-form-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media (max-width: 767px) {
  .au-form-body {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .au-form-recovery .au-form-input-act .form-control {
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 767px) {
  .au-form-recovery .au-form-input-act .btn {
    margin-top: 10px;
  }
}

.au-form-divider {
  margin: 15px 0;
  height: 20px;
  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;
}
.au-form-divider .border-bottom {
  width: 100%;
}

.au-form-divider-txt {
  background-color: white;
  padding: 0 20px;
  display: inline-block;
  position: absolute;
}

.au-form-body-simple {
  padding-right: 0;
  text-align: center;
  max-width: inherit;
}

.au-form-body-sm {
  text-align: center;
  max-width: 400px;
  padding-right: 0;
}
@media (min-width: 768px) {
  .au-form-body-sm .au-form-body {
    max-width: inherit;
    min-width: inherit;
  }
}

.au-form-title {
  font-weight: bold;
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 26px;
}
@media (max-width: 767px) {
  .au-form-title {
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 18px;
  }
}

.au-form-socials-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .au-form-socials-title {
    margin-bottom: 15px;
  }
}

.au-form-socials-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  gap: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.au-form-remember {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
}
@media (max-width: 767px) {
  .au-form-remember {
    margin-top: 20px;
  }
}
.au-form-remember a {
  margin-left: auto;
  padding-left: 20px;
  text-decoration: underline !important;
}

.au-form-footer {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.au-form-input-act {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media (max-width: 767px) {
  .au-form-input-act {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .au-form-input-act .btn-top-ident {
    margin-top: 10px;
  }
}
.au-form-input-act + .au-form-sub-text {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .au-form-input-act .form-group {
    width: 100%;
    margin-bottom: 15px !important;
  }
}
.au-form-input-act .form-phone-input {
  margin-right: 0;
}

.form-control-title {
  text-align: left;
}
.form-control-title .required {
  color: #FF585B;
}

@media (max-width: 767px) {
  .au-form-input-act-sm {
    width: auto;
  }
}
.au-form-input-act-sm .form-control {
  max-width: 155px;
}
@media (max-width: 767px) {
  .au-form-input-act-sm .form-control {
    margin-right: 10px !important;
    margin-bottom: 0 !important;
  }
}
@media (max-width: 767px) {
  .au-form-input-act-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.au-form-input-act-md .form-control {
  min-width: 287px;
  height: 40px;
}
@media (max-width: 767px) {
  .au-form-input-act-md .form-control {
    min-width: inherit;
    width: 100%;
  }
}

.au-form-under-actions {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .au-form-under-actions {
    -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;
    row-gap: 5px;
  }
}
.au-form-under-actions .ico {
  font-size: 20px;
}
.au-form-under-actions a {
  text-decoration: underline !important;
}
.au-form-under-actions + .au-form-under-actions {
  margin-top: 15px;
}

.au-form-sub-text {
  font-size: 13px;
  line-height: 16px;
  color: #595959;
  text-align: left;
}

.au-form-text {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 20px;
}
.au-form-text a {
  text-decoration: underline !important;
}
.au-form-text + .j-confirmation-code {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .j-verify-code {
    width: 100%;
  }
}

.au-form-soc {
  padding-right: 0;
  max-width: inherit !important;
}

.au-form-soc-picture {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .au-form-soc-picture {
    position: relative;
    margin: 0 auto 20px auto;
    display: block;
  }
}

.au-form-soc-body {
  padding-left: 100px;
}
@media (max-width: 767px) {
  .au-form-soc-body {
    padding-left: 0;
  }
}
.au-form-soc-body .form-group,
.au-form-soc-body .au-form-footer {
  margin-right: 100px;
}
@media (max-width: 767px) {
  .au-form-soc-body .form-group,
  .au-form-soc-body .au-form-footer {
    margin-right: 0;
  }
}

.au-form-social-info {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .au-form-social-info {
    text-align: center;
  }
}
.au-form-social-info b, .au-form-social-info strong {
  font-size: 16px;
  line-height: normal;
  display: block;
  margin-bottom: 5px;
}

.au-form-social-exist {
  margin-top: 6px;
  color: var(--danger-color);
  margin-bottom: 20px;
}

.in-slider {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: relative;
  overflow: hidden;
}
.in-slider .owl-stage {
  display: block;
}
.in-slider img {
  width: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.in-slider.owl-loaded {
  opacity: 1;
}

.in-slider-box {
  position: relative;
}
@media (max-width: 767px) {
  .in-slider-box {
    max-width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    margin-top: -15px;
  }
}

.in-slider-box .c-arrow,
.c-centered-navs .c-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 11;
}
@media (max-width: 767px) {
  .in-slider-box .c-arrow,
  .c-centered-navs .c-arrow {
    display: none;
  }
}
.in-slider-box .c-arrow.c-left,
.c-centered-navs .c-arrow.c-left {
  left: 20px;
}
.in-slider-box .c-arrow.c-right,
.c-centered-navs .c-arrow.c-right {
  right: 20px;
}

.in-slider-item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.in-box-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
}
@media (max-width: 767px) {
  .in-box-head {
    position: relative;
  }
}
@media (min-width: 768px) {
  .in-box-head:after {
    display: none !important;
  }
}
.in-box-head.in-box-head-sm .in-box-title {
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 991px) {
  .in-box-head.in-box-head-sm .in-box-title {
    font-size: 18px;
    line-height: 26px;
  }
}
.in-box-head.in-box-head-sm .in-box-title,
.in-box-head.in-box-head-sm .c-nav-items {
  padding-bottom: 15px;
}
.in-box-head.in-box-head-no-title .in-box-title {
  display: none;
}
.in-box-head.in-box-head-no-title .c-nav-items {
  margin-left: auto;
}
.in-box-head .in-box-title {
  min-width: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 35px;
}
.in-box-head .in-box-title span {
  text-overflow: ellipsis;
  overflow: hidden;
}
.in-box-head .c-nav-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.in-box-head .c-nav-items,
.in-box-head .c-nav-actions {
  padding-left: 20px;
}
.in-box-head .c-nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.in-box-head .c-nav-items .c-arrow {
  position: static;
  margin-left: 0 !important;
  margin-right: 0 !important;
  -webkit-transform: translate(0) !important;
      -ms-transform: translate(0) !important;
          transform: translate(0) !important;
}
.in-box-head .c-nav-items .c-arrow.disabled {
  opacity: 0.5;
}
.in-box-head .c-nav-items .c-arrow + .c-arrow {
  margin-left: 10px !important;
}
.in-box-head .ico {
  fill: var(--primary-base-color);
  width: 30px;
  height: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .in-box-head .ico {
    width: 25px;
    height: 25px;
    margin-right: 10px;
  }
}
.in-box-head .c-dot {
  min-width: 4px;
  min-height: 4px;
  margin: 0 18px 25px 18px;
  padding-bottom: 0 !important;
}
@media (max-width: 767px) {
  .in-box-head.flex-column {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .in-box-head.flex-column .it-list-more-link {
    margin-left: 0;
    padding-left: 0;
  }
}
.in-box-head > * {
  padding-bottom: 25px;
}

a.in-box-title:hover {
  color: inherit !important;
}

.in-box-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  line-height: normal;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--text-color);
}
@media (max-width: 991px) {
  .in-box-title {
    font-size: 22px;
    white-space: nowrap;
  }
}
.in-box-title + .i-items-lik {
  margin-left: 26px;
  display: inline-block;
}
@media (max-width: 991px) {
  .in-box-title + .i-items-lik {
    margin-left: auto;
    padding-left: 10px;
  }
}
.in-box-title .c-dot {
  min-width: 4px;
  min-height: 4px;
  margin: 0 18px;
}

/* Map */
.in-map {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.in-map svg {
  width: 100%;
  margin: 0 auto;
  display: block;
}

.i-map, .i-cities-list {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}

.index-map__city {
  fill: var(--secondary-base-color);
  cursor: pointer;
  stroke-width: 1px;
  stroke: white;
}
.index-map__city text {
  fill: var(--text-color);
}
.index-map__city:hover {
  fill: var(--primary-base-color);
}

.index-map__region {
  fill: #e1e1e1;
  stroke-width: 1px;
  stroke: white;
  cursor: pointer;
}
.index-map__region:hover {
  fill: var(--primary-base-color) !important;
}

.in-map__info {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  position: absolute;
  color: #333;
  width: auto;
  line-height: 18px;
}
.in-map__info > div {
  white-space: nowrap;
  padding: 5px 10px;
  margin-right: 10px;
}

.in-cities-map {
  background-color: white;
}
@media (min-width: 768px) {
  .in-cities-map {
    padding: 20px 0 44px 0;
  }
}
@media (max-width: 767px) {
  .in-cities-map {
    padding: 25px 0;
  }
}

.in-cities-map-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .in-cities-map-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (min-width: 768px) {
  .i-cities-list {
    padding: 13px 0 0 140px;
  }
}
@media (max-width: 767px) {
  .i-cities-list {
    padding: 0;
    margin-top: 20px;
  }
}

.i-items-cities-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.i-items-cities-row + .i-items-cities-row {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .i-items-cities-row + .i-items-cities-row {
    margin-top: 15px;
  }
}
.i-items-cities-row ul {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  padding: 0;
}
.i-items-cities-row ul li {
  list-style: none;
}
@media (min-width: 768px) {
  .i-items-cities-row ul + ul {
    padding-left: 20px;
  }
}

.i-items-cities-row li + li {
  margin-top: 13px;
}

.i-items-cities-main a, .i-items-cities-main .hidden-link {
  font-weight: bold;
}

@media (max-width: 767px) {
  .in-promo-steps + .l-info .container {
    padding-top: 35px;
  }
}

.in-promo-steps {
  padding-top: 53px;
  padding-bottom: 70px;
}
@media (max-width: 991px) {
  .in-promo-steps {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .in-promo-steps + .bl-index-blog {
    margin-top: 0;
  }
}

.in-last-block .in-promo-steps {
  margin-bottom: -40px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .in-last-block .in-step-box-company .in-step-item {
    padding-bottom: 40px;
  }
}

.in-step-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991px) {
  .in-step-box {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.in-step-box-company {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .in-step-box-company {
    padding: 32px 0;
  }
}
@media (min-width: 768px) {
  .in-step-box-company {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .in-step-box-company .col-lg-6 {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .in-step-box-company .in-step-item-title {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 10px;
  }
  .in-step-box-company .in-step-item-title br {
    display: none;
  }
}

.in-step-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  min-width: 50%;
  padding: 0 30px 0 80px;
}
@media (max-width: 991px) {
  .in-step-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
            flex: 0 0 10%;
    min-width: 100%;
    padding: 0;
  }
}
.in-step-item + .in-step-item {
  padding-left: 0;
}
@media (max-width: 991px) {
  .in-step-item + .in-step-item {
    margin-top: 50px;
  }
}
@media (min-width: 992px) {
  .in-step-item .in-step-item-in {
    max-width: 422px;
  }
}
.in-step-item .btn {
  padding: 8px 15px;
}
.in-step-item.i-promo-step-single {
  background-size: contain;
  text-align: center;
  padding-bottom: 122px;
}
.in-step-item.i-promo-step-single .in-step-item-in {
  max-width: 390px;
}
.in-step-item.i-promo-step-single .in-step-item-desc {
  max-width: 317px;
  margin: 0 auto 17px auto;
}

.in-step-item-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 33px;
  margin-bottom: 20px;
}

.in-step-item-ico {
  margin-bottom: 17px;
}
.in-step-item-ico .ico {
  max-width: 70px;
  max-height: 70px;
}

.in-step-item-desc {
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .in-step-item-desc {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 13px;
  }
}

.in-promo-steps-company-owner {
  padding: 0 !important;
}

.au-form:not(.au-form-body-sm) {
  max-width: 658px;
}
.au-form .form-group + .form-group {
  margin-top: 10px;
}
.au-form .form-group + .form-group.form-assigns {
  margin-top: 15px;
}

.au-form .form-control,
.au-form .input-group,
.u-authorize-form .form-control,
.u-authorize-form .input-group {
  height: 44px;
}

.au-form-remember {
  margin-top: 15px;
}

.au-form-title {
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .au-form-title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .au-form-input-act .btn,
  .au-form-footer .btn {
    width: 100%;
  }
}

.in-slider {
  overflow: visible;
}

.in-slider-box .c-arrow.c-left {
  left: -10px;
}

.in-slider-box .c-arrow.c-right {
  right: -10px;
}

.in-map {
  background-color: white;
}

@media (min-width: 768px) {
  .in-cities-map {
    padding: 30px 0;
  }
}
.in-cities-map .c-shadow-overflow:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, white), color-stop(133.33%, rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, white 50%, rgba(255, 255, 255, 0) 133.33%);
}

@media (max-width: 991px) {
  .in-map-search-text {
    margin-top: 42px;
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .in-map-search-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.in-map-search-text .c-title {
  margin-bottom: 7px;
}
@media (max-width: 767px) {
  .in-map-search-text .fs-18 {
    font-size: 16px !important;
    line-height: 24px !important;
  }
}
@media (max-width: 767px) {
  .in-map-search-text .btn-lg-height {
    padding-top: 9px;
    padding-bottom: 9px;
  }
}

.in-map-search-pic {
  margin-bottom: -30px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.in-map-search-pic img {
  max-height: 350px;
  margin-top: -35px;
  margin-bottom: -26px;
  padding-bottom: 26px;
  position: relative;
  z-index: 5;
}

.in-box-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .in-box-head {
    white-space: nowrap;
    position: relative;
  }
}
.in-box-head > * {
  padding-bottom: 20px;
}
@media (min-width: 1024px) {
  .in-box-head .usr-navs {
    padding-left: 30px;
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .in-box-head .usr-navs {
    margin-bottom: 0;
  }
}
.in-box-head .c-title {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .in-box-head .c-title + *:not(.c-nav-items) {
    margin-top: 20px;
  }
}
.in-box-head .c-nav-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.in-box-head .c-nav-items,
.in-box-head .c-nav-actions {
  margin-left: auto;
  padding-left: 20px;
}
.in-box-head .c-nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.in-box-head .c-nav-items .c-arrow {
  /*problems with realty*/
  position: static;
  margin-left: 0 !important;
  margin-right: 0 !important;
  -webkit-transform: translate(0) !important;
      -ms-transform: translate(0) !important;
          transform: translate(0) !important;
}
.in-box-head .c-nav-items .c-arrow.disabled {
  opacity: 0.5;
}
.in-box-head .c-nav-items .c-arrow + .c-arrow {
  margin-left: 10px !important;
}
.in-box-head .c-dot {
  min-width: 4px;
  min-height: 4px;
  margin: 0 18px;
}

@media (max-width: 767px) {
  .in-box-title {
    font-size: 22px;
    line-height: normal;
  }
}

@media (min-width: 992px) {
  .in-index-box {
    padding: 60px 0;
  }
}
@media (max-width: 991px) {
  .in-index-box {
    padding: 40px 0;
  }
}
.in-index-box .rp-it-title {
  height: auto !important;
}

@media (min-width: 768px) {
  .rp-in-cats-tabs {
    padding: 40px 0 50px 0;
  }
}
@media (max-width: 767px) {
  .rp-in-cats-tabs {
    padding: 20px 0;
  }
}

.rp-in-cats-tabs-links {
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4;
}
@media (max-width: 991px) {
  .rp-in-cats-tabs-links {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media (max-width: 767px) {
  .rp-in-cats-tabs-links {
    -webkit-column-count: auto;
       -moz-column-count: auto;
            column-count: auto;
  }
}
@media (min-width: 768px) {
  .rp-in-cats-tabs-links {
    margin-top: 20px;
  }
}
.rp-in-cats-tabs-links li {
  margin-bottom: 10px;
}

.i-category-item.i-category-item-with-counters .i-category-item-pic .ico, .i-category-item.i-category-item-with-counters .i-category-item-pic .svg, .i-category-item.i-category-item-with-counters .i-category-item-pic img {
  margin-bottom: 10px;
}
.i-category-item.i-category-item-sm .i-category-item-pic .ico, .i-category-item.i-category-item-sm .i-category-item-pic .svg, .i-category-item.i-category-item-sm .i-category-item-pic img {
  width: 40px;
  height: 40px;
}

.i-category-item-pic {
  text-align: center;
}
.i-category-item-pic .ico, .i-category-item-pic .svg, .i-category-item-pic img {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px auto;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (max-width: 991px) {
  .i-category-item-pic .ico, .i-category-item-pic .svg, .i-category-item-pic img {
    margin-bottom: 14px;
  }
}
.i-category-item-pic a {
  display: block;
}

/*fix circles in svg (index page)*/
.i-category-item-pic .ico path, .i-category-item-pic .ico circle, .i-category-item-pic .svg path, .i-category-item-pic .svg circle,
.in-cat-item .ico path,
.in-cat-item .ico circle,
.in-cat-item .svg path,
.in-cat-item .svg circle {
  stroke: var(--icons-color) !important;
  fill: none;
}
.i-category-item-pic .ico circle, .i-category-item-pic .svg circle,
.in-cat-item .ico circle,
.in-cat-item .svg circle {
  fill: transparent;
}

.i-category-item-in {
  border-radius: 4px;
  background-color: white;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9080;
  -webkit-transition: 0.2s -webkit-transform;
  transition: 0.2s -webkit-transform;
  transition: 0.2s transform;
  transition: 0.2s transform, 0.2s -webkit-transform;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  height: 100%;
}
@media (max-width: 991px) {
  .i-category-item-in {
    padding: 10px;
  }
}

.i-categories-box-tiles,
.i-categories-box-slider,
.in-cat-box-list-wrapper {
  background-color: white;
}

.i-categories-box-tiles {
  padding-bottom: 40px;
  margin-bottom: 0 !important;
}

.i-categories-box-slider {
  z-index: 1;
}

/*list*/
@media (min-width: 768px) {
  .in-cat-box-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap: 27px;
  }
}
@media (max-width: 767px) {
  .in-cat-box-list .in-cat-item-title-in {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  .in-cat-box-list .in-cat-item {
    margin-bottom: 0;
    width: 100%;
  }
}

.i-category-item-title {
  text-align: center;
  color: var(--text-color) !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none !important;
  position: relative;
  width: 100%;
  max-height: 40px;
  min-height: 20px;
}
@media (min-width: 992px) and (max-width: 1279px) {
  .i-category-item-title {
    height: 40px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
.i-category-item-title:after {
  top: auto;
  min-height: 14px;
  height: 14px;
}
@media (max-width: 991px) {
  .i-category-item-title {
    font-size: 13px;
  }
}

.i-category-item-list {
  display: none;
  text-align: center;
  margin-top: 15px;
  margin-left: -5px;
  margin-right: -5px;
  -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;
}
@media (max-width: 991px) {
  .i-category-item-list {
    margin-top: 5px;
  }
}
.i-category-item-list a, .i-category-item-list .hidden-link {
  font-size: 13px;
  display: inline-block;
  line-height: 19px;
  margin-right: 5px;
  margin-left: 5px;
}
.i-category-item-list a + a, .i-category-item-list a + .hidden-link, .i-category-item-list .hidden-link + a, .i-category-item-list .hidden-link + .hidden-link {
  margin-top: 5px;
}

.in-cat-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .in-cat-box {
    padding: 45px 0;
  }
}
@media (max-width: 767px) {
  .in-cat-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 991px) {
  .in-cat-box [class*=col-] {
    width: 100%;
    max-width: inherit;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.in-cat-box * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 767px) {
  .in-cat-box-r {
    padding: 0 15px;
  }
}

@media (min-width: 992px) {
  .in-cat-box-v1 .in-cat-box-r {
    padding-left: 110px;
  }
}

.in-cat-box-collapse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

@media (min-width: 768px) {
  .in-cat-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 27px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .in-cat-item {
    height: 42px;
    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;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .in-cat-item:first-of-type .in-cat-item-title {
    border-top: 0;
  }
}
@media (min-width: 768px) {
  .in-cat-item.in-cat-item-centered .img {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
@media (min-width: 768px) {
  .in-cat-item.in-cat-item-centered .in-cat-item-r {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.in-cat-item img,
.in-cat-item svg,
.in-cat-item .img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (min-width: 768px) {
  .in-cat-item img,
  .in-cat-item svg,
  .in-cat-item .img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 767px) {
  .in-cat-item img,
  .in-cat-item svg,
  .in-cat-item .img {
    width: 24px;
    height: 24px;
  }
}

.in-cat-item-title {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media (max-width: 991px) {
  .in-cat-item-title {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .in-cat-item-title {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 8px 0;
    border-top: 1px solid #E5E5E5;
  }
  .in-cat-item-title a, .in-cat-item-title .hidden-link {
    color: var(--text-color);
  }
}
@media (max-width: 767px) {
  .in-cat-item-title .img {
    margin-right: 20px;
  }
}
.in-cat-item-title .h-collapse-arrow {
  top: 31px;
}

.in-cat-item-count {
  font-size: 13px;
  line-height: 22px;
  color: #595959;
  padding-left: 20px;
}

@media (min-width: 768px) {
  .in-cat-item-r {
    padding-left: 25px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
@media (max-width: 767px) {
  .in-cat-item-r {
    width: 100%;
  }
  .in-cat-item-r.opened {
    padding-bottom: 20px;
  }
}

.in-cat-item-sub-links {
  margin-top: 18px;
  color: #595959;
  list-style-type: none;
}
@media (min-width: 768px) {
  .in-cat-item-sub-links {
    height: auto !important;
  }
}
@media (max-width: 767px) {
  .in-cat-item-sub-links {
    margin-top: 0;
  }
}
.in-cat-item-sub-links a, .in-cat-item-sub-links .hidden-link {
  text-decoration-line: underline;
  color: #595959;
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .in-cat-item-sub-links a, .in-cat-item-sub-links .hidden-link {
    display: block;
    color: #0096C7;
    color: rgba(var(--links-color));
    padding: 7px 0;
  }
}
@media (min-width: 768px) {
  .in-cat-item-sub-links a, .in-cat-item-sub-links .hidden-link {
    margin-left: 20px;
    font-size: 13px;
    line-height: 22px;
  }
}
@media (min-width: 768px) {
  .in-cat-item-sub-links a:before, .in-cat-item-sub-links .hidden-link:before {
    content: "";
    position: absolute;
    top: 12px;
    left: -14px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 4px;
    height: 4px;
    display: block;
    border-radius: 50%;
    background-color: var(--primary-base-color);
  }
}
.in-cat-item-sub-links a:hover, .in-cat-item-sub-links .hidden-link:hover {
  text-decoration: none;
}

.in-cities-box {
  margin-top: 27px;
}

.in-cat-box-l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
@media (max-width: 991px) {
  .in-cat-box-l {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .in-cat-box-l {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (min-width: 768px) {
  .it-cats-with-photo {
    margin-bottom: 30px;
  }
}

.it-cats-with-photo-inner {
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (max-width: 767px) {
  .it-cats-with-photo-inner {
    gap: 5px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .it-cats-with-photo-inner--grid {
    display: grid !important;
    gap: 5px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    grid-template-columns: none;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-columns: minmax(-webkit-min-content, -webkit-max-content);
    grid-auto-columns: minmax(min-content, max-content);
    grid-auto-flow: column;
  }
}

@media (max-width: 767px) {
  .it-cats-with-photo-item-wrap {
    height: 100%;
  }
}

.it-cats-with-photo-item {
  display: block;
  border-radius: 5px;
  border: 1px solid #D9E1E4;
  padding: 10px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  min-width: 130px;
  width: 130px;
  text-align: center;
}
@media (max-width: 767px) {
  .it-cats-with-photo-item {
    min-width: 110px;
    width: 110px;
    height: 100%;
  }
}

.it-cats-with-photo-item:hover,
.it-cats-with-photo-item:focus {
  border-color: #2A2349;
}

.it-cats-with-photo-item-img {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
}
@media (max-width: 767px) {
  .it-cats-with-photo-item-img {
    width: 40px;
    height: 40px;
  }
}

.it-cats-with-photo-item-img img,
.it-cats-with-photo-item-img svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.it-cats-with-photo-item-name {
  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-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
}
.it-cats-with-photo-item-name span:first-child {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.scroll-x-wrap {
  position: relative;
}

.scroll-x-wrap:before,
.scroll-x-wrap:after {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 50px;
  bottom: 0;
  z-index: 10;
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 767px) {
  .scroll-x-wrap:before,
  .scroll-x-wrap:after {
    width: 80px;
  }
}

.scroll-x-wrap:after {
  right: -1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#FFF));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
}

.scroll-x-wrap:before {
  left: -1px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), to(#FFF));
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
}

.scroll-x-wrap > * {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: auto !important;
}

.scroll-x-wrap > *::-webkit-scrollbar {
  display: none;
}

.scroll-x-wrap.on-start::before {
  opacity: 0;
}

.scroll-x-wrap.on-finish::after {
  opacity: 0;
}

/*slider*/
.i-categories-box-slider {
  position: relative;
  padding: 37px 0 70px 0;
}
@media (max-width: 991px) {
  .i-categories-box-slider {
    padding: 20px 0 18px 0;
  }
}
.i-categories-box-slider:hover {
  z-index: 999;
}
.i-categories-box-slider .owl-carousel {
  overflow: visible;
  z-index: 9081 !important;
}
.i-categories-box-slider .owl-stage-outer {
  overflow: visible !important;
}
.i-categories-box-slider .container {
  position: relative;
}
@media (min-width: 1110px) and (max-width: 1350px) {
  .i-categories-box-slider .container {
    max-width: 1050px;
  }
}
@media (min-width: 1351px) and (max-width: 1399px) {
  .i-categories-box-slider .container {
    max-width: 1200px;
  }
}
.i-categories-box-slider .btn {
  width: 100%;
  border: 1px solid #E5E5E5 !important;
  height: 34px;
  line-height: 30px !important;
  position: relative;
}
.i-categories-box-slider .i-categories {
  position: relative;
  z-index: 100;
  max-height: 180px;
}
.i-categories-box-slider .i-categories.owl-carousel:not(.owl-loaded) {
  opacity: 0;
}
.i-categories-box-slider .i-categories .owl-nav {
  position: relative;
  z-index: 30;
}
@media (min-width: 768px) {
  .i-categories-box-slider .i-categories:not(.is-dragging) .owl-item.active:hover {
    z-index: 20;
  }
}
@media (min-width: 768px) and (max-width: 767px) {
  .i-categories-box-slider .i-categories:not(.is-dragging) .owl-item.active:hover:first-of-type .i-category-item-wide {
    margin-left: 35px;
  }
}
@media (min-width: 768px) {
  .i-categories-box-slider .i-categories:not(.is-dragging) .owl-item.active:hover .i-category-item:not(.i-category-item-disabled-hover).i-category-item-wide .i-category-item-in {
    left: -25px;
    right: -25px;
  }
}
@media (min-width: 768px) and (max-width: 767px) {
  .i-categories-box-slider .i-categories:not(.is-dragging) .owl-item.active:hover .i-category-item:not(.i-category-item-disabled-hover).i-category-item-wide .i-category-item-in {
    left: -50px;
    right: -50px;
  }
}
@media (min-width: 768px) {
  .i-categories-box-slider .i-categories:not(.is-dragging) .owl-item.active:hover .i-category-item:not(.i-category-item-disabled-hover).i-category-sub-list-empty .i-category-item-in {
    left: 0;
    right: 0;
  }
  .i-categories-box-slider .i-categories:not(.is-dragging) .owl-item.active:hover .i-category-item:not(.i-category-item-disabled-hover) .i-category-item-in {
    height: auto;
    -webkit-transform: translate(0, -20%);
        -ms-transform: translate(0, -20%);
            transform: translate(0, -20%);
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 30px 10px 14px 10px;
    left: -10px;
    right: -10px;
    min-width: 180px;
    min-height: 100%;
    z-index: 9081;
  }
  .i-categories-box-slider .i-categories:not(.is-dragging) .owl-item.active:hover .i-category-item:not(.i-category-item-disabled-hover) .i-category-item-in .i-category-item-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .i-categories-box-slider .i-categories:not(.is-dragging) .owl-item.active:hover .i-category-item:not(.i-category-item-disabled-hover) .i-category-item-in:after {
    opacity: 0;
  }
}
.i-categories-box-slider .i-categories:not(.is-dragging) .owl-item:not(.active) a {
  cursor: default;
}
.i-categories-box-slider .i-category-item {
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 115px;
  width: 100%;
  z-index: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .i-categories-box-slider .i-category-item {
    min-width: 200px;
  }
}
@media (max-width: 380px) {
  .i-categories-box-slider .i-category-item {
    min-width: 125px;
  }
}
.i-categories-box-slider .i-category-item-in {
  padding: 10px;
}
.i-categories-box-slider .i-category-item-in:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 75px;
  background-color: #EBEBEB;
  top: 16px;
  right: 0;
  z-index: 1;
}
.i-categories-box-slider .i-category-item-title {
  margin: 0 auto;
}
@media (min-width: 992px) {
  .i-categories-box-slider .i-category-item-title {
    width: 151px;
  }
}
.i-categories-box-slider .i-category-item-pic .ico, .i-categories-box-slider .i-category-item-pic .svg, .i-categories-box-slider .i-category-item-pic img {
  width: 70px !important;
}

.i-categories-box-slider .c-arrow,
.in-cat-tabs .c-arrow {
  position: absolute;
  top: 35px;
  z-index: 9084;
}
@media (max-width: 1199px) {
  .i-categories-box-slider .c-arrow,
  .in-cat-tabs .c-arrow {
    display: none !important;
  }
}
.i-categories-box-slider .c-arrow.disabled,
.in-cat-tabs .c-arrow.disabled {
  visibility: hidden;
}
@media (min-width: 1110px) and (max-width: 1200px) {
  .i-categories-box-slider .c-right,
  .in-cat-tabs .c-right {
    right: -42px;
  }
}
@media (min-width: 1201px) {
  .i-categories-box-slider .c-right,
  .in-cat-tabs .c-right {
    right: -50px;
  }
}
@media (min-width: 1110px) and (max-width: 1200px) {
  .i-categories-box-slider .c-left,
  .in-cat-tabs .c-left {
    left: -42px;
  }
}
@media (min-width: 1201px) {
  .i-categories-box-slider .c-left,
  .in-cat-tabs .c-left {
    left: -50px;
  }
}

@media (max-width: 991px) {
  .ib .i-categories-box-slider {
    padding-bottom: 40px !important;
  }
}
.ib .i-categories-box-slider .i-slider-overflow {
  display: none;
}
.ib .i-categories-box-slider .i-categories.is-dragging .owl-item:hover .i-category-item-in {
  background-color: transparent;
}
.ib .i-categories-box-slider .i-category-item-in {
  background-color: transparent;
}
.ib .i-categories-box-slider .owl-item {
  opacity: 1 !important;
}
.ib .i-categories-box-slider .owl-item .i-category-item .hidden-link, .ib .i-categories-box-slider .owl-item .i-category-item a {
  cursor: pointer !important;
}
.ib .i-categories-box-slider .owl-item.active:hover .i-category-item-in {
  background-color: white;
}
.ib .i-categories-box-slider .c-arrow {
  display: none !important;
}

@media (min-width: 1200px) {
  .i-categories-box-slider-center .owl-stage-outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.i-slider-overflow {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  background-color: white;
  z-index: 9082;
}
@media (max-width: 767px) {
  .i-slider-overflow {
    display: none;
  }
}
@media (min-width: 1400px) {
  .i-slider-overflow {
    width: calc((100vw - 1330px) / 2);
  }
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .i-slider-overflow {
    width: calc((100vw - 1080px) / 2);
  }
}
@media (min-width: 1351px) and (max-width: 1399px) {
  .i-slider-overflow {
    width: calc((100vw - 1220px) / 2);
  }
}

.i-slider-overflow-before {
  left: 0;
}

.i-slider-overflow-after {
  right: 0;
}

/*tiles*/
@media (min-width: 768px) {
  .i-categories-box-tiles {
    padding: 50px 0 40px 0;
  }
}
@media (max-width: 767px) {
  .i-categories-box-tiles {
    padding: 30px 0;
  }
}
.i-categories-box-tiles .i-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
@media (min-width: 768px) {
  .i-categories-box-tiles .i-categories {
    margin: -10px;
  }
}
@media (max-width: 767px) {
  .i-categories-box-tiles .i-categories {
    margin: -2px;
    position: relative;
  }
}
.i-categories-box-tiles .i-category-item {
  border: 1px solid #EBEBEB;
  border-radius: 5px;
  position: relative;
}
.i-categories-box-tiles .i-category-item.i-category-item-disabled-hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.i-categories-box-tiles .i-category-item.i-category-item-disabled-hover .i-category-item-in {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.i-categories-box-tiles .i-category-item.i-category-item-disabled-hover:hover {
  border-color: transparent;
}
.i-categories-box-tiles .i-category-item.i-category-item-disabled-hover:hover .i-category-item-in {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.i-categories-box-tiles .i-category-item:before {
  content: "";
  display: block;
  padding-top: 100%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .i-categories-box-tiles .i-category-item {
    width: calc(20% - 20px) !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .i-categories-box-tiles .i-category-item {
    width: calc(25% - 20px) !important;
  }
}
@media (min-width: 768px) {
  .i-categories-box-tiles .i-category-item {
    width: calc(16.6666666667% - 20px);
    margin: 10px;
  }
}
@media (max-width: 767px) {
  .i-categories-box-tiles .i-category-item {
    width: calc(50% - 4px) !important;
    margin: 2px;
  }
}
.i-categories-box-tiles .i-category-item-in {
  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;
  padding: 10px;
}
.i-categories-box-tiles .i-category-item-pic {
  width: 100%;
  height: 100%;
  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;
}
@media (min-width: 1200px) {
  .i-categories-box-tiles .i-category-item-pic .ico, .i-categories-box-tiles .i-category-item-pic .svg, .i-categories-box-tiles .i-category-item-pic img {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 1199px) {
  .i-categories-box-tiles .i-category-item-pic .ico, .i-categories-box-tiles .i-category-item-pic .svg, .i-categories-box-tiles .i-category-item-pic img {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .i-categories-box-tiles .i-category-item-pic .ico, .i-categories-box-tiles .i-category-item-pic .svg, .i-categories-box-tiles .i-category-item-pic img {
    width: 55px !important;
    height: 55px !important;
  }
}
.i-categories-box-tiles .i-category-item-title {
  margin: 0 auto;
}

@media (min-width: 768px) {
  .i-categories-box-tiles-more {
    display: none;
  }
}
@media (max-width: 767px) {
  .i-categories-box-tiles-more {
    display: block;
    background-color: white;
    padding: 30px 0;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 9081;
  }
  .i-categories-box-tiles-more:before {
    content: "";
    display: block;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#FFFFFF));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 66px;
    z-index: 1;
  }
}

@media (min-width: 768px) {
  .fade-desktop {
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
  }
}

.in-cat-tabs {
  background-color: white;
}
@media (min-width: 768px) {
  .in-cat-tabs {
    padding: 50px 0 40px 0;
  }
}
@media (max-width: 767px) {
  .in-cat-tabs {
    padding: 30px 0;
  }
}
.in-cat-tabs .container {
  position: relative;
}
.in-cat-tabs .c-arrow {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #EBEBEB !important;
  top: 35px;
}
.in-cat-tabs .c-arrow .fas {
  color: var(--text-color, #333) !important;
}
.in-cat-tabs .c-arrow:hover {
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .in-cat-tabs-box.is-sub-cat-has-bg .in-sub-cat-tab-box {
    background-color: rgba(var(--links-color), 0.1);
    padding: 20px 0 30px 0;
  }
}
@media (min-width: 768px) {
  .in-cat-tabs-box.is-sub-cat-has-bg .in-tabs-content {
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .in-cat-tabs-box.is-sub-cat-has-bg .in-tab-cat-grid {
    border-bottom: 0;
  }
}
@media (min-width: 768px) {
  .in-cat-tabs-box.is-sub-cat-has-bg .in-sub-cat-tab-list {
    padding: 10px 30px 0 30px;
  }
}
@media (min-width: 768px) {
  .in-tabs-content {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .in-tabs-content .in-sub-cat-tab-pane {
    display: none;
  }
}

.in-tab-cat-grid {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media (min-width: 768px) {
  .in-tab-cat-grid {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #E8EDEF;
  }
}
@media (max-width: 767px) {
  .in-tab-cat-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 768px) {
  .in-tab-cat-grid.owl-carousel .in-tab-cat-link:before {
    bottom: 0;
  }
}
@media (min-width: 768px) {
  .in-tab-cat-grid .owl-item,
  .in-tab-cat-grid .in-tab-cat-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    max-width: 300px;
    height: 100%;
    padding: 0 5px;
  }
}

@media (min-width: 768px) {
  .in-tab-cat-grid-min .in-tab-cat-link {
    -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;
    height: 70px;
    max-width: 240px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .in-tab-cat-grid-min .in-tab-cat-link {
    gap: 10px;
  }
}
@media (min-width: 992px) {
  .in-tab-cat-grid-min .in-tab-cat-link {
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .in-tab-cat-grid-min .in-tab-cat-link .in-tab-main-cat-txt {
    padding-bottom: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
@media (min-width: 992px) {
  .in-tab-cat-grid-min .in-tab-ico-box-main {
    width: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .in-tab-cat-grid-min .in-tab-ico-box-main {
    width: 35px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .in-tab-cat-grid-min .in-tab-ico-box-main .in-tab-ico {
    min-width: 35px;
    min-height: 35px;
    max-height: 35px;
  }
}

@media (max-width: 767px) {
  .in-tab-cat-item {
    border-bottom: 1px solid #E8EDEF;
  }
}
@media (max-width: 767px) {
  .in-tab-cat-item.active {
    border-bottom-color: transparent;
  }
}

.in-tab-cat-link {
  position: relative;
}
@media (min-width: 768px) {
  .in-tab-cat-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    height: 95px;
  }
}
@media (max-width: 767px) {
  .in-tab-cat-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    min-height: 70px;
    overflow: hidden;
  }
}
.in-tab-cat-link:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--secondary-base-color);
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}
.in-tab-cat-link.active .in-tab-ico path[stroke],
.in-tab-cat-link.active .in-tab-ico rect[stroke] {
  stroke: var(--secondary-base-color);
}
.in-tab-cat-link.active .in-tab-ico path[fill],
.in-tab-cat-link.active .in-tab-ico rect[fill] {
  fill: var(--secondary-base-color);
}
.in-tab-cat-link.active .in-tab-main-cat-txt {
  color: var(--secondary-base-color);
}
.in-tab-cat-link:not(.active):before {
  display: none;
}
@media (min-width: 768px) {
  .in-tab-cat-link:hover .in-tab-main-cat-txt {
    color: var(--secondary-base-color);
  }
}
@media (min-width: 768px) {
  .in-tab-cat-link.d-md-none + .in-sub-cat-tab-pane {
    display: none;
  }
}

@media (max-width: 767px) {
  .in-tab-cat-link-in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

.in-tab-cat-link-arrow {
  width: 50px;
  height: 50px;
  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;
  margin-right: -19px;
}

.in-tab-main-cat-txt {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .in-tab-main-cat-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .in-sub-cat-tab-box {
    border-radius: 8px;
  }
}
.in-sub-cat-tab-box.in-sub-cat-tab-box-empty {
  display: none;
}

@media (min-width: 768px) {
  .in-sub-cat-tab-grid {
    display: grid;
    gap: 20px 5px;
    grid-template-columns: repeat(9, minmax(100px, 130px));
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .in-sub-cat-tab-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .in-sub-cat-tab-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1025px) and (max-width: 1199px) {
  .in-sub-cat-tab-grid {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (min-width: 1200px) {
  .in-sub-cat-tab-grid {
    grid-template-columns: repeat(9, minmax(100px, 130px));
  }
}
@media (max-width: 767px) {
  .in-sub-cat-tab-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px 20px;
    background-color: rgba(var(--links-color), 0.1);
  }
}
@media (min-width: 768px) {
  .in-sub-cat-tab-grid .c-sub-grid-txt {
    padding-top: 5px;
  }
}
@media (min-width: 768px) {
  .in-sub-cat-tab-list {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media (max-width: 767px) {
  .in-sub-cat-tab-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
    background-color: rgba(var(--links-color), 0.1);
    border-radius: 0 0 8px 8px;
  }
}

@media (min-width: 768px) {
  .in-sub-list-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .in-sub-list-link {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .in-sub-list-link:first-child {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .in-sub-list-link:last-child {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .in-sub-list-link + .in-sub-list-link {
    border-top: 1px solid #E8EDEF;
  }
}

.in-tab-sub-cat-link {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .in-tab-sub-cat-link {
    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;
    text-align: center;
    padding: 0 5px;
  }
}
@media (max-width: 767px) {
  .in-tab-sub-cat-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 50px;
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .in-tab-sub-cat-link:hover .c-sub-grid-txt {
    color: rgba(var(--links-color));
  }
}
@media (max-width: 767px) {
  .in-tab-sub-cat-link + .in-tab-sub-cat-link {
    border-top: 1px solid #E8EDEF;
  }
}
.in-tab-sub-cat-link .c-arrow {
  position: static;
  width: 50px;
  height: 50px;
  background-color: transparent !important;
  border-color: #E5E5E5 !important;
}
.in-tab-sub-cat-link .c-arrow .fas {
  color: rgba(var(--links-color)) !important;
  font-size: 24px;
}

.in-tab-ico-box {
  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;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (min-width: 768px) {
  .in-tab-ico-box {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .in-tab-ico-box img {
    -o-object-fit: contain;
       object-fit: contain;
    width: auto !important;
  }
}
.in-tab-ico-box svg path[stroke],
.in-tab-ico-box svg rect[stroke] {
  stroke: rgba(var(--links-color));
}
.in-tab-ico-box svg path[fill],
.in-tab-ico-box svg rect[fill] {
  fill: rgba(var(--links-color));
}

.in-tab-ico {
  max-height: 100%;
}
@media (min-width: 768px) {
  .in-tab-ico {
    min-width: 50px;
    min-height: 50px;
  }
}
.in-tab-ico-box-main {
  height: 50px;
}
@media (max-width: 767px) {
  .in-tab-ico-box-main {
    width: 50px;
  }
}

.in-tab-ico-main {
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 768px) {
  .in-tab-ico-box-sub {
    height: 70px;
  }
}
@media (max-width: 767px) {
  .in-tab-ico-box-sub {
    width: 36px;
    height: 36px;
  }
}
.in-tab-ico-box-sub .in-tab-ico {
  max-width: 100%;
  max-height: 100%;
}

.i-categories-box-tiles .i-category-item-list {
  display: block;
}
.i-categories-box-tiles .i-category-item {
  border: none;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}
.i-categories-box-tiles .i-category-item:before {
  display: none;
}
.i-categories-box-tiles .i-category-item .i-category-item-in {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: static;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
}
.i-categories-box-tiles .i-category-item:hover .i-category-item-in {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.i-categories-box-tiles .i-category-item-pic {
  height: auto;
}
.i-categories-box-tiles .i-category-item-in {
  padding-top: 20px;
  padding-bottom: 20px;
}
.i-categories-box-tiles .i-category-item-in,
.i-categories-box-tiles .i-category-item-pic {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (min-width: 768px) {
  .i-categories-box-slider.c-slider-overflow-with-popup .container::before,
  .i-categories-box-slider.c-slider-overflow-with-popup .container::after {
    background-color: var(--body-bg-color);
  }
}
.i-categories-box-slider.c-slider-overflow-with-popup .i-category-item-in {
  background-color: transparent;
}
.i-categories-box-slider.c-slider-overflow-with-popup .owl-item.active:hover .i-category-item-in {
  background-color: white;
}

.i-category-item-list-more {
  display: none;
}

.i-categories-box-tiles-more {
  left: 3px;
  right: 3px;
  width: auto;
}

.l-services-box {
  margin-top: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.l-services-box .l-page-head {
  text-align: center;
  margin-bottom: 40px;
}

.l-services-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-services-nav-item .nav-link {
  border-radius: 4px 4px 0 0;
  font-size: 16px;
  line-height: 24px;
  padding: 19px 30px;
}
.l-services-nav-item .nav-link.active {
  background-color: var(--primary-base-color);
  color: white !important;
  border: none !important;
}
@media (max-width: 767px) {
  .l-services-nav-item .nav-link {
    border-radius: 0;
    padding: 15px 20px;
  }
}

.l-service-actions {
  background-color: white;
  margin-top: 50px;
  padding: 70px 0;
}
@media (max-width: 767px) {
  .l-service-actions {
    padding: 50px 0;
  }
}

.l-service-action-item {
  max-width: 370px;
  text-align: center;
}
@media (max-width: 767px) {
  .l-service-action-item + .l-service-action-item {
    margin-top: 50px;
  }
}

.l-service-action-item-footer .btn {
  padding-left: 30px;
  padding-right: 30px;
}

.l-service-action-img {
  margin-bottom: 17px;
  width: 62px;
  height: 62px;
}

.l-service-actions-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media (max-width: 767px) {
  .l-service-actions-in {
    -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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.l-service-action-item-title {
  font-size: 24px;
  line-height: 33px;
  margin-bottom: 22px;
}

.l-service-tab {
  padding-top: 45px;
  background-color: var(--primary-base-color);
}
@media (max-width: 767px) {
  .l-service-tab {
    padding-top: 36px;
  }
}

.l-services-item {
  background: white;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  padding: 40px 40px 40px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .l-services-item {
    padding: 30px 20px 20px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-services-item + .l-services-item {
  margin-top: 10px;
}
.l-services-item.up .l-services-item-title {
  color: #0096C7;
}
.l-services-item.mark .l-services-item-title {
  color: #74B31B;
}
.l-services-item.top .l-services-item-title {
  color: #0EBFF8;
}
.l-services-item.urgent .l-services-item-title {
  color: #FF585B;
}
.l-services-item.vip .l-services-item-title {
  color: #FF9D00;
}
.l-services-item.press .l-services-item-title {
  color: #333333;
}

@media (max-width: 767px) {
  .l-services-item-content {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .l-services-item-img {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .l-services-item-img {
    margin-right: 50px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
.l-services-item-img img {
  width: 70px;
}

.l-services-box-text {
  max-width: 736px;
  margin: 0 auto 43px auto;
  font-size: 18px;
  line-height: 26px;
  color: white;
  text-align: center;
}
@media (max-width: 767px) {
  .l-services-box-text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 33px;
  }
}

.l-services-item-title {
  color: var(--text-color);
  font-weight: bold;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 10px;
}

.p-pay-methods {
  margin: 0 -7px;
}
.p-pay-methods-item {
  position: relative;
}
.p-pay-methods-item-in {
  border: 1px solid #E5E5E5;
  cursor: pointer;
  border-radius: 5px;
}
.p-pay-methods-item-in label {
  cursor: pointer;
}
.p-pay-methods-item-in:hover {
  border-color: rgb(203.5, 203.5, 203.5);
}

.p-pay-methods-item-content label {
  display: block;
}

.p-pay-methods-item-radio {
  position: absolute;
  visibility: hidden;
}

.l-svc-item {
  display: block;
  background-color: white;
  border: 2px solid transparent;
  margin-bottom: 10px;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  text-align: left;
  min-height: 50px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .l-svc-item {
    margin: 0 0 10px 0;
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .l-svc-item {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.l-svc-item.active {
  border: 2px solid rgba(var(--primary-base-color-rgba), 0.5);
  -webkit-box-shadow: 0 3px 10px rgba(var(--primary-base-color-rgba), 0.2);
          box-shadow: 0 3px 10px rgba(var(--primary-base-color-rgba), 0.2);
}
.l-svc-item.active .l-svc-item-descr {
  display: block;
}
.l-svc-item.active .l-svc-item-top {
  border-color: transparent;
}
.l-svc-item .l-svc-item-icon, .l-svc-item .ico {
  position: relative;
  z-index: 10;
  margin-left: 10px;
}
.l-svc-item .l-svc-item-icon:first-child {
  margin-left: 0;
}

@media (max-width: 575px) {
  .c-form-creation-base .l-svc-item {
    margin-left: 0;
    margin-right: 0;
  }
}

.l-svc-item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 10px 20px;
  margin-bottom: 0;
  min-height: 50px;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
  margin: -2px;
}
@media (max-width: 767px) {
  .l-svc-item-top {
    border-radius: 0;
  }
}

.l-svc-item-icon {
  margin-right: 20px;
  width: 30px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.l-svc-item-descr {
  display: none;
  padding: 20px;
  background-color: #F4F4F4;
  border-radius: 0 0 4px 4px;
}

.l-svc-item-price {
  font-weight: bold;
  padding-left: 20px;
  margin-left: auto;
  white-space: nowrap;
  margin-bottom: 0;
}

.l-svc-item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-svc-item-info img {
  width: 60px;
  height: 50px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-svc-item-info-r {
  padding-left: 20px;
}

@media (min-width: 768px) {
  .l-svc-packages {
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .l-svc-packages {
    margin-bottom: 25px;
  }
}
.l-svc-packages .l-svc-item-top {
  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: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (min-width: 992px) {
  .l-svc-packages .l-svc-item-top {
    padding: 20px 30px 20px 20px;
  }
}
@media (max-width: 991px) {
  .l-svc-packages .l-svc-item-top {
    padding: 20px 20px 30px 20px;
  }
}

.l-svc-include-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-svc-include-item .l-svc-item-icon {
  margin-right: 10px;
}

.l-svc-item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 23px;
}
@media (max-width: 991px) {
  .l-svc-item-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 991px) {
  .l-svc-item-head .form-check-label {
    position: absolute;
    top: 30px;
    left: 20px;
  }
}
@media (max-width: 767px) {
  .l-svc-item-head .form-check-label {
    left: 8px;
  }
}
.l-svc-item-head .l-svc-item-icon {
  width: 70px;
  height: 70px;
  margin-right: 0;
}
@media (max-width: 991px) {
  .l-svc-item-head .l-svc-item-icon {
    margin-left: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  .l-svc-item-head .l-svc-item-r {
    text-align: center;
  }
}

.l-svc-item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .l-svc-item-body {
    margin-left: -10px;
    margin-right: -10px;
    width: calc(100% + 20px);
  }
}

.l-svc-included {
  padding: 20px;
  background: #F6F6F6;
  border-radius: 4px;
  gap: 10px;
}
@media (min-width: 992px) {
  .l-svc-included {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .l-svc-included {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-svc-included .l-svc-item-icon {
  width: 20px;
  height: 20px;
}

.l-svc-item-l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
  .l-svc-item-l {
    width: 130px;
    padding-right: 20px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.l-svc-item-r {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
.l-svc-item-r .btn-group {
  min-width: 0;
  overflow: auto;
}

.l-svc-item-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
@media (min-width: 992px) {
  .l-svc-item-footer {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .l-svc-item-footer {
    margin-top: 15px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .l-svc-item-footer .l-svc-item-l {
    width: 100%;
    margin-bottom: 10px;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
}
@media (max-width: 991px) {
  .l-svc-item-footer .l-svc-item-r {
    margin-bottom: 10px;
  }
}

.l-empty-page .container {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-empty-page .h1 {
  font-size: 24px;
  line-height: normal;
  font-weight: 700;
  position: relative;
  z-index: 10;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .l-empty-page .h1 {
    font-size: 22px;
  }
}

.l-empty-page-content {
  max-width: 800px;
}

.l-empty-page-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-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  text-align: center;
  margin: 10px auto 60px;
}
@media (max-width: 991px) {
  .l-empty-page-center {
    margin-bottom: 40px;
    margin-top: 0;
  }
}

.l-empty-page-copy {
  margin-top: auto;
}

.l-empty-page-logo {
  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;
  z-index: 10;
}
.l-empty-page-logo img {
  min-width: 28px;
}

.l-empty-page-logo-box {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .l-empty-page-logo-box {
    margin-bottom: 20px;
  }
}
.l-empty-page-logo-box svg {
  max-width: 600px;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .l-empty-page-logo-box svg {
    max-width: 250px;
  }
}

.l-empty-page-text {
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .l-empty-page-text {
    font-size: 14px;
    line-height: 21px;
  }
}
.l-empty-page-text a {
  text-decoration: underline !important;
}
.l-empty-page-text a:hover {
  text-decoration: none !important;
}

.l-empty-page-links {
  -webkit-columns: 3;
     -moz-columns: 3;
          columns: 3;
  text-align: left;
  margin-top: 36px;
}
@media (max-width: 767px) {
  .l-empty-page-links {
    -webkit-columns: 1;
       -moz-columns: 1;
            columns: 1;
    margin-top: 25px;
    margin-bottom: 20px;
  }
}
.l-empty-page-links li {
  margin-bottom: 15px;
}

.l-empty-page-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.l-empty-page-search .form-control {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  line-height: normal;
  border-radius: 5px 0 0 5px;
  background: #FFF;
  height: 43px;
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.l-empty-page-search .form-control:focus {
  border-color: rgba(var(--links-color));
}
.l-empty-page-search .form-control::-webkit-input-placeholder {
  color: #999;
}
.l-empty-page-search .form-control::-moz-placeholder {
  color: #999;
}
.l-empty-page-search .form-control:-ms-input-placeholder {
  color: #999;
}
.l-empty-page-search .form-control::-ms-input-placeholder {
  color: #999;
}
.l-empty-page-search .form-control::placeholder {
  color: #999;
}

.l-empty-page-search-btn {
  display: block !important;
  padding: 12px 30px;
  font-size: 14px;
  height: 43px;
  line-height: 17px;
  border-radius: 0 5px 5px 0;
  width: auto;
  color: #fff;
}

.l-empty-page-copy {
  text-align: center;
  padding: 0 0 36px 0;
  font-size: 13px;
  color: #595959;
}

.hl-list {
  margin-bottom: 65px;
}

.hl-list-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .hl-list-category {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.hl-list-category + .hl-list-category {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #EBEBEB;
}
@media (max-width: 767px) {
  .hl-list-category + .hl-list-category {
    margin-top: 30px;
    padding-top: 30px;
  }
}

.hl-list-category-view {
  display: block;
}
.hl-list-category-view .hl-list-title {
  width: auto;
  padding-bottom: 20px;
}

.hl-list-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 25px;
  width: 285px;
  padding-right: 20px;
}

.hl-list-items {
  overflow: hidden;
}
.hl-list-items a {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .hl-list-items {
    padding-top: 18px;
  }
}
.hl-list-items > li + li {
  margin-top: 10px;
}

.hl-list-textshort {
  padding-top: 10px;
  padding-bottom: 15px;
}

.hl-list-search > li {
  position: relative;
  padding-left: 30px;
}
.hl-list-search > li + li {
  margin-top: 10px;
}
.hl-list-search > li em {
  background-color: #f8e26d;
  font-style: normal;
}

.hl-list-search-num {
  position: absolute;
  top: 0;
  left: 0;
}

/*sitemaps*/
.h-cats-list {
  margin: 10px 0 15px 0;
}
@media (min-width: 768px) {
  .h-cats-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    opacity: 0;
  }
  .h-cats-list.is-masonry {
    opacity: 1;
  }
  .h-cats-list.h-cats-list-3-cols .h-cats-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 32%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .h-cats-list {
    margin-bottom: 20px;
    margin-top: 0;
    height: auto !important;
  }
}
.h-cats-list.h-cats-list-cats {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .h-cats-list.h-cats-list-cats {
    margin-top: 7px;
  }
  .h-cats-list.h-cats-list-cats li + li {
    margin-top: 13px;
  }
}
.h-cats-list.h-cats-list-cats .h-cat-level-2 {
  padding-left: 0;
}
@media (min-width: 768px) {
  .h-cats-list.h-cats-list-cats .h-cat-level-2 {
    padding-bottom: 10px;
  }
}
.h-cats-list .dropdown-item {
  padding-left: 20px !important;
  padding-right: 20px !important;
  position: relative;
}
.h-cats-list .dropdown-item:hover {
  z-index: 11;
}

@media (min-width: 768px) {
  .h-cats-list.h-cats-on-columns {
    display: block;
    opacity: 1;
  }
  .h-cats-list.h-cats-on-columns li {
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .h-cats-list.h-cats-on-columns {
    -webkit-columns: 3;
       -moz-columns: 3;
            columns: 3;
  }
}
@media (min-width: 992px) {
  .h-cats-list.h-cats-on-columns {
    -webkit-columns: 4;
       -moz-columns: 4;
            columns: 4;
  }
}

.h-cats-list-item {
  margin-bottom: 30px;
  position: relative;
  /*  width: 100%;*/
}
@media (min-width: 768px) {
  .h-cats-list-item {
    padding-right: 30px;
    min-width: 300px;
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .h-cats-list-item:last-child {
    border-bottom: 1px solid #E5E5E5;
  }
}
@media (max-width: 767px) {
  .h-cats-list-item {
    position: static !important;
    margin-bottom: 0 !important;
  }
}
.h-cats-list-item.opened .fl-search-cats-dropdown,
.h-cats-list-item.opened .h-cats-list-item-collapsed {
  display: block;
}
@media (min-width: 768px) {
  .h-cats-list-item.opened .h-cat-level-2-short {
    display: none;
  }
}
.h-cats-list-item .fl-dyn-dropdown-label-styles {
  margin-top: 10px;
  margin-bottom: 10px;
}
.h-cats-list-item .ps__rail-y {
  z-index: 12;
}
@media (min-width: 768px) {
  .h-cats-list-item .fl-search-cats-dropdown {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background-color: white;
    z-index: 10000;
    position: absolute;
    top: -4px;
    left: -20px;
    min-width: 250px;
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .h-cats-list-item .fl-search-cats-dropdown {
    display: none !important;
  }
}
.h-cats-list-item .fl-search-cats-dropdown li {
  margin-top: 0;
}
.h-cats-list-item .fl-search-cats-dropdown:after {
  content: "";
  position: absolute;
  bottom: 14px;
  right: 0;
  left: 0;
  height: 17px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #FFFFFF), color-stop(133.33%, rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, #FFFFFF 50%, rgba(255, 255, 255, 0) 133.33%);
  z-index: 10;
}
.h-cats-list-item ul {
  list-style: none;
}

.h-cats-list-item-main {
  line-height: 20px;
  display: inline-block;
  position: relative;
}
@media (min-width: 768px) {
  .h-cats-list-item-main {
    max-width: 234px;
  }
}
.h-cats-list-item-main a, .h-cats-list-item-main .hidden-link {
  color: var(--text-color);
}
@media (min-width: 768px) {
  .h-cats-list-item-main a, .h-cats-list-item-main .hidden-link {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color) !important;
    text-decoration: underline;
  }
  .h-cats-list-item-main a:hover, .h-cats-list-item-main .hidden-link:hover {
    text-decoration: none;
  }
}
@media (max-width: 767px) {
  .h-cats-list-item-main a, .h-cats-list-item-main .hidden-link {
    font-size: 16px !important;
    text-decoration: none;
  }
}
@media (max-width: 767px) {
  .h-cats-list-item-main {
    padding: 15px 20px 15px 0;
    border-top: 1px solid #E5E5E5;
    width: 100%;
  }
}

.h-cats-list-item-collapsed {
  display: none;
}

.opened .h-collapse-arrow:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.h-collapse-arrow {
  background-image: none;
  position: absolute;
  display: none;
  width: 40px;
  height: 40px;
  top: 27px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -14px;
  cursor: pointer;
}
.h-collapse-arrow:after {
  content: "";
  position: absolute;
  top: 15px;
  right: 10px;
  width: 9px;
  height: 5px;
  display: block;
  background-repeat: no-repeat;
  background-image: url(../css/images/arrow.svg?a870a5c2a903e4f05f823ab64aea4dd8);
  background-size: contain;
}
.h-collapse-arrow:after {
  top: 52%;
  right: 14px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 11px;
  width: 11px;
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
}
@media (max-width: 767px) {
  .h-collapse-arrow {
    display: inline-block;
  }
}

.h-cats-list-area-cities {
  overflow: hidden;
  text-overflow: ellipsis;
}
.h-cats-list-area-cities a, .h-cats-list-area-cities .hidden-link {
  font-size: 14px;
  line-height: 26px;
  text-decoration: none;
}
.h-cats-list-area-cities a:hover, .h-cats-list-area-cities .hidden-link:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .h-cats-list-area-cities {
    height: 0;
    overflow: hidden;
    padding-left: 10px;
  }
  .h-cats-list-area-cities li:last-of-type {
    padding-bottom: 20px;
  }
}

.h-cats-list-cats .h-cats-list-item-main {
  margin-bottom: 0;
}
.h-cats-list-cats li + li {
  margin-top: 6px;
}
@media (max-width: 767px) {
  .h-cats-list-cats > li + li {
    margin-top: 0;
  }
}
.h-cats-list-cats .h-cats-list-cat {
  display: inline-block;
  line-height: 20px;
}

.h-more {
  color: #595959 !important;
  margin-top: -5px;
  display: inline-block;
}

.h-showed-more {
  height: auto !important;
}
@media (max-width: 767px) {
  .h-showed-more .h-more-all {
    display: none;
  }
}
@media (max-width: 767px) {
  .h-showed-more .h-more-less {
    display: inline !important;
  }
}

.h-more-less {
  display: none;
}

.h-cat-level-1 .h-cats-list-item-main > .h-cats-list-cat {
  color: var(--text-color);
  font-size: 18px;
  line-height: 20px;
}

@media (max-width: 767px) {
  .h-cat-level-2 {
    height: 0;
    overflow: hidden;
  }
}
@media (min-width: 768px) {
  .h-cat-level-2 {
    height: auto !important;
    margin-top: 15px;
  }
}
.h-cat-level-2 > li > .h-cats-list-cat {
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .h-cat-level-2 > li {
    padding: 7px 0;
  }
}
@media (min-width: 768px) {
  .h-cat-level-2 > li + li {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .h-cat-level-2 > li:last-of-type {
    padding-bottom: 27px;
  }
}
@media (max-width: 767px) {
  .h-cat-level-2.h-cat-level-2-short {
    height: auto;
    display: none;
  }
}

.h-cat-level-3 {
  margin: 6px 0 0 10px !important;
}
.h-cat-level-3 > li > .h-cats-list-cat {
  color: var(--text-color);
}
.h-cat-level-3 > li > .h-cats-list-cat:hover {
  color: #0096C7;
  color: rgba(var(--links-color));
}
.h-cat-level-3 > li {
  font-size: 14px;
  line-height: 25px;
}
.h-cat-level-3:empty {
  display: none;
}

.h-cat-level-4 > li > .h-cats-list-cat {
  color: #595959;
  font-size: 13px;
}

.h-cat-level-5 {
  margin: 0 0 6px 0 !important;
}
.h-cat-level-5 > li > .h-cats-list-cat {
  color: rgb(114.5, 114.5, 114.5);
  font-size: 13px;
}

.hl-list {
  background: white;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 20px;
}

@media (max-width: 767px) {
  .h-cats-aside {
    margin-bottom: 10px;
  }
}

.h-cats-list-item .fl-search-cats-dropdown {
  min-width: 280px;
}

@media (min-width: 768px) {
  .c-shadow-white-box .h-cats-list-item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .c-shadow-white-box .h-cats-list-item:first-child .h-cats-list-item-main {
    border-top: 0;
    margin-top: -20px;
  }
}
@media (max-width: 767px) {
  .c-shadow-white-box .h-cats-list-item:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 767px) {
  .c-shadow-white-box .h-cats-list-item:last-child .h-cat-level-2 > li:last-of-type {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .c-shadow-white-box .h-cats-list-item:last-child .h-cats-list-item-main {
    padding-bottom: 0;
  }
}

/*pages*/
/*items*/
.it-item-title a:visited,
.cp-list-item-title a:visited {
  color: #5B00A3;
}

@media (min-width: 768px) {
  .it-list-top .it-view-gallery {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 767px) {
  .it-list-top .it-view-gallery {
    margin-bottom: 10px;
  }
}

.it-reviews {
  height: 20px;
}
.it-reviews .rw-in-list {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.it-img-box {
  position: relative;
  height: 180px;
  overflow: hidden;
  padding: 0;
  text-align: center;
  z-index: 1;
  border-radius: 4px 4px 0 0;
}
@media (max-width: 767px) {
  .it-img-box {
    height: 120px;
  }
}
.it-img-box.it-img-box-empty img.it-img {
  min-width: 100px;
  max-width: 100px;
}
@media (max-width: 767px) {
  .it-img-box.it-img-box-empty img.it-img {
    min-width: 70px;
    max-width: 70px !important;
  }
}
.it-img-box:hover .hvr-slider-wrap {
  display: block;
}

.hvr-slider-wrap {
  height: 100%;
}

.hvr-slider-image-wrap {
  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: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .it-img {
    font-size: 13px;
  }
}

.it-img-box-contain .it-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: inline-block;
  vertical-align: middle;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 100%;
  min-height: auto;
  width: auto;
}

.it-img-box-cover {
  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;
}
.it-img-box-cover .it-img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 100%;
}

.it-img-box-empty {
  background-color: #F4F4F4;
  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;
}
.it-img-box-empty .it-img {
  -o-object-fit: contain;
     object-fit: contain;
}

.it-img-count {
  position: absolute;
  top: auto;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.2);
  padding: 1px;
  border-radius: 2px;
  font-size: 13px;
  line-height: 16px;
  color: white;
  min-width: 26px;
  z-index: 2;
}

.it-item-labels {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
}
.it-item-labels .badge {
  font-size: 12px;
  line-height: normal;
}
.it-item-labels .badge + .badge {
  margin-left: 5px;
}
.it-item-labels .badge.badge-success {
  background-color: #0F8022;
}
.it-item-labels .badge.badge-danger {
  background-color: #D11515;
}

.it-item-title {
  font-size: 18px;
  font-weight: 700;
  min-height: 18px;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--text-color);
  white-space: normal;
}
@media (max-width: 767px) {
  .it-item-title {
    font-size: 14px;
    min-height: 14px;
    -webkit-line-clamp: 2;
  }
}
.it-item-title::after {
  display: none;
}
.it-item-title.wrap {
  white-space: normal;
  max-height: 42px;
}

.it-price {
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  margin-right: 10px;
  color: var(--primary-base-color);
}
@media (max-width: 767px) {
  .it-price {
    font-size: 16px;
  }
}

.it-price-curr-on {
  cursor: pointer;
  line-height: 26px;
}
.it-price-curr-on span {
  border-bottom: 1px dotted var(--text-color);
}
.it-price-curr-on:hover span {
  border-bottom-color: transparent;
}

.it-price-auction {
  font-size: 13px;
  line-height: 16px;
  font-weight: 200;
  color: #595959;
}

.it-price-old {
  position: absolute;
  bottom: -3px;
  font-size: 13px;
  text-decoration-line: line-through;
  color: #595959;
}
@media (max-width: 991px) {
  .it-price-old {
    display: none;
  }
}

.it-item-address {
  white-space: nowrap;
  min-height: 12px;
  font-size: 13px;
  line-height: 16px;
  position: relative;
  color: #595959;
  overflow: hidden;
}

.it-owner {
  line-height: 16px;
  font-size: 13px;
  margin-bottom: 4px;
}

.it-action {
  margin-bottom: 11px;
}
.it-action .btn {
  height: 30px;
  line-height: 30px !important;
  width: 100%;
}

.it-date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 14px;
}
.it-date .ico {
  margin-top: 2px;
  margin-right: 5px;
}
.it-date > span, .it-date .ico {
  color: #999;
  white-space: nowrap;
}
.it-date > span > br, .it-date .ico > br {
  display: none;
}

.it-item-labels-bottom {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  text-align: right;
  z-index: 11;
}

.it-item-label {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  color: white;
  padding: 3px 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 22px;
}
.it-item-label + .it-item-label {
  margin-left: 1px;
}
.it-item-label .ico {
  max-height: 14px;
}

.it-grid-item .c-shadow-overflow:after,
.it-list-item .c-shadow-overflow:after {
  z-index: 1;
}

@media (min-width: 768px) {
  .it-category-page {
    gap: 30px;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .it-category-page {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
    padding-bottom: 25px;
  }
}
.it-category-page .l-columns-box-l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .it-category-page .l-columns-box-l {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .it-category-page .l-columns-box-l {
    gap: 30px;
  }
}
.it-category-page .l-columns-box-l .l-banner {
  margin: 0;
}
.it-category-page .h-cats-list-item {
  padding-right: 0;
}
@media (min-width: 768px) {
  .it-category-page .in-box-head > * {
    padding-bottom: 15px;
  }
}
.it-category-page .in-index-box {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .it-category-page .l-aside {
    margin-top: 0;
  }
}

.it-cats-list-item .fl-search-cats-dropdown .dropdown-item {
  padding: 0 20px !important;
  color: #0096C7;
}

.j-lasted-loader:empty {
  display: none;
}

.it-view-list + .in-box-head {
  margin-top: 25px;
}

.it-list-item {
  position: relative;
  height: 180px;
  margin-bottom: 11px;
  border: 1px solid #EBEBEB;
  border-radius: 4px;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  background-color: white;
}
@media (max-width: 767px) {
  .it-list-item {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .it-list-item {
    height: auto;
  }
}
.it-list-item:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.it-list-item.active {
  border-color: #EAE5CF;
}
.it-list-item.selected, .it-list-item.active {
  background-color: #F5FCFC;
  border-color: rgba(var(--links-color));
}
.it-list-item.selected .c-shadow-overflow:after, .it-list-item.active .c-shadow-overflow:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #F5FCFC), color-stop(133.33%, rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, #F5FCFC 50%, rgba(255, 255, 255, 0) 133.33%);
}
.it-list-item .it-item-title {
  white-space: nowrap;
  line-height: 20px;
}
@media (min-width: 992px) {
  .it-list-item .it-item-title {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
@media (max-width: 991px) {
  .it-list-item .it-item-title {
    width: 100%;
    white-space: normal;
    max-height: 40px;
    overflow: hidden;
  }
}
.it-list-item .it-img-box {
  position: absolute;
  width: 232px;
  height: 100%;
}
@media (max-width: 991px) {
  .it-list-item .it-img-box {
    width: 155px;
  }
}
@media (max-width: 413px) {
  .it-list-item .it-img-box {
    width: 110px;
  }
}
@media (min-width: 414px) and (max-width: 767px) {
  .it-list-item .it-img-box {
    width: 140px;
  }
}
.it-list-item .it-price-box {
  height: auto;
}
@media (min-width: 992px) {
  .it-list-item .it-price-box {
    margin-bottom: 7px;
  }
}
@media (max-width: 991px) {
  .it-list-item .it-price-box {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.it-list-item .it-item-address {
  font-size: 14px;
  line-height: 20px;
  color: #999;
  font-weight: normal;
}
@media (max-width: 991px) {
  .it-list-item .it-item-address {
    white-space: normal;
    max-height: 40px;
    overflow: hidden;
    font-size: 13px;
    line-height: 16px;
    color: #595959;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 8px;
  }
}
.it-list-item .it-price-auction {
  line-height: 20px;
}
.it-list-item .it-action {
  margin-bottom: 0;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .it-list-item .it-action {
    display: none;
  }
}
@media (max-width: 360px) {
  .it-list-item .it-date svg {
    display: none;
  }
}
@media (min-width: 992px) {
  .it-list-item .it-item-desc {
    margin-top: auto;
  }
}
.it-list-item .c-item-fav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .it-list-item .c-item-fav {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .it-list-item .it-item-labels-bottom {
    text-align: left;
  }
}
.it-list-item .rw-in-list-title {
  color: var(--text-color);
}

.it-list-item-t {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: 10px;
}

.it-list-item-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .it-list-item-r {
    left: 175px;
  }
}
@media (max-width: 767px) {
  .it-list-item-r {
    left: 160px;
  }
}
@media (max-width: 413px) {
  .it-list-item-r {
    left: 130px;
  }
}
@media (min-width: 768px) {
  .it-list-item-r .or-add-link {
    margin-right: 20px;
  }
}

.it-list-item-in {
  position: relative;
  padding: 20px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.it-list-item-in > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (min-width: 992px) {
  .it-list-item-in {
    padding-left: 252px;
  }
}
@media (max-width: 991px) {
  .it-list-item-in {
    padding-left: 175px;
  }
}
@media (max-width: 767px) {
  .it-list-item-in {
    padding: 20px 20px 20px 160px;
    height: 100%;
    min-height: 120px;
  }
}
@media (max-width: 413px) {
  .it-list-item-in {
    padding: 20px 20px 20px 130px;
  }
}

@media (max-width: 991px) {
  .it-list-item-in-with-order {
    padding-bottom: 70px;
  }
}
@media (max-width: 991px) {
  .it-list-item-in-with-order .it-list-item-r {
    position: absolute;
    bottom: 15px;
    right: 20px;
    z-index: 1;
    border-top: 1px solid #E5E5E5;
    padding-top: 15px;
  }
}

.it-list-item-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  gap: 10px 15px;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .it-list-item-footer {
    margin-bottom: 8px;
  }
}
@media (min-width: 768px) {
  .it-list-item-footer .c-dot {
    margin: 0 !important;
  }
}
@media (min-width: 768px) {
  .it-list-item-footer .it-date {
    margin-left: auto;
  }
}
.it-list-item-footer .rw-in-list {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (min-width: 992px) {
  .it-list-item-footer .rw-in-list {
    max-width: 250px;
  }
}
.it-list-item-footer .it-rw,
.it-list-item-footer .it-owner {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .it-list-item-footer .it-owner {
    display: none;
  }
}
.it-list-item-footer .it-rw-count {
  margin-right: 0;
  margin-left: 10px;
  color: var(--text-color);
}

.it-list-item-cat {
  font-size: 13px;
  line-height: 16px;
}
@media (max-width: 991px) {
  .it-list-item-cat {
    display: none;
  }
}

.it-item-desc {
  font-size: 13px;
  line-height: 16px;
  color: #595959;
  min-height: 16px;
  max-height: 40px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .it-item-desc {
    display: none;
  }
}

.it-price-for {
  font-weight: 400;
}

.it-cats-lvl-2-wrap {
  margin-bottom: 28px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (min-width: 768px) {
  .it-cats-lvl-2-wrap {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .it-cats-lvl-2-wrap {
    display: none;
  }
}
@media (max-width: 767px) {
  .it-cats-lvl-2-wrap.it-cats-lvl-2-wrap-visible-mob {
    display: block;
  }
}
.it-cats-lvl-2-wrap::-webkit-scrollbar {
  display: none;
  width: 0;
  background: transparent;
}

.it-cats-lvl-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
@media (min-width: 992px) {
  .it-cats-lvl-2 {
    gap: 18px 40px;
  }
}
@media (max-width: 991px) {
  .it-cats-lvl-2 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    white-space: nowrap;
    gap: 10px 30px;
  }
}
.it-cats-lvl-2 .c-link-ajax {
  color: #595959;
}
.it-cats-lvl-2 .c-link-ajax span {
  border-bottom-color: #595959;
}
.it-cats-lvl-2 li {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  /*spacer bottom*/
}
@media (min-width: 992px) {
  .it-cats-lvl-2 li {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(25% - 30px);
            flex: 0 1 calc(25% - 30px);
    max-width: calc(25% - 30px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .it-cats-lvl-2 li {
    min-width: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 15px);
            flex: 0 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 767px) {
  .it-cats-lvl-2 li {
    width: 100%;
  }
}
.it-cats-lvl-2 li::before {
  content: "";
  position: absolute;
  bottom: 1px;
  right: 20px;
  left: 20px;
  display: block;
  height: 1px;
  border-bottom: 1px dotted #595959;
}
.it-cats-lvl-2 li a {
  max-width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.it-cats-lvl-2 li a, .it-cats-lvl-2 li .c-count {
  padding-right: 9px;
  background-color: white;
  display: inline-block;
  -webkit-transform: translateY(1px);
      -ms-transform: translateY(1px);
          transform: translateY(1px);
  line-height: 20px;
  color: var(--text-color);
}
.it-cats-lvl-2 li a:not(.c-link-ajax), .it-cats-lvl-2 li .c-count:not(.c-link-ajax) {
  -webkit-transform: translateY(4px);
      -ms-transform: translateY(4px);
          transform: translateY(4px);
}
.it-cats-lvl-2 li .c-count {
  padding-right: 0;
  background-color: white;
  display: inline-block;
  margin-left: auto;
  padding-left: 13px;
  -webkit-transform: translateY(1px);
      -ms-transform: translateY(1px);
          transform: translateY(1px);
  line-height: 20px;
  position: relative;
}
.it-cats-lvl-2 li .c-count::after {
  content: "";
  display: block;
  width: 16px;
  min-height: 23px;
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #FFFFFF), color-stop(133.33%, rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, #FFFFFF 50%, rgba(255, 255, 255, 0) 133.33%);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 1px;
  z-index: 10;
}
.it-cats-lvl-2 li .c-count:after {
  left: 0;
  width: 12px;
  right: 13px;
}

.it-cats-lvl-2-more:before {
  display: none !important;
}

.it-list-more-link {
  font-size: 13px;
  line-height: 16px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .it-list-more-link {
    margin-left: auto;
    margin-right: -10px;
    padding-left: 10px;
    position: relative;
  }
}

.it-list-num {
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  margin-left: 18px;
}
@media (max-width: 767px) {
  .it-list-num {
    font-size: 13px;
    line-height: 16px;
    margin-left: auto;
  }
}

.it-list-aside {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 222px;
          flex: 0 0 222px;
}
@media (max-width: 991px) {
  .it-list-aside {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
  }
}
@media (max-width: 767px) {
  .it-list-aside {
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

@media (min-width: 992px) {
  .it-view-gallery-4-items-in-row .it-grid-item,
  .it-category-page .it-grid-item {
    -ms-flex-preferred-size: calc(25% - 20px);
        flex-basis: calc(25% - 20px);
  }
}

/*.it-category-page в списке категорий*/
@media (min-width: 992px) {
  .it-view-gallery-3-items-in-row .it-grid-item {
    -ms-flex-preferred-size: calc(33.33% - 20px);
        flex-basis: calc(33.33% - 20px);
  }
}

.it-view-gallery {
  /*на мобайле на главной плитки вид на мобайле в столбик*/
  /*на мобайле на главной плитки в 2 ряда*/
}
@media (max-width: 767px) {
  .it-view-gallery.it-view-gallery-cols-mobile .it-grid-item {
    max-width: 100%;
  }
  .it-view-gallery.it-view-gallery-cols-mobile .it-grid-item:hover .it-grid-item-in {
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
            box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .it-view-gallery.it-view-gallery-cols-mobile .it-grid-item.it-view-gallery-vertical-pic .it-img-box {
    height: 345px !important;
  }
}
@media (max-width: 767px) {
  .it-view-gallery.it-view-gallery-cols-mobile .it-grid-item .it-img-box {
    height: 236px;
  }
  .it-view-gallery.it-view-gallery-cols-mobile .it-grid-item .it-item-title.wrap {
    height: auto;
  }
  .it-view-gallery.it-view-gallery-cols-mobile .it-grid-item .it-grid-mainfo {
    margin-right: -20px;
  }
  .it-view-gallery.it-view-gallery-cols-mobile .it-grid-item .it-item-address {
    color: var(--text-color);
    font-size: 14px;
    line-height: 20px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .it-view-gallery.it-view-gallery-cols-mobile .it-grid-item .it-item-title {
    margin-bottom: 5px;
  }
  .it-view-gallery.it-view-gallery-cols-mobile .it-grid-item .it-date {
    text-align: left !important;
  }
  .it-view-gallery.it-view-gallery-cols-mobile .it-grid-item .it-grid-footer,
  .it-view-gallery.it-view-gallery-cols-mobile .it-grid-item .it-grid-xtra-info {
    border-top: 0;
    padding-top: 0;
  }
  .it-view-gallery.it-view-gallery-cols-mobile .it-grid-item .it-grid-xtra-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .it-view-gallery.it-view-gallery-cols-mobile .it-grid-item .it-grid-footer {
    position: static;
    padding-right: 0;
    margin-bottom: 7px;
    height: auto;
  }
  .it-view-gallery.it-view-gallery-cols-mobile .it-grid-item .it-grid-info {
    padding: 14px 20px 17px 20px;
  }
  .it-view-gallery.it-view-gallery-cols-mobile .it-grid-item-without-date .it-grid-desc {
    padding-right: 30px;
  }
  .it-view-gallery.it-view-gallery-cols-mobile .it-grid-item-price-only .it-grid-footer {
    margin-bottom: 0 !important;
  }
  .it-view-gallery.it-view-gallery-cols-mobile .it-grid-item-price-only .it-price-box {
    margin-right: 55px;
  }
}
@media (max-width: 767px) {
  .it-view-gallery.it-view-gallery-2-in-row-mobile {
    margin: -5px -15px;
    /*if order button enabled*/
  }
  .it-view-gallery.it-view-gallery-2-in-row-mobile .it-grid-item {
    min-width: 0;
    -ms-flex-preferred-size: calc(50% - 10px);
        flex-basis: calc(50% - 10px);
    min-height: inherit !important;
  }
  .it-view-gallery.it-view-gallery-2-in-row-mobile.it-view-gallery-vertical-pic .it-img-box {
    height: 120px !important;
    max-height: inherit !important;
  }
  .it-view-gallery.it-view-gallery-2-in-row-mobile .it-date,
  .it-view-gallery.it-view-gallery-2-in-row-mobile .it-grid-desc {
    display: none !important;
  }
  .it-view-gallery.it-view-gallery-2-in-row-mobile .it-grid-item-in-with-order .it-grid-xtra-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: 0;
  }
  .it-view-gallery.it-view-gallery-2-in-row-mobile .it-item-title {
    font-size: 14px;
  }
  .it-view-gallery.it-view-gallery-2-in-row-mobile .it-grid-mainfo {
    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: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .it-view-gallery.it-view-gallery-2-in-row-mobile .it-item-address {
    margin-bottom: 15px !important;
  }
  .it-view-gallery.it-view-gallery-2-in-row-mobile .it-img-box {
    height: 114px;
  }
  .it-view-gallery.it-view-gallery-2-in-row-mobile .it-item-labels-bottom {
    text-align: left;
  }
  .it-view-gallery.it-view-gallery-2-in-row-mobile .it-grid-footer {
    margin-top: auto;
  }
}
.it-view-gallery .btn-show-more {
  width: 100%;
  height: 52px;
}
@media (min-width: 768px) {
  .it-view-gallery .btn-show-more {
    margin: 0 10px;
  }
}
@media (max-width: 767px) {
  .it-view-gallery .btn-show-more {
    margin: 10px 5px 0 5px;
  }
}
.it-view-gallery .c-block-loader {
  width: 100%;
}
.it-view-gallery .c-block-loader .c-circle-loader {
  -webkit-transform: translate(-50%, -50%) scale(0.6);
      -ms-transform: translate(-50%, -50%) scale(0.6);
          transform: translate(-50%, -50%) scale(0.6);
}

.hvr-slider-wrap {
  display: none;
}

.hvr-slider-wrap-table {
  padding: 2px 1px;
}
.hvr-slider-wrap-table div {
  position: relative;
  margin: 0 1px;
}
.hvr-slider-wrap-table div.active:before {
  background-color: var(--primary-base-color);
  opacity: 1;
}
.hvr-slider-wrap-table div:before {
  content: "";
  background: #E1E1E1;
  opacity: 0.8;
  display: block;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 1px;
  right: 1px;
}

.it-img-more-popover {
  color: white !important;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 11;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.it-img-more-popover.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.it-img-more-popover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  opacity: 0.5;
  z-index: -1;
}

/*стандартный вид в списках плитками*/
/*в мобайле на всю ширину*/
.it-grid-item {
  position: relative;
  /*при ховере показать доп блок*/
}
@media (min-width: 768px) {
  .it-grid-item {
    height: 291px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}
.it-grid-item.selected .it-grid-item-in {
  border-color: #00CCDB;
  background: #F5FCFC;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}
.it-grid-item.selected .it-grid-item-in .c-shadow-overflow::after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #F5FCFC), color-stop(133.33%, hsla(0, 0%, 100%, 0)));
  background: linear-gradient(270deg, #F5FCFC 50%, hsla(0, 0%, 100%, 0) 133.33%);
}
.it-grid-item .it-date {
  display: block;
  text-align: center;
  margin-top: 10px;
}
.it-grid-item .it-date .ico {
  color: #595959;
  margin-right: 3px;
  vertical-align: middle;
}
.it-grid-item .it-date span {
  vertical-align: middle;
}
.it-grid-item .it-item-title {
  line-height: normal;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .it-grid-item .it-item-title {
    margin-right: 15px;
  }
}
@media (min-width: 768px) {
  .it-grid-item .it-item-title + .it-grid-footer {
    margin-top: auto;
  }
}
.it-grid-item .it-item-address {
  margin-bottom: 1px;
  padding-left: 1px;
}
@media (min-width: 768px) {
  .it-grid-item .it-img-box {
    min-height: 180px;
  }
}
@media (max-width: 767px) {
  .it-grid-item .it-reviews {
    margin-bottom: 5px;
  }
}
.it-grid-item .it-price-auction {
  border-radius: 3px;
  background: #F1F1F1;
  color: var(--primary-base-color);
  padding: 5px 7px;
  font-size: 14px;
  line-height: 17px;
}
.it-grid-item .or-add-link {
  width: 100%;
}
@media (min-width: 768px) {
  .it-grid-item .or-add-link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .it-grid-item .or-add-link + *, .it-grid-item .or-add-link + script + * {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #EBEBEB;
  }
}
@media (max-width: 767px) {
  .it-grid-item .or-add-link {
    width: auto;
    height: 20px;
    border-top: 1px solid #E5E5E5 !important;
    padding-top: 13px !important;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 16px;
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 767px) {
  .it-grid-item .or-add-link.c-block-loader .c-circle-loader {
    -webkit-transform-origin: bottom;
        -ms-transform-origin: bottom;
            transform-origin: bottom;
  }
}
@media (min-width: 768px) {
  .it-grid-item:hover .it-grid-xtra-info {
    display: block;
  }
  .it-grid-item:hover .it-grid-item-in {
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
            box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
    height: auto;
    min-height: 100%;
    z-index: 9080;
  }
}

@media (min-width: 768px) {
  .it-grid-item-has-reviews {
    height: 313px;
  }
}
@media (min-width: 768px) {
  .it-grid-item-has-reviews .it-grid-mainfo {
    height: 96px;
  }
}
.it-grid-item-has-reviews.it-grid-item-reviews-no-geo .it-item-title {
  white-space: normal;
  max-height: 46px;
}
.it-grid-item-has-reviews.it-grid-item-reviews-no-geo .it-item-title:after {
  height: 20px;
  top: auto;
}

.it-grid-item-in {
  background-color: white;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  border: 1px solid #D9E1E4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767px) {
  .it-grid-item-in {
    position: relative;
  }
}

.it-grid-info {
  padding: 15px 20px 20px 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767px) {
  .it-grid-info {
    padding: 15px 10px;
  }
}

.it-grid-mainfo {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: -10px;
}
@media (min-width: 768px) {
  .it-grid-mainfo {
    height: 74px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.it-price-box {
  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;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  height: 28px;
}
.it-price-box::after {
  display: none !important;
}
@media (max-width: 991px) {
  .it-price-box {
    height: auto;
  }
}
.it-price-box .badge {
  margin-right: 10px;
  font-size: 13px;
  font-weight: 200;
}

.it-grid-footer {
  padding-right: 20px;
  height: 27px;
}
@media (min-width: 768px) {
  .it-grid-footer {
    margin-top: auto;
  }
}
@media (max-width: 767px) {
  .it-grid-footer {
    height: auto;
  }
}
.it-grid-footer .c-item-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 30px;
  height: 30px;
  max-height: 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;
  border-radius: 3px;
  background: #FFF;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .it-grid-xtra-info {
    margin-top: 20px;
    padding-top: 15px;
    display: none;
    border-top: 1px solid #EBEBEB;
  }
}
@media (min-width: 768px) {
  .it-grid-xtra-info .it-date:first-child {
    margin-top: 0;
  }
}

.it-grid-desc {
  font-size: 13px;
  line-height: 16px;
}
@media (max-width: 767px) {
  .it-grid-desc {
    color: #595959;
    margin-top: 10px;
  }
}

.rw-grid-box {
  height: 18px;
}

.it-list-sort {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .it-list-sort {
    margin-top: 30px;
  }
}
.it-list-sort.it-list-view-single .it-list-view-toggle .dropdown-menu,
.it-list-sort.it-list-view-single .sn-list-act-dot {
  display: none !important;
}
@media (min-width: 992px) {
  .it-list-sort.it-list-view-single .it-list-view-toggle {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .it-list-sort.it-list-view-single .it-list-view-toggle {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .it-list-sort.it-list-view-single .it-list-sort-items {
    margin-right: -15px;
  }
}

@media (max-width: 767px) {
  .it-list-sort-company .it-list-sort-in {
    border-bottom: 0;
  }
}

@media (max-width: 767px) {
  .it-list-sort-in {
    z-index: 1000;
  }
}

.it-list-sort-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
}

.it-list-view-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .it-list-view-toggle {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-left: auto;
    margin-right: -15px;
  }
}
@media (max-width: 767px) {
  .it-list-view-toggle {
    margin-right: -10px;
    position: static;
  }
}

.it-list-view-toggle-act {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .it-list-view-toggle-act {
    padding: 10px 15px 18px 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 768px) {
  .it-list-view-toggle-act.active .ico path {
    fill: var(--primary-base-color);
  }
}
@media (min-width: 768px) {
  .it-list-view-toggle-act.active::after {
    background-color: var(--primary-base-color);
  }
}
@media (max-width: 767px) {
  .it-list-view-toggle-act {
    padding: 0 15px;
    height: 30px;
    line-height: 30px;
  }
}
.it-list-view-toggle-act .ico {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (max-width: 767px) {
  .it-list-view-toggle-act .ico path {
    fill: var(--primary-base-color);
  }
}
.it-list-view-toggle-act::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 1px;
  display: block;
  bottom: -1px;
  background-color: transparent;
}
@media (max-width: 767px) {
  .it-list-view-toggle-act::after {
    display: none;
  }
}
.it-list-view-toggle-act span {
  color: var(--text-color);
}
@media (min-width: 768px) {
  .it-list-view-toggle-act span {
    display: none;
  }
}

.it-sort-item {
  position: relative;
}
@media (max-width: 767px) {
  .it-sort-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .it-sort-item + .it-sort-item,
  .it-sort-item .it-sort-item-count + span {
    margin-left: 28px;
  }
}
.it-sort-item .c-drop-arrow {
  margin-left: 4px;
  display: inline-block;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.it-sort-item.show .c-drop-arrow {
  -webkit-transform: translateY(0) rotate(-180deg);
      -ms-transform: translateY(0) rotate(-180deg);
          transform: translateY(0) rotate(-180deg);
}
.it-sort-item .dropdown-toggle {
  position: relative;
}
@media (max-width: 767px) {
  .it-sort-item .dropdown-toggle, .it-sort-item.dropdown-toggle {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.it-sort-item + .dropdown-menu:not:only-child,
.it-sort-item .dropdown-menu {
  min-width: 100px;
}
.it-sort-item .dropdown-menu {
  margin-top: 5px;
  width: 100%;
}
.it-sort-item .dropdown-item {
  color: var(--text-color);
  white-space: normal;
}
@media (max-width: 767px) {
  .it-sort-item .ico path {
    fill: var(--primary-base-color);
  }
}

@media (max-width: 767px) {
  .it-sort-item-count {
    position: absolute;
    left: 0;
    top: 4px;
  }
}

@media (max-width: 767px) {
  .it-sort-item-in {
    max-width: 100%;
    overflow: hidden;
    padding-right: 0;
  }
}

.it-sort-item-selected {
  color: var(--text-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 8px 15px;
  border-radius: 5px;
  border: 1px solid #E5E5E5;
  background: #FFF;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media (max-width: 767px) {
  .it-sort-item-selected {
    font-size: 12px;
  }
}
.it-sort-item-selected:hover, .it-sort-item-selected:focus {
  border-color: var(--primary-base-color);
}
.it-sort-item-selected svg {
  width: 15px;
  height: 15px;
}

.it-list-pagination {
  margin-top: 30px;
}

.it-links {
  border-top: 1px solid #E5E5E5;
  margin-top: auto;
}
.it-links:last-child {
  margin-bottom: 30px;
}
.it-links .container {
  padding-top: 15px;
}
.it-links + .l-info {
  border-top: none;
}

.it-break-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  gap: 15px;
  overflow: hidden;
}
.it-break-list.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.it-break-list li, .it-break-list > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.it-break-list li:last-child .c-dot, .it-break-list > a:last-child .c-dot {
  display: none;
}
.it-break-list a, .it-break-list span {
  font-size: 14px;
  line-height: normal;
  color: var(--text-color);
}
@media (max-width: 767px) {
  .it-break-list a, .it-break-list span {
    font-size: 12px;
  }
}
.it-break-list .c-dot {
  width: 5px;
  height: 5px;
  aspect-ratio: 1/1;
  background-color: #333;
  margin: 0 0 0 15px;
}
.it-break-list a:hover span {
  color: var(--primary-base-color);
}

.it-map-balloon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .it-map-balloon {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (min-width: 768px) {
  .it-map-balloon-l {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .it-map-balloon-l {
    margin-bottom: 5px;
  }
}

.it-map-balloon-l-img {
  display: block;
  border-radius: 5px;
}

.it-map-balloon-title {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
}

.it-map-balloon-price {
  margin-bottom: 2px;
  font-weight: bold;
}
.it-map-balloon-price .it-price-auction {
  display: inline-block;
  margin-left: 5px;
}

.it-view-list-map {
  margin-top: 20px;
}

.it-premium-box-row.owl-carousel:not(.owl-loaded) {
  opacity: 0;
}
@media (max-width: 767px) {
  .it-premium-box-row.owl-carousel .it-premium-item {
    min-width: 232px;
  }
}
.it-premium-box-row.owl-carousel .owl-stage-outer {
  border-radius: 4px;
}
.it-premium-box-row:not(.owl-carousel) {
  display: grid;
  /*4 items in row*/
  /*5 items in row*/
}
@media (min-width: 768px) {
  .it-premium-box-row:not(.owl-carousel) {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .it-premium-box-row:not(.owl-carousel) {
    gap: 10px;
  }
}
@media (min-width: 768px) {
  .it-premium-box-row:not(.owl-carousel).it-premium-box-row-3-in-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .it-premium-box-row:not(.owl-carousel).it-premium-box-2-in-row-mobile {
    display: grid;
    margin: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .it-premium-box-row:not(.owl-carousel).it-premium-box-2-in-row-mobile .rp-it-grid-item {
    min-width: 100%;
  }
}
@media (min-width: 768px) {
  .it-premium-box-row:not(.owl-carousel).it-premium-box-row-4-in-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1025px) {
  .it-premium-box-row:not(.owl-carousel).it-premium-box-row-4-in-row {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) {
  .it-premium-box-row:not(.owl-carousel).it-premium-box-row-5-in-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .it-premium-box-row:not(.owl-carousel).it-premium-box-row-5-in-row {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1280px) {
  .it-premium-box-row:not(.owl-carousel).it-premium-box-row-5-in-row {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .l-columns-box .l-columns-box-l .it-premium-box-row:not(.owl-carousel) .it-premium-item {
    -ms-flex-preferred-size: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .l-columns-box .l-columns-box-l .it-premium-box-row:not(.owl-carousel) .it-premium-item {
    -ms-flex-preferred-size: calc(33.33% - 20px);
        flex-basis: calc(33.33% - 20px);
  }
}

@media (max-width: 767px) {
  .it-cols-premium-box {
    margin-bottom: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 768px) {
  .it-cols-premium-box .it-premium-item + .it-premium-item {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .it-cols-premium-box .it-premium-item + .it-premium-item {
    margin-left: 10px;
  }
}
@media (min-width: 768px) {
  .it-cols-premium-box.owl-carousel {
    display: none;
  }
}
@media (max-width: 767px) {
  .it-cols-premium-box.owl-carousel {
    margin-right: -20px;
    margin-left: -20px;
    width: auto;
  }
  .it-cols-premium-box.owl-carousel .owl-stage-outer {
    padding-left: 10px;
  }
}
.it-cols-premium-box.owl-carousel:not(.owl-loaded) {
  opacity: 0;
}

.it-premium-item {
  border-radius: 4px;
  overflow: hidden;
  display: block;
  position: relative;
}
@media (max-width: 767px) {
  .it-premium-item {
    min-width: 232px;
  }
}
.it-premium-item:hover .it-premium-item-image::after {
  opacity: 1;
}
.it-premium-item:hover .hvr-slider-wrap {
  display: block;
}

.it-premium-item-in {
  position: relative;
  z-index: 1;
}

.it-premium-item-fav {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 12;
}
.it-premium-item-fav.loading:before {
  background-color: transparent;
}
.it-premium-item-fav.loading .ico {
  opacity: 0;
}
.it-premium-item-fav .ico {
  width: 18px;
  height: 16px;
  color: white;
}

.it-premium-item-image {
  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;
  width: 100%;
  height: 223px;
  position: relative;
  overflow: hidden;
}
.it-premium-item-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: block;
  background: -webkit-gradient(linear, left bottom, left top, from(#000), to(rgba(0, 0, 0, 0.09)));
  background: linear-gradient(0deg, #000, rgba(0, 0, 0, 0.09));
  opacity: 0.7;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 1;
}

.it-premium-item-empty .it-img {
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-width: inherit !important;
  min-height: inherit !important;
  width: 80px !important;
  height: 80px;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.it-premium-item-title {
  padding: 3px 20px 2px 0;
  position: absolute;
  left: 20px;
  bottom: 42px;
  font-weight: 400;
  line-height: 24px;
  font-size: 16px;
  color: white;
  z-index: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.it-premium-item-price {
  color: white;
  line-height: 20px;
  font-size: 16px;
  position: absolute;
  left: 20px;
  bottom: 20px;
  max-width: 160px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: bold;
  z-index: 4;
}

.it-list-premium-footer {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .it-list-premium-footer {
    display: none;
  }
}

@media (max-width: 575px) {
  .usr-ads-list {
    margin-left: -15px;
    margin-right: -15px;
    border-top: 1px solid #EBEBEB;
  }
}
.usr-ads-list > .c-circle-loader {
  top: 155px;
}

.itu-list-item {
  background: white;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #E5E5E5;
}
@media (max-width: 767px) {
  .itu-list-item {
    border-radius: 0;
  }
}
.itu-list-item + .itu-list-item {
  margin-top: 10px;
}
.itu-list-item:hover {
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 575px) {
  .itu-list-item:only-child {
    border-bottom: 1px solid #E5E5E5;
  }
}
@media (max-width: 991px) {
  .itu-list-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
  }
}
@media (max-width: 575px) {
  .itu-list-item:only-child:after, .itu-list-item:last-child:after {
    display: none;
  }
  .itu-list-item:after {
    content: "";
    position: absolute;
    bottom: -10px;
    height: 10px;
    background-color: #F4F4F4;
    display: block;
    width: 100%;
  }
}
.itu-list-item.active {
  border-color: rgba(var(--action-buttons-color));
}
@media (max-width: 575px) {
  .itu-list-item {
    border-radius: 0;
    border: none;
  }
}

.itu-list-item-in {
  padding: 20px 20px 20px 50px;
  position: relative;
}
@media (max-width: 991px) {
  .itu-list-item-in {
    padding: 51px 15px 15px 15px;
  }
}

.itu-list-item-select {
  position: absolute;
  top: 20px;
  left: 20px;
}
@media (max-width: 991px) {
  .itu-list-item-select {
    top: 15px;
    left: 15px;
  }
}
.itu-list-item-select input[type=checkbox] {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
}

.itu-list-item-img {
  min-width: 100px;
  max-width: 100px;
  height: 65px;
  margin-right: 20px;
  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;
  overflow: hidden;
}
.itu-list-item-img img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 100%;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .itu-list-item-autoup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .itu-list-item-autoup .form-check-label {
    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;
  }
  .itu-list-item-autoup .form-check-label .ico-filter {
    margin-left: auto;
  }
  .itu-list-item-autoup .ico-check {
    display: none !important;
  }
}

.usr-ads-list .j-i-up-free,
.usr-ads-list .btn-success {
  padding: 9px 15px;
  font-size: 14px;
  height: 35px;
}

.itu-list-item-autoup-act {
  width: auto;
  border-radius: 5px;
  border: 1px solid #999;
  color: #999;
  padding: 9px 15px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.itu-list-item-autoup-act:hover, .itu-list-item-autoup-act.sett-i, .itu-list-item-autoup-act.active {
  border-color: var(--primary-base-color);
  color: var(--primary-base-color);
}
.itu-list-item-autoup-act:hover .ico-filter, .itu-list-item-autoup-act.sett-i .ico-filter, .itu-list-item-autoup-act.active .ico-filter {
  color: var(--primary-base-color);
}
.itu-list-item-autoup-act .ico-filter {
  font-size: 15px;
  color: #999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.itu-list-item-autoup-act .ico-check {
  margin-top: -1px;
}
@media (min-width: 992px) {
  .itu-list-item-autoup-act .slider {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .itu-list-item-autoup-act .slider + span {
    padding-top: 1px;
    padding-left: 45px;
  }
}
.itu-list-item-autoup-act span {
  line-height: 1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.itu-list-item-autoup-act.checked .ico-filter {
  opacity: 1;
}

.itu-list-item-left-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .itu-list-item-left-in {
    padding-bottom: 15px;
  }
}
.itu-list-item-left-in .it-price {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-color);
}

.itu-list-item-actions {
  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;
  gap: 10px;
}
@media (max-width: 1200px) {
  .itu-list-item-actions {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
}
.itu-list-item-actions .btn:not(.btn-success):not(.j-i-up-free) {
  height: 35px;
  width: 35px;
  max-width: 35px;
  padding: 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;
}
.itu-list-item-actions .btn:not(.btn-success):not(.j-i-up-free) .ico {
  color: var(--primary-base-color);
}

.itu-list-item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  margin-bottom: 10px;
}
.itu-list-item-title a {
  color: var(--text-color);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.itu-list-item-title a:hover {
  color: rgba(var(--links-color));
}

.itu-list-item-addr {
  margin-bottom: 3px;
}
.itu-list-item-addr:after {
  right: 3px;
}

.itu-list-item-actions-r {
  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;
  gap: 10px;
}
@media (max-width: 991px) {
  .itu-list-item-actions-r {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: wrap-reverse;
            flex-flow: wrap-reverse;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .itu-list-item-actions-r .btn {
    width: 100%;
  }
}

.itu-list-item-actions-l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991px) {
  .itu-list-item-actions-l {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .itu-list-item-actions-l .btn-group {
    min-width: 100px;
  }
}
@media (max-width: 991px) {
  .itu-list-item-actions-l .btn {
    min-width: 35px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.itu-list-item-actions-l .btn-group + .btn, .itu-list-item-actions-l > .btn + .btn {
  margin-left: 10px;
}
@media (max-width: 991px) {
  .itu-list-item-actions-l .btn-group:last-child, .itu-list-item-actions-l > .btn:last-child {
    margin-left: auto;
    min-width: 35px;
  }
}

.itu-list-item-body {
  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;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
@media (min-width: 992px) {
  .itu-list-item-body {
    padding-right: 20px;
  }
}

.itu-list-item-right {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .itu-list-item-right {
    position: absolute;
    top: 18px;
    right: 20px;
  }
}
@media (min-width: 992px) {
  .itu-list-item-right {
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.itu-list-item-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.itu-list-item-price:after {
  right: 3px;
}

.itu-autoup-actions {
  padding: 20px;
  background-color: #EAF9F9;
  position: relative;
}
@media (max-width: 991px) {
  .itu-autoup-actions {
    padding: 15px;
  }
}

.itu-autoup-form-sub-text {
  font-size: 14px;
  color: var(--text-color);
  margin-top: 10px;
}

.itu-autoup-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 991px) {
  .itu-autoup-form {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
}

.itu-autoup-form-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 992px) {
  .itu-autoup-form-r {
    margin-left: 10px;
  }
}
@media (max-width: 991px) {
  .itu-autoup-form-r {
    margin-top: 15px;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .itu-autoup-form-r .btn-success {
    padding: 10px 15px;
    font-size: 16px;
    height: auto;
    width: 100%;
  }
}
.itu-autoup-form-r .btn + .btn {
  margin-left: 10px;
}

.itu-autoup-form-selects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
.itu-autoup-form-selects + .itu-autoup-form-selects {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .itu-autoup-form-selects {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    margin-bottom: 15px;
  }
}
.itu-autoup-form-selects.hide {
  display: none;
}

.itu-autoup-label {
  margin-right: 17px;
}
@media (max-width: 991px) {
  .itu-autoup-label {
    margin-bottom: 15px;
  }
}

@media (max-width: 991px) {
  .itu-autoup-label-inputs {
    width: 100%;
  }
}
@media (max-width: 380px) {
  .itu-autoup-label-inputs {
    -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;
  }
}
@media (min-width: 992px) {
  .itu-autoup-label-inputs .input-inline {
    max-width: 133px;
  }
}
@media (max-width: 991px) {
  .itu-autoup-label-inputs .input-inline {
    max-width: 193px;
  }
}
.itu-autoup-label-inputs .form-control {
  background-color: white;
  padding-right: 20px !important;
}

.itu-list-item-autoup-selects-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .itu-list-item-autoup-selects-time {
    width: 100%;
    margin-top: 5px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .itu-list-item-autoup-selects-time .form-control {
    max-width: inherit;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

.itu-list-item-promotes {
  padding-top: 13px;
  margin-top: 20px;
  border-top: 1px solid #EBEBEB;
  font-size: 13px;
  line-height: 16px;
}
@media (min-width: 992px) {
  .itu-list-item-promotes {
    margin-left: -25px;
  }
}
@media (max-width: 991px) {
  .itu-list-item-promotes a {
    display: block;
    padding-left: 20px;
  }
  .itu-list-item-promotes a:first-of-type {
    margin-top: 5px;
  }
}
.itu-list-item-promotes a span {
  color: var(--text-color);
}
.itu-list-item-promotes a:hover span {
  color: rgba(var(--links-color)) !important;
}
.itu-list-item-promotes .ico {
  color: #74B31B;
}

.itu-list-item-promotes-title {
  font-weight: bold;
}
@media (max-width: 991px) {
  .itu-list-item-promotes-title {
    padding-left: 4px;
  }
}

.itu-autoup-form-selects .form-controls-inline > * {
  margin: 0 !important;
}

.itu-autoup-form-selects .form-controls-inline {
  margin: 0 !important;
  gap: 10px 20px;
}
@media (max-width: 991px) {
  .itu-autoup-form-selects .form-controls-inline .form-check-label {
    margin-bottom: 5px !important;
  }
}
.itu-autoup-form-selects .form-controls-inline .form-control {
  padding: 10px 15px;
  border-radius: 5px;
  color: #999;
  height: 42px;
}
@media (max-width: 991px) {
  .itu-autoup-form-selects .form-controls-inline .form-control {
    min-height: 40px;
    height: 40px;
  }
}
.itu-autoup-form-selects .form-controls-inline select.form-control {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="6" viewBox="0 0 9 6" fill="none"><path d="M4.18807 5.34906C4.26147 5.46226 4.37157 5.5 4.50001 5.5C4.61009 5.5 4.72018 5.46226 4.81193 5.34906L8.37156 1.68868C8.44496 1.61321 8.5 1.5 8.5 1.36792C8.5 1.25472 8.44496 1.14151 8.37156 1.04717L7.96789 0.632075C7.87615 0.556604 7.76606 0.5 7.65596 0.5C7.52752 0.5 7.41744 0.537736 7.34404 0.613208L4.50001 3.53774L1.65596 0.613208C1.56422 0.537736 1.45413 0.5 1.34404 0.5C1.2156 0.5 1.1055 0.556604 1.03211 0.632075L0.62844 1.04717C0.536697 1.14151 0.5 1.25472 0.5 1.36792C0.5 1.5 0.536697 1.61321 0.62844 1.68868L4.18807 5.34906Z" fill="%23C3C3C3"/></svg>');
  background-repeat: no-repeat;
  background-size: 9px;
}

.itu-autoup-form-selects .form-control {
  padding: 10px 15px;
  border-radius: 5px;
  color: #999;
  height: 42px;
}
.itu-autoup-form-selects .form-control:not(.j-limits-options) {
  margin: 0 !important;
}
@media (max-width: 991px) {
  .itu-autoup-form-selects .form-control {
    min-height: 40px;
    height: 40px;
  }
}
.itu-autoup-form-selects select.form-control {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="6" viewBox="0 0 9 6" fill="none"><path d="M4.18807 5.34906C4.26147 5.46226 4.37157 5.5 4.50001 5.5C4.61009 5.5 4.72018 5.46226 4.81193 5.34906L8.37156 1.68868C8.44496 1.61321 8.5 1.5 8.5 1.36792C8.5 1.25472 8.44496 1.14151 8.37156 1.04717L7.96789 0.632075C7.87615 0.556604 7.76606 0.5 7.65596 0.5C7.52752 0.5 7.41744 0.537736 7.34404 0.613208L4.50001 3.53774L1.65596 0.613208C1.56422 0.537736 1.45413 0.5 1.34404 0.5C1.2156 0.5 1.1055 0.556604 1.03211 0.632075L0.62844 1.04717C0.536697 1.14151 0.5 1.25472 0.5 1.36792C0.5 1.5 0.536697 1.61321 0.62844 1.68868L4.18807 5.34906Z" fill="%23C3C3C3"/></svg>');
  background-repeat: no-repeat;
  background-size: 9px;
}

.usr-content .alert-warning {
  background-color: rgba(var(--links-color), 0.1);
  font-size: 16px;
  color: var(--text-color);
  padding: 20px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .usr-content .alert-warning {
    padding: 15px;
  }
}
.usr-content .alert-warning .fa-info-circle {
  margin: 0 10px 0 0;
}
.usr-content .alert-warning .fa-info-circle:before {
  display: block;
  content: "";
  width: 20px;
  height: 21px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='21' viewBox='0 0 20 21' fill='none'%3E%3Cpath d='M10 0.5C4.47707 0.5 0 4.97723 0 10.5C0 16.0231 4.47707 20.5 10 20.5C15.5229 20.5 20 16.0231 20 10.5C20 4.97723 15.5229 0.5 10 0.5ZM10 5.5C10.6904 5.5 11.25 6.05969 11.25 6.75C11.25 7.44063 10.6904 8 10 8C9.30961 8 8.75 7.44063 8.75 6.75C8.75 6.05969 9.30961 5.5 10 5.5ZM11.875 15.5H8.125C7.77984 15.5 7.5 15.2205 7.5 14.875C7.5 14.5298 7.77984 14.25 8.125 14.25H8.75V10.5H8.125C7.77984 10.5 7.5 10.2205 7.5 9.875C7.5 9.52984 7.77984 9.25 8.125 9.25H10.625C10.9702 9.25 11.25 9.52984 11.25 9.875V14.25H11.875C12.2202 14.25 12.5 14.5298 12.5 14.875C12.5 15.2205 12.2202 15.5 11.875 15.5Z' fill='%232A2349'/%3E%3C/svg%3E") no-repeat center/contain;
}
.usr-content .alert-warning .btn-simple {
  border: none;
  background-color: var(--primary-base-color) !important;
  color: #fff !important;
}
.usr-content .alert-warning .btn-simple:hover {
  background-color: rgba(var(--action-buttons-color)) !important;
}
@media (max-width: 991px) {
  .usr-content .alert-warning .btn-simple {
    width: 100%;
  }
}

.usr-settings .it-date .ico {
  display: none !important;
}
.usr-settings .c-item-fav {
  padding: 0;
  width: 30px;
  height: 30px;
  min-width: 30px;
  max-height: 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;
  border-radius: 3px;
  background: #FFF;
}
@media (max-width: 767px) {
  .usr-settings .it-grid-item-in {
    border-radius: 0;
  }
}
.usr-settings .dropdown {
  width: 100%;
  max-width: 300px;
}
@media (max-width: 767px) {
  .usr-settings .dropdown {
    max-width: 150px;
  }
}
.usr-settings .btn.dropdown-toggle {
  padding: 12px 30px 12px 15px;
  width: 100%;
  font-weight: 400;
}
.usr-settings .usr-content-top-right a {
  color: var(--primary-base-color);
}

@media (max-width: 767px) {
  .u-cabinet-content .l-page-head {
    margin-bottom: 5px;
  }
}

.btn-medium {
  padding: 9px 30px;
  font-weight: 600;
}

.open-fullmodal {
  overflow: hidden;
}
.open-fullmodal .fullmodal {
  opacity: 1;
  pointer-events: all;
}
.open-fullmodal .vw-top-sticky-nav.visible {
  -webkit-transform: translateY(-120%);
      -ms-transform: translateY(-120%);
          transform: translateY(-120%);
}
.open-fullmodal .vw-bottom-mob-actions-panel.visible {
  -webkit-transform: translateY(120%);
      -ms-transform: translateY(120%);
          transform: translateY(120%);
}

.fullmodal {
  opacity: 0;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 0 20px;
  background-color: rgba(27, 27, 27, 0.9);
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .fullmodal {
    padding: 0;
  }
}

.fullmodal-container {
  position: relative;
  max-width: 1920px;
  width: 100%;
}

.fullmodal-close {
  position: absolute;
  top: 20px;
  right: -10px;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: #2A2349;
  color: #fff;
  padding: 0;
  border: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (max-width: 991px) {
  .fullmodal-close {
    right: 15px;
    width: 30px;
    height: 30px;
  }
}
.fullmodal-close:hover {
  background-color: #00CCDB;
}
.fullmodal-close path {
  fill: #fff;
}

.fullmodal-gallery {
  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%;
  padding: 40px 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 767px) {
  .fullmodal-gallery {
    display: none;
  }
}

.fullmodal-gallery-nav {
  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;
  padding: 15px;
  border-radius: 5px;
  background-color: #2A2349;
  border: none;
  width: 100%;
  color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.fullmodal-gallery-nav:hover {
  background-color: #00CCDB;
}
.fullmodal-gallery-nav--next {
  margin-top: auto;
}

.fullmodal-gallery-item {
  display: block;
  width: 100%;
  height: 120px;
  border: 1px solid transparent;
  border-radius: 5px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.fullmodal-gallery-item.active {
  border-color: #fff;
}
.fullmodal-gallery-item:not(.active):hover {
  border-color: #00CCDB;
}
.fullmodal-gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.fullmodal-gallery-list {
  margin: 10px 0;
  max-height: calc(100vh - 200px);
}
.fullmodal-gallery-list li:not(:last-child) {
  margin-bottom: 10px;
}
.fullmodal-gallery-list::-webkit-scrollbar {
  display: none;
}

.fullmodal-content-list {
  padding-top: 40px;
  max-height: 100vh;
}
.fullmodal-content-list::-webkit-scrollbar {
  display: none;
}
.fullmodal-content-list li:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .fullmodal-content-list {
    padding: 0;
  }
}

.fullmodal-gallery-list,
.fullmodal-content-list {
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.fullmodal-container-grid {
  display: grid;
  grid-template-columns: 200px 1fr 300px;
  gap: 30px;
}
@media (max-width: 1360px) {
  .fullmodal-container-grid {
    grid-template-columns: 160px 1fr 250px;
    gap: 15px;
  }
}
@media (max-width: 991px) {
  .fullmodal-container-grid {
    grid-template-columns: 200px 1fr;
  }
}
@media (max-width: 767px) {
  .fullmodal-container-grid {
    grid-template-columns: 1fr;
  }
}

.fullmodal-content-item {
  display: block;
  width: 100%;
}
.fullmodal-content-item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.fullmodal-info {
  padding: 40px 0;
}
@media (max-width: 991px) {
  .fullmodal-info {
    display: none;
  }
}

.fullmodal-mob-actions {
  position: fixed;
  bottom: 15px;
  left: 0;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
}
@media (min-width: 767px) {
  .fullmodal-mob-actions {
    display: none;
  }
}
.fullmodal-mob-actions .btn-primary {
  width: 100%;
  height: 43px;
}
.fullmodal-mob-actions .btn-primary svg {
  width: 15px;
  height: 15px;
}
.fullmodal-mob-actions .vw-vendor-fav,
.fullmodal-mob-actions .btn-whatsapp {
  min-width: 43px;
  width: 43px;
  height: 43px;
  padding: 5px;
}
.fullmodal-mob-actions .vw-vendor-fav svg,
.fullmodal-mob-actions .btn-whatsapp svg {
  width: 15px;
  height: 15px;
}
.fullmodal-mob-actions .vw-vendor-fav {
  background-color: #FFFFFF;
  color: #2A2349;
  font-size: 15px;
  line-height: 1;
  margin: 0;
  border-radius: 5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.fullmodal-mob-actions .vw-vendor-fav .ico {
  max-width: 15px;
  max-height: 15px;
  font-size: 15px;
}

body .fancybox-container .fancybox-infobar .fancybox-button,
body .fancybox-container .fancybox-toolbar .fancybox-button {
  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;
  height: 30px;
  width: 30px;
  border-radius: 5px;
  padding: 5px;
  background-color: #2A2349 !important;
  border: 1px solid #2A2349;
  color: #fff !important;
  opacity: 1 !important;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
body .fancybox-container .fancybox-infobar .fancybox-button--zoom,
body .fancybox-container .fancybox-toolbar .fancybox-button--zoom {
  background-color: transparent !important;
  border-color: #fff;
}
@media (min-width: 992px) {
  body .fancybox-container .fancybox-infobar .fancybox-button--zoom,
  body .fancybox-container .fancybox-toolbar .fancybox-button--zoom {
    display: none !important;
  }
}
body .fancybox-container .fancybox-infobar .fancybox-button--zoom:hover,
body .fancybox-container .fancybox-toolbar .fancybox-button--zoom:hover {
  border-color: #00CCDB;
  background-color: #00CCDB !important;
}
body .fancybox-container .fancybox-infobar .fancybox-button--close,
body .fancybox-container .fancybox-toolbar .fancybox-button--close {
  margin-left: auto;
}
body .fancybox-container .fancybox-infobar .fancybox-button svg,
body .fancybox-container .fancybox-toolbar .fancybox-button svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 992px) {
  body .fancybox-container .fancybox-infobar .fancybox-button,
  body .fancybox-container .fancybox-toolbar .fancybox-button {
    width: 40px;
    height: 40px;
  }
}
body .fancybox-container .fancybox-infobar .fancybox-button:hover,
body .fancybox-container .fancybox-toolbar .fancybox-button:hover {
  background-color: #00CCDB !important;
}
body .fancybox-container .fancybox-infobar {
  right: 0;
  left: 0;
  margin: 0 auto;
  padding: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  vertical-align: middle;
  color: #fff;
  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;
  height: 30px;
  top: 20px;
}
body .fancybox-container .fancybox-toolbar {
  width: 100%;
  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;
  right: 0;
  padding: 0 15px;
  top: 20px;
}
body .fancybox-container .fancybox-thumbs {
  display: none !important;
}
body .fancybox-container .fancybox-navigation .fancybox-button {
  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: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #00CCDB;
  background: #fff !important;
  color: #00CCDB;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0;
}
body .fancybox-container .fancybox-navigation .fancybox-button > div {
  display: none;
}
body .fancybox-container .fancybox-navigation .fancybox-button svg {
  width: 15px;
  height: 15px;
}
@media (min-width: 992px) {
  body .fancybox-container .fancybox-navigation .fancybox-button {
    width: 40px;
    height: 40px;
  }
  body .fancybox-container .fancybox-navigation .fancybox-button svg {
    width: 20px;
    height: 20px;
  }
}
body .fancybox-container .fancybox-navigation .fancybox-button:hover {
  background: #00CCDB !important;
  color: #fff;
}
body .fancybox-container .fancybox-navigation .fancybox-button:disabled {
  cursor: no-drop;
  opacity: 0.6;
  background: #fff !important;
}
body .fancybox-container .fancybox-navigation .fancybox-button.fancybox-button--arrow_left {
  left: 10%;
}
@media (max-width: 991px) {
  body .fancybox-container .fancybox-navigation .fancybox-button.fancybox-button--arrow_left {
    left: 15px;
  }
}
body .fancybox-container .fancybox-navigation .fancybox-button.fancybox-button--arrow_right {
  right: 10%;
}
@media (max-width: 991px) {
  body .fancybox-container .fancybox-navigation .fancybox-button.fancybox-button--arrow_right {
    right: 15px;
  }
}

.it-page-head {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .it-page-head {
    margin-bottom: 20px;
  }
}

.rp-it-grid-item .it-img-box.it-img-box-empty .it-img,
.rp-it-list-item .it-img-box.it-img-box-empty .it-img {
  height: 70px;
  min-height: 70px;
}
.rp-it-grid-item .it-img-box.it-img-box-empty:before,
.rp-it-list-item .it-img-box.it-img-box-empty:before {
  display: none;
}
.rp-it-grid-item .it-img-count,
.rp-it-list-item .it-img-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--primary-base-color);
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 10;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-size: 14px;
  left: 20px;
}
@media (max-height: 767px) {
  .rp-it-grid-item .it-img-count,
  .rp-it-list-item .it-img-count {
    left: 15px;
  }
}
.rp-it-grid-item .it-img-count svg,
.rp-it-list-item .it-img-count svg {
  width: 15px;
  height: 15px;
}
.rp-it-grid-item .it-item-address,
.rp-it-list-item .it-item-address {
  min-height: 17px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 17px;
}
.rp-it-grid-item .it-date,
.rp-it-list-item .it-date {
  height: auto;
}
.rp-it-grid-item .it-date .ico,
.rp-it-list-item .it-date .ico {
  font-size: 15px;
}
.rp-it-grid-item .or-add-link .ico,
.rp-it-list-item .or-add-link .ico {
  width: auto;
  font-size: 15px;
  height: auto;
  margin-right: 7px !important;
}
.rp-it-grid-item .loading:before,
.rp-it-list-item .loading:before {
  background-color: white;
}

.selected .rp-it-params-wrap::after {
  background: -webkit-gradient(linear, left top, right top, color-stop(56.17%, rgba(255, 255, 255, 0)), to(#F5FCFC));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 56.17%, #F5FCFC 100%);
}

.rp-it-params-wrap {
  position: relative;
}
.rp-it-params-wrap .rp-it-params {
  padding-right: 20px;
}
.rp-it-params-wrap::after {
  display: block;
  pointer-events: none;
  content: "";
  width: 87px;
  height: calc(100% - 15px);
  position: absolute;
  top: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(56.17%, rgba(255, 255, 255, 0)), to(#FFF));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 56.17%, #FFF 100%);
}
@media (max-width: 767px) {
  .rp-it-params-wrap::after {
    height: calc(100% - 10px);
  }
}

.rp-it-params {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: auto;
  gap: 5px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-height: 26px;
}
.rp-it-params::-webkit-scrollbar {
  display: none;
}
.rp-it-params span {
  pointer-events: none;
}
.rp-it-params:after {
  display: none;
}
.rp-it-params > span {
  padding: 5px 10px;
  background: #E9EDF2;
  border-radius: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2A2349;
  white-space: nowrap;
  vertical-align: top;
  font-size: 12px;
  line-height: normal;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
.rp-it-params > span:empty {
  display: none;
}
.rp-it-params > span img {
  -webkit-filter: brightness(0) saturate(100%) invert(13%) sepia(21%) saturate(1981%) hue-rotate(213deg) brightness(90%) contrast(93%);
          filter: brightness(0) saturate(100%) invert(13%) sepia(21%) saturate(1981%) hue-rotate(213deg) brightness(90%) contrast(93%);
}
.rp-it-params > span .ico,
.rp-it-params > span img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .rp-it-params > span .ico,
  .rp-it-params > span img {
    width: 15px;
    height: 15px;
  }
}

.rp-it-metro {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  min-width: 0;
}
.rp-it-metro .ico {
  width: 14px;
  height: 10px;
  margin-right: 6px;
}
.rp-it-metro .dropdown-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 15px;
}

.rp-it-metro-title {
  padding-right: 15px;
}

.it-cats-lvl-2 li a, .it-cats-lvl-2 li .c-count {
  background-color: var(--body-bg-color);
}
.it-cats-lvl-2 li a:after, .it-cats-lvl-2 li .c-count:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #F4F4F4), color-stop(133.33%, rgba(255, 255, 255, 0))) !important;
  background: linear-gradient(270deg, #F4F4F4 50%, rgba(255, 255, 255, 0) 133.33%) !important;
  top: 0;
}

.it-list-pagination:empty {
  display: none;
}
@media (min-width: 992px) {
  .it-list-pagination {
    margin-top: 40px;
  }
}

.it-list-item-footer-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  gap: 10px 20px;
}

.rp-it-owner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: normal;
  color: #999;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .rp-it-owner {
    margin-right: -20px;
  }
}
.rp-it-owner .ico {
  width: 11px;
  height: 9px;
}

.it-img-video {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 10;
}

@media (max-width: 767px) {
  .it-links + .b-breadcrumbs-mob {
    border-top: 1px solid #EBEBEB;
  }
}

.it-list-top {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .it-list-top {
    margin-bottom: 40px;
  }
}

@media (min-width: 768px) {
  body.is-full-map .m-map-with-vert-filter {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  body.is-full-map .m-map-aside {
    top: 0 !important;
    margin-top: 0;
  }
}

.m-map-list-container .m-map-filter-panel-scroll {
  max-height: calc(100vh - 265px);
}

.hvr-slider-wrap {
  z-index: 10;
  padding-right: 0;
  padding-left: 0;
}

.rp-it-list-item {
  height: auto;
  overflow: visible;
}
@media (min-width: 1200px) {
  .rp-it-list-item .it-list-item-in {
    padding-left: 292px;
    min-height: 175px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .rp-it-list-item .it-list-item-in {
    padding-left: 220px;
  }
}
.rp-it-list-item .it-item-address {
  margin-bottom: 10px;
}
.rp-it-list-item .it-item-title {
  font-size: 16px;
  margin-right: 20px;
}
.rp-it-list-item .it-item-title a {
  color: var(--text-color);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.rp-it-list-item .it-item-title a:hover {
  color: rgba(var(--links-color));
}
.rp-it-list-item .rp-it-metro {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media (min-width: 992px) {
  .rp-it-list-item .it-price-box {
    margin-bottom: 10px;
  }
}
.rp-it-list-item .it-list-item-footer {
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
@media (min-width: 768px) {
  .rp-it-list-item .it-list-item-footer {
    padding-top: 17px;
  }
}
@media (max-width: 767px) {
  .rp-it-list-item .it-list-item-footer {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 0;
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .rp-it-list-item .it-list-item-footer-r {
    margin-left: 0;
  }
}
.rp-it-list-item .it-img-box {
  border-radius: 4px 0 0 4px;
}
@media (min-width: 1200px) {
  .rp-it-list-item .it-img-box {
    width: 272px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .rp-it-list-item .it-img-box {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .rp-it-list-item .rp-it-params {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .rp-it-list-item .rp-it-params,
  .rp-it-list-item .it-item-address {
    margin-right: -10px;
  }
}

@media (min-width: 768px) {
  .rp-it-grid-item {
    height: 346px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .rp-it-grid-item {
    -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
  }
}
@media (min-width: 992px) {
  .rp-it-grid-item {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
}
@media (max-width: 767px) {
  .rp-it-grid-item {
    max-width: 100%;
  }
}
.rp-it-grid-item .it-img-box {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (min-width: 768px) {
  .rp-it-grid-item .it-img-box {
    border-radius: 4px 4px 0 0;
  }
}
.rp-it-grid-item .it-grid-item-in {
  overflow: visible;
}
@media (max-width: 767px) {
  .rp-it-grid-item .it-grid-info {
    padding: 10px 15px 15px !important;
  }
}
@media (min-width: 768px) {
  .rp-it-grid-item .it-grid-mainfo {
    height: 121px;
  }
}
.rp-it-grid-item .it-grid-footer {
  margin-top: auto;
}
@media (max-width: 767px) {
  .rp-it-grid-item .it-grid-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: 0;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .rp-it-grid-item .it-grid-footer .it-price-box {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    gap: 10px;
  }
}
.rp-it-grid-item .it-item-address {
  color: #595959 !important;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .rp-it-grid-item .it-item-address {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
}
.rp-it-grid-item .it-item-title {
  margin-bottom: 15px !important;
}
.rp-it-grid-item .it-grid-xtra-info {
  border-top: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .rp-it-grid-item .it-grid-xtra-info {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .rp-it-grid-item .it-grid-xtra-info {
    display: none;
  }
}
.rp-it-grid-item .it-grid-xtra-info-item {
  border-top: 1px solid #E5E5E5;
  padding-top: 10px;
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .rp-it-grid-item .it-grid-xtra-info-item {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .rp-it-grid-item .it-grid-mainfo {
    margin-right: -20px;
  }
}
@media (max-width: 767px) {
  .rp-it-grid-item .it-grid-mainfo {
    margin-right: -15px;
  }
}
.rp-it-grid-item .rp-it-params {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .rp-it-grid-item .rp-it-params {
    margin-bottom: 10px;
  }
}
.rp-it-grid-item .rp-it-metro {
  width: 100%;
}
.rp-it-grid-item .rp-it-metro-title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media (max-width: 767px) {
  .rp-it-grid-item .or-add-link {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: 0 !important;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .rp-it-grid-item .or-add-link .ico {
    margin-top: -2px;
  }
}
.rp-it-grid-item .it-date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.rp-it-grid-item .it-date .ico {
  margin-top: 0;
}
.rp-it-grid-item .rp-it-owner {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.it-view-gallery {
  display: grid;
}
@media (min-width: 768px) {
  .it-view-gallery {
    gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .it-view-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .it-view-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .it-view-gallery {
    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-flow: wrap;
        flex-flow: wrap;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .it-view-gallery.it-view-gallery-cols-mobile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 -15px;
  }
}
@media (max-width: 767px) {
  .it-view-gallery.it-view-gallery-cols-mobile .it-grid-mainfo {
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .it-view-gallery.it-view-gallery-2-in-row-mobile {
    display: grid;
    margin: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .it-view-gallery.it-view-gallery-2-in-row-mobile .it-grid-item-in {
    overflow: hidden;
  }
}
@media (min-width: 768px) {
  .it-view-gallery .btn-show-more {
    margin: 0;
    grid-column-start: 1;
    grid-column-end: 4;
  }
}
@media (min-width: 992px) {
  .it-view-gallery .btn-show-more {
    grid-column-end: 5;
  }
}
@media (max-width: 767px) {
  .it-view-gallery .btn-show-more {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}

.in-index-box .it-view-gallery {
  padding-bottom: 20px;
}

.j-list-desktop.loading:before,
.j-list.loading:before {
  left: -15px;
  right: -15px;
}

@media (min-width: 1200px) {
  .l-columns-box-w-aside .it-view-gallery,
  .it-category-page .it-view-gallery,
  .rp-profile-items .it-view-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .l-columns-box-w-aside .it-view-gallery,
  .it-category-page .it-view-gallery,
  .rp-profile-items .it-view-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.it-category-page .it-view-gallery {
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .it-list-view-toggle {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .it-list-view-toggle .dropdown-menu {
    background-color: transparent;
  }
}

.it-list-view-toggle-mob-act {
  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;
}
@media (min-width: 768px) {
  .it-list-view-toggle-mob-act {
    display: none;
  }
}

.in-index-box-premium {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .in-index-box-premium {
    padding: 60px 0;
  }
}

.in-box-title-link {
  display: block;
  color: var(--primary-base-color);
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  margin-left: 30px;
  border-bottom: 1px solid var(--primary-base-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: none;
}
@media (max-width: 767px) {
  .in-box-title-link {
    display: none;
  }
}
.in-box-title-link:hover, .in-box-title-link:focus {
  color: rgba(var(--links-color)) !important;
  border-color: rgba(var(--links-color));
}
.in-box-title-link--with-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border-bottom: none;
}
@media (max-width: 767px) {
  .in-box-title-link--with-icon {
    margin-left: 0;
  }
}

.in-index-box-premium-hot {
  background-color: #E6FCFA;
  overflow: hidden;
}
.in-index-box-premium-hot .in-box-title-box {
  text-transform: uppercase;
}
.in-index-box-premium-hot .in-box-title {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.in-index-box-premium-hot .owl-carousel .owl-stage-outer {
  overflow: visible;
}
.in-index-box-premium-hot .owl-item {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.in-index-box-premium-hot .owl-item:not(.active) {
  opacity: 0;
  pointer-events: none;
}
.in-index-box-premium-hot .rp-it-grid-item {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}
@media (max-width: 767px) {
  .in-index-box-premium-hot .rp-it-grid-item {
    height: 100%;
  }
}
.in-index-box-premium-hot .item-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}
@media (max-width: 991px) {
  .in-index-box-premium-hot .item-slide {
    row-gap: 10px;
    height: 100%;
  }
  .in-index-box-premium-hot .item-slide .rp-it-grid-item {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    max-height: 300px;
    min-height: 300px;
  }
}
.in-index-box-premium-hot .in-box-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
}
.in-index-box-premium-hot .in-box-head > * {
  padding-bottom: 0 !important;
}

/*items*/
/*views*/
.vw-page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media (min-width: 768px) {
  .vw-page .tama-share-btns {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .vw-page .tama-share-btns {
    padding-bottom: 10px;
    padding-top: 15px;
  }
}

.vw-descr {
  word-break: break-word;
}

.vw-columns-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .vw-columns-box {
    gap: 20px;
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .vw-columns-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .vw-aside {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 260px;
  }
}
@media (min-width: 992px) {
  .vw-aside {
    width: 314px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
  }
}
@media (max-width: 767px) {
  .vw-aside {
    width: 100%;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .vw-aside-profile {
    margin-top: 47px;
  }
}
@media (max-width: 767px) {
  .vw-aside-profile {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .vw-aside-profile .vw-vendor {
    padding-bottom: 30px;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .vw-aside-profile .vw-vendor-name {
    font-size: 22px;
    line-height: 30px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-color);
  }
}
@media (max-width: 767px) {
  .vw-aside-profile .vw-vendor-user-avatar:before {
    display: none;
  }
}
@media (max-width: 767px) {
  .vw-aside-profile .vw-vendor-user-avatar img {
    width: 100px;
    height: 100px;
  }
}

.vw-vendor-profile-btns {
  width: 100%;
  gap: 10px;
  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: 25px;
}
.vw-vendor-profile-btns:empty {
  display: none;
}

.rw-in-list.mb-4 + .vw-vendor-profile-btns {
  margin-top: 0 !important;
}

.vw-actions--views {
  margin-top: -10px;
}

@media (max-width: 767px) {
  .vw-vendor.vw-vendor-company {
    margin-top: 10px !important;
    margin-bottom: 35px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
  }
}
@media (max-width: 767px) {
  .vw-vendor.vw-vendor-company .vw-vendor-b-info {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .vw-vendor.vw-vendor-company .vw-vendor-actions-footer {
    margin: 0 -20px -20px -20px;
    min-width: calc(100% + 40px);
  }
}
@media (max-width: 767px) {
  .vw-vendor.vw-vendor-company .vw-vendor-actions-footer {
    padding-bottom: 0;
  }
}

.vw-vendor {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .vw-vendor {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .vw-vendor {
    margin: 40px -20px 20px -20px;
    border-bottom: 2px solid #E5E5E5 !important;
    padding-bottom: 50px;
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .vw-vendor .rw-aside-widget {
    min-width: calc(100% + 40px);
    margin: -20px -20px 20px -20px;
  }
}
.vw-vendor .c-status-txt {
  line-height: 1;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .vw-vendor,
  .vw-aside-page-actions {
    border-left: none;
    border-right: none;
    border-top: none;
    border-radius: 0;
  }
}

@media (max-width: 767px) {
  .vw-vendor-action {
    position: static;
  }
}
.vw-vendor-action:hover .ico {
  color: var(--secondary-base-color);
}

.vw-vendor-fav {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 0;
  border: none;
  background-color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
  max-height: 100%;
}
.vw-vendor-fav .vw-vendor-fav-text--remove {
  display: none;
}
.vw-vendor-fav.active .vw-vendor-fav-text--remove {
  display: block;
}
.vw-vendor-fav.active .vw-vendor-fav-text--add {
  display: none;
}
.vw-vendor-fav:hover .vw-vendor-fav-icon, .vw-vendor-fav.active .vw-vendor-fav-icon {
  border-color: var(--primary-base-color);
}
.vw-vendor-fav:hover .vw-vendor-fav-icon {
  background-color: #E6FCFA;
}

.vw-vendor-fav-text {
  display: block;
}

.vw-vendor-fav-icon {
  width: 25px;
  border-radius: 2px;
  border: 1px solid #999;
  padding: 5px;
  color: #999999;
  height: 25px;
  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;
  transition: 0.3s;
}
.vw-vendor-fav-icon .ico {
  font-size: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.vw-share-mob {
  margin-top: -2px;
}
@media (max-width: 767px) {
  .vw-share-mob .dropdown-menu {
    padding: 15px;
    -webkit-transform: translate3d(-50%, 32px, 0px) !important;
            transform: translate3d(-50%, 32px, 0px) !important;
    left: 50% !important;
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .vw-share-mob .tama-share-btns {
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    gap: 5px;
  }
}

.vw-aside-page-actions {
  padding: 0;
}
@media (max-width: 767px) {
  .vw-aside-page-actions {
    margin: 12px 0 20px 0;
  }
}
.vw-aside-page-actions .vw-vendor-contact {
  background: white;
  margin: 15px -15px 0 -15px;
  padding: 15px 15px 0 15px;
}
@media (max-width: 767px) {
  .vw-aside-page-actions .vw-vendor-contact {
    padding: 15px 0 0 0;
    margin: 0;
  }
}

.vw-vendor-actions-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-width: 100%;
}
@media (min-width: 768px) {
  .vw-vendor-actions-footer {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .vw-vendor-actions-footer {
    position: relative;
    margin-top: 30px;
    padding-bottom: 30px;
  }
}
.vw-vendor-actions-footer .ico {
  color: #999999;
  font-size: 16px;
  min-width: 18px;
}
.vw-vendor-actions-footer:empty {
  display: none;
}

.vw-vendor-actions {
  margin-top: 23px;
}
@media (max-width: 767px) {
  .vw-vendor-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .vw-vendor-actions .btn {
    margin-top: 0;
    text-transform: capitalize;
  }
  .vw-vendor-actions .btn + .btn {
    margin-left: 10px;
  }
}

.vw-vendor-action.c-item-fav .ico {
  font-size: 18px;
}

.vw-vendor-actions-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  gap: 10px;
  min-width: 100%;
}
.vw-vendor-actions-buttons > .btn {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  height: 40px;
  line-height: 38px;
  margin: 0 !important;
  position: relative;
  overflow: hidden;
  text-overflow: inherit;
}
@media (max-width: 767px) {
  .vw-vendor-actions-buttons > .btn.btn-primary {
    margin-bottom: 20px !important;
  }
}
.vw-vendor-actions-buttons > .btn::after {
  content: "";
  display: block;
  width: 16px;
  min-height: 23px;
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #FFFFFF), color-stop(133.33%, rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, #FFFFFF 50%, rgba(255, 255, 255, 0) 133.33%);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 1px;
  z-index: 10;
}
.vw-vendor-actions-buttons > .btn.btn-success:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, rgba(var(--action-buttons-color))), color-stop(133.33%, rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, rgba(var(--action-buttons-color)) 50%, rgba(255, 255, 255, 0) 133.33%);
}
.vw-vendor-actions-buttons > .btn.btn-info:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, var(--info-color)), color-stop(133.33%, rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, var(--info-color) 50%, rgba(255, 255, 255, 0) 133.33%);
}
.vw-vendor-actions-buttons > .btn.btn-primary:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, var(--primary-base-color)), color-stop(133.33%, rgba(255, 255, 255, 0)));
  background: linear-gradient(270deg, var(--primary-base-color) 50%, rgba(255, 255, 255, 0) 133.33%);
}
.vw-vendor-actions-buttons > .btn.w-50 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 10px);
          flex: 1 1 calc(50% - 10px);
}

@media (max-width: 767px) {
  .rw-aside-widget + .cp-contact-data-box.hide + .vw-vendor-actions-buttons {
    margin-top: 20px;
  }
}

.vw-price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .vw-price-box {
    margin-bottom: 30px;
  }
}

.vw-price-num {
  font-weight: bold;
  font-size: 28px;
  line-height: 38px;
  white-space: nowrap;
  margin-right: 17px;
}
@media (max-width: 991px) {
  .vw-price-num {
    font-size: 22px;
    line-height: 30px;
  }
}

.vw-price-mod {
  display: inline-block;
  white-space: nowrap;
  color: #49525A;
  font-size: 13px;
  line-height: 16px;
  margin: 10px 0;
}

@media (max-width: 767px) {
  .vw-vendor-contact {
    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: 20px;
  }
}

.vw-vendor-contact-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .vw-vendor-contact-row {
    font-size: 14px;
    line-height: 20px;
  }
}
.vw-vendor-contact-row:before {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  width: 100%;
  display: block;
  height: 1px;
  border-bottom: 1px dotted #999999;
}
.vw-vendor-contact-row + .vw-vendor-contact-row {
  margin-top: 9px;
}

.vw-vendor-contact-row-label {
  vertical-align: top;
  color: #595959;
  padding-right: 20px;
  background-color: white;
  position: relative;
  z-index: 1;
}

.vw-vendor-contact-row-content {
  padding-left: 20px;
  margin-left: auto;
  background-color: white;
  position: relative;
  z-index: 1;
  max-width: 223px;
  text-align: right;
}
.vw-vendor-contact-row-content a {
  display: block;
}
@media (max-width: 767px) {
  .vw-vendor-contact-row-content {
    font-size: 14px;
  }
  .vw-vendor-contact-row-content a {
    color: var(--text-color);
  }
  .vw-vendor-contact-row-content a span {
    border-bottom-color: var(--text-color) !important;
  }
}
.vw-vendor-contact-row-content div + div {
  margin-top: 7px;
}

.vw-vendor-contact-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 33px -5px 0 -5px;
}
@media (max-width: 767px) {
  .vw-vendor-contact-social {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-top: 0;
    margin-bottom: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.vw-vendor-contact-social .c-social-link {
  margin-left: 8px;
  margin-right: 8px;
}

.vw-vendor-actions-body:empty {
  display: none;
}

.vw-vendor-user-avatar {
  margin-bottom: 20px;
}
.vw-vendor-user-avatar a {
  display: block;
}
@media (max-width: 767px) {
  .vw-vendor-user-avatar > div, .vw-vendor-user-avatar > a {
    position: relative;
    display: inline-block;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    z-index: 1;
    background-color: white;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .vw-vendor-user-avatar:before {
    content: "";
    border-top: 1px solid #EBEBEB;
    display: block;
    width: calc(100% - 40px);
    position: absolute;
    left: 20px;
    right: 20px;
    top: 32px;
  }
}
.vw-vendor-user-avatar img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
}

.vw-vendor-name {
  font-size: 16px;
  line-height: normal;
  margin-bottom: 20px;
  color: var(--text-color);
}

@media (max-width: 767px) {
  .vw-vendor-profile .vw-aside,
  .vw-vendor-profile .vw-vendor {
    margin-top: 0 !important;
  }
}
.vw-vendor-profile .usr-navs-border .usr-navs {
  margin-bottom: -2px;
}

.vw-actions-item-dropdown {
  left: auto;
  top: 0;
  right: 100%;
  margin-right: 15px;
  margin-top: -22px;
  width: 350px;
  padding: 20px;
}
@media (max-width: 767px) {
  .vw-actions-item-dropdown {
    margin-top: 0;
    width: 100%;
    right: 0;
    left: auto;
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
    top: 0;
    margin-right: 0;
  }
}
.vw-actions-item-dropdown .dropdown-menu-heading {
  margin: -15px -15px 15px -15px;
}
.vw-actions-item-dropdown .form-check-label {
  display: block;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .vw-actions-item-dropdown.vw-actions-item-dropdown-complain {
    top: auto;
    bottom: -22px;
  }
}
@media (max-width: 767px) {
  .vw-actions-item-dropdown.vw-actions-item-dropdown-complain {
    display: none !important;
  }
}

/*tabs conmmets / reviews*/
.vw-menu .nav-item {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.vw-ico-tabs {
  margin-bottom: 24px;
  padding-bottom: 0;
  -ms-flex-flow: nowrap;
      flex-flow: nowrap;
}
@media (max-width: 575px) {
  .vw-ico-tabs {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) {
  .vw-ico-tabs {
    border-top: 1px solid #E5E5E5;
    padding-top: 25px;
  }
}
.vw-ico-tabs .ico {
  margin-top: -4px;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.vw-ico-tabs .nav-item:hover .vw-ico-tabs-link span {
  border-bottom-color: transparent;
}

.vw-ico-tabs-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 26px;
}
.vw-ico-tabs-link span {
  border-bottom: 1px dotted;
}
.vw-ico-tabs-link .ico path {
  fill: #0096C7;
}
.vw-ico-tabs-link.active .ico path {
  fill: var(--primary-base-color);
}
.vw-ico-tabs-link.active span {
  color: var(--text-color);
  border-bottom-color: transparent;
}

.vw-vendor-b-info {
  font-size: 13px;
  line-height: 16px;
  max-width: 100%;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.vw-vendor-b-info > * + * {
  margin-top: 3px;
}

.vw-vendor-b-info-footer {
  white-space: nowrap;
  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;
}
@media (min-width: 768px) and (max-width: 991px) {
  .vw-vendor-b-info-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .vw-vendor-b-info-footer .c-dot {
    display: none;
  }
}

@media (min-width: 768px) {
  .vw-white-box-30 {
    padding: 30px;
  }
}

.fancybox-container {
  z-index: 100000 !important;
}
.fancybox-container .fancybox-button {
  background: none !important;
}
.fancybox-container .fancybox-button:disabled div {
  background-color: rgba(0, 0, 0, 0.2);
}
.fancybox-container .fancybox-button:disabled div:before {
  opacity: 0.6;
}
.fancybox-container .fancybox-button div {
  position: relative;
  width: 36px;
  height: 36px;
  background-image: none !important;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: inline-block;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}
.fancybox-container .fancybox-button div:before {
  content: "";
  display: inline-block;
  color: white;
  font-size: 19px;
  width: 13px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  text-decoration: inherit;
  position: absolute;
  top: 49%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}
.fancybox-container .fancybox-button div svg {
  display: none;
}
.fancybox-container .fancybox-button.fancybox-button--arrow_left div:before {
  content: "\f104";
}
.fancybox-container .fancybox-button.fancybox-button--arrow_right div:before {
  content: "\f105";
}
.fancybox-container .fancybox-toolbar {
  opacity: 1 !important;
  visibility: visible !important;
}
.fancybox-container .fancybox-bg {
  opacity: 0.9 !important;
}
.fancybox-container .fancybox-thumbs {
  top: auto;
  width: auto;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: transparent;
}
.fancybox-container .fancybox-thumbs .fancybox-inner {
  right: 0;
  bottom: 95px;
}
.fancybox-container .fancybox-thumbs .fancybox-thumbs__list {
  margin: 0 auto;
}
.fancybox-container .fancybox-thumbs .fancybox-thumbs__list a {
  margin: 0 5px;
  border-radius: 5px;
  max-height: 64px;
  max-width: 64px;
}
.fancybox-container .fancybox-thumbs .fancybox-thumbs__list a:before {
  border-radius: 5px;
  border: 3px solid var(--primary-base-color);
}
.fancybox-container .fancybox-slide {
  max-height: calc(100% - 85px);
}
.fancybox-container .fancybox-inner {
  right: 0 !important;
}
.fancybox-container .fancybox-button--close {
  top: 0;
  right: 0;
}

.vw-dynprops-item-attr {
  white-space: nowrap;
}

.vw-dp-files {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.vw-dp-file-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.vw-dp-file-item .ico {
  font-size: 14px;
  color: #595959;
  margin-right: 6px;
}

.vw-dp-file-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  white-space: nowrap;
  min-width: 0;
}

.vw-dp-file-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vw-contacts {
  margin-bottom: 10px;
}

.vw-contacts-btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 10px;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: rgba(var(--links-color));
  text-decoration: underline;
  background-color: transparent;
  -webkit-transition: opacity 0.4s ease, max-height 0.4s ease, margin 0.4s ease, padding 0.4s ease, color 0.3s;
  transition: opacity 0.4s ease, max-height 0.4s ease, margin 0.4s ease, padding 0.4s ease, color 0.3s;
  overflow: hidden;
  max-height: 40px;
}
.vw-contacts-btn.is-hidden {
  opacity: 0;
  max-height: 0;
  padding: 0;
  margin: 0;
}
.vw-contacts-btn:hover {
  color: var(--primary-base-color);
}

.vw-contacts-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}
.vw-contacts-box--disabled a {
  pointer-events: none;
}

.vw-contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: var(--text-color);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.vw-contacts-item:hover {
  color: rgba(var(--links-color));
}
.vw-contacts-item svg {
  width: 15px;
  height: 15px;
}
.vw-contacts-item svg path {
  fill: currentColor;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.btn-whatsapp:hover {
  background-color: var(--primary-base-color);
  color: #fff;
}
.btn-whatsapp::after {
  display: none !important;
}

.vw-vendor-action-link {
  color: #FF585B;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin: 20px auto 0;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.vw-vendor-action-link:hover {
  color: var(--primary-base-color) !important;
}
@media (max-width: 767px) {
  .vw-vendor-action-link {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .vw-aside-sticky {
    position: sticky;
    top: 60px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-bottom: 20px;
  }
}

.vw-vendor-action-edit {
  margin-top: 20px;
  color: var(--primary-base-color) !important;
}
.vw-vendor-action-edit:hover {
  color: rgba(var(--links-color)) !important;
}

@media (max-width: 767px) {
  .alert--mob-col {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .alert--mob-col .btn {
    width: 100%;
  }
}

.vw-slider {
  opacity: 0;
}
.vw-slider.vw-images-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.vw-slider.lightSlider {
  opacity: 1;
}
.vw-slider:empty {
  display: none;
}
.vw-slider.vw-images-single {
  margin: 0 auto;
  opacity: 1;
  text-align: center;
}
.vw-slider.vw-images-single:not(.lightSlider) {
  opacity: 0;
}
.vw-slider.vw-images-single.vw-images-centered {
  max-height: inherit;
}
.vw-slider.vw-images-single.vw-images-centered > div {
  margin: 0 auto;
  max-height: inherit;
}
.vw-slider.vw-images-single .lslide {
  cursor: default;
}
.vw-slider.vw-images-single img {
  max-height: inherit;
}
.vw-slider.lsGrab > * {
  cursor: pointer !important;
}
.vw-slider.lsGrabbing img {
  pointer-events: none;
}

.vw-slider-box {
  position: relative;
  max-width: 100%;
  margin-bottom: 44px;
}
@media (max-width: 767px) {
  .vw-slider-box {
    margin-bottom: 22px;
  }
}
@media (min-width: 768px) {
  .vw-slider-box {
    overflow: hidden;
  }
}
.vw-slider-box.vw-slider-cover img {
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
}
.vw-slider-box.vw-slider-contain img {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 100%;
  max-width: 100% !important;
  height: 100%;
}
@media (max-width: 767px) {
  .vw-slider-box.vw-slider-contain img {
    width: 100%;
  }
}
.vw-slider-box .lSSlideOuter {
  border-radius: 5px;
}
.vw-slider-box .lSSlideOuter .lslide {
  position: relative;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.vw-slider-box .lSSlideOuter .lslide:last-child {
  margin-right: 0 !important;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .vw-slider-box .lSSlideOuter .lslide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .vw-slider-box .lSSlideOuter .lslide {
    height: 280px !important;
  }
}
@media (min-width: 992px) {
  .vw-slider-box .lSSlideOuter .lslide {
    height: 450px !important;
  }
}
@media (max-width: 767px) {
  .vw-slider-box .lSSlideOuter .lslide {
    text-align: center;
    height: 240px !important;
  }
}
@media (max-width: 359px) {
  .vw-slider-box .lSSlideOuter .lslide {
    height: 220px !important;
  }
}
@media (min-width: 768px) {
  .vw-slider-box .lSSlideOuter .lslide > img {
    max-width: inherit;
  }
}
@media (min-width: 768px) {
  .vw-slider-box .lSSlideWrapper {
    border-radius: 5px;
  }
}
.vw-slider-box .vw-video,
.vw-slider-box .vw-map {
  height: 100%;
}
.vw-slider-box .vw-video > div,
.vw-slider-box .vw-map > div {
  width: 100%;
  height: 100% !important;
}
.vw-slider-box .vw-video:last-child,
.vw-slider-box .vw-map:last-child {
  margin-right: 0 !important;
}
@media (min-width: 768px) {
  .vw-slider-box .vw-video,
  .vw-slider-box .vw-map {
    min-width: 420px;
  }
}
@media (min-width: 992px) {
  .vw-slider-box .vw-video,
  .vw-slider-box .vw-map {
    min-width: 626px;
  }
}
@media (min-width: 1200px) {
  .vw-slider-box .vw-video,
  .vw-slider-box .vw-map {
    min-width: 906px;
  }
}
@media (max-width: 767px) {
  .vw-slider-box .vw-video,
  .vw-slider-box .vw-map {
    min-width: 320px;
    height: 100%;
  }
}

.vw-map-cap {
  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: 100%;
  height: 100%;
}

.vw-video {
  width: 100%;
}

.lSPager {
  margin: 20px 0 0 !important;
}
@media (max-width: 767px) {
  .lSPager {
    overflow: visible;
    padding-left: 10px;
    margin-top: 10px !important;
  }
}
@media (min-width: 1200px) {
  .lSPager {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.lSPager.lSGallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.lSPager li {
  margin-top: 0 !important;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.lSPager li:last-child {
  margin-right: 0 !important;
}
.lSPager li:only-child {
  display: none;
}
.lSPager li.thumb-video a:before {
  z-index: 1;
}
.lSPager li.thumb-video a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: black;
  opacity: 0.4;
}
.lSPager li a {
  width: 100%;
  height: 100%;
  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;
  position: relative;
}
.lSPager li a .ico-play {
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.lSPager li a .ico-play:before {
  content: "\f144";
  color: white;
  font-family: "Font Awesome 5 Free";
  width: 30px;
  height: 30px;
  font-size: 30px;
  font-weight: 400;
  display: block;
  line-height: 1;
}
.lSPager li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border: 3px solid transparent;
  border-radius: 3px;
}
.lSPager li.active a:before {
  border-color: var(--primary-base-color);
}

.vw-images-centered .lslide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vw-actions-stats {
  margin: 15px 0;
}

.vw-actions-stats-item + .vw-actions-stats-item {
  margin-top: 5px;
}
.vw-actions-stats-item.loading:before {
  background-color: transparent;
}
.vw-actions-stats-item a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.vw-actions-stats-item a:hover {
  color: rgba(var(--links-color)) !important;
}
.vw-actions-stats-item a > .ico {
  margin-right: 7px;
}

.vw-stats {
  display: table;
  width: 100%;
}
@media (max-width: 992px) {
  .vw-stats {
    display: block;
  }
}

.vw-stats-info {
  display: table-cell;
  vertical-align: top;
  color: var(--text-color);
  font-size: 14px;
}
@media (max-width: 992px) {
  .vw-stats-info {
    display: block;
    margin-top: 20px;
  }
}

.vw-stats-info-promo {
  background: #EAF9F9;
  padding: 30px;
  text-align: center;
  margin-top: 20px;
  color: var(--text-color);
  border-radius: 5px;
}
@media (max-width: 767px) {
  .vw-stats-info-promo {
    padding: 15px;
  }
}
.vw-stats-info-promo svg {
  display: block;
  width: 25px;
  height: 25px;
  margin: 0 auto 15px;
}
.vw-stats-info-promo + * {
  margin-top: 20px;
}

.vw-stats-info-promo-title {
  margin-bottom: 15px;
}

.vw-stats-colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #595959;
  margin-top: 25px;
  font-size: 13px;
  line-height: 16px;
}
.vw-stats-colors > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}
.vw-stats-colors .c-dot {
  min-width: 10px;
  max-width: 106px;
  min-height: 10px;
  margin-left: 0;
  margin-top: 4px;
}

.vw-stats-colors-l .c-dot {
  background: #0096C7;
}

.vw-stats-colors-r .c-dot {
  background: #376590;
}

.vw-stats-graph {
  display: table-cell;
  vertical-align: middle;
  width: 600px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .vw-stats-graph {
    width: auto;
    margin-right: -20px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .vw-stats-graph::-webkit-scrollbar {
    display: none;
  }
  .vw-stats-graph svg {
    width: auto !important;
  }
}
.vw-stats-graph .axis text {
  font-size: 11px;
  fill: #595959;
}
.vw-stats-graph .axis path, .vw-stats-graph .axis line {
  fill: none;
  stroke: #E5E5E5;
  shape-rendering: crispEdges;
}
.vw-stats-graph .bar-item {
  fill: #0096C7;
}
.vw-stats-graph .bar-contacts {
  fill: #376590;
}
.vw-stats-graph .bar-cnt-total {
  font-size: 13px;
  fill: #595959;
  text-anchor: middle;
}
.vw-stats-graph .bar-tooltip {
  position: absolute;
  text-align: left;
  min-width: 160px;
  padding: 5px;
  font-size: 13px;
  background: white;
  border: 1px solid #E5E5E5;
}
.vw-stats-graph .bar-tooltip span {
  display: block;
}
@media (max-width: 992px) {
  .vw-stats-graph {
    display: block;
  }
}

.vw-comments:empty {
  display: none;
}

.vw-comments-leave {
  border: 1px solid #E5E5E5;
  margin-bottom: 15px;
}

.vw-comments-leave-form-in .form-row {
  margin-right: 0;
  margin-left: 0;
}

.vw-comments-leave-action.c-lg-action-btn {
  height: 40px;
  line-height: 37px;
  margin-bottom: 0;
}
.vw-comments-leave-action:not(.collapsed) {
  display: none;
}

.vw-comments-list {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.vw-comments-list:empty {
  display: none;
}

.vw-comments-list-item {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 20px;
}
.vw-comments-list-item + .vw-comments-list-item {
  border-top: 1px solid #EBEBEB;
}

.vw-comments-list-item-box {
  position: relative;
  margin-left: 77px;
}
@media (max-width: 767px) {
  .vw-comments-list-item-box {
    margin-left: 53px;
  }
}
.vw-comments-list-item-box .vw-comments-list-item-avatar {
  left: -15px;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
@media (max-width: 767px) {
  .vw-comments-list-item-box .vw-comments-list-item-avatar {
    left: -10px;
  }
}
.vw-comments-list-item-box .vw-comments-list-item-avatar img {
  width: 60px;
  height: 60px;
}
@media (max-width: 767px) {
  .vw-comments-list-item-box .vw-comments-list-item-avatar img {
    width: 43px;
    height: 43px;
  }
}

.vw-comments-list-item-in {
  display: table;
  width: 100%;
}

.vw-comments-list-item-answer {
  margin-left: 77px;
  border-top: 1px solid #EBEBEB;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .vw-comments-list-item-answer {
    margin-left: 20px;
  }
}
.vw-comments-list-item-answer:last-of-type .vw-comments-list-item-box {
  border-bottom: 0;
}
.vw-comments-list-item-answer .vw-comments-list-item-box {
  margin-left: 57px;
}
.vw-comments-list-item-answer .vw-comments-list-item-avatar img {
  width: 42px;
  height: 42px;
}

.vw-comments-list-item-avatar {
  position: absolute;
  top: 0;
  left: 0;
}
.vw-comments-list-item-avatar img {
  border-radius: 50%;
}

.vw-comments-list-item-content {
  padding-left: 0;
}
@media (min-width: 768px) {
  .vw-comments-list-item-content {
    overflow: hidden;
  }
}

.vw-comments-list-item-author {
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-color);
}
@media (max-width: 991px) {
  .vw-comments-list-item-author {
    width: 100%;
  }
}

.vw-comments-list-item-content-top {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991px) {
  .vw-comments-list-item-content-top {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    min-height: 40px;
  }
}

@media (max-width: 767px) {
  .vw-comments-list-item-body {
    margin-left: -50px;
  }
}

.vw-comments-list-item-date {
  font-size: 13px;
  line-height: 20px;
  margin-left: 14px;
  color: #595959;
}
@media (max-width: 991px) {
  .vw-comments-list-item-date {
    margin-left: 0;
  }
}
@media (max-width: 370px) {
  .vw-comments-list-item-date {
    max-width: 100px;
  }
}

.vw-comments-list-item-text {
  padding-right: 20px;
}

.vw-comments-list-item-controls {
  margin-top: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.vw-comments-list-item-controls .c-link-ajax {
  font-size: 13px;
  margin-right: 20px;
}
.vw-comments-list-item-controls.l-controls-empty {
  position: absolute;
  left: 0;
  bottom: 26px;
  right: 0;
}
@media (max-width: 767px) {
  .vw-comments-list-item-controls.l-controls-empty {
    bottom: 20px !important;
  }
}

.vw-comments-list-item-answer-form {
  margin-top: 20px;
}

.vw-comments-list-item-claim {
  margin-left: auto !important;
}
.vw-comments-list-item-claim .ico {
  color: var(--primary-base-color);
  font-size: 14px;
}

.vw-comments-list-item-owner {
  margin-left: auto;
  padding-left: 10px;
  font-size: 13px;
  line-height: 16px;
}
.vw-comments-list-item-owner.l-author {
  color: var(--success-color);
}
.vw-comments-list-item-owner.l-you {
  color: #595959;
}

.vw-comments-add .c-lg-action-btn {
  height: 40px;
  line-height: 40px;
}

/* Owner Block */
.vw-owner-block {
  position: fixed;
  z-index: 10010;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
@media (min-width: 768px) {
  .vw-owner-block {
    -webkit-transform: translateY(72px);
        -ms-transform: translateY(72px);
            transform: translateY(72px);
  }
}
@media (max-width: 767px) {
  .vw-owner-block {
    -webkit-transform: translateY(120px);
        -ms-transform: translateY(120px);
            transform: translateY(120px);
  }
  .vw-owner-block:not(.visible) {
    -webkit-transform: translateY(100%) !important;
        -ms-transform: translateY(100%) !important;
            transform: translateY(100%) !important;
  }
}
.vw-owner-block.is-more {
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
}
.vw-owner-block.is-more .vw-owner-block-toggle .c-drop-arrow {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.vw-owner-block.is-more .vw-owner-block-toggle-hide {
  display: inline-block;
}
.vw-owner-block.is-more .vw-owner-block-toggle-show {
  display: none;
}

.vw-owner-block-toggle-hide {
  display: none;
}

.vw-owner-block-toggle .c-drop-arrow {
  width: 13px;
  height: 13px;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.23535 5.29795L3.25048 4.25L8.48535 9.65411L13.7202 4.25L14.7354 5.29795L8.48535 11.75L2.23535 5.29795Z' fill='%232A2349'/%3E%3C/svg%3E");
}

.vw-owner-block-in {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .vw-owner-block-in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.vw-owner-block-top {
  padding: 15px 0;
}
@media (max-width: 767px) {
  .vw-owner-block-top {
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .vw-owner-block-top .vw-owner-block-acts-l {
    margin-bottom: 0;
    overflow-x: auto;
  }
}
@media (max-width: 767px) {
  .vw-owner-block-top .vw-owner-block-acts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.vw-owner-block-top .vw-owner-block-acts a {
  color: var(--primary-base-color) !important;
}
.vw-owner-block-top .vw-owner-block-acts a:hover {
  color: rgba(var(--links-color)) !important;
}

.vw-owner-block-acts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .vw-owner-block-acts {
    display: block;
    text-align: center;
  }
}

.vw-owner-block-acts-l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .vw-owner-block-acts-l {
    margin-bottom: 10px;
    overflow-x: auto;
  }
}

.vw-owner-block-acts-r {
  text-align: right;
}
@media (min-width: 768px) {
  .vw-owner-block-acts-r {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  .vw-owner-block-acts-r {
    display: block;
    text-align: center;
  }
}
.vw-owner-block-acts-r a:not(.btn) {
  font-size: 13px;
}

.vw-owner-block-main {
  padding: 15px 0;
  border-top: 1px solid #E5E5E5;
}
@media (max-width: 767px) {
  .vw-owner-block-main {
    padding-top: 10px;
  }
}

.vw-owner-action {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .vw-owner-action {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.vw-owner-action + .vw-owner-action {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .vw-owner-action.d-none + .vw-owner-action {
    margin-left: 0;
  }
}
.vw-owner-action .ico {
  font-size: 16px;
}

@supports (bottom: constant(safe-area-inset-bottom)) {
  body {
    padding-bottom: constant(safe-area-inset-bottom);
  }
}
.vw-bottom-mob-actions-panel {
  position: fixed;
  z-index: 10001;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
}
@media (min-width: 768px) {
  .vw-bottom-mob-actions-panel {
    display: none;
  }
}
@media (max-width: 767px) {
  .vw-bottom-mob-actions-panel {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateY(120%);
        -ms-transform: translateY(120%);
            transform: translateY(120%);
    padding-bottom: env(safe-area-inset-bottom) !important;
    min-height: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .vw-bottom-mob-actions-panel.visible {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .vw-bottom-mob-actions-panel .container {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .vw-bottom-mob-actions-panel .modal {
    top: auto;
    bottom: 43px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .vw-bottom-mob-actions-panel .c-item-fav {
    min-width: 18px;
    height: 18px;
    margin-left: auto;
    padding: 0 15px;
  }
}

.vw-bottom-mob-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .vw-bottom-mob-actions {
    margin: 0 -15px;
  }
}
.vw-bottom-mob-actions > .btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media (max-width: 767px) {
  .vw-bottom-mob-actions > .btn {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }
}
.vw-bottom-mob-actions > .btn.btn-lg-height {
  padding-top: 6px;
  padding-bottom: 6px;
}
.vw-bottom-mob-actions > .btn.btn-block {
  width: auto;
}

@media (max-width: 767px) {
  .vw-bottom-mob-sub-toggle {
    margin: -15px 0 -15px 8px;
    padding: 15px 20px;
  }
  .vw-bottom-mob-sub-toggle .ico {
    color: #999999;
    font-size: 18px;
  }
}

.vw-top-sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
  z-index: 10010;
  background-color: white;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateY(-120%);
      -ms-transform: translateY(-120%);
          transform: translateY(-120%);
}
.vw-top-sticky-nav.visible {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 767px) {
  .vw-top-sticky-nav .usr-navs {
    margin: 0;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .vw-top-sticky-nav .nav-link {
    padding: 10px 0;
    margin-bottom: -1px;
  }
}
.vw-top-sticky-nav .container {
  padding: 0 15px !important;
}
.vw-top-sticky-nav .c-item-fav {
  width: 25px;
  border-radius: 2px;
  border: 1px solid #999;
  padding: 5px;
  color: #999999;
  max-height: 25px;
  height: 25px;
  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;
  transition: 0.3s;
}
.vw-top-sticky-nav .c-item-fav .ico {
  font-size: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.vw-top-sticky-nav .c-item-fav:hover {
  background-color: #E6FCFA;
}

.vw-top-sticky-nav-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .vw-top-sticky-nav-in {
    padding: 0 10px;
  }
}

.vw-top-sticky-nav-l {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30%;
          flex: 1 1 30%;
  min-width: 30%;
}

.vw-top-sticky-nav-r {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10px;
}
@media (min-width: 992px) {
  .vw-top-sticky-nav-r {
    max-width: 70%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 70%;
            flex: 1 1 70%;
  }
}
@media (max-width: 767px) {
  .vw-top-sticky-nav-r {
    display: none;
  }
}
.vw-top-sticky-nav-r .c-item-fav + * {
  margin-left: 20px;
}

.vw-top-sticky-nav-buttons {
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.vw-top-sticky-nav-buttons .btn + .btn {
  margin-left: 10px;
}

.vw-top-sticky-nav-info {
  font-size: 18px;
  line-height: normal;
  white-space: nowrap;
  width: 100%;
  display: block;
  position: relative;
  text-align: right;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .vw-top-sticky-nav-info {
    display: none;
  }
}

.vw-top-sticky-nav-info-price {
  font-size: 18px;
  line-height: normal;
  font-weight: bold;
  white-space: nowrap;
}

.vw-top-sticky-nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1199px) {
  .vw-top-sticky-nav-links {
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .vw-top-sticky-nav-links {
    gap: 30px;
  }
}
.vw-top-sticky-nav-links a {
  display: inline-block;
  line-height: 47px;
  position: relative;
  border-bottom: 2px solid transparent;
  color: var(--primary-base-color);
  /*&:not(.hidden) + a {
    @media (max-width: 1199px) {
      margin-left: 20px;
    }

    @media (min-width: 1200px) {
      margin-left: 30px;
    }
  }*/
}
.vw-top-sticky-nav-links a.active {
  color: var(--text-color);
  border-bottom-color: var(--primary-base-color);
}
.vw-top-sticky-nav-links a:hover {
  color: rgba(var(--links-color));
}

@media (max-width: 767px) {
  .rp-vw-page {
    padding-bottom: 33px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .rp-vw-page .c-page-back-link {
    padding: 20px 0 10px 0;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media (min-width: 768px) {
  .rp-vw-page .vw-aside,
  .cp-container .vw-aside {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .rp-vw-page .vw-aside,
  .cp-container .vw-aside {
    margin-top: 0;
  }
}
.rp-vw-page .l-columns-box-l > *,
.cp-container .l-columns-box-l > * {
  background: white;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
  padding: 30px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .rp-vw-page .l-columns-box-l > *,
  .cp-container .l-columns-box-l > * {
    padding: 15px;
  }
}
.rp-vw-page .l-columns-box-l > *:last-of-type,
.cp-container .l-columns-box-l > *:last-of-type {
  margin-bottom: 0;
}
.rp-vw-page .l-columns-box-l > * .c-shadow-overflow:after,
.cp-container .l-columns-box-l > * .c-shadow-overflow:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, white), color-stop(133.33%, rgba(255, 255, 255, 0))) !important;
  background: linear-gradient(270deg, white 50%, rgba(255, 255, 255, 0) 133.33%) !important;
}
.rp-vw-page .l-columns-box-l > * .vw-white-box:not(.vw-vendor-actions-box),
.rp-vw-page .l-columns-box-l > * .c-shadow-white-box,
.cp-container .l-columns-box-l > * .vw-white-box:not(.vw-vendor-actions-box),
.cp-container .l-columns-box-l > * .c-shadow-white-box {
  padding: 0;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  margin-bottom: 0 !important;
  border-bottom: 0 !important;
}
@media (max-width: 767px) {
  .rp-vw-page .l-columns-box-l,
  .cp-container .l-columns-box-l {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .rp-vw-page .l-columns-box-l .vw-slider-contain,
  .cp-container .l-columns-box-l .vw-slider-contain {
    padding: 0;
    border: none;
  }
}
@media (max-width: 767px) {
  .rp-vw-page .vw-menu,
  .cp-container .vw-menu {
    margin-left: 0;
    margin-right: 0;
  }
}
.rp-vw-page .vw-menu .vw-ico-tabs,
.cp-container .vw-menu .vw-ico-tabs {
  padding: 0;
  border-top: 0;
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  .rp-vw-page .vw-menu .vw-ico-tabs,
  .cp-container .vw-menu .vw-ico-tabs {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .rp-vw-page .rp-vw-price-box-mob,
  .cp-container .rp-vw-price-box-mob {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .rp-vw-page .rp-vendor-block,
  .cp-container .rp-vendor-block {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
@media (max-width: 767px) {
  .rp-vw-page .vw-menu,
  .cp-container .vw-menu {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
}

.rp-vw-page-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0 !important;
}
@media (min-width: 992px) {
  .rp-vw-page-head {
    margin-bottom: 32px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .rp-vw-page-head {
    margin-bottom: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (min-width: 992px) {
  .l-page-head-l-info {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
@media (max-width: 991px) {
  .l-page-head-l-info {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .l-page-head-r-info {
    display: none;
  }
}

.rp-vw-head-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 5px;
}
.rp-vw-head-info .c-link-ajax .ico {
  width: 9px;
  height: 12px;
  margin-right: 2px;
}
.rp-vw-head-info .c-link-ajax .ico path {
  fill: #0096C7;
}

@media (min-width: 768px) {
  .rp-vw-price-box-mob {
    display: none;
  }
}
@media (max-width: 767px) {
  .rp-vw-price-box-mob {
    border: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    padding: 0 !important;
    background-color: transparent !important;
    margin-bottom: 0 !important;
  }
}
@media (max-width: 767px) {
  .rp-vw-price-box-mob .vw-vendor-actions-buttons {
    margin-top: 0;
  }
}

.rp-vw-rss-subscribe {
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .rp-vw-rss-subscribe {
    margin-top: 35px;
  }
}
@media (max-width: 767px) {
  .rp-vw-rss-subscribe .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    white-space: normal;
    text-align: left;
  }
}
.rp-vw-rss-subscribe .btn .ico {
  margin-right: 5px;
}
@media (max-width: 767px) {
  .rp-vw-rss-subscribe .btn .ico {
    margin-right: 10px;
  }
}

.vw-dynprops {
  position: relative;
  padding: 15px 20px;
}
@media (max-width: 1199px) {
  .vw-dynprops {
    padding-bottom: 25px;
    row-gap: 13px;
  }
}
.vw-dynprops:empty {
  display: none;
}
.vw-dynprops:empty:before {
  display: none;
}

.rp-vw-dynprops-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
@media (min-width: 1200px) {
  .rp-vw-dynprops-box {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }
}
@media (max-width: 1199px) {
  .rp-vw-dynprops-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
}
@media (min-width: 1200px) {
  .rp-vw-dynprops-box.rp-vw-dynprops-box-has-2 .vw-dynprops-item {
    width: calc(50% - 10px);
  }
}
@media (min-width: 1200px) {
  .rp-vw-dynprops-box.rp-vw-dynprops-box-has-1 .vw-dynprops-item {
    width: 100%;
  }
}

.vw-dynprops-item {
  overflow: hidden;
}
@media (min-width: 1200px) {
  .vw-dynprops-item {
    width: calc(33.333% - 14px);
  }
}

.vw-dynprops-item-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.vw-dynprops-item-in:before {
  content: "";
  position: absolute;
  top: 10px;
  right: 20px;
  left: 20px;
  display: block;
  height: 1px;
  border-bottom: 1px dashed #C3C3C3;
}

.vw-dynprops-item-attr,
.vw-dynprops-item-val {
  font-size: 14px;
  line-height: 17px;
  display: block;
  color: #595959;
  background-color: white;
}

.vw-dynprops-item-val {
  display: block;
  max-width: 100%;
  padding-left: 10px;
  margin-left: auto;
  position: relative;
  text-align: right;
  color: var(--text-color);
}
@media (min-width: 1200px) {
  .vw-dynprops-item-val {
    max-width: 65%;
  }
}

.vw-dynprops-item-attr {
  margin-bottom: 0;
  padding-right: 10px;
  position: relative;
}

@media (min-width: 768px) {
  .vw-menu .vw-comments-list-item .vw-comments-list-item-box {
    padding-bottom: 0;
  }
}

.rp-vw-vendors-items {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .rp-vw-vendors-items {
    margin-bottom: 50px;
  }
}
.rp-vw-vendors-items .rp-it-grid-item-in {
  border: none;
}
.rp-vw-vendors-items .rp-it-grid-xtra-info {
  display: none !important;
}

.fancybox-container {
  z-index: 1005 !important;
}
@media (min-width: 768px) {
  .fancybox-container.fancybox-show-thumbs .fancybox-inner {
    max-height: calc(100vh - 108px);
  }
}
.fancybox-container .fancybox-caption {
  display: none !important;
}
@media (min-width: 768px) {
  .fancybox-container .fancybox-thumbs {
    padding: 0 0 20px 0;
  }
}
@media (max-width: 767px) {
  .fancybox-container .fancybox-thumbs {
    display: none !important;
  }
}
.fancybox-container .fancybox-thumbs .fancybox-thumbs__list a {
  min-width: 125px;
  height: 88px;
  max-height: inherit;
}
.fancybox-container .fancybox-thumbs .fancybox-thumbs__list a:before {
  border-width: 4px !important;
  border-radius: 4px !important;
}
.fancybox-container .fancybox-thumbs-x {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.fancybox-container .fancybox-thumbs-x::-webkit-scrollbar {
  display: none;
  width: 0;
  background: transparent;
}
.fancybox-container .fancybox-toolbar {
  top: 14px;
  right: 10px;
}
.fancybox-container .fancybox-bg {
  opacity: 0.95 !important;
}
.fancybox-container .fancybox-slide {
  max-height: inherit !important;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .fancybox-container .fancybox-image {
    padding: 50px 0 0 0;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.vw-vendor-actions-box {
  padding: 30px !important;
}
@media (max-width: 767px) {
  .vw-vendor-actions-box {
    padding: 15px !important;
  }
}

.vw-price-num {
  font-size: 32px;
  line-height: normal;
  color: var(--text-color);
}

@media (max-width: 767px) {
  .vw-price-box {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .rp-vw-page .vw-price-box.c-shadow-overflow:after {
    background: -webkit-gradient(linear, right top, left top, color-stop(50%, var(--body-bg-color)), color-stop(133.33%, rgba(255, 255, 255, 0))) !important;
    background: linear-gradient(270deg, var(--body-bg-color) 50%, rgba(255, 255, 255, 0) 133.33%) !important;
  }
}

@media (max-width: 991px) {
  .vw-vendor {
    margin: 0 0 25px 0 !important;
  }
}
@media (min-width: 768px) {
  .vw-vendor .rw-aside-widget {
    margin: -20px -30px 20px -30px;
    min-width: calc(100% + 60px);
  }
}

.vw-vendor-user-avatar:before {
  display: none !important;
}

.vw-vendor-actions-buttons {
  margin-top: 15px;
}
.vw-vendor-actions-buttons > .btn {
  max-width: inherit !important;
  width: 100% !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
@media (max-width: 767px) {
  .vw-vendor-actions-buttons .btn-whatsapp {
    display: none;
  }
}

.rp-vw-similar-box {
  margin-bottom: 34px;
}

@media (min-width: 768px) {
  .rp-location-box {
    border-top: 1px solid #E5E5E5;
    margin-top: 20px;
    margin-bottom: 15px;
    padding-top: 15px;
  }
}
@media (max-width: 767px) {
  .rp-location-box {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .rp-location-box-t {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .rp-location-box-t {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .rp-location-box-t .c-title {
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .rp-location-box-t .c-title {
    margin-bottom: 10px;
  }
}

@media (max-width: 991px) {
  .rp-vw-map {
    height: 285px;
  }
}
@media (min-width: 992px) {
  .rp-vw-map {
    height: 445px;
  }
}
.rp-vw-map > div {
  height: 100%;
}
@media (min-width: 768px) {
  .rp-vw-map + *, .rp-vw-map + script + * {
    padding-top: 34px;
  }
}
@media (max-width: 767px) {
  .rp-vw-map + *, .rp-vw-map + script + * {
    padding-top: 25px;
  }
}

.rp-form-anchors-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .rp-form-anchors-box {
    position: sticky;
    top: 20px;
  }
}

.rp-form-anchor-link {
  color: #595959;
  position: relative;
}
.rp-form-anchor-link + .rp-form-anchor-link {
  margin-top: 15px;
}
.rp-form-anchor-link.active {
  color: var(--primary-base-color);
}
.rp-form-anchor-link.active:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 6px;
  width: 6px;
  height: 6px;
  display: block;
  background-color: var(--primary-base-color);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .rp-form-row .c-form-box {
    padding-right: 25px;
  }
}

.rp-vw-dynprops-title {
  padding-bottom: 20px;
  padding-top: 30px;
}
.rp-vw-dynprops-title:first-child {
  padding-top: 0;
}

.rp-vw-dynprops-val {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 17px;
}
.rp-vw-dynprops-val .ico {
  margin-right: 7px;
  width: 12px;
  height: 10px;
}

.vw-vendor-b-info + .text-success {
  line-height: normal;
}

.vw-vendor .fa-check-square:before {
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 15 15' fill='none'><path d='M13.9627 6.02962C13.7702 5.90034 13.5963 5.74528 13.4459 5.56871C13.4571 5.32288 13.5065 5.0803 13.5924 4.84972C13.7538 4.30316 13.9549 3.62295 13.5674 3.09069C13.1771 2.5542 12.464 2.53619 11.8912 2.52155C11.6502 2.53117 11.4092 2.50526 11.1757 2.44463C11.0474 2.24331 10.9494 2.0242 10.8849 1.79431C10.6938 1.24997 10.4557 0.572467 9.81799 0.365241C9.19924 0.164143 8.64395 0.546213 8.15433 0.882198C7.95756 1.0393 7.73665 1.16348 7.50017 1.24995C7.26357 1.16358 7.04254 1.03938 6.84575 0.882198C6.3561 0.545918 5.80066 0.165053 5.18206 0.365241C4.54457 0.572467 4.30653 1.24963 4.11518 1.79409C4.05081 2.02282 3.95389 2.24112 3.8274 2.44227C3.59323 2.50474 3.35096 2.53139 3.10882 2.52133C2.53601 2.53594 1.82298 2.55398 1.43267 3.09044C1.04516 3.623 1.24621 4.30321 1.40767 4.84982C1.49255 5.07919 1.5424 5.32002 1.55552 5.56426C1.40582 5.74331 1.23127 5.90004 1.03719 6.02964C0.575 6.38211 0 6.82092 0 7.49995C0 8.17898 0.575 8.61779 1.03728 8.97029C1.22982 9.09956 1.40373 9.25463 1.55409 9.43119C1.54292 9.67702 1.49351 9.91958 1.40762 10.1502C1.24618 10.6967 1.04511 11.377 1.43262 11.9092C1.82293 12.4457 2.53596 12.4637 3.1088 12.4784C3.34978 12.4688 3.59084 12.4947 3.82427 12.5553C3.95261 12.7566 4.05061 12.9758 4.11511 13.2056C4.30646 13.7501 4.54449 14.4275 5.18214 14.6348C5.2951 14.6718 5.41325 14.6906 5.53215 14.6906C6.01205 14.6906 6.45027 14.3894 6.8458 14.1178C7.04256 13.9607 7.26347 13.8364 7.49998 13.75C7.73658 13.8363 7.95761 13.9605 8.15445 14.1177C8.64407 14.454 9.19936 14.8346 9.81811 14.6347C10.4556 14.4274 10.6936 13.7503 10.885 13.2058C10.9494 12.9771 11.0463 12.7588 11.1728 12.5576C11.4069 12.4952 11.6492 12.4685 11.8913 12.4786C12.4642 12.464 13.1772 12.4459 13.5675 11.9095C13.955 11.3769 13.754 10.6967 13.5925 10.1501C13.5076 9.92071 13.4578 9.67988 13.4447 9.43565C13.5944 9.25659 13.7689 9.09986 13.963 8.97026C14.425 8.61779 15 8.17898 15 7.49995C15 6.82092 14.425 6.38211 13.9627 6.02962ZM10.2857 6.37935L7.16064 9.50434C6.91666 9.7484 6.52103 9.74848 6.27697 9.50449C6.27692 9.50444 6.27687 9.50439 6.27682 9.50434L4.71432 7.94184C4.46716 7.70088 4.46214 7.30518 4.7031 7.05802C4.94406 6.81086 5.33976 6.80584 5.58692 7.0468C5.59071 7.05049 5.59445 7.05423 5.59814 7.05802L6.71873 8.17864L9.40184 5.49551C9.6428 5.24835 10.0385 5.24336 10.2857 5.48431C10.5328 5.72527 10.5378 6.12098 10.2969 6.36813C10.2932 6.37195 10.2894 6.37566 10.2857 6.37935Z' fill='%2374B31B'/></svg>");
  display: inline-block;
  width: 15px;
  height: 15px;
}
.vw-vendor .rw-ico-comment {
  font-size: 14px;
  margin-top: 0 !important;
}
.vw-vendor .rw-ico-comment:before {
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='15' viewBox='0 0 16 15' fill='none'><path d='M4.01453 11.9071L0.8125 14.375V1.33013C0.8125 1.14312 0.888225 0.963764 1.02302 0.831527C1.15781 0.69929 1.34063 0.625 1.53125 0.625H14.4688C14.6594 0.625 14.8422 0.69929 14.977 0.831527C15.1118 0.963764 15.1875 1.14312 15.1875 1.33013V11.2019C15.1875 11.3889 15.1118 11.5683 14.977 11.7005C14.8422 11.8328 14.6594 11.9071 14.4688 11.9071H4.01453ZM3.51716 10.4968H13.75V2.03526H2.25V11.4734L3.51716 10.4968ZM7.28125 5.5609H8.71875V6.97115H7.28125V5.5609ZM4.40625 5.5609H5.84375V6.97115H4.40625V5.5609ZM10.1562 5.5609H11.5938V6.97115H10.1562V5.5609Z' fill='%23999999'/></svg>");
  display: inline-block;
  width: 16px;
  height: 15px;
}
.vw-vendor .rw-in-list {
  margin-top: 10px !important;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.vw-vendor .rw-in-list .grey-text {
  margin-top: 1px;
  line-height: 1;
}
.vw-vendor .rw-in-list a {
  color: var(--primary-base-color) !important;
}
.vw-vendor .rw-in-list a:hover {
  color: rgba(var(--links-color)) !important;
}

.rp-vw-container + .vw-items:not(.c-grey-bg) {
  padding-top: 0;
}

@media (max-width: 767px) {
  body.is-index-page .vw-items {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  .vw-items {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .vw-items {
    padding: 40px 0;
  }
}
@media (min-width: 1024px) {
  .vw-items .in-box-head > * {
    padding-bottom: 25px;
  }
}
.vw-items .in-box-head .ico {
  display: none;
}
.vw-items.c-grey-bg .it-img-box.it-img-box-empty {
  background-color: white;
}

.rp-vw-slider-box--only-image .vw-slider {
  width: 100% !important;
}
.rp-vw-slider-box--only-image .lslide {
  width: 100% !important;
}
.rp-vw-slider-box--only-image .lSAction,
.rp-vw-slider-box--only-image .lSGallery {
  display: none !important;
}
.rp-vw-slider-box--only-image .lSSlideOuter .lslide > img {
  width: 100% !important;
}
.rp-vw-slider-box .lslide {
  overflow: auto;
}
.rp-vw-slider-box .lSPrev,
.rp-vw-slider-box .lSNext {
  background-color: #fff;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .rp-vw-slider-box .lSPrev,
  .rp-vw-slider-box .lSNext {
    min-width: 30px;
    max-width: 30px;
    max-height: 30px;
    min-height: 30px;
  }
}
@media (max-width: 767px) {
  .rp-vw-slider-box .lSPrev svg,
  .rp-vw-slider-box .lSNext svg {
    width: 15px;
    height: 15px;
  }
}
.rp-vw-slider-box .lSPrev:hover,
.rp-vw-slider-box .lSNext:hover {
  background-color: rgba(var(--links-color));
}
.rp-vw-slider-box .lSPager img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  min-width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .rp-vw-slider-box .lSPager img {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .rp-vw-slider-box .lSPager li {
    height: 84px !important;
  }
}
@media (max-width: 767px) {
  .rp-vw-slider-box .lSPager li {
    height: 64px !important;
  }
}
.rp-vw-slider-box .lSPager a:before {
  border-width: 2px;
  border-radius: 5px;
}
.rp-vw-slider-box .vw-slider .lSAction > a {
  width: 35px;
  height: 35px;
}
.rp-vw-slider-box .vw-slider .lSAction > .lSPrev {
  left: 20px;
}
@media (max-width: 767px) {
  .rp-vw-slider-box .vw-slider .lSAction > .lSPrev {
    left: 15px;
  }
}
.rp-vw-slider-box .vw-slider .lSAction > .lSNext {
  right: 20px;
}
@media (max-width: 767px) {
  .rp-vw-slider-box .vw-slider .lSAction > .lSNext {
    right: 15px;
  }
}
.rp-vw-slider-box .vw-slider:empty {
  display: none !important;
}

.vw-comments-wrap {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .vw-comments-wrap {
    margin-top: 25px;
  }
}

.vw-comments {
  padding-top: 0;
  border-top: 0;
  margin-top: 0 !important;
}

.vw-comments-leave-action {
  border: 1px solid #E5E5E5;
  margin-bottom: 15px;
}

.vw-top-sticky-nav-r .c-item-fav {
  margin-top: 0;
}

.vw-top-sticky-nav-info {
  font-weight: bold;
}

@media (max-width: 767px) {
  .vw-bottom-mob-actions {
    margin: 0;
  }
}

.vw-bottom-mob-actions-panel .c-item-fav {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.rp-vw-gallery-panel {
  z-index: 99995;
  position: absolute;
  left: 0;
  right: 74px;
  height: 73px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0 18px 20px;
}

.rp-vw-gallery-panel-l {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-right: 20px;
}

.rp-vw-gallery-panel-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .rp-vw-gallery-panel-r {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .rp-vw-gallery-panel-r {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
  }
}
@media (max-width: 767px) {
  .rp-vw-gallery-panel-r .c-item-fav {
    width: 75px;
    text-align: center;
  }
}

.rp-vw-gallery-title {
  color: white;
}
@media (min-width: 768px) {
  .rp-vw-gallery-title {
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
  }
}
@media (max-width: 767px) {
  .rp-vw-gallery-title {
    font-size: 14px;
    line-height: 20px;
    font-weight: normal;
  }
}

.rp-vw-gallery-addr {
  font-size: 14px;
  line-height: 17px;
  color: white;
  opacity: 0.5;
  margin-top: 3px;
}
.rp-vw-gallery-addr:empty {
  display: none;
}

/*views*/
/*user*/
.l-table {
  width: 100%;
  display: table;
}

.l-table .l-table-row {
  display: table-row;
}

.l-table .l-table-cell {
  width: 100%;
  display: table-cell;
  vertical-align: top;
}

.usr-count {
  background-color: var(--primary-base-color);
  color: white !important;
  padding: 3px 6px;
  border-radius: 2px;
  font-size: 14px;
  line-height: 17px;
  margin-left: 10px !important;
}
.usr-count.usr-count-grey {
  background-color: #595959;
}

@media (max-width: 767px) {
  .usr-mob-single-nav > * {
    width: 100%;
    -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
  }
}

.usr-fav-empty {
  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;
  height: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .usr-fav-empty {
    padding-top: 30px;
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .usr-fav-empty {
    padding: 106px 0;
  }
}
.usr-fav-empty .ico {
  color: #E5E5E5;
  font-size: 87px;
}

.usr-fav-empty-items {
  border-radius: 5px;
  background-color: #EAF9F9;
  margin: 0 !important;
  padding: 20px 30px;
}
@media (max-width: 767px) {
  .usr-fav-empty-items {
    padding: 15px;
  }
}
.usr-fav-empty-items .ico {
  font-size: 60px;
}
@media (max-width: 767px) {
  .usr-fav-empty-items .ico {
    font-size: 40px;
  }
}

.usr-fav-empty-title {
  font-size: 20px;
  line-height: normal;
  margin-bottom: 15px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .usr-fav-empty-title {
    font-size: 18px;
  }
}

.u-cabinet-content {
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .u-cabinet-content {
    padding-bottom: 37px;
  }
}
@media (min-width: 768px) {
  .u-cabinet-content {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .u-cabinet-content .usr-pagination {
    margin-bottom: -15px;
  }
}

.u-cabinet-aside .c-company-open-banner {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .u-cabinet-aside .nav {
    margin-left: -10px;
  }
}
.u-cabinet-aside .nav-item {
  display: block;
  width: 100%;
}
.u-cabinet-aside .nav-item .nav-link {
  position: relative;
  padding: 13px 15px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .u-cabinet-aside .nav-item .nav-link {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
}
.u-cabinet-aside .nav-item .nav-link:not(.active):hover span {
  color: rgba(var(--links-color)) !important;
}
.u-cabinet-aside .nav-item .nav-link span {
  color: var(--text-color);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.u-cabinet-aside .nav-item .nav-link .ico {
  min-width: 16px;
  max-width: 16px;
  color: #999999;
  font-size: 16px;
  margin-right: 15px;
}
.u-cabinet-aside .nav-item .nav-link .ico path {
  fill: #999999;
}
.u-cabinet-aside .nav-item .nav-link.active:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(var(--links-color));
  opacity: 0.1;
  border-radius: 5px;
}
.u-cabinet-aside .nav-item .nav-link.active .ico {
  color: rgba(var(--links-color));
}
.u-cabinet-aside .nav-item .nav-link.active .ico path {
  fill: rgba(var(--links-color));
}
.u-cabinet-aside .nav-item .nav-link.active span {
  color: var(--text-color);
}
@media (min-width: 768px) {
  .u-cabinet-aside .nav-item .nav {
    margin-left: 0;
  }
}

.u-cabinet-title {
  font-size: 20px;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .u-cabinet-title {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .u-cabinet-title {
    font-size: 13px;
    line-height: 16px;
    color: #595959;
  }
}

.usr-pagination {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .usr-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 768px) {
  .usr-pagination-dropdown {
    margin-left: auto;
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .usr-pagination-dropdown .btn {
    display: block;
    width: 100%;
  }
}

.usr-cat-dropdown {
  margin-left: auto;
}
@media (max-width: 767px) {
  .usr-cat-dropdown {
    margin-left: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 5px);
            flex: 0 1 calc(50% - 5px);
  }
}
@media (max-width: 767px) {
  .usr-cat-dropdown .btn {
    width: 100% !important;
  }
}
.usr-cat-dropdown .dropdown-menu {
  top: 0 !important;
  -webkit-transform: translate3d(0, 34px, 0) !important;
          transform: translate3d(0, 34px, 0) !important;
}

.usr-navs,
.usr-navs-pl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .usr-navs,
  .usr-navs-pl {
    padding-bottom: 20px;
    min-width: 100%;
  }
}
@media (max-width: 767px) {
  .usr-navs + input + .usr-content-top-search, .usr-navs + .usr-content-top-search,
  .usr-navs-pl + input + .usr-content-top-search,
  .usr-navs-pl + .usr-content-top-search {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
.usr-navs > li,
.usr-navs .nav-link,
.usr-navs .nav-item,
.usr-navs .nav-link-pl,
.usr-navs .nav-item-pl,
.usr-navs-pl > li,
.usr-navs-pl .nav-link,
.usr-navs-pl .nav-item,
.usr-navs-pl .nav-link-pl,
.usr-navs-pl .nav-item-pl {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  border-bottom: 1px solid transparent;
  padding-right: 0 !important;
}
@media (min-width: 768px) {
  .usr-navs .nav-item + .nav-item, .usr-navs .nav-item + .nav-item-pl,
  .usr-navs .nav-item-pl + .nav-item,
  .usr-navs .nav-item-pl + .nav-item-pl,
  .usr-navs-pl .nav-item + .nav-item,
  .usr-navs-pl .nav-item + .nav-item-pl,
  .usr-navs-pl .nav-item-pl + .nav-item,
  .usr-navs-pl .nav-item-pl + .nav-item-pl {
    margin-left: 28px;
  }
}
@media (max-width: 767px) {
  .usr-navs .nav-item + .nav-item, .usr-navs .nav-item + .nav-item-pl,
  .usr-navs .nav-item-pl + .nav-item,
  .usr-navs .nav-item-pl + .nav-item-pl,
  .usr-navs-pl .nav-item + .nav-item,
  .usr-navs-pl .nav-item + .nav-item-pl,
  .usr-navs-pl .nav-item-pl + .nav-item,
  .usr-navs-pl .nav-item-pl + .nav-item-pl {
    margin-left: 20px;
  }
}
.usr-navs .nav-item.active .nav-link, .usr-navs .nav-item.active .nav-link-pl,
.usr-navs .nav-item .nav-link.active,
.usr-navs .nav-item .nav-link-pl.active,
.usr-navs .nav-item-pl.active .nav-link,
.usr-navs .nav-item-pl.active .nav-link-pl,
.usr-navs .nav-item-pl .nav-link.active,
.usr-navs .nav-item-pl .nav-link-pl.active,
.usr-navs-pl .nav-item.active .nav-link,
.usr-navs-pl .nav-item.active .nav-link-pl,
.usr-navs-pl .nav-item .nav-link.active,
.usr-navs-pl .nav-item .nav-link-pl.active,
.usr-navs-pl .nav-item-pl.active .nav-link,
.usr-navs-pl .nav-item-pl.active .nav-link-pl,
.usr-navs-pl .nav-item-pl .nav-link.active,
.usr-navs-pl .nav-item-pl .nav-link-pl.active {
  color: var(--text-color);
  border-bottom-color: var(--secondary-base-color);
}
.usr-navs .nav-item:only-child,
.usr-navs .nav-item-pl:only-child,
.usr-navs-pl .nav-item:only-child,
.usr-navs-pl .nav-item-pl:only-child {
  display: none;
}
.usr-navs .nav-link,
.usr-navs .nav-link-pl,
.usr-navs-pl .nav-link,
.usr-navs-pl .nav-link-pl {
  padding: 7px 0 9px 0;
}

.usr-navs-border {
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 20px;
}
.usr-navs-border .usr-navs {
  margin-bottom: -1px;
}
@media (max-width: 767px) {
  .usr-navs-border .usr-navs {
    padding-bottom: 0 !important;
  }
}

.usr-navs-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media (max-width: 767px) {
  .usr-navs-r {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .l-content-minimal .usr-content {
    padding-top: 15px;
  }
}

.usr-content {
  height: 100%;
}

.usr-content-top {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .usr-content-top {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
}
@media (max-width: 767px) {
  .usr-content-top .usr-navs {
    padding-bottom: 0 !important;
  }
}
@media (min-width: 768px) {
  .usr-content-top .c-mobile-scrolling {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
@media (max-width: 767px) {
  .usr-content-top .usr-content-top-l:only-child {
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  .usr-content-top-filters {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
}

.usr-top-filter-item {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}
@media (min-width: 992px) {
  .usr-top-filter-item {
    min-width: calc(25% - 8px);
    max-width: calc(33.3333% - 5px);
    width: auto !important;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .usr-top-filter-item {
    width: calc(50% - 5px) !important;
  }
  .usr-top-filter-item:last-of-type:nth-of-type(3) {
    width: 100%;
  }
  .usr-top-filter-item:last-of-type:nth-of-type(4) {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .usr-top-filter-item {
    width: 100%;
  }
}
.usr-top-filter-item .form-control {
  min-height: 42px;
}

.usr-top-filter-elem {
  width: 100%;
  padding: 12px 30px 12px 15px;
}
.usr-top-filter-elem span {
  font-size: 14px;
  font-weight: 400;
}

.j-reviews-tabs {
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial;
  width: 100%;
}
.j-reviews-tabs + .usr-navs-r {
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media (max-width: 991px) {
  .j-reviews-tabs + .usr-navs-r {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.j-reviews-tabs + .usr-navs-r .usr-content-top-search {
  margin-left: auto;
}
.j-reviews-tabs + .usr-navs-r .usr-cat-dropdown {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .j-reviews-tabs + .usr-navs-r .usr-cat-dropdown {
    margin-left: 0;
  }
}
.j-reviews-tabs + .usr-navs-r .btn.dropdown-toggle {
  font-weight: 400;
  padding: 12px 30px 12px 15px;
}
@media (max-width: 767px) {
  .j-reviews-tabs + .usr-navs-r .form-control {
    padding-right: 40px;
  }
}

.usr-content-top-search {
  max-width: 300px;
  width: 100%;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (max-width: 767px) {
  .usr-content-top-search {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 5px);
            flex: 0 1 calc(50% - 5px);
  }
}
.usr-content-top-search .form-control {
  font-size: 14px;
  font-weight: 400;
  max-height: 42px;
  border-radius: 5px;
  padding: 12px 40px 12px 15px;
}
.usr-content-top-search .form-control::-webkit-input-placeholder {
  color: #999;
}
.usr-content-top-search .form-control::-moz-placeholder {
  color: #999;
}
.usr-content-top-search .form-control:-ms-input-placeholder {
  color: #999;
}
.usr-content-top-search .form-control::-ms-input-placeholder {
  color: #999;
}
.usr-content-top-search .form-control::placeholder {
  color: #999;
}
@media (max-width: 767px) {
  .usr-content-top-search .form-control {
    padding-right: 30px;
  }
}
.usr-content-top-search .btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  padding: 0;
  border: none;
  background-color: transparent;
}
.usr-content-top-search .btn .fa {
  color: #999999;
  font-size: 19px;
}

@media (min-width: 768px) {
  .usr-content-top-l {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .usr-content-top-l {
    width: 100%;
    margin-bottom: 20px;
  }
}

.usr-content-top-right {
  margin-left: auto;
  padding-left: 20px;
}
.usr-content-top-right a {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .usr-content-top-right .btn {
    display: block;
    width: 100%;
  }
}

.usr-ads-actions {
  margin-top: 20px;
  padding: 15px 20px;
  border-top: 1px solid #E5E5E5;
}
@media (max-width: 767px) {
  .usr-ads-actions {
    height: 50px;
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .usr-ads-actions > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 575px) {
  .usr-ads-actions {
    margin: 0 -15px;
  }
}
.usr-ads-actions .dropdown-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.usr-ads-actions .dropdown-toggle .c-drop-arrow {
  margin: 0 !important;
}
.usr-ads-actions .dropdown-toggle span {
  color: #999;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.usr-ads-actions .dropdown-toggle:hover span {
  color: rgba(var(--links-color));
}

.usr-ads-actions-count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .usr-ads-actions-count {
    font-weight: bold;
  }
}
.usr-ads-actions-count > * {
  vertical-align: middle;
  line-height: normal;
}
.usr-ads-actions-count .grey-text {
  color: #999 !important;
}

.usr-ads-actions-list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .usr-ads-actions-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: right;
    margin-left: auto;
    margin-right: -25px;
  }
}
.usr-ads-actions-list > li {
  display: inline-block;
  margin-right: 18px;
  vertical-align: baseline;
  text-align: center;
}
@media (max-width: 767px) {
  .usr-ads-actions-list > li + li {
    border-left: 1px solid #D9E1E4;
  }
}
@media (max-width: 767px) {
  .usr-ads-actions-list > li {
    margin-right: 0;
    vertical-align: baseline;
    width: 65px;
  }
}
@media (max-width: 767px) {
  .usr-ads-actions-list > li a {
    color: var(--text-color);
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .usr-ads-actions-list > li a span {
    display: none;
  }
}
@media (min-width: 768px) {
  .usr-ads-actions-list > li a .ico {
    display: none;
  }
}

@media (max-width: 767px) {
  .usr-modal-grey-bg-mob {
    background-color: #F4F4F4;
  }
}

.usr-content .rw-list .rw-item {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #E5E5E5 !important;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .usr-content .rw-list .rw-item {
    padding: 15px !important;
  }
}
.usr-content .rw-list .rw-name-wrap a {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  color: var(--text-color);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.usr-content .rw-list .rw-name-wrap a:hover {
  color: rgba(var(--links-color));
}
.usr-content .rw-list .rw-article-date {
  font-size: 14px;
  color: #999;
}
.usr-content .rw-list .rw-item-header.rw-text-green {
  color: #34A853 !important;
}
.usr-content .rw-list .rw-item-header {
  padding-right: 0 !important;
}
@media (max-width: 767px) {
  .usr-content .rw-list .rw-item-header {
    -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: 15px;
  }
}
.usr-content .rw-list .rw-label-moderate {
  background-color: transparent !important;
  border-radius: 5px;
  color: var(--danger-color);
  padding: 2px 10px;
  border: 1px solid var(--danger-color);
}
.usr-content .rw-list .rw-item-moderation {
  background-color: #fff !important;
}
@media (max-width: 767px) {
  .usr-content .rw-list .rw-label-moderate {
    margin: 0 !important;
  }
}
.usr-content .rw-list .rw-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: static !important;
}
.usr-content .rw-list .rw-edit.d-md-block {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media (max-width: 767px) {
  .usr-content .rw-list .rw-edit.d-md-block {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .usr-content .rw-list .rw-edit.d-md-none {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .usr-content .rw-list .rw-edit {
    margin-top: 15px !important;
  }
}
@media (max-width: 767px) {
  .usr-content .rw-list .rw-edit-item + .rw-edit-item {
    border: none !important;
  }
}
.usr-content .rw-list .rw-edit-item {
  display: block;
  width: 20px;
  font-size: 20px !important;
  margin-left: 0 !important;
}
@media (max-width: 767px) {
  .usr-content .rw-list .rw-edit-item {
    -webkit-box-flex: initial !important;
        -ms-flex: initial !important;
            flex: initial !important;
  }
}
.usr-content .rw-list .rw-edit-item:first-child {
  margin-left: 10px !important;
}
@media (max-width: 767px) {
  .usr-content .rw-list .rw-edit-item:first-child {
    margin-left: 0 !important;
  }
}
.usr-content .rw-list .rw-edit-item .ico.fa-trash-o:before,
.usr-content .rw-list .rw-edit-item .fa-trash-alt:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: no-repeat center/contain url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 20 21" fill="none"><path d="M11.6602 15.9688C11.4209 15.9688 11.25 15.7979 11.25 15.5586V8.17578C11.25 7.9707 11.4209 7.76562 11.6602 7.76562H12.4805C12.6855 7.76562 12.8906 7.9707 12.8906 8.17578V15.5586C12.8906 15.7979 12.6855 15.9688 12.4805 15.9688H11.6602ZM17.2656 4.48438C17.5391 4.48438 17.8125 4.75781 17.8125 5.03125V5.57812C17.8125 5.88574 17.5391 6.125 17.2656 6.125H16.7188V17.6094C16.7188 18.5322 15.9668 19.25 15.0781 19.25H5.23438C4.31152 19.25 3.59375 18.5322 3.59375 17.6094V6.125H3.04688C2.73926 6.125 2.5 5.88574 2.5 5.57812V5.03125C2.5 4.75781 2.73926 4.48438 3.04688 4.48438H5.84961L7.01172 2.57031C7.28516 2.0918 7.83203 1.75 8.41309 1.75H11.8652C12.4463 1.75 12.9932 2.0918 13.2666 2.57031L14.4287 4.48438H17.2656ZM8.34473 3.49316L7.76367 4.48438H12.5146L11.9336 3.49316C11.8994 3.45898 11.8311 3.39062 11.7627 3.39062H8.5498C8.51562 3.39062 8.51562 3.39062 8.51562 3.39062C8.44727 3.39062 8.37891 3.45898 8.34473 3.49316ZM15.0781 17.6094V6.125H5.23438V17.6094H15.0781ZM7.83203 15.9688C7.59277 15.9688 7.42188 15.7979 7.42188 15.5586V8.17578C7.42188 7.9707 7.59277 7.76562 7.83203 7.76562H8.65234C8.85742 7.76562 9.0625 7.9707 9.0625 8.17578V15.5586C9.0625 15.7979 8.85742 15.9688 8.65234 15.9688H7.83203Z" fill="%23999999"/></svg>');
}
.usr-content .rw-list .rw-edit-item .fa-edit:before,
.usr-content .rw-list .rw-edit-item .fa-pencil-alt:before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: no-repeat center/contain url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='21' viewBox='0 0 20 21' fill='none'><path d='M13.7402 4.59546L16.8164 7.67163C16.9531 7.80835 16.9531 8.01343 16.8164 8.15015L9.36523 15.6013L6.18652 15.9431C5.77637 16.0115 5.40039 15.6355 5.46875 15.2253L5.81055 12.0466L13.2617 4.59546C13.3984 4.45874 13.6035 4.45874 13.7402 4.59546ZM19.2773 3.80933C19.79 4.32202 19.79 5.17651 19.2773 5.68921L18.0811 6.8855C17.9443 7.02222 17.7393 7.02222 17.6025 6.8855L14.5264 3.80933C14.3896 3.67261 14.3896 3.46753 14.5264 3.33081L15.7227 2.13452C16.2354 1.62183 17.0898 1.62183 17.6025 2.13452L19.2773 3.80933ZM13.125 13.5847C13.125 13.448 13.1592 13.3455 13.2275 13.2771L14.5947 11.9099C14.8682 11.6707 15.3125 11.8416 15.3125 12.2175V17.5837C15.3125 18.5066 14.5605 19.2244 13.6719 19.2244H1.64062C0.717773 19.2244 0 18.5066 0 17.5837V5.55249C0 4.66382 0.717773 3.91187 1.64062 3.91187H11.3818C11.7578 3.91187 11.9287 4.3562 11.6895 4.62964L10.3223 5.99683C10.2539 6.06519 10.1514 6.09937 10.0146 6.09937H2.1875V17.0369H13.125V13.5847Z' fill='%23999999'/></svg>");
}

@media (max-width: 767px) {
  .j-reviews-tabs {
    margin-bottom: 5px !important;
  }
}

.usr-bill-top {
  display: table;
  width: 100%;
  padding: 10px 0 30px 0;
}
@media (max-width: 767px) {
  .usr-bill-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 10px 36px 10px;
    width: auto;
  }
}
@media (max-width: 767px) {
  .usr-bill-top span {
    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-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    font-size: 22px !important;
  }
}
@media (max-width: 767px) {
  .usr-bill-top .form-inline {
    width: 100%;
  }
}
.usr-bill-top .btn {
  margin-left: 28px;
}
@media (max-width: 767px) {
  .usr-bill-top .btn {
    margin-left: 10px;
  }
}

.usr-bill-top-heading {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .usr-bill-top-heading {
    display: block;
  }
}

.usr-bill-top-r {
  display: table-cell;
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .usr-bill-top-r {
    margin-top: 10px;
    display: block;
    text-align: left;
    white-space: normal;
  }
  .usr-bill-top-r span {
    display: block;
    margin-bottom: 10px;
  }
}

.usr-bill-head {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .usr-bill-head > .btn {
    margin-left: auto;
    min-width: 108px;
  }
}

.usr-bill-list {
  margin-bottom: 0;
}
.usr-bill-list .table thead th {
  padding: 20px;
  border-bottom: none;
  color: var(--text-color);
}
.usr-bill-list .table td {
  padding: 15px 20px;
  border-color: #E5E5E5;
}
.usr-bill-list .dropdown-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.usr-bill-list .dropdown-toggle,
.usr-bill-list .dropdown-toggle span {
  color: #999;
}
.usr-bill-list small {
  display: block;
  margin-top: 10px;
}
@media (max-width: 575px) {
  .usr-bill-list {
    margin-left: -15px;
    margin-right: -15px;
    padding: 0 !important;
    border-radius: 0;
  }
}
.usr-bill-list .usr-pagination {
  border-top: 1px solid #E5E5E5 !important;
  padding-top: 40px;
  margin: 0;
}
@media (max-width: 767px) {
  .usr-bill-list .usr-pagination {
    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;
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .usr-bill-list .usr-pagination {
    border-top: none;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .usr-bill-list .table-responsive {
    padding: 0;
    border: none;
  }
  .usr-bill-list .table-responsive > .c-title {
    padding: 0 20px;
  }
  .usr-bill-list thead {
    display: none;
  }
  .usr-bill-list .table tr {
    position: relative;
    padding: 45px 15px 15px 15px;
    display: block;
    border-top: 1px solid #EBEBEB;
  }
  .usr-bill-list .table tr td {
    border: none;
    padding: 0;
  }
  .usr-bill-list .usr-bill-id {
    font-size: 12px;
    line-height: 18px;
    color: #595959;
    padding-top: 12px !important;
  }
  .usr-bill-list .usr-bill-date {
    position: absolute;
    top: 15px;
    left: 20px;
    padding: 0;
    font-weight: bold;
  }
  .usr-bill-list .usr-bill-summ {
    position: absolute;
    right: 20px;
    top: 15px;
    padding: 0;
    font-weight: bold;
  }
}

.usr-bill-list-date {
  font-weight: bold;
  font-size: 13px;
}

.usr-bill-list-id {
  text-align: center;
  width: 140px;
}
@media (max-width: 767px) {
  .usr-bill-list-id {
    display: none;
  }
}

.usr-bill-list-summ {
  text-align: center;
  width: 140px;
}

@media (min-width: 768px) {
  .usr-bill-pay {
    margin-top: 20px;
  }
}

.usr-bill-pay-row {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .usr-bill-pay-row {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .usr-bill-pay-row .l-svc-item {
    margin-left: 0;
    margin-right: 0;
    border-radius: 4px;
  }
}

@media (max-width: 767px) {
  .usr-bill-pay-row-mob-white-bg {
    background-color: white;
    padding: 15px 20px 30px 20px;
  }
}
@media (max-width: 575px) {
  .usr-bill-pay-row-mob-white-bg {
    margin-left: -20px;
    margin-right: -20px;
  }
}

@media (min-width: 768px) {
  .usr-bill-pay-row-bg {
    margin-left: -40px;
    margin-right: -40px;
    background: #EAF9F9;
    padding: 15px 40px 20px 40px;
  }
}
.usr-bill-pay-row-bg .c-promocode__in {
  margin-top: 0 !important;
}

@media (min-width: 768px) {
  .usr-bill-input-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.usr-bill-input-box .mt-2 {
  text-align: left !important;
}
@media (min-width: 768px) {
  .usr-bill-input-box .mt-2 {
    margin-top: 0 !important;
  }
}
.usr-bill-input-box .form-control {
  text-align: center;
}
@media (min-width: 768px) {
  .usr-bill-input-box .form-control {
    width: 113px;
  }
}
@media (max-width: 767px) {
  .usr-bill-input-box .form-control {
    width: 155px;
  }
}

@media (min-width: 768px) {
  .usr-bill-input {
    margin-right: 37px;
  }
}
@media (max-width: 767px) {
  .usr-bill-input {
    margin-bottom: 25px;
  }
}

.usr-bill-pay-input-in {
  position: relative;
  display: inline-block;
}

@media (max-width: 767px) {
  .usr-settings.c-mobile-fill-offset {
    overflow-x: hidden;
  }
}
@media (min-width: 992px) {
  .usr-settings [class^=col-] {
    padding-right: 10px;
  }
  .usr-settings [class^=col-] + [class^=col-] {
    padding-left: 10px;
  }
}

.usr-settings-box {
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .usr-settings-box .control-label:empty {
    display: none;
  }
}
.usr-settings-box .c-form-creation {
  padding-bottom: 0 !important;
}
@media (min-width: 992px) {
  .usr-settings-box .c-form-creation .col-md-9:not(.col-lg-4) {
    padding-right: 65px;
  }
}
@media (min-width: 992px) {
  .usr-settings-box .c-form-creation .c-form-sub-title {
    padding-right: 55px;
  }
}
@media (min-width: 768px) {
  .usr-settings-box.vw-white-box .c-payment-alert {
    border-radius: 4px 4px 0 0;
    margin: -20px -20px 15px -20px;
  }
}
@media (max-width: 575px) {
  .usr-settings-box.vw-white-box .c-payment-alert {
    border-radius: 0;
    margin: 0 -20px 25px -20px;
  }
}

.usr-settings-box-phone {
  z-index: 11;
}

@media (min-width: 576px) {
  .usr-settings-box-collapse.vw-white-box {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .usr-settings-box-collapse.vw-white-box {
    padding: 15px !important;
  }
}

.usr-settings-box-title > a {
  text-decoration: none !important;
  display: block;
  padding: 10px 15px;
}

.usr-settings-box-title-icon {
  position: relative;
  top: 9px;
  float: right;
  color: #595959;
}

.dr-collapse-act + .usr-settings-box-content {
  padding-top: 20px;
}

.usr-settings-box-content hr {
  margin-top: 20px !important;
  margin-bottom: 15px !important;
}
@media (max-width: 767px) {
  .usr-settings-box-content hr {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.usr-settings-box-content hr:last-child {
  display: none;
}

@media (max-width: 767px) {
  .usr-has-fixed-block,
  .usr-settings.c-mobile-fill-offset {
    overflow-x: visible;
  }
}

.usr-settings-lang {
  background: #F8F8F8;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: sticky;
  top: 0;
  z-index: 100;
}
@media (min-width: 992px) {
  .usr-settings-lang {
    padding: 0 10px 0 20px;
    border-radius: 5px;
  }
}
@media (max-width: 991px) {
  .usr-settings-lang {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
}
.usr-settings-lang .dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media (max-width: 991px) {
  .usr-settings-lang .dropdown {
    width: 100%;
    border-radius: 0;
  }
}
.usr-settings-lang .dropdown-menu {
  width: calc(100% + 10px);
}
@media (max-width: 991px) {
  .usr-settings-lang .dropdown-menu {
    width: 100%;
    border-radius: 0 0 4px 4px !important;
  }
}
@media (max-width: 575px) {
  .usr-settings-lang .dropdown-item {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.usr-settings-lang .dropdown-toggle {
  min-width: 200px;
  background: #F0F0F0;
  border-radius: 0 4px 4px 0;
  padding: 10px 10px 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .usr-settings-lang .dropdown-toggle {
    margin-right: -10px;
  }
}
@media (max-width: 991px) {
  .usr-settings-lang .dropdown-toggle {
    width: 100%;
    border-radius: 0;
    padding: 10px 20px;
  }
}

.usr-settings-lang-item {
  padding: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid transparent;
  height: 100%;
}
@media (max-width: 767px) {
  .usr-settings-lang-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.usr-settings-lang-item.active {
  background: #F0F0F0;
  border-bottom-color: var(--primary-base-color);
}

.usr-settings-lang-l {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  background: #F8F8F8;
}
@media (min-width: 992px) {
  .usr-settings-lang-l {
    padding: 10px 20px 10px 0;
  }
}
@media (max-width: 991px) {
  .usr-settings-lang-l {
    padding: 10px 20px 15px 20px;
  }
}

.usr-settings-lang-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-flow: nowrap;
      flex-flow: nowrap;
}

@media (min-width: 992px) {
  .usr-settings-box-company .control-label {
    text-align: right;
  }
}

.usr-settings-photo-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.usr-settings-photo-box .f-upload-photo {
  width: 148px;
  height: 113px;
}
@media (min-width: 1199px) {
  .usr-settings-photo-box .f-upload-photo {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .usr-settings-photo-box.is-avatar-loaded .usr-settings-photo-box-r {
    margin-left: 20px;
  }
}

.usr-settings-photo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background: white;
}

.usr-settings-photo-box-l {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #F4F4F4;
  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;
}
@media (min-width: 1200px) {
  .usr-settings-photo-box-l {
    margin-right: 20px;
  }
}

.usr-settings-photo-upload {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.usr-push-table {
  margin-bottom: 0 !important;
}
.usr-push-table th, .usr-push-table td {
  border-color: #EBEBEB !important;
  text-align: center;
}
.usr-push-table th:last-child, .usr-push-table td:last-child {
  width: 75px;
}
.usr-push-table th {
  border-top: 0 !important;
}
.usr-push-table tr:last-child td {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
.usr-push-table .ico-check {
  text-align: left;
  margin-right: 0 !important;
}

@media (max-width: 767px) {
  .usr-push-table-mob {
    margin-top: -20px;
  }
}
.usr-push-table-mob .nav-item {
  font-weight: bold;
}
.usr-push-table-mob .fl-dyn-dropdown-header {
  margin-top: 10px;
  -ms-flex-flow: nowrap;
      flex-flow: nowrap;
}

.usr-push-table-mob-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  padding: 10px 0;
  border-bottom: 1px solid #E5E5E5;
}
.usr-push-table-mob-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.usr-push-table-mob-item-l {
  padding-right: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.usr-dashboard-cats-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0;
}

.usr-dashboard-cats-scroll {
  position: relative;
  padding-right: 20px;
  margin-right: -20px;
}
@media (min-width: 768px) {
  .usr-dashboard-cats-scroll {
    height: 330px;
    overflow: hidden;
  }
}
@media (max-width: 767px) {
  .usr-dashboard-cats-scroll .ps__rail-y {
    display: none;
  }
}

.usr-dashboard-cats {
  position: relative;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .usr-dashboard-cats:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35px;
    z-index: 10;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#FFFFFF));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  }
}

.usr-dashboard-cats-item + .usr-dashboard-cats-item {
  border-top: 1px solid #EBEBEB;
}

.usr-dashboard-sett-ico {
  font-size: 16px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.usr-dashboard-person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.usr-dashboard-person .rounded-circle {
  width: 60px;
  height: 60px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.usr-dashboard-person-r {
  padding-left: 20px;
  padding-right: 20px;
}

.usr-dashboard-edit {
  background-color: #EAF9F9;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 15px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .usr-dashboard-edit {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -20px;
  }
}

.usr-dashboard-edit-l {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-right: 10px;
}

.usr-dashboard-edit-act {
  font-size: 16px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

@media (min-width: 992px) {
  .rp-profile-sticky-container {
    position: absolute;
    top: 50px;
    bottom: 0;
    width: 350px;
    z-index: 1;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .rp-profile-sticky-container {
    left: calc((100vw - 970px) / 2);
  }
}
@media (min-width: 1200px) and (max-width: 1279px) {
  .rp-profile-sticky-container {
    left: calc((100vw - 1170px) / 2);
  }
}
@media (min-width: 1280px) {
  .rp-profile-sticky-container {
    left: calc((100vw - 1260px) / 2);
  }
}

@media (min-width: 992px) {
  .rp-profile-aside {
    position: sticky;
    top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .rp-profile-aside {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 991px) {
  .rp-profile-aside {
    padding: 0 !important;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-bottom: 30px;
  }
}
.rp-profile-aside .vw-white-box {
  padding: 0 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 0 !important;
}
@media (min-width: 768px) {
  .rp-profile-aside .rw-aside-widget {
    margin: 0 0 20px 0;
    min-width: 100%;
  }
}
.rp-profile-aside .vw-vendor-actions-buttons {
  margin-top: 0;
}
.rp-profile-aside .tama-share-btns {
  padding-bottom: 0;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .rp-profile-aside .vw-vendor-b-info {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
}
@media (min-width: 768px) {
  .rp-profile-aside .vw-actions-item-dropdown.vw-actions-item-dropdown-complain {
    top: -9px;
    right: auto;
    left: 26px;
    bottom: auto;
    margin-top: 0;
  }
}

.rp-profile-user-logo-box img {
  border-radius: 50%;
}
@media (min-width: 768px) {
  .rp-profile-user-logo-box img {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 767px) {
  .rp-profile-user-logo-box img {
    width: 100px;
    height: 100px;
  }
}

.rp-profile-aside-contacts {
  max-width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.rp-profile-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991px) {
  .rp-profile-info {
    -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;
  }
}
@media (min-width: 768px) {
  .rp-profile-info .c-title {
    font-size: 32px;
    line-height: 39px;
  }
}
@media (max-width: 767px) {
  .rp-profile-info .c-title {
    font-size: 22px;
    line-height: 27px;
  }
}
.rp-profile-info .alert {
  margin-top: 10px;
}

.rp-profile-avatar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.rp-profile-avatar img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
}

.rp-profile-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 991px) {
  .rp-profile-info-item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .rp-profile-info-item {
    gap: 4px;
  }
}
.rp-profile-info-item:empty {
  display: none;
}
@media (max-width: 767px) {
  .rp-profile-info-item .d-flex {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
    text-align: left;
  }
  .rp-profile-info-item .d-flex .ico {
    margin-top: 6px;
  }
}
@media (max-width: 767px) {
  .rp-profile-info-item .rp-profile-agent {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .rp-profile-info-item-agent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.rp-profile-info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .rp-profile-info-box {
    gap: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .rp-profile-info-box {
    gap: 8px;
    margin-bottom: 26px;
  }
}

.rp-profile-contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}

.rp-profile-contact-item-l {
  width: 44px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 20px;
  color: #595959;
}

.rp-profile-time-site {
  color: #595959;
}
@media (max-width: 767px) {
  .rp-profile-time-site {
    text-align: right;
  }
}

.rp-profile-reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.rp-profile-reviews .c-shadow-overflow:after {
  display: none;
}
@media (max-width: 767px) {
  .rp-profile-reviews {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media (min-width: 768px) {
  .rp-profile-page-body {
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .rp-profile-page-body {
    padding-top: 30px;
  }
}

body.is-rp-profile-page .l-content {
  position: relative;
}
body.is-rp-profile-page .b-breadcrumbs {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  body.is-rp-profile-page .rp-header {
    border-bottom: 1px solid #EBEBEB;
  }
}
@media (max-width: 767px) {
  body.is-rp-profile-page .rp-header-top-box {
    border-bottom: 1px solid #E8EDEF !important;
  }
}

.rp-profile-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .rp-profile-row {
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .rp-profile-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 767px) {
  .rp-profile-user-row .l-page-head {
    text-align: center;
  }
  .rp-profile-user-row .rp-profile-info-box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .rp-profile-user-row .vw-vendor-b-info {
    margin-top: 20px !important;
  }
}
@media (max-width: 767px) {
  .rp-profile-user-row .rp-profile-aside {
    margin-bottom: 35px;
  }
}

@media (min-width: 768px) {
  .rp-profile-l {
    width: 350px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
@media (max-width: 991px) {
  .rp-profile-l {
    margin: 0 auto;
  }
}

.rp-profile-r {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
@media (min-width: 768px) {
  .rp-profile-r .usr-navs-scroll {
    margin-top: 15px;
    margin-bottom: -1px;
  }
}
.rp-profile-r .vw-dynprops {
  padding: 10px 0 0 0;
  width: 100%;
}
.rp-profile-r .cp-desc {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .rp-profile-r .cg-view-gallery {
    margin-bottom: 15px !important;
  }
}
@media (max-width: 767px) {
  .rp-profile-r .cg-view-gallery {
    margin-bottom: 20px !important;
  }
}

.rp-profile-items {
  min-height: 320px;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .rp-profile-items {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .rp-profile-items {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .rp-profile-items .l-sub-head-box {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .rp-profile-items .l-sub-head-box-l {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .rp-profile-items .l-sub-head-box-r {
    margin-top: -5px;
    margin-bottom: -5px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .rp-profile-items .it-view-gallery .rp-it-grid-item {
    -ms-flex-preferred-size: calc(50% - 10px);
        flex-basis: calc(50% - 10px);
  }
}
@media (min-width: 1200px) {
  .rp-profile-items .it-view-gallery .rp-it-grid-item {
    -ms-flex-preferred-size: calc(33.33% - 10px);
        flex-basis: calc(33.33% - 10px);
  }
}

.rp-profile-t {
  background-color: white;
}
@media (max-width: 767px) {
  .rp-profile-t .l-page-head .c-title.h1 {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .rp-profile-t .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .rp-profile-t .rp-profile-sticky-container {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 767px) {
  .rp-profile-t .usr-navs-pl {
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  .bg-white + .rp-profile-t {
    padding-top: 20px;
  }
}

.rp-profile-logo-box {
  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;
  padding: 20px 0;
}
.rp-profile-logo-box img {
  -o-object-fit: contain;
     object-fit: contain;
}

.u-cabinet-content {
  padding-top: 5px;
}
@media (max-width: 767px) {
  .u-cabinet-content {
    padding-top: 20px;
  }
}

@media (min-width: 768px) {
  .u-cabinet-aside {
    width: 260px;
  }
}

.usr-navs .nav-link {
  border: none;
  border-radius: 5px;
  padding: 10px 15px !important;
  color: var(--primary-base-color) !important;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.usr-navs .nav-item:not(.active) .nav-link:hover {
  color: rgba(var(--links-color)) !important;
}
@media (min-width: 768px) {
  .usr-navs .nav-item + .nav-item {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .usr-navs .nav-item + .nav-item {
    margin-left: 10px;
  }
}
.usr-navs .nav-link.active,
.usr-navs .nav-item.active .nav-link {
  color: var(--primary-base-color) !important;
  background-color: rgba(var(--links-color), 0.1);
  border-radius: 5px;
}
.usr-navs .nav-link.active span:not(.usr-count),
.usr-navs .nav-item.active .nav-link span:not(.usr-count) {
  color: var(--primary-base-color) !important;
}

@media (max-width: 575px) {
  .tab-pane .usr-content-top {
    padding: 0;
  }
}

@media (max-width: 575px) {
  .usr-bill-list .c-title {
    padding-top: 15px !important;
    margin-bottom: 20px !important;
  }
}
@media (max-width: 575px) {
  .usr-bill-list .usr-pagination {
    padding-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .usr-settings-box.vw-white-box .c-form-creation hr {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .usr-settings-box.vw-white-box .c-payment-alert {
    margin: -20px -20px 25px -20px;
  }
}

@media (max-width: 575px) {
  .usr-settings-lang-l,
  .usr-settings-lang {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media (max-width: 575px) {
  .vw-white-box .usr-settings-lang-l,
  .vw-white-box .usr-settings-lang {
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media (max-width: 575px) {
  .vw-white-box .usr-settings-lang-l {
    margin-top: -20px;
  }
}

/*user*/
.dropdown-item.active.c-shadow-overflow:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, #f4f4f4), color-stop(133.33%, hsla(0, 0%, 100%, 0)));
  background: linear-gradient(270deg, #f4f4f4 50%, hsla(0, 0%, 100%, 0) 133.33%);
}

.it-img-box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.it-img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 100%;
  max-height: 180px;
  width: 100%;
}
@media (max-width: 767px) {
  .it-img {
    max-height: 120px;
  }
}

.rp-vw-page-head {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .rp-vw-page-head {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.rp-vw-head-info {
  margin-top: 0;
}

@media (min-width: 992px) {
  .bk-filter .rp-h-in {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .bk-filter .fl-geo-blocks-wrap {
    margin-right: 0 !important;
  }
}
@media (min-width: 992px) {
  .bk-filter .rp-h-line-l-box {
    width: 100% !important;
    margin-right: 0;
  }
}

@media (min-width: 992px) {
  .rp-fl-index-box {
    min-height: 350px;
  }
}

.fc-item-pic path[stroke] {
  stroke: var(--primary-base-color);
}
.fc-item-pic path[fill] {
  fill: var(--primary-base-color);
  stroke: none;
}

.in-index-box-company {
  overflow-x: hidden;
}
.in-index-box-company .cp-best-company-slider {
  overflow: visible;
  padding: 0;
  margin: 0;
}
.in-index-box-company .owl-item {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.in-index-box-company .owl-item:not(.active) {
  opacity: 0;
  pointer-events: none;
}
.in-index-box-company .cp-best-company-item {
  border-radius: 5px;
}
.in-index-box-company .cp-best-company-item:hover {
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
  border-color: transparent;
}
.in-index-box-company .cp-best-company-item .c-title {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  height: auto;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 991px) {
  .in-index-box-company .cp-best-company-item .c-title {
    font-size: 14px;
    padding: 0 15px;
  }
}
.in-index-box-company .cp-best-company-item-pic {
  height: 135px;
  padding: 0;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .in-index-box-company .cp-best-company-item-pic {
    height: 120px;
  }
}
.in-index-box-company .cp-best-company-item-pic img {
  position: static;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  width: 100% !important;
  height: 135px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px 4px 0 0;
}
@media (max-width: 767px) {
  .in-index-box-company .cp-best-company-item-pic img {
    height: 120px;
    -o-object-fit: inherit;
       object-fit: inherit;
  }
}
.in-index-box-company .cp-best-company-item-body {
  padding: 15px 20px 20px;
}
@media (max-width: 991px) {
  .in-index-box-company .cp-best-company-item-body {
    padding: 15px;
  }
}
.in-index-box-company .cp-sm-item {
  border-radius: 5px;
  border-color: #E5E5E5;
}
.in-index-box-company .cp-sm-l {
  width: 60px;
}
@media (max-width: 991px) {
  .in-index-box-company .cp-sm-l {
    width: 40px;
    height: 47px;
  }
}
@media (max-width: 991px) {
  .in-index-box-company .cp-best-company-ad {
    height: 47px;
  }
}
.in-index-box-company .cp-sm-pic {
  width: 100% !important;
  border-radius: 4px 0 0 4px;
}
.in-index-box-company .cp-sm-r-in {
  padding: 8px 15px;
}
@media (max-width: 991px) {
  .in-index-box-company .cp-sm-r-in {
    padding: 5px;
  }
}
.in-index-box-company .cp-grid-title a {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 991px) {
  .in-index-box-company .cp-grid-title a {
    font-size: 12px;
  }
}
.in-index-box-company .cp-grid-price-box {
  font-weight: 700;
  line-height: normal;
  margin-top: 5px;
}
@media (max-width: 991px) {
  .in-index-box-company .cp-grid-price-box {
    font-size: 12px;
  }
}
.in-index-box-company .cp-best-company-item-footer {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .in-index-box-company .cp-best-company-item-footer {
    margin-top: 15px;
  }
}
.in-index-box-company .rw-ico-comment {
  color: #999999;
  font-size: 20px;
  margin: 2px 0 0;
}
.in-index-box-company .rw-in-list {
  font-size: 14px;
  line-height: normal;
  color: var(--text-color);
}
.in-index-box-company .rw-in-list .rw-num-on-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: inherit;
}
@media (max-width: 767px) {
  .in-index-box-company .in-box-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .in-index-box-company .in-box-title-box {
    grid-column: 1/-1;
  }
}
.in-index-box-company .in-box-title {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767px) {
  .in-index-box-company .in-box-title {
    display: contents;
  }
}
.in-index-box-company .in-box-title span {
  white-space: normal;
}
@media (max-width: 767px) {
  .in-index-box-company .c-nav-items {
    padding: 0;
  }
}
