@charset "UTF-8";
.index {
  padding: 16px 0;
}
.index__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  background: -webkit-linear-gradient(315deg, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  background: linear-gradient(135deg, #ffffff 0%, #f3f3f3 50%, #ededed 51%, #ffffff 100%);
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
}
.index img {
  display: block;
  max-width: 180px;
  margin: 30px auto;
}
.index h1 {
  margin: 30px 0;
  font-size: 40px;
  color: #333;
  text-align: center;
  position: relative;
}
.index h1::before, .index h1::after {
  content: "";
  display: block;
  width: 100px;
  margin: 0 auto;
  height: 1px;
  background: #dedede;
  margin-bottom: 30px;
}
.index h1::after {
  margin-top: 30px;
  margin-bottom: 0;
}
.index h1 span {
  display: block;
  padding-top: 8px;
  font-size: 26px;
  color: #333;
}
.index ol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0 16px 0 16px;
  list-style: none;
  counter-reset: fs-counter;
}
@media only screen and (min-width: 576px) {
  .index ol {
    padding: 0;
  }
}
.index ol li {
  position: relative;
  counter-increment: fs-counter;
  width: 100%;
  max-width: 400px;
}
.index ol li:before {
  content: counter(fs-counter);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #333;
  font-weight: 500;
  position: absolute;
  font-size: 26px;
  left: -20px;
  top: 6px;
  line-height: 1;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #dedede;
  text-align: center;
  -webkit-box-shadow: 1px 1px 0 #999;
          box-shadow: 1px 1px 0 #999;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
.index ol li:hover:before {
  border: 1px solid #333;
  color: #0074ff;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.index ol li:hover a {
  border: 1px solid #333;
  text-decoration: none;
  -webkit-box-shadow: 1px 1px 0 #999;
          box-shadow: 1px 1px 0 #999;
}
.index ol li a {
  display: block;
  padding: 16px;
  text-align: center;
  background: #f5f5f5;
  border: 1px solid #dedede;
  border-radius: 8px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  text-decoration: none;
  color: #333;
}

/*
===========
  COLORS
===========
*/
/*
================
  CUSTOM INPUTS
================
*/
/*
===========
  REM
===========
*/
/*
===========
  GLOBAL
===========
*/
/*
===========
  BREAKPOINTS
===========
*/
/*
===========
  TYPOGRAPHY
===========
*/
/* ==========================================================================
		ALL CORE
	========================================================================== */
/*
===========
  REM
===========
*/
/*
===========
  Breakpoint
===========
*/
/*
===========
  BORDER-RADIUS
===========
*/
/*
===========
  Fluid fonts
===========
*/
@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .navbar {
    display: none;
  }
  .tippy-badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

body {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #ffffff;
}

[tabindex="-1"]:focus {
  outline: none !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: 8px;
}

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

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

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

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

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

dt {
  font-weight: 700;
}

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

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: 600er;
}

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: #898989;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: rgb(98.75, 98.75, 98.75);
  text-decoration: underline;
}

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

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

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

figure {
  margin: 0 0 1rem;
}

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

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

a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

table {
  border-collapse: collapse;
}

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

th {
  text-align: inherit;
}

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

button {
  border-radius: 0;
}

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

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

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

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

progress {
  vertical-align: baseline;
}

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

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

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

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

output {
  display: inline-block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 8px;
  line-height: 1;
}

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

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 1020px) {
  .container {
    max-width: 1020px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.offset-1 {
  margin-left: 8.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 {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.3333333333%;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.6666666667%;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333333333%;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.6666666667%;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.3333333333%;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.6666666667%;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.3333333333%;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.6666666667%;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.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 {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.3333333333%;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.6666666667%;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333333333%;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.6666666667%;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.3333333333%;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.6666666667%;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.3333333333%;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.6666666667%;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.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: 1020px) {
  .col-lg {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.3333333333%;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.6666666667%;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333333333%;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.6666666667%;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.3333333333%;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.6666666667%;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.3333333333%;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.6666666667%;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 16px;
  background-color: transparent;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #e9ecef;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #e9ecef;
}
.table tbody + tbody {
  border-top: 2px solid #e9ecef;
}
.table .table {
  background-color: #ffffff;
}

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

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

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

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

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: rgb(221.96, 221.96, 221.96);
}

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

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

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

.table-success,
.table-success > th,
.table-success > td {
  background-color: rgb(217.76, 239.88, 202.36);
}

.table-hover .table-success:hover {
  background-color: rgb(203.7455371901, 234.1899173554, 182.5500826446);
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: rgb(203.7455371901, 234.1899173554, 182.5500826446);
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: rgb(190.04, 228.96, 235.12);
}

.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-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(244.36, 209.92, 191.44);
}

.table-hover .table-danger:hover {
  background-color: rgb(240.7033962264, 194.4275471698, 169.5966037736);
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: rgb(240.7033962264, 194.4275471698, 169.5966037736);
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: rgb(253.04, 253.32, 253.6);
}

.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-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(18, 20, 25, 0.075);
}

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

.table .thead-dark th {
  color: #ffffff;
  background-color: #212529;
  border-color: rgb(51.1945945946, 57.4, 63.6054054054);
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #e9ecef;
}

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

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

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

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

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

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

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

.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 .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: rgb(71.24, 71.24, 71.24);
  background-color: rgb(231.4, 231.4, 231.4);
  border-color: rgb(221.96, 221.96, 221.96);
}
.alert-primary hr {
  border-top-color: rgb(209.21, 209.21, 209.21);
}
.alert-primary .alert-link {
  color: rgb(45.74, 45.74, 45.74);
}

.alert-secondary {
  color: rgb(21.32, 21.32, 37.44);
  background-color: rgb(212.2, 212.2, 218.4);
  border-color: rgb(195.08, 195.08, 203.76);
}
.alert-secondary hr {
  border-top-color: rgb(181.3344080605, 181.3344080605, 192.0055919395);
}
.alert-secondary .alert-link {
  color: rgb(2.8155752212, 2.8155752212, 4.9444247788);
}

.alert-success {
  color: rgb(63.44, 104.52, 34.84);
  background-color: rgb(228.4, 244.2, 217.4);
  border-color: rgb(217.76, 239.88, 202.36);
}
.alert-success hr {
  border-top-color: rgb(203.7455371901, 234.1899173554, 182.5500826446);
}
.alert-success .alert-link {
  color: rgb(40.2235820896, 66.27, 22.09);
}

.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(112.84, 48.88, 14.56);
  background-color: rgb(247.4, 222.8, 209.6);
  border-color: rgb(244.36, 209.92, 191.44);
}
.alert-danger hr {
  border-top-color: rgb(240.7033962264, 194.4275471698, 169.5966037736);
}
.alert-danger .alert-link {
  color: rgb(67.6685714286, 29.3126530612, 8.7314285714);
}

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

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

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

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

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

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

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

.list-group-item-primary {
  color: rgb(71.24, 71.24, 71.24);
  background-color: rgb(221.96, 221.96, 221.96);
}

a.list-group-item-primary,
button.list-group-item-primary {
  color: rgb(71.24, 71.24, 71.24);
}
a.list-group-item-primary:focus, a.list-group-item-primary:hover,
button.list-group-item-primary:focus,
button.list-group-item-primary:hover {
  color: rgb(71.24, 71.24, 71.24);
  background-color: rgb(209.21, 209.21, 209.21);
}
a.list-group-item-primary.active,
button.list-group-item-primary.active {
  color: #fff;
  background-color: rgb(71.24, 71.24, 71.24);
  border-color: rgb(71.24, 71.24, 71.24);
}

.list-group-item-secondary {
  color: rgb(21.32, 21.32, 37.44);
  background-color: rgb(195.08, 195.08, 203.76);
}

a.list-group-item-secondary,
button.list-group-item-secondary {
  color: rgb(21.32, 21.32, 37.44);
}
a.list-group-item-secondary:focus, a.list-group-item-secondary:hover,
button.list-group-item-secondary:focus,
button.list-group-item-secondary:hover {
  color: rgb(21.32, 21.32, 37.44);
  background-color: rgb(181.3344080605, 181.3344080605, 192.0055919395);
}
a.list-group-item-secondary.active,
button.list-group-item-secondary.active {
  color: #fff;
  background-color: rgb(21.32, 21.32, 37.44);
  border-color: rgb(21.32, 21.32, 37.44);
}

.list-group-item-success {
  color: rgb(63.44, 104.52, 34.84);
  background-color: rgb(217.76, 239.88, 202.36);
}

a.list-group-item-success,
button.list-group-item-success {
  color: rgb(63.44, 104.52, 34.84);
}
a.list-group-item-success:focus, a.list-group-item-success:hover,
button.list-group-item-success:focus,
button.list-group-item-success:hover {
  color: rgb(63.44, 104.52, 34.84);
  background-color: rgb(203.7455371901, 234.1899173554, 182.5500826446);
}
a.list-group-item-success.active,
button.list-group-item-success.active {
  color: #fff;
  background-color: rgb(63.44, 104.52, 34.84);
  border-color: rgb(63.44, 104.52, 34.84);
}

.list-group-item-info {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(190.04, 228.96, 235.12);
}

a.list-group-item-info,
button.list-group-item-info {
  color: rgb(11.96, 84.24, 95.68);
}
a.list-group-item-info:focus, a.list-group-item-info:hover,
button.list-group-item-info:focus,
button.list-group-item-info:hover {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
a.list-group-item-info.active,
button.list-group-item-info.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);
}

a.list-group-item-warning,
button.list-group-item-warning {
  color: rgb(132.6, 100.36, 3.64);
}
a.list-group-item-warning:focus, a.list-group-item-warning:hover,
button.list-group-item-warning:focus,
button.list-group-item-warning:hover {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 231.265, 160.06);
}
a.list-group-item-warning.active,
button.list-group-item-warning.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(112.84, 48.88, 14.56);
  background-color: rgb(244.36, 209.92, 191.44);
}

a.list-group-item-danger,
button.list-group-item-danger {
  color: rgb(112.84, 48.88, 14.56);
}
a.list-group-item-danger:focus, a.list-group-item-danger:hover,
button.list-group-item-danger:focus,
button.list-group-item-danger:hover {
  color: rgb(112.84, 48.88, 14.56);
  background-color: rgb(240.7033962264, 194.4275471698, 169.5966037736);
}
a.list-group-item-danger.active,
button.list-group-item-danger.active {
  color: #fff;
  background-color: rgb(112.84, 48.88, 14.56);
  border-color: rgb(112.84, 48.88, 14.56);
}

.list-group-item-light {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(253.04, 253.32, 253.6);
}

a.list-group-item-light,
button.list-group-item-light {
  color: rgb(128.96, 129.48, 130);
}
a.list-group-item-light:focus, a.list-group-item-light:hover,
button.list-group-item-light:focus,
button.list-group-item-light:hover {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(238.165, 240.57, 242.975);
}
a.list-group-item-light.active,
button.list-group-item-light.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);
}

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

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}
.modal.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, -25%);
          transform: translate(0, -25%);
}
.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

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

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
  pointer-events: none;
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  pointer-events: auto;
  background-color: #ffffff;
  background-clip: padding-box;
  border-radius: 0.3rem;
  outline: 0;
}

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

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

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

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

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

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

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 30px auto;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 1020px) {
  .modal-lg {
    max-width: 800px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  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: 5px;
  height: 5px;
}
.tooltip .arrow::before {
  position: absolute;
  border-color: transparent;
  border-style: solid;
}
.tooltip.bs-tooltip-top, .tooltip.bs-tooltip-auto[x-placement^=top] {
  padding: 5px 0;
}
.tooltip.bs-tooltip-top .arrow, .tooltip.bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.tooltip.bs-tooltip-top .arrow::before, .tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before {
  margin-left: -3px;
  content: "";
  border-width: 5px 5px 0;
  border-top-color: #121419;
}
.tooltip.bs-tooltip-right, .tooltip.bs-tooltip-auto[x-placement^=right] {
  padding: 0 5px;
}
.tooltip.bs-tooltip-right .arrow, .tooltip.bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
}
.tooltip.bs-tooltip-right .arrow::before, .tooltip.bs-tooltip-auto[x-placement^=right] .arrow::before {
  margin-top: -3px;
  content: "";
  border-width: 5px 5px 5px 0;
  border-right-color: #121419;
}
.tooltip.bs-tooltip-bottom, .tooltip.bs-tooltip-auto[x-placement^=bottom] {
  padding: 5px 0;
}
.tooltip.bs-tooltip-bottom .arrow, .tooltip.bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.tooltip.bs-tooltip-bottom .arrow::before, .tooltip.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  margin-left: -3px;
  content: "";
  border-width: 0 5px 5px;
  border-bottom-color: #121419;
}
.tooltip.bs-tooltip-left, .tooltip.bs-tooltip-auto[x-placement^=left] {
  padding: 0 5px;
}
.tooltip.bs-tooltip-left .arrow, .tooltip.bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
}
.tooltip.bs-tooltip-left .arrow::before, .tooltip.bs-tooltip-auto[x-placement^=left] .arrow::before {
  right: 0;
  margin-top: -3px;
  content: "";
  border-width: 5px 0 5px 5px;
  border-left-color: #121419;
}
.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #ffffff;
  text-align: center;
  background-color: #121419;
  border-radius: 0.25rem;
}

.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: #898989 !important;
}

a.bg-primary:focus, a.bg-primary:hover {
  background-color: rgb(111.5, 111.5, 111.5) !important;
}

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

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

.bg-success {
  background-color: #7ac943 !important;
}

a.bg-success:focus, a.bg-success:hover {
  background-color: rgb(97.7396694215, 168.5785123967, 48.4214876033) !important;
}

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

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

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

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

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

a.bg-danger:focus, a.bg-danger:hover {
  background-color: rgb(171.8285714286, 74.4326530612, 22.1714285714) !important;
}

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

a.bg-light:focus, a.bg-light:hover {
  background-color: rgb(218.25, 223.5, 228.75) !important;
}

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

a.bg-dark:focus, a.bg-dark:hover {
  background-color: rgb(29.1379310345, 32.5, 35.8620689655) !important;
}

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

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

.border {
  border: 1px solid #e9ecef !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: #898989 !important;
}

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

.border-success {
  border-color: #7ac943 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print {
  .d-print-none {
    display: none !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;
  -webkit-flex-direction: row !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-sm-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-sm-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-sm-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-sm-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-sm-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-sm-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
                -ms-grid-row-align: auto !important;
            align-self: auto !important;
  }
  .align-self-sm-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-sm-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-sm-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
                -ms-grid-row-align: center !important;
            align-self: center !important;
  }
  .align-self-sm-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
                -ms-grid-row-align: stretch !important;
            align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-md-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-md-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-md-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-md-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-md-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-md-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-md-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-md-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
                -ms-grid-row-align: auto !important;
            align-self: auto !important;
  }
  .align-self-md-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-md-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-md-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
                -ms-grid-row-align: center !important;
            align-self: center !important;
  }
  .align-self-md-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-md-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
                -ms-grid-row-align: stretch !important;
            align-self: stretch !important;
  }
}
@media (min-width: 1020px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-lg-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-lg-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-lg-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-lg-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-lg-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-lg-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
                -ms-grid-row-align: auto !important;
            align-self: auto !important;
  }
  .align-self-lg-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-lg-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-lg-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
                -ms-grid-row-align: center !important;
            align-self: center !important;
  }
  .align-self-lg-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
                -ms-grid-row-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: 1020px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
.position-static {
  position: static !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pl-5,
.px-5 {
  padding-left: 48px !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: 4px !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 4px !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 4px !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 4px !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 4px !important;
  }
  .m-sm-2 {
    margin: 8px !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 8px !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 8px !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 8px !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 8px !important;
  }
  .m-sm-3 {
    margin: 16px !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 16px !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 16px !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 16px !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 16px !important;
  }
  .m-sm-4 {
    margin: 24px !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 24px !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 24px !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 24px !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 24px !important;
  }
  .m-sm-5 {
    margin: 48px !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 48px !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 48px !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 48px !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 48px !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: 4px !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 4px !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 4px !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 4px !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 4px !important;
  }
  .p-sm-2 {
    padding: 8px !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 8px !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 8px !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 8px !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 8px !important;
  }
  .p-sm-3 {
    padding: 16px !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 16px !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 16px !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 16px !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 16px !important;
  }
  .p-sm-4 {
    padding: 24px !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 24px !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 24px !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 24px !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 24px !important;
  }
  .p-sm-5 {
    padding: 48px !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 48px !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 48px !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 48px !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 48px !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: 4px !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 4px !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 4px !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 4px !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 4px !important;
  }
  .m-md-2 {
    margin: 8px !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 8px !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 8px !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 8px !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 8px !important;
  }
  .m-md-3 {
    margin: 16px !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 16px !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 16px !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 16px !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 16px !important;
  }
  .m-md-4 {
    margin: 24px !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 24px !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 24px !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 24px !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 24px !important;
  }
  .m-md-5 {
    margin: 48px !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 48px !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 48px !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 48px !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 48px !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: 4px !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 4px !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 4px !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 4px !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 4px !important;
  }
  .p-md-2 {
    padding: 8px !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 8px !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 8px !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 8px !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 8px !important;
  }
  .p-md-3 {
    padding: 16px !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 16px !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 16px !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 16px !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 16px !important;
  }
  .p-md-4 {
    padding: 24px !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 24px !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 24px !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 24px !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 24px !important;
  }
  .p-md-5 {
    padding: 48px !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 48px !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 48px !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 48px !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 48px !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: 1020px) {
  .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: 4px !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 4px !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 4px !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 4px !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 4px !important;
  }
  .m-lg-2 {
    margin: 8px !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 8px !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 8px !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 8px !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 8px !important;
  }
  .m-lg-3 {
    margin: 16px !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 16px !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 16px !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 16px !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 16px !important;
  }
  .m-lg-4 {
    margin: 24px !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 24px !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 24px !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 24px !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 24px !important;
  }
  .m-lg-5 {
    margin: 48px !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 48px !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 48px !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 48px !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 48px !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: 4px !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 4px !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 4px !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 4px !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 4px !important;
  }
  .p-lg-2 {
    padding: 8px !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 8px !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 8px !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 8px !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 8px !important;
  }
  .p-lg-3 {
    padding: 16px !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 16px !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 16px !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 16px !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 16px !important;
  }
  .p-lg-4 {
    padding: 24px !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 24px !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 24px !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 24px !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 24px !important;
  }
  .p-lg-5 {
    padding: 48px !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 48px !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 48px !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 48px !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 48px !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
.text-justify {
  text-align: justify !important;
}

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

.text-truncate {
  overflow: hidden;
  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: 1020px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

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

.font-weight-light {
  font-weight: 300 !important;
}

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

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

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

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

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

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

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

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

.text-success {
  color: #7ac943 !important;
}

a.text-success:focus, a.text-success:hover {
  color: rgb(97.7396694215, 168.5785123967, 48.4214876033) !important;
}

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

a.text-info:focus, a.text-info:hover {
  color: rgb(17.3333333333, 122.0869565217, 138.6666666667) !important;
}

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

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

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

a.text-danger:focus, a.text-danger:hover {
  color: rgb(171.8285714286, 74.4326530612, 22.1714285714) !important;
}

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

a.text-light:focus, a.text-light:hover {
  color: rgb(218.25, 223.5, 228.75) !important;
}

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

a.text-dark:focus, a.text-dark:hover {
  color: rgb(29.1379310345, 32.5, 35.8620689655) !important;
}

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

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

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

/* ==========================================================================
    HELPERS
  ========================================================================== */
.text-green {
  color: #7ac943;
}

.text-red {
  color: #d95e1c;
}

.normal-text-red {
  display: inline-block;
  color: #ff0000;
  font-size: 18px !important;
}

.text-truered {
  color: #ff0000;
}

.text-orange {
  color: #ff8c00;
}

.text-blue {
  color: #2ea5d1;
}

.text-italic {
  font-style: italic;
}

.line-through {
  text-decoration: line-through;
}

.sup-tag {
  font-size: 0.8rem !important;
  vertical-align: super;
}

.underline {
  text-decoration: underline;
}

.align-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 600px) {
  .align-right {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

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

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

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

.mobile-show {
  display: initial;
}
@media (min-width: 600px) {
  .mobile-show {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .admin-desktop-hide {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .admin-mobile-hide {
    display: none !important;
  }
}

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

.text-block {
  margin-bottom: 3rem;
}

.tip-box {
  margin: 3rem 0;
  padding: 1.5rem;
  background-color: #f5f5f5;
}
.tip-box p {
  margin: 0;
}

.marginTop20 {
  margin: 0;
  margin-top: 2.4rem;
  margin-bottom: -1rem;
}
@media (min-width: 600px) {
  .marginTop20 {
    margin-top: 3.2rem;
    margin-bottom: 0;
  }
}
.marginTop20 p {
  margin: 0;
}

.nowrap {
  white-space: nowrap;
}

/* ==========================================================================
		All BASE
	========================================================================== */
/* Core base
	 ========================================================================== */
/* ==========================================================================
    TEXT
  ========================================================================== */
p, ul, ol, pre, table, blockquote {
  margin-top: 0px;
  margin-bottom: 0px;
}

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

a img {
  border: 0;
}

a {
  -webkit-transition: 300ms all ease-in-out;
  transition: 300ms all ease-in-out;
  color: #2ea5d1;
  text-decoration: none;
}
a svg use {
  -webkit-transition: 300ms all ease-in-out;
  transition: 300ms all ease-in-out;
}
a:hover, a:focus {
  color: #00a8ff;
}
a:hover svg use, a:focus svg use {
  fill: #00a8ff;
}

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

/* ==========================================================================
    FONTS
  ========================================================================== */
body {
  font-weight: 400;
}

.admin-theme .help-btn, .admin-theme .btn--primary, .step2-theme .help-btn, .step2-theme .btn--primary, .step2-theme .main-title, .step2-theme h1, .step2 .btn--fs-primary, .step2 .help-btn, .admin-theme .main-title, .admin-theme h1 {
  font-weight: 300;
}

.admin-theme .main-table .table td,
.admin-theme .main-table .table th, .admin-theme .form-group__control, .admin-theme .dropdown__menu--item, .admin-theme .btn--secondary, .admin-theme .autocomplete-suggestions > .autocomplete-suggestion, .step2-theme .btn--secondary, .step2-theme body.admin-theme, .step2 .plaque__phone--tel p span a, .step2 .tabs__step--header p, .radio__label, .label-content__left span.tippy-help, .checkbox__label, .admin-theme body.admin-theme, .step2-theme .font15, .step2-theme body, body.admin-theme, body {
  font-weight: 400;
}

.admin-theme .act-nav__item, .admin-theme .act-item-tag, .admin-theme .act-item__content--title, .admin-theme .step1 .error-msg,
.admin-theme .collegue .error-msg, .admin-theme .ref-nav__item, .admin-theme .act.pagination .pagination__item, .admin-theme .pagination__item.current, .admin-theme .btn--big, .step2-theme .btn--big, .step2 .plaque__text .text-orange, .step2 .plaque__phone--tel p a, .radio__label strong, .label-content__left strong {
  font-weight: 600;
}

.admin-theme .numbers__table--text, .admin-theme .thanks-page__header--title, .admin-theme .ref-nav__item.selected, .admin-theme .ref-item__header--tag, .admin-theme .btn.btn-primary, .admin-theme .btn--add__icon, .step2-theme .btn.btn-primary, .step2-theme .btn--add__icon, .step2 .variant-card__btn label, .step2 .variant-card__info--no, .step2 .summary__row.summary__footer p span:not(.font15), .step2 .summary__header--title, .step2 .validation-box__error, .step2 .btn.btn-primary {
  font-weight: 700;
}

html {
  font-size: 10px;
}

body {
  color: #898989;
  line-height: 1.3;
}
body.admin-theme {
  color: #038cd9;
}

h1 {
  margin: 0 0 2.4rem;
  line-height: 1.125;
}
h1 {
  font-size: 22px;
}
@media (min-width: 480px) {
  h1 {
    font-size: calc(3.75vw + 4px);
  }
}
@media (min-width: 800px) {
  h1 {
    font-size: 34px;
  }
}

h2 {
  margin: 1.6rem 0 1.6rem;
  line-height: 1.25;
}
h2 {
  font-size: 22px;
}
@media (min-width: 480px) {
  h2 {
    font-size: calc(1.25vw + 16px);
  }
}
@media (min-width: 800px) {
  h2 {
    font-size: 26px;
  }
}
h2 span {
  font-size: inherit;
}

h3,
.font-22 {
  margin: 1.6rem 0;
  line-height: 1.25;
  font-size: 18px;
}
@media (min-width: 480px) {
  h3,
  .font-22 {
    font-size: calc(1.25vw + 12px);
  }
}
@media (min-width: 800px) {
  h3,
  .font-22 {
    font-size: 22px;
  }
}
h3 span,
h3 p,
h3 a,
.font-22 span,
.font-22 p,
.font-22 a {
  font-size: inherit;
}

h4,
.font-20 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 15px;
}
@media (min-width: 480px) {
  h4,
  .font-20 {
    font-size: calc(1.5625vw + 7.5px);
  }
}
@media (min-width: 800px) {
  h4,
  .font-20 {
    font-size: 20px;
  }
}

p {
  margin-bottom: 1rem;
  letter-spacing: 0.08px;
  font-size: 15px;
}
@media (min-width: 480px) {
  p {
    font-size: calc(0.9375vw + 10.5px);
  }
}
@media (min-width: 800px) {
  p {
    font-size: 18px;
  }
}

ul,
li,
span,
a {
  letter-spacing: 0.08px;
  font-size: 15px;
}
@media (min-width: 480px) {
  ul,
  li,
  span,
  a {
    font-size: calc(0.9375vw + 10.5px);
  }
}
@media (min-width: 800px) {
  ul,
  li,
  span,
  a {
    font-size: 18px;
  }
}

ol li,
ul li {
  margin-bottom: 0.5rem;
}

.uppercase {
  text-transform: uppercase;
}

.center {
  text-align: center;
}

.line-through {
  text-decoration: line-through;
}

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

.semibold {
  font-weight: 600 !important;
}

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

.color-blue {
  color: #2ea5d1;
}

/* Step2 base
	========================================================================== */
.step2-theme {
  /* ==========================================================================
      FONTS
    ========================================================================== */
}
.step2-theme h1 {
  margin: 0 0 2.4rem;
  line-height: 1.125;
  font-size: 22px;
}
@media (min-width: 480px) {
  .step2-theme h1 {
    font-size: calc(3.75vw + 4px);
  }
}
@media (min-width: 800px) {
  .step2-theme h1 {
    font-size: 34px;
  }
}
.step2-theme h2 {
  margin: 1.6rem 0 1.6rem;
  line-height: 1.25;
  font-size: 22px;
}
@media (min-width: 480px) {
  .step2-theme h2 {
    font-size: calc(1.25vw + 16px);
  }
}
@media (min-width: 800px) {
  .step2-theme h2 {
    font-size: 26px;
  }
}
.step2-theme h2 span {
  font-size: inherit;
}
.step2-theme h3,
.step2-theme .font-22 {
  margin: 1.6rem 0;
  line-height: 1.25;
  font-size: 18px;
}
@media (min-width: 480px) {
  .step2-theme h3,
  .step2-theme .font-22 {
    font-size: calc(1.25vw + 12px);
  }
}
@media (min-width: 800px) {
  .step2-theme h3,
  .step2-theme .font-22 {
    font-size: 22px;
  }
}
.step2-theme h3 span,
.step2-theme h3 p,
.step2-theme h3 a,
.step2-theme .font-22 span,
.step2-theme .font-22 p,
.step2-theme .font-22 a {
  font-size: inherit;
}
.step2-theme h4,
.step2-theme .font-20 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 15px;
}
@media (min-width: 480px) {
  .step2-theme h4,
  .step2-theme .font-20 {
    font-size: calc(1.5625vw + 7.5px);
  }
}
@media (min-width: 800px) {
  .step2-theme h4,
  .step2-theme .font-20 {
    font-size: 20px;
  }
}
.step2-theme p {
  margin-bottom: 1rem;
  letter-spacing: 0.08px;
  font-size: 15px;
}
@media (min-width: 480px) {
  .step2-theme p {
    font-size: calc(0.9375vw + 10.5px);
  }
}
@media (min-width: 800px) {
  .step2-theme p {
    font-size: 18px;
  }
}
.step2-theme ul,
.step2-theme li,
.step2-theme span,
.step2-theme a {
  letter-spacing: 0.08px;
  font-size: 15px;
}
@media (min-width: 480px) {
  .step2-theme ul,
  .step2-theme li,
  .step2-theme span,
  .step2-theme a {
    font-size: calc(0.9375vw + 10.5px);
  }
}
@media (min-width: 800px) {
  .step2-theme ul,
  .step2-theme li,
  .step2-theme span,
  .step2-theme a {
    font-size: 18px;
  }
}
.step2-theme ol li,
.step2-theme ul li {
  margin-bottom: 0.5rem;
}
.step2-theme .main-title {
  margin: 0 0 1rem;
  font-size: 22px;
}
@media (min-width: 480px) {
  .step2-theme .main-title {
    font-size: calc(3.75vw + 4px);
  }
}
@media (min-width: 800px) {
  .step2-theme .main-title {
    font-size: 34px;
  }
}
.step2-theme .uppercase {
  text-transform: uppercase;
}
.step2-theme .center {
  text-align: center;
}
.step2-theme .line-through {
  text-decoration: line-through;
}
.step2-theme .semibold {
  font-weight: 600 !important;
}
.step2-theme .bold {
  font-weight: 700 !important;
}
.step2-theme .font15 {
  font-size: 13px;
}
@media (min-width: 480px) {
  .step2-theme .font15 {
    font-size: calc(0.625vw + 10px);
  }
}
@media (min-width: 800px) {
  .step2-theme .font15 {
    font-size: 15px;
  }
}
.step2-theme .gray800 {
  color: rgba(118, 118, 118, 0.8);
}
.step2-theme .fancybox-inner {
  background: rgba(0, 0, 0, 0.75);
}

/* Admin base
	========================================================================== */
.admin-theme {
  /* ==========================================================================
      TEXT
    ========================================================================== */
  /* ==========================================================================
      FONTS
    ========================================================================== */
}
.admin-theme a {
  -webkit-transition: 300ms all ease-in-out;
  transition: 300ms all ease-in-out;
  color: #0074ff;
  text-decoration: none;
}
.admin-theme a:hover {
  color: #00a8ff;
}
.admin-theme body.admin-theme {
  color: #038cd9;
}
.admin-theme h1 {
  margin: 0 0 1.6rem;
  line-height: 1.125;
  font-size: 32px;
}
@media (min-width: 480px) {
  .admin-theme h1 {
    font-size: calc(5vw + 8px);
  }
}
@media (min-width: 800px) {
  .admin-theme h1 {
    font-size: 48px;
  }
}
.admin-theme h2 {
  margin: 1.6rem 0 1.6rem;
  line-height: 1.25;
  font-size: 22px;
}
@media (min-width: 480px) {
  .admin-theme h2 {
    font-size: calc(1.25vw + 16px);
  }
}
@media (min-width: 800px) {
  .admin-theme h2 {
    font-size: 26px;
  }
}
.admin-theme h2 span {
  font-size: inherit;
}
.admin-theme h3,
.admin-theme .font-22 {
  margin: 1.6rem 0;
  line-height: 1.25;
  font-size: 18px;
}
@media (min-width: 480px) {
  .admin-theme h3,
  .admin-theme .font-22 {
    font-size: calc(1.25vw + 12px);
  }
}
@media (min-width: 800px) {
  .admin-theme h3,
  .admin-theme .font-22 {
    font-size: 22px;
  }
}
.admin-theme h3 span,
.admin-theme h3 p,
.admin-theme h3 a,
.admin-theme .font-22 span,
.admin-theme .font-22 p,
.admin-theme .font-22 a {
  font-size: inherit;
}
.admin-theme h4,
.admin-theme .font-20 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 16px;
}
@media (min-width: 480px) {
  .admin-theme h4,
  .admin-theme .font-20 {
    font-size: calc(0.625vw + 13px);
  }
}
@media (min-width: 800px) {
  .admin-theme h4,
  .admin-theme .font-20 {
    font-size: 18px;
  }
}
.admin-theme p {
  margin-bottom: 1rem;
  letter-spacing: 0.08px;
  font-size: 14px;
}
@media (min-width: 480px) {
  .admin-theme p {
    font-size: calc(0vw + 14px);
  }
}
@media (min-width: 800px) {
  .admin-theme p {
    font-size: 14px;
  }
}
.admin-theme ul,
.admin-theme li,
.admin-theme span,
.admin-theme a {
  letter-spacing: 0.08px;
  font-size: 14px;
}
@media (min-width: 480px) {
  .admin-theme ul,
  .admin-theme li,
  .admin-theme span,
  .admin-theme a {
    font-size: calc(0vw + 14px);
  }
}
@media (min-width: 800px) {
  .admin-theme ul,
  .admin-theme li,
  .admin-theme span,
  .admin-theme a {
    font-size: 14px;
  }
}
.admin-theme ol li,
.admin-theme ul li {
  margin-bottom: 0.5rem;
}
.admin-theme .main-title {
  color: #333333;
  font-size: 32px;
}
@media (min-width: 480px) {
  .admin-theme .main-title {
    font-size: calc(5vw + 8px);
  }
}
@media (min-width: 800px) {
  .admin-theme .main-title {
    font-size: 48px;
  }
}
.admin-theme .main-title.inline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 991px) {
  .admin-theme .main-title.inline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .admin-theme .main-title.inline .dropdown {
    width: auto;
  }
}
.admin-theme .main-title .orange {
  font-size: inherit;
}
.admin-theme .main-perex {
  color: #333333;
  font-size: 16px;
}
@media (min-width: 480px) {
  .admin-theme .main-perex {
    font-size: calc(0.625vw + 13px);
  }
}
@media (min-width: 800px) {
  .admin-theme .main-perex {
    font-size: 18px;
  }
}
.admin-theme .main-perex a {
  color: #0074ff;
  font-size: inherit;
}
.admin-theme .main-perex a:hover {
  color: #00a8ff;
}
.admin-theme .admin-list {
  margin-bottom: 24px;
}
.admin-theme .admin-list li {
  color: #333333;
  font-size: 16px;
}
@media (min-width: 480px) {
  .admin-theme .admin-list li {
    font-size: calc(0.625vw + 13px);
  }
}
@media (min-width: 800px) {
  .admin-theme .admin-list li {
    font-size: 18px;
  }
}
.admin-theme .admin-list li a {
  color: #0074ff;
  font-size: inherit;
}
.admin-theme .admin-list li a:hover, .admin-theme .admin-list li a:focus {
  color: #00a8ff;
}
.admin-theme .inline-list {
  display: block;
  margin-bottom: 24px;
  padding-left: 0;
  list-style: none;
}
.admin-theme .inline-list li {
  display: inline-block;
  color: #9e9e9e;
  font-size: 16px;
}
@media (min-width: 480px) {
  .admin-theme .inline-list li {
    font-size: calc(0.625vw + 13px);
  }
}
@media (min-width: 800px) {
  .admin-theme .inline-list li {
    font-size: 18px;
  }
}
.admin-theme .inline-list li a {
  color: #0074ff;
  font-size: inherit;
}
.admin-theme .inline-list li a:hover, .admin-theme .inline-list li a:focus {
  color: #00a8ff;
}
.admin-theme .uppercase {
  text-transform: uppercase;
}
.admin-theme .center {
  text-align: center;
}
.admin-theme .red {
  color: #ff0000;
}
.admin-theme .blue {
  color: #0074ff;
}
.admin-theme .orange {
  color: #ff8c00;
}
.admin-theme .table-text-gray,
.admin-theme .text-gray {
  color: #898989;
}
.admin-theme .general-tip {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8rem;
  line-height: 2.4rem;
}
@media (max-width: 575px) {
  .admin-theme .general-tip {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.admin-theme .general-tip--bordered {
  padding: 32px;
  border: 1px solid #cccccc;
  border-radius: 20px;
}
@media (max-width: 575px) {
  .admin-theme .general-tip--bordered {
    padding: 16px;
  }
}
.admin-theme .general-tip__image {
  margin-right: 18px;
}
@media (max-width: 575px) {
  .admin-theme .general-tip__image {
    max-width: 28px;
  }
}
.admin-theme .general-tip__text {
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin: 0;
  text-align: left;
}
@media (max-width: 575px) {
  .admin-theme .general-tip__text {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}
.admin-theme .general-tip__orange-text {
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: #ff8c00;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .admin-theme .general-tip__orange-text {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}

/* ==========================================================================
		ALL LAYOUT
	========================================================================== */
/* ==========================================================================
    LAYOUT
  ========================================================================== */
*,
:after,
:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #ffffff;
}
body.overflow-hidden {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
body.overflow-hidden:after {
  content: "";
  position: absolute;
  z-index: 9;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: rgba(18, 20, 25, 0.5);
}
body.transparent-bg {
  background: transparent;
}

.container {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding: 0 2rem;
}
@media (min-width: 600px) {
  .container {
    padding: 0 1.6rem;
  }
}

.mini-container {
  width: 100%;
  max-width: 610px;
  margin: auto;
  padding: 0 2rem;
}
@media (min-width: 600px) {
  .mini-container {
    padding: 0 1.6rem;
  }
}

.middle-container {
  width: 100%;
  max-width: 700px;
  margin: auto;
  padding: 0 2rem;
}
@media (min-width: 600px) {
  .middle-container {
    padding: 0 1.6rem;
  }
}

.admin-container {
  width: 100%;
  max-width: 1020px;
  margin: auto;
  padding: 0 2rem;
}

.admin-small-container {
  width: 100%;
  max-width: 960px;
  margin: auto;
  padding: 0;
}
@media (min-width: 800px) {
  .admin-small-container {
    padding: 0 2rem;
  }
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.row.no-wrap {
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}

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

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

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

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

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

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

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

.col {
  width: 100%;
  padding: 0 0.5rem;
}

.row-cols-1 .col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  margin-bottom: 1rem;
}

.row-cols-2 .col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
  margin-bottom: 1rem;
}

.row-cols-3 .col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.3333333333%;
  margin-bottom: 1rem;
}

.row-cols-4 .col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
  margin-bottom: 1rem;
}

.row-cols-5 .col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20%;
  margin-bottom: 1rem;
}

.row-cols-6 .col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.6666666667%;
  margin-bottom: 1rem;
}

.row-cols-7 .col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 14.2857142857%;
  margin-bottom: 1rem;
}

.row-cols-8 .col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 12.5%;
  margin-bottom: 1rem;
}

.row-cols-9 .col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 11.1111111111%;
  margin-bottom: 1rem;
}

.row-cols-10 .col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 10%;
  margin-bottom: 1rem;
}

.row-cols-11 .col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 9.0909090909%;
  margin-bottom: 1rem;
}

.row-cols-12 .col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.3333333333%;
  margin-bottom: 1rem;
}

@media (min-width: 600px) {
  .row-cols-sm-1 .col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 .col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 .col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 .col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 .col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 .col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .row-cols-sm-7 .col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 14.2857142857%;
  }
  .row-cols-sm-8 .col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 12.5%;
  }
  .row-cols-sm-9 .col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 11.1111111111%;
  }
  .row-cols-sm-10 .col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 10%;
  }
  .row-cols-sm-11 .col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 9.0909090909%;
  }
  .row-cols-sm-12 .col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
}
.order-1 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 600px) {
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
}
.divider-40 {
  height: 4rem;
}

.divider-15 {
  height: 1.5rem;
}

.pt-48 {
  padding-top: 4.8rem !important;
}

.mb-48 {
  margin-bottom: 4.8rem !important;
}

@media (min-width: 576px) {
  .pt-md-48 {
    padding-top: 4.8rem !important;
  }
}

@media (min-width: 576px) {
  .mb-md-48 {
    margin-bottom: 4.8rem !important;
  }
}

/* ==========================================================================
		ALL COMPONENTS
	========================================================================== */
/* Core components
	========================================================================== */
/* ==========================================================================
    FANCYBOX
  ========================================================================== */
body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 100%;
  left: 0;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #ffffff;
  opacity: 0;
  -webkit-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
          transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.5;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.blackbg .fancybox-bg {
  background-color: rgba(18, 20, 25, 0.9);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity 0.25s, visibility 0s linear 0.25s;
  transition: opacity 0.25s, visibility 0s linear 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  -webkit-transition: opacity 0.25s, visibility 0s;
  transition: opacity 0.25s, visibility 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  text-align: center;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translate3d(0, 0, 0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: opacity, -webkit-transform;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  height: 100%;
  margin-right: -0.25em;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--next {
  z-index: 99995;
}

.fancybox-slide--image {
  overflow: visible;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px 6px 0 6px;
}

.fancybox-slide--iframe {
  padding: 44px 44px 0;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0 0 6px 0;
  max-width: 100%;
  overflow: auto;
  padding: 0;
  padding: 24px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}
.fancybox-content.employee-modal {
  overflow: visible;
  padding: 0;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  margin: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  transition-property: opacity, -webkit-transform;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-drag .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-dragging .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--html .fancybox-content {
  margin-bottom: 6px;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  margin: 0;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
  height: calc(100% - 44px);
  margin-bottom: 44px;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  vertical-align: top;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  outline: none;
  padding: 10px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  vertical-align: top;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:focus,
.fancybox-button:hover {
  color: #fff;
}

.fancybox-button.disabled,
.fancybox-button.disabled:hover,
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
}

.fancybox-button svg {
  display: block;
  overflow: visible;
  position: relative;
  shape-rendering: geometricPrecision;
}

.fancybox-button svg path {
  fill: transparent;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 3;
}

.fancybox-button--play svg path:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg path:nth-child(1) {
  display: none;
}

.fancybox-button--play svg path,
.fancybox-button--share svg path,
.fancybox-button--thumbs svg path {
  fill: currentColor;
}

.fancybox-button--share svg path {
  stroke-width: 1;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  height: 38px;
  opacity: 0;
  padding: 6px;
  position: absolute;
  top: 50%;
  width: 38px;
}

.fancybox-show-nav .fancybox-navigation .fancybox-button {
  -webkit-transition: opacity 0.25s, visibility 0s, color 0.25s;
  transition: opacity 0.25s, visibility 0s, color 0.25s;
}

.fancybox-navigation .fancybox-button::after {
  content: "";
  left: -25px;
  padding: 50px;
  position: absolute;
  top: -25px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  right: 6px;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #555;
  cursor: pointer;
  height: 44px;
  margin: 0;
  padding: 6px;
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  z-index: 10;
}

.fancybox-close-small svg {
  fill: transparent;
  opacity: 0.8;
  stroke: currentColor;
  stroke-width: 1.5;
  -webkit-transition: stroke 0.1s;
  transition: stroke 0.1s;
}

.fancybox-close-small:focus {
  outline: none;
}

.fancybox-close-small:hover svg {
  opacity: 1;
}

.fancybox-slide--image .fancybox-close-small,
.fancybox-slide--video .fancybox-close-small,
.fancybox-slide--iframe .fancybox-close-small {
  color: #ccc;
  padding: 5px;
  right: -12px;
  top: -44px;
}

.fancybox-slide--image .fancybox-close-small:hover svg,
.fancybox-slide--video .fancybox-close-small:hover svg,
.fancybox-slide--iframe .fancybox-close-small:hover svg {
  background: transparent;
  color: #fff;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
  display: none;
}

/* Caption */
.fancybox-caption {
  bottom: 0;
  color: #fff;
  font-size: 14px;
  left: 0;
  line-height: 1.5;
  padding: 25px 44px 25px 44px;
  right: 0;
}

.fancybox-caption::before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAEtCAQAAABjBcL7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHRJREFUKM+Vk8EOgDAIQ0vj/3+xBw8qIZZueFnIKC90MCAI8DlrkHGeqqGIU6lVigrBtpCWqeRWoHDNqs0F7VNVBVxmHRlvoVqjaYkdnDIaivH2HqZ5+oZj3JUzWB+cOz4G48Bg+tsJ/tqu4dLC/4Xb+0GcF5BwBC0AA53qAAAAAElFTkSuQmCC);
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -25px;
  z-index: -1;
}

.fancybox-caption::after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  content: "";
  display: block;
  left: 44px;
  position: absolute;
  right: 44px;
  top: 0;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 0.8s infinite linear;
  animation: fancybox-rotate 0.8s infinite linear;
  background: transparent;
  border: 6px solid rgba(100, 100, 100, 0.5);
  border-radius: 100%;
  border-top-color: #fff;
  height: 60px;
  left: 50%;
  margin: -30px 0 0 -30px;
  opacity: 0.6;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 60px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* Transition effects */
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #fff;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs > ul {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x > ul {
  overflow: hidden;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs > ul > li {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1);
}

.fancybox-thumbs > ul > li {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fancybox-thumbs > ul > li:before {
  border: 4px solid #4ea7f9;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs .fancybox-thumbs-active:before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs > ul > li {
    max-width: calc(100% - 10px);
  }
}
.carousel {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

.carousel.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.carousel.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

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

.carousel__slide {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  -webkit-box-shadow: var(--carousel-button-shadow, none);
          box-shadow: var(--carousel-button-shadow, none);
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}

.carousel__button.is-prev, .carousel__button.is-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.carousel__button.is-prev {
  left: 10px;
}

.carousel__button.is-next {
  right: 10px;
}

.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}

.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  -webkit-filter: var(--carousel-button-svg-filter, none);
          filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

html.with-fancybox {
  scroll-behavior: auto;
}

body.compensate-for-scrollbar {
  overflow: hidden !important;
  -ms-touch-action: none;
      touch-action: none;
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: hidden;
  z-index: 1050;
  outline: none;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}

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

.fancybox__container :focus {
  outline: none;
}

body:not(.is-using-mouse) .fancybox__container :focus {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
          box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width:48px;
    --carousel-button-height:48px;
    --carousel-button-svg-width:27px;
    --carousel-button-svg-height:27px;
  }
}
.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10;
}

.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}

.fancybox__track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.fancybox__slide {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 0;
      -ms-flex: 0 0 0px;
          flex: 0 0 0;
  margin: auto;
}

@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}
.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
              -ms-grid-row-align: center;
          align-self: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 20;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.fancybox__caption {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
              -ms-grid-row-align: center;
          align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  overflow-wrap: anywhere;
}

.is-loading .fancybox__caption {
  visibility: hidden;
}

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
  right: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}
.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}

@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__no-click, .fancybox__no-click button {
  pointer-events: none;
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}

.fancybox__spinner svg {
  -webkit-animation: fancybox-rotate 2s linear infinite;
          animation: fancybox-rotate 2s linear infinite;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
          animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  -webkit-animation: 0.15s ease backwards fancybox-fadeIn;
          animation: 0.15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
  -webkit-animation: 0.15s ease both fancybox-fadeOut;
          animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
  -webkit-animation: 0.15s ease both fancybox-fadeIn;
          animation: 0.15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
  -webkit-animation: 0.1s ease both fancybox-fadeOut;
          animation: 0.1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
  -webkit-animation: 0.2s ease both fancybox-zoomInUp;
          animation: 0.2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
  -webkit-animation: 0.15s ease both fancybox-zoomOutDown;
          animation: 0.15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp {
  -webkit-animation: 0.15s ease both fancybox-throwOutUp;
          animation: 0.15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
  -webkit-animation: 0.15s ease both fancybox-throwOutDown;
          animation: 0.15s ease both fancybox-throwOutDown;
}

@-webkit-keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
            transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
            transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
            transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
            transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__image {
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
}

.is-closing .has-image .fancybox__content {
  overflow: visible;
}

.has-image[data-image-fit=contain] {
  overflow: visible;
  -ms-touch-action: none;
      touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}

.has-image[data-image-fit=cover] {
  overflow: visible;
  -ms-touch-action: none;
      touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  max-width: 100%;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

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

.fancybox__thumbs {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
          animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}

.fancybox__thumbs .carousel__slide {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: visible;
  cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}

.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: -webkit-gradient(linear, left bottom, left top, from(hsla(0, 0%, 0%, 0)), color-stop(8.1%, hsla(0, 0%, 0%, 0.006)), color-stop(15.5%, hsla(0, 0%, 0%, 0.021)), color-stop(22.5%, hsla(0, 0%, 0%, 0.046)), color-stop(29%, hsla(0, 0%, 0%, 0.077)), color-stop(35.3%, hsla(0, 0%, 0%, 0.114)), color-stop(41.2%, hsla(0, 0%, 0%, 0.155)), color-stop(47.1%, hsla(0, 0%, 0%, 0.198)), color-stop(52.9%, hsla(0, 0%, 0%, 0.242)), color-stop(58.8%, hsla(0, 0%, 0%, 0.285)), color-stop(64.7%, hsla(0, 0%, 0%, 0.326)), color-stop(71%, hsla(0, 0%, 0%, 0.363)), color-stop(77.5%, hsla(0, 0%, 0%, 0.394)), color-stop(84.5%, hsla(0, 0%, 0%, 0.419)), color-stop(91.9%, hsla(0, 0%, 0%, 0.434)), to(hsla(0, 0%, 0%, 0.44)));
  background: -webkit-linear-gradient(bottom, hsla(0, 0%, 0%, 0) 0%, hsla(0, 0%, 0%, 0.006) 8.1%, hsla(0, 0%, 0%, 0.021) 15.5%, hsla(0, 0%, 0%, 0.046) 22.5%, hsla(0, 0%, 0%, 0.077) 29%, hsla(0, 0%, 0%, 0.114) 35.3%, hsla(0, 0%, 0%, 0.155) 41.2%, hsla(0, 0%, 0%, 0.198) 47.1%, hsla(0, 0%, 0%, 0.242) 52.9%, hsla(0, 0%, 0%, 0.285) 58.8%, hsla(0, 0%, 0%, 0.326) 64.7%, hsla(0, 0%, 0%, 0.363) 71%, hsla(0, 0%, 0%, 0.394) 77.5%, hsla(0, 0%, 0%, 0.419) 84.5%, hsla(0, 0%, 0%, 0.434) 91.9%, hsla(0, 0%, 0%, 0.44) 100%);
  background: linear-gradient(to top, hsla(0, 0%, 0%, 0) 0%, hsla(0, 0%, 0%, 0.006) 8.1%, hsla(0, 0%, 0%, 0.021) 15.5%, hsla(0, 0%, 0%, 0.046) 22.5%, hsla(0, 0%, 0%, 0.077) 29%, hsla(0, 0%, 0%, 0.114) 35.3%, hsla(0, 0%, 0%, 0.155) 41.2%, hsla(0, 0%, 0%, 0.198) 47.1%, hsla(0, 0%, 0%, 0.242) 52.9%, hsla(0, 0%, 0%, 0.285) 58.8%, hsla(0, 0%, 0%, 0.326) 64.7%, hsla(0, 0%, 0%, 0.363) 71%, hsla(0, 0%, 0%, 0.394) 77.5%, hsla(0, 0%, 0%, 0.419) 84.5%, hsla(0, 0%, 0%, 0.434) 91.9%, hsla(0, 0%, 0%, 0.44) 100%);
  padding: 0;
  -ms-touch-action: none;
      touch-action: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}

@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
          animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}

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

.fancybox__toolbar__items--left {
  margin-right: auto;
}

.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.fancybox__toolbar__items--right {
  margin-left: auto;
}

@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}
.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__container:-webkit-full-screen::backdrop {
  opacity: 0;
}

.fancybox__container:-ms-fullscreen::backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::-webkit-backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::-ms-backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}

/**
 * Swiper 5.2.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 16, 2019
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: x mandatory;
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
      -ms-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
  --swiper-navigation-color:#ffffff;
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
  --swiper-navigation-color:#000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color:#ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color:#000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.tippy-tooltip[data-animation=fade][data-state=hidden] {
  opacity: 0;
}

.tippy-iOS {
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent;
}

.tippy-popper {
  pointer-events: none;
  max-width: calc(100vw - 10px);
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
          transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.tippy-tooltip {
  position: relative;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  background-color: #333;
  -webkit-transition-property: visibility, opacity, -webkit-transform;
  transition-property: visibility, opacity, -webkit-transform;
  transition-property: visibility, opacity, transform;
  transition-property: visibility, opacity, transform, -webkit-transform;
  outline: 0;
}

.tippy-tooltip[data-placement^=top] > .tippy-arrow {
  border-width: 8px 8px 0;
  border-top-color: #333;
  margin: 0 3px;
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  bottom: -7px;
}

.tippy-tooltip[data-placement^=bottom] > .tippy-arrow {
  border-width: 0 8px 8px;
  border-bottom-color: #333;
  margin: 0 3px;
  -webkit-transform-origin: 50% 7px;
          transform-origin: 50% 7px;
  top: -7px;
}

.tippy-tooltip[data-placement^=left] > .tippy-arrow {
  border-width: 8px 0 8px 8px;
  border-left-color: #333;
  margin: 3px 0;
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  right: -7px;
}

.tippy-tooltip[data-placement^=right] > .tippy-arrow {
  border-width: 8px 8px 8px 0;
  border-right-color: #333;
  margin: 3px 0;
  -webkit-transform-origin: 7px 50%;
          transform-origin: 7px 50%;
  left: -7px;
}

.tippy-tooltip[data-interactive][data-state=visible] {
  pointer-events: auto;
}

.tippy-tooltip[data-inertia][data-state=visible] {
  -webkit-transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
          transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}

.tippy-arrow {
  position: absolute;
  border-color: transparent;
  border-style: solid;
}

.tippy-content {
  padding: 5px 9px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  z-index: 10;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
  background-image: url("./images/rounded-fill-triangle.svg");
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  content: "←";
  width: 20px;
  height: 20px;
  background-image: url("./images/rounded-outline-triangle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.slick-prev {
  left: -50px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
@media (max-width: 767px) {
  .slick-prev {
    left: -35px;
  }
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "";
}
.slick-prev:hover:before, .slick-prev:focus:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.slick-next {
  right: -50px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
@media (max-width: 767px) {
  .slick-next {
    right: -35px;
  }
}
.slick-next:before {
  content: "";
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
[dir=rtl] .slick-next:before {
  content: "←";
}
.slick-next:hover:before, .slick-next:focus:before {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* the slides */
.slick-slide {
  margin: 0 20px;
}

/* the parent */
.slick-list {
  margin: 0 -20px;
}

.container {
  width: 800px;
  margin: 0 auto;
}

.autocomplete-suggestions {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #999;
  background: #fff;
  cursor: default;
  overflow: auto;
  -webkit-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
  box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
}

.autocomplete-suggestion {
  padding: 2px 5px;
  white-space: nowrap;
  overflow: hidden;
}

.autocomplete-no-suggestion {
  padding: 2px 5px;
}

.autocomplete-selected {
  background: #f0f0f0;
}

.autocomplete-suggestions strong {
  font-weight: 500;
  color: #000;
}

.autocomplete-group {
  padding: 2px 5px;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  display: block;
  border-bottom: 1px solid #000;
}

.daterangepicker {
  position: absolute;
  color: inherit;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  width: 278px;
  max-width: none;
  padding: 0;
  margin-top: 7px;
  top: 100px;
  left: 20px;
  z-index: 3001;
  display: none;
  font-size: 15px;
  line-height: 1em;
}

.daterangepicker:before,
.daterangepicker:after {
  position: absolute;
  display: inline-block;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: "";
}

.daterangepicker:before {
  top: -7px;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
  top: -6px;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
  right: 9px;
}

.daterangepicker.opensleft:after {
  right: 10px;
}

.daterangepicker.openscenter:before {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.openscenter:after {
  left: 0;
  right: 0;
  width: 0;
  margin-left: auto;
  margin-right: auto;
}

.daterangepicker.opensright:before {
  left: 9px;
}

.daterangepicker.opensright:after {
  left: 10px;
}

.daterangepicker.drop-up {
  margin-top: -7px;
}

.daterangepicker.drop-up:before {
  top: initial;
  bottom: -7px;
  border-bottom: initial;
  border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
  top: initial;
  bottom: -6px;
  border-bottom: initial;
  border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges,
.daterangepicker.single .drp-calendar {
  float: none;
}

.daterangepicker.single .drp-selected {
  display: none;
}

.daterangepicker.show-calendar .drp-calendar {
  display: block;
}

.daterangepicker.show-calendar .drp-buttons {
  display: block;
}

.daterangepicker.auto-apply .drp-buttons {
  display: none;
}

.daterangepicker .drp-calendar {
  display: none;
  max-width: 270px;
}

.daterangepicker .drp-calendar.left {
  padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
  padding: 8px;
}

.daterangepicker .drp-calendar.single .calendar-table {
  border: none;
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
  color: #fff;
  border: solid black;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  display: inline-block;
  padding: 3px;
}

.daterangepicker .calendar-table .next span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  min-width: 32px;
  width: 32px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  color: #333333;
}

.daterangepicker .calendar-table {
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #fff;
}

.daterangepicker .calendar-table table {
  width: 100%;
  margin: 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
  background-color: #eee;
  border-color: transparent;
  color: #333333;
}

.daterangepicker td.week,
.daterangepicker th.week {
  font-size: 80%;
  color: #ccc;
}

.daterangepicker td.off,
.daterangepicker td.off.in-range,
.daterangepicker td.off.start-date,
.daterangepicker td.off.end-date {
  background-color: #fff;
  border-color: transparent;
  color: #999;
}

.daterangepicker td.in-range {
  background-color: #ebf4f8;
  border-color: transparent;
  color: #000;
  border-radius: 0;
}

.daterangepicker td.start-date {
  border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
  border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
  border-radius: 4px;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #0074ff;
  border-color: transparent;
  color: #fff;
}

.daterangepicker th.month {
  width: auto;
}

.daterangepicker td.disabled,
.daterangepicker option.disabled {
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}

.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
  font-size: 12px;
  padding: 1px;
  height: auto;
  margin: 0;
  cursor: default;
}

.daterangepicker select.monthselect {
  margin-right: 2%;
  width: 56%;
}

.daterangepicker select.yearselect {
  width: 40%;
}

.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
  width: 50px;
  margin: 0 auto;
  background: #eee;
  border: 1px solid #eee;
  padding: 2px;
  outline: 0;
  font-size: 12px;
}

.daterangepicker .calendar-time {
  text-align: center;
  margin: 4px auto 0 auto;
  line-height: 30px;
  position: relative;
}

.daterangepicker .calendar-time select.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.daterangepicker .drp-buttons {
  clear: both;
  text-align: right;
  padding: 8px;
  border-top: 1px solid #ddd;
  display: none;
  line-height: 12px;
  vertical-align: middle;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
}

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker.show-ranges.rtl .drp-calendar.right {
  border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
  border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
  float: none;
  text-align: left;
  margin: 0;
}

.daterangepicker.show-calendar .ranges {
  margin-top: 8px;
}

.daterangepicker .ranges ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.daterangepicker .ranges li {
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
}

.daterangepicker .ranges li:hover {
  background-color: #eee;
}

.daterangepicker .ranges li.active {
  background-color: #0074ff;
  color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
  .daterangepicker {
    width: auto;
  }
  .daterangepicker .ranges ul {
    width: 140px;
  }
  .daterangepicker.single .ranges ul {
    width: 100%;
  }
  .daterangepicker.single .drp-calendar.left {
    clear: none;
  }
  .daterangepicker.single .ranges,
  .daterangepicker.single .drp-calendar {
    float: left;
  }
  .daterangepicker {
    direction: ltr;
    text-align: left;
  }
  .daterangepicker .drp-calendar.left {
    clear: left;
    margin-right: 0;
  }
  .daterangepicker .drp-calendar.left .calendar-table {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .daterangepicker .drp-calendar.right {
    margin-left: 0;
  }
  .daterangepicker .drp-calendar.right .calendar-table {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .daterangepicker .drp-calendar.left .calendar-table {
    padding-right: 8px;
  }
  .daterangepicker .ranges,
  .daterangepicker .drp-calendar {
    float: left;
  }
}
@media (min-width: 730px) {
  .daterangepicker .ranges {
    width: auto;
  }
  .daterangepicker .ranges {
    float: left;
  }
  .daterangepicker.rtl .ranges {
    float: right;
  }
  .daterangepicker .drp-calendar.left {
    clear: none !important;
  }
}
body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
      This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(./images/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev,
.lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: 500;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.awesomplete [hidden] {
  display: none;
}

.awesomplete .visually-hidden {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

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

.awesomplete > input {
  display: block;
}

.awesomplete > ul {
  position: absolute;
  left: 0;
  z-index: 1;
  min-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
}

.awesomplete > ul:empty {
  display: none;
}

.awesomplete > ul {
  border-radius: 0.3em;
  margin: 0.2em 0 0;
  background: hsla(0, 0%, 100%, 0.9);
  background: -webkit-gradient(linear, left top, right bottom, from(white), to(hsla(0, 0%, 100%, 0.8)));
  background: -webkit-linear-gradient(top left, white, hsla(0, 0%, 100%, 0.8));
  background: linear-gradient(to bottom right, white, hsla(0, 0%, 100%, 0.8));
  border: 1px solid rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0.05em 0.2em 0.6em rgba(0, 0, 0, 0.2);
          box-shadow: 0.05em 0.2em 0.6em rgba(0, 0, 0, 0.2);
  text-shadow: none;
}

@supports ((-webkit-transform: scale(0)) or (transform: scale(0))) {
  .awesomplete > ul {
    -webkit-transition: 0.3s cubic-bezier(0.4, 0.2, 0.5, 1.4);
    transition: 0.3s cubic-bezier(0.4, 0.2, 0.5, 1.4);
    -webkit-transform-origin: 1.43em -0.43em;
            transform-origin: 1.43em -0.43em;
  }
  .awesomplete > ul[hidden],
  .awesomplete > ul:empty {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    display: block;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
  }
}
/* Pointer */
.awesomplete > ul:before {
  content: "";
  position: absolute;
  top: -0.43em;
  left: 1em;
  width: 0;
  height: 0;
  padding: 0.4em;
  background: white;
  border: inherit;
  border-right: 0;
  border-bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.awesomplete > ul > li {
  position: relative;
  padding: 0.2em 0.5em;
  cursor: pointer;
}

.awesomplete > ul > li:hover {
  background: hsl(200, 40%, 80%);
  color: black;
}

.awesomplete > ul > li[aria-selected=true] {
  background: hsl(205, 40%, 40%);
  color: white;
}

.awesomplete mark {
  background: hsl(65, 100%, 50%);
}

.awesomplete li:hover mark {
  background: hsl(68, 100%, 41%);
}

.awesomplete li[aria-selected=true] mark {
  background: hsl(86, 100%, 21%);
  color: inherit;
}


/**
 * @author zhixin wen <wenzhixin2010@gmail.com>
 */
.ms-offscreen {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: auto !important;
  top: auto !important;
}

.ms-parent {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: 100% !important;
}

.ms-choice {
  display: block;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #aaa;
  text-align: left;
  white-space: nowrap;
  line-height: 26px;
  color: #444;
  text-decoration: none;
  border-radius: 4px;
  background-color: #fff;
  height: 4rem;
  padding: 0.5rem 1rem;
}

.ms-choice.disabled {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}

.ms-choice > span {
  position: absolute;
  top: 0;
  left: 0;
  right: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  padding-left: 8px;
  height: 4rem;
  line-height: 4rem;
  font-size: 14px;
}

.ms-choice > span.placeholder {
  color: #999;
  font-size: 15px;
}

.ms-choice > div.icon-close {
  position: absolute;
  top: 0px;
  right: 16px;
  height: 100%;
  width: 16px;
}

.ms-choice > div.icon-close:before {
  content: "×";
  color: #888;
  font-weight: 500;
}

.ms-choice > div.icon-close:hover:before {
  color: #333;
}

.ms-choice > div.icon-caret {
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  right: 8px;
  margin-top: -2px;
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
}

.ms-choice > div.icon-caret.open {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.ms-drop {
  width: auto;
  min-width: 100%;
  overflow: hidden;
  display: none;
  margin-top: -1px;
  padding: 8px 0;
  position: absolute;
  z-index: 1000;
  background: #fff;
  color: #000;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.ms-drop.bottom {
  top: 100%;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}

.ms-drop.top {
  bottom: 100%;
  -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
}

.ms-search {
  display: inline-block;
  margin: 0;
  min-height: 26px;
  padding: 2px;
  position: relative;
  white-space: nowrap;
  width: 100%;
  z-index: 10000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px;
}

.ms-search input {
  width: 100%;
  height: auto !important;
  min-height: 24px;
  padding: 0 5px;
  margin: 0;
  outline: 0;
  border: 1px solid #aaa;
  border-radius: 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ms-drop ul {
  overflow: auto;
  margin: 0;
  padding: 0;
}

.ms-drop ul > li {
  list-style: none;
  display: list-item;
  background-image: none;
  position: static;
  padding: 0.25rem 8px;
}

.ms-drop ul > li .disabled {
  font-weight: normal !important;
  opacity: 0.35;
  filter: Alpha(Opacity=35);
  cursor: default;
}

.ms-drop ul > li.multiple {
  display: block;
  float: left;
}

.ms-drop ul > li.group {
  clear: both;
  text-transform: uppercase;
}

.ms-drop ul > li.multiple label {
  width: 100%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ms-drop ul > li label {
  position: relative;
  margin-bottom: 0;
  display: block;
  white-space: nowrap;
  cursor: pointer;
}

.ms-drop ul > li label.optgroup {
  font-weight: 500;
}

.ms-drop ul > li.hide-radio {
  padding: 0;
}

.ms-drop ul > li.hide-radio:focus,
.ms-drop ul > li.hide-radio:hover {
  background-color: #f8f9fa;
}

.ms-drop ul > li.hide-radio.selected {
  color: #fff;
  background-color: #007bff;
}

.ms-drop ul > li.hide-radio label {
  margin-bottom: 0;
  padding: 5px 8px;
}

.ms-drop ul > li.hide-radio input {
  display: none;
}

.ms-drop ul > li.option-level-1 label {
  padding-left: 28px;
}

.ms-drop ul > li.option-divider {
  padding: 0;
  border-top: 1px solid #e9ecef;
}

.ms-drop input[type=radio],
.ms-drop input[type=checkbox] {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.ms-drop .ms-no-results {
  display: none;
  color: red;
  text-align: center;
  font-size: 15px;
}

.ms-drop .ms-select-all {
  padding-bottom: 10px;
  margin-bottom: 8px;
  border-bottom: 1px solid #aaa;
}

/* ==========================================================================
    ACCORDION
  ========================================================================== */
.accordion {
  overflow: hidden;
}
.accordion__tab {
  width: 100%;
  overflow: hidden;
  color: #ffffff;
}
.accordion__tab--label {
  display: block;
  position: relative;
  padding: 15px;
  padding-right: 40px;
  background: #111111;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  /* Icon */
}
.accordion__tab--label:hover {
  background: hsl(0, 0%, -3.3333333333%);
}
.accordion__tab--label::after {
  content: "❯";
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  text-align: center;
}
.accordion__tab--content {
  max-height: 0;
  padding: 0 10px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  background: #ffffff;
  color: #333333;
}
.accordion input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.accordion input:checked + .accordion__tab--label {
  background: hsl(0, 0%, -3.3333333333%);
}
.accordion input:checked + .accordion__tab--label::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.accordion input:checked ~ .accordion__tab--content {
  max-height: 400vh;
  padding: 10px;
}

/* ==========================================================================
    ALERT
  ========================================================================== */
.alert {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 1rem 0;
  padding: 1rem 2rem;
  border: 1px solid rgba(18, 20, 25, 0.1);
  border-radius: 5px;
}
.alert__icon {
  width: 2.4rem;
  min-width: 2.4rem;
  height: 2rem;
  margin-right: 2rem;
  background-image: url(./images/warning-icon.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.alert__content p {
  margin: 0;
  font-size: 13px;
}
@media (min-width: 480px) {
  .alert__content p {
    font-size: calc(1.5625vw + 5.5px);
  }
}
@media (min-width: 800px) {
  .alert__content p {
    font-size: 18px;
  }
}
.alert.alert-warning {
  opacity: 1;
  background: #ff8c00 0% 0% no-repeat padding-box;
  color: #ffffff;
}
.alert.alert-danger {
  background: #ff4d4d;
  color: #ffffff;
}
@media (max-width: 767px) {
  .alert.alert-danger {
    text-align: center;
  }
}
.alert p {
  margin-bottom: 0;
}

/* ==========================================================================
    BREADCRUMBS
  ========================================================================== */
.breadcrumb,
.admin-breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 0;
  padding-left: 0;
  list-style: none;
}
@media (min-width: 600px) {
  .breadcrumb,
  .admin-breadcrumb {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.breadcrumb__item,
.admin-breadcrumb__item {
  position: relative;
}
.breadcrumb__item:not(.active),
.admin-breadcrumb__item:not(.active) {
  padding-right: 1.5rem;
}
.breadcrumb__item:not(.active):after,
.admin-breadcrumb__item:not(.active):after {
  content: "»";
  position: absolute;
  top: 0;
  right: 0.5rem;
  bottom: 0;
  margin: auto;
}
.breadcrumb__item a,
.admin-breadcrumb__item a {
  font-size: 1.3rem;
}

.admin-breadcrumb {
  margin-top: 1.5rem;
}
.admin-breadcrumb__item {
  font-size: 1.3rem;
}
.admin-breadcrumb__item.active {
  color: #333333;
}

.step2-theme .breadcrumb__item {
  font-size: 1.3rem;
}

/* ==========================================================================
    BTN GROUP
  ========================================================================== */
.btn-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 600px) {
  .btn-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.btn-group.seperate > .btn {
  width: 100%;
  max-width: 20rem;
  margin: 0.5rem 0;
}
@media (min-width: 600px) {
  .btn-group.seperate > .btn {
    width: auto;
    margin: 0 0.5rem;
  }
}

/* ==========================================================================
    BUTTONS
  ========================================================================== */
.btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  border: 0;
  outline: 0;
  line-height: 1;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
}

/* ==========================================================================
    CHECKBOX
  ========================================================================== */
.checkbox {
  width: 100%;
}
.checkbox__col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  cursor: pointer;
}
.checkbox__input:checked ~ .checkbox__label > .checkbox__label--check {
  border: 1px solid rgb(36.8, 132, 167.2);
  background-color: #2ea5d1;
}
.checkbox__input:checked ~ .checkbox__label > .checkbox__label--check:after {
  content: "";
}
.checkbox__input:disabled ~ .checkbox__label {
  opacity: 0.5;
  pointer-events: none;
}
.checkbox__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  padding: 0.75rem 0 0.75rem 2.5rem;
}
.checkbox__label--check {
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid #cccccc;
  border-radius: 0.3rem;
  background-color: #f5f5f5;
}
.checkbox__label--check:after {
  position: absolute;
  top: -0.3rem;
  right: 0;
  bottom: 0;
  left: 0;
  left: 0px;
  width: 0.7rem;
  height: 0.9rem;
  margin: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border: 1px solid #ffffff;
  border-width: 0 0.2rem 0.2rem 0;
}
.checkbox__label--collapse {
  display: block;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 300ms max-height ease-in-out;
  transition: 300ms max-height ease-in-out;
}
.checkbox__label--collapse .collapse__inside {
  margin: 1rem 0 0;
}
.checkbox__label.show .checkbox__label--collapse {
  max-height: 30rem;
}
.checkbox__label.checkbox--divider {
  border-bottom: 1px solid #cccccc;
}
.checkbox--step1 {
  width: auto;
}
.checkbox--step1 .checkbox__label {
  padding-left: 3.2rem;
}
.checkbox--step1 .checkbox__label--check {
  top: 8px;
  width: 2.3rem;
  height: 2.3rem;
  background-color: #ffffff;
}
.checkbox--step1 .checkbox__input:checked ~ .checkbox__label > .checkbox__label--check {
  border: 1px solid rgb(0, 92.8, 204);
  background-color: #0074ff;
}
.checkbox.validation-error .checkbox__label--check {
  border-color: #ff4d4d;
}

.label-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.label-content__left strong {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
}
@media (min-width: 480px) {
  .label-content__left strong {
    font-size: calc(1.25vw + 12px);
  }
}
@media (min-width: 800px) {
  .label-content__left strong {
    font-size: 22px;
  }
}
.label-content__left span:not(.sup-tag) {
  font-size: 13px;
}
@media (min-width: 480px) {
  .label-content__left span:not(.sup-tag) {
    font-size: calc(0.625vw + 10px);
  }
}
@media (min-width: 800px) {
  .label-content__left span:not(.sup-tag) {
    font-size: 15px;
  }
}
.label-content__left span.tippy-help {
  font-size: 1.3rem;
}
.label-content__left a {
  text-decoration: none;
  font-size: 13px;
}
@media (min-width: 480px) {
  .label-content__left a {
    font-size: calc(0.625vw + 10px);
  }
}
@media (min-width: 800px) {
  .label-content__left a {
    font-size: 15px;
  }
}
.label-content__right {
  text-align: right;
  white-space: nowrap;
}
.label-content__right.mobile-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.label-content__right span {
  margin-bottom: 0;
  line-height: 1;
  font-size: 20px;
}
@media (min-width: 480px) {
  .label-content__right span {
    font-size: calc(1.875vw + 11px);
  }
}
@media (min-width: 800px) {
  .label-content__right span {
    font-size: 26px;
  }
}

.checkbox-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.checkbox-group.horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.checkbox-group.horizontal .checkbox:not(:last-child) {
  margin-right: 2rem;
}

/* ==========================================================================
    FORMS
  ========================================================================== */
.form .form-group {
  margin-bottom: 1rem;
}
.form fieldset {
  margin: 0 0 5rem;
  padding: 0;
  border: 0;
}

.form-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form.form--step1 .form-group__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.form.form--step1 .tippy-admin-help {
  margin-left: 0.5rem;
}

/* ==========================================================================
    MODAL
  ========================================================================== */
.modal {
  display: none;
}
.modal__header {
  margin-bottom: 1.5rem;
}
.modal__header--title {
  margin: 0;
  line-height: 1.1;
  font-size: 22px;
}
@media (min-width: 480px) {
  .modal__header--title {
    font-size: calc(3.75vw + 4px);
  }
}
@media (min-width: 800px) {
  .modal__header--title {
    font-size: 34px;
  }
}
.modal__header--icon {
  width: 5rem;
  min-width: 5rem;
  height: 5rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.modal__header--icon.warning {
  background-image: url(./images/warning-icon-orange.svg);
}
.modal__header.center-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal__content {
  max-width: 80%;
  margin: 0 auto 3rem;
  color: #121419;
}
.modal__content--title {
  margin-top: 3rem;
  font-size: 2.2rem !important;
}
.modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #121419;
  font-size: 20px;
  cursor: pointer;
}
.modal__footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal.fancybox-content {
  width: 100%;
  max-width: 80vw;
  padding: 1.5rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0.3rem 0.3rem 1rem rgba(18, 20, 25, 0.3);
          box-shadow: 0.3rem 0.3rem 1rem rgba(18, 20, 25, 0.3);
}
@media (min-width: 480px) {
  .modal.fancybox-content {
    max-width: 55rem;
  }
}
.modal.modal-in {
  display: inline-block;
}
.modal.blue-border {
  width: 90%;
  margin: auto;
  padding: 23px 30px;
  border: 10px solid #0091ff;
  background-color: #fff;
  color: #58585a;
  font-size: 1.5em;
  line-height: 1.2;
  text-align: center;
}
.modal.bigpadding {
  padding-top: 3rem;
}
.modal.bigpadding .modal__header {
  margin-top: 3rem;
}
.modal.bigpadding .modal__footer {
  margin-bottom: 3rem;
}
.modal.bigpadding p {
  font-size: 16px;
}

.fancybox-can-drag .fancybox-content {
  cursor: default !important;
}

.fancybox-container.modal-iframe .fancybox-content {
  background: transparent;
  background-color: transparent;
}
.fancybox-container.modal-iframe .fancybox-content .fancybox-close-small {
  top: 0;
  right: 50px;
  color: #555;
}
.fancybox-container.modal-iframe .fancybox-content .fancybox-close-small:hover svg {
  color: #000;
}

.fancybox-container.modal-iframe .fancybox-slide--iframe {
  padding-right: 16px;
  padding-left: 16px;
}

.modal-iframe--box {
  width: 100%;
  padding: 1.5rem;
  border-radius: 14px;
  background: transparent;
}

.modal-status {
  width: 100%;
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #0091ff;
  color: #ffffff;
}
.modal-status p {
  margin: 0;
}

.captcha_code {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 110px;
  height: 22px;
  margin-right: 8px;
}
@media (min-width: 576px) {
  .captcha_code {
    margin-right: 24px;
  }
}

.captcha_code__letters {
  width: 22px;
  height: 22px;
  float: left;
}

.captcha_code__letter {
  width: 11px;
  height: 11px;
  float: left;
}

.fancybox__content {
  padding: 0 16px;
  border-radius: 14px;
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .fancybox__content {
    padding: 8px;
  }
}

.modal-offer {
  height: 100%;
  max-height: 900px;
  padding: 16px;
  overflow: auto;
  color: #333333;
}
.modal-offer h3 {
  margin: 16px 0 32px;
  font-size: 24px;
  line-height: 28px;
}
@media (min-width: 576px) {
  .modal-offer h3 {
    font-size: 28px;
    line-height: 32px;
  }
}
.modal-offer h3 span {
  display: block;
}
.modal-offer .perex {
  margin-bottom: 30px;
}
.modal-offer .perex:nth-of-type(2) {
  padding-top: 20px;
}
.modal-offer .perex span {
  display: inline;
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .modal-offer .perex span {
    display: block;
  }
}
.modal-offer .fancybox-close-small {
  right: 0;
}
.modal-offer__holder {
  margin-bottom: 14px;
}
.modal-offer__holder--select {
  position: relative;
  cursor: pointer;
}
.modal-offer__holder--select:after {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background-image: url(./images/arrow-more.svg);
  background-size: contain;
  cursor: pointer;
  pointer-events: none;
}
.modal-offer__holder--captcha {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
.modal-offer__holder--captcha .modal-offer__input {
  width: 100%;
  max-width: 220px;
  height: auto;
  padding: 4px 12px;
  font-size: 16px;
}
.modal-offer__input {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 50px;
  padding: 10px 26px;
  border: 1px solid #ffffff;
  border-radius: 25px;
  outline: none;
  background-color: #ffffff;
}
.modal-offer__input:focus, .modal-offer__input:focus-visible {
  border: 1px solid #0091ff !important;
  -webkit-box-shadow: inset 0 0 0 2px #0091ff !important;
  box-shadow: inset 0 0 0 2px #0091ff !important;
}
@media (min-width: 576px) {
  .modal-offer__input {
    font-size: 20px;
  }
}
.modal-offer__input--select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
}
.modal-offer__input--error {
  border: 1px solid #d95e1c;
  -webkit-box-shadow: inset 0 0 0 2px #d95e1c;
  box-shadow: inset 0 0 0 2px #d95e1c;
}
.modal-offer__error {
  margin: 4px 0 0 !important;
  color: #d95e1c;
  font-size: 12px !important;
}
.modal-offer textarea {
  height: auto;
  resize: none;
}
.modal-offer #modal-offer-message {
  display: none;
}
.modal-offer ::-webkit-input-placeholder {
  color: #cccccc;
}
.modal-offer ::-moz-placeholder {
  color: #cccccc;
}
.modal-offer :-ms-input-placeholder {
  color: #cccccc;
}
.modal-offer ::-ms-input-placeholder {
  color: #cccccc;
}
.modal-offer ::placeholder {
  color: #cccccc;
}
@media (min-width: 576px) {
  .modal-offer ::-webkit-input-placeholder {
    font-size: 20px;
  }
  .modal-offer ::-moz-placeholder {
    font-size: 20px;
  }
  .modal-offer :-ms-input-placeholder {
    font-size: 20px;
  }
  .modal-offer ::-ms-input-placeholder {
    font-size: 20px;
  }
  .modal-offer ::placeholder {
    font-size: 20px;
  }
}
.modal-offer .btn--primary {
  margin: 0 auto;
}

#warningModal .carousel__button.is-close {
  top: 0;
  color: #121419;
}

#responseModal {
  padding: 20px;
}
#responseModal .modal__content {
  margin: 0 auto;
}

.modal-info {
  position: fixed;
  z-index: 9999;
  left: 50%;
  width: 100%;
  max-width: 640px;
  margin: 12px auto 0;
  padding: 25px 35px;
  overflow: hidden;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 2px solid #8fff42;
  border-radius: 4px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(122, 202, 67, 0.95)), to(rgba(67, 202, 89, 0.76)));
  background: -webkit-linear-gradient(top, rgba(122, 202, 67, 0.95) 0%, rgba(67, 202, 89, 0.76) 100%);
  background: linear-gradient(180deg, rgba(122, 202, 67, 0.95) 0%, rgba(67, 202, 89, 0.76) 100%);
  -webkit-box-shadow: 0px 0px 5px 0px rgb(176, 176, 176);
  box-shadow: 0px 0px 5px 0px rgb(176, 176, 176);
  color: #121419;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 767px) {
  .modal-info {
    max-width: 90%;
  }
}
.modal-info__close {
  position: absolute;
  top: 4px;
  right: 0;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 18px !important;
  cursor: pointer;
}

.modal__content-scroll {
  height: calc(100vh - 51px);
  padding: 0 8px;
  overflow-y: auto;
}
@media (max-width: 1019px) {
  .modal__content-scroll {
    margin-right: 0 4px;
  }
}
.modal__content-scroll p:last-child,
.modal__content-scroll div:last-child {
  margin-bottom: 0;
}

.modal__content-fix {
  padding: 8px 0;
  background: #ffffff;
  text-align: center;
}
.modal__content-fix .btn {
  margin: 0 8px;
}

/* ==========================================================================
    RADIO INPUT
  ========================================================================== */
.radio__row--col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-height: 4rem;
  padding: 0.5rem 0;
}
.radio__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  cursor: pointer;
}
.radio__input:checked ~ .radio__label > .radio__label--check {
  border: 1px solid rgb(36.8, 132, 167.2);
  background-color: #2ea5d1;
}
.radio__input:checked ~ .radio__label > .radio__label--check:after {
  content: "";
}
.radio__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0.75rem 0 0.75rem 2.5rem;
  line-height: 1.1;
}
.radio__label--check {
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid #cccccc;
  border-radius: 50%;
  background-color: #ffffff;
}
.radio__label--check:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  margin: auto;
  border-radius: 50%;
  background-color: #ffffff;
}
.radio__label.radio--divider {
  border-bottom: 1px solid #cccccc;
}
.radio__label.radio--img {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.radio__label.radio--img .radio__label--check {
  top: 0;
  bottom: 0;
  margin: auto;
}
.radio__label strong {
  font-size: 18px;
}
@media (min-width: 480px) {
  .radio__label strong {
    font-size: calc(1.25vw + 12px);
  }
}
@media (min-width: 800px) {
  .radio__label strong {
    font-size: 22px;
  }
}
.radio__label span:not(.sup-tag) {
  font-size: 13px;
}
@media (min-width: 480px) {
  .radio__label span:not(.sup-tag) {
    font-size: calc(1.5625vw + 5.5px);
  }
}
@media (min-width: 800px) {
  .radio__label span:not(.sup-tag) {
    font-size: 18px;
  }
}
.radio__label a {
  text-decoration: none;
  font-size: 13px;
}
@media (min-width: 480px) {
  .radio__label a {
    font-size: calc(1.5625vw + 5.5px);
  }
}
@media (min-width: 800px) {
  .radio__label a {
    font-size: 18px;
  }
}
.radio--step1 {
  width: auto;
}
.radio--step1 .radio__label {
  padding-left: 3.2rem;
}
.radio--step1 .radio__label--check {
  top: 8px;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 4px;
  background-color: #ffffff;
}
.radio--step1 .radio__label--check:after {
  width: 1rem;
  height: 1rem;
}
.radio--step1 .radio__input:checked ~ .radio__label > .radio__label--check {
  border: 1px solid rgb(0, 92.8, 204);
  background-color: #0074ff;
}

.radio-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.radio-group.horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.radio-group.horizontal .radio:not(:last-child) {
  margin-right: 2rem;
}

.radio__label span:not(.sup-tag) {
  line-height: 23px;
}

/* Step2 components
	========================================================================== */
.step2 {
  /* ==========================================================================
      ALERT
    ========================================================================== */
  /* ==========================================================================
      HELPERS
    ========================================================================== */
  /* ==========================================================================
      HELP TOOLTIP
    ========================================================================== */
  /* ==========================================================================
      ALERT
    ========================================================================== */
  /* ==========================================================================
      BUTTONS
    ========================================================================== */
  /* ==========================================================================
      FORMS
    ========================================================================== */
  /* ==========================================================================
      HELP TOOLTIP
    ========================================================================== */
  /* ==========================================================================
      HEADER
    ========================================================================== */
  /* ==========================================================================
      MAIN 
    ========================================================================== */
  /* ==========================================================================
      PAYMENT
    ========================================================================== */
  /* ==========================================================================
      PERSON DATA
    ========================================================================== */
  /* ==========================================================================
      SUMMARY
    ========================================================================== */
  /* ==========================================================================
      FOOTER
    ========================================================================== */
  /* ==========================================================================
      VARIANT SLIDER
    ========================================================================== */
}
.step2 .alert {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 1rem 0;
  padding: 1rem 2rem;
  border: 1px solid rgba(18, 20, 25, 0.1);
  border-radius: 5px;
}
.step2 .alert__icon {
  width: 2.4rem;
  min-width: 2.4rem;
  height: 2rem;
  margin-right: 2rem;
  background-image: url(./images/warning-icon.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.step2 .alert__content p {
  margin: 0;
  font-size: 13px;
}
@media (min-width: 480px) {
  .step2 .alert__content p {
    font-size: calc(1.5625vw + 5.5px);
  }
}
@media (min-width: 800px) {
  .step2 .alert__content p {
    font-size: 18px;
  }
}
.step2 .alert.alert-warning {
  opacity: 1;
  background: #ff8c00 0% 0% no-repeat padding-box;
  color: #ffffff;
}
.step2 .alert.alert-danger {
  background: #ff4d4d;
  color: #ffffff;
}
@media (max-width: 767px) {
  .step2 .alert.alert-danger {
    text-align: center;
  }
}
.step2 .alert p {
  margin-bottom: 0;
}
.step2 .tippy-tooltip {
  position: relative;
  padding: 1rem 2rem;
  -webkit-transition-property: visibility, opacity, -webkit-transform;
  transition-property: visibility, opacity, -webkit-transform;
  transition-property: visibility, opacity, transform;
  transition-property: visibility, opacity, transform, -webkit-transform;
  border-radius: 2rem;
  outline: 0;
  background-color: #0091ff;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 2, 2, 0.25);
          box-shadow: 0 0 4px 0 rgba(0, 2, 2, 0.25);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}
.step2 .tippy-tooltip.moreServices-theme {
  padding: 1rem;
  border-radius: 1.6rem;
  background-color: #ffffff;
  color: #898989;
}
.step2 .tippy-tooltip.moreServices-theme .tippy-arrow {
  border-top-color: #ffffff !important;
}
.step2 .tippy-tooltip.moreServices-theme[data-placement^=bottom] > .tippy-arrow {
  border-bottom-color: #ffffff !important;
}
.step2 .tippy-tooltip p {
  margin: 0;
}
.step2 .tippy-tooltip table {
  border-spacing: 0;
  border-collapse: collapse;
}
.step2 .tippy-tooltip table td {
  padding: 3px 12px 3px 0;
  text-align: left;
}
.step2 .tippy-tooltip table td:first-child {
  text-align: left;
}
.step2 .tippy-tooltip table td:last-child {
  padding-right: 0;
  padding-left: 12px;
  text-align: right;
}
.step2 .tippy-tooltip[data-placement^=top] > .tippy-arrow {
  bottom: -7px;
  margin: 0 3px;
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  border-width: 8px 8px 0;
  border-top-color: #0091ff;
}
.step2 .tippy-tooltip[data-placement^=bottom] > .tippy-arrow {
  top: -7px;
  margin: 0 3px;
  -webkit-transform-origin: 50% 7px;
          transform-origin: 50% 7px;
  border-width: 0 8px 8px;
  border-bottom-color: #0091ff;
}
.step2 .tippy-tooltip[data-placement^=left] > .tippy-arrow {
  right: -7px;
  margin: 3px 0;
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  border-width: 8px 0 8px 8px;
  border-left-color: #0091ff;
}
.step2 .tippy-tooltip[data-placement^=right] > .tippy-arrow {
  left: -7px;
  margin: 3px 0;
  -webkit-transform-origin: 7px 50%;
          transform-origin: 7px 50%;
  border-width: 8px 8px 8px 0;
  border-right-color: #0091ff;
}
.step2 .flex-tooltip {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  min-width: 100px;
  padding-right: 20px;
}
.step2 .flex-tooltip .hide {
  position: absolute;
  top: 7px;
  right: 12px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.step2 .flex-tooltip .hide:hover {
  opacity: 0.6;
}
@media (max-width: 991px) {
  .step2 .sidebar {
    position: fixed;
    z-index: 100;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 30rem;
    height: 100vh;
    padding: 5rem 3rem;
    overflow-y: auto;
    -webkit-transform: translateX(-30rem);
            transform: translateX(-30rem);
    -webkit-transition: 300ms all ease-in-out;
    transition: 300ms all ease-in-out;
    background-color: #ffffff;
  }
  .step2 .sidebar.show {
    -webkit-transform: translateX(0rem);
            transform: translateX(0rem);
  }
  .step2 .sidebar .form-group {
    width: 100%;
  }
  .step2 .sidebar .form-group .tippy-admin-help {
    position: absolute;
    top: 1rem;
    right: -3rem;
  }
}
.step2 .tippy-admin-help {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin: 0 0.5rem;
  border-radius: 50%;
  background: url(./images/help-icon.svg) no-repeat center center;
  background-size: cover;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.step2 .help-btn {
  display: none;
  position: absolute;
  top: -1rem;
  right: 0rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: #6D7278;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  color: #ffffff;
}
@media (min-width: 992px) {
  .step2 .help-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1340px) {
  .step2 .help-btn {
    right: -4rem;
  }
}
.step2 .tooltip--box {
  padding: 1rem 2rem;
  border-radius: 4rem !important;
  background-color: #0091ff !important;
  text-align: center;
}
.step2 .alert-feedback {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  padding: 1rem;
  border-bottom: 2px solid #cccccc;
  border-radius: 0;
  background-color: #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.step2 .alert-feedback p {
  margin: 0;
  font-size: 1.4rem;
  text-align: center;
}
.step2 .alert-feedback .btn-group {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  margin: 0.5rem;
}
.step2 .alert-feedback .btn-alert {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 2.4rem;
  min-height: 2.4rem;
  max-height: 2.4rem;
  margin: 0 0.5rem;
  padding: 0 1rem;
  background-color: #2ea5d1;
  color: #ffffff;
  font-size: 1.4rem;
}
.step2 .btn__icon {
  margin-right: 0.5rem;
}
.step2 .btn__check {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  cursor: pointer;
}
.step2 .btn--fs-primary {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 35px;
  padding: 3px 10px;
  border-radius: 5px;
  background: #0074ff;
  color: #ffffff;
  font-size: 14px;
}
.step2 .btn--fs-primary:hover, .step2 .btn--fs-primary:focus {
  background: #00a8ff;
  color: #ffffff;
}
.step2 .btn--close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 15px;
  right: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
}
@media (min-width: 992px) {
  .step2 .btn--close {
    display: none;
  }
}
.step2 .btn--menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
}
@media (min-width: 992px) {
  .step2 .btn--menu {
    display: none;
  }
}
.step2 .btn--menu .btn--menu__line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 28px;
  height: 2px;
  margin: 3px 0;
  background: #ffffff;
}
.step2 .btn.btn-primary {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  padding: 3px 20px;
  border-radius: 0;
  border-radius: 3px;
  background: #2ea5d1;
  color: #ffffff;
}
.step2 .btn.btn-primary:hover, .step2 .btn.btn-primary:focus {
  background: #00a8ff;
}
.step2 .btn.btn-green {
  background: #7ac943;
}
.step2 .btn.btn-green:hover, .step2 .btn.btn-green:focus {
  background: #0de90d;
}
.step2 .btn.btn-orange {
  background: #ff8c00;
}
.step2 .btn.btn-orange:hover, .step2 .btn.btn-orange:focus {
  background: rgb(255, 174.5, 76.5);
}
.step2 .btn.btn-small {
  height: 3rem;
}
@media (min-width: 600px) {
  .step2 .btn.btn-small {
    height: 4rem;
  }
}
.step2 .btn.btn-big {
  min-width: 20rem;
}
.step2 .btn.btn-ultrabig {
  min-width: 25rem;
  height: 5rem;
  font-size: 22px;
}
@media (min-width: 600px) {
  .step2 .btn.btn-ultrabig {
    height: 6rem;
    font-size: 22px;
  }
}
@media (min-width: 600px) and (min-width: 480px) {
  .step2 .btn.btn-ultrabig {
    font-size: calc(1.25vw + 16px);
  }
}
@media (min-width: 600px) and (min-width: 800px) {
  .step2 .btn.btn-ultrabig {
    font-size: 26px;
  }
}
.step2 .btn.btn-simple {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5rem;
}
.step2 .btn.btn-simple img {
  margin-right: 0.5rem;
}
.step2 .btn.btn-back {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 15px;
}
.step2 .btn.btn-slider {
  z-index: 99;
  width: 3.7rem;
  min-width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
  background: #ffffff;
  -webkit-box-shadow: 0px 0.3rem 0.6rem rgba(18, 20, 25, 0.3);
          box-shadow: 0px 0.3rem 0.6rem rgba(18, 20, 25, 0.3);
}
@media (min-width: 800px) {
  .step2 .btn.btn-slider {
    display: none;
  }
}
.step2 .btn.btn-slider:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
}
.step2 .btn.btn-slider.swiper-button-prev {
  left: -1.5rem;
}
.step2 .btn.btn-slider.swiper-button-prev:after {
  right: 0.3rem;
  left: 0;
  border-width: 6.5px 9px 6.5px 0;
  border-color: transparent #898989 transparent transparent;
}
.step2 .btn.btn-slider.swiper-button-next {
  right: -1.5rem;
}
.step2 .btn.btn-slider.swiper-button-next:after {
  right: 0;
  left: 0.3rem;
  border-width: 6.5px 0 6.5px 9px;
  border-color: transparent transparent transparent #898989;
}
.step2 .btn.btn-slider.swiper-button-disabled {
  display: none;
}
.step2 .btn.btn-min-width-170 {
  min-width: 17rem;
}
.step2 .btn span {
  margin-bottom: -1px;
  font-size: inherit;
}
.step2 .btn-send-box {
  position: relative;
}
.step2 .btn-send-box:before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 5px;
  bottom: 0;
  width: 40px;
  height: 40px;
  margin: auto;
  background: url("./images/spinner.svg") no-repeat;
  background-size: 100% 100%;
}
.step2 .btn-send-box.active:before {
  content: "";
}
.step2 .btn-send-box.active .btn-send {
  cursor: default;
  pointer-events: none;
}
.step2 .form-group__label {
  line-height: 3.4rem;
  white-space: nowrap;
  cursor: pointer;
  font-size: 15px;
}
@media (min-width: 480px) {
  .step2 .form-group__label {
    font-size: calc(0.9375vw + 10.5px);
  }
}
@media (min-width: 800px) {
  .step2 .form-group__label {
    font-size: 18px;
  }
}
.step2 .form-group__control {
  width: 100%;
  min-width: 9rem;
  min-height: 3.4rem;
  padding: 0 1rem;
  border: 1px solid rgba(137, 137, 137, 0.15);
  border-radius: 0.3rem;
  outline: none;
  outline: none;
  background-color: #f5f5f5;
  color: #898989;
  font-size: 1.8rem;
}
.step2 .form-group__control.big-input {
  min-height: 4rem;
  font-size: 1.6rem;
  line-height: 4rem;
}
.step2 .form-group__control.white-input {
  border: 1px solid #cccccc;
  background-color: #ffffff;
}
.step2 .form-group__control.white-input.validation-error {
  border: 1px solid #ff8c00;
}
.step2 .form-group__control.white-input.validation-error::-webkit-input-placeholder {
  color: #ff8c00;
}
.step2 .form-group__control.white-input.validation-error::-moz-placeholder {
  color: #ff8c00;
}
.step2 .form-group__control.white-input.validation-error:-ms-input-placeholder {
  color: #ff8c00;
}
.step2 .form-group__control.white-input.validation-error:-moz-placeholder {
  color: #ff8c00;
}
@media (min-width: 600px) {
  .step2 .form-group.inline {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.step2 .form-group.inline .form-group__label {
  margin-right: 1rem;
}
.step2 .form-group.align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.step2 .form-group.form-submit {
  margin-top: 2rem;
}
.step2 .form-group .error-msg {
  width: 100%;
  color: #ff0000;
  font-size: 1.3rem;
}
.step2 .form-group .info-msg {
  width: 100%;
  color: #2ea5d1;
  font-size: 1.3rem;
}
.step2 .form-group-box {
  position: relative;
  max-width: 26rem;
  margin: auto;
}
.step2 .form-group-box__append {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: -4rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
}
.step2 select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-image: -webkit-linear-gradient(45deg, transparent 50%, #898989 50%), -webkit-linear-gradient(315deg, #898989 50%, transparent 50%);
  background-image: linear-gradient(45deg, transparent 50%, #898989 50%), linear-gradient(135deg, #898989 50%, transparent 50%);
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) calc(0.6em + 2px), calc(100% - 10px) calc(0.6em + 2px);
  background-size: 5px 5px, 5px 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=-1, OffY=-1,color=#FF0000) progid:DXImageTransform.Microsoft.dropshadow(OffX=1, OffY=1,color=#FF0000);
}
.step2 select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.step2 select:focus {
  outline: none;
  background-image: -webkit-linear-gradient(45deg, #898989 50%, transparent 50%), -webkit-linear-gradient(315deg, transparent 50%, #898989 50%);
  background-image: linear-gradient(45deg, #898989 50%, transparent 50%), linear-gradient(135deg, transparent 50%, #898989 50%);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) 0.7em, calc(100% - 15px) 0.7em;
  background-size: 5px 5px, 5px 5px;
}
.step2 select .user-agent-custom-assign-slot {
  border-color: #898989;
}
.step2 .validation-box {
  max-width: 29rem;
  margin: 0 auto 2rem;
}
.step2 .validation-box__error {
  color: #ff0000;
  text-align: center;
}
.step2 .tippy-help {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  margin: 0 0.5rem;
  border-radius: 50%;
  background: #cccccc;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.step2 .tooltip--box {
  text-align: center;
}
.step2 .header {
  -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
}
.step2 .header.fix-header {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transition: 200ms all ease-in-out;
  transition: 200ms all ease-in-out;
}
.step2 .header.fix-header.nav-up {
  top: -171px;
}
.step2 .header.fix-header.nav-down {
  top: 0;
}
.step2 .header__top {
  width: 100%;
  height: 60px;
  background-color: #038cd9;
}
.step2 .header__top--right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.step2 .header__top--container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1020px;
  height: 100%;
  margin: auto;
  padding: 0 20px;
}
.step2 .header__bottom {
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .step2 .header__bottom {
    height: 60px;
  }
}
.step2 .header__bottom--menu {
  max-width: 1020px;
  margin: auto;
  padding: 0 20px;
}
@media (min-width: 992px) {
  .step2 .header__bottom--menu {
    height: 100%;
  }
}
.step2 .header-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.step2 .header-logo__brand {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 120px;
  height: 40px;
  background-image: url(./images/fajnsprava_logo_white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.step2 .header-logo__desc {
  display: none;
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #ffffff;
  color: #ffffff;
  font-size: 14px;
}
@media (min-width: 992px) {
  .step2 .header-logo__desc {
    display: block;
  }
}
.step2 .header-right__user {
  display: none;
  margin: 0 1rem 0 0;
  color: #ffffff;
  font-size: 14px;
}
@media (min-width: 992px) {
  .step2 .header-right__user {
    display: block;
  }
}
.step2 .header-right .btn--primary {
  font-size: 14px;
}
.step2 .header-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
}
@media (min-width: 992px) {
  .step2 .header-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.step2 .header-menu__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 5rem;
  margin: 0;
}
@media (min-width: 992px) {
  .step2 .header-menu__item {
    height: 100%;
  }
}
.step2 .header-menu__item a:not(.btn) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0;
  color: #333333;
  font-size: 14px;
}
@media (min-width: 992px) {
  .step2 .header-menu__item a:not(.btn) {
    height: 100%;
    padding: 0;
  }
}
.step2 .header-menu__item a:not(.btn):hover, .step2 .header-menu__item a:not(.btn):focus, .step2 .header-menu__item a:not(.btn).current {
  border-bottom: 3px solid #0091ff;
  color: #0091ff;
}
@media (min-width: 992px) {
  .step2 .header-menu__item a:not(.btn):hover, .step2 .header-menu__item a:not(.btn):focus, .step2 .header-menu__item a:not(.btn).current {
    border-bottom: none;
  }
}
.step2 .header-menu__item .btn--primary {
  min-width: 120px;
}
.step2 .header-menu .tippy-badge, .step2 .header-menu .tippy-badge-show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 20px;
  height: 20px;
  margin-left: 5px;
  border-radius: 50%;
  background-color: #ff8c00;
  color: #ffffff;
  font-size: 12px;
}
.step2 .tabs {
  padding: 2rem 0;
  overflow-x: hidden;
}
.step2 .tabs__step {
  display: none;
  width: 100%;
  margin-bottom: 5rem;
}
.step2 .tabs__step--header {
  margin-bottom: 2rem;
  text-align: center;
}
.step2 .tabs__step--header p {
  margin: 0;
  line-height: 1.2;
  font-size: 18px;
}
@media (min-width: 480px) {
  .step2 .tabs__step--header p {
    font-size: calc(1.25vw + 12px);
  }
}
@media (min-width: 800px) {
  .step2 .tabs__step--header p {
    font-size: 22px;
  }
}
.step2 .tabs__step--footer {
  margin-top: 2rem;
}
.step2 .tabs__step--footer.justify-between {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.5rem;
}
.step2 .tabs__step--footer.justify-between .font15 {
  margin-bottom: 1.5rem;
}
@media (min-width: 600px) {
  .step2 .tabs__step--footer.justify-between {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .step2 .tabs__step--footer.justify-between .font15 {
    margin-bottom: 0;
  }
}
.step2 .tabs__step.active {
  display: block;
}
.step2 .step-header__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  margin: 3rem 0;
}
@media (min-width: 600px) {
  .step2 .step-header__row {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.step2 .step-header__row--left {
  min-width: 12rem;
}
.step2 .step-header__row--left .form-group {
  width: 100%;
  margin-bottom: 0;
}
.step2 .step-header__row--left .form-group .form-group__control {
  width: 100%;
}
.step2 .step-header__row--center {
  -ms-grid-column-align: center;
      justify-self: center;
}
.step2 .step-header__row--right {
  min-width: 12rem;
}
@media (min-width: 600px) {
  .step2 .step-header__row--right {
    padding-right: 5.5rem;
  }
  .step2 .step-header__row--right.no-padding {
    padding-right: 0;
  }
}
.step2 .step-header__row.no-margin {
  margin: 0;
}
@media (max-width: 479px) {
  .step2 .step-header__row.mobile-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .step2 .step-header__row.mobile-vertical .step-header__row--right {
    margin-top: 1rem;
  }
}
.step2 .credit-status {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 3.4rem;
  padding: 0 1rem;
  border: 1px solid transparent;
  border-radius: 0.3rem;
  outline: none;
  background: #f5f5f5;
  color: #898989;
}
.step2 .credit-status span {
  font-size: 1.8rem;
}
.step2 .credit-status span.text-blue {
  margin-left: 0.5rem;
}
.step2 .credit-status.low-credit {
  border-color: rgba(255, 0, 0, 0.1);
  background: rgba(255, 0, 0, 0.33);
}
.step2 .credit-status.low-credit span {
  color: #ff0000;
}
.step2 .plaque {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 8rem;
}
@media (min-width: 600px) {
  .step2 .plaque {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 0;
  }
}
.step2 .plaque__img {
  position: relative;
  width: 20.7rem;
  height: 20.7rem;
  margin: 0 0 0;
  background-image: url(./images/plaketa.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (min-width: 600px) {
  .step2 .plaque__img {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 5.4rem 0 0;
  }
}
.step2 .plaque__img .tippy-help {
  position: absolute;
  top: 3rem;
  right: 2rem;
}
.step2 .plaque__phone {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4.2rem;
}
.step2 .plaque__phone--icon {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 0.8rem;
  background-image: url(./images/phone-icon-orange.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.step2 .plaque__phone--tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.step2 .plaque__phone--tel a {
  color: #898989;
}
.step2 .plaque__phone--tel p {
  margin: 0;
}
.step2 .plaque__phone--tel p .text-orange {
  font-size: 13px;
}
@media (min-width: 480px) {
  .step2 .plaque__phone--tel p .text-orange {
    font-size: calc(0.625vw + 10px);
  }
}
@media (min-width: 800px) {
  .step2 .plaque__phone--tel p .text-orange {
    font-size: 15px;
  }
}
.step2 .plaque__phone--tel p a {
  font-size: 15px;
}
@media (min-width: 480px) {
  .step2 .plaque__phone--tel p a {
    font-size: calc(1.5625vw + 7.5px);
  }
}
@media (min-width: 800px) {
  .step2 .plaque__phone--tel p a {
    font-size: 20px;
  }
}
.step2 .plaque__phone--tel p span a {
  font-size: 15px;
}
@media (min-width: 480px) {
  .step2 .plaque__phone--tel p span a {
    font-size: calc(1.5625vw + 7.5px);
  }
}
@media (min-width: 800px) {
  .step2 .plaque__phone--tel p span a {
    font-size: 20px;
  }
}
.step2 .plaque__phone--tel span a {
  font-size: 15px;
}
.step2 .plaque__text {
  letter-spacing: 0.15px;
  text-align: center;
}
.step2 .credit-box {
  width: 100%;
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 2.4rem;
}
@media (min-width: 600px) {
  .step2 .credit-box {
    display: initial;
    padding: 0 1.6rem;
  }
}
.step2 .credit-box__title {
  margin: 0 0 1rem;
  font-size: 1.8rem;
}
@media (min-width: 600px) {
  .step2 .credit-box__title {
    font-size: 22px;
  }
}
@media (min-width: 600px) and (min-width: 480px) {
  .step2 .credit-box__title {
    font-size: calc(1.25vw + 16px);
  }
}
@media (min-width: 600px) and (min-width: 800px) {
  .step2 .credit-box__title {
    font-size: 26px;
  }
}
.step2 .credit-box p {
  margin: 0 0 1rem;
  font-size: 15px;
}
@media (min-width: 480px) {
  .step2 .credit-box p {
    font-size: calc(0.9375vw + 10.5px);
  }
}
@media (min-width: 800px) {
  .step2 .credit-box p {
    font-size: 18px;
  }
}
.step2 .credit-box p a {
  color: #898989;
  font-size: 15px;
}
@media (min-width: 480px) {
  .step2 .credit-box p a {
    font-size: calc(0.9375vw + 10.5px);
  }
}
@media (min-width: 800px) {
  .step2 .credit-box p a {
    font-size: 18px;
  }
}
.step2 .payment {
  margin: 5.4rem 0 3.2rem;
}
.step2 .payment__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #cccccc;
}
.step2 .payment__header--title {
  margin: 0;
  line-height: 1;
  font-size: 22px;
}
@media (min-width: 480px) {
  .step2 .payment__header--title {
    font-size: calc(1.25vw + 16px);
  }
}
@media (min-width: 800px) {
  .step2 .payment__header--title {
    font-size: 26px;
  }
}
.step2 .person-data {
  margin: 5.4rem 0 3.2rem;
}
.step2 .person-data__header {
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #cccccc;
}
.step2 .person-data__header--title {
  margin: 0;
  line-height: 1;
  font-size: 22px;
}
@media (min-width: 480px) {
  .step2 .person-data__header--title {
    font-size: calc(1.25vw + 16px);
  }
}
@media (min-width: 800px) {
  .step2 .person-data__header--title {
    font-size: 26px;
  }
}
.step2 .person-data .form-group {
  max-width: 25rem;
  margin-right: auto;
  margin-left: auto;
}
.step2 .person-data .btn.btn-ultrabig {
  min-width: 29rem;
}
.step2 .summary {
  position: relative;
}
.step2 .summary__header {
  padding: 3rem 0;
  border-bottom: 1px solid #cccccc;
  text-align: center;
}
@media (min-width: 600px) {
  .step2 .summary__header {
    padding: 0 0 3rem;
    text-align: left;
  }
}
.step2 .summary__header--title {
  margin: 0;
  line-height: 1;
  font-size: 20px;
}
@media (min-width: 480px) {
  .step2 .summary__header--title {
    font-size: calc(1.875vw + 11px);
  }
}
@media (min-width: 800px) {
  .step2 .summary__header--title {
    font-size: 26px;
  }
}
.step2 .summary__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 0.5rem 0;
  border-bottom: 1px solid #cccccc;
}
@media (min-width: 600px) {
  .step2 .summary__row {
    min-height: 6rem;
  }
  .step2 .summary__row .small-row {
    min-height: auto;
  }
}
.step2 .summary__row--col.summary__row--right p {
  text-align: right;
  font-size: 18px;
}
@media (min-width: 480px) {
  .step2 .summary__row--col.summary__row--right p {
    font-size: calc(1.25vw + 12px);
  }
}
@media (min-width: 800px) {
  .step2 .summary__row--col.summary__row--right p {
    font-size: 22px;
  }
}
.step2 .summary__row--col p {
  margin: 0;
}
.step2 .summary__row--col span {
  margin: 0;
}
.step2 .summary__row--table {
  position: relative;
  width: 100%;
}
.step2 .summary__row--table .summary__row {
  width: 100%;
  border-bottom: 0;
}
.step2 .summary__row.summary__footer p {
  margin: 0;
}
.step2 .summary__row.summary__footer p span {
  display: block;
}
.step2 .summary__row .form-group {
  margin-bottom: 0;
}
.step2 .summary .left-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
}
.step2 .summary .left-text__icon {
  display: none;
  width: 7rem;
  height: 7rem;
  min-height: 7rem;
  background-image: url(./images/curved-arrow.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.step2 .summary .left-text__content br {
  display: none;
}
@media (min-width: 1200px) {
  .step2 .summary .left-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -18rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    margin: -7rem auto auto;
  }
  .step2 .summary .left-text__icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .step2 .summary .left-text__content br {
    display: initial;
  }
}
.step2 .summary .left-text p {
  margin: 0.6rem 0 0;
  font-size: 1.8rem;
  font-style: italic;
}
@media (min-width: 600px) {
  .step2 .summary .left-text p {
    font-size: 2rem;
  }
}
.step2 .footer {
  padding: 5rem 0;
  background-color: #f7f7f7;
}
.step2 .footer a {
  -webkit-transition: none;
  transition: none;
}
.step2 .footer__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px;
}
.step2 .footer__headline {
  min-width: 250px;
  color: #9e9e9e;
  font-size: 18px;
  text-transform: uppercase;
}
.step2 .footer__contact {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .step2 .footer__contact {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 60%;
        -ms-flex: 1 0 60%;
            flex: 1 0 60%;
    max-width: 60%;
  }
}
.step2 .footer__phone {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.step2 .footer__phone:last-child {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .step2 .footer__phone {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
.step2 .footer__phone a {
  font-size: 18px;
}
.step2 .footer__phone a:hover, .step2 .footer__phone a:focus {
  text-decoration: underline;
}
.step2 .footer__phone a:hover .footer__phone-prefix, .step2 .footer__phone a:focus .footer__phone-prefix {
  color: #00a8ff;
}
.step2 .footer__phone-prefix {
  color: #9e9e9e;
  font-size: 18px;
}
.step2 .footer__social {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .step2 .footer__social {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 40%;
        -ms-flex: 1 0 40%;
            flex: 1 0 40%;
    max-width: calc(40% - 40px);
  }
}
.step2 .footer__social .footer__headline {
  margin-bottom: 24px;
}
.step2 .footer__social-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.step2 .footer__social-item:last-child {
  margin-bottom: 0;
}
.step2 .footer__social-item a:first-child {
  min-width: 130px;
  font-size: 18px;
  text-decoration: underline;
}
.step2 .footer__social-item a:first-child:hover, .step2 .footer__social-item a:first-child:focus {
  text-decoration: none;
}
.step2 .footer__social-item a img {
  width: 100%;
  max-width: 30px;
}
.step2 .footer__company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}
@media (min-width: 768px) {
  .step2 .footer__company {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.step2 .footer__company-item {
  width: 100%;
  max-width: calc(50% - 20px);
}
@media (min-width: 768px) {
  .step2 .footer__company-item:first-child {
    gap: 8px;
    max-width: 230px;
  }
}
@media (min-width: 768px) {
  .step2 .footer__company-item:nth-of-type(2) {
    max-width: 320px;
  }
}
.step2 .footer__company-item p {
  color: #121419;
}
.step2 .footer__company-item p:last-child {
  margin-bottom: 0;
}
.step2 .tippy-content {
  font-size: 14px;
}
.step2 .tippy-content p {
  font-size: 14px;
}
.step2 .variant-slider {
  width: 23rem;
}
@media (min-width: 800px) {
  .step2 .variant-slider {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    max-width: 800px;
    margin: auto;
  }
}
.step2 .variant-slider__col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@supports (display: grid) {
  .step2 .variant-slider__col {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 0 auto;
        grid-template-areas: "info" "card";
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 0;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.step2 .variant-slider__col--info {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  visibility: hidden;
  grid-area: info;
  margin-bottom: 1.5rem;
}
.step2 .variant-slider__col--info p {
  font-size: 1.3rem;
  text-align: center;
}
@media (min-width: 600px) {
  .step2 .variant-slider__col--info p {
    font-size: 15px;
  }
}
.step2 .variant-slider__col.swiper-slide {
  padding: 0;
}
@media (min-width: 800px) {
  .step2 .variant-slider__col.swiper-slide {
    width: 23rem;
    max-width: 25rem;
    margin: 0;
  }
  .step2 .variant-slider__col.swiper-slide:last-child {
    margin-right: 0 !important;
  }
}
@media (max-width: 599px) {
  .step2 .variant-slider__col:not(.swiper-slide-active) .btn-primary {
    pointer-events: none;
  }
}
.step2 .variant-slider__col.disabled.best .variant-card {
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: #f5f5f5;
}
.step2 .variant-slider__col.disabled .variant-slider__col--info {
  visibility: visible;
}
.step2 .variant-slider__col.disabled .variant-card {
  background-color: #f5f5f5;
}
.step2 .variant-slider__col.disabled .variant-card .variant-card__footer .text-orange {
  color: #898989;
}
.step2 .variant-slider__col.disabled .variant-card .variant-card__btn label {
  background-color: #cccccc;
  pointer-events: none;
}
.step2 .variant-slider__col.disabled .variant-card .variant-card__btn .btn__check {
  pointer-events: none;
}
@media (max-width: 599px) {
  .step2 .variant-slider__col .btn.font-22 {
    font-size: 1.5rem;
  }
}
@media (max-width: 799px) {
  .step2 .variant-slider.swiper-container {
    overflow: visible;
  }
}
@media (min-width: 800px) {
  .step2 .variant-slider .swiper-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@supports (display: grid) {
  .step2 .variant-slider .swiper-wrapper .variant-slider__col:first-child .variant-card {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: card;
  }
  .step2 .variant-slider .swiper-wrapper .variant-slider__col:nth-child(2) .variant-card {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: card;
  }
  .step2 .variant-slider .swiper-wrapper .variant-slider__col:nth-child(3) .variant-card {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: card;
  }
}
.step2 .variant-slider .btn-slider {
  top: 46%;
}
@media (min-width: 800px) {
  .step2 .credit-slider {
    width: 100%;
    max-width: 800px;
    margin: auto;
  }
}
.step2 .credit-slider__title {
  margin: 1rem 0 1rem;
}
.step2 .credit-slider__box {
  width: 17rem;
}
@media (min-width: 800px) {
  .step2 .credit-slider__box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}
.step2 .credit-slider__box--col {
  padding: 0;
}
@media (min-width: 800px) {
  .step2 .credit-slider__box--col {
    width: 100%;
    max-width: 18rem;
    margin: 0;
  }
}
.step2 .credit-slider__box--col .variant-card {
  padding: 1rem;
}
@media (max-width: 599px) {
  .step2 .credit-slider__box--col:not(.swiper-slide-active) .btn-primary {
    pointer-events: none;
  }
}
@media (max-width: 799px) {
  .step2 .credit-slider__box.swiper-container {
    overflow: visible;
  }
}
.step2 .credit-slider__box .btn.btn-slider.swiper-button-prev {
  left: -1.3rem;
}
.step2 .credit-slider__box .btn.btn-slider.swiper-button-next {
  right: -1.3rem;
}
.step2 .credit-slider__copy {
  margin: 0;
  padding: 0;
  font-size: 1.3rem;
}
@media (min-width: 600px) {
  .step2 .credit-slider__copy {
    padding: 0 0 2rem;
    font-size: 15px;
  }
}
.step2 .credit-slider .swiper-wrapper {
  padding: 2rem 0;
}
.step2 .variant-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  background: #ffffff;
}
.step2 .variant-card__star {
  display: none;
  position: absolute;
  top: -1.5rem;
  right: 0;
  left: 0;
  width: 2.6rem;
  height: 2.6rem;
  margin: auto;
  background-image: url(./images/icon-star.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.step2 .variant-card__header {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.step2 .variant-card__header--title {
  margin: 0;
  text-align: center;
  font-size: 22px;
}
@media (min-width: 480px) {
  .step2 .variant-card__header--title {
    font-size: calc(1.25vw + 16px);
  }
}
@media (min-width: 800px) {
  .step2 .variant-card__header--title {
    font-size: 26px;
  }
}
.step2 .variant-card__header--subtitle {
  font-size: 15px;
}
@media (min-width: 480px) {
  .step2 .variant-card__header--subtitle {
    font-size: calc(0.9375vw + 10.5px);
  }
}
@media (min-width: 800px) {
  .step2 .variant-card__header--subtitle {
    font-size: 18px;
  }
}
.step2 .variant-card__header .tippy-help {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.step2 .variant-card__perex {
  margin-bottom: 1.5rem;
}
@media (min-width: 600px) {
  .step2 .variant-card__perex {
    padding: 0 1rem;
  }
}
.step2 .variant-card__perex--list {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}
.step2 .variant-card__perex--list li {
  text-align: center;
  font-size: 13px;
}
@media (min-width: 480px) {
  .step2 .variant-card__perex--list li {
    font-size: calc(0.625vw + 10px);
  }
}
@media (min-width: 800px) {
  .step2 .variant-card__perex--list li {
    font-size: 15px;
  }
}
.step2 .variant-card__perex p {
  margin-bottom: 0;
  text-align: center;
  font-size: 15px;
}
@media (min-width: 480px) {
  .step2 .variant-card__perex p {
    font-size: calc(0.9375vw + 10.5px);
  }
}
@media (min-width: 800px) {
  .step2 .variant-card__perex p {
    font-size: 18px;
  }
}
.step2 .variant-card__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  min-height: 5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: 600px) {
  .step2 .variant-card__info {
    min-height: 6rem;
  }
}
.step2 .variant-card__info span {
  letter-spacing: 0.14px;
  font-size: 18px;
}
@media (min-width: 480px) {
  .step2 .variant-card__info span {
    font-size: calc(1.25vw + 12px);
  }
}
@media (min-width: 800px) {
  .step2 .variant-card__info span {
    font-size: 22px;
  }
}
.step2 .variant-card__info--no {
  font-size: 18px;
}
@media (min-width: 480px) {
  .step2 .variant-card__info--no {
    font-size: calc(1.25vw + 12px);
  }
}
@media (min-width: 800px) {
  .step2 .variant-card__info--no {
    font-size: 22px;
  }
}
.step2 .variant-card__info--text {
  font-size: 15px;
}
@media (min-width: 480px) {
  .step2 .variant-card__info--text {
    font-size: calc(0.9375vw + 10.5px);
  }
}
@media (min-width: 800px) {
  .step2 .variant-card__info--text {
    font-size: 18px;
  }
}
.step2 .variant-card__price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 4rem;
}
.step2 .variant-card__price.border-bottom {
  min-height: auto;
}
.step2 .variant-card__price strong,
.step2 .variant-card__price span {
  font-size: 18px;
}
@media (min-width: 480px) {
  .step2 .variant-card__price strong,
  .step2 .variant-card__price span {
    font-size: calc(1.25vw + 12px);
  }
}
@media (min-width: 800px) {
  .step2 .variant-card__price strong,
  .step2 .variant-card__price span {
    font-size: 22px;
  }
}
.step2 .variant-card__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-bottom: 1.5rem;
}
.step2 .variant-card__btn label {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 80%;
  height: 4rem;
  padding: 0.3rem 2rem;
  border-radius: 0;
  border-radius: 3px;
  background: #2ea5d1;
  color: #ffffff;
  cursor: pointer;
}
.step2 .variant-card__btn label:before {
  content: "";
  position: absolute;
  z-index: 99;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  cursor: pointer;
}
.step2 .variant-card__btn label:after {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  color: #ffffff;
}
.step2 .variant-card__btn label.selected {
  background: #7ac943;
}
.step2 .variant-card__btn label.selected:hover, .step2 .variant-card__btn label.selected:focus {
  background: #0de90d;
}
.step2 .variant-card__btn label:hover, .step2 .variant-card__btn label:focus {
  background: #00a8ff;
}
.step2 .variant-card__btn label span {
  cursor: pointer;
}
.step2 .variant-card__btn .font-22 {
  margin: 0;
}
.step2 .variant-card__btn input[type=radio]:checked + label {
  color: transparent;
}
.step2 .variant-card__btn input[type=radio]:checked + label:after {
  content: "vybrat";
}
.step2 .variant-card__btn input[type=radio]:checked + label {
  background: #7ac943;
  color: transparent;
}
.step2 .variant-card__btn input[type=radio]:checked + label:hover, .step2 .variant-card__btn input[type=radio]:checked + label:focus {
  background: #0de90d;
}
.step2 .variant-card__btn input[type=radio]:checked + label:after {
  content: "vybráno";
}
.step2 .variant-card__footer p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
  text-align: center;
  font-size: 15px;
}
@media (min-width: 480px) {
  .step2 .variant-card__footer p {
    font-size: calc(1.5625vw + 7.5px);
  }
}
@media (min-width: 800px) {
  .step2 .variant-card__footer p {
    font-size: 20px;
  }
}
.step2 .variant-card__footer p span {
  font-size: 15px;
}
@media (min-width: 480px) {
  .step2 .variant-card__footer p span {
    font-size: calc(1.5625vw + 7.5px);
  }
}
@media (min-width: 800px) {
  .step2 .variant-card__footer p span {
    font-size: 20px;
  }
}
.step2 .variant-card .border-bottom {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}
.step2 .variant-card .mid {
  margin: 0 0 1.5rem;
}
.step2 .variant-slider__col.best .variant-card {
  border: 1px solid rgba(18, 20, 25, 0.07);
  background: rgba(46, 165, 209, 0.07);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.step2 .variant-slider__col.best .variant-card__star {
  display: block;
}
.step2 .credit-slider__box--col .variant-card__header .tippy-help {
  top: 0.3rem;
  bottom: auto;
}
.step2 .credit-slider__box--col.best .variant-card {
  border: 1px solid rgba(18, 20, 25, 0.07);
  background: rgba(46, 165, 209, 0.07);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.step2 .credit-slider__box--col.best .variant-card__star {
  display: block;
}

.step2-theme {
  /* ==========================================================================
      FONTS
    ========================================================================== */
  /* ==========================================================================
      HEADER
    ========================================================================== */
  /* ==========================================================================
      MAIN 
    ========================================================================== */
  /**************************************
            UTILITY CLASSES
  **************************************/
  /* ==========================================================================
      FOOTER
    ========================================================================== */
  /* ==========================================================================
      BUTTONS
    ========================================================================== */
  /* ==========================================================================
      HELP TOOLTIP
    ========================================================================== */
  /* ==========================================================================
      HELPERS
    ========================================================================== */
  /* ==========================================================================
      HEADER
    ========================================================================== */
  /**********************************
          Společné prvky
  **********************************/
  /**********************************
  Kde si přejete uveřejnit inzerát?
  **********************************/
  /* Edit modal */
}
.step2-theme body.admin-theme {
  color: #038cd9;
}
.step2-theme h1 {
  margin: 0 0 1.6rem;
  line-height: 1.125;
  font-size: 32px;
}
@media (min-width: 480px) {
  .step2-theme h1 {
    font-size: calc(5vw + 8px);
  }
}
@media (min-width: 800px) {
  .step2-theme h1 {
    font-size: 48px;
  }
}
.step2-theme h2 {
  margin: 1.6rem 0 1.6rem;
  line-height: 1.25;
  font-size: 22px;
}
@media (min-width: 480px) {
  .step2-theme h2 {
    font-size: calc(1.25vw + 16px);
  }
}
@media (min-width: 800px) {
  .step2-theme h2 {
    font-size: 26px;
  }
}
.step2-theme h2 span {
  font-size: inherit;
}
.step2-theme h3,
.step2-theme .font-22 {
  margin: 1.6rem 0;
  line-height: 1.25;
  font-size: 18px;
}
@media (min-width: 480px) {
  .step2-theme h3,
  .step2-theme .font-22 {
    font-size: calc(1.25vw + 12px);
  }
}
@media (min-width: 800px) {
  .step2-theme h3,
  .step2-theme .font-22 {
    font-size: 22px;
  }
}
.step2-theme h3 span,
.step2-theme h3 p,
.step2-theme h3 a,
.step2-theme .font-22 span,
.step2-theme .font-22 p,
.step2-theme .font-22 a {
  font-size: inherit;
}
.step2-theme h4,
.step2-theme .font-20 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 16px;
}
@media (min-width: 480px) {
  .step2-theme h4,
  .step2-theme .font-20 {
    font-size: calc(0.625vw + 13px);
  }
}
@media (min-width: 800px) {
  .step2-theme h4,
  .step2-theme .font-20 {
    font-size: 18px;
  }
}
.step2-theme p {
  margin-bottom: 1rem;
  letter-spacing: 0.08px;
  font-size: 14px;
}
@media (min-width: 480px) {
  .step2-theme p {
    font-size: calc(0vw + 14px);
  }
}
@media (min-width: 800px) {
  .step2-theme p {
    font-size: 14px;
  }
}
.step2-theme ul,
.step2-theme li,
.step2-theme span,
.step2-theme a {
  letter-spacing: 0.08px;
  font-size: 14px;
}
@media (min-width: 480px) {
  .step2-theme ul,
  .step2-theme li,
  .step2-theme span,
  .step2-theme a {
    font-size: calc(0vw + 14px);
  }
}
@media (min-width: 800px) {
  .step2-theme ul,
  .step2-theme li,
  .step2-theme span,
  .step2-theme a {
    font-size: 14px;
  }
}
.step2-theme ol li,
.step2-theme ul li {
  margin-bottom: 0.5rem;
}
.step2-theme .main-title {
  color: #333333;
  font-size: 32px;
}
@media (min-width: 480px) {
  .step2-theme .main-title {
    font-size: calc(5vw + 8px);
  }
}
@media (min-width: 800px) {
  .step2-theme .main-title {
    font-size: 48px;
  }
}
.step2-theme .main-title.inline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 991px) {
  .step2-theme .main-title.inline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .step2-theme .main-title.inline .dropdown {
    width: auto;
  }
}
.step2-theme .main-title .orange {
  font-size: inherit;
}
.step2-theme .main-perex {
  color: #333333;
  font-size: 16px;
}
@media (min-width: 480px) {
  .step2-theme .main-perex {
    font-size: calc(0.625vw + 13px);
  }
}
@media (min-width: 800px) {
  .step2-theme .main-perex {
    font-size: 18px;
  }
}
.step2-theme .main-perex a {
  color: #0074ff;
  font-size: inherit;
}
.step2-theme .main-perex a:hover {
  color: #00a8ff;
}
.step2-theme .admin-list {
  margin-bottom: 24px;
}
.step2-theme .admin-list li {
  color: #333333;
  font-size: 16px;
}
@media (min-width: 480px) {
  .step2-theme .admin-list li {
    font-size: calc(0.625vw + 13px);
  }
}
@media (min-width: 800px) {
  .step2-theme .admin-list li {
    font-size: 18px;
  }
}
.step2-theme .admin-list li a {
  color: #0074ff;
  font-size: inherit;
}
.step2-theme .admin-list li a:hover, .step2-theme .admin-list li a:focus {
  color: #00a8ff;
}
.step2-theme .inline-list {
  display: block;
  margin-bottom: 24px;
  padding-left: 0;
  list-style: none;
}
.step2-theme .inline-list li {
  display: inline-block;
  color: #9e9e9e;
  font-size: 16px;
}
@media (min-width: 480px) {
  .step2-theme .inline-list li {
    font-size: calc(0.625vw + 13px);
  }
}
@media (min-width: 800px) {
  .step2-theme .inline-list li {
    font-size: 18px;
  }
}
.step2-theme .inline-list li a {
  color: #0074ff;
  font-size: inherit;
}
.step2-theme .inline-list li a:hover, .step2-theme .inline-list li a:focus {
  color: #00a8ff;
}
.step2-theme .uppercase {
  text-transform: uppercase;
}
.step2-theme .center {
  text-align: center;
}
.step2-theme .red {
  color: #ff0000;
}
.step2-theme .blue {
  color: #0074ff;
}
.step2-theme .orange {
  color: #ff8c00;
}
.step2-theme .table-text-gray,
.step2-theme .text-gray {
  color: #898989;
}
.step2-theme .header {
  -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
}
.step2-theme .header.fix-header {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transition: 200ms all ease-in-out;
  transition: 200ms all ease-in-out;
}
.step2-theme .header.fix-header.nav-up {
  top: -180px;
}
.step2-theme .header.fix-header.nav-down {
  top: 0;
}
.step2-theme .header__top {
  width: 100%;
  height: 6rem;
  background-color: #038cd9;
}
.step2-theme .header__top--right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.step2-theme .header__top--container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1020px;
  height: 100%;
  margin: auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .step2-theme .header__top--container {
    padding: 4px 8px;
  }
}
.step2-theme .header__bottom {
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .step2-theme .header__bottom {
    height: 6rem;
  }
}
.step2-theme .header__bottom--menu {
  max-width: 1020px;
  margin: auto;
  padding: 0 2rem;
}
@media (min-width: 992px) {
  .step2-theme .header__bottom--menu {
    height: 100%;
  }
}
.step2-theme .header__bottom--container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1020px;
  height: 100%;
  margin: auto;
  padding: 0 2rem;
  color: #333639;
}
.step2-theme .header__bottom--container p {
  margin: 0 32px 0 0;
}
@media (max-width: 599px) {
  .step2-theme .header__bottom--container p {
    margin: 0 0 32px 0;
  }
}
.step2-theme .header-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.step2-theme .header-logo__picture img {
  width: auto;
  height: 40px;
}
.step2-theme .header-logo__desc {
  display: none;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid #ffffff;
  color: #ffffff;
}
@media (min-width: 992px) {
  .step2-theme .header-logo__desc {
    display: block;
  }
}
.step2-theme .header-right__user {
  display: none;
  margin: 0 1rem 0 0;
  color: #ffffff;
}
@media (min-width: 992px) {
  .step2-theme .header-right__user {
    display: block;
  }
}
@media (max-width: 479px) {
  .step2-theme .header-right .btn--primary {
    font-size: 1rem;
  }
}
.step2-theme .header-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
}
@media (min-width: 992px) {
  .step2-theme .header-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.step2-theme .header-menu__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 5rem;
  margin: 0;
}
@media (min-width: 992px) {
  .step2-theme .header-menu__item {
    height: 100%;
  }
}
.step2-theme .header-menu__item a:not(.btn) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0;
  color: #333333;
}
@media (min-width: 992px) {
  .step2-theme .header-menu__item a:not(.btn) {
    height: 100%;
    padding: 0;
  }
}
.step2-theme .header-menu__item a:not(.btn):hover, .step2-theme .header-menu__item a:not(.btn):focus, .step2-theme .header-menu__item a:not(.btn).current {
  border-bottom: 3px solid #0091ff;
  color: #0091ff;
}
@media (min-width: 992px) {
  .step2-theme .header-menu__item a:not(.btn):hover, .step2-theme .header-menu__item a:not(.btn):focus, .step2-theme .header-menu__item a:not(.btn).current {
    border-bottom: none;
  }
}
.step2-theme .header-menu__item .btn--primary {
  min-width: 12rem;
}
.step2-theme .header-menu .tippy-badge, .step2-theme .header-menu .tippy-badge-show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 2rem;
  height: 2rem;
  margin-left: 0.5rem;
  padding: 0 0.5rem;
  border-radius: 10px;
  background-color: #ff8c00;
  color: #ffffff;
  font-size: 1.2rem;
}
.step2-theme .header__rating {
  padding: 8px 0;
  background: #ebf1f8;
}
.step2-theme .header__rating .header__top--container p {
  margin: 0;
  padding-right: 8px;
  color: #333333;
}
.step2-theme .header__rating .header__top--container .btn {
  min-width: 110px;
  margin: 2px 0;
  font-size: 14px;
}
.step2-theme .main-content {
  margin-top: 6rem;
}
@media (min-width: 992px) {
  .step2-theme .main-content {
    margin-top: 12rem;
  }
}
.step2-theme .main-content.zero-margin-top {
  margin-top: 0;
}
.step2-theme .main-header {
  position: relative;
  margin: 3rem 0 2rem;
}
.step2-theme .main-header .invisiblePerex {
  display: none;
}
.step2-theme .main-header.showPerex .invisiblePerex {
  display: block;
}
.step2-theme .main-header__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2rem 0;
}
.step2-theme .main-header__meta__holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 50px;
  margin-right: 3rem;
}
.step2-theme .main-header__meta--author, .step2-theme .main-header__meta--date {
  display: inline-block;
  color: #898989;
  font-size: 1.8rem;
}
.step2-theme .main-header__meta--divider {
  display: inline-block;
  margin: 0 0.5rem;
  color: #898989;
}
.step2-theme .main-header__meta .act-item__content--taggroup {
  margin-right: 2rem;
}
.step2-theme .contact-center-perex {
  width: 100%;
  margin: 48px auto 24px;
  color: #333333;
  text-align: center;
  font-size: 16px;
}
@media (min-width: 480px) {
  .step2-theme .contact-center-perex {
    font-size: calc(0.625vw + 13px);
  }
}
@media (min-width: 800px) {
  .step2-theme .contact-center-perex {
    font-size: 18px;
  }
}
.step2-theme .contact-center-perex strong {
  font-size: 18px;
}
@media (min-width: 480px) {
  .step2-theme .contact-center-perex strong {
    font-size: calc(1.25vw + 12px);
  }
}
@media (min-width: 800px) {
  .step2-theme .contact-center-perex strong {
    font-size: 22px;
  }
}
.step2-theme .contact-center-perex a {
  color: #0074ff;
  font-size: inherit;
}
.step2-theme .contact-center-perex a:hover, .step2-theme .contact-center-perex a:focus {
  color: #00a8ff;
  text-decoration: underline;
}
.step2-theme .divider {
  width: 100%;
  max-width: 300px;
  height: 2px;
  margin: 48px auto;
  background-color: #f6f6f6;
}
.step2-theme .pic-media-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  width: 100%;
  margin: 48px 0 64px;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 24px;
}
@media (min-width: 600px) {
  .step2-theme .pic-media-grid {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
.step2-theme .pic-media-grid__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}
@media (min-width: 600px) {
  .step2-theme .pic-media-grid__item:nth-child(even) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/span 2;
  }
  .step2-theme .pic-media-grid__item:nth-child(odd) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3/span 2;
  }
}
.step2-theme .pic-media-grid__item--pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.66%;
  overflow: hidden;
}
.step2-theme .pic-media-grid__item--pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.step2-theme .pic-media-grid__item--pic.video-iframe {
  padding-top: 56.25%;
}
.step2-theme .pic-media-grid__item--pic.video-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.step2-theme .pic-media-grid__item--text {
  margin-top: 12px;
  color: #333333;
  font-size: 14px;
}
@media (min-width: 480px) {
  .step2-theme .pic-media-grid__item--text {
    font-size: calc(0vw + 14px);
  }
}
@media (min-width: 800px) {
  .step2-theme .pic-media-grid__item--text {
    font-size: 14px;
  }
}
.step2-theme .pic-media-grid__item.fullwidth {
  -ms-grid-column: 1;
  grid-column: 1;
}
@media (min-width: 600px) {
  .step2-theme .pic-media-grid__item.fullwidth {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/span 4;
  }
}
.step2-theme .news-bottom-share {
  text-align: center;
}
.step2-theme .news-bottom-share__social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.step2-theme .news-bottom-share__social a {
  margin-right: 20px;
}
.step2-theme .news-bottom-share__social a:last-child {
  margin-right: 0;
}
.step2-theme .news-bottom-share__social a img {
  width: 100%;
  max-width: 48px;
}
.step2-theme .main-perex {
  margin-bottom: 1rem;
}
.step2-theme .main-perex span {
  color: #121419;
  font-weight: 500;
}
.step2-theme .primary-perex {
  margin-bottom: 40px;
  color: #121419;
}
.step2-theme .required-field,
.step2-theme .required-field--top-space {
  position: relative;
  padding: 25px 0;
  border: 2px solid #d82942;
  border-radius: 20px;
}
.step2-theme .required-field--top-space,
.step2-theme .required-field--top-space--top-space {
  padding: 50px 0 25px 0;
}
.step2-theme .required-field--text,
.step2-theme .required-field--top-space--text {
  position: absolute;
  bottom: -40px;
  left: 14px;
  margin-bottom: 0;
  color: #d82942;
}
@media (max-width: 1019px) {
  .step2-theme .required-field--text,
  .step2-theme .required-field--top-space--text {
    display: block;
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin: 20px 0 0 0;
    text-align: center;
  }
}
.step2-theme .text-under-block {
  margin-top: 16px;
  color: #333333;
  font-size: 14px;
  text-align: center;
}
.step2-theme .text-under-block--center {
  text-align: center;
}
.step2-theme .continue-arrow {
  margin-top: 24px;
  text-align: center;
}
@media (max-width: 1019px) {
  .step2-theme .continue-arrow {
    max-width: 100px;
    margin: 28px auto;
  }
}
.step2-theme .continue-arrow img {
  width: 100%;
  max-width: 200px;
}
.step2-theme .col-small-padding {
  padding-right: 6px;
  padding-left: 6px;
}
.step2-theme .light-weight {
  font-weight: 400 !important;
}
.step2-theme .semi-light-weight {
  font-weight: 400 !important;
}
.step2-theme .bold-weight {
  font-weight: 500 !important;
}
.step2-theme .orange {
  color: #ff8c00 !important;
}
.step2-theme .font-18 {
  color: #333333 !important;
  font-size: 18px !important;
  letter-spacing: 0 !important;
  line-height: 23px !important;
}
.step2-theme .font-24 {
  margin: 0 !important;
  color: #333333 !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 30px !important;
}
.step2-theme .rounded-gray-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4rem;
  border: 1px solid #cccccc;
  border-radius: 18px;
  background-color: #f8f8f8;
}
@media (max-width: 575px) {
  .step2-theme .rounded-gray-item {
    padding: 2rem;
  }
}
.step2-theme .rounded-gray-item .primary-text {
  margin-bottom: 0;
  color: #333333;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}
.step2-theme .rounded-gray-item .primary-text span {
  margin-bottom: 0;
  color: #333333;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}
.step2-theme .rounded-gray-item .light-text,
.step2-theme .rounded-gray-item .small-text {
  margin-bottom: 0;
  color: #333333;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
}
.step2-theme .rounded-gray-item .small-text {
  font-size: 14px;
}
.step2-theme .footer {
  padding: 5rem 0;
  background-color: #f7f7f7;
}
.step2-theme .footer a {
  -webkit-transition: none;
  transition: none;
}
.step2-theme .footer__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px;
}
.step2-theme .footer__headline {
  min-width: 250px;
  color: #9e9e9e;
  font-size: 18px;
  text-transform: uppercase;
}
.step2-theme .footer__contact {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .step2-theme .footer__contact {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 60%;
        -ms-flex: 1 0 60%;
            flex: 1 0 60%;
    max-width: 60%;
  }
}
.step2-theme .footer__phone {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.step2-theme .footer__phone:last-child {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .step2-theme .footer__phone {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
.step2-theme .footer__phone a {
  font-size: 18px;
}
.step2-theme .footer__phone a:hover, .step2-theme .footer__phone a:focus {
  text-decoration: underline;
}
.step2-theme .footer__phone a:hover .footer__phone-prefix, .step2-theme .footer__phone a:focus .footer__phone-prefix {
  color: #00a8ff;
}
.step2-theme .footer__phone-prefix {
  color: #9e9e9e;
  font-size: 18px;
}
.step2-theme .footer__social {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .step2-theme .footer__social {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 40%;
        -ms-flex: 1 0 40%;
            flex: 1 0 40%;
    max-width: calc(40% - 40px);
  }
}
.step2-theme .footer__social .footer__headline {
  margin-bottom: 24px;
}
.step2-theme .footer__social-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.step2-theme .footer__social-item:last-child {
  margin-bottom: 0;
}
.step2-theme .footer__social-item a:first-child {
  min-width: 130px;
  font-size: 18px;
  text-decoration: underline;
}
.step2-theme .footer__social-item a:first-child:hover, .step2-theme .footer__social-item a:first-child:focus {
  text-decoration: none;
}
.step2-theme .footer__social-item a img {
  width: 100%;
  max-width: 30px;
}
.step2-theme .footer__company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}
@media (min-width: 768px) {
  .step2-theme .footer__company {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.step2-theme .footer__company-item {
  width: 100%;
  max-width: calc(50% - 20px);
}
@media (min-width: 768px) {
  .step2-theme .footer__company-item:first-child {
    gap: 8px;
    max-width: 230px;
  }
}
@media (min-width: 768px) {
  .step2-theme .footer__company-item:nth-of-type(2) {
    max-width: 320px;
  }
}
.step2-theme .footer__company-item p {
  color: #121419;
}
.step2-theme .footer__company-item p:last-child {
  margin-bottom: 0;
}
.step2-theme .btn--primary {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3.5rem;
  padding: 0.3rem 1rem;
  border-radius: 5px;
  background: #0074ff;
  color: #ffffff;
}
.step2-theme .btn--primary:hover, .step2-theme .btn--primary:focus {
  background: #00a8ff;
  color: #ffffff;
}
.step2-theme .btn--secondary {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 4rem;
  padding: 0.3rem 1rem;
  border: 1px solid #cccccc;
  border-radius: 5px;
  background-color: #ffffff;
  color: #333333;
}
.step2-theme .btn--secondary:hover, .step2-theme .btn--secondary:focus {
  background-color: rgba(18, 20, 25, 0.05);
}
.step2-theme .btn--link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3.5rem;
  padding: 0.3rem 1rem;
  border-radius: 5px;
  background: transparent;
  color: #0074ff;
}
.step2-theme .btn--link:hover, .step2-theme .btn--link:focus {
  background: transparent;
  color: #00a8ff;
}
.step2-theme .btn--link-more {
  margin-left: 10px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .step2-theme .btn--link-more {
    margin-top: 0;
    padding: 0;
  }
}
.step2-theme .btn--link img {
  max-width: 9px;
  margin-left: 4px;
}
.step2-theme .btn--download {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-right: 5rem;
  color: #0074ff;
}
@media (max-width: 479px) {
  .step2-theme .btn--download span {
    font-size: 1.2rem;
  }
}
.step2-theme .btn--download:after {
  content: "";
  position: absolute;
  top: 0;
  right: 1.5rem;
  bottom: 0;
  width: 1.7rem;
  height: 2rem;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.step2-theme .btn--download.pdf:after {
  background-image: url(./images/pdf-icon.svg);
}
.step2-theme .btn--download.xls:after {
  background-image: url(./images/xls-icon.svg);
}
.step2-theme .btn--filter {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 4rem;
  padding: 0 2rem;
}
.step2-theme .btn--filter img {
  margin-right: 1rem;
}
@media (min-width: 992px) {
  .step2-theme .btn--filter {
    display: none;
  }
}
.step2-theme .btn--menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
  background: transparent;
}
@media (min-width: 992px) {
  .step2-theme .btn--menu {
    display: none;
  }
}
.step2-theme .btn--menu .btn--menu__line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 2.8rem;
  height: 2px;
  margin: 0.3rem 0;
  background: #ffffff;
}
.step2-theme .btn--close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
  background: transparent;
}
@media (min-width: 992px) {
  .step2-theme .btn--close {
    display: none;
  }
}
.step2-theme .btn--red {
  background-color: #d95e1c;
}
.step2-theme .btn--red:hover, .step2-theme .btn--red:focus {
  background-color: rgb(171.8285714286, 74.4326530612, 22.1714285714);
}
.step2-theme .btn--big {
  height: 6rem;
  padding: 1rem 4rem;
  border-radius: 5px;
  color: #ffffff;
  font-size: 2.2rem;
}
@media (min-width: 992px) {
  .step2-theme .btn--big {
    padding: 1rem 6rem;
  }
}
.step2-theme .btn--add {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1.5rem 0;
  border: none;
  background-color: transparent;
  color: rgba(51, 51, 51, 0.5);
  font-size: 1.4rem;
}
.step2-theme .btn--add__icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: #0074ff;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
}
.step2-theme .btn--submit-form {
  position: relative;
  border-radius: 40px;
  padding: 16px 32px;
  background-color: #0091ff;
  color: #ffffff;
  font-size: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.step2-theme .btn--submit-form:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.step2-theme .btn--icon {
  font-size: 2rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 200px;
  height: 50px;
  border-radius: 25px;
  background-color: #0074ff;
  color: #ffffff;
}
@media (max-width: 575px) {
  .step2-theme .btn--icon {
    font-size: 1.8rem;
  }
}
.step2-theme .btn--icon:hover {
  background-color: #00a8ff;
  color: #ffffff;
}
.step2-theme .btn--icon img {
  width: auto;
  max-height: 20px;
  margin-right: 16px;
}
@media (max-width: 575px) {
  .step2-theme .btn--icon img {
    max-width: 16px;
  }
}
.step2-theme .btn--icon--outline {
  border: 1px solid #0074ff;
  background: #ffffff;
  color: #0074ff;
}
.step2-theme .btn--icon--outline:hover {
  background-color: #f8f8f8;
  color: #0074ff;
}
.step2-theme .btn.btn-simple {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5rem;
}
.step2-theme .btn.btn-simple img {
  margin-right: 0.5rem;
}
.step2-theme .btn.btn-simple span {
  font-size: 15px;
}
.step2-theme .btn.btn-primary {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  padding: 3px 20px;
  border-radius: 0;
  border-radius: 3px;
  background: #2ea5d1;
  color: #ffffff;
}
.step2-theme .btn.btn-primary:hover, .step2-theme .btn.btn-primary:focus {
  background: #00a8ff;
}
.step2-theme .btn.btn-green {
  background: #7ac943;
}
.step2-theme .btn.btn-green:hover, .step2-theme .btn.btn-green:focus {
  background: #0de90d;
}
.step2-theme .btn.btn-orange {
  background: #ff8c00;
}
.step2-theme .btn.btn-orange:hover, .step2-theme .btn.btn-orange:focus {
  background: rgb(255, 174.5, 76.5);
}
.step2-theme .btn.btn-min-width-170 {
  min-width: 17rem;
}
.step2-theme .btn.btn--90 {
  min-width: 90px;
}
.step2-theme .btn--animate-wrapper {
  position: relative;
}
.step2-theme .btn--animate-wrapper:before {
  content: "";
  position: absolute;
  top: calc(50% - 20px);
  left: 16px;
  width: 40px;
  height: 40px;
  opacity: 0;
  background-image: url(images/preloader.svg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}
.step2-theme .btn--animate-wrapper .btn {
  position: relative;
  position: relative;
  min-width: 300px;
  min-height: 70px;
  border-radius: 40px;
  background-color: #0091ff;
}
.step2-theme .btn--animate-wrapper .btn:hover, .step2-theme .btn--animate-wrapper .btn:focus {
  background-color: #0074cc;
}
.step2-theme .btn--animate-wrapper.animate-active {
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.step2-theme .btn--animate-wrapper.animate-active:before {
  -webkit-animation: rotating 0.75s linear infinite;
  animation: rotating 0.75s linear infinite;
  opacity: 1;
}
.step2-theme .btn--animate-wrapper.animate-active .btn {
  opacity: 0.5;
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.step2-theme #step2-submit:disabled,
.step2-theme #step2-submit[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.step2-theme .pricing-btn,
.step2-theme .pricing-btn--view {
  position: relative;
  height: 4rem;
  padding-right: 5rem;
  padding-left: 5rem;
  border-radius: 20px;
  background-color: #0091ff;
  font-size: 20px;
  font-weight: 500;
}
.step2-theme .pricing-btn::before,
.step2-theme .pricing-btn--view::before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  opacity: 0;
  background-image: url("./images/tick.svg");
  background-size: cover;
}
.step2-theme .pricing-btn span,
.step2-theme .pricing-btn--view span {
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  font-size: 20px;
}
.step2-theme .pricing-btn:hover, .step2-theme .pricing-btn:focus,
.step2-theme .pricing-btn--view:hover,
.step2-theme .pricing-btn--view:focus {
  outline: none;
  background-color: #0074cc;
  text-decoration: none;
}
.step2-theme .pricing-btn.btn--big,
.step2-theme .pricing-btn--view.btn--big {
  height: 7rem;
  border-radius: 40px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 28px;
}
.step2-theme .pricing-btn--view {
  padding-right: 4rem;
  padding-left: 4rem;
}
@media (max-width: 767px) {
  .step2-theme .pricing-btn--view {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 575px) {
  .step2-theme .pricing-btn--view {
    height: auto;
    padding: 1rem;
  }
}
.step2-theme .pricing-btn--view::before {
  background-image: url("./images/search.svg");
}
@media (max-width: 767px) {
  .step2-theme .pricing-btn--view::before {
    content: none;
  }
}
.step2-theme .pricing-btn--view span {
  font-size: 16px;
}
.step2-theme .pricing-btn--view:hover::before, .step2-theme .pricing-btn--view:focus::before {
  left: 20px;
  opacity: 1;
}
.step2-theme .pricing-btn--view:hover span, .step2-theme .pricing-btn--view:focus span {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
@media (max-width: 767px) {
  .step2-theme .pricing-btn--view:hover span, .step2-theme .pricing-btn--view:focus span {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.step2-theme .back-link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 3rem;
  -webkit-transition: 200ms all ease-in-out;
  transition: 200ms all ease-in-out;
  color: #0074ff;
}
.step2-theme .back-link:hover {
  text-decoration: none;
}
.step2-theme .back-link:hover span {
  text-decoration: underline;
}
.step2-theme .back-link span {
  font-size: 16px;
}
.step2-theme .back-link--indent-top {
  margin-top: 10rem;
}
@-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);
  }
}
@-webkit-keyframes half-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@keyframes half-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
.step2-theme .rotate {
  -webkit-animation: half-rotate 0s forwards;
          animation: half-rotate 0s forwards;
}
.step2-theme .tippy-admin-help {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin: 0 0.5rem;
  border-radius: 50%;
  background: url(./images/help-icon.svg) no-repeat center center;
  background-size: cover;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.step2-theme .help-btn {
  display: none;
  position: absolute;
  top: -1rem;
  right: 0rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: #6D7278;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  color: #ffffff;
}
@media (min-width: 992px) {
  .step2-theme .help-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1340px) {
  .step2-theme .help-btn {
    right: -4rem;
  }
}
.step2-theme .tooltip--box {
  padding: 1rem 2rem;
  border-radius: 4rem !important;
  background-color: #0091ff !important;
  text-align: center;
}
.step2-theme .rounded-item {
  position: relative;
}
.step2-theme .rounded-item--gold .rounded-item__tag {
  background: #ff8c00;
}
.step2-theme .rounded-item--gold .rounded-item__label {
  background-color: #fff2e1;
}
.step2-theme .rounded-item--light-blue .rounded-item__tag {
  background: #0091ff;
}
.step2-theme .rounded-item--light-blue .rounded-item__label {
  background-color: #e6f4ff;
}
@media (max-width: 767px) {
  .step2-theme .rounded-item {
    margin-bottom: 16px;
  }
}
.step2-theme .rounded-item__tag {
  display: inline-block;
  height: 100px;
  margin-bottom: -66px;
  padding: 8px 16px;
  border-radius: 20px;
  background: #cccccc;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.step2-theme .rounded-item__exhausted {
  text-align: center;
}
.step2-theme .rounded-item__tooltip {
  position: absolute;
  top: 8px;
  right: 4px;
  width: 16px;
  height: 16px;
}
.step2-theme .rounded-item__tooltip.tippy-outside {
  z-index: 2;
}
@media (max-width: 767px) {
  .step2-theme .rounded-item__tooltip.tippy-outside {
    top: 4px;
    right: 0;
    width: 23px;
    height: 23px;
  }
}
.step2-theme .rounded-item__tooltip.tippy-outside-two {
  right: 0;
}
.step2-theme .rounded-item__tooltip.tippy-outside--top {
  top: 40px;
  right: 0;
}
.step2-theme .rounded-item__tooltip.tippy-outside--top--sec {
  top: 95px;
}
@media (max-width: 1019px) {
  .step2-theme .rounded-item__tooltip.tippy-outside--top--sec {
    top: 75px;
  }
}
.step2-theme .rounded-item__tooltip.tippy-outside-propagation {
  top: 39px;
}
.step2-theme .rounded-item__tooltip.no-absolute-tooltip {
  position: relative;
  top: 3px;
  right: 0;
}
.step2-theme .rounded-item__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  cursor: pointer;
}
.step2-theme .rounded-item__input:checked ~ .rounded-item__label {
  border: 1px solid #0091ff;
  -webkit-box-shadow: inset 0 0 0 2px #0091ff;
  box-shadow: inset 0 0 0 2px #0091ff;
}
.step2-theme .rounded-item__input:checked ~ .rounded-item__label .pricing-btn {
  background-color: #33a7ff;
}
.step2-theme .rounded-item__input:checked ~ .rounded-item__label .pricing-btn::before {
  left: 30px;
  opacity: 1;
}
.step2-theme .rounded-item__input:checked ~ .rounded-item__label .pricing-btn--thin::before {
  left: 12px;
  opacity: 1;
}
@media (max-width: 1019px) {
  .step2-theme .rounded-item__input:checked ~ .rounded-item__label .pricing-btn--thin::before {
    left: 30px;
  }
}
.step2-theme .rounded-item__input:checked ~ .rounded-item__label .pricing-btn span {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.step2-theme .rounded-item__input:disabled ~ .rounded-item__label:hover {
  border: 1px solid #cccccc !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  cursor: not-allowed;
}
.step2-theme .rounded-item__input:disabled ~ .rounded-item__label .pricing-btn {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.step2-theme .rounded-item__input:disabled ~ .rounded-item__label .pricing-btn:hover {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.step2-theme .rounded-item__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem 1rem;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  border: 1px solid #cccccc;
  border-radius: 20px;
  background-color: #f8f8f8;
  cursor: pointer;
}
.step2-theme .rounded-item__label:hover {
  border: 1px solid #0091ff;
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
}
.step2-theme .rounded-item__title {
  display: block;
  min-height: 86px;
  margin-bottom: 8px;
  color: #333333;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .step2-theme .rounded-item__title {
    min-height: 80px;
  }
}
@media (max-width: 575px) {
  .step2-theme .rounded-item__title {
    min-height: auto;
  }
}
.step2-theme .rounded-item__title--underline {
  min-height: auto;
}
.step2-theme .rounded-item__title--small {
  min-height: auto;
}
.step2-theme .rounded-item__perex {
  display: block;
  margin-bottom: 30px;
  color: #333333;
  text-align: center;
}
.step2-theme .rounded-item__perex .orange--price {
  font-size: 20px;
  font-weight: 500;
}
.step2-theme .rounded-item__body {
  display: block;
  min-height: 350px;
  margin-bottom: 16px;
  text-align: center;
}
.step2-theme .rounded-item__body span {
  color: #333333;
  font-size: 16px;
}
.step2-theme .rounded-item__body img {
  width: 100%;
  max-width: 100%;
}
.step2-theme .rounded-item__admin-text {
  margin-bottom: 0;
  color: #333333;
  font-size: 14px;
  text-align: center;
}
.step2-theme .rounded-item__gray-text {
  display: inline-block;
  position: relative;
  margin-bottom: 8px;
  opacity: 0.6;
  font-size: 16px;
  text-align: center;
  text-decoration: line-through;
}
.step2-theme .rounded-item__gray-text .tippy-admin-help {
  position: absolute;
  top: 4px;
  left: 100%;
}
.step2-theme .rounded-item__normal-text {
  display: block;
  margin-bottom: 24px;
  color: #333333;
  font-weight: 500;
}
.step2-theme .rounded-item__blue-text {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 48px;
  margin-bottom: 12px;
  color: #0091ff;
  font-size: 22px;
  font-weight: 500;
}
.step2-theme .rounded-item__credit-text {
  display: block;
  margin-bottom: 8px;
  color: #333333;
  font-size: 14px;
}
.step2-theme .rounded-item__textfield-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.step2-theme .rounded-item__textfield {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 120px;
  height: 38px;
  padding: 2px 4px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}
.step2-theme .rounded-item__textfield::-webkit-input-placeholder {
  opacity: 1;
  color: rgba(51, 51, 51, 0.5);
}
.step2-theme .rounded-item__textfield::-moz-placeholder {
  opacity: 1;
  color: rgba(51, 51, 51, 0.5);
}
.step2-theme .rounded-item__textfield:-ms-input-placeholder {
  opacity: 1;
  color: rgba(51, 51, 51, 0.5);
}
.step2-theme .rounded-item__textfield::-ms-input-placeholder {
  opacity: 1;
  color: rgba(51, 51, 51, 0.5);
}
.step2-theme .rounded-item__textfield::placeholder {
  opacity: 1;
  color: rgba(51, 51, 51, 0.5);
}
.step2-theme .rounded-item__textfield:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}
.step2-theme .rounded-item__textfield::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}
.step2-theme .rounded-item__textfield::-webkit-outer-spin-button, .step2-theme .rounded-item__textfield::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.step2-theme .rounded-item__textfield[type=number] {
  -moz-appearance: textfield;
}
.step2-theme .rounded-item__textfield:focus {
  border: 2px solid #0091ff;
  outline: none;
}
.step2-theme .rounded-item__textfield-label {
  padding-left: 8px;
  color: #333;
}
.step2-theme .rounded-item__footer {
  display: block;
  text-align: center;
}
.step2-theme .progress-bar {
  min-height: 60px;
}
.step2-theme .logo-group {
  min-height: 50px;
  margin-bottom: 10px;
}
.step2-theme .logo-group .wrapper {
  display: inline-block;
  position: relative;
  width: 40px;
  margin-right: 20px;
}
.step2-theme .logo-group .wrapper:last-child {
  margin-right: 0;
}
.step2-theme .logo-group .wrapper:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -6px;
  left: 0;
  width: 26px;
  height: 14px;
  background-image: url(images/vip-label.svg);
  background-repeat: no-repeat;
}
.step2-theme .logo-group .wrapper--smaller {
  margin-right: 8px;
}
.step2-theme .logo-group .wrapper--smaller:last-child {
  margin-right: 0;
}
.step2-theme .logo-group .wrapper--with-new-label:before {
  left: -13px;
}
.step2-theme .logo-group .wrapper--with-new-label:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -6px;
  left: 7px;
  width: 41px;
  height: 14px;
  background-image: url(images/new-label.svg);
  background-repeat: no-repeat;
}
.step2-theme .logo-group .wrapper--new-label-only:before {
  content: none;
}
.step2-theme .logo-group .wrapper--new-label-only:after {
  right: 0;
  left: auto;
}
.step2-theme .logo-group .wrapper--without-label:before, .step2-theme .logo-group .wrapper--without-label:after {
  content: none;
}
.step2-theme .logo-group img {
  width: 100%;
  max-width: 42px;
  margin-right: 20px;
}
.step2-theme .logo-group img:last-child {
  margin-right: 0;
}
.step2-theme .logo-group--smaller {
  min-height: 106px;
}
@media (max-width: 575px) {
  .step2-theme .logo-group--smaller {
    min-height: auto;
    margin-bottom: 0;
    padding-bottom: 20px;
  }
}
.step2-theme .logo-group--smaller img {
  max-width: 34px;
  height: 34px;
  margin-right: 4px;
}
.step2-theme .logo-group--smaller img:last-child {
  margin-right: 0;
}
.step2-theme .separator-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid #cccccc;
  gap: 16px;
}
.step2-theme .newsletter {
  min-height: 26px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .step2-theme .newsletter {
    min-height: auto;
  }
}
.step2-theme .newsletter img {
  width: 100%;
  max-width: 20px;
  margin-right: 8px;
}
.step2-theme .newsletter span {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
}
.step2-theme .social-media {
  min-height: 60px;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .step2-theme .social-media {
    min-height: auto;
  }
}
.step2-theme .social-media img {
  width: 100%;
  max-width: 130px;
}
.step2-theme .sponzoring {
  margin-bottom: 0;
  color: #333333;
  font-size: 12px;
  white-space: nowrap;
}
@media (max-width: 1019px) {
  .step2-theme .sponzoring {
    white-space: normal;
  }
}
.step2-theme .sponzoring .black {
  font-size: 12px;
}
@media (max-width: 1019px) {
  .step2-theme .sponzoring .black {
    font-size: 16px;
  }
}
.step2-theme .sponzoring .orange {
  color: #ff8c00;
  font-size: 16px;
}
@media (max-width: 1019px) {
  .step2-theme .sponzoring .orange {
    font-size: 20px;
  }
}
.step2-theme .sponzoring .red {
  color: #ff0000;
  font-size: 12px;
}
@media (max-width: 1019px) {
  .step2-theme .sponzoring .red {
    font-size: 16px;
  }
}
.step2-theme .alert-text {
  color: #ff0000;
  text-align: center;
}
.step2-theme #add-credits-5:disabled:disabled ~ #add-credits-label {
  -webkit-filter: grayscale(0) !important;
          filter: grayscale(0) !important;
}
.step2-theme .tippy-next-to-credits {
  position: absolute;
  right: 65px;
  bottom: 118px;
}
@media (max-width: 991px) {
  .step2-theme .sidebar {
    position: fixed;
    z-index: 100;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 30rem;
    height: 100vh;
    padding: 5rem 3rem;
    overflow-y: auto;
    -webkit-transform: translateX(-30rem);
            transform: translateX(-30rem);
    -webkit-transition: 300ms all ease-in-out;
    transition: 300ms all ease-in-out;
    background-color: #ffffff;
  }
  .step2-theme .sidebar.show {
    -webkit-transform: translateX(0rem);
            transform: translateX(0rem);
  }
  .step2-theme .sidebar .form-group {
    width: 100%;
  }
  .step2-theme .sidebar .form-group .tippy-admin-help {
    position: absolute;
    top: 1rem;
    right: -3rem;
  }
}
.step2-theme .tippy-tooltip {
  position: relative;
  padding: 1rem 2rem;
  -webkit-transition-property: visibility, opacity, -webkit-transform;
  transition-property: visibility, opacity, -webkit-transform;
  transition-property: visibility, opacity, transform;
  transition-property: visibility, opacity, transform, -webkit-transform;
  border-radius: 2rem;
  outline: 0;
  background-color: #0091ff;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 2, 2, 0.25);
          box-shadow: 0 0 4px 0 rgba(0, 2, 2, 0.25);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}
.step2-theme .tippy-tooltip.moreServices-theme {
  padding: 1rem;
  border-radius: 1.6rem;
  background-color: #ffffff;
  color: #898989;
}
.step2-theme .tippy-tooltip.moreServices-theme .tippy-arrow {
  border-top-color: #ffffff !important;
}
.step2-theme .tippy-tooltip.moreServices-theme[data-placement^=bottom] > .tippy-arrow {
  border-bottom-color: #ffffff !important;
}
.step2-theme .tippy-tooltip p {
  margin: 0;
}
.step2-theme .tippy-tooltip table {
  border-spacing: 0;
  border-collapse: collapse;
}
.step2-theme .tippy-tooltip table td {
  padding: 3px 12px 3px 0;
  text-align: left;
}
.step2-theme .tippy-tooltip table td:first-child {
  text-align: left;
}
.step2-theme .tippy-tooltip table td:last-child {
  padding-right: 0;
  padding-left: 12px;
  text-align: right;
}
.step2-theme .tippy-tooltip[data-placement^=top] > .tippy-arrow {
  bottom: -7px;
  margin: 0 3px;
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  border-width: 8px 8px 0;
  border-top-color: #0091ff;
}
.step2-theme .tippy-tooltip[data-placement^=bottom] > .tippy-arrow {
  top: -7px;
  margin: 0 3px;
  -webkit-transform-origin: 50% 7px;
          transform-origin: 50% 7px;
  border-width: 0 8px 8px;
  border-bottom-color: #0091ff;
}
.step2-theme .tippy-tooltip[data-placement^=left] > .tippy-arrow {
  right: -7px;
  margin: 3px 0;
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  border-width: 8px 0 8px 8px;
  border-left-color: #0091ff;
}
.step2-theme .tippy-tooltip[data-placement^=right] > .tippy-arrow {
  left: -7px;
  margin: 3px 0;
  -webkit-transform-origin: 7px 50%;
          transform-origin: 7px 50%;
  border-width: 8px 8px 8px 0;
  border-right-color: #0091ff;
}
.step2-theme .flex-tooltip {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  min-width: 100px;
  padding-right: 20px;
}
.step2-theme .flex-tooltip .hide {
  position: absolute;
  top: 7px;
  right: 12px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.step2-theme .flex-tooltip .hide:hover {
  opacity: 0.6;
}
.step2-theme .tippy-content {
  font-size: 14px;
}
.step2-theme .tippy-content p {
  font-size: 14px;
}
.step2-theme .header {
  -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
}
.step2-theme .header.fix-header {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transition: 200ms all ease-in-out;
  transition: 200ms all ease-in-out;
}
.step2-theme .header.fix-header.nav-up {
  top: -171px;
}
.step2-theme .header.fix-header.nav-down {
  top: 0;
}
.step2-theme .header__top {
  width: 100%;
  height: 60px;
  background-color: #038cd9;
}
.step2-theme .header__top--right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.step2-theme .header__top--container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1020px;
  height: 100%;
  margin: auto;
  padding: 0 20px;
}
.step2-theme .header__bottom {
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .step2-theme .header__bottom {
    height: 60px;
  }
}
.step2-theme .header__bottom--menu {
  max-width: 1020px;
  margin: auto;
  padding: 0 20px;
}
@media (min-width: 992px) {
  .step2-theme .header__bottom--menu {
    height: 100%;
  }
}
.step2-theme .header-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.step2-theme .header-logo__brand {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 120px;
  height: 40px;
  background-image: url(./images/fajnsprava_logo_white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.step2-theme .header-logo__desc {
  display: none;
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #ffffff;
  color: #ffffff;
  font-size: 14px;
}
@media (min-width: 992px) {
  .step2-theme .header-logo__desc {
    display: block;
  }
}
.step2-theme .header-right__user {
  display: none;
  margin: 0 1rem 0 0;
  color: #ffffff;
  font-size: 14px;
}
@media (min-width: 992px) {
  .step2-theme .header-right__user {
    display: block;
  }
}
.step2-theme .header-right .btn--primary {
  font-size: 14px;
}
.step2-theme .header-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
}
@media (min-width: 992px) {
  .step2-theme .header-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.step2-theme .header-menu__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 5rem;
  margin: 0;
}
@media (min-width: 992px) {
  .step2-theme .header-menu__item {
    height: 100%;
  }
}
.step2-theme .header-menu__item a:not(.btn) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0;
  color: #333333;
  font-size: 14px;
}
@media (min-width: 992px) {
  .step2-theme .header-menu__item a:not(.btn) {
    height: 100%;
    padding: 0;
  }
}
.step2-theme .header-menu__item a:not(.btn):hover, .step2-theme .header-menu__item a:not(.btn):focus, .step2-theme .header-menu__item a:not(.btn).current {
  border-bottom: 3px solid #0091ff;
  color: #0091ff;
}
@media (min-width: 992px) {
  .step2-theme .header-menu__item a:not(.btn):hover, .step2-theme .header-menu__item a:not(.btn):focus, .step2-theme .header-menu__item a:not(.btn).current {
    border-bottom: none;
  }
}
.step2-theme .header-menu__item .btn--primary {
  min-width: 120px;
}
.step2-theme .header-menu .tippy-badge, .step2-theme .header-menu .tippy-badge-show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 20px;
  height: 20px;
  margin-left: 5px;
  border-radius: 50%;
  background-color: #ff8c00;
  color: #ffffff;
  font-size: 12px;
}
.step2-theme ul.portals-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2rem;
  padding: 0;
}
.step2-theme ul.portals-list li {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 32%;
      -ms-flex: 1 0 32%;
          flex: 1 0 32%;
  max-width: 32%;
  margin-bottom: 2%;
  padding: 30px 35px;
  list-style-type: none;
  border-radius: 20px;
  background: #f8f8f8;
  text-align: center;
}
@media (max-width: 575px) {
  .step2-theme ul.portals-list li {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
  }
}
.step2-theme ul.portals-list li div {
  min-height: 65px;
  margin-bottom: 16px;
}
.step2-theme ul.portals-list li img {
  width: auto;
  max-width: 100%;
  height: 65px;
}
.step2-theme ul.portals-list li span {
  color: #333;
  font-weight: 500;
  line-height: 23px;
}
.step2-theme ul.portals-list li p {
  display: block;
  margin: 8px 0 0 0;
  font-size: 14px;
}
.step2-theme ul.portals-list li p span {
  color: #2ea5d1;
  font-size: 14px;
  text-transform: uppercase;
}
.step2-theme .stepper {
  padding: 2rem 0;
  background: #f8f8f8;
}
.step2-theme .stepper__holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0.5rem;
}
.step2-theme .stepper__step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 33%;
      -ms-flex: 1 0 33%;
          flex: 1 0 33%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.step2-theme .stepper__step::after {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  width: 20px;
  height: 20px;
  background-image: url(images/stepper-next-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .step2-theme .stepper__step::after {
    top: calc(50% - 5px);
    right: -5px;
    width: 10px;
    height: 10px;
  }
}
.step2-theme .stepper__step img {
  width: 100%;
  max-width: 20px;
}
@media (max-width: 767px) {
  .step2-theme .stepper__step img {
    max-width: 14px;
  }
}
.step2-theme .stepper__step span {
  margin-left: 16px;
  opacity: 0.3;
  color: #333333;
}
@media (max-width: 767px) {
  .step2-theme .stepper__step span {
    margin-left: 8px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .step2-theme .stepper__step span {
    margin-left: 4px;
    font-size: 12px;
  }
}
.step2-theme .stepper__step:last-child::after {
  content: none;
}
.step2-theme .stepper__step--active span {
  opacity: 1;
  font-weight: 500;
}
.step2-theme .stepper--fixed__up {
  position: fixed;
  z-index: 95;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: 200ms all ease-in-out;
  transition: 200ms all ease-in-out;
  -webkit-box-shadow: 0 0px 20px rgba(57, 63, 72, 0.3);
  box-shadow: 0 0px 20px rgba(57, 63, 72, 0.3);
}
.step2-theme .stepper--fixed__down {
  position: fixed;
  z-index: 95;
  top: 120px;
  left: 0;
  width: 100%;
  -webkit-transition: 200ms all ease-in-out;
  transition: 200ms all ease-in-out;
  -webkit-box-shadow: 0 0px 20px rgba(57, 63, 72, 0.3);
  box-shadow: 0 0px 20px rgba(57, 63, 72, 0.3);
}
@media (max-width: 1019px) {
  .step2-theme .stepper--fixed__down {
    top: 60px;
  }
}
.step2-theme .grayscale {
  opacity: 0.3;
}
.step2-theme .portals {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 8rem;
}
.step2-theme .portals__title {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 65%;
      -ms-flex: 1 0 65%;
          flex: 1 0 65%;
}
@media (max-width: 767px) {
  .step2-theme .portals__title {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    text-align: center;
  }
}
.step2-theme .portals__credits {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 35%;
      -ms-flex: 1 0 35%;
          flex: 1 0 35%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 767px) {
  .step2-theme .portals__credits {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20px 0;
  }
}
.step2-theme .portals__credits .btn {
  width: 180px;
  height: 50px;
  font-size: 16px;
  text-align: center;
}
.step2-theme .portals__credits .btn span {
  padding-left: 8px;
  font-size: 16px;
}
.step2-theme .portals__info {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 100%;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  margin-top: 2rem;
}
.step2-theme .portals__list {
  width: 100%;
}
.step2-theme .portals__opener, .step2-theme .portals__closer {
  text-align: center;
}
.step2-theme .portals__opener__text, .step2-theme .portals__closer__text {
  margin-bottom: 1rem;
  color: #0074ff;
  text-align: center;
  cursor: pointer;
}
.step2-theme .portals__opener__text span, .step2-theme .portals__closer__text span {
  color: #0074ff;
}
.step2-theme .portals__opener__arrow, .step2-theme .portals__closer__arrow {
  width: 24px;
  -webkit-transform: rotate(90deg) scaleY(2);
          transform: rotate(90deg) scaleY(2);
  -webkit-transition: ease-in-out 0.4s;
  transition: ease-in-out 0.4s;
  cursor: pointer;
}
.step2-theme .portals__closer {
  display: none;
}
.step2-theme .portals__closer .portals__opener__arrow {
  -webkit-transform: rotate(-90deg) scaleY(2);
          transform: rotate(-90deg) scaleY(2);
}
.step2-theme .portals__list--echo {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 100%;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}
.step2-theme .portals__list--echo__btn {
  color: #0074ff;
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
}
.step2-theme .portals__list--echo__btn:hover {
  text-decoration: none;
}
.step2-theme .portals__list--echo__holder {
  display: none;
}
.step2-theme .portals__list--echo__holder .portals__list {
  height: auto;
  margin-top: 0;
}
.step2-theme .advert-type {
  margin-bottom: 80px;
}
.step2-theme .advert-type .required-field {
  padding: 16px 0;
}
.step2-theme .advert-type .align-items-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.step2-theme .advert-type .rounded-item__label {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 767px) {
  .step2-theme .advert-type .rounded-item__label {
    min-height: auto;
  }
}
.step2-theme .advert-type .rounded-item__title {
  margin-bottom: 0;
}
.step2-theme .advertising-title {
  margin-bottom: 40px;
  padding-top: 20px;
  color: #000;
  font-weight: 500;
}
.step2-theme .advertising__caption {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .step2-theme .advertising__caption {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.step2-theme .advertising__caption .main-title {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 60%;
      -ms-flex: 1 0 60%;
          flex: 1 0 60%;
}
@media (max-width: 767px) {
  .step2-theme .advertising__caption .main-title {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}
.step2-theme .advertising__caption .advertising__info__right {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 40%;
      -ms-flex: 1 0 40%;
          flex: 1 0 40%;
}
@media (max-width: 767px) {
  .step2-theme .advertising__caption .advertising__info__right {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}
.step2-theme .advertising__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 2rem;
}
.step2-theme .advertising__info__left {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 25%;
      -ms-flex: 1 0 25%;
          flex: 1 0 25%;
}
.step2-theme .advertising__info__right {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 75%;
      -ms-flex: 1 0 75%;
          flex: 1 0 75%;
}
.step2-theme .advertising__info__show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 50px;
  margin: 0;
  margin-bottom: 24px;
  color: #0074ff;
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
}
.step2-theme .advertising__info__show:hover {
  text-decoration: none;
}
.step2-theme .advertising__info__bottom {
  display: none;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 100%;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}
@media (max-width: 767px) {
  .step2-theme .advertising__info__bottom .main-perex {
    margin-bottom: 20px;
  }
}
.step2-theme .advertising__holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: -15px;
  margin-left: -15px;
  padding-right: 15px;
  padding-left: 15px;
}
@media (max-width: 1019px) {
  .step2-theme .advertising__holder {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.step2-theme .advertising__row {
  position: relative;
  width: 100%;
  max-width: 260px;
  padding: 0 6px;
}
.step2-theme .advertising__row:nth-of-type(1) {
  width: auto;
}
@media (max-width: 1019px) {
  .step2-theme .advertising__row:nth-of-type(1) {
    width: 100%;
  }
}
@media (max-width: 1019px) {
  .step2-theme .advertising__row {
    max-width: 50%;
    margin-bottom: 1rem;
  }
}
@media (max-width: 575px) {
  .step2-theme .advertising__row {
    max-width: 100%;
    padding: 0;
  }
  .step2-theme .advertising__row:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1019px) {
  .step2-theme .advertising__row:last-child {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .step2-theme .advertising__row:last-child {
    max-width: 100%;
  }
}
.step2-theme .advertising__row:last-child .separator-line {
  min-height: 200px;
}
@media (max-width: 575px) {
  .step2-theme .advertising__row:last-child .separator-line {
    min-height: auto;
  }
}
.step2-theme .advertising .preview {
  position: absolute;
  z-index: 2;
  top: 40px;
  left: 0;
  border: 1px solid #9e9e9e;
  background: #f2f2f2;
}
@media (max-width: 767px) {
  .step2-theme .advertising .preview {
    width: 23px;
    height: 23px;
  }
}
.step2-theme .advertising .preview .fa {
  color: #9e9e9e;
  font-size: 8px;
}
@media (max-width: 767px) {
  .step2-theme .advertising .preview .fa {
    font-size: 12px;
  }
}
.step2-theme .advertising .preview--one {
  top: 95px;
}
@media (max-width: 1019px) {
  .step2-theme .advertising .preview--one {
    top: 75px;
  }
}
.step2-theme .advertising .rounded-item__label--custom {
  min-height: auto;
}
.step2-theme .advertising .rounded-item__title {
  min-height: 50px;
}
.step2-theme .advertising .logo-group--smaller {
  min-height: 130px;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .step2-theme .advertising .logo-group--smaller {
    min-height: auto;
  }
}
.step2-theme .advertising .logo-group--smaller img {
  max-width: 40px;
  margin-right: 8px;
  margin-bottom: 12px;
}
.step2-theme .advertising .progress-bar {
  min-height: 45px;
  margin-bottom: 0;
}
.step2-theme .advertising .rounded-item__tag {
  left: 7px;
}
.step2-theme .advertising .garance {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
.step2-theme .advertising--raise {
  margin-bottom: 24px;
}
.step2-theme .advertising--raise .tippy-outside {
  top: 38px;
  right: 4px;
}
.step2-theme .advertising--raise .tippy-outside--one {
  top: 92px;
}
@media (max-width: 1019px) {
  .step2-theme .advertising--raise .tippy-outside--one {
    top: 72px;
  }
}
.step2-theme .advertising--raise .preview--one {
  top: 92px;
  left: 2px;
}
@media (max-width: 1019px) {
  .step2-theme .advertising--raise .preview--one {
    top: 72px;
  }
}
.step2-theme .offer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 650px;
  margin: 30px auto;
  color: #333333;
}
@media (max-width: 575px) {
  .step2-theme .offer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.step2-theme .offer__picture img {
  max-width: 200px;
}
.step2-theme .offer__name {
  display: block;
  margin-top: 16px;
  text-align: center;
}
.step2-theme .offer__content {
  padding: 0 0 20px 40px;
}
@media (max-width: 575px) {
  .step2-theme .offer__content {
    padding: 0 0 20px 0;
    text-align: center;
  }
}
.step2-theme .offer__content h4 {
  margin-bottom: 32px;
  font-size: 28px;
  line-height: 36px;
}
.step2-theme .offer__content p {
  margin-bottom: 16px;
}
.step2-theme .offer__trigger-modal {
  color: #2ea5d1 !important;
}
.step2-theme .offer__trigger-modal:hover {
  text-decoration: underline !important;
  cursor: pointer;
}
.step2-theme .missing-credits {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 1019px) {
  .step2-theme .missing-credits {
    height: auto;
  }
}
.step2-theme .missing-credits__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.step2-theme .missing-credits__btns a {
  color: white;
}
.step2-theme .missing-credits p {
  margin: 0;
  color: #333333;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}
@media (max-width: 767px) {
  .step2-theme .missing-credits p {
    font-size: 20px;
    line-height: 26px;
  }
}
.step2-theme .missing-credits span {
  margin-top: 16px;
  font-size: 16px;
}
.step2-theme .add-credits__holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0;
}
@media (max-width: 1019px) {
  .step2-theme .add-credits__holder {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.step2-theme .add-credits__item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 -16px;
  padding: 16px;
  border: 5px solid transparent;
}
.step2-theme .add-credits__item--thin {
  max-width: 195px;
}
@media (max-width: 1019px) {
  .step2-theme .add-credits__item--thin {
    max-width: none;
  }
}
.step2-theme .add-credits__item--thin .pricing-btn {
  padding-right: 3rem;
  padding-left: 3rem;
}
@media (max-width: 1019px) {
  .step2-theme .add-credits__item--thin .pricing-btn {
    padding-right: 5rem;
    padding-left: 5rem;
  }
}
@media (max-width: 1019px) {
  .step2-theme .add-credits__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 50%;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
  }
}
@media (max-width: 767px) {
  .step2-theme .add-credits__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}
@media (max-width: 767px) {
  .step2-theme .add-credits .desktop-bubles {
    display: none !important;
  }
}
.step2-theme .add-credits .mobile-bubles {
  display: none;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .step2-theme .add-credits .mobile-bubles {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.step2-theme .add-credits__list {
  margin: 0 0 36px 0;
}
.step2-theme .add-credits__list li {
  margin-bottom: 16px;
  color: #333333;
}
.step2-theme .add-credits__list li:last-child {
  margin-bottom: 0;
}
.step2-theme .add-credits__list li span {
  color: #333333;
  font-weight: 500;
}
.step2-theme .add-credits .bubble {
  position: relative;
  width: 134px;
  height: 82px;
  border-radius: 58px;
  background-color: #0091ff;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-size: 14px;
}
.step2-theme .add-credits .bubble:after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 35px;
  width: 0;
  height: 0;
  border-width: 33px 50px 0 0;
  border-style: solid;
  border-color: #0091ff transparent transparent transparent;
}
.step2-theme .add-credits .bubble span {
  position: relative;
  z-index: 1;
}
.step2-theme .add-credits .bubble .tippy-admin-help {
  position: absolute;
  top: 0;
  right: -1.5rem;
}
@media (max-width: 767px) {
  .step2-theme .add-credits .rounded-item {
    margin-bottom: 2rem;
  }
}
.step2-theme .add-credits .rounded-item__body {
  min-height: 70px;
}
@media (max-width: 1019px) {
  .step2-theme .add-credits .rounded-item__body {
    min-height: auto;
  }
}
.step2-theme .add-credits .rounded-item__body--small {
  min-height: auto;
}
.step2-theme .add-credits .rounded-item__body--small span {
  color: #898989;
}
.step2-theme .add-credits .rounded-item__normal-text {
  margin-bottom: -2px;
  font-size: 24px;
}
.step2-theme .add-credits .rounded-item__body p {
  font-size: 16px;
}
.step2-theme .add-credits .rounded-item__tag {
  background: #ff8c00;
  color: #ffffff;
}
.step2-theme .add-credits .rounded-item__tag--gray {
  background: #ededed;
  color: #6d7278;
}
.step2-theme .add-credits .rounded-item__tag img {
  margin-top: -4px;
}
.step2-theme .add-credits__custom__info {
  margin-top: 16px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .step2-theme .add-credits__custom__info {
    text-align: center;
  }
}
.step2-theme .add-credits--raise .tippy-outside--one {
  top: 40px;
}
.step2-theme .add-credits--raise .tippy-outside--two {
  top: 40px;
}
.step2-theme .order-summary {
  margin-bottom: 4rem;
}
.step2-theme .order-summary__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2rem;
}
.step2-theme .order-summary__row .primary-text__big {
  margin-bottom: 0;
  line-height: 1 !important;
}
.step2-theme .order-summary__row .primary-text__big span {
  line-height: 1 !important;
}
.step2-theme .order-summary__row .primary-text__small {
  margin-bottom: 0 !important;
}
.step2-theme .order-summary .result p {
  margin-bottom: 1rem;
}
.step2-theme .order-summary .result .primary-text__small {
  line-height: 1;
}
.step2-theme .order-summary .result__sale {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.step2-theme .order-summary .result__sale p {
  margin-bottom: 0;
  line-height: 1;
}
.step2-theme .order-summary .result__sale p:last-child {
  margin-left: 8px;
}
.step2-theme .order-summary .result__value {
  line-height: 1;
  text-decoration: line-through;
}
.step2-theme .order-summary__tip {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 65%;
      -ms-flex: 1 0 65%;
          flex: 1 0 65%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 767px) {
  .step2-theme .order-summary__tip {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.step2-theme .order-summary__tip img {
  margin-right: 2rem;
}
.step2-theme .order-summary__tip p,
.step2-theme .order-summary__tip span {
  margin: 0;
  color: #333333;
}
.step2-theme .order-summary__sum {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 35%;
      -ms-flex: 1 0 35%;
          flex: 1 0 35%;
  text-align: right;
}
@media (max-width: 767px) {
  .step2-theme .order-summary__sum {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 4rem;
  }
}
.step2-theme .order-summary__sum .primary-text {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0 !important;
}
.step2-theme .order-summary__sum .primary-text span {
  display: inline-block;
  margin-left: 2rem;
}
.step2-theme .order-summary__sum .add-text {
  font-size: 24px;
  line-height: 34px;
}
.step2-theme .order-summary .primary-text {
  margin-right: 24px;
  font-size: 24px;
  line-height: 1;
}
@media (max-width: 575px) {
  .step2-theme .order-summary .primary-text {
    margin-right: 8px;
  }
}
.step2-theme .order-summary .primary-text__title {
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
}
.step2-theme .order-summary .primary-text__big {
  font-size: 24px;
}
@media (max-width: 575px) {
  .step2-theme .order-summary .primary-text__big {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .step2-theme .order-summary .primary-text__big span {
    font-size: 16px;
    line-height: 24px;
  }
}
.step2-theme .order-summary .primary-text__small {
  margin-bottom: 0;
  color: #898989;
}
@media (max-width: 575px) {
  .step2-theme .order-summary .primary-text__small {
    font-size: 12px;
  }
}
.step2-theme .order-summary .light-text {
  line-height: 1;
}
@media (max-width: 575px) {
  .step2-theme .order-summary .light-text {
    font-size: 16px;
    line-height: 20px;
    line-height: 1;
  }
}
.step2-theme .order-summary__row--total {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #cccccc;
}
.step2-theme .order-summary__row--total .primary-text {
  padding-right: 0 !important;
}
@media (max-width: 767px) {
  .step2-theme .order-summary__row--total .primary-text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .step2-theme .order-summary__row--total .primary-text {
    font-size: 20px;
    font-weight: 500;
  }
  .step2-theme .order-summary__row--total .primary-text span {
    font-size: 20px;
    font-weight: 500;
  }
}
.step2-theme .pay-method {
  margin-bottom: 10rem;
}
.step2-theme .pay-method .primary-text {
  line-height: 1;
}
@media (max-width: 575px) {
  .step2-theme .pay-method .primary-text {
    font-size: 20px;
  }
}
.step2-theme .pay-method .light-text {
  font-size: 16px;
  line-height: 23px;
}
@media (max-width: 575px) {
  .step2-theme .pay-method .light-text {
    font-size: 14px;
    line-height: 20px;
  }
}
.step2-theme .pay-method .light-text span {
  font-size: 16px;
  line-height: 23px;
}
@media (max-width: 575px) {
  .step2-theme .pay-method .light-text span {
    font-size: 14px;
    line-height: 20px;
  }
}
.step2-theme .pay-method__title {
  padding: 0 0 16px 16px;
  color: #333333;
  font-weight: 20px;
}
.step2-theme .pay-method__row {
  margin-bottom: 1rem;
}
.step2-theme .pay-method__row .primary-text {
  font-size: 22px;
}
.step2-theme .pay-method__row:last-child {
  margin-bottom: 0;
}
.step2-theme .pay-method .light-text span {
  display: block;
}
@media (max-width: 575px) {
  .step2-theme .pay-method .light-text span {
    display: inline;
  }
}
.step2-theme .pay-method .checkbox__label {
  margin: 0;
  padding: 24px 32px 24px 76px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}
@media (max-width: 575px) {
  .step2-theme .pay-method .checkbox__label {
    padding: 24px 32px 24px 48px;
  }
}
.step2-theme .pay-method .checkbox__label:hover {
  border: 1px solid #0091ff;
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.step2-theme .pay-method .checkbox__input:checked ~ .checkbox__label {
  border: 1px solid #0091ff;
  -webkit-box-shadow: inset 0 0 0 2px #0091ff;
  box-shadow: inset 0 0 0 2px #0091ff;
}
.step2-theme .pay-method .checkbox__label--check {
  top: 0;
  bottom: 0;
  left: 24px;
  width: 23px;
  height: 23px;
  margin: auto;
}
@media (max-width: 575px) {
  .step2-theme .pay-method .checkbox__label--check {
    left: 12px;
  }
}
.step2-theme .pay-method .checkbox__input:checked ~ .checkbox__label > .checkbox__label--check {
  -webkit-animation: check-move 1s;
          animation: check-move 1s;
  border: 1px solid #0091ff;
  background-color: #0091ff;
}
.step2-theme .pay-method .step2-submit-holder {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.step2-theme .pay-method .step2-submit-holder .step2-submit-tooltip {
  display: none;
  position: relative;
  margin-bottom: 15px;
  padding: 1rem 3rem 1rem 2rem;
  border-radius: 2rem;
  outline: 0;
  background-color: #0091ff;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 2, 2, 0.25);
  box-shadow: 0 0 4px 0 rgba(0, 2, 2, 0.25);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}
.step2-theme .pay-method .step2-submit-holder .step2-submit-tooltip:after {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - 10px);
  width: 0;
  height: 0;
  border-top: 10px solid #0091ff;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
.step2-theme .pay-method .step2-submit-holder .step2-submit-tooltip-hide {
  position: absolute;
  top: calc(50% - 14px);
  right: 12px;
  font-size: 20px;
  cursor: pointer;
}
.step2-theme .tooltip--box__image {
  width: 100%;
  max-width: 400px;
  height: auto;
}
.step2-theme .tooltip--box__caption {
  padding-top: 8px;
  text-align: center;
}
.step2-theme .full-page-preloader {
  display: none;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
}
.step2-theme .full-page-preloader--active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 999999;
  overflow: hidden;
}
.step2-theme .full-page-preloader .preloader {
  -webkit-animation: rotate 1.5s linear infinite;
          animation: rotate 1.5s linear infinite;
}
@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.step2-theme .custom-dialog {
  display: none;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.step2-theme .custom-dialog-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .step2-theme .custom-dialog-holder {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.step2-theme .custom-dialog-close {
  position: absolute;
  top: 10px;
  right: 14px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  color: #0074ff;
  font-size: 26px;
  cursor: pointer;
}
.step2-theme .custom-dialog-close:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.step2-theme .custom-dialog-body {
  position: relative;
  width: 100%;
  max-width: 950px;
  padding: 50px;
  border-radius: 8px;
  background: #f7f7f7;
  -webkit-box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1019px) {
  .step2-theme .custom-dialog-body {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .step2-theme .custom-dialog-body {
    padding: 16px;
  }
}
.step2-theme .custom-dialog-title {
  margin-bottom: 30px;
  color: #333333;
  font-size: 28px;
  font-weight: 400;
  line-height: 38px;
  text-align: left;
}
.step2-theme .custom-dialog-content {
  margin-bottom: 30px;
  color: #333333;
  font-size: 18px;
  line-height: 28px;
}
.step2-theme .custom-dialog-content a {
  color: #0074ff;
  font-size: 18px;
  line-height: 28px;
  text-decoration: underline;
}
.step2-theme .custom-dialog-content a:hover, .step2-theme .custom-dialog-content a:focus {
  color: #0074ff;
  text-decoration: none;
  cursor: pointer;
}
.step2-theme .custom-dialog-actions .btn {
  display: inline-block;
  width: 100%;
  padding: 12px 15px;
  border-radius: 5px;
  background: #898989;
  color: #ffffff;
  line-height: normal;
  text-align: center;
}
.step2-theme .custom-dialog-actions .btn:hover, .step2-theme .custom-dialog-actions .btn:focus {
  background: #5d5d5d;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 1019px) {
  .step2-theme .custom-dialog-actions .btn {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .step2-theme .custom-dialog-actions .btn {
    margin-bottom: 20px;
  }
}
.step2-theme .custom-dialog-actions .btn--blue {
  background: #0091ff;
}
.step2-theme .custom-dialog-actions .btn--blue:hover, .step2-theme .custom-dialog-actions .btn--blue:focus {
  background-color: #0074cc;
}
.step2-theme .custom-dialog-help {
  margin-bottom: -30px !important;
  padding-top: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .step2-theme .custom-dialog-help {
    padding-top: 20px;
  }
}
.step2-theme .custom-dialog-help p {
  margin-bottom: 4px;
  padding-top: 0 !important;
}
.step2-theme .custom-dialog--long .custom-dialog-body {
  height: 90vh;
  overflow: hidden;
}
.step2-theme .custom-dialog--long .custom-dialog-content {
  height: calc(100% - 77px);
  padding: 0 8px;
  overflow-y: auto;
}
.step2-theme .custom-dialog--long .custom-dialog-actions {
  padding: 0 8px;
  text-align: center;
}
.step2-theme .custom-dialog--long .custom-dialog-actions .btn {
  max-width: 340px;
}
.step2-theme #data-box-dialog-close-btn {
  display: none;
}
.step2-theme #advert-isnt-ready-dialog .custom-dialog-actions {
  text-align: center;
}
.step2-theme #advert-isnt-ready-dialog .custom-dialog-actions .btn {
  max-width: 280px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .step2-theme #advert-isnt-ready-dialog .custom-dialog-actions .btn {
    max-width: 100%;
  }
}
.step2-theme #missing-credits-dialog .custom-dialog-body {
  max-width: 700px;
}
.step2-theme #missing-credits-dialog .custom-dialog-actions .col-md-6:last-child .btn {
  margin-bottom: 0 !important;
}
.step2-theme #data-box-dialog .custom-dialog-body {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
}
@media (max-width: 1019px) {
  .step2-theme #data-box-dialog .custom-dialog-body {
    padding: 50px 25px;
  }
}
@media (max-width: 767px) {
  .step2-theme #data-box-dialog .custom-dialog-body {
    padding: 50px 16px;
  }
}
.step2-theme #data-box-dialog .body-pulse {
  -webkit-animation: enlargement 0.5s normal forwards ease-in-out;
          animation: enlargement 0.5s normal forwards ease-in-out;
}
.step2-theme #data-box-dialog .custom-dialog-part-two {
  display: block;
}
.step2-theme #data-box-dialog .custom-dialog-part-two {
  display: none;
}
.step2-theme #data-box-dialog .custom-dialog-actions .btn {
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .step2-theme #data-box-dialog .custom-dialog-actions .btn {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .step2-theme #data-box-dialog .custom-dialog-actions > div {
    margin-bottom: 20px;
  }
  .step2-theme #data-box-dialog .custom-dialog-actions > div:last-child {
    margin-bottom: 0;
  }
  .step2-theme #data-box-dialog .custom-dialog-actions .small-gray-text {
    padding-top: 4px !important;
  }
}
.step2-theme #data-box-dialog .custom-dialog-actions .small-gray-text {
  padding-top: 10px;
  color: #333;
  font-size: 15px;
  font-style: normal;
  line-height: normal;
  text-align: center;
}
@-webkit-keyframes enlargement {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes enlargement {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.step2-theme #step2form .main-title {
  font-size: 36px;
}
@media (max-width: 575px) {
  .step2-theme #step2form .main-title {
    font-size: 32px;
  }
}
.step2-theme #step2form .main-title--pricing {
  font-size: 48px;
}
@media (max-width: 575px) {
  .step2-theme #step2form .main-title--pricing {
    font-size: 32px;
  }
}
.step2-theme .insufficient-credits {
  display: none;
  position: absolute;
  bottom: 110%;
  left: calc(50% - 65px);
  width: 100%;
  max-width: 160px;
  padding: 4px;
  border: 2px solid #d82942;
  border-radius: 8px;
  background: #ffffff;
  color: #d82942;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 1019px) {
  .step2-theme .insufficient-credits {
    left: calc(50% - 80px);
  }
}
.step2-theme .insufficient-credits__holder {
  margin-bottom: 12px;
}
.step2-theme .zvysit-odezvu .newsletter {
  display: none;
}
.step2-theme .zvysit-odezvu .logo-group.logo-group--smaller {
  margin-top: 16px;
}
.step2-theme .zvysit-odezvu .portals__list--echo__btn {
  margin-bottom: 20px;
}
.step2-theme .zvysit-odezvu ul.portals-list {
  margin-top: 0;
  padding-bottom: 20px;
}
.step2-theme .zvysit-odezvu ul.portals-list li {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767px) {
  .step2-theme .zvysit-odezvu ul.portals-list li {
    padding: 15px;
  }
}
@media (max-width: 575px) {
  .step2-theme .zvysit-odezvu ul.portals-list li {
    margin-bottom: 20px;
  }
  .step2-theme .zvysit-odezvu ul.portals-list li:last-child {
    margin-bottom: 20px;
  }
}
.step2-theme .zvysit-odezvu ul.portals-list li > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.step2-theme .zvysit-odezvu ul.portals-list li img {
  width: 100%;
  max-width: 120px;
  height: auto;
}
.step2-theme .zvysit-odezvu #advert-place .advertising__caption,
.step2-theme .zvysit-odezvu #advert-place .advertising__info {
  display: none;
}
.step2-theme .modal-iframe--box {
  background: transparent;
}
.step2-theme .fancybox-close-small {
  right: 0 !important;
}
.step2-theme .fancybox-close-small svg {
  color: #0074ff;
}

/* Admin components
	========================================================================== */
.admin-theme {
  /* ==========================================================================
      AUTOCOMPLETE
    ========================================================================== */
  /* ==========================================================================
      ALERT
    ========================================================================== */
  /* ==========================================================================
      BTN GROUP
    ========================================================================== */
  /* ==========================================================================
      BUTTONS
    ========================================================================== */
  /* ==========================================================================
      DROPDOWN
    ========================================================================== */
  /* ==========================================================================
      FILTERS
    ========================================================================== */
  /* ==========================================================================
      FOOTER
    ========================================================================== */
  /* ==========================================================================
      FORMS
    ========================================================================== */
  /* ================================
      GLOBAL CUSTOM INPUT STYLE
  ================================ */
  /* ==========================================================================
      HEADER
    ========================================================================== */
  /* ==========================================================================
      HELP TOOLTIP
    ========================================================================== */
  /* ==========================================================================
      TABLE
    ========================================================================== */
  /* ==========================================================================
      MAIN 
    ========================================================================== */
  /**************************************
            UTILITY CLASSES
  **************************************/
  /* ==========================================================================
      PAGINATION
    ========================================================================== */
  /* ==========================================================================
      REFERENCE
    ========================================================================== */
  /* ==========================================================================
      THANKS PAGE
    ========================================================================== */
  /* Rounded sliders */
  /*******************************
  	COOKIE BAR VIA JQUERY
  *******************************/
  /* ==========================================================================
      NUMBERS
    ========================================================================== */
  /* ==========================================================================
      MEDIA LIST
    ========================================================================== */
  /* ==========================================================================
      STEP 1
    ========================================================================== */
  /* ==========================================================================
      HELPERS
    ========================================================================== */
  /**********************************
          Společné prvky
  **********************************/
  /**********************************
  Kde si přejete uveřejnit inzerát?
  **********************************/
}
.admin-theme .autocomplete-suggestions {
  z-index: 99;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 14rem;
  max-width: 30rem;
  max-height: 30rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  border: 1px solid rgba(18, 20, 25, 0.1);
  border-radius: 5px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0 1rem 0 rgba(18, 20, 25, 0.05);
          box-shadow: 0 0 1rem 0 rgba(18, 20, 25, 0.05);
}
.admin-theme .autocomplete-suggestions > .autocomplete-suggestion {
  display: inline-block;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 25rem;
  height: 3rem;
  padding: 0.6rem 1rem;
  overflow: hidden;
  color: #333333;
  color: #333333;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  font-size: 14px;
}
@media (min-width: 480px) {
  .admin-theme .autocomplete-suggestions > .autocomplete-suggestion {
    font-size: calc(0vw + 14px);
  }
}
@media (min-width: 800px) {
  .admin-theme .autocomplete-suggestions > .autocomplete-suggestion {
    font-size: 14px;
  }
}
.admin-theme .autocomplete-suggestions > .autocomplete-suggestion:hover {
  background-color: rgba(0, 168, 255, 0.1);
}
.admin-theme .autocomplete-suggestions > .autocomplete-suggestion.autocomplete-selected {
  position: relative;
  padding-right: 3rem;
}
.admin-theme .tippy-tooltip {
  position: relative;
  padding: 1rem 2rem;
  -webkit-transition-property: visibility, opacity, -webkit-transform;
  transition-property: visibility, opacity, -webkit-transform;
  transition-property: visibility, opacity, transform;
  transition-property: visibility, opacity, transform, -webkit-transform;
  border-radius: 2rem;
  outline: 0;
  background-color: #0091ff;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 2, 2, 0.25);
          box-shadow: 0 0 4px 0 rgba(0, 2, 2, 0.25);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}
.admin-theme .tippy-tooltip.moreServices-theme {
  padding: 1rem;
  border-radius: 1.6rem;
  background-color: #ffffff;
  color: #898989;
}
.admin-theme .tippy-tooltip.moreServices-theme .tippy-arrow {
  border-top-color: #ffffff !important;
}
.admin-theme .tippy-tooltip.moreServices-theme[data-placement^=bottom] > .tippy-arrow {
  border-bottom-color: #ffffff !important;
}
.admin-theme .tippy-tooltip p {
  margin: 0;
}
.admin-theme .tippy-tooltip table {
  border-spacing: 0;
  border-collapse: collapse;
}
.admin-theme .tippy-tooltip table td {
  padding: 3px 12px 3px 0;
  text-align: left;
}
.admin-theme .tippy-tooltip table td:first-child {
  text-align: left;
}
.admin-theme .tippy-tooltip table td:last-child {
  padding-right: 0;
  padding-left: 12px;
  text-align: right;
}
.admin-theme .tippy-tooltip[data-placement^=top] > .tippy-arrow {
  bottom: -7px;
  margin: 0 3px;
  -webkit-transform-origin: 50% 0;
          transform-origin: 50% 0;
  border-width: 8px 8px 0;
  border-top-color: #0091ff;
}
.admin-theme .tippy-tooltip[data-placement^=bottom] > .tippy-arrow {
  top: -7px;
  margin: 0 3px;
  -webkit-transform-origin: 50% 7px;
          transform-origin: 50% 7px;
  border-width: 0 8px 8px;
  border-bottom-color: #0091ff;
}
.admin-theme .tippy-tooltip[data-placement^=left] > .tippy-arrow {
  right: -7px;
  margin: 3px 0;
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  border-width: 8px 0 8px 8px;
  border-left-color: #0091ff;
}
.admin-theme .tippy-tooltip[data-placement^=right] > .tippy-arrow {
  left: -7px;
  margin: 3px 0;
  -webkit-transform-origin: 7px 50%;
          transform-origin: 7px 50%;
  border-width: 8px 8px 8px 0;
  border-right-color: #0091ff;
}
.admin-theme .flex-tooltip {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  min-width: 100px;
  padding-right: 20px;
}
.admin-theme .flex-tooltip .hide {
  position: absolute;
  top: 7px;
  right: 12px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.admin-theme .flex-tooltip .hide:hover {
  opacity: 0.6;
}
.admin-theme .project-notices--fixed {
  position: fixed;
  z-index: 9999;
  top: 15px;
  right: 0;
  left: 0;
}
.admin-theme .project-notices--fixed__box {
  position: relative;
  width: 90%;
  margin: auto;
  padding: 23px 30px;
  border: 10px solid #0091ff;
  background-color: #fff;
  color: #58585a;
  font-size: 1.5em;
  line-height: 1.2;
  text-align: center;
}
.admin-theme .project-notices--fixed__box .close {
  position: absolute;
  top: 0rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
}
.admin-theme .modal-in .project-notices--fixed {
  position: relative;
  top: 0;
}
.admin-theme .modal-in .project-notices--fixed .project-notices--fixed__box {
  width: 100%;
  margin: 0 0 16px;
}
.admin-theme .modal-in .project-notices--fixed .project-notices--fixed__box .close {
  display: none;
}
.admin-theme .email-2 p {
  font-size: 16px !important;
}
.admin-theme .btn-group.seperate > .btn {
  max-width: none;
}
.admin-theme .btn-group.btn-same-width {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  width: 100%;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 16px;
}
@media (min-width: 600px) {
  .admin-theme .btn-group.btn-same-width {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
}
.admin-theme .btn-group.btn-same-width > .btn {
  width: 100%;
}
.admin-theme .btn--primary {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3.5rem;
  padding: 0.3rem 1rem;
  border-radius: 5px;
  background: #0074ff;
  color: #ffffff;
}
.admin-theme .btn--primary:hover, .admin-theme .btn--primary:focus {
  background: #00a8ff;
  color: #ffffff;
}
.admin-theme .btn--secondary {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 4rem;
  padding: 0.3rem 1rem;
  border: 1px solid #cccccc;
  border-radius: 5px;
  background-color: #ffffff;
  color: #333333;
}
.admin-theme .btn--secondary:hover, .admin-theme .btn--secondary:focus {
  background-color: rgba(18, 20, 25, 0.05);
}
.admin-theme .btn--link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3.5rem;
  padding: 0.3rem 1rem;
  border-radius: 5px;
  background: transparent;
  color: #0074ff;
}
.admin-theme .btn--link:hover, .admin-theme .btn--link:focus {
  background: transparent;
  color: #00a8ff;
}
.admin-theme .btn--link-more {
  margin-left: 10px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .admin-theme .btn--link-more {
    margin-top: 0;
    padding: 0;
  }
}
.admin-theme .btn--link img {
  max-width: 9px;
  margin-left: 4px;
}
.admin-theme .btn--download {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-right: 5rem;
  color: #0074ff;
}
@media (max-width: 479px) {
  .admin-theme .btn--download span {
    font-size: 1.2rem;
  }
}
.admin-theme .btn--download:after {
  content: "";
  position: absolute;
  top: 0;
  right: 1.5rem;
  bottom: 0;
  width: 1.7rem;
  height: 2rem;
  margin: auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.admin-theme .btn--download.pdf:after {
  background-image: url(./images/pdf-icon.svg);
}
.admin-theme .btn--download.xls:after {
  background-image: url(./images/xls-icon.svg);
}
.admin-theme .btn--filter {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 4rem;
  padding: 0 2rem;
}
.admin-theme .btn--filter img {
  margin-right: 1rem;
}
@media (min-width: 992px) {
  .admin-theme .btn--filter {
    display: none;
  }
}
.admin-theme .btn--menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
  background: transparent;
}
@media (min-width: 992px) {
  .admin-theme .btn--menu {
    display: none;
  }
}
.admin-theme .btn--menu .btn--menu__line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 2.8rem;
  height: 2px;
  margin: 0.3rem 0;
  background: #ffffff;
}
.admin-theme .btn--close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4rem;
  height: 4rem;
  background: transparent;
}
@media (min-width: 992px) {
  .admin-theme .btn--close {
    display: none;
  }
}
.admin-theme .btn--red {
  background-color: #d95e1c;
}
.admin-theme .btn--red:hover, .admin-theme .btn--red:focus {
  background-color: rgb(171.8285714286, 74.4326530612, 22.1714285714);
}
.admin-theme .btn--big {
  height: 6rem;
  padding: 1rem 4rem;
  border-radius: 5px;
  color: #ffffff;
  font-size: 2.2rem;
}
@media (min-width: 992px) {
  .admin-theme .btn--big {
    padding: 1rem 6rem;
  }
}
.admin-theme .btn--add {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1.5rem 0;
  border: none;
  background-color: transparent;
  color: rgba(51, 51, 51, 0.5);
  font-size: 1.4rem;
}
.admin-theme .btn--add__icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: #0074ff;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
}
.admin-theme .btn--submit-form {
  position: relative;
  border-radius: 40px;
  padding: 16px 32px;
  background-color: #0091ff;
  color: #ffffff;
  font-size: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.admin-theme .btn--submit-form:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.admin-theme .btn--icon {
  font-size: 2rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 200px;
  height: 50px;
  border-radius: 25px;
  background-color: #0074ff;
  color: #ffffff;
}
@media (max-width: 575px) {
  .admin-theme .btn--icon {
    font-size: 1.8rem;
  }
}
.admin-theme .btn--icon:hover {
  background-color: #00a8ff;
  color: #ffffff;
}
.admin-theme .btn--icon img {
  width: auto;
  max-height: 20px;
  margin-right: 16px;
}
@media (max-width: 575px) {
  .admin-theme .btn--icon img {
    max-width: 16px;
  }
}
.admin-theme .btn--icon--outline {
  border: 1px solid #0074ff;
  background: #ffffff;
  color: #0074ff;
}
.admin-theme .btn--icon--outline:hover {
  background-color: #f8f8f8;
  color: #0074ff;
}
.admin-theme .btn.btn-simple {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5rem;
}
.admin-theme .btn.btn-simple img {
  margin-right: 0.5rem;
}
.admin-theme .btn.btn-simple span {
  font-size: 15px;
}
.admin-theme .btn.btn-primary {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  padding: 3px 20px;
  border-radius: 0;
  border-radius: 3px;
  background: #2ea5d1;
  color: #ffffff;
}
.admin-theme .btn.btn-primary:hover, .admin-theme .btn.btn-primary:focus {
  background: #00a8ff;
}
.admin-theme .btn.btn-green {
  background: #7ac943;
}
.admin-theme .btn.btn-green:hover, .admin-theme .btn.btn-green:focus {
  background: #0de90d;
}
.admin-theme .btn.btn-orange {
  background: #ff8c00;
}
.admin-theme .btn.btn-orange:hover, .admin-theme .btn.btn-orange:focus {
  background: rgb(255, 174.5, 76.5);
}
.admin-theme .btn.btn-min-width-170 {
  min-width: 17rem;
}
.admin-theme .btn.btn--90 {
  min-width: 90px;
}
.admin-theme .btn--animate-wrapper {
  position: relative;
}
.admin-theme .btn--animate-wrapper:before {
  content: "";
  position: absolute;
  top: calc(50% - 20px);
  left: 16px;
  width: 40px;
  height: 40px;
  opacity: 0;
  background-image: url(images/preloader.svg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}
.admin-theme .btn--animate-wrapper .btn {
  position: relative;
  position: relative;
  min-width: 300px;
  min-height: 70px;
  border-radius: 40px;
  background-color: #0091ff;
}
.admin-theme .btn--animate-wrapper .btn:hover, .admin-theme .btn--animate-wrapper .btn:focus {
  background-color: #0074cc;
}
.admin-theme .btn--animate-wrapper.animate-active {
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.admin-theme .btn--animate-wrapper.animate-active:before {
  -webkit-animation: rotating 0.75s linear infinite;
  animation: rotating 0.75s linear infinite;
  opacity: 1;
}
.admin-theme .btn--animate-wrapper.animate-active .btn {
  opacity: 0.5;
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.admin-theme #step2-submit:disabled,
.admin-theme #step2-submit[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.admin-theme .pricing-btn,
.admin-theme .pricing-btn--view {
  position: relative;
  height: 4rem;
  padding-right: 5rem;
  padding-left: 5rem;
  border-radius: 20px;
  background-color: #0091ff;
  font-size: 20px;
  font-weight: 500;
}
.admin-theme .pricing-btn::before,
.admin-theme .pricing-btn--view::before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  opacity: 0;
  background-image: url("./images/tick.svg");
  background-size: cover;
}
.admin-theme .pricing-btn span,
.admin-theme .pricing-btn--view span {
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  font-size: 20px;
}
.admin-theme .pricing-btn:hover, .admin-theme .pricing-btn:focus,
.admin-theme .pricing-btn--view:hover,
.admin-theme .pricing-btn--view:focus {
  outline: none;
  background-color: #0074cc;
  text-decoration: none;
}
.admin-theme .pricing-btn.btn--big,
.admin-theme .pricing-btn--view.btn--big {
  height: 7rem;
  border-radius: 40px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 28px;
}
.admin-theme .pricing-btn--view {
  padding-right: 4rem;
  padding-left: 4rem;
}
@media (max-width: 767px) {
  .admin-theme .pricing-btn--view {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media (max-width: 575px) {
  .admin-theme .pricing-btn--view {
    height: auto;
    padding: 1rem;
  }
}
.admin-theme .pricing-btn--view::before {
  background-image: url("./images/search.svg");
}
@media (max-width: 767px) {
  .admin-theme .pricing-btn--view::before {
    content: none;
  }
}
.admin-theme .pricing-btn--view span {
  font-size: 16px;
}
.admin-theme .pricing-btn--view:hover::before, .admin-theme .pricing-btn--view:focus::before {
  left: 20px;
  opacity: 1;
}
.admin-theme .pricing-btn--view:hover span, .admin-theme .pricing-btn--view:focus span {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
@media (max-width: 767px) {
  .admin-theme .pricing-btn--view:hover span, .admin-theme .pricing-btn--view:focus span {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.admin-theme .back-link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 3rem;
  -webkit-transition: 200ms all ease-in-out;
  transition: 200ms all ease-in-out;
  color: #0074ff;
}
.admin-theme .back-link:hover {
  text-decoration: none;
}
.admin-theme .back-link:hover span {
  text-decoration: underline;
}
.admin-theme .back-link span {
  font-size: 16px;
}
.admin-theme .back-link--indent-top {
  margin-top: 10rem;
}
@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes half-rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
.admin-theme .rotate {
  -webkit-animation: half-rotate 0s forwards;
          animation: half-rotate 0s forwards;
}
.admin-theme .dropdown {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991px) {
  .admin-theme .dropdown {
    width: 100%;
  }
}
.admin-theme .dropdown__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 4rem;
  padding: 0 3rem 0 1.5rem;
  border: 1px solid #cccccc;
  border-radius: 5px;
  background-color: #ffffff;
  color: #333333;
}
.admin-theme .dropdown__btn:after {
  content: "";
  position: absolute;
  z-index: 9;
  top: 0;
  right: 1rem;
  bottom: 0;
  width: 0.9rem;
  height: 0.6rem;
  margin: auto;
  background: url(./images/dropdown-arrow.svg) no-repeat center center;
  background-size: contain;
}
.admin-theme .dropdown__btn:hover {
  background-color: rgba(18, 20, 25, 0.05);
  color: #333333;
}
.admin-theme .dropdown__btn--span {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-theme .dropdown__menu {
  display: none;
  position: absolute;
  z-index: 99;
  top: 100%;
  right: auto;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 18rem;
  max-width: 30rem;
  max-height: 30rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  border: 1px solid rgba(18, 20, 25, 0.1);
  border-radius: 5px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0 1rem 0 rgba(18, 20, 25, 0.05);
          box-shadow: 0 0 1rem 0 rgba(18, 20, 25, 0.05);
}
.admin-theme .dropdown__menu--header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 3px 6px;
}
.admin-theme .dropdown__menu--header.justify-between {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.admin-theme .dropdown__menu--header.justify-between a {
  margin: 5px;
}
.admin-theme .dropdown__menu--header.justify-between a:not(.blue) {
  color: #292948;
}
.admin-theme .dropdown__menu--header.justify-between a:not(.blue):hover {
  color: #121419;
}
.admin-theme .dropdown__menu--header.justify-between .dropdown-close {
  font-size: 16px;
}
.admin-theme .dropdown__menu--header.justify-between .dropdown-reset {
  color: #9e9e9e;
  cursor: pointer;
}
.admin-theme .dropdown__menu--item {
  display: inline-block;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 25rem;
  height: 3rem;
  padding: 0.6rem 1rem;
  overflow: hidden;
  color: #333333;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}
.admin-theme .dropdown__menu--item:hover {
  background-color: rgba(0, 168, 255, 0.1);
}
.admin-theme .dropdown__menu--item.selected {
  position: relative;
  padding-right: 3rem;
}
.admin-theme .dropdown__menu--item.selected .check-mark {
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 15px;
}
.admin-theme .dropdown__menu--item.selected .check-mark:after {
  content: "";
  display: block;
  width: 0.5em;
  height: 1em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-width: 0 0.15em 0.15em 0;
  border-style: solid;
}
.admin-theme .dropdown__menu--inner {
  padding-left: 0;
  list-style: none;
}
.admin-theme .dropdown__menu--inner li {
  margin: 0;
}
.admin-theme .dropdown__menu .bs-searchbox {
  width: auto;
  margin: 0.3rem 0.5rem;
}
.admin-theme .dropdown__menu .bs-searchbox input {
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 3px;
}
.admin-theme .dropdown__menu .popover-title button.close {
  display: none;
}
.admin-theme .dropdown.show .dropdown__btn:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.admin-theme .dropdown.show .dropdown__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.admin-theme .dropdown.simpleDropdown .dropdown__btn {
  height: 3.2rem;
  border: none;
  color: #0074ff;
}
.admin-theme .dropdown.simpleDropdown .dropdown__btn:after {
  background: url(./images/dropdown-arrow-blue.svg) no-repeat center center;
}
.admin-theme .dropdown .selectpicker {
  display: none;
}
.admin-theme .dropdown .selectpicker ~ .dropdown__menu .dropdown__menu--inner .selected .check-mark {
  display: none;
}
.admin-theme .dropdown .tippy-help {
  margin-left: 0.3rem;
}
.admin-theme .dropdown.disabled .dropdown-toggle {
  opacity: 0.5;
  cursor: default;
}
.admin-theme .dropdown.disabled .dropdown__menu {
  display: none !important;
}
.admin-theme .form-group-dropdown {
  position: relative;
}
@media (max-width: 991px) {
  .admin-theme .form-group-dropdown {
    width: 100%;
  }
}
.admin-theme .form-group-dropdown .caret {
  content: "";
  position: absolute;
  z-index: 9;
  top: 0;
  right: 1rem;
  bottom: 0;
  width: 0.9rem;
  height: 0.6rem;
  margin: auto;
  background: url(./images/dropdown-arrow.svg) no-repeat center center;
  background-size: contain;
}
.admin-theme .form-group-dropdown .datepicker-input:focus ~ .caret {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.admin-theme .dropdownSelectpicker {
  display: none;
}
.admin-theme .dropdownSelectpicker select {
  display: none;
}
.admin-theme .dropdownSelectpicker .filter-option-inner-inner {
  display: inline-block;
  max-width: 20rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-theme .rounded-item {
  position: relative;
}
.admin-theme .rounded-item--gold .rounded-item__tag {
  background: #ff8c00;
}
.admin-theme .rounded-item--gold .rounded-item__label {
  background-color: #fff2e1;
}
.admin-theme .rounded-item--light-blue .rounded-item__tag {
  background: #0091ff;
}
.admin-theme .rounded-item--light-blue .rounded-item__label {
  background-color: #e6f4ff;
}
@media (max-width: 767px) {
  .admin-theme .rounded-item {
    margin-bottom: 16px;
  }
}
.admin-theme .rounded-item__tag {
  display: inline-block;
  height: 100px;
  margin-bottom: -66px;
  padding: 8px 16px;
  border-radius: 20px;
  background: #cccccc;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.admin-theme .rounded-item__exhausted {
  text-align: center;
}
.admin-theme .rounded-item__tooltip {
  position: absolute;
  top: 8px;
  right: 4px;
  width: 16px;
  height: 16px;
}
.admin-theme .rounded-item__tooltip.tippy-outside {
  z-index: 2;
}
@media (max-width: 767px) {
  .admin-theme .rounded-item__tooltip.tippy-outside {
    top: 4px;
    right: 0;
    width: 23px;
    height: 23px;
  }
}
.admin-theme .rounded-item__tooltip.tippy-outside-two {
  right: 0;
}
.admin-theme .rounded-item__tooltip.tippy-outside--top {
  top: 40px;
  right: 0;
}
.admin-theme .rounded-item__tooltip.tippy-outside--top--sec {
  top: 95px;
}
@media (max-width: 1019px) {
  .admin-theme .rounded-item__tooltip.tippy-outside--top--sec {
    top: 75px;
  }
}
.admin-theme .rounded-item__tooltip.tippy-outside-propagation {
  top: 39px;
}
.admin-theme .rounded-item__tooltip.no-absolute-tooltip {
  position: relative;
  top: 3px;
  right: 0;
}
.admin-theme .rounded-item__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  cursor: pointer;
}
.admin-theme .rounded-item__input:checked ~ .rounded-item__label {
  border: 1px solid #0091ff;
  -webkit-box-shadow: inset 0 0 0 2px #0091ff;
  box-shadow: inset 0 0 0 2px #0091ff;
}
.admin-theme .rounded-item__input:checked ~ .rounded-item__label .pricing-btn {
  background-color: #33a7ff;
}
.admin-theme .rounded-item__input:checked ~ .rounded-item__label .pricing-btn::before {
  left: 30px;
  opacity: 1;
}
.admin-theme .rounded-item__input:checked ~ .rounded-item__label .pricing-btn--thin::before {
  left: 12px;
  opacity: 1;
}
@media (max-width: 1019px) {
  .admin-theme .rounded-item__input:checked ~ .rounded-item__label .pricing-btn--thin::before {
    left: 30px;
  }
}
.admin-theme .rounded-item__input:checked ~ .rounded-item__label .pricing-btn span {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.admin-theme .rounded-item__input:disabled ~ .rounded-item__label:hover {
  border: 1px solid #cccccc !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  cursor: not-allowed;
}
.admin-theme .rounded-item__input:disabled ~ .rounded-item__label .pricing-btn {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.admin-theme .rounded-item__input:disabled ~ .rounded-item__label .pricing-btn:hover {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.admin-theme .rounded-item__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem 1rem;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  border: 1px solid #cccccc;
  border-radius: 20px;
  background-color: #f8f8f8;
  cursor: pointer;
}
.admin-theme .rounded-item__label:hover {
  border: 1px solid #0091ff;
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
}
.admin-theme .rounded-item__title {
  display: block;
  min-height: 86px;
  margin-bottom: 8px;
  color: #333333;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .admin-theme .rounded-item__title {
    min-height: 80px;
  }
}
@media (max-width: 575px) {
  .admin-theme .rounded-item__title {
    min-height: auto;
  }
}
.admin-theme .rounded-item__title--underline {
  min-height: auto;
}
.admin-theme .rounded-item__title--small {
  min-height: auto;
}
.admin-theme .rounded-item__perex {
  display: block;
  margin-bottom: 30px;
  color: #333333;
  text-align: center;
}
.admin-theme .rounded-item__perex .orange--price {
  font-size: 20px;
  font-weight: 500;
}
.admin-theme .rounded-item__body {
  display: block;
  min-height: 350px;
  margin-bottom: 16px;
  text-align: center;
}
.admin-theme .rounded-item__body span {
  color: #333333;
  font-size: 16px;
}
.admin-theme .rounded-item__body img {
  width: 100%;
  max-width: 100%;
}
.admin-theme .rounded-item__admin-text {
  margin-bottom: 0;
  color: #333333;
  font-size: 14px;
  text-align: center;
}
.admin-theme .rounded-item__gray-text {
  display: inline-block;
  position: relative;
  margin-bottom: 8px;
  opacity: 0.6;
  font-size: 16px;
  text-align: center;
  text-decoration: line-through;
}
.admin-theme .rounded-item__gray-text .tippy-admin-help {
  position: absolute;
  top: 4px;
  left: 100%;
}
.admin-theme .rounded-item__normal-text {
  display: block;
  margin-bottom: 24px;
  color: #333333;
  font-weight: 500;
}
.admin-theme .rounded-item__blue-text {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 48px;
  margin-bottom: 12px;
  color: #0091ff;
  font-size: 22px;
  font-weight: 500;
}
.admin-theme .rounded-item__credit-text {
  display: block;
  margin-bottom: 8px;
  color: #333333;
  font-size: 14px;
}
.admin-theme .rounded-item__textfield-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.admin-theme .rounded-item__textfield {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 120px;
  height: 38px;
  padding: 2px 4px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}
.admin-theme .rounded-item__textfield::-webkit-input-placeholder {
  opacity: 1;
  color: rgba(51, 51, 51, 0.5);
}
.admin-theme .rounded-item__textfield::-moz-placeholder {
  opacity: 1;
  color: rgba(51, 51, 51, 0.5);
}
.admin-theme .rounded-item__textfield:-ms-input-placeholder {
  opacity: 1;
  color: rgba(51, 51, 51, 0.5);
}
.admin-theme .rounded-item__textfield::-ms-input-placeholder {
  opacity: 1;
  color: rgba(51, 51, 51, 0.5);
}
.admin-theme .rounded-item__textfield::placeholder {
  opacity: 1;
  color: rgba(51, 51, 51, 0.5);
}
.admin-theme .rounded-item__textfield:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}
.admin-theme .rounded-item__textfield::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}
.admin-theme .rounded-item__textfield::-webkit-outer-spin-button, .admin-theme .rounded-item__textfield::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.admin-theme .rounded-item__textfield[type=number] {
  -moz-appearance: textfield;
}
.admin-theme .rounded-item__textfield:focus {
  border: 2px solid #0091ff;
  outline: none;
}
.admin-theme .rounded-item__textfield-label {
  padding-left: 8px;
  color: #333;
}
.admin-theme .rounded-item__footer {
  display: block;
  text-align: center;
}
.admin-theme .progress-bar {
  min-height: 60px;
}
.admin-theme .logo-group {
  min-height: 50px;
  margin-bottom: 10px;
}
.admin-theme .logo-group .wrapper {
  display: inline-block;
  position: relative;
  width: 40px;
  margin-right: 20px;
}
.admin-theme .logo-group .wrapper:last-child {
  margin-right: 0;
}
.admin-theme .logo-group .wrapper:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -6px;
  left: 0;
  width: 26px;
  height: 14px;
  background-image: url(images/vip-label.svg);
  background-repeat: no-repeat;
}
.admin-theme .logo-group .wrapper--smaller {
  margin-right: 8px;
}
.admin-theme .logo-group .wrapper--smaller:last-child {
  margin-right: 0;
}
.admin-theme .logo-group .wrapper--with-new-label:before {
  left: -13px;
}
.admin-theme .logo-group .wrapper--with-new-label:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -6px;
  left: 7px;
  width: 41px;
  height: 14px;
  background-image: url(images/new-label.svg);
  background-repeat: no-repeat;
}
.admin-theme .logo-group .wrapper--new-label-only:before {
  content: none;
}
.admin-theme .logo-group .wrapper--new-label-only:after {
  right: 0;
  left: auto;
}
.admin-theme .logo-group .wrapper--without-label:before, .admin-theme .logo-group .wrapper--without-label:after {
  content: none;
}
.admin-theme .logo-group img {
  width: 100%;
  max-width: 42px;
  margin-right: 20px;
}
.admin-theme .logo-group img:last-child {
  margin-right: 0;
}
.admin-theme .logo-group--smaller {
  min-height: 106px;
}
@media (max-width: 575px) {
  .admin-theme .logo-group--smaller {
    min-height: auto;
    margin-bottom: 0;
    padding-bottom: 20px;
  }
}
.admin-theme .logo-group--smaller img {
  max-width: 34px;
  height: 34px;
  margin-right: 4px;
}
.admin-theme .logo-group--smaller img:last-child {
  margin-right: 0;
}
.admin-theme .separator-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid #cccccc;
  gap: 16px;
}
.admin-theme .newsletter {
  min-height: 26px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .admin-theme .newsletter {
    min-height: auto;
  }
}
.admin-theme .newsletter img {
  width: 100%;
  max-width: 20px;
  margin-right: 8px;
}
.admin-theme .newsletter span {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
}
.admin-theme .social-media {
  min-height: 60px;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .admin-theme .social-media {
    min-height: auto;
  }
}
.admin-theme .social-media img {
  width: 100%;
  max-width: 130px;
}
.admin-theme .sponzoring {
  margin-bottom: 0;
  color: #333333;
  font-size: 12px;
  white-space: nowrap;
}
@media (max-width: 1019px) {
  .admin-theme .sponzoring {
    white-space: normal;
  }
}
.admin-theme .sponzoring .black {
  font-size: 12px;
}
@media (max-width: 1019px) {
  .admin-theme .sponzoring .black {
    font-size: 16px;
  }
}
.admin-theme .sponzoring .orange {
  color: #ff8c00;
  font-size: 16px;
}
@media (max-width: 1019px) {
  .admin-theme .sponzoring .orange {
    font-size: 20px;
  }
}
.admin-theme .sponzoring .red {
  color: #ff0000;
  font-size: 12px;
}
@media (max-width: 1019px) {
  .admin-theme .sponzoring .red {
    font-size: 16px;
  }
}
.admin-theme .alert-text {
  color: #ff0000;
  text-align: center;
}
.admin-theme #add-credits-5:disabled:disabled ~ #add-credits-label {
  -webkit-filter: grayscale(0) !important;
          filter: grayscale(0) !important;
}
.admin-theme .tippy-next-to-credits {
  position: absolute;
  right: 65px;
  bottom: 118px;
}
.admin-theme .filters {
  width: 100%;
}
.admin-theme .filters__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 20rem;
}
@media (min-width: 992px) {
  .admin-theme .filters__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    max-width: none;
  }
}
.admin-theme .filters__box .custom-input {
  margin: 0 0 1rem 0;
}
.admin-theme .filters__box--item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}
.admin-theme .filters__box--item .form-group__control,
.admin-theme .filters__box--item .filter-option-inner-inner {
  font-size: 14px;
}
@media (min-width: 992px) {
  .admin-theme .filters__box--item {
    margin-right: 1rem;
  }
}
@media (max-width: 991px) {
  .admin-theme .filters__box--item .tippy-help {
    position: absolute;
    top: 1rem;
    right: -2.5rem;
  }
}
@media (min-width: 992px) {
  .admin-theme .filters__box--item:first-child .form-group .form-group__control {
    max-width: 80%;
  }
}
.admin-theme .filters__box--search {
  width: 100%;
}
.admin-theme .filters__box--search .form-group {
  max-width: 100% !important;
}
.admin-theme .filters__box .form-group {
  max-width: 11rem;
}
@media (max-width: 991px) {
  .admin-theme .filters__box .form-group {
    max-width: none;
  }
}
.admin-theme .filters__box .btn--primary.admin-desktop-hide {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.admin-theme .input-with-icon {
  position: relative;
  width: 100%;
}
.admin-theme .input-with-icon input {
  max-width: 100% !important;
}
.admin-theme .input-with-icon button[type=submit] {
  position: absolute;
  z-index: 10;
  top: 1px;
  right: 1px;
  width: 30px;
  height: calc(100% - 2px);
  border: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  outline: none;
  background: #ffffff;
  cursor: pointer;
}
.admin-theme .input-with-icon button[type=submit]:hover, .admin-theme .input-with-icon button[type=submit]:focus {
  background: #dfeeff;
}
.admin-theme .input-with-icon button[type=submit] img {
  width: 15px;
}
.admin-theme .statistics-filters .custom-input {
  margin-bottom: 8px;
}
.admin-theme .statistics-filters__holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.admin-theme .statistics-filters__item {
  min-width: 110px;
  margin-right: 1rem;
}
.admin-theme .statistics-filters__item-search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.admin-theme .statistics-filters__item-search button {
  position: absolute;
  z-index: 10;
  top: 12px;
  right: 30px;
  border: none;
  outline: none;
  background: #fff;
  cursor: pointer;
}
.admin-theme .statistics-filters__item-search button img {
  width: 15px;
}
.admin-theme .statistics-filters__item-search .custom-input--error button {
  top: 33px;
}
.admin-theme .statistics-filters__item-search .custom-input--error ~ .tippy-admin-help {
  margin-top: 20px;
}
.admin-theme .statistics-filters__item-reset {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 40px;
  margin-bottom: 8px;
  color: #0074ff;
  font-size: 16px;
  cursor: pointer;
}
.admin-theme .invalid-range,
.admin-theme .invalid-dates {
  display: none;
  margin: 4px 0;
  padding: 12px 8px;
  border-radius: 8px;
  background: #d95e1c;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
}
.admin-theme .invalid-dates {
  background: #fa8a01;
}
.admin-theme .export-disabled {
  opacity: 0.5;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-filter: grayscale(100);
          filter: grayscale(100);
}
@media only screen and (min-width: 992px) {
  .admin-theme .stats-filters {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .admin-theme .stats-filters .stats-filters-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 16px;
  }
  .admin-theme .stats-filters .stats-filters-wrapper > div {
    width: 100%;
    max-width: calc(20% - 13px);
    margin: 0;
  }
  .admin-theme .stats-filters .stats-filters-wrapper > div input,
  .admin-theme .stats-filters .stats-filters-wrapper > div button,
  .admin-theme .stats-filters .stats-filters-wrapper > div .dropdown.bootstrap-select {
    width: 100%;
  }
  .admin-theme .stats-filters .stats-filters-wrapper > div input[type=search] {
    height: 30px;
    padding: 0 8px;
    font-size: 16px;
  }
  .admin-theme .stats-filters .stats-filters-wrapper > div .no-results {
    padding: 8px;
  }
  .admin-theme .stats-filters .stats-filters-wrapper .form-group__control--with-tooltip ~ button {
    width: auto;
  }
  .admin-theme .stats-filters .stats-filters-actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 8px;
  }
}
.admin-theme .stats-filters-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.admin-theme .flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.admin-theme .footer {
  padding: 5rem 0;
  background-color: #f7f7f7;
}
.admin-theme .footer a {
  -webkit-transition: none;
  transition: none;
}
.admin-theme .footer__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px;
}
.admin-theme .footer__headline {
  min-width: 250px;
  color: #9e9e9e;
  font-size: 18px;
  text-transform: uppercase;
}
.admin-theme .footer__contact {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .admin-theme .footer__contact {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 60%;
        -ms-flex: 1 0 60%;
            flex: 1 0 60%;
    max-width: 60%;
  }
}
.admin-theme .footer__phone {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.admin-theme .footer__phone:last-child {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .admin-theme .footer__phone {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
.admin-theme .footer__phone a {
  font-size: 18px;
}
.admin-theme .footer__phone a:hover, .admin-theme .footer__phone a:focus {
  text-decoration: underline;
}
.admin-theme .footer__phone a:hover .footer__phone-prefix, .admin-theme .footer__phone a:focus .footer__phone-prefix {
  color: #00a8ff;
}
.admin-theme .footer__phone-prefix {
  color: #9e9e9e;
  font-size: 18px;
}
.admin-theme .footer__social {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .admin-theme .footer__social {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 40%;
        -ms-flex: 1 0 40%;
            flex: 1 0 40%;
    max-width: calc(40% - 40px);
  }
}
.admin-theme .footer__social .footer__headline {
  margin-bottom: 24px;
}
.admin-theme .footer__social-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.admin-theme .footer__social-item:last-child {
  margin-bottom: 0;
}
.admin-theme .footer__social-item a:first-child {
  min-width: 130px;
  font-size: 18px;
  text-decoration: underline;
}
.admin-theme .footer__social-item a:first-child:hover, .admin-theme .footer__social-item a:first-child:focus {
  text-decoration: none;
}
.admin-theme .footer__social-item a img {
  width: 100%;
  max-width: 30px;
}
.admin-theme .footer__company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}
@media (min-width: 768px) {
  .admin-theme .footer__company {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.admin-theme .footer__company-item {
  width: 100%;
  max-width: calc(50% - 20px);
}
@media (min-width: 768px) {
  .admin-theme .footer__company-item:first-child {
    gap: 8px;
    max-width: 230px;
  }
}
@media (min-width: 768px) {
  .admin-theme .footer__company-item:nth-of-type(2) {
    max-width: 320px;
  }
}
.admin-theme .footer__company-item p {
  color: #121419;
}
.admin-theme .footer__company-item p:last-child {
  margin-bottom: 0;
}
.admin-theme .form-group {
  width: 100%;
}
.admin-theme .form-group__label {
  line-height: 3.4rem;
  white-space: nowrap;
  cursor: pointer;
  font-size: 14px;
}
@media (min-width: 480px) {
  .admin-theme .form-group__label {
    font-size: calc(0vw + 14px);
  }
}
@media (min-width: 800px) {
  .admin-theme .form-group__label {
    font-size: 14px;
  }
}
.admin-theme .form-group__label.label-140 {
  min-width: 14rem;
}
@media (max-width: 599px) {
  .admin-theme .form-group__label.label-140 br {
    display: none;
  }
}
.admin-theme .form-group__control {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 4rem;
  padding: 0.5rem 1rem;
  border: 1px solid #cccccc;
  border-radius: 5px;
  outline: none;
  background-color: #ffffff;
  color: #333333;
}
.admin-theme .form-group__control:hover, .admin-theme .form-group__control:focus {
  border: 1px solid #0074ff;
  background-color: rgba(0, 116, 255, 0.05);
}
.admin-theme .form-group__control:hover ~ button[type=submit], .admin-theme .form-group__control:focus ~ button[type=submit] {
  background: #dfeeff;
}
.admin-theme .form-group__control:-moz-read-only {
  min-height: 4rem;
  border: 1px solid rgba(137, 137, 137, 0.15);
  outline: none;
  background-color: #f5f5f5;
  color: #898989;
  font-size: 1.8rem;
  line-height: 40px;
}
.admin-theme .form-group__control:read-only {
  min-height: 4rem;
  border: 1px solid rgba(137, 137, 137, 0.15);
  outline: none;
  background-color: #f5f5f5;
  color: #898989;
  font-size: 1.8rem;
  line-height: 40px;
}
.admin-theme .form-group--with-fail > span {
  color: #ff4d4d;
  font-size: 1.3rem;
  font-weight: 500;
}
@media (min-width: 800px) {
  .admin-theme .form-group.horizontal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .admin-theme .form-group.horizontal:not(.align-items-start) {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.admin-theme .form-group.horizontal .form-group__label {
  margin: 0 0 1rem 0;
}
@media (min-width: 800px) {
  .admin-theme .form-group.horizontal .form-group__label {
    margin: 0 1rem 0 0;
  }
}
@media (min-width: 800px) {
  .admin-theme .form-group.horizontal.align-items-start .form-group__label {
    margin: 1rem 1rem 0 0;
  }
}
.admin-theme .form-group.center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 799px) {
  .admin-theme .form-group.center.horizontal {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.admin-theme .form-group.validation-error .form-group__control,
.admin-theme .form-group.validation-error .radio__label--check,
.admin-theme .form-group.validation-error .checkbox__label--check {
  border-color: #ff4d4d;
}
.admin-theme .form-group.validation-error .dropdown__btn {
  border-color: #ff4d4d;
  background-color: rgba(255, 77, 77, 0.02) !important;
}
.admin-theme .form-group.validation-error .error-msg {
  display: block;
}
@media (min-width: 600px) {
  .admin-theme .form-group.validation-error.horizontal > .form-group__label {
    padding-top: 2rem;
  }
}
.admin-theme .form-group .dropdown {
  width: 100%;
}
.admin-theme .form-group .dropdown .dropdown__btn {
  background-color: rgba(204, 204, 204, 0.2);
}
.admin-theme .form-group textarea.form-group__control {
  min-height: 13rem;
  padding-top: 1rem;
}
.admin-theme .form-group .row {
  width: -webkit-fill-available;
}
.admin-theme .input-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
.admin-theme .input-group.seperate > input:not(:last-child),
.admin-theme .input-group.seperate .btn:not(:last-child) {
  margin-right: 1rem;
}
@media (max-width: 599px) {
  .admin-theme .input-group.mobile-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 1rem;
  }
  .admin-theme .input-group.mobile-column > input,
  .admin-theme .input-group.mobile-column .btn {
    width: 100%;
  }
  .admin-theme .input-group.mobile-column > input:not(:last-child),
  .admin-theme .input-group.mobile-column .btn:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.admin-theme .input-group .form-group__control {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.admin-theme .input-group .input-group-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.375rem 0.75rem;
  border: 1px solid #cccccc;
  border-radius: 0.25rem;
  background-color: rgba(204, 204, 204, 0.2);
  color: #333333;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}
.admin-theme .input-group:not(.seperate) > *:first-of-type:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.admin-theme .input-group:not(.seperate) > *:nth-of-type(n + 2):not(:last-of-type) {
  margin-left: -1px;
  border-radius: 0;
}
.admin-theme .input-group:not(.seperate) > *:last-of-type:not(:first-of-type) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.admin-theme .form--step1 .form__box,
.admin-theme .form--collegue .form__box {
  padding: 2rem;
  border-radius: 5px;
  background: #f8f8f8;
  color: #333333;
}
.admin-theme .form--step1 .form-group__control ::-webkit-input-placeholder,
.admin-theme .form--collegue .form-group__control ::-webkit-input-placeholder {
  font-size: 1.4rem;
}
.admin-theme .form--step1 .form-group__control :-ms-input-placeholder,
.admin-theme .form--collegue .form-group__control :-ms-input-placeholder {
  font-size: 1.4rem;
}
.admin-theme .form--step1 .form-group__control ::-webkit-input-placeholder, .admin-theme .form--collegue .form-group__control ::-webkit-input-placeholder {
  font-size: 1.4rem;
}
.admin-theme .form--step1 .form-group__control ::-moz-placeholder, .admin-theme .form--collegue .form-group__control ::-moz-placeholder {
  font-size: 1.4rem;
}
.admin-theme .form--step1 .form-group__control :-ms-input-placeholder, .admin-theme .form--collegue .form-group__control :-ms-input-placeholder {
  font-size: 1.4rem;
}
.admin-theme .form--step1 .form-group__control ::-ms-input-placeholder, .admin-theme .form--collegue .form-group__control ::-ms-input-placeholder {
  font-size: 1.4rem;
}
.admin-theme .form--step1 .form-group__control ::placeholder,
.admin-theme .form--collegue .form-group__control ::placeholder {
  font-size: 1.4rem;
}
.admin-theme .choose-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 36rem;
  margin: 4.8rem auto 3.2rem;
}
.admin-theme .choose-grid__item:not(:last-child) {
  margin-right: 2.4rem;
}
.admin-theme .choose-grid:after {
  content: "";
  position: absolute;
  top: -40px;
  left: -100px;
  width: 75px;
  height: 71px;
  background: url(images/curved-arrow.png) no-repeat center center;
  background-size: contain;
}
@media (max-width: 799px) {
  .admin-theme .choose-grid:after {
    content: none;
  }
}
.admin-theme .custom-input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 2rem;
}
.admin-theme .custom-input__invisible {
  display: none;
}
.admin-theme .custom-input__error {
  display: none;
  margin-bottom: 4px;
  color: #ff4d4d;
  font-weight: 500;
}
.admin-theme .custom-input label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 150px;
  width: 100%;
  margin: 0 0 8px;
  padding: 0;
  font-size: 16px;
  line-height: 18px;
}
.admin-theme .custom-input .datepicker-input {
  cursor: pointer;
}
.admin-theme .custom-input .datepicker-input ~ .custom-input__icon {
  pointer-events: none;
}
.admin-theme .custom-input[data-label-weight=bold] > label {
  font-weight: 500;
}
.admin-theme .custom-input[data-label=false] > label {
  display: none;
}
.admin-theme .custom-input[data-tooltip=false] .tippy-admin-help {
  display: none;
}
.admin-theme .custom-input[data-tooltip-position=relative] .tippy-admin-help {
  position: relative !important;
}
.admin-theme .custom-input[data-label-visibility=hidden] > label {
  visibility: hidden;
}
.admin-theme .custom-input[data-height=bigger] > label {
  font-size: 16px;
}
.admin-theme .custom-input[data-height=bigger] > input {
  height: 5rem;
  font-size: 16px;
}
.admin-theme .custom-input[data-height=bigger] .ms-choice,
.admin-theme .custom-input[data-height=bigger] .ms-choice > span {
  height: 5rem;
  font-size: 16px;
  line-height: 5rem;
}
.admin-theme .custom-input[data-height=bigger] .radio-item input[type=radio] + .radio-label:before,
.admin-theme .custom-input[data-height=bigger] .radio-item input[type=checkbox] + .radio-label:before {
  width: 22px;
  height: 22px;
}
.admin-theme .custom-input[data-height=bigger] .radio-item input[type=radio] + .radio-label,
.admin-theme .custom-input[data-height=bigger] .radio-item input[type=checkbox] + .radio-label {
  font-size: 15px;
}
.admin-theme .custom-input[data-height=biggest] > label {
  line-height: 20px;
}
.admin-theme .custom-input[data-height=biggest] > input {
  height: 6rem;
}
.admin-theme .custom-input[data-height=biggest] .ms-choice,
.admin-theme .custom-input[data-height=biggest] .ms-choice > span {
  height: 6rem;
  line-height: 6rem;
}
.admin-theme .custom-input[data-height=biggest] .radio-item input[type=radio] + .radio-label:before,
.admin-theme .custom-input[data-height=biggest] .radio-item input[type=checkbox] + .radio-label:before {
  width: 24px;
  height: 24px;
}
.admin-theme .custom-input[data-height=biggest] .radio-item input[type=radio] + .radio-label,
.admin-theme .custom-input[data-height=biggest] .radio-item input[type=checkbox] + .radio-label {
  font-size: 16px;
}
.admin-theme .custom-input input,
.admin-theme .custom-input textarea,
.admin-theme .custom-input select {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  height: 4rem;
  padding: 0.5rem 1rem;
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
  border: 1px solid #cccccc;
  border-radius: 5px;
  outline: none;
  background-color: #ffffff;
  color: #333333;
  font-size: 14px;
  font-family: "Rubik", sans-serif;
}
.admin-theme .custom-input input ~ .multiple-select button,
.admin-theme .custom-input textarea ~ .multiple-select button,
.admin-theme .custom-input select ~ .multiple-select button {
  border: 1px solid #cccccc;
  outline: none;
  background-color: #ffffff;
}
.admin-theme .custom-input input ~ .multiple-select button:focus,
.admin-theme .custom-input textarea ~ .multiple-select button:focus,
.admin-theme .custom-input select ~ .multiple-select button:focus {
  border: 1px solid #0074ff;
  outline: none;
  background-color: rgba(0, 116, 255, 0.05);
}
.admin-theme .custom-input input:focus,
.admin-theme .custom-input textarea:focus,
.admin-theme .custom-input select:focus {
  border: 1px solid #0074ff;
  background-color: rgba(0, 116, 255, 0.05);
}
.admin-theme .custom-input input[disabled],
.admin-theme .custom-input textarea[disabled],
.admin-theme .custom-input select[disabled] {
  background: rgba(0, 0, 0, 0.1);
  cursor: not-allowed;
}
.admin-theme .custom-input input[disabled] ~ .multiple-select button,
.admin-theme .custom-input textarea[disabled] ~ .multiple-select button,
.admin-theme .custom-input select[disabled] ~ .multiple-select button {
  background: rgba(0, 0, 0, 0.1);
  cursor: not-allowed;
}
.admin-theme .custom-input input[disabled] ~ .multiple-select button > span,
.admin-theme .custom-input textarea[disabled] ~ .multiple-select button > span,
.admin-theme .custom-input select[disabled] ~ .multiple-select button > span {
  color: #999;
}
.admin-theme .custom-input input[disabled] ~ .multiple-select button:focus,
.admin-theme .custom-input textarea[disabled] ~ .multiple-select button:focus,
.admin-theme .custom-input select[disabled] ~ .multiple-select button:focus {
  border: 1px solid #cccccc;
  outline: none;
}
.admin-theme .custom-input input[disabled]:hover, .admin-theme .custom-input input[disabled]:focus,
.admin-theme .custom-input textarea[disabled]:hover,
.admin-theme .custom-input textarea[disabled]:focus,
.admin-theme .custom-input select[disabled]:hover,
.admin-theme .custom-input select[disabled]:focus {
  border-color: rgba(0, 0, 0, 0.1);
}
.admin-theme .custom-input textarea {
  min-height: 200px;
  padding-top: 1rem;
}
.admin-theme .custom-input .multiple-select ul li label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}
.admin-theme .custom-input .multiple-select ul li label input {
  position: relative;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  width: 20px;
  max-width: 50px;
  height: 20px;
  margin: 0;
  margin: 0 8px 0 0;
}
.admin-theme .custom-input .multiple-select ul li label span {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
.admin-theme .custom-input--error .custom-input__error {
  display: block;
}
.admin-theme .custom-input--error input,
.admin-theme .custom-input--error textarea,
.admin-theme .custom-input--error select {
  border-color: #ff4d4d;
  background-color: rgba(255, 77, 77, 0.02);
}
.admin-theme .custom-input--error input ~ .multiple-select button, .admin-theme .custom-input--error input ~ .group-select .ms-choice,
.admin-theme .custom-input--error textarea ~ .multiple-select button,
.admin-theme .custom-input--error textarea ~ .group-select .ms-choice,
.admin-theme .custom-input--error select ~ .multiple-select button,
.admin-theme .custom-input--error select ~ .group-select .ms-choice {
  border-color: #ff4d4d;
  background-color: rgba(255, 77, 77, 0.02);
}
.admin-theme .custom-input .group-select .ms-drop .optgroup {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 4px 0;
  font-size: 15px;
}
.admin-theme .custom-input .group-select .ms-choice:focus {
  outline: none;
}
.admin-theme .custom-input .group-select:disabled ~ .group-select button {
  cursor: not-allowed;
  background: rgba(0, 0, 0, 0.1);
}
.admin-theme .custom-input--horizontal {
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 24px;
}
.admin-theme .custom-input--horizontal label {
  width: auto;
  margin: 0 16px 0 0;
}
.admin-theme .custom-input--horizontal[data-tooltip=true] label {
  margin-right: 0;
}
.admin-theme .custom-input--horizontal[data-label-width=fixed] label {
  width: 200px;
}
.admin-theme .custom-input--horizontal .custom-input__error {
  position: absolute;
  top: 0;
  left: 0;
}
.admin-theme .custom-input--horizontal .custom-input__icon {
  right: 12px;
  bottom: 12px;
}
.admin-theme .custom-input--upload .custom-input__icon {
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.admin-theme .custom-input--upload .custom-input__icon img {
  width: 100%;
}
.admin-theme .custom-input--upload input {
  padding-top: 10px;
  cursor: pointer;
}
.admin-theme .custom-input--upload input[type=file]::-webkit-file-upload-button {
  display: none;
}
.admin-theme .custom-input--upload input[type=file]::file-selector-button {
  display: none;
}
.admin-theme .custom-input--with-pen:after {
  content: "";
  position: absolute;
  top: 34px;
  right: 8px;
  width: 16px;
  height: 16px;
  -webkit-transform: rotate(0) !important;
          transform: rotate(0) !important;
  background: url("./images/pen.png") no-repeat;
  pointer-events: none;
}
.admin-theme .custom-input--with-pen select {
  border: 1px solid transparent;
  background: transparent;
  text-indent: 1px;
  text-overflow: "";
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.admin-theme .custom-input--radio .custom-input__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.admin-theme .custom-input--radio .radio-item {
  min-width: 85px;
  margin: 0 30px 0 0;
}
.admin-theme .custom-input--radio .radio-item:last-child {
  margin-right: 0;
}
.admin-theme .custom-input--radio .radio-item label {
  margin-top: 0;
}
.admin-theme .custom-input--radio .radio-item input[type=radio],
.admin-theme .custom-input--radio .radio-item input[type=checkbox] {
  position: absolute;
  width: 20px;
  height: 20px;
  opacity: 0;
  cursor: pointer;
}
.admin-theme .custom-input--radio .radio-item input[type=radio] + .radio-label,
.admin-theme .custom-input--radio .radio-item input[type=checkbox] + .radio-label {
  margin-bottom: 0;
  font-size: 14px;
  cursor: pointer;
}
.admin-theme .custom-input--radio .radio-item input[type=radio] + .radio-label:before,
.admin-theme .custom-input--radio .radio-item input[type=checkbox] + .radio-label:before {
  content: "";
  display: inline-block;
  position: relative;
  top: 0;
  width: 20px;
  height: 20px;
  margin-right: 1em;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  border: 1px solid rgb(180.25, 180.25, 180.25);
  border-radius: 4px;
  background: #f4f4f4;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  pointer-events: none;
}
.admin-theme .custom-input--radio .radio-item input[type=radio]:checked + .radio-label:before,
.admin-theme .custom-input--radio .radio-item input[type=checkbox]:checked + .radio-label:before {
  background-color: #0074ff;
  -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
          box-shadow: inset 0 0 0 4px #f4f4f4;
}
.admin-theme .custom-input--radio .radio-item input[type=radio][disabled],
.admin-theme .custom-input--radio .radio-item input[type=checkbox][disabled] {
  cursor: not-allowed !important;
}
.admin-theme .custom-input--radio .radio-item input[type=radio][disabled] ~ label,
.admin-theme .custom-input--radio .radio-item input[type=checkbox][disabled] ~ label {
  opacity: 0.5;
  cursor: not-allowed !important;
}
.admin-theme .custom-input--radio .radio-item input[type=radio][disabled] ~ label:before,
.admin-theme .custom-input--radio .radio-item input[type=checkbox][disabled] ~ label:before {
  cursor: not-allowed !important;
}
.admin-theme .custom-input--radio .radio-item input[type=radio][disabled]:not(:checked) ~ label:before,
.admin-theme .custom-input--radio .radio-item input[type=checkbox][disabled]:not(:checked) ~ label:before {
  background: #f4f4f4;
}
.admin-theme .custom-input--radio .radio-item input[type=radio]:focus + .radio-label:before,
.admin-theme .custom-input--radio .radio-item input[type=checkbox]:focus + .radio-label:before {
  border-color: #0074ff;
  outline: none;
}
.admin-theme .custom-input--radio .radio-item input[type=radio]:disabled + .radio-label:before,
.admin-theme .custom-input--radio .radio-item input[type=checkbox]:disabled + .radio-label:before {
  border-color: rgb(180.25, 180.25, 180.25) !important;
  background: rgb(180.25, 180.25, 180.25);
  -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
          box-shadow: inset 0 0 0 4px #f4f4f4;
}
.admin-theme .custom-input--radio .radio-item input[type=radio] + .radio-label:empty:before,
.admin-theme .custom-input--radio .radio-item input[type=checkbox] + .radio-label:empty:before {
  margin-right: 0;
}
.admin-theme .custom-input--radio.custom-input--error .radio-item label:before {
  border: 1px solid #ff4d4d !important;
}
.admin-theme .custom-input--disabled ::-webkit-input-placeholder {
  color: #a0a0a0;
}
.admin-theme .custom-input--disabled :-ms-input-placeholder {
  color: #a0a0a0;
}
.admin-theme .custom-input--disabled ::-moz-placeholder {
  color: #a0a0a0;
}
.admin-theme .custom-input--disabled ::-ms-input-placeholder {
  color: #a0a0a0;
}
.admin-theme .custom-input--disabled ::placeholder {
  color: #a0a0a0;
}
.admin-theme .custom-input--disabled input,
.admin-theme .custom-input--disabled select,
.admin-theme .custom-input--disabled textarea,
.admin-theme .custom-input--disabled button {
  pointer-events: none;
  background-color: #c0c0c0 !important;
  color: #a0a0a0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.admin-theme .custom-input--radio-vertical {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.admin-theme .custom-input--radio-vertical.custom-input--error {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.admin-theme .custom-input--radio-vertical.custom-input--error .custom-input__error {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 100%;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}
.admin-theme .custom-input--radio-vertical > label {
  width: auto;
  margin: 0 16px 0 0;
}
.admin-theme .custom-input__icon {
  position: absolute;
  right: 24px;
  bottom: 32px;
}
.admin-theme .custom-input__fake-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: auto;
  min-height: 40px;
  margin: 0 0 2rem;
  font-size: 16px;
  line-height: 18px;
}
.admin-theme .custom-input input[type=date] {
  position: relative;
}
.admin-theme .custom-input input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 8px;
  right: 6px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.admin-theme .custom-inputs__form-wrapper {
  background: #f7f7f7;
  padding: 32px;
  border-radius: 8px;
  margin: 32px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media (max-width: 767px) {
  .admin-theme .custom-inputs__form-wrapper {
    padding: 24px 16px;
  }
}
.admin-theme .custom-inputs__form-wrapper .custom-input {
  margin-bottom: 0;
}
.admin-theme .custom-inputs-table {
  width: 100%;
  overflow: hidden;
  border-collapse: collapse;
  border-radius: 5px;
}
.admin-theme .custom-inputs-table td,
.admin-theme .custom-inputs-table th {
  padding: 8px;
  border: 1px solid #ddd;
  font-size: 16px;
}
.admin-theme .custom-inputs-table tr:nth-child(even) {
  background-color: #f2f2f2;
}
.admin-theme .custom-inputs-table tr:hover {
  background-color: #ddd;
}
.admin-theme .custom-inputs-table th {
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #8bc34a;
  color: #ffffff;
  text-align: left;
}
.admin-theme .clear-icon {
  display: none;
  font-size: 24px;
  position: absolute;
  right: 1px;
  bottom: 3px;
  width: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 34px;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
}
.admin-theme .clear-icon:hover {
  background: rgba(255, 255, 255, 0.9);
}
.admin-theme .clear-icon:focus {
  background: #ebf1f8;
}
.admin-theme .clear-icon.focused {
  background: #ebf1f8;
}
.admin-theme .header {
  -webkit-box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.1);
}
.admin-theme .header.fix-header {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transition: 200ms all ease-in-out;
  transition: 200ms all ease-in-out;
}
.admin-theme .header.fix-header.nav-up {
  top: -180px;
}
.admin-theme .header.fix-header.nav-down {
  top: 0;
}
.admin-theme .header__top {
  width: 100%;
  height: 6rem;
  background-color: #038cd9;
}
.admin-theme .header__top--right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.admin-theme .header__top--container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1020px;
  height: 100%;
  margin: auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .admin-theme .header__top--container {
    padding: 4px 8px;
  }
}
.admin-theme .header__bottom {
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .admin-theme .header__bottom {
    height: 6rem;
  }
}
.admin-theme .header__bottom--menu {
  max-width: 1020px;
  margin: auto;
  padding: 0 2rem;
}
@media (min-width: 992px) {
  .admin-theme .header__bottom--menu {
    height: 100%;
  }
}
.admin-theme .header__bottom--container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1020px;
  height: 100%;
  margin: auto;
  padding: 0 2rem;
  color: #333639;
}
.admin-theme .header__bottom--container p {
  margin: 0 32px 0 0;
}
@media (max-width: 599px) {
  .admin-theme .header__bottom--container p {
    margin: 0 0 32px 0;
  }
}
.admin-theme .header-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.admin-theme .header-logo__picture img {
  width: auto;
  height: 40px;
}
.admin-theme .header-logo__desc {
  display: none;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: 1px solid #ffffff;
  color: #ffffff;
}
@media (min-width: 992px) {
  .admin-theme .header-logo__desc {
    display: block;
  }
}
.admin-theme .header-right__user {
  display: none;
  margin: 0 1rem 0 0;
  color: #ffffff;
}
@media (min-width: 992px) {
  .admin-theme .header-right__user {
    display: block;
  }
}
@media (max-width: 479px) {
  .admin-theme .header-right .btn--primary {
    font-size: 1rem;
  }
}
.admin-theme .header-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
}
@media (min-width: 992px) {
  .admin-theme .header-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.admin-theme .header-menu__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 5rem;
  margin: 0;
}
@media (min-width: 992px) {
  .admin-theme .header-menu__item {
    height: 100%;
  }
}
.admin-theme .header-menu__item a:not(.btn) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0;
  color: #333333;
}
@media (min-width: 992px) {
  .admin-theme .header-menu__item a:not(.btn) {
    height: 100%;
    padding: 0;
  }
}
.admin-theme .header-menu__item a:not(.btn):hover, .admin-theme .header-menu__item a:not(.btn):focus, .admin-theme .header-menu__item a:not(.btn).current {
  border-bottom: 3px solid #0091ff;
  color: #0091ff;
}
@media (min-width: 992px) {
  .admin-theme .header-menu__item a:not(.btn):hover, .admin-theme .header-menu__item a:not(.btn):focus, .admin-theme .header-menu__item a:not(.btn).current {
    border-bottom: none;
  }
}
.admin-theme .header-menu__item .btn--primary {
  min-width: 12rem;
}
.admin-theme .header-menu .tippy-badge, .admin-theme .header-menu .tippy-badge-show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 2rem;
  height: 2rem;
  margin-left: 0.5rem;
  padding: 0 0.5rem;
  border-radius: 10px;
  background-color: #ff8c00;
  color: #ffffff;
  font-size: 1.2rem;
}
.admin-theme .header__rating {
  padding: 8px 0;
  background: #ebf1f8;
}
.admin-theme .header__rating .header__top--container p {
  margin: 0;
  padding-right: 8px;
  color: #333333;
}
.admin-theme .header__rating .header__top--container .btn {
  min-width: 110px;
  margin: 2px 0;
  font-size: 14px;
}
.admin-theme .tippy-admin-help {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin: 0 0.5rem;
  border-radius: 50%;
  background: url(./images/help-icon.svg) no-repeat center center;
  background-size: cover;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.admin-theme .help-btn {
  display: none;
  position: absolute;
  top: -1rem;
  right: 0rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: #6D7278;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  color: #ffffff;
}
@media (min-width: 992px) {
  .admin-theme .help-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1340px) {
  .admin-theme .help-btn {
    right: -4rem;
  }
}
.admin-theme .tooltip--box {
  padding: 1rem 2rem;
  border-radius: 4rem !important;
  background-color: #0091ff !important;
  text-align: center;
}
.admin-theme .main-table {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
  padding: 1rem 0 4rem;
  border-top: 1px solid rgba(18, 20, 25, 0.1);
  border-bottom: 1px solid rgba(18, 20, 25, 0.1);
}
.admin-theme .main-table__box {
  position: relative;
  overflow: hidden;
  overflow-x: auto;
}
@media (max-width: 991px) {
  .admin-theme .main-table {
    margin-right: -2rem;
  }
  .admin-theme .main-table:after {
    content: "";
    position: absolute;
    z-index: 98;
    top: 0;
    right: 0;
    bottom: 0;
    width: 8rem;
    height: 100%;
    margin: auto;
    opacity: 0.3;
    background: #121419;
    background: -webkit-gradient(linear, right top, left top, from(rgba(18, 20, 25, 0.65)), to(rgba(18, 20, 25, 0)));
    background: -webkit-linear-gradient(right, rgba(18, 20, 25, 0.65) 0%, rgba(18, 20, 25, 0) 100%);
    background: linear-gradient(270deg, rgba(18, 20, 25, 0.65) 0%, rgba(18, 20, 25, 0) 100%);
  }
  .admin-theme .main-table:before {
    position: absolute;
    z-index: 98;
    top: 0;
    bottom: 0;
    left: 0;
    width: 8rem;
    height: 100%;
    margin: auto;
    opacity: 0.3;
    background: #121419;
    background: -webkit-gradient(linear, right top, left top, from(rgba(18, 20, 25, 0)), to(rgba(18, 20, 25, 0.65)));
    background: -webkit-linear-gradient(right, rgba(18, 20, 25, 0) 0%, rgba(18, 20, 25, 0.65) 100%);
    background: linear-gradient(270deg, rgba(18, 20, 25, 0) 0%, rgba(18, 20, 25, 0.65) 100%);
  }
  .admin-theme .main-table.before:before {
    content: "";
  }
  .admin-theme .main-table.after:after {
    content: none;
  }
}
.admin-theme .main-table .table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
.admin-theme .main-table .table td,
.admin-theme .main-table .table th {
  padding: 1rem 1rem 0rem;
  color: #333333;
  font-size: 1.4rem;
  text-align: left;
  vertical-align: top;
}
.admin-theme .main-table .table td img,
.admin-theme .main-table .table th img {
  font-size: 0.8rem;
}
.admin-theme .main-table .table td:nth-child(6),
.admin-theme .main-table .table th:nth-child(6) {
  min-width: 170px;
}
.admin-theme .main-table .table th {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(18, 20, 25, 0.1);
  color: #9e9e9e;
  vertical-align: middle;
  white-space: nowrap;
}
.admin-theme .main-table .table th.action {
  min-width: 61px;
}
.admin-theme .main-table .table th.project {
  min-width: 120px;
}
.admin-theme .main-table .table th.service {
  min-width: 105px;
}
.admin-theme .main-table .table th .header-col {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.admin-theme .main-table .table th .sort {
  display: inline-block;
  color: #9e9e9e;
  cursor: pointer;
}
.admin-theme .main-table .table th .sort__text {
  padding-left: 12px;
  background-image: url(images/sort_both.svg);
  background-repeat: no-repeat;
  background-position: -5px 0;
}
.admin-theme .main-table .table th .sort__asc {
  background-image: url(images/sort_asc.svg);
}
.admin-theme .main-table .table th .sort__desc {
  background-image: url(images/sort_desc.svg);
}
.admin-theme .main-table .table th .sort__disabled {
  background-image: url(images/sort_disabled.svg);
}
.admin-theme .main-table .table th .sort__no-sort {
  padding-left: 0;
  background-image: none;
}
.admin-theme .main-table .table th .sort img {
  margin-right: 0.3rem;
}
.admin-theme .main-table .table th .sort:hover, .admin-theme .main-table .table th .sort:focus {
  color: #00a8ff;
}
.admin-theme .main-table .table td {
  padding-bottom: 0.5rem;
}
.admin-theme .main-table .table td .main-perex {
  margin: 0;
}
.admin-theme .main-table .table tr:nth-child(odd) td {
  background-color: #f5f5f5;
}
.admin-theme .main-table .table tr.summary td {
  height: 4.5rem;
  vertical-align: middle;
}
.admin-theme .main-table .table tr:not(.summary) td {
  height: 6rem;
}
.admin-theme .main-table .table .ad-name {
  width: 110px;
}
.admin-theme .main-table .table .ad-name width widthwidthwidthwidthwidth a {
  display: inline-block;
}
.admin-theme .main-table .table .ad-name p {
  margin-bottom: 0;
}
.admin-theme .main-table .table .status-cell {
  width: 8.3rem;
  min-width: 8.3rem;
  max-width: 8.3rem;
}
.admin-theme .main-table .table .services-col {
  max-width: 14rem;
}
.admin-theme .main-table .table .author-name-col {
  max-width: 17rem;
}
.admin-theme .main-table .table .active-offer {
  color: #3abc00;
}
.admin-theme .main-table-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .admin-theme .main-table-footer {
    padding-left: 1rem;
  }
}
.admin-theme .main-table-footer.justyfy-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.admin-theme .main-table-footer.justyfy-between {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 600px) {
  .admin-theme .main-table-footer.justyfy-between {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.admin-theme .sort__arrow {
  display: none;
}
.admin-theme .sort.sort-up .sort__arrow {
  display: inline-block;
}
.admin-theme .sort.sort-down .sort__arrow {
  display: inline-block;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.admin-theme .more-services {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.admin-theme .more-services__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.3rem;
}
.admin-theme .more-services__box--img {
  margin: 0.2rem;
}
.admin-theme .more-services__box--text {
  margin-left: 2px;
  color: #ff8c00;
  font-size: 1.3rem;
  cursor: pointer;
}
.admin-theme .show-special-row {
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  color: #0074ff;
  white-space: nowrap;
  cursor: pointer;
}
.admin-theme .show-special-row:hover {
  color: #00a8ff;
}
.admin-theme .more-projects {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.admin-theme .more-projects span:last-child {
  color: #ff8c00;
  font-size: 1.3rem;
  cursor: pointer;
}
.admin-theme .scroll-arrow-btn,
.admin-theme .scroll-arrow-btn-prev {
  position: -webkit-sticky;
  position: sticky;
  z-index: 99;
  top: 50%;
  left: 100%;
  width: 4rem;
  height: 4rem;
  margin: auto 1rem;
  border: 0;
  border-radius: 50%;
  outline: 0;
  background: #ffffff;
}
.admin-theme .scroll-arrow-btn span,
.admin-theme .scroll-arrow-btn-prev span {
  display: block;
  margin-top: -4px;
  margin-right: -1px;
  font-size: 3rem;
  line-height: 1;
}
@media (min-width: 992px) {
  .admin-theme .scroll-arrow-btn,
  .admin-theme .scroll-arrow-btn-prev {
    display: none;
  }
}
.admin-theme .scroll-arrow-btn-prev {
  left: 0;
}
.admin-theme .table--custom .summary td {
  background: rgba(0, 0, 0, 0.05) !important;
}
.admin-theme .table--custom tr:nth-of-type(3)::after {
  content: none;
}
.admin-theme .table--custom tr:nth-of-type(3) td {
  padding-top: 1rem !important;
}
.admin-theme .table--custom td,
.admin-theme .table--custom th {
  padding: 1rem 2px !important;
  border-top: none;
}
.admin-theme .table--custom td:nth-child(6),
.admin-theme .table--custom th:nth-child(6) {
  min-width: auto !important;
}
.admin-theme .table--custom tr:nth-child(odd) td {
  background: #fff !important;
}
.admin-theme .table--custom .special-row {
  display: none;
}
.admin-theme .table--custom .special-row td:nth-of-type(1) {
  font-size: 12px;
}
.admin-theme .table--custom .special-row.active {
  display: table-row;
}
.admin-theme .table--custom .special-row td,
.admin-theme .table--custom .special-row th {
  height: auto !important;
  padding: 6px 2px !important;
}
.admin-theme .table--custom .special-row:nth-child(odd) td {
  background: #f8f8f8 !important;
}
.admin-theme .table--custom .special-row td {
  overflow: hidden;
  border-bottom: 2px solid #fff;
  background: #f8f8f8 !important;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.admin-theme .table--custom .special-row td:first-child {
  background: transparent !important;
  text-align: right;
}
.admin-theme .table__body--row--custom {
  position: relative;
}
.admin-theme .table__body--row--custom::after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, left bottom, left top, from(#f8f8f8), to(#f8f8f8)), #ffffff;
  background: -webkit-linear-gradient(bottom, #f8f8f8, #f8f8f8), #ffffff;
  background: linear-gradient(0deg, #f8f8f8, #f8f8f8), #ffffff;
}
.admin-theme .table__body--row--custom td {
  padding-top: 2rem !important;
}
.admin-theme .table__body--row--custom .active-offer {
  padding-left: 12px;
}
.admin-theme .table__body--row--custom:last-child:before {
  content: none;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, left bottom, left top, from(#f8f8f8), to(#f8f8f8)), #ffffff;
  background: -webkit-linear-gradient(bottom, #f8f8f8, #f8f8f8), #ffffff;
  background: linear-gradient(0deg, #f8f8f8, #f8f8f8), #ffffff;
}
.admin-theme #stats-table th span {
  font-size: 13px;
}
.admin-theme #stats-table td:nth-of-type(9) div {
  position: relative;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-theme .main-content {
  margin-top: 6rem;
}
@media (min-width: 992px) {
  .admin-theme .main-content {
    margin-top: 12rem;
  }
}
.admin-theme .main-content.zero-margin-top {
  margin-top: 0;
}
.admin-theme .main-header {
  position: relative;
  margin: 3rem 0 2rem;
}
.admin-theme .main-header .invisiblePerex {
  display: none;
}
.admin-theme .main-header.showPerex .invisiblePerex {
  display: block;
}
.admin-theme .main-header__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2rem 0;
}
.admin-theme .main-header__meta__holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 50px;
  margin-right: 3rem;
}
.admin-theme .main-header__meta--author, .admin-theme .main-header__meta--date {
  display: inline-block;
  color: #898989;
  font-size: 1.8rem;
}
.admin-theme .main-header__meta--divider {
  display: inline-block;
  margin: 0 0.5rem;
  color: #898989;
}
.admin-theme .main-header__meta .act-item__content--taggroup {
  margin-right: 2rem;
}
.admin-theme .contact-center-perex {
  width: 100%;
  margin: 48px auto 24px;
  color: #333333;
  text-align: center;
  font-size: 16px;
}
@media (min-width: 480px) {
  .admin-theme .contact-center-perex {
    font-size: calc(0.625vw + 13px);
  }
}
@media (min-width: 800px) {
  .admin-theme .contact-center-perex {
    font-size: 18px;
  }
}
.admin-theme .contact-center-perex strong {
  font-size: 18px;
}
@media (min-width: 480px) {
  .admin-theme .contact-center-perex strong {
    font-size: calc(1.25vw + 12px);
  }
}
@media (min-width: 800px) {
  .admin-theme .contact-center-perex strong {
    font-size: 22px;
  }
}
.admin-theme .contact-center-perex a {
  color: #0074ff;
  font-size: inherit;
}
.admin-theme .contact-center-perex a:hover, .admin-theme .contact-center-perex a:focus {
  color: #00a8ff;
  text-decoration: underline;
}
.admin-theme .divider {
  width: 100%;
  max-width: 300px;
  height: 2px;
  margin: 48px auto;
  background-color: #f6f6f6;
}
.admin-theme .pic-media-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  width: 100%;
  margin: 48px 0 64px;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 24px;
}
@media (min-width: 600px) {
  .admin-theme .pic-media-grid {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
.admin-theme .pic-media-grid__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-column: 1;
  grid-column: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}
@media (min-width: 600px) {
  .admin-theme .pic-media-grid__item:nth-child(even) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/span 2;
  }
  .admin-theme .pic-media-grid__item:nth-child(odd) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-column: 3/span 2;
  }
}
.admin-theme .pic-media-grid__item--pic {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.66%;
  overflow: hidden;
}
.admin-theme .pic-media-grid__item--pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.admin-theme .pic-media-grid__item--pic.video-iframe {
  padding-top: 56.25%;
}
.admin-theme .pic-media-grid__item--pic.video-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.admin-theme .pic-media-grid__item--text {
  margin-top: 12px;
  color: #333333;
  font-size: 14px;
}
@media (min-width: 480px) {
  .admin-theme .pic-media-grid__item--text {
    font-size: calc(0vw + 14px);
  }
}
@media (min-width: 800px) {
  .admin-theme .pic-media-grid__item--text {
    font-size: 14px;
  }
}
.admin-theme .pic-media-grid__item.fullwidth {
  -ms-grid-column: 1;
  grid-column: 1;
}
@media (min-width: 600px) {
  .admin-theme .pic-media-grid__item.fullwidth {
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
    grid-column: 1/span 4;
  }
}
.admin-theme .news-bottom-share {
  text-align: center;
}
.admin-theme .news-bottom-share__social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.admin-theme .news-bottom-share__social a {
  margin-right: 20px;
}
.admin-theme .news-bottom-share__social a:last-child {
  margin-right: 0;
}
.admin-theme .news-bottom-share__social a img {
  width: 100%;
  max-width: 48px;
}
.admin-theme .main-perex {
  margin-bottom: 1rem;
}
.admin-theme .main-perex span {
  color: #121419;
  font-weight: 500;
}
.admin-theme .primary-perex {
  margin-bottom: 40px;
  color: #121419;
}
.admin-theme .required-field,
.admin-theme .required-field--top-space {
  position: relative;
  padding: 25px 0;
  border: 2px solid #d82942;
  border-radius: 20px;
}
.admin-theme .required-field--top-space,
.admin-theme .required-field--top-space--top-space {
  padding: 50px 0 25px 0;
}
.admin-theme .required-field--text,
.admin-theme .required-field--top-space--text {
  position: absolute;
  bottom: -40px;
  left: 14px;
  margin-bottom: 0;
  color: #d82942;
}
@media (max-width: 1019px) {
  .admin-theme .required-field--text,
  .admin-theme .required-field--top-space--text {
    display: block;
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin: 20px 0 0 0;
    text-align: center;
  }
}
.admin-theme .text-under-block {
  margin-top: 16px;
  color: #333333;
  font-size: 14px;
  text-align: center;
}
.admin-theme .text-under-block--center {
  text-align: center;
}
.admin-theme .continue-arrow {
  margin-top: 24px;
  text-align: center;
}
@media (max-width: 1019px) {
  .admin-theme .continue-arrow {
    max-width: 100px;
    margin: 28px auto;
  }
}
.admin-theme .continue-arrow img {
  width: 100%;
  max-width: 200px;
}
.admin-theme .col-small-padding {
  padding-right: 6px;
  padding-left: 6px;
}
.admin-theme .light-weight {
  font-weight: 400 !important;
}
.admin-theme .semi-light-weight {
  font-weight: 400 !important;
}
.admin-theme .bold-weight {
  font-weight: 500 !important;
}
.admin-theme .orange {
  color: #ff8c00 !important;
}
.admin-theme .font-18 {
  color: #333333 !important;
  font-size: 18px !important;
  letter-spacing: 0 !important;
  line-height: 23px !important;
}
.admin-theme .font-24 {
  margin: 0 !important;
  color: #333333 !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 30px !important;
}
.admin-theme .rounded-gray-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4rem;
  border: 1px solid #cccccc;
  border-radius: 18px;
  background-color: #f8f8f8;
}
@media (max-width: 575px) {
  .admin-theme .rounded-gray-item {
    padding: 2rem;
  }
}
.admin-theme .rounded-gray-item .primary-text {
  margin-bottom: 0;
  color: #333333;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}
.admin-theme .rounded-gray-item .primary-text span {
  margin-bottom: 0;
  color: #333333;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}
.admin-theme .rounded-gray-item .light-text,
.admin-theme .rounded-gray-item .small-text {
  margin-bottom: 0;
  color: #333333;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
}
.admin-theme .rounded-gray-item .small-text {
  font-size: 14px;
}
.admin-theme .pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 600px) {
  .admin-theme .pagination {
    margin-bottom: 0;
  }
}
.admin-theme .pagination__item {
  padding: 0.5rem;
  color: #cccccc;
  font-size: 16px;
}
@media (min-width: 480px) {
  .admin-theme .pagination__item {
    font-size: calc(0.625vw + 13px);
  }
}
@media (min-width: 800px) {
  .admin-theme .pagination__item {
    font-size: 18px;
  }
}
.admin-theme .pagination__item:hover, .admin-theme .pagination__item:focus {
  color: #00a8ff;
}
.admin-theme .pagination__item.current {
  color: #121419;
  text-decoration: underline;
  cursor: default;
  pointer-events: none;
}
.admin-theme .pagination--ref {
  margin-bottom: 5rem;
}
.admin-theme .act.pagination .pagination__item {
  font-size: 22px;
}
.admin-theme .act.pagination .pagination__item.current {
  color: #0074ff;
  text-decoration: none;
}
@media (max-width: 799px) {
  .admin-theme .act.pagination {
    margin-top: 24px;
  }
}
.admin-theme .ref-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 6rem;
}
@supports (display: grid) {
  .admin-theme .ref-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
    row-gap: 2.5rem;
  }
  @media (min-width: 800px) {
    .admin-theme .ref-grid {
      -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
      -webkit-box-align: stretch;
      -webkit-align-items: stretch;
          -ms-flex-align: stretch;
              align-items: stretch;
    }
  }
}
.admin-theme .ref-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding-right: 1.8rem;
  padding-left: 1.8rem;
  -webkit-transition: 300ms all ease-in-out;
  transition: 300ms all ease-in-out;
  border-radius: 1rem;
  background-color: #ffffff;
  background-color: #f8f8f8;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.17);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.17);
}
.admin-theme .ref-item__quote {
  position: absolute;
  top: -20px;
  left: -20px;
  color: #dedede;
  font-size: 10rem;
  font-weight: 500;
  letter-spacing: -7.27px;
  line-height: 8rem;
}
.admin-theme .ref-item__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 1rem;
}
.admin-theme .ref-item__header--tag {
  opacity: 0.4;
  color: #898989;
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 2rem;
  text-align: right;
}
.admin-theme .ref-item__header--pic {
  margin-top: 1rem;
}
.admin-theme .ref-item__header--pic img {
  max-width: 10rem;
  max-height: 5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.admin-theme .ref-item__meta {
  margin: 1rem 0 2rem;
}
.admin-theme .ref-item__meta p {
  margin: 0;
  color: #333333;
  font-size: 1.6rem;
  line-height: 2rem;
}
.admin-theme .ref-item__text {
  position: relative;
  max-height: calc(var(--lh) * var(--max-lines));
  overflow: hidden;
  --lh: 2rem;
  --max-lines: 6;
}
.admin-theme .ref-item__text p {
  margin: 0;
  color: #333333;
  font-size: 1.6rem;
  font-style: italic;
  line-height: 2rem;
}
.admin-theme .ref-item__footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 5rem;
}
.admin-theme .ref-item__footer--link {
  margin: 0;
  color: #0074ff;
  font-size: 1.6rem;
  line-height: 2rem;
}
.admin-theme .ref-item__footer--link span {
  font-size: inherit;
}
.admin-theme .ref-item.active .ref-item__text {
  --max-lines: 999;
}
.admin-theme .ref-item.active .ref-item__footer--link span {
  display: none;
}
.admin-theme .ref-item.active .ref-item__footer--link:after {
  content: "méně";
}
.admin-theme .oneOpen .ref-item {
  height: auto;
}
.admin-theme .ref-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.admin-theme .ref-nav__item {
  padding: 1rem 1rem 1rem 0;
  color: #0074ff;
  font-size: 1.6rem;
}
@media (min-width: 600px) {
  .admin-theme .ref-nav__item {
    padding: 1rem 2rem 1rem 0;
  }
}
.admin-theme .ref-nav__item.selected {
  color: #ff8c00;
  text-decoration: underline;
}
.admin-theme .other-ref {
  margin-bottom: 4rem;
}
.admin-theme .thanks-page {
  margin-top: 4.8rem;
  padding-bottom: 3rem;
  color: #898989;
}
.admin-theme .thanks-page__header {
  margin: 1.5rem 0 3rem;
}
@media (min-width: 600px) {
  .admin-theme .thanks-page__header {
    padding: 0 3rem;
  }
}
.admin-theme .thanks-page__header--title {
  margin: 1.5rem 0;
  font-size: 34px;
}
.admin-theme .thanks-page__header--perex {
  font-size: 15px;
}
.admin-theme .thanks-page__header--perex a {
  color: #898989;
  font-size: 15px;
}
.admin-theme .thanks-page__header--perex span {
  font-size: 15px;
}
.admin-theme .thanks-page__share--title {
  margin: 0;
  font-size: 1.6rem;
}
.admin-theme .thanks-page__share--social {
  margin: 1.5rem 0 3rem;
}
.admin-theme .thanks-page__share--form {
  max-width: 28rem;
  margin: auto;
}
.admin-theme .thanks-page__share--form p {
  margin: 0 0 1.5rem;
  font-size: 1.6rem;
}
.admin-theme .thanks-page__share--form .form-group__control {
  font-size: 1.4rem;
}
.admin-theme .thanks-page__share--form .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1rem;
}
.admin-theme .thanks-page__share--form .btn-simple {
  font-size: 1.5rem;
}
.admin-theme .thanks-page__footer--title {
  max-width: 390px;
  margin: 0 auto 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #cccccc;
}
.admin-theme .thanks-page__footer--title h2 {
  margin: 0;
  font-size: 22px;
}
@media (min-width: 480px) {
  .admin-theme .thanks-page__footer--title h2 {
    font-size: calc(3.75vw + 4px);
  }
}
@media (min-width: 800px) {
  .admin-theme .thanks-page__footer--title h2 {
    font-size: 34px;
  }
}
.admin-theme .thanks-page .tip-box p {
  font-size: 1.5rem;
}
.admin-theme .social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.admin-theme .social__item {
  width: 3.2rem;
  height: 3.2rem;
  margin: 0 0.5rem;
}
.admin-theme .cookie-bar .fancybox__content {
  padding: 0;
  overflow: hidden !important;
  border-radius: 30px;
}
.admin-theme .cookie-bar__content {
  max-width: 100%;
  padding: 25px;
}
@media screen and (min-width: 800px) {
  .admin-theme .cookie-bar__content {
    position: relative;
    padding: 50px 35px;
  }
}
.admin-theme .cookie-bar__content::after {
  content: none;
  position: absolute;
  right: -200px;
  bottom: 0;
  width: 190px;
  height: 240px;
  background-image: url(./images/maskot.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 800px) {
  .admin-theme .cookie-bar__content::after {
    content: "";
  }
}
.admin-theme .cookie-bar__title-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2rem;
}
.admin-theme .cookie-bar__title-holder .cookie-bar__title {
  margin-bottom: 0;
}
.admin-theme .cookie-bar__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 30px 0;
  color: #121419;
  line-height: 1.1;
}
.admin-theme .cookie-bar__title img {
  margin-right: 0.5rem;
}
.admin-theme .cookie-bar__desc {
  margin-bottom: 30px;
  color: #121419;
  font-size: 16px;
}
.admin-theme .cookie-bar__desc span {
  font-weight: 500;
}
.admin-theme .cookie-bar__actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
}
.admin-theme .cookie-bar__actions .cookie-bar__btn:first-child {
  margin: 0 0 1rem 0;
}
@media screen and (min-width: 520px) {
  .admin-theme .cookie-bar__actions .cookie-bar__btn:first-child {
    margin: 0 1rem 0 0;
  }
}
@media screen and (min-width: 520px) {
  .admin-theme .cookie-bar__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.admin-theme .cookie-bar__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 220px;
  margin: 0;
  padding: 12px 8px;
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
  border: none;
  border-radius: 30px;
  outline: none;
  background: #038cd9;
  -webkit-box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 0px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}
.admin-theme .cookie-bar__btn:hover, .admin-theme .cookie-bar__btn:focus {
  outline: none;
  background: #7ac943;
  text-decoration: none;
}
.admin-theme .cookie-bar__btn:hover .fa, .admin-theme .cookie-bar__btn:focus .fa {
  margin-right: 14px;
}
.admin-theme .cookie-bar__btn .fa {
  margin-right: 0.5rem;
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
  color: #ffffff;
}
.admin-theme .cookie-bar__btn span {
  -webkit-transition: ease-in-out 0.2s;
  transition: ease-in-out 0.2s;
  color: #ffffff;
}
.admin-theme .cookie-bar__btn--secondary {
  -webkit-transition: none;
  transition: none;
  border: 2px solid #038cd9;
  background: #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #9a9a9a;
}
.admin-theme .cookie-bar__btn--secondary span,
.admin-theme .cookie-bar__btn--secondary .fa {
  color: #9a9a9a;
}
.admin-theme .cookie-bar__btn--secondary:hover, .admin-theme .cookie-bar__btn--secondary:focus {
  background: #ffffff;
}
.admin-theme .cookie-bar__btn--secondary:hover span,
.admin-theme .cookie-bar__btn--secondary:hover .fa, .admin-theme .cookie-bar__btn--secondary:focus span,
.admin-theme .cookie-bar__btn--secondary:focus .fa {
  color: #121419;
}
.admin-theme .cookie-bar__setup {
  display: none;
  position: relative;
  padding: 25px;
}
@media screen and (min-width: 520px) {
  .admin-theme .cookie-bar__setup {
    padding: 50px 35px;
  }
}
.admin-theme .cookie-bar__setup__close {
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  outline: none !important;
  background: none;
  color: #a0a0a0;
  font-size: 30px;
  cursor: pointer;
}
.admin-theme .cookie-bar__setup__close:hover {
  color: #121419;
  text-decoration: none;
}
@media screen and (min-width: 520px) {
  .admin-theme .cookie-bar__setup__close {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.admin-theme .cookie-bar__settings {
  height: 230px;
  margin-bottom: 30px;
  padding-left: 0;
  overflow: scroll;
}
@media screen and (min-width: 575px) {
  .admin-theme .cookie-bar__settings {
    height: auto;
    overflow: visible;
  }
}
.admin-theme .cookie-bar__settings__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  padding-right: 24px;
  padding-left: 4px;
}
.admin-theme .cookie-bar__settings__item:last-child {
  margin-bottom: 0;
}
.admin-theme .cookie-bar__settings__item p {
  margin-bottom: 0.5rem;
  color: #333333;
}
.admin-theme .cookie-bar__settings__item span {
  color: #121419;
  font-size: 15px;
}
.admin-theme .cookie-bar__settings__toggle {
  margin-right: 1rem;
}
.admin-theme .switch {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 20px;
}
.admin-theme .switch input {
  width: 0;
  height: 0;
  opacity: 0;
}
.admin-theme .slider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #ccc;
  cursor: pointer;
}
.admin-theme .slider:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -2px;
  width: 20px;
  height: 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#cacaca));
  background: -webkit-linear-gradient(top, #ffffff 0%, #cacaca 100%);
  background: linear-gradient(180deg, #ffffff 0%, #cacaca 100%);
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}
.admin-theme input:checked + .slider {
  background-color: #038cd9;
}
.admin-theme input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #038cd9;
          box-shadow: 0 0 1px #038cd9;
}
.admin-theme input:checked + .slider:before {
  -webkit-transform: translateX(24px);
  transform: translateX(24px);
}
.admin-theme .slider.round {
  border-radius: 34px;
}
.admin-theme .slider.round:before {
  border-radius: 50%;
}
.admin-theme .cookie-bar__bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
}
.admin-theme .cookie-bar__bg--visible {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.admin-theme .cookie-bar__holder {
  width: 100%;
  max-width: 600px;
  border-radius: 30px;
  background: #ffffff;
}
@media screen and (max-width: 800px) {
  .admin-theme .cookie-bar__holder {
    max-width: 95%;
  }
}
.admin-theme .numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  width: 100%;
  margin: 0 0 48px;
}
@media (min-width: 800px) {
  .admin-theme .numbers {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }
}
.admin-theme .numbers__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 48px;
  padding: 42px 16px 32px;
  border-radius: 32px;
  background-color: #f6f6f6;
}
@media (min-width: 800px) {
  .admin-theme .numbers__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    width: auto;
    margin-top: 0;
    padding: 42px 24px 32px;
  }
}
.admin-theme .numbers__logos {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[2];
  grid-template-columns: repeat(2, auto);
  -ms-grid-rows: (40px)[2];
  grid-template-rows: repeat(2, 40px);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 24px;
}
.admin-theme .numbers__logos img {
  width: auto;
  height: 40px;
}
.admin-theme .numbers__table {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 400px;
  padding: 24px;
}
@media (min-width: 800px) {
  .admin-theme .numbers__table {
    padding: 0 32px;
  }
}
.admin-theme .numbers__table--box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.admin-theme .numbers__table--item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 34px;
  height: 46px;
  background: url(images/pocitadlo_bg.png) no-repeat center center;
}
.admin-theme .numbers__table--item .line {
  position: absolute;
  top: 23px;
  left: 1px;
  width: 32px;
  height: 1px;
  background-color: #000;
}
.admin-theme .numbers__table--item p {
  position: relative !important;
  top: -3px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  font-size: 40px !important;
  text-align: center !important;
}
.admin-theme .numbers__table--text {
  margin-top: 10px;
  color: #9e9e9e;
  font-size: 17px;
}
.admin-theme .media-slider {
  position: relative;
  padding: 0 70px;
}
@media (min-width: 1200px) {
  .admin-theme .media-slider {
    padding: 0;
  }
}
.admin-theme .media-slider .swiper-button {
  top: 44%;
  border: 0;
  background: transparent;
}
@media (min-width: 1200px) {
  .admin-theme .media-slider .swiper-button.swiper-button-prev {
    left: -70px;
  }
}
@media (min-width: 1200px) {
  .admin-theme .media-slider .swiper-button.swiper-button-next {
    right: -70px;
  }
}
.admin-theme .media-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-bottom: 48px;
  -webkit-transition: 300ms all ease-in-out;
  transition: 300ms all ease-in-out;
}
@media (min-width: 800px) {
  .admin-theme .media-list__item {
    margin-bottom: 0;
  }
}
.admin-theme .media-list__item--pic {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  overflow: hidden;
  -webkit-transition: 300ms all ease-in-out;
  transition: 300ms all ease-in-out;
}
@media (min-width: 800px) {
  .admin-theme .media-list__item--pic {
    height: 200px;
  }
}
.admin-theme .media-list__item--pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.admin-theme .media-list__item--text {
  -webkit-transition: 300ms all ease-in-out;
  transition: 300ms all ease-in-out;
  color: #9e9e9e;
  font-size: 16px;
}
@media (min-width: 480px) {
  .admin-theme .media-list__item--text {
    font-size: calc(0.625vw + 13px);
  }
}
@media (min-width: 800px) {
  .admin-theme .media-list__item--text {
    font-size: 18px;
  }
}
.admin-theme a.media-list__item:hover .media-list__item--pic, .admin-theme a.media-list__item:focus .media-list__item--pic {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.admin-theme a.media-list__item:hover .media-list__item--text, .admin-theme a.media-list__item:focus .media-list__item--text {
  color: #333333;
}
@media (min-width: 800px) {
  .admin-theme .step1 .alert,
  .admin-theme .collegue .alert {
    padding-right: 5rem;
    padding-left: 5rem;
  }
}
.admin-theme .step1 .form .form-group,
.admin-theme .collegue .form .form-group {
  margin-bottom: 1.5rem;
}
.admin-theme .step1 .form .form-group.horizontal,
.admin-theme .collegue .form .form-group.horizontal {
  margin-bottom: 2rem;
}
@media (min-width: 800px) {
  .admin-theme .step1 .form .form-group.horizontal,
  .admin-theme .collegue .form .form-group.horizontal {
    margin-bottom: 1rem;
  }
}
.admin-theme .step1 .form .form-group__label,
.admin-theme .collegue .form .form-group__label {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  line-height: 1.3;
}
.admin-theme .step1 .form .form-group__control,
.admin-theme .collegue .form .form-group__control {
  margin: 0;
  font-size: 1.4rem;
}
.admin-theme .step1 .form .form-group__control::-webkit-input-placeholder, .admin-theme .collegue .form .form-group__control::-webkit-input-placeholder {
  opacity: 1; /* Firefox */
  color: rgba(51, 51, 51, 0.5);
}
.admin-theme .step1 .form .form-group__control::-moz-placeholder, .admin-theme .collegue .form .form-group__control::-moz-placeholder {
  opacity: 1; /* Firefox */
  color: rgba(51, 51, 51, 0.5);
}
.admin-theme .step1 .form .form-group__control:-ms-input-placeholder, .admin-theme .collegue .form .form-group__control:-ms-input-placeholder {
  opacity: 1; /* Firefox */
  color: rgba(51, 51, 51, 0.5);
}
.admin-theme .step1 .form .form-group__control::-ms-input-placeholder, .admin-theme .collegue .form .form-group__control::-ms-input-placeholder {
  opacity: 1; /* Firefox */
  color: rgba(51, 51, 51, 0.5);
}
.admin-theme .step1 .form .form-group__control::placeholder,
.admin-theme .collegue .form .form-group__control::placeholder {
  opacity: 1; /* Firefox */
  color: rgba(51, 51, 51, 0.5);
}
.admin-theme .step1 .form .form-group__control:-ms-input-placeholder,
.admin-theme .collegue .form .form-group__control:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}
.admin-theme .step1 .form .form-group__control::-ms-input-placeholder,
.admin-theme .collegue .form .form-group__control::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}
.admin-theme .step1 .form textarea.form-group__control,
.admin-theme .step1 .form .btn:not(.btn--big),
.admin-theme .collegue .form textarea.form-group__control,
.admin-theme .collegue .form .btn:not(.btn--big) {
  font-size: 1.4rem;
}
.admin-theme .step1 .form .form__box-title,
.admin-theme .collegue .form .form__box-title {
  margin: 0 0 4rem;
  font-size: 2.6rem;
}
.admin-theme .step1 .form .form__box-title ~ .form__box-perex,
.admin-theme .collegue .form .form__box-title ~ .form__box-perex {
  margin-top: -3rem;
}
@media (min-width: 800px) {
  .admin-theme .step1 .form .form-group.horizontal .form-group__label,
  .admin-theme .collegue .form .form-group.horizontal .form-group__label {
    margin-bottom: 0;
  }
}
@media (min-width: 800px) {
  .admin-theme .step1 .form .label-content__left span:not(.sup-tag),
  .admin-theme .collegue .form .label-content__left span:not(.sup-tag) {
    font-size: 14px;
  }
}
.admin-theme .step1 .form .selectpicker[multiple] ~ .dropdown__menu .dropdown__menu--inner .selected .check-mark,
.admin-theme .collegue .form .selectpicker[multiple] ~ .dropdown__menu .dropdown__menu--inner .selected .check-mark {
  display: initial;
}
.admin-theme .step1 .form .selectpicker[multiple] ~ .dropdown-toggle .filter-option,
.admin-theme .collegue .form .selectpicker[multiple] ~ .dropdown-toggle .filter-option {
  max-width: 100%;
}
.admin-theme .step1 .form .selectpicker[multiple] ~ .dropdown-toggle .filter-option .filter-option-inner-inner,
.admin-theme .collegue .form .selectpicker[multiple] ~ .dropdown-toggle .filter-option .filter-option-inner-inner {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-theme .step1 .or,
.admin-theme .collegue .or {
  margin-top: -6px;
  padding: 0 2rem 0 0.5rem;
  text-align: center;
}
@media (min-width: 992px) {
  .admin-theme .step1 .or,
  .admin-theme .collegue .or {
    padding: 0 5rem 0 5rem;
  }
}
.admin-theme .step1 .error-msg,
.admin-theme .collegue .error-msg {
  display: none;
  width: 100%;
  margin-bottom: 0.25rem;
  color: #ff4d4d;
  font-size: 1.3rem;
}
.admin-theme .step1 .dropdown__btn,
.admin-theme .collegue .dropdown__btn {
  height: 4rem;
}
.admin-theme .step1 .phone-row,
.admin-theme .collegue .phone-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.admin-theme .step1 .phone-row a,
.admin-theme .collegue .phone-row a {
  display: block;
  margin: 0 1rem;
}
.admin-theme .step1 .phone-row a:first-child,
.admin-theme .collegue .phone-row a:first-child {
  margin-right: 2rem;
}
@media (min-width: 800px) {
  .admin-theme .step1 .phone-row,
  .admin-theme .collegue .phone-row {
    display: none;
  }
}
.admin-theme .step1 .tippy-admin-help,
.admin-theme .collegue .tippy-admin-help {
  margin-right: 0;
}
.admin-theme .autocomplete-suggestion {
  max-width: none !important;
}
.admin-theme .collegue .btn--add {
  margin-top: 0;
}
.admin-theme .phone-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.admin-theme .phone-line .item:nth-of-type(1) {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 15%;
      -ms-flex: 1 0 15%;
          flex: 1 0 15%;
  max-width: 15%;
}
@media (max-width: 767px) {
  .admin-theme .phone-line .item:nth-of-type(1) {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 25%;
        -ms-flex: 1 0 25%;
            flex: 1 0 25%;
    max-width: 25%;
  }
}
.admin-theme .phone-line .item:nth-of-type(2) {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 25%;
      -ms-flex: 1 0 25%;
          flex: 1 0 25%;
  max-width: 25%;
}
@media (max-width: 767px) {
  .admin-theme .phone-line .item:nth-of-type(2) {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 70%;
        -ms-flex: 1 0 70%;
            flex: 1 0 70%;
    max-width: 70%;
  }
}
.admin-theme .phone-line .item:nth-of-type(3) {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 55%;
      -ms-flex: 1 0 55%;
          flex: 1 0 55%;
  max-width: 55%;
}
@media (max-width: 767px) {
  .admin-theme .phone-line .item:nth-of-type(3) {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
    margin-top: 2rem;
  }
}
@media (max-width: 1019px) {
  .admin-theme .optional-items {
    padding-bottom: 20px;
  }
}
.admin-theme .optional-items p {
  margin-bottom: 0;
  font-size: 1.6rem;
}
.admin-theme .optional-items__tip {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4px;
  padding: 4px 8px;
  border-radius: 8px 8px 0 0;
  background: #ff8c00;
  color: #ffffff;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.admin-theme .optional-items__tip img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  width: 16px;
  margin-right: 4px;
}
.admin-theme .optional-items #unpack {
  color: #0074ff;
  text-decoration: underline;
  cursor: pointer;
}
.admin-theme .optional-items #unpack:hover, .admin-theme .optional-items #unpack:focus {
  text-decoration: none;
}
.admin-theme .optional-items__content {
  display: none;
}
.admin-theme .selectpicker--with-pen ~ .dropdown__btn:after {
  width: 16px;
  height: 16px;
  -webkit-transform: rotate(0) !important;
          transform: rotate(0) !important;
  background: url("./images/pen.png") no-repeat;
}
.admin-theme .selectpicker--with-pen ~ .dropdown-toggle {
  border: none;
}
.admin-theme .answer-secondary-email {
  display: none;
  margin-top: 16px;
}
.admin-theme #toggle-sec-email .email-holder {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 16px 0;
  color: rgba(51, 51, 51, 0.5);
  font-size: 14px;
}
.admin-theme #toggle-sec-email .email-holder:hover {
  color: rgb(51, 51, 51);
  cursor: pointer;
}
.admin-theme #toggle-sec-email .email-holder--remove {
  display: none;
}
.admin-theme #toggle-sec-email .icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 50%;
  background: #0074ff;
  color: #ffffff;
  font-weight: 500;
}
.admin-theme #toggle-sec-email .icon--remove {
  background: #d95e1c;
}
.admin-theme .step1 {
  padding-top: 24px;
}
.admin-theme #stepOneForm .or {
  padding-top: 7px !important;
}
.admin-theme #stepOneForm .radio--step1 .radio__label--check {
  top: 12px;
  width: 1.6rem;
  height: 1.6rem;
  cursor: pointer;
}
.admin-theme #stepOneForm .radio--step1 .radio__label {
  margin-bottom: 0;
  padding-left: 2.2rem;
}
.admin-theme #stepOneForm .radio--step1 .radio__label--check:after {
  width: 0.8rem;
  height: 0.8rem;
}
@media (max-width: 767px) {
  .admin-theme #stepOneForm .radio__label span:not(.sup-tag) {
    line-height: 26px;
  }
}
.admin-theme .step-one {
  /* ============================
         NADPIS & VÍCE INFORMACÍ
     ============================ */
  margin-top: 180px;
  /* ============================
             FORMULÁŘ
     ============================ */
}
@media (max-width: 1019px) {
  .admin-theme .step-one {
    margin-top: 100px;
  }
}
.admin-theme .step-one .main-header {
  margin: 0;
}
.admin-theme .step-one p#moreInfo {
  margin-bottom: 0;
  margin-left: 6px;
}
.admin-theme .step-one .main-perex {
  padding-left: 14px;
}
.admin-theme .step-one .alert {
  padding: 1rem 2rem;
}
.admin-theme .step-one .form__box {
  padding: 2rem 2rem 0;
}
.admin-theme .step-one .form__box-title {
  margin-top: 0;
}
.admin-theme .step-one .job-position .custom-input > label {
  width: 110px;
  min-width: 110px;
  margin: 0 8px 0 0;
}
@media (max-width: 767px) {
  .admin-theme .step-one .job-position .custom-input--horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .admin-theme .step-one .job-position .custom-input--horizontal > label {
    margin-bottom: 8px;
  }
}
.admin-theme .step-one .job-position .optional-items {
  padding-bottom: 2rem;
}
.admin-theme .step-one .job-position .custom-input--horizontal .custom-input__error {
  left: 118px;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .admin-theme .step-one .job-position .custom-input--horizontal .custom-input__error {
    left: 0;
  }
}
.admin-theme .step-one .job-position #toggle-sec-email {
  padding-left: 118px;
}
@media (max-width: 767px) {
  .admin-theme .step-one .job-position #toggle-sec-email {
    padding-left: 0;
  }
}
.admin-theme .step-one .job-position #toggle-sec-email .email-holder {
  margin-top: 0;
}
.admin-theme .step-one .job-position .answer-secondary-email {
  margin-top: 0;
}
@media (max-width: 767px) {
  .admin-theme .step-one .job-position .answer-secondary-email label {
    display: none;
  }
}
.admin-theme .step-one .job-position .col-sm-6 {
  width: 50%;
}
.admin-theme .step-one .job-position-submit {
  margin: 2rem 0;
}
.admin-theme .step-one .job-position--fixed-wrapper {
  width: 330px;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .admin-theme .step-one .job-position--fixed-wrapper {
    width: 200px;
  }
}
.admin-theme .step-one .job-position--fixed-wrapper label {
  width: auto !important;
}
@media (max-width: 767px) {
  .admin-theme .step-one .job-position--fixed-wrapper .custom-input--with-pen:after {
    top: 62px;
  }
}
.admin-theme .step-one .job-position .custom-input--horizontal label {
  min-width: 110px;
}
.admin-theme .step-one .job-position .custom-input--horizontal label.label-address {
  position: relative;
}
.admin-theme .step-one .job-position .custom-input--horizontal label.label-address .tippy-admin-help {
  position: absolute;
  right: 0;
}
@media (max-width: 767px) {
  .admin-theme .step-one .job-position .custom-input--horizontal label.label-address .tippy-admin-help {
    position: relative;
    right: auto;
  }
}
.admin-theme .step-one .job-position .custom-input--horizontal label.label-email {
  position: relative;
}
.admin-theme .step-one .job-position .custom-input--horizontal label.label-email .tippy-admin-help {
  position: absolute;
  right: 10px;
}
@media (max-width: 767px) {
  .admin-theme .step-one .job-position .custom-input--horizontal label.label-email .tippy-admin-help {
    position: relative;
    right: auto;
  }
}
@media (max-width: 767px) {
  .admin-theme .step-one .job-position .custom-input--radio-vertical {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .admin-theme .step-one .job-position .custom-input--radio-vertical label {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
}
.admin-theme .step-one #language-skills {
  display: none;
}
.admin-theme .step-one__term .custom-input--radio {
  position: relative;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 40px;
}
@media (max-width: 767px) {
  .admin-theme .step-one__term .custom-input--radio {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.admin-theme .step-one__term .custom-input--radio .custom-input__error {
  position: absolute;
  top: -18px;
}
@media (max-width: 767px) {
  .admin-theme .step-one__term .custom-input--radio .custom-input__error {
    top: -10px;
  }
}
.admin-theme .step-one__term .custom-input__wrap {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .admin-theme .step-one__term .custom-input__fake-label {
    margin: 0;
  }
}
.admin-theme .step-one__salary .custom-input__error {
  margin-bottom: 4px;
}
.admin-theme .step-one__schedule .custom-input > label {
  min-width: 180px !important;
}
.admin-theme .step-one__schedule .custom-input > .custom-input__error {
  left: 188px !important;
}
@media (max-width: 767px) {
  .admin-theme .step-one__schedule .custom-input > .custom-input__error {
    left: 0 !important;
  }
}
.admin-theme .step-one .phone-widget {
  display: none;
  padding-left: 118px;
}
@media (max-width: 767px) {
  .admin-theme .step-one .phone-widget {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .admin-theme .step-one .phone-widget--prefix {
    width: 35%;
  }
}
@media (max-width: 575px) {
  .admin-theme .step-one .phone-widget--number {
    width: 65%;
  }
}
@media (max-width: 575px) {
  .admin-theme .step-one .phone-widget--text {
    width: 100% !important;
  }
}
.admin-theme .act-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-bottom: 16px;
  padding: 32px 40px;
  -webkit-transition: 200ms all ease-in-out;
  transition: 200ms all ease-in-out;
  border: 2px solid transparent;
  border-radius: 10px;
  background-color: #f8f8f8;
}
@media (max-width: 599px) {
  .admin-theme .act-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 24px 12px;
  }
}
.admin-theme .act-item__thumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 220px;
  min-width: 220px;
  height: 220px;
  overflow: hidden;
}
@media (max-width: 599px) {
  .admin-theme .act-item__thumb {
    width: 100%;
  }
}
.admin-theme .act-item__thumb img {
  width: 100%;
  height: auto;
}
.admin-theme .act-item__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 0 0 40px;
}
.admin-theme .act-item__content--title {
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #0074ff;
  font-size: 28px;
  line-height: 38px;
}
@media (min-width: 600px) {
  .admin-theme .act-item__content--title {
    margin-top: 0;
  }
}
.admin-theme .act-item__content--title a {
  color: #0074ff;
  font-size: inherit;
}
.admin-theme .act-item__content--title a:hover {
  color: #00a8ff;
}
.admin-theme .act-item__content--perex {
  margin-bottom: 3rem;
  color: #898989;
}
.admin-theme .act-item__content--taggroup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  min-height: 50px;
}
@media (max-width: 599px) {
  .admin-theme .act-item__content {
    padding: 0;
  }
}
.admin-theme .act-item__content .main-header__meta {
  margin: 0 0 1rem;
}
.admin-theme .act-item__content .main-header__meta .main-header__meta--author,
.admin-theme .act-item__content .main-header__meta .main-header__meta--divider,
.admin-theme .act-item__content .main-header__meta .main-header__meta--date {
  font-size: 1.2rem;
}
.admin-theme .act-item:hover {
  border: 2px solid #0074ff;
}
.admin-theme .act-item.disabled {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.admin-theme .act-item-tag {
  margin-right: 10px;
  padding: 4px 12px;
  border: 2px solid #0074ff;
  border-radius: 16px;
  background: transparent;
  font-size: 14px;
  line-height: 14px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .admin-theme .act-item-tag {
    margin-top: 4px;
    margin-bottom: 4px;
  }
}
.admin-theme .act-item-tag:last-child {
  margin-right: 0;
}
.admin-theme .act-item-tag:hover {
  border-color: #00a8ff;
  color: #00a8ff;
}
.admin-theme .act-col {
  margin-bottom: 50px;
}
.admin-theme .act-col ~ .row.justify-content-between {
  margin-bottom: 80px;
}
.admin-theme .act-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 799px) {
  .admin-theme .act-nav {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.admin-theme .act-nav:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 200vw;
  height: 10px;
  margin: auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgb(0, 0, 0);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 799px) {
  .admin-theme .act-nav:after {
    content: none;
  }
}
.admin-theme .act-nav__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 24px;
  border-bottom: 2px solid transparent;
  color: #333333;
}
.admin-theme .act-nav__item.selected {
  border-bottom: 2px solid #0074ff;
  color: #0074ff;
}
@media (max-width: 799px) {
  .admin-theme .act-nav__item {
    margin: 0 6px 6px 0;
    padding: 6px 12px;
    border: 1px solid transparent;
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.05);
  }
  .admin-theme .act-nav__item.selected {
    border: 1px solid #0074ff;
    color: #0074ff;
  }
}
.admin-theme .act-badge {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 21px;
  height: 21px;
  margin-left: 5px;
  border: 1px solid #0074ff;
  border-radius: 50%;
  color: #0074ff;
  font-size: 12px;
}
@media (max-width: 799px) {
  .admin-theme .flex-mobile-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .admin-theme .justify-content-mobile-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.admin-theme .d-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.admin-theme .justify-content-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.admin-theme .blog-detail {
  padding-bottom: 4rem;
  color: #333333;
  font-size: 16px;
}
.admin-theme .blog-detail .share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.admin-theme .blog-detail .share img {
  width: 24px;
  margin: 8px;
}
.admin-theme .blog-detail table {
  width: 100%;
  margin: 2.4rem 0;
  border-spacing: 0;
  border-collapse: collapse;
}
.admin-theme .blog-detail table td {
  padding: 0.5rem;
  border: 1px solid #f5f5f5;
}
.admin-theme .blog-detail cite {
  display: inline-block;
  margin-bottom: 1.6rem;
  padding-left: 2rem;
  border-left: 3px solid #2ea5d1;
}
.admin-theme .blog-detail h2 {
  margin: 2rem 0 1rem;
  font-size: 4rem;
  font-weight: 400;
}
.admin-theme .blog-detail h3 {
  font-size: 2.2rem;
  font-weight: 500;
}
.admin-theme .blog-detail h4 {
  font-size: 1.8rem;
}
.admin-theme .blog-detail h3,
.admin-theme .blog-detail h4 {
  margin: 1rem 0;
  color: #ff8c00;
}
.admin-theme .blog-detail p,
.admin-theme .blog-detail ul,
.admin-theme .blog-detail ol {
  margin-bottom: 1.6rem;
}
.admin-theme .blog-detail p,
.admin-theme .blog-detail li,
.admin-theme .blog-detail span,
.admin-theme .blog-detail a,
.admin-theme .blog-detail td,
.admin-theme .blog-detail cite {
  font-size: 16px;
  line-height: 1.4;
}
.admin-theme .blog-detail strong {
  font-weight: 500;
}
.admin-theme .blog-detail ul,
.admin-theme .blog-detail ol {
  margin-left: 0;
  padding-left: 2.4rem;
}
.admin-theme .blog-detail .pic-media-grid img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
  float: none;
}
.admin-theme .blog-detail .pic-media-grid .pic-media-grid__item--text {
  font-size: 1.4rem;
}
.admin-theme .blog-detail__content .box {
  line-height: 1.6;
  overflow: hidden;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .admin-theme .blog-detail__content .box {
    padding-bottom: 0;
  }
}
.admin-theme .blog-detail__content .box-image {
  display: block;
  margin: 0 0 2rem 0;
  width: 100%;
  max-width: 100%;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .admin-theme .blog-detail__content .box-image {
    float: left;
    max-width: 350px;
    height: auto;
    margin: 0 1.5rem 0.5rem 0;
    display: block;
  }
}
.admin-theme .blog-detail__content .box--full-width .box-image {
  float: none;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 0 1rem 0;
  display: block;
}
@media (max-width: 767px) {
  .admin-theme .blog-detail__content .box--full-width .box-image {
    margin: 0;
  }
}
.admin-theme .new-pricing {
  padding-bottom: 8rem;
  color: #333333;
}
.admin-theme .new-pricing a {
  font-size: 16px;
}
.admin-theme .new-pricing .text-blue {
  color: #0091ff;
}
.admin-theme .new-pricing .absolute-tooltip {
  position: relative;
}
.admin-theme .new-pricing .absolute-tooltip .tippy-admin-help {
  position: absolute;
  bottom: 4px;
}
.admin-theme .new-pricing .font-22 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 24px;
}
@media (min-width: 576px) {
  .admin-theme .new-pricing .font-22 {
    font-size: 22px;
    line-height: 28px;
  }
}
.admin-theme .new-pricing .font-24 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 30px;
}
.admin-theme .new-pricing .font-18 {
  color: #333333;
  letter-spacing: 0;
  line-height: 23px;
}
.admin-theme .new-pricing .font-14 {
  color: #333333;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 18px;
}
.admin-theme .new-pricing .font-16 {
  font-size: 14px;
  line-height: 18px;
}
@media (min-width: 576px) {
  .admin-theme .new-pricing .font-16 {
    font-size: 16px;
    line-height: 24px;
  }
}
.admin-theme .new-pricing .main-title--secondary {
  font-size: 36px;
}
@media (max-width: 767px) {
  .admin-theme .new-pricing .main-title--secondary {
    font-size: 28px;
  }
}
.admin-theme .new-pricing .main-perex {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 40px;
}
@media (min-width: 576px) {
  .admin-theme .new-pricing .main-perex {
    font-size: 44px;
    line-height: 55px;
  }
}
.admin-theme .new-pricing .col-1,
.admin-theme .new-pricing .col-2,
.admin-theme .new-pricing .col-3,
.admin-theme .new-pricing .col-4,
.admin-theme .new-pricing .col-5,
.admin-theme .new-pricing .col-6,
.admin-theme .new-pricing .col-7,
.admin-theme .new-pricing .col-8,
.admin-theme .new-pricing .col-9,
.admin-theme .new-pricing .col-10,
.admin-theme .new-pricing .col-11,
.admin-theme .new-pricing .col-12,
.admin-theme .new-pricing .col,
.admin-theme .new-pricing .col-auto,
.admin-theme .new-pricing .col-sm-1,
.admin-theme .new-pricing .col-sm-2,
.admin-theme .new-pricing .col-sm-3,
.admin-theme .new-pricing .col-sm-4,
.admin-theme .new-pricing .col-sm-5,
.admin-theme .new-pricing .col-sm-6,
.admin-theme .new-pricing .col-sm-7,
.admin-theme .new-pricing .col-sm-8,
.admin-theme .new-pricing .col-sm-9,
.admin-theme .new-pricing .col-sm-10,
.admin-theme .new-pricing .col-sm-11,
.admin-theme .new-pricing .col-sm-12,
.admin-theme .new-pricing .col-sm,
.admin-theme .new-pricing .col-sm-auto,
.admin-theme .new-pricing .col-md-1,
.admin-theme .new-pricing .col-md-2,
.admin-theme .new-pricing .col-md-3,
.admin-theme .new-pricing .col-md-4,
.admin-theme .new-pricing .col-md-5,
.admin-theme .new-pricing .col-md-6,
.admin-theme .new-pricing .col-md-7,
.admin-theme .new-pricing .col-md-8,
.admin-theme .new-pricing .col-md-9,
.admin-theme .new-pricing .col-md-10,
.admin-theme .new-pricing .col-md-11,
.admin-theme .new-pricing .col-md-12,
.admin-theme .new-pricing .col-md,
.admin-theme .new-pricing .col-md-auto,
.admin-theme .new-pricing .col-lg-1,
.admin-theme .new-pricing .col-lg-2,
.admin-theme .new-pricing .col-lg-3,
.admin-theme .new-pricing .col-lg-4,
.admin-theme .new-pricing .col-lg-5,
.admin-theme .new-pricing .col-lg-6,
.admin-theme .new-pricing .col-lg-7,
.admin-theme .new-pricing .col-lg-8,
.admin-theme .new-pricing .col-lg-9,
.admin-theme .new-pricing .col-lg-10,
.admin-theme .new-pricing .col-lg-11,
.admin-theme .new-pricing .col-lg-12,
.admin-theme .new-pricing .col-lg,
.admin-theme .new-pricing .col-lg-auto {
  padding-right: 15px;
  padding-left: 15px;
}
.admin-theme .new-pricing .no-gutters > .col,
.admin-theme .new-pricing .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}
.admin-theme .new-pricing .pricing-section,
.admin-theme .new-pricing .propagation-section {
  margin-bottom: 4.8rem;
}
@media (min-width: 576px) {
  .admin-theme .new-pricing .pricing-section,
  .admin-theme .new-pricing .propagation-section {
    margin-bottom: 2rem;
  }
}
.admin-theme .new-pricing .pricing-section:last-child,
.admin-theme .new-pricing .propagation-section:last-child {
  margin-bottom: 0;
}
.admin-theme .new-pricing .pricing-section .main-header,
.admin-theme .new-pricing .propagation-section .main-header {
  margin: 0;
}
.admin-theme .new-pricing .pricing-section--benefits, .admin-theme .new-pricing .pricing-section--references, .admin-theme .new-pricing .pricing-section--better-view, .admin-theme .new-pricing .pricing-section--help,
.admin-theme .new-pricing .propagation-section--benefits,
.admin-theme .new-pricing .propagation-section--references,
.admin-theme .new-pricing .propagation-section--better-view,
.admin-theme .new-pricing .propagation-section--help {
  margin-top: 82px;
}
.admin-theme .new-pricing .pricing-section .main-title--gap,
.admin-theme .new-pricing .propagation-section .main-title--gap {
  margin-top: 60px;
}
.admin-theme .new-pricing .ref-grid {
  margin-bottom: 24px;
}
.admin-theme .new-pricing .pricing-avatar__thumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  min-width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
  background: #f8f8f8;
}
@media (min-width: 576px) {
  .admin-theme .new-pricing .pricing-avatar__thumb {
    width: 200px;
    min-width: 200px;
    height: 200px;
  }
}
.admin-theme .new-pricing .pricing-avatar__thumb img {
  width: 100%;
  height: auto;
}
.admin-theme .new-pricing .pricing-avatar__content--contact {
  padding-left: 0;
  list-style: none;
}
.admin-theme .new-pricing .pricing-avatar__content--contact li {
  white-space: nowrap;
}
.admin-theme .new-pricing .pricing-avatar__content p {
  font-size: 16px;
}
.admin-theme .new-pricing .pricing-avatar a {
  color: #333333;
}
.admin-theme .new-pricing .pricing-avatar__content--contact-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.admin-theme .new-pricing .pricing-avatar__content--contact-item .email-text {
  width: 100%;
  max-width: 160px;
  margin-left: 1rem;
}
.admin-theme .new-pricing .another-services {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 40px;
}
.admin-theme .new-pricing .another-services .holder {
  margin-top: 30px;
}
.admin-theme .new-pricing .another-services .label {
  position: absolute;
  z-index: 1;
  bottom: calc(100% - 30px);
  left: 10px;
  width: 155px;
  height: 60px;
  padding: 10px 8px;
  border-radius: 20px 20px 0 0;
  background: #ff8c00;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}
.admin-theme .new-pricing .another-services .label--special {
  background: #7ac943;
}
.admin-theme .new-pricing .another-services .label .fa {
  margin-right: 5px;
  color: #ffffff;
  font-size: 15px;
}
.admin-theme .new-pricing .another-services__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 12px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  border: 1px solid #cccccc;
  border-radius: 20px;
  background: #f7f7f7;
}
.admin-theme .new-pricing .another-services__item:hover {
  border: 1px solid #0091ff;
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}
.admin-theme .new-pricing .another-services__item .title {
  min-height: 95px;
  color: #333333;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
}
@media (max-width: 575px) {
  .admin-theme .new-pricing .another-services__item .title {
    min-height: auto;
  }
}
.admin-theme .new-pricing .another-services__item .fa {
  color: #d7d7d7;
  font-size: 80px;
}
.admin-theme .new-pricing .another-services__item .visit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 165px;
  height: 40px;
  margin-top: 2rem;
  border-radius: 100px;
  background: #0091ff;
  color: #ffffff;
  font-size: 16px;
}
.admin-theme .new-pricing .another-services__item--favorite {
  border: 1px solid #ff8c00;
  background: #ffead1;
}
.admin-theme .new-pricing .another-services__item--favorite .fa {
  color: rgba(255, 140, 0, 0.5);
}
.admin-theme .new-pricing .another-services__item--special {
  border: 1px solid #48c400;
  background: #e2ffd1;
}
.admin-theme .new-pricing .another-services__item--special .fa {
  color: rgba(72, 196, 0, 0.5);
}
.admin-theme .new-pricing .pricing-check .checkbox__label {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 20px 20px 20px 64px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  border: 1px solid #cccccc;
  border-radius: 20px;
  background-color: #f8f8f8;
}
.admin-theme .new-pricing .pricing-check .checkbox__label:hover {
  border: 1px solid #0091ff;
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
@media (min-width: 576px) {
  .admin-theme .new-pricing .pricing-check .checkbox__label {
    padding: 24px 32px 24px 64px;
  }
}
.admin-theme .new-pricing .pricing-check .checkbox__label .label-content__left span {
  color: #333333;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 18px;
}
@media (min-width: 576px) {
  .admin-theme .new-pricing .pricing-check .checkbox__label .label-content__left span {
    letter-spacing: 0;
    line-height: 23px;
  }
}
.admin-theme .new-pricing .pricing-check .checkbox__input:checked ~ .checkbox__label {
  border: 1px solid #0091ff;
  -webkit-box-shadow: inset 0 0 0 2px #0091ff;
  box-shadow: inset 0 0 0 2px #0091ff;
}
.admin-theme .new-pricing .pricing-check .checkbox__label--check {
  top: 0;
  bottom: 0;
  left: 24px;
  width: 23px;
  height: 23px;
  margin: auto;
}
.admin-theme .new-pricing .pricing-check .checkbox__input:checked ~ .checkbox__label > .checkbox__label--check {
  -webkit-animation: check-move 1s;
          animation: check-move 1s;
  border: 1px solid #0091ff;
  background-color: #0091ff;
}
.admin-theme .new-pricing .pricing-box {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 20px 20px 20px;
  border: 1px solid #cccccc;
  border-radius: 20px;
  background-color: #f8f8f8;
  font-size: 14px;
}
@media (min-width: 576px) {
  .admin-theme .new-pricing .pricing-box {
    padding: 24px 32px 24px 32px;
  }
}
.admin-theme .new-pricing .form-group__control {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 48px;
  border: 1px solid #cccccc;
  border-radius: 7px;
  background-color: #ffffff;
}
.admin-theme .new-pricing .credit-box-inside {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 20px 20px 20px 20px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  border: 1px solid #cccccc;
  border-radius: 20px;
  background-color: #f8f8f8;
  font-size: 14px;
  cursor: pointer;
}
@media (min-width: 576px) {
  .admin-theme .new-pricing .credit-box-inside {
    padding: 3rem;
  }
}
.admin-theme .new-pricing .credit-box-inside:hover {
  border: 1px solid #0091ff;
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
}
.admin-theme .new-pricing .credit-box {
  position: relative;
}
.admin-theme .new-pricing .credit-box__header {
  height: 6rem;
  margin-bottom: 31px;
}
.admin-theme .new-pricing .credit-box__header__title {
  font-size: 24px;
  text-decoration: underline;
  text-transform: uppercase;
}
.admin-theme .new-pricing .credit-box__header__sale span {
  color: #ff8c00;
}
.admin-theme .new-pricing .credit-box__perex {
  height: 7rem;
  margin-bottom: 15px;
}
.admin-theme .new-pricing .credit-box__perex p {
  font-weight: 400;
}
.admin-theme .new-pricing .credit-box__discount {
  margin-bottom: 23px;
}
.admin-theme .new-pricing .credit-box__discount__price {
  font-size: 24px;
  font-weight: 500;
}
.admin-theme .new-pricing .credit-box__discount__credit {
  font-size: 14px;
}
.admin-theme .new-pricing .credit-box__price {
  margin-bottom: 15px;
}
.admin-theme .new-pricing .credit-box__price p {
  color: #0091ff;
}
.admin-theme .new-pricing .credit-box__favourite {
  position: absolute;
  z-index: -1;
  top: -40px;
  left: 1rem;
  height: 160px;
  border-radius: 19px;
  background-color: #ff8c00;
}
.admin-theme .new-pricing .credit-box__favourite--content {
  padding: 1rem 2rem;
  color: #ffffff;
}
.admin-theme .new-pricing .credit-box .tippy-admin-help {
  position: absolute;
  top: 2rem;
  right: 2rem;
}
.admin-theme .new-pricing .credit-box .radio__input:checked ~ .credit-box-inside {
  border: 1px solid #0091ff;
  -webkit-box-shadow: inset 0 0 0 2px #0091ff;
  box-shadow: inset 0 0 0 2px #0091ff;
}
.admin-theme .new-pricing .credit-box .radio__input:checked ~ .credit-box-inside > .pricing-btn {
  background-color: #0074cc;
}
.admin-theme .new-pricing .credit-box .radio__input:checked ~ .credit-box-inside > .pricing-btn::before {
  left: 30px;
  opacity: 1;
}
.admin-theme .new-pricing .credit-box .radio__input:checked ~ .credit-box-inside > .pricing-btn > span {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.admin-theme .new-pricing .bubble {
  position: relative;
  width: 134px;
  height: 82px;
  border-radius: 58px;
  background-color: #0091ff;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-size: 14px;
}
.admin-theme .new-pricing .bubble:after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 35px;
  width: 0;
  height: 0;
  border-width: 33px 50px 0 0;
  border-style: solid;
  border-color: #0091ff transparent transparent transparent;
}
.admin-theme .new-pricing .bubble span {
  position: relative;
  z-index: 1;
}
.admin-theme .new-pricing .bubble .tippy-admin-help {
  position: absolute;
  top: 0;
  right: -1.5rem;
}
.admin-theme .new-pricing .gradient-box {
  position: relative;
  padding: 32px 0;
}
.admin-theme .new-pricing .gradient-box:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: -64px;
  bottom: 0;
  left: -64px;
  width: auto;
  height: 100%;
  border-radius: 20px;
  opacity: 0.08;
  background: -webkit-linear-gradient(225.32deg, #ff8c00 0%, #0091ff 100%);
  background: linear-gradient(224.68deg, #ff8c00 0%, #0091ff 100%);
  -webkit-box-shadow: inset 0 1px 3px 0 #000000, 0 3px 9px 0 rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 3px 0 #000000, 0 3px 9px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 1019px) {
  .admin-theme .new-pricing .gradient-box:after {
    right: -24px;
    left: -24px;
  }
}
.admin-theme .new-pricing .gradient-box .big-logos img {
  width: auto;
  max-height: 92px;
}
.admin-theme .new-pricing .gradient-box .big-logos img:nth-child(n+2) {
  margin-left: 2rem;
}
@media (max-width: 1019px) {
  .admin-theme .new-pricing .gradient-box .big-logos img {
    display: block;
    width: 100%;
    max-width: 120px;
    height: auto;
  }
}
.admin-theme .new-pricing .gradient-box .propagation-line {
  position: relative;
  padding: 2rem;
}
.admin-theme .new-pricing .gradient-box .propagation-line:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: 100%;
  opacity: 0.55;
  background-color: rgba(0, 0, 0, 0.05);
}
@media (max-width: 1019px) {
  .admin-theme .new-pricing .gradient-box .propagation-line a {
    font-size: 12px;
  }
}
.admin-theme .new-pricing .gradient-box .portals__more {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid #a7a7a7;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}
.admin-theme .new-pricing__portal-logo img {
  width: 100%;
  max-width: 150px;
  margin-bottom: 1rem;
}
.admin-theme .promotion-tabs,
.admin-theme .advertising-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 4rem 0 0 0;
  padding: 0;
}
@media (max-width: 575px) {
  .admin-theme .promotion-tabs,
  .admin-theme .advertising-tabs {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.admin-theme .promotion-tabs li,
.admin-theme .advertising-tabs li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 220px;
  min-height: 100px;
  margin: 0 0 -2px 0;
  border: 2px solid #e7e7e7;
  border-bottom: 2px solid #ffffff;
  border-radius: 6px 6px 0 0;
  outline: none;
  background: #ffffff;
  list-style: none;
}
@media (max-width: 1019px) {
  .admin-theme .promotion-tabs li,
  .admin-theme .advertising-tabs li {
    width: 155px;
  }
}
@media (max-width: 767px) {
  .admin-theme .promotion-tabs li,
  .admin-theme .advertising-tabs li {
    width: 180px;
    min-height: 80px;
  }
}
@media (max-width: 575px) {
  .admin-theme .promotion-tabs li,
  .admin-theme .advertising-tabs li {
    width: 140px;
    height: 65px;
    padding: 0 16px;
  }
}
.admin-theme .promotion-tabs li:hover,
.admin-theme .advertising-tabs li:hover {
  cursor: pointer;
}
.admin-theme .promotion-tabs li:hover img,
.admin-theme .advertising-tabs li:hover img {
  -webkit-filter: grayscale(0%);
  filter: none;
}
.admin-theme .promotion-tabs li.inactive,
.admin-theme .advertising-tabs li.inactive {
  border: none;
  background: transparent;
}
.admin-theme .promotion-tabs li.inactive img,
.admin-theme .advertising-tabs li.inactive img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.admin-theme .promotion-tabs li img,
.admin-theme .advertising-tabs li img {
  width: 100%;
  max-width: 150px;
}
@media (max-width: 1019px) {
  .admin-theme .promotion-tabs li img,
  .admin-theme .advertising-tabs li img {
    max-width: 100px;
  }
}
.admin-theme .promotion-tabs__container,
.admin-theme .advertising-tabs__container {
  width: 100%;
  padding: 16px;
  overflow: hidden;
  border: 2px solid #e7e7e7;
  border-radius: 0 6px 6px 6px;
  background: #ffffff;
  text-align: left;
}
.admin-theme .promotion-tabs__container:last-child,
.admin-theme .advertising-tabs__container:last-child {
  border-top-left-radius: 6px;
}
@media (max-width: 1019px) {
  .admin-theme .promotion-tabs__container,
  .admin-theme .advertising-tabs__container {
    border-radius: 6px;
  }
}
.admin-theme .promotion-tabs__container .propagation-section,
.admin-theme .advertising-tabs__container .propagation-section {
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}
.admin-theme .promotion-tabs__container .location-apply,
.admin-theme .advertising-tabs__container .location-apply {
  margin-bottom: 0;
  padding: 6px 6px 0;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .admin-theme .promotion-tabs__container .location-apply,
  .admin-theme .advertising-tabs__container .location-apply {
    margin-bottom: 12px;
  }
}
.admin-theme .promotion-tabs__container .propagation-header,
.admin-theme .advertising-tabs__container .propagation-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 6px !important;
}
@media (max-width: 767px) {
  .admin-theme .promotion-tabs__container .propagation-header,
  .admin-theme .advertising-tabs__container .propagation-header {
    display: none;
    padding: 6px 12px !important;
  }
}
.admin-theme .promotion-tabs__container .image-wrapper,
.admin-theme .advertising-tabs__container .image-wrapper {
  display: inline-block;
  position: relative;
  width: 38px;
}
.admin-theme .promotion-tabs__container .image-wrapper:before,
.admin-theme .advertising-tabs__container .image-wrapper:before {
  content: "";
  position: absolute;
  top: -6px;
  right: 2px;
  width: 26px;
  height: 14px;
  background-image: url(images/vip-label.svg);
  background-repeat: no-repeat;
}
.admin-theme .promotion-tabs__container .slideUp,
.admin-theme .advertising-tabs__container .slideUp {
  -webkit-animation-name: slideUp;
          animation-name: slideUp;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}
.admin-theme .promotion-tabs__container .propagation-head,
.admin-theme .advertising-tabs__container .propagation-head {
  margin-bottom: 8px;
}
.admin-theme .no-vat {
  font-style: italic;
}
.admin-theme .propagation-line {
  padding: 12px 6px !important;
  border-radius: 6px;
  background: #f0f0ed;
}
@media (max-width: 767px) {
  .admin-theme .propagation-line {
    padding: 12px !important;
  }
}
@media (max-width: 767px) {
  .admin-theme .propagation-line .pl-3 {
    padding-left: 0 !important;
  }
}
.admin-theme .propagation-line-preview {
  position: absolute;
  top: calc(50% - 25px);
  right: 8px;
}
.admin-theme .propagation-line-preview a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 6px;
}
.admin-theme .propagation-line-preview img {
  width: 100%;
  height: auto;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}
.admin-theme .propagation-line-preview--sec {
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  width: 20px !important;
  height: auto !important;
}
.admin-theme .propagation-line-preview:hover .propagation-line-preview--sec {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.admin-theme .propagation-line-preview--mobile {
  display: none;
  position: relative;
  top: auto;
  right: auto;
  max-width: 55px;
  margin: 0;
}
.admin-theme .propagation-line-preview--mobile a {
  width: 35px;
  height: 35px;
}
@media only screen and (min-width: 600px) {
  .admin-theme .propagation-line-preview--mobile a {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .admin-theme .propagation-line-preview--mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.admin-theme .day-block {
  padding-right: 8px;
}
@media (max-width: 767px) {
  .admin-theme .day-block a {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .admin-theme .day-block strong {
    font-size: 18px !important;
  }
}
.admin-theme .spec-row {
  padding-right: 10px !important;
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(8%);
            transform: translateY(8%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(8%);
            transform: translateY(8%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.admin-theme .period {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.admin-theme .period .col {
  max-width: 130px;
}
@media (max-width: 1019px) {
  .admin-theme .period .col {
    max-width: 100%;
  }
}
@-webkit-keyframes check-move {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0.75;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes check-move {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0.75;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.admin-theme .promotion-box p span {
  color: #121419;
  font-weight: 500;
}
@media (max-width: 575px) {
  .admin-theme .currency {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 2rem;
    text-align: center;
  }
}
.admin-theme .currency__btn {
  min-width: 80px;
  margin: 0;
  padding: 4px 10px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  border: none;
  border-radius: 0 4px 4px 0;
  outline: none;
  background: #0091ff;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}
.admin-theme .currency__btn:first-child {
  margin-right: -3px;
  border-radius: 4px 0 0 4px;
}
.admin-theme .currency .btn-inactive {
  background: #cccccc;
}
.admin-theme .currency-filter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 205px;
  right: 0;
}
.admin-theme .currency-filter--second {
  top: 320px;
}
@media (max-width: 767px) {
  .admin-theme .currency-filter {
    position: relative;
    top: auto;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 4rem;
  }
}
@media (max-width: 575px) {
  .admin-theme .currency-filter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.admin-theme .image-wrapper {
  display: inline-block;
  position: relative;
  width: 40px;
  margin: 0.5rem 0;
}
.admin-theme .image-wrapper img {
  margin: 0 !important;
}
.admin-theme .image-wrapper:before {
  content: "";
  position: absolute;
  top: -6px;
  right: 0;
  width: 26px;
  height: 14px;
  background-image: url(images/vip-label.svg);
  background-repeat: no-repeat;
}
.admin-theme .image-wrapper-holder {
  max-width: 200px;
}
.admin-theme .image-wrapper-holder img {
  margin: 0.5rem 0;
}
@media (max-width: 575px) {
  .admin-theme .image-wrapper-holder {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    max-width: 70%;
  }
  .admin-theme .image-wrapper-holder .image-wrapper {
    margin-bottom: 10px;
  }
}
.admin-theme .price-day-range {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  cursor: pointer;
}
@media (max-width: 575px) {
  .admin-theme .price-day-range {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.admin-theme .price-day-range__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 16px;
}
@media (max-width: 575px) {
  .admin-theme .price-day-range__item:last-child {
    margin-right: 0;
  }
}
.admin-theme .price-day-range label {
  margin: 0 6px;
  cursor: pointer;
}
.admin-theme .price-day-range input {
  cursor: pointer;
}
.admin-theme .days-14,
.admin-theme .days-7,
.admin-theme .days-2 {
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  opacity: 0;
}
@media (max-width: 991px) {
  .admin-theme .sidebar {
    position: fixed;
    z-index: 100;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 30rem;
    height: 100vh;
    padding: 5rem 3rem;
    overflow-y: auto;
    -webkit-transform: translateX(-30rem);
            transform: translateX(-30rem);
    -webkit-transition: 300ms all ease-in-out;
    transition: 300ms all ease-in-out;
    background-color: #ffffff;
  }
  .admin-theme .sidebar.show {
    -webkit-transform: translateX(0rem);
            transform: translateX(0rem);
  }
  .admin-theme .sidebar .form-group {
    width: 100%;
  }
  .admin-theme .sidebar .form-group .tippy-admin-help {
    position: absolute;
    top: 1rem;
    right: -3rem;
  }
}
.admin-theme .success-page {
  color: #333333;
}
.admin-theme .success-page__heading {
  font-size: 4.4rem;
  margin: 24px 0 46px;
  color: #7aca43;
  text-align: center;
}
@media (max-width: 575px) {
  .admin-theme .success-page__heading {
    font-size: 3.2rem;
    text-align: left;
  }
}
.admin-theme .success-page__perex {
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-bottom: 46px;
  text-align: center;
}
@media (max-width: 575px) {
  .admin-theme .success-page__perex {
    font-size: 1.6rem;
    text-align: left;
  }
}
.admin-theme .success-page__perex span,
.admin-theme .success-page__perex a {
  font-size: 1.8rem;
}
@media (max-width: 575px) {
  .admin-theme .success-page__perex span,
  .admin-theme .success-page__perex a {
    font-size: 1.6rem;
  }
}
.admin-theme .success-page__promotion {
  margin-bottom: 46px;
  padding: 32px;
  border-radius: 20px;
  background: #f8f8f8;
  text-align: center;
}
@media (max-width: 575px) {
  .admin-theme .success-page__promotion {
    padding: 16px 8px;
  }
}
.admin-theme .success-page__promotion__title {
  font-size: 2.8rem;
  margin-bottom: 36px;
  font-weight: normal;
}
@media (max-width: 575px) {
  .admin-theme .success-page__promotion__title {
    font-size: 2.4rem;
  }
}
.admin-theme .success-page__social {
  margin-bottom: 36px;
}
.admin-theme .success-page__social__item {
  margin-right: 28px;
}
.admin-theme .success-page__social__item:last-child {
  margin-right: 0;
}
.admin-theme .success-page__link {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.admin-theme .success-page__link-url {
  font-size: 1.8rem;
  display: inline-block;
  min-width: 400px;
  margin: 0 auto 33px;
  padding: 12px 36px;
  border: 1px solid #cccccc;
  border-radius: 24px;
  background: #ffffff;
}
@media (max-width: 575px) {
  .admin-theme .success-page__link-url {
    font-size: 1.6rem;
    min-width: auto;
    max-width: 100%;
    padding: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.admin-theme .success-page__link-actions {
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  .admin-theme .success-page__link-actions {
    margin-bottom: 38px;
  }
}
.admin-theme .success-page__link-actions a {
  font-size: 1.8rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.admin-theme .success-page__link-actions a:hover {
  color: #0074ff;
  text-decoration: underline;
}
.admin-theme .success-page__link-actions a:first-child {
  margin-right: 36px;
}
@media (max-width: 575px) {
  .admin-theme .success-page__link-actions a:first-child {
    margin: 0 0 24px 0;
  }
}
.admin-theme .success-page__link-actions a img {
  margin-right: 12px;
}
.admin-theme .success-page__next-step {
  font-size: 4.4rem;
  line-height: 5.4rem;
  margin: 46px 0;
  font-weight: 400;
  text-align: center;
}
.admin-theme .success-page__next-actions {
  margin-bottom: 100px;
  text-align: center;
}
@media (max-width: 767px) {
  .admin-theme .success-page__next-actions {
    margin-bottom: 40px;
  }
}
.admin-theme .success-page__next-actions .btn--icon {
  margin-right: 28px;
}
@media (max-width: 767px) {
  .admin-theme .success-page__next-actions .btn--icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 200px;
    margin: 0 auto 16px;
  }
}
.admin-theme .success-page__next-actions .btn--icon:last-child {
  margin: 0;
}
@media (max-width: 767px) {
  .admin-theme .success-page__next-actions .btn--icon:last-child {
    margin: 0 auto 16px;
  }
}
.admin-theme .price-list {
  /* About */
  /* Benefits */
  /* Adverts */
  /* Sale */
  /* Price */
  /* Choice */
  /* Packages */
  /* Services */
  /* Add-credits */
}
.admin-theme .price-list .main-header {
  margin-bottom: 30px;
}
.admin-theme .price-list .weight-bold {
  font-weight: 500;
}
.admin-theme .price-list .span-block {
  display: block;
}
.admin-theme .price-list .span-inline {
  display: inline;
}
.admin-theme .price-list-rounded-block {
  padding: 10px 8px;
  border-radius: 63px;
  background: #e4e4e4;
  color: #333;
  font-weight: 500;
  line-height: 20px;
}
@media (max-width: 767px) {
  .admin-theme .price-list-rounded-block {
    position: relative;
    padding: 4px 0 10px 0 !important;
    background: transparent;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    line-height: 22px;
  }
  .admin-theme .price-list-rounded-block::before {
    content: "";
    position: relative;
    min-width: 10px;
    height: 10px;
    margin-right: 10px;
    border-radius: 50%;
    background: #0091ff;
  }
}
.admin-theme .price-list-rounded-block span {
  display: block;
  font-weight: 500;
  line-height: 20px;
}
@media (max-width: 767px) {
  .admin-theme .price-list-rounded-block span {
    display: inline;
  }
}
.admin-theme .price-list-rounded-block--blue {
  background: #0074ff;
  color: #fff;
}
.admin-theme .price-list-shadow {
  -webkit-box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.174825);
          box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.174825);
}
.admin-theme .price-list-shadow--blue {
  -webkit-box-shadow: 20px 20px 20px rgba(0, 116, 255, 0.370192);
          box-shadow: 20px 20px 20px rgba(0, 116, 255, 0.370192);
}
.admin-theme .price-list .rounded-number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 60px;
  height: 60px;
  margin-right: 16px;
  border-radius: 50%;
  background: #ff8c00;
  color: #fff;
  font-size: 60px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .admin-theme .price-list .rounded-number {
    display: none;
  }
}
@media (max-width: 767px) {
  .admin-theme .price-list .price-list-about-image {
    display: none;
  }
}
.admin-theme .price-list .price-list-about-image img {
  width: 100%;
}
.admin-theme .price-list-about {
  position: relative;
  min-height: 210px;
  margin-bottom: 0;
}
@media (max-width: 1019px) {
  .admin-theme .price-list-about {
    min-height: 230px;
  }
}
@media (max-width: 767px) {
  .admin-theme .price-list-about {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
    margin-bottom: 15px;
  }
}
.admin-theme .price-list-about #pl-about-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 4;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 255px;
  height: 90px;
  margin: 0 auto;
}
.admin-theme .price-list-about #pl-about-1::before {
  content: none;
}
@media (max-width: 767px) {
  .admin-theme .price-list-about #pl-about-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 200px;
    height: 72px;
    margin-bottom: 24px;
    margin-left: 0;
    padding: 0;
  }
}
.admin-theme .price-list-about #pl-about-1 p {
  margin: 0;
  font-size: 46px;
  line-height: 46px;
  text-align: center;
}
@media (max-width: 767px) {
  .admin-theme .price-list-about #pl-about-1 p {
    font-size: 36px;
    font-weight: 500;
    line-height: 36px;
  }
}
.admin-theme .price-list-about #pl-about-1 p span {
  display: block;
  font-size: 22px;
  line-height: 28px;
}
@media (max-width: 767px) {
  .admin-theme .price-list-about #pl-about-1 p span {
    line-height: 22px;
  }
}
.admin-theme .price-list-about #pl-about-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  z-index: 3;
  top: calc(50% - 35px);
  left: 200px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 250px;
  height: 80px;
  font-size: 16px;
}
@media (max-width: 1019px) {
  .admin-theme .price-list-about #pl-about-2 {
    left: 50px;
  }
}
@media (max-width: 767px) {
  .admin-theme .price-list-about #pl-about-2 {
    position: relative;
    left: auto;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    height: auto;
  }
}
.admin-theme .price-list-about #pl-about-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  z-index: 1;
  top: calc(50% - 35px);
  right: 140px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 320px;
  height: 80px;
  padding: 10px 30px;
  font-size: 16px;
}
@media (max-width: 1019px) {
  .admin-theme .price-list-about #pl-about-3 {
    right: 30px;
  }
}
@media (max-width: 767px) {
  .admin-theme .price-list-about #pl-about-3 {
    position: relative;
    right: auto;
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
    width: 100%;
    height: auto;
    padding: 10px 0;
  }
}
.admin-theme .price-list-about #pl-about-3 img {
  width: 100%;
  min-width: 45px;
}
@media (max-width: 767px) {
  .admin-theme .price-list-about #pl-about-3 img {
    display: none;
  }
}
.admin-theme .price-list-about #pl-about-3 .img-text {
  padding-left: 18px;
}
@media (max-width: 767px) {
  .admin-theme .price-list-about #pl-about-3 .img-text {
    padding-left: 0;
  }
}
.admin-theme .price-list-about #pl-about-4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  z-index: 2;
  bottom: -10px;
  left: calc(50% - 150px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 300px;
  height: 90px;
}
@media (max-width: 767px) {
  .admin-theme .price-list-about #pl-about-4 {
    position: relative;
    bottom: auto;
    left: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    height: auto;
  }
}
.admin-theme .price-list-about #pl-about-4 p {
  margin-bottom: 8px;
  color: #0074ff;
  font-size: 30px;
  line-height: 30px;
}
@media (max-width: 767px) {
  .admin-theme .price-list-about #pl-about-4 p {
    margin-bottom: 0;
    color: #333;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .admin-theme .price-list-about #pl-about-4 p span {
    display: inline;
  }
}
.admin-theme .price-list-benefits {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: -100px 0 24px -60px;
}
@media only screen and (max-width: 850px) {
  .admin-theme .price-list-benefits {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .admin-theme .price-list-benefits {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.admin-theme .price-list .benefits {
  margin-top: -50px;
}
.admin-theme .price-list .benefits-text {
  width: calc(100% - 267px);
  margin-left: -45px;
  text-align: center;
}
@media only screen and (max-width: 850px) {
  .admin-theme .price-list .benefits-text {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .admin-theme .price-list .benefits-text {
    text-align: left;
  }
}
.admin-theme .price-list .benefits-text h2 {
  margin: 0 0 20px 0;
  color: #ff8c00;
  font-size: 40px;
  font-weight: 400;
  line-height: 50px;
}
@media (max-width: 1019px) {
  .admin-theme .price-list .benefits-text h2 {
    margin: 0 0 12px 0;
  }
}
@media (max-width: 767px) {
  .admin-theme .price-list .benefits-text h2 {
    font-size: 32px;
    line-height: 38px;
  }
}
.admin-theme .price-list .benefits-blocks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (max-width: 850px) {
  .admin-theme .price-list .benefits-blocks {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .admin-theme .price-list .benefits-blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.admin-theme .price-list .benefits-blocks .price-list-rounded-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 255px;
  height: 60px;
  margin-right: 10px;
}
@media (max-width: 1019px) {
  .admin-theme .price-list .benefits-blocks .price-list-rounded-block {
    width: auto;
    padding: 10px 15px 10px 10px;
  }
}
@media only screen and (max-width: 945px) {
  .admin-theme .price-list .benefits-blocks .price-list-rounded-block {
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .admin-theme .price-list .benefits-blocks .price-list-rounded-block {
    height: auto;
    padding-top: 4px;
    padding-left: 0;
  }
}
.admin-theme .price-list .benefits-blocks .price-list-rounded-block:last-child {
  margin-right: 0;
}
.admin-theme .price-list .benefits-blocks .price-list-rounded-block img {
  min-width: 30px;
  height: 30px;
  margin-right: 10px;
}
@media only screen and (max-width: 945px) {
  .admin-theme .price-list .benefits-blocks .price-list-rounded-block img {
    display: none;
  }
}
.admin-theme .price-list .benefits-blocks .price-list-rounded-block p,
.admin-theme .price-list .benefits-blocks .price-list-rounded-block span {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .admin-theme .price-list .benefits-blocks .price-list-rounded-block p,
  .admin-theme .price-list .benefits-blocks .price-list-rounded-block span {
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .admin-theme .price-list .benefits-blocks .price-list-rounded-block .span-block {
    display: inline;
  }
}
.admin-theme .price-list-advert {
  margin-bottom: 38px;
}
.admin-theme .price-list-advert h2 {
  margin-bottom: -10px;
  color: #0074ff;
  font-size: 40px;
  font-weight: 400;
  line-height: 50px;
  text-align: center;
}
@media (max-width: 767px) {
  .admin-theme .price-list-advert h2 {
    font-size: 32px;
    line-height: 42px;
    text-align: left;
  }
}
.admin-theme .price-list-advert__link {
  text-align: center;
}
@media only screen and (max-width: 1110px) {
  .admin-theme .price-list-carousel {
    max-width: 90%;
    margin: 0 auto;
  }
}
.admin-theme .price-list-carousel__item {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 12px;
  border-radius: 15px;
  -webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.0786986);
          box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.0786986);
  font-size: 16px;
  text-align: center;
}
@media (max-width: 767px) {
  .admin-theme .price-list-carousel__item {
    padding: 8px;
  }
}
.admin-theme .price-list-carousel__item .pl-slide-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 120px;
  height: 72px;
  margin: 0 auto 18px;
  overflow: hidden;
}
.admin-theme .price-list-carousel__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.admin-theme .price-list-carousel__item .year {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  height: 26px;
  margin-right: 8px;
  border-radius: 15px;
  background: #0074ff;
  color: #fff;
}
.admin-theme .price-list-sale {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 50px;
  padding: 15px 30px;
  border-radius: 28px;
  background: #e9ebee;
}
.admin-theme .price-list-sale .sale-value {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 130px;
  height: 130px;
  margin-right: 50px;
  border-radius: 50%;
  background: #0074ff;
  -webkit-box-shadow: 10px 10px 20px rgba(0, 116, 255, 0.375792);
          box-shadow: 10px 10px 20px rgba(0, 116, 255, 0.375792);
  color: #fff;
  font-size: 44px;
  font-weight: 500;
  line-height: 55px;
}
@media (max-width: 767px) {
  .admin-theme .price-list-sale .sale-value {
    display: none;
  }
}
.admin-theme .price-list-sale .sale-value span {
  font-size: 44px;
  font-weight: 400;
  line-height: 55px;
}
.admin-theme .price-list-sale .sale-info h3 {
  margin: 0 0 8px 0;
  color: #0074ff;
  font-size: 44px;
  font-weight: 400;
  line-height: 55px;
}
@media (max-width: 767px) {
  .admin-theme .price-list-sale .sale-info h3 {
    font-size: 32px;
    line-height: 40px;
  }
}
.admin-theme .price-list-sale .sale-info p,
.admin-theme .price-list-sale .sale-info span {
  margin-bottom: 0;
  font-weight: 500;
  line-height: 20px;
}
@media (max-width: 767px) {
  .admin-theme .price-list-sale .sale-info p,
  .admin-theme .price-list-sale .sale-info span {
    display: inline;
  }
}
.admin-theme .price-list-sale .sale-info span {
  color: #0074ff;
}
.admin-theme .price-list-price-desktop {
  margin-bottom: 60px !important;
}
@media (max-width: 767px) {
  .admin-theme .price-list-price-desktop {
    display: none !important;
  }
}
.admin-theme .price-list-price-mobile,
.admin-theme .price-list .propagation-mobile {
  display: none;
}
@media (max-width: 767px) {
  .admin-theme .price-list-price-mobile,
  .admin-theme .price-list .propagation-mobile {
    display: block;
  }
}
.admin-theme .price-list-price-mobile-intro h3,
.admin-theme .price-list .propagation-mobile-intro h3 {
  margin: 0 0 18px 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
}
.admin-theme .price-list-price-mobile-intro p,
.admin-theme .price-list .propagation-mobile-intro p {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 20px;
}
.admin-theme .price-list-price-mobile-intro p:last-child,
.admin-theme .price-list .propagation-mobile-intro p:last-child {
  margin-bottom: 0;
}
.admin-theme .price-list-price-mobile-intro h4,
.admin-theme .price-list .propagation-mobile-intro h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}
.admin-theme .price-list-price-mobile .price-with-vat,
.admin-theme .price-list .propagation-mobile .price-with-vat {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start !important;
  -webkit-justify-content: flex-start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
  padding-left: 24px;
  text-align: left !important;
}
.admin-theme .price-list-price-mobile .price-list-mobile-info,
.admin-theme .price-list .propagation-mobile .price-list-mobile-info {
  padding: 0 24px;
}
.admin-theme .price-list-price-mobile .adverts-title,
.admin-theme .price-list .propagation-mobile .adverts-title {
  max-width: calc(100% - 32px);
}
@media only screen and (max-width: 500px) {
  .admin-theme .price-list-price-mobile .price-day-range,
  .admin-theme .price-list .propagation-mobile .price-day-range {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.admin-theme .price-list-price-mobile .price-day-range__item,
.admin-theme .price-list .propagation-mobile .price-day-range__item {
  font-size: 16px;
}
.admin-theme .price-list-price-mobile .currency__btn,
.admin-theme .price-list .propagation-mobile .currency__btn {
  min-width: 130px;
  margin: 4px !important;
  border-radius: 4px !important;
}
.admin-theme .price-list-price-mobile .mobile-price-carousel,
.admin-theme .price-list-price-mobile .mobile-price-carousel-2,
.admin-theme .price-list .propagation-mobile .mobile-price-carousel,
.admin-theme .price-list .propagation-mobile .mobile-price-carousel-2 {
  max-width: 90%;
  margin: 0 auto;
}
.admin-theme .price-list-price-mobile .mobile-price-carousel .currency-czk,
.admin-theme .price-list-price-mobile .mobile-price-carousel .currency-credits,
.admin-theme .price-list-price-mobile .mobile-price-carousel-2 .currency-czk,
.admin-theme .price-list-price-mobile .mobile-price-carousel-2 .currency-credits,
.admin-theme .price-list .propagation-mobile .mobile-price-carousel .currency-czk,
.admin-theme .price-list .propagation-mobile .mobile-price-carousel .currency-credits,
.admin-theme .price-list .propagation-mobile .mobile-price-carousel-2 .currency-czk,
.admin-theme .price-list .propagation-mobile .mobile-price-carousel-2 .currency-credits {
  white-space: nowrap;
}
.admin-theme .price-list-price-mobile .mobile-price-carousel .image-wrapper-holder,
.admin-theme .price-list-price-mobile .mobile-price-carousel-2 .image-wrapper-holder,
.admin-theme .price-list .propagation-mobile .mobile-price-carousel .image-wrapper-holder,
.admin-theme .price-list .propagation-mobile .mobile-price-carousel-2 .image-wrapper-holder {
  max-width: none;
  margin-left: 20px;
}
.admin-theme .price-list-price-mobile .mobile-price-carousel .slick-slide,
.admin-theme .price-list-price-mobile .mobile-price-carousel-2 .slick-slide,
.admin-theme .price-list .propagation-mobile .mobile-price-carousel .slick-slide,
.admin-theme .price-list .propagation-mobile .mobile-price-carousel-2 .slick-slide {
  min-height: 245px;
}
.admin-theme .price-list-price-mobile .location-apply,
.admin-theme .price-list .propagation-mobile .location-apply {
  padding: 14px 0;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}
.admin-theme .price-list-price-mobile .location-apply:first-child,
.admin-theme .price-list .propagation-mobile .location-apply:first-child {
  padding-top: 25px;
}
.admin-theme .price-list-price-mobile .mobile-overlay,
.admin-theme .price-list .propagation-mobile .mobile-overlay {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 22px;
}
.admin-theme .price-list-price-mobile .mobile-overlay:after,
.admin-theme .price-list .propagation-mobile .mobile-overlay:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: -2rem;
  width: calc(100% + 4rem);
  height: 100%;
  opacity: 0.08;
  background: -webkit-linear-gradient(225.32deg, #ff8c00 2.37%, #0091ff 98.43%);
  background: linear-gradient(224.68deg, #ff8c00 2.37%, #0091ff 98.43%);
  mix-blend-mode: normal;
}
.admin-theme .price-list-price-mobile .mobile-overlay .advertising-tabs__container-mobile,
.admin-theme .price-list .propagation-mobile .mobile-overlay .advertising-tabs__container-mobile {
  position: relative;
  z-index: 3;
  padding-top: 20px;
}
.admin-theme .price-list-price-mobile .mobile-overlay #advertTabsMobile,
.admin-theme .price-list-price-mobile .mobile-overlay #promoTabsMobile,
.admin-theme .price-list .propagation-mobile .mobile-overlay #advertTabsMobile,
.admin-theme .price-list .propagation-mobile .mobile-overlay #promoTabsMobile {
  position: relative;
  z-index: 2;
  width: calc(100% + 4rem);
  margin-left: -2rem;
}
.admin-theme .price-list-price-mobile .mobile-overlay #advertTabsMobile li,
.admin-theme .price-list-price-mobile .mobile-overlay #promoTabsMobile li,
.admin-theme .price-list .propagation-mobile .mobile-overlay #advertTabsMobile li,
.admin-theme .price-list .propagation-mobile .mobile-overlay #promoTabsMobile li {
  width: 50%;
  border: none;
  background: transparent;
}
.admin-theme .price-list-price-mobile .mobile-overlay #advertTabsMobile li:first-child,
.admin-theme .price-list-price-mobile .mobile-overlay #promoTabsMobile li:first-child,
.admin-theme .price-list .propagation-mobile .mobile-overlay #advertTabsMobile li:first-child,
.admin-theme .price-list .propagation-mobile .mobile-overlay #promoTabsMobile li:first-child {
  border-radius: 0 20px 0 0;
}
.admin-theme .price-list-price-mobile .mobile-overlay #advertTabsMobile li.inactive,
.admin-theme .price-list-price-mobile .mobile-overlay #promoTabsMobile li.inactive,
.admin-theme .price-list .propagation-mobile .mobile-overlay #advertTabsMobile li.inactive,
.admin-theme .price-list .propagation-mobile .mobile-overlay #promoTabsMobile li.inactive {
  border-radius: 0 !important;
  background: #fff;
}
.admin-theme .price-list-price-mobile .mobile-overlay #advertTabsMobile li img,
.admin-theme .price-list-price-mobile .mobile-overlay #promoTabsMobile li img,
.admin-theme .price-list .propagation-mobile .mobile-overlay #advertTabsMobile li img,
.admin-theme .price-list .propagation-mobile .mobile-overlay #promoTabsMobile li img {
  max-width: 150px;
}
.admin-theme .price-list-choice {
  margin: 0 auto 75px;
  font-size: 44px;
  font-weight: 400;
  line-height: 55px;
  text-align: center;
}
@media (max-width: 1019px) {
  .admin-theme .price-list-choice {
    max-width: 90%;
    margin: 0 auto;
  }
}
.admin-theme .price-list-choice h3 {
  margin: 0 0 36px 0;
  font-size: 44px;
  font-weight: 400;
  line-height: 55px;
  text-align: center;
}
@media (max-width: 767px) {
  .admin-theme .price-list-choice h3 {
    font-size: 32px;
    line-height: 40px;
    text-align: left;
  }
}
.admin-theme .price-list .choice-carousel__item {
  width: 300px;
  padding: 8px 16px 24px;
  border: 1px solid #333;
  border-radius: 40px;
  background: #e9ebee;
  text-align: left;
}
.admin-theme .price-list .choice-carousel__item:nth-of-type(2) {
  border: 1px solid #ff8c00;
  background: #fff2e1;
}
.admin-theme .price-list .choice-carousel__item:nth-of-type(2) h4 {
  color: #ff8c00;
}
.admin-theme .price-list .choice-carousel__item:nth-of-type(2) li:before {
  background-image: url("./images/circle-check-orange.svg");
}
.admin-theme .price-list .choice-carousel__item:nth-of-type(3) {
  border: 1px solid #0074ff;
  background: #e6f4ff;
}
.admin-theme .price-list .choice-carousel__item:nth-of-type(3) h4 {
  color: #0074ff;
}
.admin-theme .price-list .choice-carousel__item:nth-of-type(3) li:before {
  background-image: url("./images/circle-check-blue.svg");
}
.admin-theme .price-list .choice-carousel__item h4 {
  margin: 0 0 34px 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
}
.admin-theme .price-list .choice-carousel__item ul {
  padding-left: 0;
}
.admin-theme .price-list .choice-carousel__item ul li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 0;
  padding-left: 32px;
  list-style-type: none;
  line-height: 22px;
}
.admin-theme .price-list .choice-carousel__item ul li:last-child {
  margin-bottom: 0;
}
.admin-theme .price-list .choice-carousel__item ul li a {
  line-height: 22px;
}
.admin-theme .price-list .choice-carousel__item ul li:before {
  content: "";
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  left: 0;
  min-width: 24px;
  height: 24px;
  margin-right: 20px;
  background-image: url("./images/circle-check-dark.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.admin-theme .price-list-packages {
  margin-bottom: 54px !important;
}
@media (max-width: 767px) {
  .admin-theme .price-list-packages {
    margin-top: 30px !important;
  }
}
@media (max-width: 767px) {
  .admin-theme .price-list-packages .main-header,
  .admin-theme .price-list-packages .add-credits-info,
  .admin-theme .price-list-packages .add-credits__list {
    display: none;
  }
}
@media (max-width: 767px) {
  .admin-theme .price-list-services-desktop {
    display: none;
  }
}
.admin-theme .price-list-services-mobile {
  display: none;
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .admin-theme .price-list-services-mobile {
    display: block;
  }
}
.admin-theme .price-list-services-mobile .slick-slide {
  margin: 0 8px !important;
  padding: 0 !important;
}
.admin-theme .price-list-services-mobile .slick-list {
  margin: 0 -8px !important;
  padding-top: 30px;
}
.admin-theme .price-list-services-mobile .another-services__item {
  padding: 12px 8px;
}
@media only screen and (max-width: 640px) {
  .admin-theme .price-list-services-mobile .another-services__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 270px;
  }
}
.admin-theme .price-list-services-mobile .another-services__item .title {
  min-height: 60px;
  font-size: 20px;
  line-height: 28px;
}
@media only screen and (max-width: 640px) {
  .admin-theme .price-list-services-mobile .another-services__item .title {
    line-height: 24px;
  }
}
.admin-theme .price-list-services-mobile .another-services__item .fa {
  font-size: 50px;
}
.admin-theme .price-list-services-mobile .label {
  width: 132px !important;
  padding-top: 6px !important;
  font-size: 12px;
}
@media (max-width: 767px) {
  .admin-theme .price-list-add-credits-desktop {
    display: none !important;
  }
}
.admin-theme .price-list-add-credits-mobile {
  display: none;
  max-width: 90%;
  margin: 0 auto;
  /* the slides */
  /* the parent */
}
.admin-theme .price-list-add-credits-mobile h2 {
  font-size: 32px !important;
  line-height: 40px;
  text-align: left;
}
.admin-theme .price-list-add-credits-mobile .add-credits-info {
  display: block;
}
@media (max-width: 767px) {
  .admin-theme .price-list-add-credits-mobile {
    display: block;
  }
}
.admin-theme .price-list-add-credits-mobile .slick-slide {
  margin: 0;
  padding: 0 !important;
}
.admin-theme .price-list-add-credits-mobile .slick-list {
  margin: 0;
}
.admin-theme .price-list-add-credits-mobile .rounded-item {
  margin-bottom: 0 !important;
  padding-top: 30px;
}
.admin-theme .price-list-add-credits-mobile .rounded-item__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 350px;
}
.admin-theme .price-list-add-credits-mobile .rounded-item__tag {
  position: absolute;
  top: 8px;
  height: 50px;
  padding-top: 4px;
  border-bottom-left-radius: 0;
}
.admin-theme .price-list-add-credits-mobile .rounded-item__tag img {
  display: none;
}
@media (max-width: 767px) {
  .admin-theme .propagation-desktop {
    display: none;
  }
}
.admin-theme .propagation-mobile {
  display: none;
}
.admin-theme .propagation-mobile .propagation-line,
.admin-theme .propagation-mobile .promotion-tabs__container-mobile {
  position: relative;
  z-index: 5;
  min-height: 270px;
}
.admin-theme .propagation-mobile .propagation-section {
  margin-bottom: 0 !important;
}
.admin-theme .propagation-mobile .currency-czk,
.admin-theme .propagation-mobile .currency-credits {
  white-space: nowrap;
}
.admin-theme .propagation-mobile .image-wrapper-holder {
  max-width: none;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .admin-theme .propagation-mobile {
    display: block;
  }
}
.admin-theme .propagation-mobile .promo-carousel-1,
.admin-theme .propagation-mobile .promo-carousel-2,
.admin-theme .propagation-mobile .promo-carousel-3,
.admin-theme .propagation-mobile .promo-carousel-4 {
  max-width: 90%;
  margin: 0 auto;
}
.admin-theme .choice-carousel .slick-prev,
.admin-theme .choice-carousel .slick-next,
.admin-theme .price-list-services-mobile .slick-prev,
.admin-theme .price-list-services-mobile .slick-next,
.admin-theme .price-list-add-credits-mobile .slick-prev,
.admin-theme .price-list-add-credits-mobile .slick-next,
.admin-theme .mobile-price-carousel .slick-prev,
.admin-theme .mobile-price-carousel .slick-next,
.admin-theme .mobile-price-carousel-2 .slick-prev,
.admin-theme .mobile-price-carousel-2 .slick-next,
.admin-theme .promo-carousel-1 .slick-prev,
.admin-theme .promo-carousel-1 .slick-next,
.admin-theme .promo-carousel-2 .slick-prev,
.admin-theme .promo-carousel-2 .slick-next,
.admin-theme .promo-carousel-3 .slick-prev,
.admin-theme .promo-carousel-3 .slick-next,
.admin-theme .promo-carousel-4 .slick-prev,
.admin-theme .promo-carousel-4 .slick-next {
  top: calc(50% - 20px);
  right: -40px;
  width: 40px;
  height: 40px;
}
.admin-theme .choice-carousel .slick-prev:before,
.admin-theme .choice-carousel .slick-next:before,
.admin-theme .price-list-services-mobile .slick-prev:before,
.admin-theme .price-list-services-mobile .slick-next:before,
.admin-theme .price-list-add-credits-mobile .slick-prev:before,
.admin-theme .price-list-add-credits-mobile .slick-next:before,
.admin-theme .mobile-price-carousel .slick-prev:before,
.admin-theme .mobile-price-carousel .slick-next:before,
.admin-theme .mobile-price-carousel-2 .slick-prev:before,
.admin-theme .mobile-price-carousel-2 .slick-next:before,
.admin-theme .promo-carousel-1 .slick-prev:before,
.admin-theme .promo-carousel-1 .slick-next:before,
.admin-theme .promo-carousel-2 .slick-prev:before,
.admin-theme .promo-carousel-2 .slick-next:before,
.admin-theme .promo-carousel-3 .slick-prev:before,
.admin-theme .promo-carousel-3 .slick-next:before,
.admin-theme .promo-carousel-4 .slick-prev:before,
.admin-theme .promo-carousel-4 .slick-next:before {
  width: 40px;
  height: 40px;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  background-image: url("./images/arrow_blue.svg");
}
.admin-theme .choice-carousel .slick-prev,
.admin-theme .price-list-services-mobile .slick-prev,
.admin-theme .price-list-add-credits-mobile .slick-prev,
.admin-theme .mobile-price-carousel .slick-prev,
.admin-theme .mobile-price-carousel-2 .slick-prev,
.admin-theme .promo-carousel-1 .slick-prev,
.admin-theme .promo-carousel-2 .slick-prev,
.admin-theme .promo-carousel-3 .slick-prev,
.admin-theme .promo-carousel-4 .slick-prev {
  left: -40px;
}
.admin-theme .choice-carousel .slick-prev:before,
.admin-theme .price-list-services-mobile .slick-prev:before,
.admin-theme .price-list-add-credits-mobile .slick-prev:before,
.admin-theme .mobile-price-carousel .slick-prev:before,
.admin-theme .mobile-price-carousel-2 .slick-prev:before,
.admin-theme .promo-carousel-1 .slick-prev:before,
.admin-theme .promo-carousel-2 .slick-prev:before,
.admin-theme .promo-carousel-3 .slick-prev:before,
.admin-theme .promo-carousel-4 .slick-prev:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.admin-theme .price-list-services-mobile .slick-prev,
.admin-theme .price-list-services-mobile .slick-next {
  top: 50%;
}
@media (max-width: 767px) {
  .admin-theme .sm-none {
    display: none;
  }
}
.admin-theme .modal-email {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 5px 0px rgb(176, 176, 176);
  box-shadow: 0px 0px 5px 0px rgb(176, 176, 176);
  color: #121419;
}
.admin-theme .modal-email__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 16px;
  background: #0091ff;
  color: #ffffff;
}
.admin-theme .modal-email__header p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 0;
  font-size: 24px;
  text-transform: uppercase;
}
.admin-theme .modal-email__header button {
  padding: 16px;
  border: none;
  outline: none;
  background: #056ebd;
  cursor: pointer;
}
.admin-theme .modal-email__intro {
  padding: 12px 16px;
  border-bottom: 1px solid #e2e2e2;
  background: #f3f3f3;
  text-align: center;
}
.admin-theme .modal-email__message {
  padding: 48px 16px;
  font-style: italic;
  text-align: center;
}
.admin-theme .modal-email__actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.admin-theme .modal-email__actions button {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 50%;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  padding: 16px;
  border: none;
  outline: none;
  background: #0091ff;
  color: #ffffff;
  cursor: pointer;
}
.admin-theme .modal-email__actions button:last-child {
  background: #056ebd;
}
.admin-theme .shutdown {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100vw;
  height: 100vh;
  background-image: url("./images/504-bg-mobile.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 576px) {
  .admin-theme .shutdown {
    background-image: url("./images/504-bg-desktop.jpg");
  }
}
.admin-theme .shutdown .custom-dialog-body {
  max-width: 90%;
  padding: 46px 30px 0;
  border-radius: 44px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
}
@media (min-width: 576px) {
  .admin-theme .shutdown .custom-dialog-body {
    padding: 46px 40px 0;
  }
}
@media (min-width: 768px) {
  .admin-theme .shutdown .custom-dialog-body {
    max-width: 750px;
    padding: 20px 80px 0;
    border-radius: 64px;
  }
}
.admin-theme .shutdown .custom-dialog-content {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .admin-theme .shutdown .custom-dialog-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: left;
  }
}
@media (min-width: 576px) {
  .admin-theme .shutdown__content {
    padding-bottom: 50px;
  }
}
.admin-theme .shutdown__picture {
  text-align: center;
}
@media (min-width: 576px) {
  .admin-theme .shutdown__picture img {
    max-width: 225px;
  }
}
@media (min-width: 768px) {
  .admin-theme .shutdown__picture img {
    max-width: none;
  }
}
.admin-theme .shutdown__title {
  margin-bottom: 20px;
  color: #454d57;
  font-size: 38px;
  line-height: 42px;
}
.admin-theme .shutdown__title span {
  display: block;
  color: #2894c8;
  font-size: 38px;
  font-weight: 500;
  line-height: 42px;
}
.admin-theme .shutdown__perex {
  width: 100%;
  max-width: 320px;
  margin-bottom: 20px;
  color: #333;
  line-height: 24px;
}
.admin-theme .shutdown__perex span {
  display: block;
  padding-top: 10px;
  line-height: 24px;
  line-height: 1;
}
.admin-theme .shutdown__reload-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 250px;
  height: 45px;
  border: none;
  border-radius: 50px;
  outline: none;
  background: #038cd9;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.admin-theme .shutdown__reload-btn span {
  font-size: 15px;
}
.admin-theme .shutdown__refresh-enable {
  cursor: pointer;
  pointer-events: all;
}
.admin-theme .shutdown__refresh-enable:hover, .admin-theme .shutdown__refresh-enable:focus {
  background: #00a8ff;
}
.admin-theme .shutdown__timer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 24px;
  margin-left: 8px;
  padding: 0 4px;
  border-radius: 4px;
  background: #ffffff;
  color: #0074ff;
  line-height: 1;
  gap: 2px;
}
.admin-theme .shutdown__timer:after {
  content: "s";
  display: inline-block;
  text-transform: lowercase;
}
.admin-theme .shutdown__time {
  display: inline-block;
  min-width: 15px;
  text-align: right;
}
.admin-theme .shutdown__reload-icon {
  display: none;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  -webkit-transition: ease-in-out 0.1s;
  transition: ease-in-out 0.1s;
  background-image: url("./images/reload.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.admin-theme .no-scroll {
  overflow: hidden !important;
}
.admin-theme .master-page__holder {
  margin-top: 180px;
  color: #333;
}
@media (max-width: 1019px) {
  .admin-theme .master-page {
    padding: 0;
  }
}
.admin-theme .master-page p {
  font-size: 16px;
  line-height: 24px;
}
.admin-theme .master-page a {
  font-size: 16px;
  line-height: 24px;
  text-decoration: underline;
}
.admin-theme .master-page a:hover, .admin-theme .master-page a:focus {
  color: #0074ff;
  text-decoration: none;
}
.admin-theme .master-page ul:not(.ms-drop ul) {
  padding-left: 8px;
}
.admin-theme .master-page ul:not(.ms-drop ul) li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 20px;
  list-style-type: none;
  font-size: 16px;
  line-height: 24px;
}
.admin-theme .master-page ul:not(.ms-drop ul) li:last-child {
  margin-bottom: 0;
}
.admin-theme .master-page ul:not(.ms-drop ul) li:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #038cd9;
}
.admin-theme .master-page ol {
  margin-left: 20px;
  padding-left: 0;
}
.admin-theme .master-page ol li {
  position: relative;
  min-height: 30px;
  margin-bottom: 12px;
  padding-left: 4px;
  font-size: 16px;
  line-height: 24px;
}
.admin-theme .master-page .download-btn {
  display: inline-block;
  margin: 24px 0;
  padding: 14px 24px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  border-radius: 5px;
  background-color: #0074ff;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
}
.admin-theme .master-page .download-btn:hover, .admin-theme .master-page .download-btn:focus {
  outline: none;
  background-color: #00a8ff;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #ffffff;
}
.admin-theme .image-with-text {
  margin-bottom: 32px;
}
.admin-theme .image-with-text img {
  float: left;
  margin: 0 24px 16px 0;
}
.admin-theme .image-with-text p {
  font-size: 16px;
  line-height: 24px;
}
.admin-theme .image-with-text--right img {
  float: right;
  margin: 0 0 16px 24px;
}
.admin-theme .image-with-text--centered img {
  display: block;
  float: none;
  margin: 16px auto;
}
.admin-theme .ai_content {
  color: #333;
  margin-bottom: 32px;
  background: #f8f8f8;
  padding: 24px 16px;
  border-radius: 5px;
  font-family: "Rubik", sans-serif;
}
.admin-theme .ai_content__headline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
@media (min-width: 576px) {
  .admin-theme .ai_content__headline {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 24px;
  }
}
.admin-theme .ai_content__headline p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 22px;
}
@media (min-width: 576px) {
  .admin-theme .ai_content__headline p {
    margin-bottom: -6px;
  }
}
.admin-theme .ai_content__headline p .tippy-admin-help {
  margin-bottom: -2px;
}
.admin-theme .ai_content__headline-star {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
}
.admin-theme .ai_content__headline-star img {
  max-width: 25px;
}
.admin-theme .ai_content__headline-star span {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  margin-bottom: -5px;
}
@media (min-width: 576px) {
  .admin-theme .ai_content__headline-star span {
    font-size: 24px;
  }
}
.admin-theme .ai_content .textarea-container {
  position: relative;
  margin-top: 20px;
}
.admin-theme .ai_content .textarea-container textarea {
  width: 100%;
  font-size: 16px;
  padding: 12px;
  resize: none;
  min-height: 50px;
  max-height: 300px;
  border: 2px solid #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: hidden;
  line-height: 1.4;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  border-radius: 5px;
  font-family: "Rubik", sans-serif;
}
.admin-theme .ai_content .textarea-container textarea:focus {
  -webkit-box-shadow: 0 0 5px #0273bf;
          box-shadow: 0 0 5px #0273bf;
  border: 2px solid transparent;
  outline: none;
}
.admin-theme .ai_content .textarea-container .floating-label {
  position: absolute;
  left: 12px;
  top: 14px;
  color: #666;
  font-size: 16px;
  pointer-events: none;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
  background-color: #fff;
  z-index: 1;
}
.admin-theme .ai_content .textarea-container textarea:not(:-moz-placeholder-shown) + .floating-label {
  top: -8px;
  font-size: 12px;
  padding: 0 4px;
  color: #0273bf;
}
.admin-theme .ai_content .textarea-container textarea:not(:-ms-input-placeholder) + .floating-label {
  top: -8px;
  font-size: 12px;
  padding: 0 4px;
  color: #0273bf;
}
.admin-theme .ai_content .textarea-container textarea:focus + .floating-label,
.admin-theme .ai_content .textarea-container textarea:not(:placeholder-shown) + .floating-label {
  top: -8px;
  font-size: 12px;
  padding: 0 4px;
  color: #0273bf;
}
.admin-theme .ai_content .button-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
  gap: 10px;
}
.admin-theme .ai_content .left-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.admin-theme .ai_content button {
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
}
.admin-theme .ai_content .icon-button {
  font-size: 18px;
}
.admin-theme .ai_content .btn {
  font-size: 16px;
}
.admin-theme .ai_content .btn span {
  display: none;
  font-size: 16px;
}
@media (min-width: 576px) {
  .admin-theme .ai_content .btn span {
    display: inline;
  }
}
.admin-theme .ai_content .microphone {
  width: 16px;
}
.admin-theme .ai_content .btn--primary {
  height: 40px;
}
.admin-theme .rotating-image {
  width: 200px;
  height: auto;
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-animation: rotateY 3s infinite;
          animation: rotateY 3s infinite;
}
@-webkit-keyframes rotateY {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  50% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
@keyframes rotateY {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  50% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
.admin-theme #micBtn {
  position: relative;
}
.admin-theme #micBtn::after {
  content: attr(data-label);
  position: absolute;
  left: 110%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  white-space: nowrap;
  font-size: 14px;
  color: #0273bf;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
}
.admin-theme #micBtn:focus {
  outline: none;
}
.admin-theme #micBtn .microphone {
  width: 20px;
  height: 20px;
}
.admin-theme #micBtn.recording::after {
  opacity: 1;
}
.admin-theme #micBtn.recording img {
  -webkit-animation: pulse 1.2s infinite;
          animation: pulse 1.2s infinite;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.admin-theme ul.portals-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2rem;
  padding: 0;
}
.admin-theme ul.portals-list li {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 32%;
      -ms-flex: 1 0 32%;
          flex: 1 0 32%;
  max-width: 32%;
  margin-bottom: 2%;
  padding: 30px 35px;
  list-style-type: none;
  border-radius: 20px;
  background: #f8f8f8;
  text-align: center;
}
@media (max-width: 575px) {
  .admin-theme ul.portals-list li {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    max-width: 100%;
  }
}
.admin-theme ul.portals-list li div {
  min-height: 65px;
  margin-bottom: 16px;
}
.admin-theme ul.portals-list li img {
  width: auto;
  max-width: 100%;
  height: 65px;
}
.admin-theme ul.portals-list li span {
  color: #333;
  font-weight: 500;
  line-height: 23px;
}
.admin-theme ul.portals-list li p {
  display: block;
  margin: 8px 0 0 0;
  font-size: 14px;
}
.admin-theme ul.portals-list li p span {
  color: #2ea5d1;
  font-size: 14px;
  text-transform: uppercase;
}
.admin-theme .stepper {
  padding: 2rem 0;
  background: #f8f8f8;
}
.admin-theme .stepper__holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0.5rem;
}
.admin-theme .stepper__step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 33%;
      -ms-flex: 1 0 33%;
          flex: 1 0 33%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.admin-theme .stepper__step::after {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  right: -10px;
  width: 20px;
  height: 20px;
  background-image: url(images/stepper-next-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .admin-theme .stepper__step::after {
    top: calc(50% - 5px);
    right: -5px;
    width: 10px;
    height: 10px;
  }
}
.admin-theme .stepper__step img {
  width: 100%;
  max-width: 20px;
}
@media (max-width: 767px) {
  .admin-theme .stepper__step img {
    max-width: 14px;
  }
}
.admin-theme .stepper__step span {
  margin-left: 16px;
  opacity: 0.3;
  color: #333333;
}
@media (max-width: 767px) {
  .admin-theme .stepper__step span {
    margin-left: 8px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .admin-theme .stepper__step span {
    margin-left: 4px;
    font-size: 12px;
  }
}
.admin-theme .stepper__step:last-child::after {
  content: none;
}
.admin-theme .stepper__step--active span {
  opacity: 1;
  font-weight: 500;
}
.admin-theme .stepper--fixed__up {
  position: fixed;
  z-index: 95;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: 200ms all ease-in-out;
  transition: 200ms all ease-in-out;
  -webkit-box-shadow: 0 0px 20px rgba(57, 63, 72, 0.3);
  box-shadow: 0 0px 20px rgba(57, 63, 72, 0.3);
}
.admin-theme .stepper--fixed__down {
  position: fixed;
  z-index: 95;
  top: 120px;
  left: 0;
  width: 100%;
  -webkit-transition: 200ms all ease-in-out;
  transition: 200ms all ease-in-out;
  -webkit-box-shadow: 0 0px 20px rgba(57, 63, 72, 0.3);
  box-shadow: 0 0px 20px rgba(57, 63, 72, 0.3);
}
@media (max-width: 1019px) {
  .admin-theme .stepper--fixed__down {
    top: 60px;
  }
}
.admin-theme .grayscale {
  opacity: 0.3;
}
.admin-theme .portals {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 8rem;
}
.admin-theme .portals__title {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 65%;
      -ms-flex: 1 0 65%;
          flex: 1 0 65%;
}
@media (max-width: 767px) {
  .admin-theme .portals__title {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    text-align: center;
  }
}
.admin-theme .portals__credits {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 35%;
      -ms-flex: 1 0 35%;
          flex: 1 0 35%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 767px) {
  .admin-theme .portals__credits {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20px 0;
  }
}
.admin-theme .portals__credits .btn {
  width: 180px;
  height: 50px;
  font-size: 16px;
  text-align: center;
}
.admin-theme .portals__credits .btn span {
  padding-left: 8px;
  font-size: 16px;
}
.admin-theme .portals__info {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 100%;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  margin-top: 2rem;
}
.admin-theme .portals__list {
  width: 100%;
}
.admin-theme .portals__opener, .admin-theme .portals__closer {
  text-align: center;
}
.admin-theme .portals__opener__text, .admin-theme .portals__closer__text {
  margin-bottom: 1rem;
  color: #0074ff;
  text-align: center;
  cursor: pointer;
}
.admin-theme .portals__opener__text span, .admin-theme .portals__closer__text span {
  color: #0074ff;
}
.admin-theme .portals__opener__arrow, .admin-theme .portals__closer__arrow {
  width: 24px;
  -webkit-transform: rotate(90deg) scaleY(2);
          transform: rotate(90deg) scaleY(2);
  -webkit-transition: ease-in-out 0.4s;
  transition: ease-in-out 0.4s;
  cursor: pointer;
}
.admin-theme .portals__closer {
  display: none;
}
.admin-theme .portals__closer .portals__opener__arrow {
  -webkit-transform: rotate(-90deg) scaleY(2);
          transform: rotate(-90deg) scaleY(2);
}
.admin-theme .portals__list--echo {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 100%;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}
.admin-theme .portals__list--echo__btn {
  color: #0074ff;
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
}
.admin-theme .portals__list--echo__btn:hover {
  text-decoration: none;
}
.admin-theme .portals__list--echo__holder {
  display: none;
}
.admin-theme .portals__list--echo__holder .portals__list {
  height: auto;
  margin-top: 0;
}
.admin-theme .advert-type {
  margin-bottom: 80px;
}
.admin-theme .advert-type .required-field {
  padding: 16px 0;
}
.admin-theme .advert-type .align-items-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.admin-theme .advert-type .rounded-item__label {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 767px) {
  .admin-theme .advert-type .rounded-item__label {
    min-height: auto;
  }
}
.admin-theme .advert-type .rounded-item__title {
  margin-bottom: 0;
}
.admin-theme .advertising-title {
  margin-bottom: 40px;
  padding-top: 20px;
  color: #000;
  font-weight: 500;
}
.admin-theme .advertising__caption {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .admin-theme .advertising__caption {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.admin-theme .advertising__caption .main-title {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 60%;
      -ms-flex: 1 0 60%;
          flex: 1 0 60%;
}
@media (max-width: 767px) {
  .admin-theme .advertising__caption .main-title {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}
.admin-theme .advertising__caption .advertising__info__right {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 40%;
      -ms-flex: 1 0 40%;
          flex: 1 0 40%;
}
@media (max-width: 767px) {
  .admin-theme .advertising__caption .advertising__info__right {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}
.admin-theme .advertising__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 2rem;
}
.admin-theme .advertising__info__left {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 25%;
      -ms-flex: 1 0 25%;
          flex: 1 0 25%;
}
.admin-theme .advertising__info__right {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 75%;
      -ms-flex: 1 0 75%;
          flex: 1 0 75%;
}
.admin-theme .advertising__info__show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 50px;
  margin: 0;
  margin-bottom: 24px;
  color: #0074ff;
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
}
.admin-theme .advertising__info__show:hover {
  text-decoration: none;
}
.admin-theme .advertising__info__bottom {
  display: none;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 100%;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}
@media (max-width: 767px) {
  .admin-theme .advertising__info__bottom .main-perex {
    margin-bottom: 20px;
  }
}
.admin-theme .advertising__holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: -15px;
  margin-left: -15px;
  padding-right: 15px;
  padding-left: 15px;
}
@media (max-width: 1019px) {
  .admin-theme .advertising__holder {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.admin-theme .advertising__row {
  position: relative;
  width: 100%;
  max-width: 260px;
  padding: 0 6px;
}
.admin-theme .advertising__row:nth-of-type(1) {
  width: auto;
}
@media (max-width: 1019px) {
  .admin-theme .advertising__row:nth-of-type(1) {
    width: 100%;
  }
}
@media (max-width: 1019px) {
  .admin-theme .advertising__row {
    max-width: 50%;
    margin-bottom: 1rem;
  }
}
@media (max-width: 575px) {
  .admin-theme .advertising__row {
    max-width: 100%;
    padding: 0;
  }
  .admin-theme .advertising__row:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 1019px) {
  .admin-theme .advertising__row:last-child {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .admin-theme .advertising__row:last-child {
    max-width: 100%;
  }
}
.admin-theme .advertising__row:last-child .separator-line {
  min-height: 200px;
}
@media (max-width: 575px) {
  .admin-theme .advertising__row:last-child .separator-line {
    min-height: auto;
  }
}
.admin-theme .advertising .preview {
  position: absolute;
  z-index: 2;
  top: 40px;
  left: 0;
  border: 1px solid #9e9e9e;
  background: #f2f2f2;
}
@media (max-width: 767px) {
  .admin-theme .advertising .preview {
    width: 23px;
    height: 23px;
  }
}
.admin-theme .advertising .preview .fa {
  color: #9e9e9e;
  font-size: 8px;
}
@media (max-width: 767px) {
  .admin-theme .advertising .preview .fa {
    font-size: 12px;
  }
}
.admin-theme .advertising .preview--one {
  top: 95px;
}
@media (max-width: 1019px) {
  .admin-theme .advertising .preview--one {
    top: 75px;
  }
}
.admin-theme .advertising .rounded-item__label--custom {
  min-height: auto;
}
.admin-theme .advertising .rounded-item__title {
  min-height: 50px;
}
.admin-theme .advertising .logo-group--smaller {
  min-height: 130px;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .admin-theme .advertising .logo-group--smaller {
    min-height: auto;
  }
}
.admin-theme .advertising .logo-group--smaller img {
  max-width: 40px;
  margin-right: 8px;
  margin-bottom: 12px;
}
.admin-theme .advertising .progress-bar {
  min-height: 45px;
  margin-bottom: 0;
}
.admin-theme .advertising .rounded-item__tag {
  left: 7px;
}
.admin-theme .advertising .garance {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
.admin-theme .advertising--raise {
  margin-bottom: 24px;
}
.admin-theme .advertising--raise .tippy-outside {
  top: 38px;
  right: 4px;
}
.admin-theme .advertising--raise .tippy-outside--one {
  top: 92px;
}
@media (max-width: 1019px) {
  .admin-theme .advertising--raise .tippy-outside--one {
    top: 72px;
  }
}
.admin-theme .advertising--raise .preview--one {
  top: 92px;
  left: 2px;
}
@media (max-width: 1019px) {
  .admin-theme .advertising--raise .preview--one {
    top: 72px;
  }
}
.admin-theme .offer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 650px;
  margin: 30px auto;
  color: #333333;
}
@media (max-width: 575px) {
  .admin-theme .offer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.admin-theme .offer__picture img {
  max-width: 200px;
}
.admin-theme .offer__name {
  display: block;
  margin-top: 16px;
  text-align: center;
}
.admin-theme .offer__content {
  padding: 0 0 20px 40px;
}
@media (max-width: 575px) {
  .admin-theme .offer__content {
    padding: 0 0 20px 0;
    text-align: center;
  }
}
.admin-theme .offer__content h4 {
  margin-bottom: 32px;
  font-size: 28px;
  line-height: 36px;
}
.admin-theme .offer__content p {
  margin-bottom: 16px;
}
.admin-theme .offer__trigger-modal {
  color: #2ea5d1 !important;
}
.admin-theme .offer__trigger-modal:hover {
  text-decoration: underline !important;
  cursor: pointer;
}
.admin-theme .missing-credits {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 1019px) {
  .admin-theme .missing-credits {
    height: auto;
  }
}
.admin-theme .missing-credits__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.admin-theme .missing-credits__btns a {
  color: white;
}
.admin-theme .missing-credits p {
  margin: 0;
  color: #333333;
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}
@media (max-width: 767px) {
  .admin-theme .missing-credits p {
    font-size: 20px;
    line-height: 26px;
  }
}
.admin-theme .missing-credits span {
  margin-top: 16px;
  font-size: 16px;
}
.admin-theme .add-credits__holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0;
}
@media (max-width: 1019px) {
  .admin-theme .add-credits__holder {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.admin-theme .add-credits__item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 -16px;
  padding: 16px;
  border: 5px solid transparent;
}
.admin-theme .add-credits__item--thin {
  max-width: 195px;
}
@media (max-width: 1019px) {
  .admin-theme .add-credits__item--thin {
    max-width: none;
  }
}
.admin-theme .add-credits__item--thin .pricing-btn {
  padding-right: 3rem;
  padding-left: 3rem;
}
@media (max-width: 1019px) {
  .admin-theme .add-credits__item--thin .pricing-btn {
    padding-right: 5rem;
    padding-left: 5rem;
  }
}
@media (max-width: 1019px) {
  .admin-theme .add-credits__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 50%;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
  }
}
@media (max-width: 767px) {
  .admin-theme .add-credits__item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}
@media (max-width: 767px) {
  .admin-theme .add-credits .desktop-bubles {
    display: none !important;
  }
}
.admin-theme .add-credits .mobile-bubles {
  display: none;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .admin-theme .add-credits .mobile-bubles {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.admin-theme .add-credits__list {
  margin: 0 0 36px 0;
}
.admin-theme .add-credits__list li {
  margin-bottom: 16px;
  color: #333333;
}
.admin-theme .add-credits__list li:last-child {
  margin-bottom: 0;
}
.admin-theme .add-credits__list li span {
  color: #333333;
  font-weight: 500;
}
.admin-theme .add-credits .bubble {
  position: relative;
  width: 134px;
  height: 82px;
  border-radius: 58px;
  background-color: #0091ff;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-size: 14px;
}
.admin-theme .add-credits .bubble:after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 35px;
  width: 0;
  height: 0;
  border-width: 33px 50px 0 0;
  border-style: solid;
  border-color: #0091ff transparent transparent transparent;
}
.admin-theme .add-credits .bubble span {
  position: relative;
  z-index: 1;
}
.admin-theme .add-credits .bubble .tippy-admin-help {
  position: absolute;
  top: 0;
  right: -1.5rem;
}
@media (max-width: 767px) {
  .admin-theme .add-credits .rounded-item {
    margin-bottom: 2rem;
  }
}
.admin-theme .add-credits .rounded-item__body {
  min-height: 70px;
}
@media (max-width: 1019px) {
  .admin-theme .add-credits .rounded-item__body {
    min-height: auto;
  }
}
.admin-theme .add-credits .rounded-item__body--small {
  min-height: auto;
}
.admin-theme .add-credits .rounded-item__body--small span {
  color: #898989;
}
.admin-theme .add-credits .rounded-item__normal-text {
  margin-bottom: -2px;
  font-size: 24px;
}
.admin-theme .add-credits .rounded-item__body p {
  font-size: 16px;
}
.admin-theme .add-credits .rounded-item__tag {
  background: #ff8c00;
  color: #ffffff;
}
.admin-theme .add-credits .rounded-item__tag--gray {
  background: #ededed;
  color: #6d7278;
}
.admin-theme .add-credits .rounded-item__tag img {
  margin-top: -4px;
}
.admin-theme .add-credits__custom__info {
  margin-top: 16px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .admin-theme .add-credits__custom__info {
    text-align: center;
  }
}
.admin-theme .add-credits--raise .tippy-outside--one {
  top: 40px;
}
.admin-theme .add-credits--raise .tippy-outside--two {
  top: 40px;
}
.admin-theme .order-summary {
  margin-bottom: 4rem;
}
.admin-theme .order-summary__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2rem;
}
.admin-theme .order-summary__row .primary-text__big {
  margin-bottom: 0;
  line-height: 1 !important;
}
.admin-theme .order-summary__row .primary-text__big span {
  line-height: 1 !important;
}
.admin-theme .order-summary__row .primary-text__small {
  margin-bottom: 0 !important;
}
.admin-theme .order-summary .result p {
  margin-bottom: 1rem;
}
.admin-theme .order-summary .result .primary-text__small {
  line-height: 1;
}
.admin-theme .order-summary .result__sale {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.admin-theme .order-summary .result__sale p {
  margin-bottom: 0;
  line-height: 1;
}
.admin-theme .order-summary .result__sale p:last-child {
  margin-left: 8px;
}
.admin-theme .order-summary .result__value {
  line-height: 1;
  text-decoration: line-through;
}
.admin-theme .order-summary__tip {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 65%;
      -ms-flex: 1 0 65%;
          flex: 1 0 65%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 767px) {
  .admin-theme .order-summary__tip {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.admin-theme .order-summary__tip img {
  margin-right: 2rem;
}
.admin-theme .order-summary__tip p,
.admin-theme .order-summary__tip span {
  margin: 0;
  color: #333333;
}
.admin-theme .order-summary__sum {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 35%;
      -ms-flex: 1 0 35%;
          flex: 1 0 35%;
  text-align: right;
}
@media (max-width: 767px) {
  .admin-theme .order-summary__sum {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 4rem;
  }
}
.admin-theme .order-summary__sum .primary-text {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0 !important;
}
.admin-theme .order-summary__sum .primary-text span {
  display: inline-block;
  margin-left: 2rem;
}
.admin-theme .order-summary__sum .add-text {
  font-size: 24px;
  line-height: 34px;
}
.admin-theme .order-summary .primary-text {
  margin-right: 24px;
  font-size: 24px;
  line-height: 1;
}
@media (max-width: 575px) {
  .admin-theme .order-summary .primary-text {
    margin-right: 8px;
  }
}
.admin-theme .order-summary .primary-text__title {
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
}
.admin-theme .order-summary .primary-text__big {
  font-size: 24px;
}
@media (max-width: 575px) {
  .admin-theme .order-summary .primary-text__big {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 575px) {
  .admin-theme .order-summary .primary-text__big span {
    font-size: 16px;
    line-height: 24px;
  }
}
.admin-theme .order-summary .primary-text__small {
  margin-bottom: 0;
  color: #898989;
}
@media (max-width: 575px) {
  .admin-theme .order-summary .primary-text__small {
    font-size: 12px;
  }
}
.admin-theme .order-summary .light-text {
  line-height: 1;
}
@media (max-width: 575px) {
  .admin-theme .order-summary .light-text {
    font-size: 16px;
    line-height: 20px;
    line-height: 1;
  }
}
.admin-theme .order-summary__row--total {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #cccccc;
}
.admin-theme .order-summary__row--total .primary-text {
  padding-right: 0 !important;
}
@media (max-width: 767px) {
  .admin-theme .order-summary__row--total .primary-text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .admin-theme .order-summary__row--total .primary-text {
    font-size: 20px;
    font-weight: 500;
  }
  .admin-theme .order-summary__row--total .primary-text span {
    font-size: 20px;
    font-weight: 500;
  }
}
.admin-theme .pay-method {
  margin-bottom: 10rem;
}
.admin-theme .pay-method .primary-text {
  line-height: 1;
}
@media (max-width: 575px) {
  .admin-theme .pay-method .primary-text {
    font-size: 20px;
  }
}
.admin-theme .pay-method .light-text {
  font-size: 16px;
  line-height: 23px;
}
@media (max-width: 575px) {
  .admin-theme .pay-method .light-text {
    font-size: 14px;
    line-height: 20px;
  }
}
.admin-theme .pay-method .light-text span {
  font-size: 16px;
  line-height: 23px;
}
@media (max-width: 575px) {
  .admin-theme .pay-method .light-text span {
    font-size: 14px;
    line-height: 20px;
  }
}
.admin-theme .pay-method__title {
  padding: 0 0 16px 16px;
  color: #333333;
  font-weight: 20px;
}
.admin-theme .pay-method__row {
  margin-bottom: 1rem;
}
.admin-theme .pay-method__row .primary-text {
  font-size: 22px;
}
.admin-theme .pay-method__row:last-child {
  margin-bottom: 0;
}
.admin-theme .pay-method .light-text span {
  display: block;
}
@media (max-width: 575px) {
  .admin-theme .pay-method .light-text span {
    display: inline;
  }
}
.admin-theme .pay-method .checkbox__label {
  margin: 0;
  padding: 24px 32px 24px 76px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}
@media (max-width: 575px) {
  .admin-theme .pay-method .checkbox__label {
    padding: 24px 32px 24px 48px;
  }
}
.admin-theme .pay-method .checkbox__label:hover {
  border: 1px solid #0091ff;
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.admin-theme .pay-method .checkbox__input:checked ~ .checkbox__label {
  border: 1px solid #0091ff;
  -webkit-box-shadow: inset 0 0 0 2px #0091ff;
  box-shadow: inset 0 0 0 2px #0091ff;
}
.admin-theme .pay-method .checkbox__label--check {
  top: 0;
  bottom: 0;
  left: 24px;
  width: 23px;
  height: 23px;
  margin: auto;
}
@media (max-width: 575px) {
  .admin-theme .pay-method .checkbox__label--check {
    left: 12px;
  }
}
.admin-theme .pay-method .checkbox__input:checked ~ .checkbox__label > .checkbox__label--check {
  -webkit-animation: check-move 1s;
          animation: check-move 1s;
  border: 1px solid #0091ff;
  background-color: #0091ff;
}
.admin-theme .pay-method .step2-submit-holder {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.admin-theme .pay-method .step2-submit-holder .step2-submit-tooltip {
  display: none;
  position: relative;
  margin-bottom: 15px;
  padding: 1rem 3rem 1rem 2rem;
  border-radius: 2rem;
  outline: 0;
  background-color: #0091ff;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 2, 2, 0.25);
  box-shadow: 0 0 4px 0 rgba(0, 2, 2, 0.25);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}
.admin-theme .pay-method .step2-submit-holder .step2-submit-tooltip:after {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - 10px);
  width: 0;
  height: 0;
  border-top: 10px solid #0091ff;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
.admin-theme .pay-method .step2-submit-holder .step2-submit-tooltip-hide {
  position: absolute;
  top: calc(50% - 14px);
  right: 12px;
  font-size: 20px;
  cursor: pointer;
}
.admin-theme .tooltip--box__image {
  width: 100%;
  max-width: 400px;
  height: auto;
}
.admin-theme .tooltip--box__caption {
  padding-top: 8px;
  text-align: center;
}
.admin-theme .full-page-preloader {
  display: none;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
}
.admin-theme .full-page-preloader--active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 999999;
  overflow: hidden;
}
.admin-theme .full-page-preloader .preloader {
  -webkit-animation: rotate 1.5s linear infinite;
          animation: rotate 1.5s linear infinite;
}
@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.admin-theme .custom-dialog {
  display: none;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.admin-theme .custom-dialog-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .admin-theme .custom-dialog-holder {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.admin-theme .custom-dialog-close {
  position: absolute;
  top: 10px;
  right: 14px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  color: #0074ff;
  font-size: 26px;
  cursor: pointer;
}
.admin-theme .custom-dialog-close:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.admin-theme .custom-dialog-body {
  position: relative;
  width: 100%;
  max-width: 950px;
  padding: 50px;
  border-radius: 8px;
  background: #f7f7f7;
  -webkit-box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1019px) {
  .admin-theme .custom-dialog-body {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .admin-theme .custom-dialog-body {
    padding: 16px;
  }
}
.admin-theme .custom-dialog-title {
  margin-bottom: 30px;
  color: #333333;
  font-size: 28px;
  font-weight: 400;
  line-height: 38px;
  text-align: left;
}
.admin-theme .custom-dialog-content {
  margin-bottom: 30px;
  color: #333333;
  font-size: 18px;
  line-height: 28px;
}
.admin-theme .custom-dialog-content a {
  color: #0074ff;
  font-size: 18px;
  line-height: 28px;
  text-decoration: underline;
}
.admin-theme .custom-dialog-content a:hover, .admin-theme .custom-dialog-content a:focus {
  color: #0074ff;
  text-decoration: none;
  cursor: pointer;
}
.admin-theme .custom-dialog-actions .btn {
  display: inline-block;
  width: 100%;
  padding: 12px 15px;
  border-radius: 5px;
  background: #898989;
  color: #ffffff;
  line-height: normal;
  text-align: center;
}
.admin-theme .custom-dialog-actions .btn:hover, .admin-theme .custom-dialog-actions .btn:focus {
  background: #5d5d5d;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 1019px) {
  .admin-theme .custom-dialog-actions .btn {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .admin-theme .custom-dialog-actions .btn {
    margin-bottom: 20px;
  }
}
.admin-theme .custom-dialog-actions .btn--blue {
  background: #0091ff;
}
.admin-theme .custom-dialog-actions .btn--blue:hover, .admin-theme .custom-dialog-actions .btn--blue:focus {
  background-color: #0074cc;
}
.admin-theme .custom-dialog-help {
  margin-bottom: -30px !important;
  padding-top: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .admin-theme .custom-dialog-help {
    padding-top: 20px;
  }
}
.admin-theme .custom-dialog-help p {
  margin-bottom: 4px;
  padding-top: 0 !important;
}
.admin-theme .custom-dialog--long .custom-dialog-body {
  height: 90vh;
  overflow: hidden;
}
.admin-theme .custom-dialog--long .custom-dialog-content {
  height: calc(100% - 77px);
  padding: 0 8px;
  overflow-y: auto;
}
.admin-theme .custom-dialog--long .custom-dialog-actions {
  padding: 0 8px;
  text-align: center;
}
.admin-theme .custom-dialog--long .custom-dialog-actions .btn {
  max-width: 340px;
}
.admin-theme #data-box-dialog-close-btn {
  display: none;
}
.admin-theme #advert-isnt-ready-dialog .custom-dialog-actions {
  text-align: center;
}
.admin-theme #advert-isnt-ready-dialog .custom-dialog-actions .btn {
  max-width: 280px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .admin-theme #advert-isnt-ready-dialog .custom-dialog-actions .btn {
    max-width: 100%;
  }
}
.admin-theme #missing-credits-dialog .custom-dialog-body {
  max-width: 700px;
}
.admin-theme #missing-credits-dialog .custom-dialog-actions .col-md-6:last-child .btn {
  margin-bottom: 0 !important;
}
.admin-theme #data-box-dialog .custom-dialog-body {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
}
@media (max-width: 1019px) {
  .admin-theme #data-box-dialog .custom-dialog-body {
    padding: 50px 25px;
  }
}
@media (max-width: 767px) {
  .admin-theme #data-box-dialog .custom-dialog-body {
    padding: 50px 16px;
  }
}
.admin-theme #data-box-dialog .body-pulse {
  -webkit-animation: enlargement 0.5s normal forwards ease-in-out;
          animation: enlargement 0.5s normal forwards ease-in-out;
}
.admin-theme #data-box-dialog .custom-dialog-part-two {
  display: block;
}
.admin-theme #data-box-dialog .custom-dialog-part-two {
  display: none;
}
.admin-theme #data-box-dialog .custom-dialog-actions .btn {
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .admin-theme #data-box-dialog .custom-dialog-actions .btn {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .admin-theme #data-box-dialog .custom-dialog-actions > div {
    margin-bottom: 20px;
  }
  .admin-theme #data-box-dialog .custom-dialog-actions > div:last-child {
    margin-bottom: 0;
  }
  .admin-theme #data-box-dialog .custom-dialog-actions .small-gray-text {
    padding-top: 4px !important;
  }
}
.admin-theme #data-box-dialog .custom-dialog-actions .small-gray-text {
  padding-top: 10px;
  color: #333;
  font-size: 15px;
  font-style: normal;
  line-height: normal;
  text-align: center;
}
@keyframes enlargement {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.admin-theme #step2form .main-title {
  font-size: 36px;
}
@media (max-width: 575px) {
  .admin-theme #step2form .main-title {
    font-size: 32px;
  }
}
.admin-theme #step2form .main-title--pricing {
  font-size: 48px;
}
@media (max-width: 575px) {
  .admin-theme #step2form .main-title--pricing {
    font-size: 32px;
  }
}
.admin-theme .insufficient-credits {
  display: none;
  position: absolute;
  bottom: 110%;
  left: calc(50% - 65px);
  width: 100%;
  max-width: 160px;
  padding: 4px;
  border: 2px solid #d82942;
  border-radius: 8px;
  background: #ffffff;
  color: #d82942;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 1019px) {
  .admin-theme .insufficient-credits {
    left: calc(50% - 80px);
  }
}
.admin-theme .insufficient-credits__holder {
  margin-bottom: 12px;
}
.admin-theme .zvysit-odezvu .newsletter {
  display: none;
}
.admin-theme .zvysit-odezvu .logo-group.logo-group--smaller {
  margin-top: 16px;
}
.admin-theme .zvysit-odezvu .portals__list--echo__btn {
  margin-bottom: 20px;
}
.admin-theme .zvysit-odezvu ul.portals-list {
  margin-top: 0;
  padding-bottom: 20px;
}
.admin-theme .zvysit-odezvu ul.portals-list li {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767px) {
  .admin-theme .zvysit-odezvu ul.portals-list li {
    padding: 15px;
  }
}
@media (max-width: 575px) {
  .admin-theme .zvysit-odezvu ul.portals-list li {
    margin-bottom: 20px;
  }
  .admin-theme .zvysit-odezvu ul.portals-list li:last-child {
    margin-bottom: 20px;
  }
}
.admin-theme .zvysit-odezvu ul.portals-list li > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.admin-theme .zvysit-odezvu ul.portals-list li img {
  width: 100%;
  max-width: 120px;
  height: auto;
}
.admin-theme .zvysit-odezvu #advert-place .advertising__caption,
.admin-theme .zvysit-odezvu #advert-place .advertising__info {
  display: none;
}

#policko_vyplneno {
  display: none;
}

html,
body,
button {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  color: #212121;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500 !important;
}