@charset "UTF-8";
/*** LTR websites ***/
:root {
  --brand-color: hsl(4deg 85% 55%);
  --brand-color-inverse: #ffffff;
  --bg-gray: rgb(244, 245, 250);
  --bg-gray-inverse: ;
  --bg-white: rgba(255, 255, 255, 1);
  --bg-white-inverse: rgba(0, 0, 0, 1);
  --bg-black: rgba(0, 0, 0, 1);
  --bg-black-inverse: rgba(255, 255, 255, 1);
  --border-color:hsl(0deg 0% 50% / 20%);
  --bg-gray-light: rgba(244, 245, 250, 0.6);
  --bg-gray-light-inverse: ;
  --bg-gray-dark: rgba(244, 245, 250, 0.116);
  --bg-gray-dark-inverse: ;
  --txt-body: #000;
  --txt-gray: #888;
  --txt-white: rgba(255, 255, 255, 1);
  --shadow-rgb: 0 0 3px 0 hsl(0deg 0% 50% / 20%);
}

[data-theme="dark"] body {
  background: #121212;
  color: rgba(228, 228, 235, 0.5);
}

[data-theme="dark"]:root {
  --bg-gray: #383838;
  --bg-white: #121212;
  --bg-white-inverse: #fff;
  --bg-black: #fff;
  --bg-black-inverse: #000;
  --bg-gray-light: rgba(56, 56, 56, 0.6);
  --bg-gray-dark: rgba(56, 56, 56, 0.6);
  --txt-body: #d1d1d1;
  --txt-gray: #555;
}

[data-theme="dark"] img {
  filter: brightness(0.8) contrast(1.2);
}

/*!
 * Bootstrap v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #4285f4;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

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

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

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

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

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

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

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

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

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

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

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

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #4285f4;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0d5bdd;
  text-decoration: underline;
}

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

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

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

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

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

figure {
  margin: 0 0 1rem;
}

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

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

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

th {
  text-align: inherit;
}

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

button {
  border-radius: 0;
}

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

input, .form input[type="text"], .form-control input[type="text"], .form input[type="email"], .form-control input[type="email"], .form input[type="phone"], .form-control input[type="phone"], .form input[type="search"], .form-control input[type="search"], .form input[type="password"], .form-control input[type="password"], .form input[type="date"], .form-control input[type="date"], .form input[type="url"], .form-control input[type="url"], .form input[type="tel"], .form-control input[type="tel"], .form input[type="number"], .form-control input[type="number"], .form input[type="file"], .form-control input[type="file"], .form select, .form-control select, .form textarea, .form-control textarea,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, input, .form input[type="text"], .form-control input[type="text"], .form input[type="email"], .form-control input[type="email"], .form input[type="phone"], .form-control input[type="phone"], .form input[type="search"], .form-control input[type="search"], .form input[type="password"], .form-control input[type="password"], .form input[type="date"], .form-control input[type="date"], .form input[type="url"], .form-control input[type="url"], .form input[type="tel"], .form-control input[type="tel"], .form input[type="number"], .form-control input[type="number"], .form input[type="file"], .form-control input[type="file"], .form select, .form-control select, .form textarea, .form-control textarea {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"],
.form [type="button"],
.form-control [type="button"],
.form [type="reset"],
.form-control [type="reset"],
.form input button,
.form-control input button,
.form input[type="text"] button,
.form-control input[type="text"] button,
.form input[type="email"] button,
.form-control input[type="email"] button,
.form input[type="phone"] button,
.form-control input[type="phone"] button,
.form input[type="search"] button,
.form-control input[type="search"] button,
.form input[type="password"] button,
.form-control input[type="password"] button,
.form input[type="date"] button,
.form-control input[type="date"] button,
.form input[type="url"] button,
.form-control input[type="url"] button,
.form input[type="tel"] button,
.form-control input[type="tel"] button,
.form input[type="number"] button,
.form-control input[type="number"] button,
.form input[type="file"] button,
.form-control input[type="file"] button,
.form select button,
.form .form-control select button,
.form-control .form select button,
.form-control select button,
.form textarea button,
.form .form-control textarea button,
.form-control .form textarea button,
.form-control textarea button,
.form button,
.form-control button {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
.form :not(:disabled)[type="button"],
.form-control :not(:disabled)[type="button"],
.form :not(:disabled)[type="reset"],
.form-control :not(:disabled)[type="reset"],
.form button:not(:disabled),
.form-control button:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
.form [type="button"]::-moz-focus-inner,
.form-control [type="button"]::-moz-focus-inner,
.form [type="reset"]::-moz-focus-inner,
.form-control [type="reset"]::-moz-focus-inner,
.form-control input button::-moz-focus-inner,
.form input[type="text"] button::-moz-focus-inner,
.form-control input[type="text"] button::-moz-focus-inner,
.form input[type="email"] button::-moz-focus-inner,
.form-control input[type="email"] button::-moz-focus-inner,
.form input[type="phone"] button::-moz-focus-inner,
.form-control input[type="phone"] button::-moz-focus-inner,
.form input[type="search"] button::-moz-focus-inner,
.form-control input[type="search"] button::-moz-focus-inner,
.form input[type="password"] button::-moz-focus-inner,
.form-control input[type="password"] button::-moz-focus-inner,
.form input[type="date"] button::-moz-focus-inner,
.form-control input[type="date"] button::-moz-focus-inner,
.form input[type="url"] button::-moz-focus-inner,
.form-control input[type="url"] button::-moz-focus-inner,
.form input[type="tel"] button::-moz-focus-inner,
.form-control input[type="tel"] button::-moz-focus-inner,
.form input[type="number"] button::-moz-focus-inner,
.form-control input[type="number"] button::-moz-focus-inner,
.form input[type="file"] button::-moz-focus-inner,
.form-control input[type="file"] button::-moz-focus-inner,
.form .form-control select button::-moz-focus-inner,
.form-control .form select button::-moz-focus-inner,
.form-control select button::-moz-focus-inner,
.form .form-control textarea button::-moz-focus-inner,
.form-control .form textarea button::-moz-focus-inner,
.form-control textarea button::-moz-focus-inner,
.form button::-moz-focus-inner,
.form-control button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"], .form input[type="radio"][type="text"], .form-control input[type="radio"][type="text"], .form input[type="radio"][type="email"], .form-control input[type="radio"][type="email"], .form input[type="radio"][type="phone"], .form-control input[type="radio"][type="phone"], .form input[type="radio"][type="search"], .form-control input[type="radio"][type="search"], .form input[type="radio"][type="password"], .form-control input[type="radio"][type="password"], .form input[type="radio"][type="date"], .form-control input[type="radio"][type="date"], .form input[type="radio"][type="url"], .form-control input[type="radio"][type="url"], .form input[type="radio"][type="tel"], .form-control input[type="radio"][type="tel"], .form input[type="radio"][type="number"], .form-control input[type="radio"][type="number"], .form input[type="radio"][type="file"], .form-control input[type="radio"][type="file"], .form select[type="radio"], .form-control select[type="radio"], .form textarea[type="radio"], .form-control textarea[type="radio"],
input[type="checkbox"],
.form input[type="checkbox"][type="text"],
.form-control input[type="checkbox"][type="text"],
.form input[type="checkbox"][type="email"],
.form-control input[type="checkbox"][type="email"],
.form input[type="checkbox"][type="phone"],
.form-control input[type="checkbox"][type="phone"],
.form input[type="checkbox"][type="search"],
.form-control input[type="checkbox"][type="search"],
.form input[type="checkbox"][type="password"],
.form-control input[type="checkbox"][type="password"],
.form input[type="checkbox"][type="date"],
.form-control input[type="checkbox"][type="date"],
.form input[type="checkbox"][type="url"],
.form-control input[type="checkbox"][type="url"],
.form input[type="checkbox"][type="tel"],
.form-control input[type="checkbox"][type="tel"],
.form input[type="checkbox"][type="number"],
.form-control input[type="checkbox"][type="number"],
.form input[type="checkbox"][type="file"],
.form-control input[type="checkbox"][type="file"],
.form select[type="checkbox"],
.form-control select[type="checkbox"],
.form textarea[type="checkbox"],
.form-control textarea[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"], .form input[type="date"], .form-control input[type="date"], .form select[type="date"], .form-control select[type="date"], .form textarea[type="date"], .form-control textarea[type="date"],
input[type="time"],
.form input[type="time"][type="text"],
.form-control input[type="time"][type="text"],
.form input[type="time"][type="email"],
.form-control input[type="time"][type="email"],
.form input[type="time"][type="phone"],
.form-control input[type="time"][type="phone"],
.form input[type="time"][type="search"],
.form-control input[type="time"][type="search"],
.form input[type="time"][type="password"],
.form-control input[type="time"][type="password"],
.form input[type="time"][type="date"],
.form-control input[type="time"][type="date"],
.form input[type="time"][type="url"],
.form-control input[type="time"][type="url"],
.form input[type="time"][type="tel"],
.form-control input[type="time"][type="tel"],
.form input[type="time"][type="number"],
.form-control input[type="time"][type="number"],
.form input[type="time"][type="file"],
.form-control input[type="time"][type="file"],
.form select[type="time"],
.form-control select[type="time"],
.form textarea[type="time"],
.form-control textarea[type="time"],
input[type="datetime-local"],
.form input[type="datetime-local"][type="text"],
.form-control input[type="datetime-local"][type="text"],
.form input[type="datetime-local"][type="email"],
.form-control input[type="datetime-local"][type="email"],
.form input[type="datetime-local"][type="phone"],
.form-control input[type="datetime-local"][type="phone"],
.form input[type="datetime-local"][type="search"],
.form-control input[type="datetime-local"][type="search"],
.form input[type="datetime-local"][type="password"],
.form-control input[type="datetime-local"][type="password"],
.form input[type="datetime-local"][type="date"],
.form-control input[type="datetime-local"][type="date"],
.form input[type="datetime-local"][type="url"],
.form-control input[type="datetime-local"][type="url"],
.form input[type="datetime-local"][type="tel"],
.form-control input[type="datetime-local"][type="tel"],
.form input[type="datetime-local"][type="number"],
.form-control input[type="datetime-local"][type="number"],
.form input[type="datetime-local"][type="file"],
.form-control input[type="datetime-local"][type="file"],
.form select[type="datetime-local"],
.form-control select[type="datetime-local"],
.form textarea[type="datetime-local"],
.form-control textarea[type="datetime-local"],
input[type="month"],
.form input[type="month"][type="text"],
.form-control input[type="month"][type="text"],
.form input[type="month"][type="email"],
.form-control input[type="month"][type="email"],
.form input[type="month"][type="phone"],
.form-control input[type="month"][type="phone"],
.form input[type="month"][type="search"],
.form-control input[type="month"][type="search"],
.form input[type="month"][type="password"],
.form-control input[type="month"][type="password"],
.form input[type="month"][type="date"],
.form-control input[type="month"][type="date"],
.form input[type="month"][type="url"],
.form-control input[type="month"][type="url"],
.form input[type="month"][type="tel"],
.form-control input[type="month"][type="tel"],
.form input[type="month"][type="number"],
.form-control input[type="month"][type="number"],
.form input[type="month"][type="file"],
.form-control input[type="month"][type="file"],
.form select[type="month"],
.form-control select[type="month"],
.form textarea[type="month"],
.form-control textarea[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: .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-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

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

template {
  display: none;
}

[hidden] {
  display: none !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-inline-item {
  display: inline-block;
}

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

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

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

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "\2014\A0";
}

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

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

.figure {
  display: inline-block;
}

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

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

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

a > code {
  color: inherit;
}

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

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

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

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

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

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

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

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

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

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

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

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

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

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

.col-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

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

.col-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

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

.col-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

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

.col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

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

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid var(--border-color);
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid var(--border-color);
}

.table tbody + tbody {
  border-top: 2px solid var(--border-color);
}

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

.table-bordered {
  border: 1px solid var(--border-color);
}

.table-bordered th,
.table-bordered td {
  border: 1px solid var(--border-color);
}

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

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

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

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

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

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #9dc0f9;
}

.table-hover .table-primary:hover {
  background-color: #b2cefb;
}

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

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

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #b3b7bb;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

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

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

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #8fd19e;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}

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

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

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}

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

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

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

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

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

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ed969e;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

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

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

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}

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

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

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

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

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

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

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

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: var(--border-color);
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}

.table-dark.table-bordered {
  border: 0;
}

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

.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

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

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

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

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

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #bad3fb;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(66, 133, 244, 0.25);
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

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

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

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

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

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

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

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

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

textarea.form-control {
  height: auto;
}

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

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

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

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

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

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

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

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

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}

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

.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

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

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

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

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

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

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

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}

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

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}

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

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}

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

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

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

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
  background-repeat: no-repeat;
  background-position: center right calc(0.375em + 0.1875rem);
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

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

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

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc((1em+0.75rem) * 3 / 4+1.75rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

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

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

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

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

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}

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

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}

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

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: #212529;
  text-decoration: none;
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(66, 133, 244, 0.25);
}

.btn.disabled, .btn:disabled {
  opacity: 0.65;
}

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

.btn-primary {
  color: #fff;
  background-color: #4285f4;
  border-color: #4285f4;
}

.btn-primary:hover {
  color: #fff;
  background-color: #1e6ef2;
  border-color: #1266f1;
}

.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(94, 151, 246, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #4285f4;
  border-color: #4285f4;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary.nice-select.open:not(:disabled):not(.disabled),
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #1266f1;
  border-color: #0e60e9;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary.nice-select.open:not(:disabled):not(.disabled):focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(94, 151, 246, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary:focus, .btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary.nice-select.open:not(:disabled):not(.disabled),
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary.nice-select.open:not(:disabled):not(.disabled):focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-success:focus, .btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .btn-success.nice-select.open:not(:disabled):not(.disabled),
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .btn-success.nice-select.open:not(:disabled):not(.disabled):focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .btn-info.nice-select.open:not(:disabled):not(.disabled),
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .btn-info.nice-select.open:not(:disabled):not(.disabled):focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning:focus, .btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .btn-warning.nice-select.open:not(:disabled):not(.disabled),
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .btn-warning.nice-select.open:not(:disabled):not(.disabled):focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

.btn-danger:focus, .btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .btn-danger.nice-select.open:not(:disabled):not(.disabled),
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .btn-danger.nice-select.open:not(:disabled):not(.disabled):focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light:focus, .btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .btn-light.nice-select.open:not(:disabled):not(.disabled),
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .btn-light.nice-select.open:not(:disabled):not(.disabled):focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus, .btn-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .btn-dark.nice-select.open:not(:disabled):not(.disabled),
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .btn-dark.nice-select.open:not(:disabled):not(.disabled):focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
  color: #4285f4;
  border-color: #4285f4;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #4285f4;
  border-color: #4285f4;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(66, 133, 244, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #4285f4;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary.nice-select.open:not(:disabled):not(.disabled),
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #4285f4;
  border-color: #4285f4;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary.nice-select.open:not(:disabled):not(.disabled):focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(66, 133, 244, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary.nice-select.open:not(:disabled):not(.disabled),
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .btn-outline-secondary.nice-select.open:not(:disabled):not(.disabled):focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .btn-outline-success.nice-select.open:not(:disabled):not(.disabled),
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .btn-outline-success.nice-select.open:not(:disabled):not(.disabled):focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .btn-outline-info.nice-select.open:not(:disabled):not(.disabled),
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .btn-outline-info.nice-select.open:not(:disabled):not(.disabled):focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .btn-outline-warning.nice-select.open:not(:disabled):not(.disabled),
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .btn-outline-warning.nice-select.open:not(:disabled):not(.disabled):focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .btn-outline-danger.nice-select.open:not(:disabled):not(.disabled),
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .btn-outline-danger.nice-select.open:not(:disabled):not(.disabled):focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-light.nice-select.open:not(:disabled):not(.disabled),
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .btn-outline-light.nice-select.open:not(:disabled):not(.disabled):focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .btn-outline-dark.nice-select.open:not(:disabled):not(.disabled),
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .btn-outline-dark.nice-select.open:not(:disabled):not(.disabled):focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #4285f4;
  text-decoration: none;
}

.btn-link:hover {
  color: #0d5bdd;
  text-decoration: underline;
}

.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
  box-shadow: none;
}

.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

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

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

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

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

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

.link-text {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
}

.link-text .icn {
  width: 12px;
  height: 12px;
  display: block;
  margin-right: 8px;
}

.link-text .icn svg {
  width: 100%;
  height: 100%;
  display: flex;
  fill: currentColor;
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

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

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

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

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

.dropdown-toggle {
  white-space: nowrap;
}

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

.dropdown-toggle:empty::after {
  margin-left: 0;
}

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

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

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

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

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

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

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

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

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

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

.dropdown-item.active, .dropdown-item.nice-select.open, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #4285f4;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

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

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

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

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}

.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group > .btn.nice-select.open,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active,
.btn-group-vertical > .btn.nice-select.open {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}

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

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

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

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

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

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

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}

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

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type="radio"], .form .btn-group-toggle > .btn input[type="radio"][type="text"], .form-control .btn-group-toggle > .btn input[type="radio"][type="text"], .form .btn-group-toggle > .btn input[type="radio"][type="email"], .form-control .btn-group-toggle > .btn input[type="radio"][type="email"], .form .btn-group-toggle > .btn input[type="radio"][type="phone"], .form-control .btn-group-toggle > .btn input[type="radio"][type="phone"], .form .btn-group-toggle > .btn input[type="radio"][type="search"], .form-control .btn-group-toggle > .btn input[type="radio"][type="search"], .form .btn-group-toggle > .btn input[type="radio"][type="password"], .form-control .btn-group-toggle > .btn input[type="radio"][type="password"], .form .btn-group-toggle > .btn input[type="radio"][type="date"], .form-control .btn-group-toggle > .btn input[type="radio"][type="date"], .form .btn-group-toggle > .btn input[type="radio"][type="url"], .form-control .btn-group-toggle > .btn input[type="radio"][type="url"], .form .btn-group-toggle > .btn input[type="radio"][type="tel"], .form-control .btn-group-toggle > .btn input[type="radio"][type="tel"], .form .btn-group-toggle > .btn input[type="radio"][type="number"], .form-control .btn-group-toggle > .btn input[type="radio"][type="number"], .form .btn-group-toggle > .btn input[type="radio"][type="file"], .form-control .btn-group-toggle > .btn input[type="radio"][type="file"], .btn-group-toggle > .btn .form select[type="radio"], .form .btn-group-toggle > .btn select[type="radio"], .btn-group-toggle > .btn .form-control select[type="radio"], .form-control .btn-group-toggle > .btn select[type="radio"], .btn-group-toggle > .btn .form textarea[type="radio"], .form .btn-group-toggle > .btn textarea[type="radio"], .btn-group-toggle > .btn .form-control textarea[type="radio"], .form-control .btn-group-toggle > .btn textarea[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.form .btn-group-toggle > .btn input[type="checkbox"][type="text"],
.form-control .btn-group-toggle > .btn input[type="checkbox"][type="text"],
.form .btn-group-toggle > .btn input[type="checkbox"][type="email"],
.form-control .btn-group-toggle > .btn input[type="checkbox"][type="email"],
.form .btn-group-toggle > .btn input[type="checkbox"][type="phone"],
.form-control .btn-group-toggle > .btn input[type="checkbox"][type="phone"],
.form .btn-group-toggle > .btn input[type="checkbox"][type="search"],
.form-control .btn-group-toggle > .btn input[type="checkbox"][type="search"],
.form .btn-group-toggle > .btn input[type="checkbox"][type="password"],
.form-control .btn-group-toggle > .btn input[type="checkbox"][type="password"],
.form .btn-group-toggle > .btn input[type="checkbox"][type="date"],
.form-control .btn-group-toggle > .btn input[type="checkbox"][type="date"],
.form .btn-group-toggle > .btn input[type="checkbox"][type="url"],
.form-control .btn-group-toggle > .btn input[type="checkbox"][type="url"],
.form .btn-group-toggle > .btn input[type="checkbox"][type="tel"],
.form-control .btn-group-toggle > .btn input[type="checkbox"][type="tel"],
.form .btn-group-toggle > .btn input[type="checkbox"][type="number"],
.form-control .btn-group-toggle > .btn input[type="checkbox"][type="number"],
.form .btn-group-toggle > .btn input[type="checkbox"][type="file"],
.form-control .btn-group-toggle > .btn input[type="checkbox"][type="file"],
.btn-group-toggle > .btn .form select[type="checkbox"],
.form .btn-group-toggle > .btn select[type="checkbox"],
.btn-group-toggle > .btn .form-control select[type="checkbox"],
.form-control .btn-group-toggle > .btn select[type="checkbox"],
.btn-group-toggle > .btn .form textarea[type="checkbox"],
.form .btn-group-toggle > .btn textarea[type="checkbox"],
.btn-group-toggle > .btn .form-control textarea[type="checkbox"],
.form-control .btn-group-toggle > .btn textarea[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.form .btn-group-toggle > .btn-group > .btn input[type="radio"][type="text"],
.form-control .btn-group-toggle > .btn-group > .btn input[type="radio"][type="text"],
.form .btn-group-toggle > .btn-group > .btn input[type="radio"][type="email"],
.form-control .btn-group-toggle > .btn-group > .btn input[type="radio"][type="email"],
.form .btn-group-toggle > .btn-group > .btn input[type="radio"][type="phone"],
.form-control .btn-group-toggle > .btn-group > .btn input[type="radio"][type="phone"],
.form .btn-group-toggle > .btn-group > .btn input[type="radio"][type="search"],
.form-control .btn-group-toggle > .btn-group > .btn input[type="radio"][type="search"],
.form .btn-group-toggle > .btn-group > .btn input[type="radio"][type="password"],
.form-control .btn-group-toggle > .btn-group > .btn input[type="radio"][type="password"],
.form .btn-group-toggle > .btn-group > .btn input[type="radio"][type="date"],
.form-control .btn-group-toggle > .btn-group > .btn input[type="radio"][type="date"],
.form .btn-group-toggle > .btn-group > .btn input[type="radio"][type="url"],
.form-control .btn-group-toggle > .btn-group > .btn input[type="radio"][type="url"],
.form .btn-group-toggle > .btn-group > .btn input[type="radio"][type="tel"],
.form-control .btn-group-toggle > .btn-group > .btn input[type="radio"][type="tel"],
.form .btn-group-toggle > .btn-group > .btn input[type="radio"][type="number"],
.form-control .btn-group-toggle > .btn-group > .btn input[type="radio"][type="number"],
.form .btn-group-toggle > .btn-group > .btn input[type="radio"][type="file"],
.form-control .btn-group-toggle > .btn-group > .btn input[type="radio"][type="file"],
.btn-group-toggle > .btn-group > .btn .form select[type="radio"],
.form .btn-group-toggle > .btn-group > .btn select[type="radio"],
.btn-group-toggle > .btn-group > .btn .form-control select[type="radio"],
.form-control .btn-group-toggle > .btn-group > .btn select[type="radio"],
.btn-group-toggle > .btn-group > .btn .form textarea[type="radio"],
.form .btn-group-toggle > .btn-group > .btn textarea[type="radio"],
.btn-group-toggle > .btn-group > .btn .form-control textarea[type="radio"],
.form-control .btn-group-toggle > .btn-group > .btn textarea[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"],
.form .btn-group-toggle > .btn-group > .btn input[type="checkbox"][type="text"],
.form-control .btn-group-toggle > .btn-group > .btn input[type="checkbox"][type="text"],
.form .btn-group-toggle > .btn-group > .btn input[type="checkbox"][type="email"],
.form-control .btn-group-toggle > .btn-group > .btn input[type="checkbox"][type="email"],
.form .btn-group-toggle > .btn-group > .btn input[type="checkbox"][type="phone"],
.form-control .btn-group-toggle > .btn-group > .btn input[type="checkbox"][type="phone"],
.form .btn-group-toggle > .btn-group > .btn input[type="checkbox"][type="search"],
.form-control .btn-group-toggle > .btn-group > .btn input[type="checkbox"][type="search"],
.form .btn-group-toggle > .btn-group > .btn input[type="checkbox"][type="password"],
.form-control .btn-group-toggle > .btn-group > .btn input[type="checkbox"][type="password"],
.form .btn-group-toggle > .btn-group > .btn input[type="checkbox"][type="date"],
.form-control .btn-group-toggle > .btn-group > .btn input[type="checkbox"][type="date"],
.form .btn-group-toggle > .btn-group > .btn input[type="checkbox"][type="url"],
.form-control .btn-group-toggle > .btn-group > .btn input[type="checkbox"][type="url"],
.form .btn-group-toggle > .btn-group > .btn input[type="checkbox"][type="tel"],
.form-control .btn-group-toggle > .btn-group > .btn input[type="checkbox"][type="tel"],
.form .btn-group-toggle > .btn-group > .btn input[type="checkbox"][type="number"],
.form-control .btn-group-toggle > .btn-group > .btn input[type="checkbox"][type="number"],
.form .btn-group-toggle > .btn-group > .btn input[type="checkbox"][type="file"],
.form-control .btn-group-toggle > .btn-group > .btn input[type="checkbox"][type="file"],
.btn-group-toggle > .btn-group > .btn .form select[type="checkbox"],
.form .btn-group-toggle > .btn-group > .btn select[type="checkbox"],
.btn-group-toggle > .btn-group > .btn .form-control select[type="checkbox"],
.form-control .btn-group-toggle > .btn-group > .btn select[type="checkbox"],
.btn-group-toggle > .btn-group > .btn .form textarea[type="checkbox"],
.form .btn-group-toggle > .btn-group > .btn textarea[type="checkbox"],
.btn-group-toggle > .btn-group > .btn .form-control textarea[type="checkbox"],
.form-control .btn-group-toggle > .btn-group > .btn textarea[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-file {
  display: flex;
  align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}

.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}

.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}

.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

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

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

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-text input[type="radio"], .input-group-text .form select[type="radio"], .form .input-group-text select[type="radio"], .input-group-text .form-control select[type="radio"], .form-control .input-group-text select[type="radio"], .input-group-text .form textarea[type="radio"], .form .input-group-text textarea[type="radio"], .input-group-text .form-control textarea[type="radio"], .form-control .input-group-text textarea[type="radio"],
.input-group-text input[type="checkbox"],
.input-group-text .form select[type="checkbox"],
.form .input-group-text select[type="checkbox"],
.input-group-text .form-control select[type="checkbox"],
.form-control .input-group-text select[type="checkbox"],
.input-group-text .form textarea[type="checkbox"],
.form .input-group-text textarea[type="checkbox"],
.input-group-text .form-control textarea[type="checkbox"],
.form-control .input-group-text textarea[type="checkbox"] {
  margin-top: 0;
}

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

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

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

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

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

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

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

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

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #4285f4;
  background-color: #4285f4;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(66, 133, 244, 0.25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #bad3fb;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #ebf2fe;
  border-color: #ebf2fe;
}

.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50% / 50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #4285f4;
  background-color: #4285f4;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(66, 133, 244, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(66, 133, 244, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(66, 133, 244, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}

.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}

.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  transform: translateX(0.75rem);
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(66, 133, 244, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-select:focus {
  border-color: #bad3fb;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(66, 133, 244, 0.25);
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

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

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

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

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

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #bad3fb;
  box-shadow: 0 0 0 0.2rem rgba(66, 133, 244, 0.25);
}

.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

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

.custom-range {
  width: 100%;
  height: calc(1rem + 0.4rem);
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-range:focus {
  outline: none;
}

.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(66, 133, 244, 0.25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(66, 133, 244, 0.25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(66, 133, 244, 0.25);
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #4285f4;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-range::-webkit-slider-thumb:active {
  background-color: #ebf2fe;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #4285f4;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

.custom-range::-moz-range-thumb:active {
  background-color: #ebf2fe;
}

.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #4285f4;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}

.custom-range::-ms-thumb:active {
  background-color: #ebf2fe;
}

.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-moz-range-track {
  cursor: default;
}

.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}

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

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-link.nice-select.open,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active, .nav-pills .nav-link.nice-select.open,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #4285f4;
}

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

.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

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

.tab-content > .active, .tab-content > .nice-select.open {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

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

.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

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

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

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

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nice-select.open > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.nice-select.open {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nice-select.open > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.nice-select.open {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

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

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

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

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

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

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

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

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

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

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

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

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

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

.card-deck {
  display: flex;
  flex-direction: column;
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    display: flex;
    flex: 1 0 0%;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group {
  display: flex;
  flex-direction: column;
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

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

@media (min-width: 576px) {
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion > .card {
  overflow-y: auto;
}

.accordion > .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}

.accordion > .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}

.accordion > .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion > .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion > .card .card-header {
  margin-bottom: -1px;
}

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

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active, .breadcrumb-item.nice-select.open {
  color: #6c757d;
}

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

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #4285f4;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #0d5bdd;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(66, 133, 244, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link, .page-item.nice-select.open .page-link {
  z-index: 1;
  color: #fff;
  background-color: #4285f4;
  border-color: #4285f4;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}

a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

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

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

.badge-primary {
  color: #fff;
  background-color: #4285f4;
}

a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: #1266f1;
}

a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(66, 133, 244, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

a.badge-secondary:hover, a.badge-secondary:focus {
  color: #fff;
  background-color: #545b62;
}

a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}

a.badge-success:hover, a.badge-success:focus {
  color: #fff;
  background-color: #1e7e34;
}

a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

a.badge-info:hover, a.badge-info:focus {
  color: #fff;
  background-color: #117a8b;
}

a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: #d39e00;
}

a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: #bd2130;
}

a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: #dae0e5;
}

a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: #1d2124;
}

a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

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

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

.alert-heading {
  color: inherit;
}

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

.alert-dismissible {
  padding-right: 4rem;
}

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

.alert-primary {
  color: #22457f;
  background-color: #d9e7fd;
  border-color: #caddfc;
}

.alert-primary hr {
  border-top-color: #b2cefb;
}

.alert-primary .alert-link {
  color: #172f57;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-success hr {
  border-top-color: #b1dfbb;
}

.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-info hr {
  border-top-color: #abdde5;
}

.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-warning hr {
  border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-danger hr {
  border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}

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

.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #4285f4;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

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

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

@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active, .list-group-item.nice-select.open {
  z-index: 2;
  color: #fff;
  background-color: #4285f4;
  border-color: #4285f4;
}

.list-group-horizontal {
  flex-direction: row;
}

.list-group-horizontal .list-group-item {
  margin-right: -1px;
  margin-bottom: 0;
}

.list-group-horizontal .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}

.list-group-horizontal .list-group-item:last-child {
  margin-right: 0;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .list-group-horizontal-sm .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}

@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .list-group-horizontal-md .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}

@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .list-group-horizontal-lg .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}

@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .list-group-horizontal-xl .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
}

.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.list-group-flush .list-group-item:last-child {
  margin-bottom: -1px;
}

.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.list-group-item-primary {
  color: #22457f;
  background-color: #caddfc;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #22457f;
  background-color: #b2cefb;
}

.list-group-item-primary.list-group-item-action.active, .list-group-item-primary.list-group-item-action.nice-select.open {
  color: #fff;
  background-color: #22457f;
  border-color: #22457f;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}

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

.list-group-item-secondary.list-group-item-action.active, .list-group-item-secondary.list-group-item-action.nice-select.open {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}

.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}

.list-group-item-success.list-group-item-action.active, .list-group-item-success.list-group-item-action.nice-select.open {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

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

.list-group-item-info.list-group-item-action.active, .list-group-item-info.list-group-item-action.nice-select.open {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active, .list-group-item-warning.list-group-item-action.nice-select.open {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active, .list-group-item-danger.list-group-item-action.nice-select.open {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

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

.list-group-item-light.list-group-item-action.active, .list-group-item-light.list-group-item-action.nice-select.open {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

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

.list-group-item-dark.list-group-item-action.active, .list-group-item-dark.list-group-item-action.nice-select.open {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: .75;
}

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

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

.toast {
  max-width: 350px;
  overflow: hidden;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  border-radius: 0.25rem;
}

.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}

.toast.showing {
  opacity: 1;
}

.toast.show {
  display: block;
  opacity: 1;
}

.toast.hide {
  display: none;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}

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

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

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

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  transform: none;
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

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

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid var(--border-color);
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

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

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

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid var(--border-color);
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}

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

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

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

.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

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

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

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

.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

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

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

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

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem;
}

.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
  bottom: calc((0.5rem + 1px) * -1);
}

.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem;
}

.bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
  left: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem;
}

.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
  top: calc((0.5rem + 1px) * -1);
}

.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem;
}

.bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
  right: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

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

.popover-header:empty {
  display: none;
}

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

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

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

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

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

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right,
.carousel-item-right.nice-select.open {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left,
.carousel-item-left.nice-select.open {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.carousel-fade .carousel-item.active, .carousel-fade .carousel-item.nice-select.open,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left, .carousel-fade .carousel-item-left.nice-select.open,
.carousel-fade .active.carousel-item-right,
.carousel-fade .carousel-item-right.nice-select.open {
  z-index: 0;
  opacity: 0;
  transition: 0s 0.6s opacity;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left, .carousel-fade .carousel-item-left.nice-select.open,
  .carousel-fade .active.carousel-item-right,
  .carousel-fade .carousel-item-right.nice-select.open {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

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

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

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

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

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

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}

.carousel-indicators .active, .carousel-indicators .nice-select.open {
  opacity: 1;
}

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

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

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border .75s linear infinite;
}

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

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

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: spinner-grow .75s linear infinite;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border {
  border: 1px solid var(--border-color) !important;
}

.border-top {
  border-top: 1px solid var(--border-color) !important;
}

.border-right {
  border-right: 1px solid var(--border-color) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--border-color) !important;
}

.border-left {
  border-left: 1px solid var(--border-color) !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: #4285f4 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.d-inline-flex {
  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: flex !important;
  }
  .d-sm-inline-flex {
    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: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

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

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

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

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

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

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

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

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

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

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

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

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

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

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

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

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

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

.align-items-center {
  align-items: center !important;
}

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

.align-items-stretch {
  align-items: stretch !important;
}

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

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

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

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

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

.align-self-center {
  align-self: center !important;
}

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

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

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

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

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

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

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

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

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-6 {
  margin: 2.5rem !important;
}

.mt-6,
.my-6 {
  margin-top: 2.5rem !important;
}

.mr-6,
.mx-6 {
  margin-right: 2.5rem !important;
}

.mb-6,
.my-6 {
  margin-bottom: 2.5rem !important;
}

.ml-6,
.mx-6 {
  margin-left: 2.5rem !important;
}

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

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

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

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

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

.m-8 {
  margin: 3.5rem !important;
}

.mt-8,
.my-8 {
  margin-top: 3.5rem !important;
}

.mr-8,
.mx-8 {
  margin-right: 3.5rem !important;
}

.mb-8,
.my-8 {
  margin-bottom: 3.5rem !important;
}

.ml-8,
.mx-8 {
  margin-left: 3.5rem !important;
}

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

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

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

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

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

.m-10 {
  margin: 4.5rem !important;
}

.mt-10,
.my-10 {
  margin-top: 4.5rem !important;
}

.mr-10,
.mx-10 {
  margin-right: 4.5rem !important;
}

.mb-10,
.my-10 {
  margin-bottom: 4.5rem !important;
}

.ml-10,
.mx-10 {
  margin-left: 4.5rem !important;
}

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

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

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

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

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

.m-12 {
  margin: 5.5rem !important;
}

.mt-12,
.my-12 {
  margin-top: 5.5rem !important;
}

.mr-12,
.mx-12 {
  margin-right: 5.5rem !important;
}

.mb-12,
.my-12 {
  margin-bottom: 5.5rem !important;
}

.ml-12,
.mx-12 {
  margin-left: 5.5rem !important;
}

.m-13 {
  margin: 6rem !important;
}

.mt-13,
.my-13 {
  margin-top: 6rem !important;
}

.mr-13,
.mx-13 {
  margin-right: 6rem !important;
}

.mb-13,
.my-13 {
  margin-bottom: 6rem !important;
}

.ml-13,
.mx-13 {
  margin-left: 6rem !important;
}

.m-14 {
  margin: 6.5rem !important;
}

.mt-14,
.my-14 {
  margin-top: 6.5rem !important;
}

.mr-14,
.mx-14 {
  margin-right: 6.5rem !important;
}

.mb-14,
.my-14 {
  margin-bottom: 6.5rem !important;
}

.ml-14,
.mx-14 {
  margin-left: 6.5rem !important;
}

.m-15 {
  margin: 7rem !important;
}

.mt-15,
.my-15 {
  margin-top: 7rem !important;
}

.mr-15,
.mx-15 {
  margin-right: 7rem !important;
}

.mb-15,
.my-15 {
  margin-bottom: 7rem !important;
}

.ml-15,
.mx-15 {
  margin-left: 7rem !important;
}

.m-16 {
  margin: 7.5rem !important;
}

.mt-16,
.my-16 {
  margin-top: 7.5rem !important;
}

.mr-16,
.mx-16 {
  margin-right: 7.5rem !important;
}

.mb-16,
.my-16 {
  margin-bottom: 7.5rem !important;
}

.ml-16,
.mx-16 {
  margin-left: 7.5rem !important;
}

.m-17 {
  margin: 8rem !important;
}

.mt-17,
.my-17 {
  margin-top: 8rem !important;
}

.mr-17,
.mx-17 {
  margin-right: 8rem !important;
}

.mb-17,
.my-17 {
  margin-bottom: 8rem !important;
}

.ml-17,
.mx-17 {
  margin-left: 8rem !important;
}

.m-18 {
  margin: 8.5rem !important;
}

.mt-18,
.my-18 {
  margin-top: 8.5rem !important;
}

.mr-18,
.mx-18 {
  margin-right: 8.5rem !important;
}

.mb-18,
.my-18 {
  margin-bottom: 8.5rem !important;
}

.ml-18,
.mx-18 {
  margin-left: 8.5rem !important;
}

.m-19 {
  margin: 9rem !important;
}

.mt-19,
.my-19 {
  margin-top: 9rem !important;
}

.mr-19,
.mx-19 {
  margin-right: 9rem !important;
}

.mb-19,
.my-19 {
  margin-bottom: 9rem !important;
}

.ml-19,
.mx-19 {
  margin-left: 9rem !important;
}

.m-20 {
  margin: 9.5rem !important;
}

.mt-20,
.my-20 {
  margin-top: 9.5rem !important;
}

.mr-20,
.mx-20 {
  margin-right: 9.5rem !important;
}

.mb-20,
.my-20 {
  margin-bottom: 9.5rem !important;
}

.ml-20,
.mx-20 {
  margin-left: 9.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-6 {
  padding: 2.5rem !important;
}

.pt-6,
.py-6 {
  padding-top: 2.5rem !important;
}

.pr-6,
.px-6 {
  padding-right: 2.5rem !important;
}

.pb-6,
.py-6 {
  padding-bottom: 2.5rem !important;
}

.pl-6,
.px-6 {
  padding-left: 2.5rem !important;
}

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

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

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

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

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

.p-8 {
  padding: 3.5rem !important;
}

.pt-8,
.py-8 {
  padding-top: 3.5rem !important;
}

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

.pb-8,
.py-8 {
  padding-bottom: 3.5rem !important;
}

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

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

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

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

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

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

.p-10 {
  padding: 4.5rem !important;
}

.pt-10,
.py-10 {
  padding-top: 4.5rem !important;
}

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

.pb-10,
.py-10 {
  padding-bottom: 4.5rem !important;
}

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

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

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

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

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

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

.p-12 {
  padding: 5.5rem !important;
}

.pt-12,
.py-12 {
  padding-top: 5.5rem !important;
}

.pr-12,
.px-12 {
  padding-right: 5.5rem !important;
}

.pb-12,
.py-12 {
  padding-bottom: 5.5rem !important;
}

.pl-12,
.px-12 {
  padding-left: 5.5rem !important;
}

.p-13 {
  padding: 6rem !important;
}

.pt-13,
.py-13 {
  padding-top: 6rem !important;
}

.pr-13,
.px-13 {
  padding-right: 6rem !important;
}

.pb-13,
.py-13 {
  padding-bottom: 6rem !important;
}

.pl-13,
.px-13 {
  padding-left: 6rem !important;
}

.p-14 {
  padding: 6.5rem !important;
}

.pt-14,
.py-14 {
  padding-top: 6.5rem !important;
}

.pr-14,
.px-14 {
  padding-right: 6.5rem !important;
}

.pb-14,
.py-14 {
  padding-bottom: 6.5rem !important;
}

.pl-14,
.px-14 {
  padding-left: 6.5rem !important;
}

.p-15 {
  padding: 7rem !important;
}

.pt-15,
.py-15 {
  padding-top: 7rem !important;
}

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

.pb-15,
.py-15 {
  padding-bottom: 7rem !important;
}

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

.p-16 {
  padding: 7.5rem !important;
}

.pt-16,
.py-16 {
  padding-top: 7.5rem !important;
}

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

.pb-16,
.py-16 {
  padding-bottom: 7.5rem !important;
}

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

.p-17 {
  padding: 8rem !important;
}

.pt-17,
.py-17 {
  padding-top: 8rem !important;
}

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

.pb-17,
.py-17 {
  padding-bottom: 8rem !important;
}

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

.p-18 {
  padding: 8.5rem !important;
}

.pt-18,
.py-18 {
  padding-top: 8.5rem !important;
}

.pr-18,
.px-18 {
  padding-right: 8.5rem !important;
}

.pb-18,
.py-18 {
  padding-bottom: 8.5rem !important;
}

.pl-18,
.px-18 {
  padding-left: 8.5rem !important;
}

.p-19 {
  padding: 9rem !important;
}

.pt-19,
.py-19 {
  padding-top: 9rem !important;
}

.pr-19,
.px-19 {
  padding-right: 9rem !important;
}

.pb-19,
.py-19 {
  padding-bottom: 9rem !important;
}

.pl-19,
.px-19 {
  padding-left: 9rem !important;
}

.p-20 {
  padding: 9.5rem !important;
}

.pt-20,
.py-20 {
  padding-top: 9.5rem !important;
}

.pr-20,
.px-20 {
  padding-right: 9.5rem !important;
}

.pb-20,
.py-20 {
  padding-bottom: 9.5rem !important;
}

.pl-20,
.px-20 {
  padding-left: 9.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.ml-n20,
.mx-n20 {
  margin-left: -0.25rem !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: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 2rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 2rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 2rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 2rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 2rem !important;
  }
  .m-sm-6 {
    margin: 2.5rem !important;
  }
  .mt-sm-6,
  .my-sm-6 {
    margin-top: 2.5rem !important;
  }
  .mr-sm-6,
  .mx-sm-6 {
    margin-right: 2.5rem !important;
  }
  .mb-sm-6,
  .my-sm-6 {
    margin-bottom: 2.5rem !important;
  }
  .ml-sm-6,
  .mx-sm-6 {
    margin-left: 2.5rem !important;
  }
  .m-sm-7 {
    margin: 3rem !important;
  }
  .mt-sm-7,
  .my-sm-7 {
    margin-top: 3rem !important;
  }
  .mr-sm-7,
  .mx-sm-7 {
    margin-right: 3rem !important;
  }
  .mb-sm-7,
  .my-sm-7 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-7,
  .mx-sm-7 {
    margin-left: 3rem !important;
  }
  .m-sm-8 {
    margin: 3.5rem !important;
  }
  .mt-sm-8,
  .my-sm-8 {
    margin-top: 3.5rem !important;
  }
  .mr-sm-8,
  .mx-sm-8 {
    margin-right: 3.5rem !important;
  }
  .mb-sm-8,
  .my-sm-8 {
    margin-bottom: 3.5rem !important;
  }
  .ml-sm-8,
  .mx-sm-8 {
    margin-left: 3.5rem !important;
  }
  .m-sm-9 {
    margin: 4rem !important;
  }
  .mt-sm-9,
  .my-sm-9 {
    margin-top: 4rem !important;
  }
  .mr-sm-9,
  .mx-sm-9 {
    margin-right: 4rem !important;
  }
  .mb-sm-9,
  .my-sm-9 {
    margin-bottom: 4rem !important;
  }
  .ml-sm-9,
  .mx-sm-9 {
    margin-left: 4rem !important;
  }
  .m-sm-10 {
    margin: 4.5rem !important;
  }
  .mt-sm-10,
  .my-sm-10 {
    margin-top: 4.5rem !important;
  }
  .mr-sm-10,
  .mx-sm-10 {
    margin-right: 4.5rem !important;
  }
  .mb-sm-10,
  .my-sm-10 {
    margin-bottom: 4.5rem !important;
  }
  .ml-sm-10,
  .mx-sm-10 {
    margin-left: 4.5rem !important;
  }
  .m-sm-11 {
    margin: 5rem !important;
  }
  .mt-sm-11,
  .my-sm-11 {
    margin-top: 5rem !important;
  }
  .mr-sm-11,
  .mx-sm-11 {
    margin-right: 5rem !important;
  }
  .mb-sm-11,
  .my-sm-11 {
    margin-bottom: 5rem !important;
  }
  .ml-sm-11,
  .mx-sm-11 {
    margin-left: 5rem !important;
  }
  .m-sm-12 {
    margin: 5.5rem !important;
  }
  .mt-sm-12,
  .my-sm-12 {
    margin-top: 5.5rem !important;
  }
  .mr-sm-12,
  .mx-sm-12 {
    margin-right: 5.5rem !important;
  }
  .mb-sm-12,
  .my-sm-12 {
    margin-bottom: 5.5rem !important;
  }
  .ml-sm-12,
  .mx-sm-12 {
    margin-left: 5.5rem !important;
  }
  .m-sm-13 {
    margin: 6rem !important;
  }
  .mt-sm-13,
  .my-sm-13 {
    margin-top: 6rem !important;
  }
  .mr-sm-13,
  .mx-sm-13 {
    margin-right: 6rem !important;
  }
  .mb-sm-13,
  .my-sm-13 {
    margin-bottom: 6rem !important;
  }
  .ml-sm-13,
  .mx-sm-13 {
    margin-left: 6rem !important;
  }
  .m-sm-14 {
    margin: 6.5rem !important;
  }
  .mt-sm-14,
  .my-sm-14 {
    margin-top: 6.5rem !important;
  }
  .mr-sm-14,
  .mx-sm-14 {
    margin-right: 6.5rem !important;
  }
  .mb-sm-14,
  .my-sm-14 {
    margin-bottom: 6.5rem !important;
  }
  .ml-sm-14,
  .mx-sm-14 {
    margin-left: 6.5rem !important;
  }
  .m-sm-15 {
    margin: 7rem !important;
  }
  .mt-sm-15,
  .my-sm-15 {
    margin-top: 7rem !important;
  }
  .mr-sm-15,
  .mx-sm-15 {
    margin-right: 7rem !important;
  }
  .mb-sm-15,
  .my-sm-15 {
    margin-bottom: 7rem !important;
  }
  .ml-sm-15,
  .mx-sm-15 {
    margin-left: 7rem !important;
  }
  .m-sm-16 {
    margin: 7.5rem !important;
  }
  .mt-sm-16,
  .my-sm-16 {
    margin-top: 7.5rem !important;
  }
  .mr-sm-16,
  .mx-sm-16 {
    margin-right: 7.5rem !important;
  }
  .mb-sm-16,
  .my-sm-16 {
    margin-bottom: 7.5rem !important;
  }
  .ml-sm-16,
  .mx-sm-16 {
    margin-left: 7.5rem !important;
  }
  .m-sm-17 {
    margin: 8rem !important;
  }
  .mt-sm-17,
  .my-sm-17 {
    margin-top: 8rem !important;
  }
  .mr-sm-17,
  .mx-sm-17 {
    margin-right: 8rem !important;
  }
  .mb-sm-17,
  .my-sm-17 {
    margin-bottom: 8rem !important;
  }
  .ml-sm-17,
  .mx-sm-17 {
    margin-left: 8rem !important;
  }
  .m-sm-18 {
    margin: 8.5rem !important;
  }
  .mt-sm-18,
  .my-sm-18 {
    margin-top: 8.5rem !important;
  }
  .mr-sm-18,
  .mx-sm-18 {
    margin-right: 8.5rem !important;
  }
  .mb-sm-18,
  .my-sm-18 {
    margin-bottom: 8.5rem !important;
  }
  .ml-sm-18,
  .mx-sm-18 {
    margin-left: 8.5rem !important;
  }
  .m-sm-19 {
    margin: 9rem !important;
  }
  .mt-sm-19,
  .my-sm-19 {
    margin-top: 9rem !important;
  }
  .mr-sm-19,
  .mx-sm-19 {
    margin-right: 9rem !important;
  }
  .mb-sm-19,
  .my-sm-19 {
    margin-bottom: 9rem !important;
  }
  .ml-sm-19,
  .mx-sm-19 {
    margin-left: 9rem !important;
  }
  .m-sm-20 {
    margin: 9.5rem !important;
  }
  .mt-sm-20,
  .my-sm-20 {
    margin-top: 9.5rem !important;
  }
  .mr-sm-20,
  .mx-sm-20 {
    margin-right: 9.5rem !important;
  }
  .mb-sm-20,
  .my-sm-20 {
    margin-bottom: 9.5rem !important;
  }
  .ml-sm-20,
  .mx-sm-20 {
    margin-left: 9.5rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 2rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 2rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 2rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 2rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 2rem !important;
  }
  .p-sm-6 {
    padding: 2.5rem !important;
  }
  .pt-sm-6,
  .py-sm-6 {
    padding-top: 2.5rem !important;
  }
  .pr-sm-6,
  .px-sm-6 {
    padding-right: 2.5rem !important;
  }
  .pb-sm-6,
  .py-sm-6 {
    padding-bottom: 2.5rem !important;
  }
  .pl-sm-6,
  .px-sm-6 {
    padding-left: 2.5rem !important;
  }
  .p-sm-7 {
    padding: 3rem !important;
  }
  .pt-sm-7,
  .py-sm-7 {
    padding-top: 3rem !important;
  }
  .pr-sm-7,
  .px-sm-7 {
    padding-right: 3rem !important;
  }
  .pb-sm-7,
  .py-sm-7 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-7,
  .px-sm-7 {
    padding-left: 3rem !important;
  }
  .p-sm-8 {
    padding: 3.5rem !important;
  }
  .pt-sm-8,
  .py-sm-8 {
    padding-top: 3.5rem !important;
  }
  .pr-sm-8,
  .px-sm-8 {
    padding-right: 3.5rem !important;
  }
  .pb-sm-8,
  .py-sm-8 {
    padding-bottom: 3.5rem !important;
  }
  .pl-sm-8,
  .px-sm-8 {
    padding-left: 3.5rem !important;
  }
  .p-sm-9 {
    padding: 4rem !important;
  }
  .pt-sm-9,
  .py-sm-9 {
    padding-top: 4rem !important;
  }
  .pr-sm-9,
  .px-sm-9 {
    padding-right: 4rem !important;
  }
  .pb-sm-9,
  .py-sm-9 {
    padding-bottom: 4rem !important;
  }
  .pl-sm-9,
  .px-sm-9 {
    padding-left: 4rem !important;
  }
  .p-sm-10 {
    padding: 4.5rem !important;
  }
  .pt-sm-10,
  .py-sm-10 {
    padding-top: 4.5rem !important;
  }
  .pr-sm-10,
  .px-sm-10 {
    padding-right: 4.5rem !important;
  }
  .pb-sm-10,
  .py-sm-10 {
    padding-bottom: 4.5rem !important;
  }
  .pl-sm-10,
  .px-sm-10 {
    padding-left: 4.5rem !important;
  }
  .p-sm-11 {
    padding: 5rem !important;
  }
  .pt-sm-11,
  .py-sm-11 {
    padding-top: 5rem !important;
  }
  .pr-sm-11,
  .px-sm-11 {
    padding-right: 5rem !important;
  }
  .pb-sm-11,
  .py-sm-11 {
    padding-bottom: 5rem !important;
  }
  .pl-sm-11,
  .px-sm-11 {
    padding-left: 5rem !important;
  }
  .p-sm-12 {
    padding: 5.5rem !important;
  }
  .pt-sm-12,
  .py-sm-12 {
    padding-top: 5.5rem !important;
  }
  .pr-sm-12,
  .px-sm-12 {
    padding-right: 5.5rem !important;
  }
  .pb-sm-12,
  .py-sm-12 {
    padding-bottom: 5.5rem !important;
  }
  .pl-sm-12,
  .px-sm-12 {
    padding-left: 5.5rem !important;
  }
  .p-sm-13 {
    padding: 6rem !important;
  }
  .pt-sm-13,
  .py-sm-13 {
    padding-top: 6rem !important;
  }
  .pr-sm-13,
  .px-sm-13 {
    padding-right: 6rem !important;
  }
  .pb-sm-13,
  .py-sm-13 {
    padding-bottom: 6rem !important;
  }
  .pl-sm-13,
  .px-sm-13 {
    padding-left: 6rem !important;
  }
  .p-sm-14 {
    padding: 6.5rem !important;
  }
  .pt-sm-14,
  .py-sm-14 {
    padding-top: 6.5rem !important;
  }
  .pr-sm-14,
  .px-sm-14 {
    padding-right: 6.5rem !important;
  }
  .pb-sm-14,
  .py-sm-14 {
    padding-bottom: 6.5rem !important;
  }
  .pl-sm-14,
  .px-sm-14 {
    padding-left: 6.5rem !important;
  }
  .p-sm-15 {
    padding: 7rem !important;
  }
  .pt-sm-15,
  .py-sm-15 {
    padding-top: 7rem !important;
  }
  .pr-sm-15,
  .px-sm-15 {
    padding-right: 7rem !important;
  }
  .pb-sm-15,
  .py-sm-15 {
    padding-bottom: 7rem !important;
  }
  .pl-sm-15,
  .px-sm-15 {
    padding-left: 7rem !important;
  }
  .p-sm-16 {
    padding: 7.5rem !important;
  }
  .pt-sm-16,
  .py-sm-16 {
    padding-top: 7.5rem !important;
  }
  .pr-sm-16,
  .px-sm-16 {
    padding-right: 7.5rem !important;
  }
  .pb-sm-16,
  .py-sm-16 {
    padding-bottom: 7.5rem !important;
  }
  .pl-sm-16,
  .px-sm-16 {
    padding-left: 7.5rem !important;
  }
  .p-sm-17 {
    padding: 8rem !important;
  }
  .pt-sm-17,
  .py-sm-17 {
    padding-top: 8rem !important;
  }
  .pr-sm-17,
  .px-sm-17 {
    padding-right: 8rem !important;
  }
  .pb-sm-17,
  .py-sm-17 {
    padding-bottom: 8rem !important;
  }
  .pl-sm-17,
  .px-sm-17 {
    padding-left: 8rem !important;
  }
  .p-sm-18 {
    padding: 8.5rem !important;
  }
  .pt-sm-18,
  .py-sm-18 {
    padding-top: 8.5rem !important;
  }
  .pr-sm-18,
  .px-sm-18 {
    padding-right: 8.5rem !important;
  }
  .pb-sm-18,
  .py-sm-18 {
    padding-bottom: 8.5rem !important;
  }
  .pl-sm-18,
  .px-sm-18 {
    padding-left: 8.5rem !important;
  }
  .p-sm-19 {
    padding: 9rem !important;
  }
  .pt-sm-19,
  .py-sm-19 {
    padding-top: 9rem !important;
  }
  .pr-sm-19,
  .px-sm-19 {
    padding-right: 9rem !important;
  }
  .pb-sm-19,
  .py-sm-19 {
    padding-bottom: 9rem !important;
  }
  .pl-sm-19,
  .px-sm-19 {
    padding-left: 9rem !important;
  }
  .p-sm-20 {
    padding: 9.5rem !important;
  }
  .pt-sm-20,
  .py-sm-20 {
    padding-top: 9.5rem !important;
  }
  .pr-sm-20,
  .px-sm-20 {
    padding-right: 9.5rem !important;
  }
  .pb-sm-20,
  .py-sm-20 {
    padding-bottom: 9.5rem !important;
  }
  .pl-sm-20,
  .px-sm-20 {
    padding-left: 9.5rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.25rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n3 {
    margin: -0.25rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n4 {
    margin: -0.25rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n5 {
    margin: -0.25rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n6 {
    margin: -0.25rem !important;
  }
  .mt-sm-n6,
  .my-sm-n6 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n6,
  .mx-sm-n6 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n6,
  .my-sm-n6 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n6,
  .mx-sm-n6 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n7 {
    margin: -0.25rem !important;
  }
  .mt-sm-n7,
  .my-sm-n7 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n7,
  .mx-sm-n7 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n7,
  .my-sm-n7 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n7,
  .mx-sm-n7 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n8 {
    margin: -0.25rem !important;
  }
  .mt-sm-n8,
  .my-sm-n8 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n8,
  .mx-sm-n8 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n8,
  .my-sm-n8 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n8,
  .mx-sm-n8 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n9 {
    margin: -0.25rem !important;
  }
  .mt-sm-n9,
  .my-sm-n9 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n9,
  .mx-sm-n9 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n9,
  .my-sm-n9 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n9,
  .mx-sm-n9 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n10 {
    margin: -0.25rem !important;
  }
  .mt-sm-n10,
  .my-sm-n10 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n10,
  .mx-sm-n10 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n10,
  .my-sm-n10 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n10,
  .mx-sm-n10 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n11 {
    margin: -0.25rem !important;
  }
  .mt-sm-n11,
  .my-sm-n11 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n11,
  .mx-sm-n11 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n11,
  .my-sm-n11 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n11,
  .mx-sm-n11 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n12 {
    margin: -0.25rem !important;
  }
  .mt-sm-n12,
  .my-sm-n12 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n12,
  .mx-sm-n12 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n12,
  .my-sm-n12 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n12,
  .mx-sm-n12 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n13 {
    margin: -0.25rem !important;
  }
  .mt-sm-n13,
  .my-sm-n13 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n13,
  .mx-sm-n13 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n13,
  .my-sm-n13 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n13,
  .mx-sm-n13 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n14 {
    margin: -0.25rem !important;
  }
  .mt-sm-n14,
  .my-sm-n14 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n14,
  .mx-sm-n14 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n14,
  .my-sm-n14 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n14,
  .mx-sm-n14 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n15 {
    margin: -0.25rem !important;
  }
  .mt-sm-n15,
  .my-sm-n15 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n15,
  .mx-sm-n15 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n15,
  .my-sm-n15 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n15,
  .mx-sm-n15 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n16 {
    margin: -0.25rem !important;
  }
  .mt-sm-n16,
  .my-sm-n16 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n16,
  .mx-sm-n16 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n16,
  .my-sm-n16 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n16,
  .mx-sm-n16 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n17 {
    margin: -0.25rem !important;
  }
  .mt-sm-n17,
  .my-sm-n17 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n17,
  .mx-sm-n17 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n17,
  .my-sm-n17 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n17,
  .mx-sm-n17 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n18 {
    margin: -0.25rem !important;
  }
  .mt-sm-n18,
  .my-sm-n18 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n18,
  .mx-sm-n18 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n18,
  .my-sm-n18 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n18,
  .mx-sm-n18 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n19 {
    margin: -0.25rem !important;
  }
  .mt-sm-n19,
  .my-sm-n19 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n19,
  .mx-sm-n19 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n19,
  .my-sm-n19 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n19,
  .mx-sm-n19 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n20 {
    margin: -0.25rem !important;
  }
  .mt-sm-n20,
  .my-sm-n20 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n20,
  .mx-sm-n20 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n20,
  .my-sm-n20 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n20,
  .mx-sm-n20 {
    margin-left: -0.25rem !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: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 2rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 2rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 2rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 2rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 2rem !important;
  }
  .m-md-6 {
    margin: 2.5rem !important;
  }
  .mt-md-6,
  .my-md-6 {
    margin-top: 2.5rem !important;
  }
  .mr-md-6,
  .mx-md-6 {
    margin-right: 2.5rem !important;
  }
  .mb-md-6,
  .my-md-6 {
    margin-bottom: 2.5rem !important;
  }
  .ml-md-6,
  .mx-md-6 {
    margin-left: 2.5rem !important;
  }
  .m-md-7 {
    margin: 3rem !important;
  }
  .mt-md-7,
  .my-md-7 {
    margin-top: 3rem !important;
  }
  .mr-md-7,
  .mx-md-7 {
    margin-right: 3rem !important;
  }
  .mb-md-7,
  .my-md-7 {
    margin-bottom: 3rem !important;
  }
  .ml-md-7,
  .mx-md-7 {
    margin-left: 3rem !important;
  }
  .m-md-8 {
    margin: 3.5rem !important;
  }
  .mt-md-8,
  .my-md-8 {
    margin-top: 3.5rem !important;
  }
  .mr-md-8,
  .mx-md-8 {
    margin-right: 3.5rem !important;
  }
  .mb-md-8,
  .my-md-8 {
    margin-bottom: 3.5rem !important;
  }
  .ml-md-8,
  .mx-md-8 {
    margin-left: 3.5rem !important;
  }
  .m-md-9 {
    margin: 4rem !important;
  }
  .mt-md-9,
  .my-md-9 {
    margin-top: 4rem !important;
  }
  .mr-md-9,
  .mx-md-9 {
    margin-right: 4rem !important;
  }
  .mb-md-9,
  .my-md-9 {
    margin-bottom: 4rem !important;
  }
  .ml-md-9,
  .mx-md-9 {
    margin-left: 4rem !important;
  }
  .m-md-10 {
    margin: 4.5rem !important;
  }
  .mt-md-10,
  .my-md-10 {
    margin-top: 4.5rem !important;
  }
  .mr-md-10,
  .mx-md-10 {
    margin-right: 4.5rem !important;
  }
  .mb-md-10,
  .my-md-10 {
    margin-bottom: 4.5rem !important;
  }
  .ml-md-10,
  .mx-md-10 {
    margin-left: 4.5rem !important;
  }
  .m-md-11 {
    margin: 5rem !important;
  }
  .mt-md-11,
  .my-md-11 {
    margin-top: 5rem !important;
  }
  .mr-md-11,
  .mx-md-11 {
    margin-right: 5rem !important;
  }
  .mb-md-11,
  .my-md-11 {
    margin-bottom: 5rem !important;
  }
  .ml-md-11,
  .mx-md-11 {
    margin-left: 5rem !important;
  }
  .m-md-12 {
    margin: 5.5rem !important;
  }
  .mt-md-12,
  .my-md-12 {
    margin-top: 5.5rem !important;
  }
  .mr-md-12,
  .mx-md-12 {
    margin-right: 5.5rem !important;
  }
  .mb-md-12,
  .my-md-12 {
    margin-bottom: 5.5rem !important;
  }
  .ml-md-12,
  .mx-md-12 {
    margin-left: 5.5rem !important;
  }
  .m-md-13 {
    margin: 6rem !important;
  }
  .mt-md-13,
  .my-md-13 {
    margin-top: 6rem !important;
  }
  .mr-md-13,
  .mx-md-13 {
    margin-right: 6rem !important;
  }
  .mb-md-13,
  .my-md-13 {
    margin-bottom: 6rem !important;
  }
  .ml-md-13,
  .mx-md-13 {
    margin-left: 6rem !important;
  }
  .m-md-14 {
    margin: 6.5rem !important;
  }
  .mt-md-14,
  .my-md-14 {
    margin-top: 6.5rem !important;
  }
  .mr-md-14,
  .mx-md-14 {
    margin-right: 6.5rem !important;
  }
  .mb-md-14,
  .my-md-14 {
    margin-bottom: 6.5rem !important;
  }
  .ml-md-14,
  .mx-md-14 {
    margin-left: 6.5rem !important;
  }
  .m-md-15 {
    margin: 7rem !important;
  }
  .mt-md-15,
  .my-md-15 {
    margin-top: 7rem !important;
  }
  .mr-md-15,
  .mx-md-15 {
    margin-right: 7rem !important;
  }
  .mb-md-15,
  .my-md-15 {
    margin-bottom: 7rem !important;
  }
  .ml-md-15,
  .mx-md-15 {
    margin-left: 7rem !important;
  }
  .m-md-16 {
    margin: 7.5rem !important;
  }
  .mt-md-16,
  .my-md-16 {
    margin-top: 7.5rem !important;
  }
  .mr-md-16,
  .mx-md-16 {
    margin-right: 7.5rem !important;
  }
  .mb-md-16,
  .my-md-16 {
    margin-bottom: 7.5rem !important;
  }
  .ml-md-16,
  .mx-md-16 {
    margin-left: 7.5rem !important;
  }
  .m-md-17 {
    margin: 8rem !important;
  }
  .mt-md-17,
  .my-md-17 {
    margin-top: 8rem !important;
  }
  .mr-md-17,
  .mx-md-17 {
    margin-right: 8rem !important;
  }
  .mb-md-17,
  .my-md-17 {
    margin-bottom: 8rem !important;
  }
  .ml-md-17,
  .mx-md-17 {
    margin-left: 8rem !important;
  }
  .m-md-18 {
    margin: 8.5rem !important;
  }
  .mt-md-18,
  .my-md-18 {
    margin-top: 8.5rem !important;
  }
  .mr-md-18,
  .mx-md-18 {
    margin-right: 8.5rem !important;
  }
  .mb-md-18,
  .my-md-18 {
    margin-bottom: 8.5rem !important;
  }
  .ml-md-18,
  .mx-md-18 {
    margin-left: 8.5rem !important;
  }
  .m-md-19 {
    margin: 9rem !important;
  }
  .mt-md-19,
  .my-md-19 {
    margin-top: 9rem !important;
  }
  .mr-md-19,
  .mx-md-19 {
    margin-right: 9rem !important;
  }
  .mb-md-19,
  .my-md-19 {
    margin-bottom: 9rem !important;
  }
  .ml-md-19,
  .mx-md-19 {
    margin-left: 9rem !important;
  }
  .m-md-20 {
    margin: 9.5rem !important;
  }
  .mt-md-20,
  .my-md-20 {
    margin-top: 9.5rem !important;
  }
  .mr-md-20,
  .mx-md-20 {
    margin-right: 9.5rem !important;
  }
  .mb-md-20,
  .my-md-20 {
    margin-bottom: 9.5rem !important;
  }
  .ml-md-20,
  .mx-md-20 {
    margin-left: 9.5rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 2rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 2rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 2rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 2rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 2rem !important;
  }
  .p-md-6 {
    padding: 2.5rem !important;
  }
  .pt-md-6,
  .py-md-6 {
    padding-top: 2.5rem !important;
  }
  .pr-md-6,
  .px-md-6 {
    padding-right: 2.5rem !important;
  }
  .pb-md-6,
  .py-md-6 {
    padding-bottom: 2.5rem !important;
  }
  .pl-md-6,
  .px-md-6 {
    padding-left: 2.5rem !important;
  }
  .p-md-7 {
    padding: 3rem !important;
  }
  .pt-md-7,
  .py-md-7 {
    padding-top: 3rem !important;
  }
  .pr-md-7,
  .px-md-7 {
    padding-right: 3rem !important;
  }
  .pb-md-7,
  .py-md-7 {
    padding-bottom: 3rem !important;
  }
  .pl-md-7,
  .px-md-7 {
    padding-left: 3rem !important;
  }
  .p-md-8 {
    padding: 3.5rem !important;
  }
  .pt-md-8,
  .py-md-8 {
    padding-top: 3.5rem !important;
  }
  .pr-md-8,
  .px-md-8 {
    padding-right: 3.5rem !important;
  }
  .pb-md-8,
  .py-md-8 {
    padding-bottom: 3.5rem !important;
  }
  .pl-md-8,
  .px-md-8 {
    padding-left: 3.5rem !important;
  }
  .p-md-9 {
    padding: 4rem !important;
  }
  .pt-md-9,
  .py-md-9 {
    padding-top: 4rem !important;
  }
  .pr-md-9,
  .px-md-9 {
    padding-right: 4rem !important;
  }
  .pb-md-9,
  .py-md-9 {
    padding-bottom: 4rem !important;
  }
  .pl-md-9,
  .px-md-9 {
    padding-left: 4rem !important;
  }
  .p-md-10 {
    padding: 4.5rem !important;
  }
  .pt-md-10,
  .py-md-10 {
    padding-top: 4.5rem !important;
  }
  .pr-md-10,
  .px-md-10 {
    padding-right: 4.5rem !important;
  }
  .pb-md-10,
  .py-md-10 {
    padding-bottom: 4.5rem !important;
  }
  .pl-md-10,
  .px-md-10 {
    padding-left: 4.5rem !important;
  }
  .p-md-11 {
    padding: 5rem !important;
  }
  .pt-md-11,
  .py-md-11 {
    padding-top: 5rem !important;
  }
  .pr-md-11,
  .px-md-11 {
    padding-right: 5rem !important;
  }
  .pb-md-11,
  .py-md-11 {
    padding-bottom: 5rem !important;
  }
  .pl-md-11,
  .px-md-11 {
    padding-left: 5rem !important;
  }
  .p-md-12 {
    padding: 5.5rem !important;
  }
  .pt-md-12,
  .py-md-12 {
    padding-top: 5.5rem !important;
  }
  .pr-md-12,
  .px-md-12 {
    padding-right: 5.5rem !important;
  }
  .pb-md-12,
  .py-md-12 {
    padding-bottom: 5.5rem !important;
  }
  .pl-md-12,
  .px-md-12 {
    padding-left: 5.5rem !important;
  }
  .p-md-13 {
    padding: 6rem !important;
  }
  .pt-md-13,
  .py-md-13 {
    padding-top: 6rem !important;
  }
  .pr-md-13,
  .px-md-13 {
    padding-right: 6rem !important;
  }
  .pb-md-13,
  .py-md-13 {
    padding-bottom: 6rem !important;
  }
  .pl-md-13,
  .px-md-13 {
    padding-left: 6rem !important;
  }
  .p-md-14 {
    padding: 6.5rem !important;
  }
  .pt-md-14,
  .py-md-14 {
    padding-top: 6.5rem !important;
  }
  .pr-md-14,
  .px-md-14 {
    padding-right: 6.5rem !important;
  }
  .pb-md-14,
  .py-md-14 {
    padding-bottom: 6.5rem !important;
  }
  .pl-md-14,
  .px-md-14 {
    padding-left: 6.5rem !important;
  }
  .p-md-15 {
    padding: 7rem !important;
  }
  .pt-md-15,
  .py-md-15 {
    padding-top: 7rem !important;
  }
  .pr-md-15,
  .px-md-15 {
    padding-right: 7rem !important;
  }
  .pb-md-15,
  .py-md-15 {
    padding-bottom: 7rem !important;
  }
  .pl-md-15,
  .px-md-15 {
    padding-left: 7rem !important;
  }
  .p-md-16 {
    padding: 7.5rem !important;
  }
  .pt-md-16,
  .py-md-16 {
    padding-top: 7.5rem !important;
  }
  .pr-md-16,
  .px-md-16 {
    padding-right: 7.5rem !important;
  }
  .pb-md-16,
  .py-md-16 {
    padding-bottom: 7.5rem !important;
  }
  .pl-md-16,
  .px-md-16 {
    padding-left: 7.5rem !important;
  }
  .p-md-17 {
    padding: 8rem !important;
  }
  .pt-md-17,
  .py-md-17 {
    padding-top: 8rem !important;
  }
  .pr-md-17,
  .px-md-17 {
    padding-right: 8rem !important;
  }
  .pb-md-17,
  .py-md-17 {
    padding-bottom: 8rem !important;
  }
  .pl-md-17,
  .px-md-17 {
    padding-left: 8rem !important;
  }
  .p-md-18 {
    padding: 8.5rem !important;
  }
  .pt-md-18,
  .py-md-18 {
    padding-top: 8.5rem !important;
  }
  .pr-md-18,
  .px-md-18 {
    padding-right: 8.5rem !important;
  }
  .pb-md-18,
  .py-md-18 {
    padding-bottom: 8.5rem !important;
  }
  .pl-md-18,
  .px-md-18 {
    padding-left: 8.5rem !important;
  }
  .p-md-19 {
    padding: 9rem !important;
  }
  .pt-md-19,
  .py-md-19 {
    padding-top: 9rem !important;
  }
  .pr-md-19,
  .px-md-19 {
    padding-right: 9rem !important;
  }
  .pb-md-19,
  .py-md-19 {
    padding-bottom: 9rem !important;
  }
  .pl-md-19,
  .px-md-19 {
    padding-left: 9rem !important;
  }
  .p-md-20 {
    padding: 9.5rem !important;
  }
  .pt-md-20,
  .py-md-20 {
    padding-top: 9.5rem !important;
  }
  .pr-md-20,
  .px-md-20 {
    padding-right: 9.5rem !important;
  }
  .pb-md-20,
  .py-md-20 {
    padding-bottom: 9.5rem !important;
  }
  .pl-md-20,
  .px-md-20 {
    padding-left: 9.5rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.25rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.25rem !important;
  }
  .m-md-n3 {
    margin: -0.25rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -0.25rem !important;
  }
  .m-md-n4 {
    margin: -0.25rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -0.25rem !important;
  }
  .m-md-n5 {
    margin: -0.25rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -0.25rem !important;
  }
  .m-md-n6 {
    margin: -0.25rem !important;
  }
  .mt-md-n6,
  .my-md-n6 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n6,
  .mx-md-n6 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n6,
  .my-md-n6 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n6,
  .mx-md-n6 {
    margin-left: -0.25rem !important;
  }
  .m-md-n7 {
    margin: -0.25rem !important;
  }
  .mt-md-n7,
  .my-md-n7 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n7,
  .mx-md-n7 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n7,
  .my-md-n7 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n7,
  .mx-md-n7 {
    margin-left: -0.25rem !important;
  }
  .m-md-n8 {
    margin: -0.25rem !important;
  }
  .mt-md-n8,
  .my-md-n8 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n8,
  .mx-md-n8 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n8,
  .my-md-n8 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n8,
  .mx-md-n8 {
    margin-left: -0.25rem !important;
  }
  .m-md-n9 {
    margin: -0.25rem !important;
  }
  .mt-md-n9,
  .my-md-n9 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n9,
  .mx-md-n9 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n9,
  .my-md-n9 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n9,
  .mx-md-n9 {
    margin-left: -0.25rem !important;
  }
  .m-md-n10 {
    margin: -0.25rem !important;
  }
  .mt-md-n10,
  .my-md-n10 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n10,
  .mx-md-n10 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n10,
  .my-md-n10 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n10,
  .mx-md-n10 {
    margin-left: -0.25rem !important;
  }
  .m-md-n11 {
    margin: -0.25rem !important;
  }
  .mt-md-n11,
  .my-md-n11 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n11,
  .mx-md-n11 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n11,
  .my-md-n11 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n11,
  .mx-md-n11 {
    margin-left: -0.25rem !important;
  }
  .m-md-n12 {
    margin: -0.25rem !important;
  }
  .mt-md-n12,
  .my-md-n12 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n12,
  .mx-md-n12 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n12,
  .my-md-n12 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n12,
  .mx-md-n12 {
    margin-left: -0.25rem !important;
  }
  .m-md-n13 {
    margin: -0.25rem !important;
  }
  .mt-md-n13,
  .my-md-n13 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n13,
  .mx-md-n13 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n13,
  .my-md-n13 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n13,
  .mx-md-n13 {
    margin-left: -0.25rem !important;
  }
  .m-md-n14 {
    margin: -0.25rem !important;
  }
  .mt-md-n14,
  .my-md-n14 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n14,
  .mx-md-n14 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n14,
  .my-md-n14 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n14,
  .mx-md-n14 {
    margin-left: -0.25rem !important;
  }
  .m-md-n15 {
    margin: -0.25rem !important;
  }
  .mt-md-n15,
  .my-md-n15 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n15,
  .mx-md-n15 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n15,
  .my-md-n15 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n15,
  .mx-md-n15 {
    margin-left: -0.25rem !important;
  }
  .m-md-n16 {
    margin: -0.25rem !important;
  }
  .mt-md-n16,
  .my-md-n16 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n16,
  .mx-md-n16 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n16,
  .my-md-n16 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n16,
  .mx-md-n16 {
    margin-left: -0.25rem !important;
  }
  .m-md-n17 {
    margin: -0.25rem !important;
  }
  .mt-md-n17,
  .my-md-n17 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n17,
  .mx-md-n17 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n17,
  .my-md-n17 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n17,
  .mx-md-n17 {
    margin-left: -0.25rem !important;
  }
  .m-md-n18 {
    margin: -0.25rem !important;
  }
  .mt-md-n18,
  .my-md-n18 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n18,
  .mx-md-n18 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n18,
  .my-md-n18 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n18,
  .mx-md-n18 {
    margin-left: -0.25rem !important;
  }
  .m-md-n19 {
    margin: -0.25rem !important;
  }
  .mt-md-n19,
  .my-md-n19 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n19,
  .mx-md-n19 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n19,
  .my-md-n19 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n19,
  .mx-md-n19 {
    margin-left: -0.25rem !important;
  }
  .m-md-n20 {
    margin: -0.25rem !important;
  }
  .mt-md-n20,
  .my-md-n20 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n20,
  .mx-md-n20 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n20,
  .my-md-n20 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n20,
  .mx-md-n20 {
    margin-left: -0.25rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 2rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 2rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 2rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 2rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 2rem !important;
  }
  .m-lg-6 {
    margin: 2.5rem !important;
  }
  .mt-lg-6,
  .my-lg-6 {
    margin-top: 2.5rem !important;
  }
  .mr-lg-6,
  .mx-lg-6 {
    margin-right: 2.5rem !important;
  }
  .mb-lg-6,
  .my-lg-6 {
    margin-bottom: 2.5rem !important;
  }
  .ml-lg-6,
  .mx-lg-6 {
    margin-left: 2.5rem !important;
  }
  .m-lg-7 {
    margin: 3rem !important;
  }
  .mt-lg-7,
  .my-lg-7 {
    margin-top: 3rem !important;
  }
  .mr-lg-7,
  .mx-lg-7 {
    margin-right: 3rem !important;
  }
  .mb-lg-7,
  .my-lg-7 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-7,
  .mx-lg-7 {
    margin-left: 3rem !important;
  }
  .m-lg-8 {
    margin: 3.5rem !important;
  }
  .mt-lg-8,
  .my-lg-8 {
    margin-top: 3.5rem !important;
  }
  .mr-lg-8,
  .mx-lg-8 {
    margin-right: 3.5rem !important;
  }
  .mb-lg-8,
  .my-lg-8 {
    margin-bottom: 3.5rem !important;
  }
  .ml-lg-8,
  .mx-lg-8 {
    margin-left: 3.5rem !important;
  }
  .m-lg-9 {
    margin: 4rem !important;
  }
  .mt-lg-9,
  .my-lg-9 {
    margin-top: 4rem !important;
  }
  .mr-lg-9,
  .mx-lg-9 {
    margin-right: 4rem !important;
  }
  .mb-lg-9,
  .my-lg-9 {
    margin-bottom: 4rem !important;
  }
  .ml-lg-9,
  .mx-lg-9 {
    margin-left: 4rem !important;
  }
  .m-lg-10 {
    margin: 4.5rem !important;
  }
  .mt-lg-10,
  .my-lg-10 {
    margin-top: 4.5rem !important;
  }
  .mr-lg-10,
  .mx-lg-10 {
    margin-right: 4.5rem !important;
  }
  .mb-lg-10,
  .my-lg-10 {
    margin-bottom: 4.5rem !important;
  }
  .ml-lg-10,
  .mx-lg-10 {
    margin-left: 4.5rem !important;
  }
  .m-lg-11 {
    margin: 5rem !important;
  }
  .mt-lg-11,
  .my-lg-11 {
    margin-top: 5rem !important;
  }
  .mr-lg-11,
  .mx-lg-11 {
    margin-right: 5rem !important;
  }
  .mb-lg-11,
  .my-lg-11 {
    margin-bottom: 5rem !important;
  }
  .ml-lg-11,
  .mx-lg-11 {
    margin-left: 5rem !important;
  }
  .m-lg-12 {
    margin: 5.5rem !important;
  }
  .mt-lg-12,
  .my-lg-12 {
    margin-top: 5.5rem !important;
  }
  .mr-lg-12,
  .mx-lg-12 {
    margin-right: 5.5rem !important;
  }
  .mb-lg-12,
  .my-lg-12 {
    margin-bottom: 5.5rem !important;
  }
  .ml-lg-12,
  .mx-lg-12 {
    margin-left: 5.5rem !important;
  }
  .m-lg-13 {
    margin: 6rem !important;
  }
  .mt-lg-13,
  .my-lg-13 {
    margin-top: 6rem !important;
  }
  .mr-lg-13,
  .mx-lg-13 {
    margin-right: 6rem !important;
  }
  .mb-lg-13,
  .my-lg-13 {
    margin-bottom: 6rem !important;
  }
  .ml-lg-13,
  .mx-lg-13 {
    margin-left: 6rem !important;
  }
  .m-lg-14 {
    margin: 6.5rem !important;
  }
  .mt-lg-14,
  .my-lg-14 {
    margin-top: 6.5rem !important;
  }
  .mr-lg-14,
  .mx-lg-14 {
    margin-right: 6.5rem !important;
  }
  .mb-lg-14,
  .my-lg-14 {
    margin-bottom: 6.5rem !important;
  }
  .ml-lg-14,
  .mx-lg-14 {
    margin-left: 6.5rem !important;
  }
  .m-lg-15 {
    margin: 7rem !important;
  }
  .mt-lg-15,
  .my-lg-15 {
    margin-top: 7rem !important;
  }
  .mr-lg-15,
  .mx-lg-15 {
    margin-right: 7rem !important;
  }
  .mb-lg-15,
  .my-lg-15 {
    margin-bottom: 7rem !important;
  }
  .ml-lg-15,
  .mx-lg-15 {
    margin-left: 7rem !important;
  }
  .m-lg-16 {
    margin: 7.5rem !important;
  }
  .mt-lg-16,
  .my-lg-16 {
    margin-top: 7.5rem !important;
  }
  .mr-lg-16,
  .mx-lg-16 {
    margin-right: 7.5rem !important;
  }
  .mb-lg-16,
  .my-lg-16 {
    margin-bottom: 7.5rem !important;
  }
  .ml-lg-16,
  .mx-lg-16 {
    margin-left: 7.5rem !important;
  }
  .m-lg-17 {
    margin: 8rem !important;
  }
  .mt-lg-17,
  .my-lg-17 {
    margin-top: 8rem !important;
  }
  .mr-lg-17,
  .mx-lg-17 {
    margin-right: 8rem !important;
  }
  .mb-lg-17,
  .my-lg-17 {
    margin-bottom: 8rem !important;
  }
  .ml-lg-17,
  .mx-lg-17 {
    margin-left: 8rem !important;
  }
  .m-lg-18 {
    margin: 8.5rem !important;
  }
  .mt-lg-18,
  .my-lg-18 {
    margin-top: 8.5rem !important;
  }
  .mr-lg-18,
  .mx-lg-18 {
    margin-right: 8.5rem !important;
  }
  .mb-lg-18,
  .my-lg-18 {
    margin-bottom: 8.5rem !important;
  }
  .ml-lg-18,
  .mx-lg-18 {
    margin-left: 8.5rem !important;
  }
  .m-lg-19 {
    margin: 9rem !important;
  }
  .mt-lg-19,
  .my-lg-19 {
    margin-top: 9rem !important;
  }
  .mr-lg-19,
  .mx-lg-19 {
    margin-right: 9rem !important;
  }
  .mb-lg-19,
  .my-lg-19 {
    margin-bottom: 9rem !important;
  }
  .ml-lg-19,
  .mx-lg-19 {
    margin-left: 9rem !important;
  }
  .m-lg-20 {
    margin: 9.5rem !important;
  }
  .mt-lg-20,
  .my-lg-20 {
    margin-top: 9.5rem !important;
  }
  .mr-lg-20,
  .mx-lg-20 {
    margin-right: 9.5rem !important;
  }
  .mb-lg-20,
  .my-lg-20 {
    margin-bottom: 9.5rem !important;
  }
  .ml-lg-20,
  .mx-lg-20 {
    margin-left: 9.5rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 2rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 2rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 2rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 2rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 2rem !important;
  }
  .p-lg-6 {
    padding: 2.5rem !important;
  }
  .pt-lg-6,
  .py-lg-6 {
    padding-top: 2.5rem !important;
  }
  .pr-lg-6,
  .px-lg-6 {
    padding-right: 2.5rem !important;
  }
  .pb-lg-6,
  .py-lg-6 {
    padding-bottom: 2.5rem !important;
  }
  .pl-lg-6,
  .px-lg-6 {
    padding-left: 2.5rem !important;
  }
  .p-lg-7 {
    padding: 3rem !important;
  }
  .pt-lg-7,
  .py-lg-7 {
    padding-top: 3rem !important;
  }
  .pr-lg-7,
  .px-lg-7 {
    padding-right: 3rem !important;
  }
  .pb-lg-7,
  .py-lg-7 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-7,
  .px-lg-7 {
    padding-left: 3rem !important;
  }
  .p-lg-8 {
    padding: 3.5rem !important;
  }
  .pt-lg-8,
  .py-lg-8 {
    padding-top: 3.5rem !important;
  }
  .pr-lg-8,
  .px-lg-8 {
    padding-right: 3.5rem !important;
  }
  .pb-lg-8,
  .py-lg-8 {
    padding-bottom: 3.5rem !important;
  }
  .pl-lg-8,
  .px-lg-8 {
    padding-left: 3.5rem !important;
  }
  .p-lg-9 {
    padding: 4rem !important;
  }
  .pt-lg-9,
  .py-lg-9 {
    padding-top: 4rem !important;
  }
  .pr-lg-9,
  .px-lg-9 {
    padding-right: 4rem !important;
  }
  .pb-lg-9,
  .py-lg-9 {
    padding-bottom: 4rem !important;
  }
  .pl-lg-9,
  .px-lg-9 {
    padding-left: 4rem !important;
  }
  .p-lg-10 {
    padding: 4.5rem !important;
  }
  .pt-lg-10,
  .py-lg-10 {
    padding-top: 4.5rem !important;
  }
  .pr-lg-10,
  .px-lg-10 {
    padding-right: 4.5rem !important;
  }
  .pb-lg-10,
  .py-lg-10 {
    padding-bottom: 4.5rem !important;
  }
  .pl-lg-10,
  .px-lg-10 {
    padding-left: 4.5rem !important;
  }
  .p-lg-11 {
    padding: 5rem !important;
  }
  .pt-lg-11,
  .py-lg-11 {
    padding-top: 5rem !important;
  }
  .pr-lg-11,
  .px-lg-11 {
    padding-right: 5rem !important;
  }
  .pb-lg-11,
  .py-lg-11 {
    padding-bottom: 5rem !important;
  }
  .pl-lg-11,
  .px-lg-11 {
    padding-left: 5rem !important;
  }
  .p-lg-12 {
    padding: 5.5rem !important;
  }
  .pt-lg-12,
  .py-lg-12 {
    padding-top: 5.5rem !important;
  }
  .pr-lg-12,
  .px-lg-12 {
    padding-right: 5.5rem !important;
  }
  .pb-lg-12,
  .py-lg-12 {
    padding-bottom: 5.5rem !important;
  }
  .pl-lg-12,
  .px-lg-12 {
    padding-left: 5.5rem !important;
  }
  .p-lg-13 {
    padding: 6rem !important;
  }
  .pt-lg-13,
  .py-lg-13 {
    padding-top: 6rem !important;
  }
  .pr-lg-13,
  .px-lg-13 {
    padding-right: 6rem !important;
  }
  .pb-lg-13,
  .py-lg-13 {
    padding-bottom: 6rem !important;
  }
  .pl-lg-13,
  .px-lg-13 {
    padding-left: 6rem !important;
  }
  .p-lg-14 {
    padding: 6.5rem !important;
  }
  .pt-lg-14,
  .py-lg-14 {
    padding-top: 6.5rem !important;
  }
  .pr-lg-14,
  .px-lg-14 {
    padding-right: 6.5rem !important;
  }
  .pb-lg-14,
  .py-lg-14 {
    padding-bottom: 6.5rem !important;
  }
  .pl-lg-14,
  .px-lg-14 {
    padding-left: 6.5rem !important;
  }
  .p-lg-15 {
    padding: 7rem !important;
  }
  .pt-lg-15,
  .py-lg-15 {
    padding-top: 7rem !important;
  }
  .pr-lg-15,
  .px-lg-15 {
    padding-right: 7rem !important;
  }
  .pb-lg-15,
  .py-lg-15 {
    padding-bottom: 7rem !important;
  }
  .pl-lg-15,
  .px-lg-15 {
    padding-left: 7rem !important;
  }
  .p-lg-16 {
    padding: 7.5rem !important;
  }
  .pt-lg-16,
  .py-lg-16 {
    padding-top: 7.5rem !important;
  }
  .pr-lg-16,
  .px-lg-16 {
    padding-right: 7.5rem !important;
  }
  .pb-lg-16,
  .py-lg-16 {
    padding-bottom: 7.5rem !important;
  }
  .pl-lg-16,
  .px-lg-16 {
    padding-left: 7.5rem !important;
  }
  .p-lg-17 {
    padding: 8rem !important;
  }
  .pt-lg-17,
  .py-lg-17 {
    padding-top: 8rem !important;
  }
  .pr-lg-17,
  .px-lg-17 {
    padding-right: 8rem !important;
  }
  .pb-lg-17,
  .py-lg-17 {
    padding-bottom: 8rem !important;
  }
  .pl-lg-17,
  .px-lg-17 {
    padding-left: 8rem !important;
  }
  .p-lg-18 {
    padding: 8.5rem !important;
  }
  .pt-lg-18,
  .py-lg-18 {
    padding-top: 8.5rem !important;
  }
  .pr-lg-18,
  .px-lg-18 {
    padding-right: 8.5rem !important;
  }
  .pb-lg-18,
  .py-lg-18 {
    padding-bottom: 8.5rem !important;
  }
  .pl-lg-18,
  .px-lg-18 {
    padding-left: 8.5rem !important;
  }
  .p-lg-19 {
    padding: 9rem !important;
  }
  .pt-lg-19,
  .py-lg-19 {
    padding-top: 9rem !important;
  }
  .pr-lg-19,
  .px-lg-19 {
    padding-right: 9rem !important;
  }
  .pb-lg-19,
  .py-lg-19 {
    padding-bottom: 9rem !important;
  }
  .pl-lg-19,
  .px-lg-19 {
    padding-left: 9rem !important;
  }
  .p-lg-20 {
    padding: 9.5rem !important;
  }
  .pt-lg-20,
  .py-lg-20 {
    padding-top: 9.5rem !important;
  }
  .pr-lg-20,
  .px-lg-20 {
    padding-right: 9.5rem !important;
  }
  .pb-lg-20,
  .py-lg-20 {
    padding-bottom: 9.5rem !important;
  }
  .pl-lg-20,
  .px-lg-20 {
    padding-left: 9.5rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.25rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n3 {
    margin: -0.25rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n4 {
    margin: -0.25rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n5 {
    margin: -0.25rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n6 {
    margin: -0.25rem !important;
  }
  .mt-lg-n6,
  .my-lg-n6 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n6,
  .mx-lg-n6 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n6,
  .my-lg-n6 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n6,
  .mx-lg-n6 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n7 {
    margin: -0.25rem !important;
  }
  .mt-lg-n7,
  .my-lg-n7 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n7,
  .mx-lg-n7 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n7,
  .my-lg-n7 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n7,
  .mx-lg-n7 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n8 {
    margin: -0.25rem !important;
  }
  .mt-lg-n8,
  .my-lg-n8 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n8,
  .mx-lg-n8 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n8,
  .my-lg-n8 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n8,
  .mx-lg-n8 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n9 {
    margin: -0.25rem !important;
  }
  .mt-lg-n9,
  .my-lg-n9 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n9,
  .mx-lg-n9 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n9,
  .my-lg-n9 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n9,
  .mx-lg-n9 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n10 {
    margin: -0.25rem !important;
  }
  .mt-lg-n10,
  .my-lg-n10 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n10,
  .mx-lg-n10 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n10,
  .my-lg-n10 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n10,
  .mx-lg-n10 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n11 {
    margin: -0.25rem !important;
  }
  .mt-lg-n11,
  .my-lg-n11 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n11,
  .mx-lg-n11 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n11,
  .my-lg-n11 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n11,
  .mx-lg-n11 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n12 {
    margin: -0.25rem !important;
  }
  .mt-lg-n12,
  .my-lg-n12 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n12,
  .mx-lg-n12 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n12,
  .my-lg-n12 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n12,
  .mx-lg-n12 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n13 {
    margin: -0.25rem !important;
  }
  .mt-lg-n13,
  .my-lg-n13 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n13,
  .mx-lg-n13 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n13,
  .my-lg-n13 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n13,
  .mx-lg-n13 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n14 {
    margin: -0.25rem !important;
  }
  .mt-lg-n14,
  .my-lg-n14 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n14,
  .mx-lg-n14 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n14,
  .my-lg-n14 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n14,
  .mx-lg-n14 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n15 {
    margin: -0.25rem !important;
  }
  .mt-lg-n15,
  .my-lg-n15 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n15,
  .mx-lg-n15 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n15,
  .my-lg-n15 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n15,
  .mx-lg-n15 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n16 {
    margin: -0.25rem !important;
  }
  .mt-lg-n16,
  .my-lg-n16 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n16,
  .mx-lg-n16 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n16,
  .my-lg-n16 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n16,
  .mx-lg-n16 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n17 {
    margin: -0.25rem !important;
  }
  .mt-lg-n17,
  .my-lg-n17 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n17,
  .mx-lg-n17 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n17,
  .my-lg-n17 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n17,
  .mx-lg-n17 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n18 {
    margin: -0.25rem !important;
  }
  .mt-lg-n18,
  .my-lg-n18 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n18,
  .mx-lg-n18 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n18,
  .my-lg-n18 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n18,
  .mx-lg-n18 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n19 {
    margin: -0.25rem !important;
  }
  .mt-lg-n19,
  .my-lg-n19 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n19,
  .mx-lg-n19 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n19,
  .my-lg-n19 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n19,
  .mx-lg-n19 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n20 {
    margin: -0.25rem !important;
  }
  .mt-lg-n20,
  .my-lg-n20 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n20,
  .mx-lg-n20 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n20,
  .my-lg-n20 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n20,
  .mx-lg-n20 {
    margin-left: -0.25rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 2rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 2rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 2rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 2rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 2rem !important;
  }
  .m-xl-6 {
    margin: 2.5rem !important;
  }
  .mt-xl-6,
  .my-xl-6 {
    margin-top: 2.5rem !important;
  }
  .mr-xl-6,
  .mx-xl-6 {
    margin-right: 2.5rem !important;
  }
  .mb-xl-6,
  .my-xl-6 {
    margin-bottom: 2.5rem !important;
  }
  .ml-xl-6,
  .mx-xl-6 {
    margin-left: 2.5rem !important;
  }
  .m-xl-7 {
    margin: 3rem !important;
  }
  .mt-xl-7,
  .my-xl-7 {
    margin-top: 3rem !important;
  }
  .mr-xl-7,
  .mx-xl-7 {
    margin-right: 3rem !important;
  }
  .mb-xl-7,
  .my-xl-7 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-7,
  .mx-xl-7 {
    margin-left: 3rem !important;
  }
  .m-xl-8 {
    margin: 3.5rem !important;
  }
  .mt-xl-8,
  .my-xl-8 {
    margin-top: 3.5rem !important;
  }
  .mr-xl-8,
  .mx-xl-8 {
    margin-right: 3.5rem !important;
  }
  .mb-xl-8,
  .my-xl-8 {
    margin-bottom: 3.5rem !important;
  }
  .ml-xl-8,
  .mx-xl-8 {
    margin-left: 3.5rem !important;
  }
  .m-xl-9 {
    margin: 4rem !important;
  }
  .mt-xl-9,
  .my-xl-9 {
    margin-top: 4rem !important;
  }
  .mr-xl-9,
  .mx-xl-9 {
    margin-right: 4rem !important;
  }
  .mb-xl-9,
  .my-xl-9 {
    margin-bottom: 4rem !important;
  }
  .ml-xl-9,
  .mx-xl-9 {
    margin-left: 4rem !important;
  }
  .m-xl-10 {
    margin: 4.5rem !important;
  }
  .mt-xl-10,
  .my-xl-10 {
    margin-top: 4.5rem !important;
  }
  .mr-xl-10,
  .mx-xl-10 {
    margin-right: 4.5rem !important;
  }
  .mb-xl-10,
  .my-xl-10 {
    margin-bottom: 4.5rem !important;
  }
  .ml-xl-10,
  .mx-xl-10 {
    margin-left: 4.5rem !important;
  }
  .m-xl-11 {
    margin: 5rem !important;
  }
  .mt-xl-11,
  .my-xl-11 {
    margin-top: 5rem !important;
  }
  .mr-xl-11,
  .mx-xl-11 {
    margin-right: 5rem !important;
  }
  .mb-xl-11,
  .my-xl-11 {
    margin-bottom: 5rem !important;
  }
  .ml-xl-11,
  .mx-xl-11 {
    margin-left: 5rem !important;
  }
  .m-xl-12 {
    margin: 5.5rem !important;
  }
  .mt-xl-12,
  .my-xl-12 {
    margin-top: 5.5rem !important;
  }
  .mr-xl-12,
  .mx-xl-12 {
    margin-right: 5.5rem !important;
  }
  .mb-xl-12,
  .my-xl-12 {
    margin-bottom: 5.5rem !important;
  }
  .ml-xl-12,
  .mx-xl-12 {
    margin-left: 5.5rem !important;
  }
  .m-xl-13 {
    margin: 6rem !important;
  }
  .mt-xl-13,
  .my-xl-13 {
    margin-top: 6rem !important;
  }
  .mr-xl-13,
  .mx-xl-13 {
    margin-right: 6rem !important;
  }
  .mb-xl-13,
  .my-xl-13 {
    margin-bottom: 6rem !important;
  }
  .ml-xl-13,
  .mx-xl-13 {
    margin-left: 6rem !important;
  }
  .m-xl-14 {
    margin: 6.5rem !important;
  }
  .mt-xl-14,
  .my-xl-14 {
    margin-top: 6.5rem !important;
  }
  .mr-xl-14,
  .mx-xl-14 {
    margin-right: 6.5rem !important;
  }
  .mb-xl-14,
  .my-xl-14 {
    margin-bottom: 6.5rem !important;
  }
  .ml-xl-14,
  .mx-xl-14 {
    margin-left: 6.5rem !important;
  }
  .m-xl-15 {
    margin: 7rem !important;
  }
  .mt-xl-15,
  .my-xl-15 {
    margin-top: 7rem !important;
  }
  .mr-xl-15,
  .mx-xl-15 {
    margin-right: 7rem !important;
  }
  .mb-xl-15,
  .my-xl-15 {
    margin-bottom: 7rem !important;
  }
  .ml-xl-15,
  .mx-xl-15 {
    margin-left: 7rem !important;
  }
  .m-xl-16 {
    margin: 7.5rem !important;
  }
  .mt-xl-16,
  .my-xl-16 {
    margin-top: 7.5rem !important;
  }
  .mr-xl-16,
  .mx-xl-16 {
    margin-right: 7.5rem !important;
  }
  .mb-xl-16,
  .my-xl-16 {
    margin-bottom: 7.5rem !important;
  }
  .ml-xl-16,
  .mx-xl-16 {
    margin-left: 7.5rem !important;
  }
  .m-xl-17 {
    margin: 8rem !important;
  }
  .mt-xl-17,
  .my-xl-17 {
    margin-top: 8rem !important;
  }
  .mr-xl-17,
  .mx-xl-17 {
    margin-right: 8rem !important;
  }
  .mb-xl-17,
  .my-xl-17 {
    margin-bottom: 8rem !important;
  }
  .ml-xl-17,
  .mx-xl-17 {
    margin-left: 8rem !important;
  }
  .m-xl-18 {
    margin: 8.5rem !important;
  }
  .mt-xl-18,
  .my-xl-18 {
    margin-top: 8.5rem !important;
  }
  .mr-xl-18,
  .mx-xl-18 {
    margin-right: 8.5rem !important;
  }
  .mb-xl-18,
  .my-xl-18 {
    margin-bottom: 8.5rem !important;
  }
  .ml-xl-18,
  .mx-xl-18 {
    margin-left: 8.5rem !important;
  }
  .m-xl-19 {
    margin: 9rem !important;
  }
  .mt-xl-19,
  .my-xl-19 {
    margin-top: 9rem !important;
  }
  .mr-xl-19,
  .mx-xl-19 {
    margin-right: 9rem !important;
  }
  .mb-xl-19,
  .my-xl-19 {
    margin-bottom: 9rem !important;
  }
  .ml-xl-19,
  .mx-xl-19 {
    margin-left: 9rem !important;
  }
  .m-xl-20 {
    margin: 9.5rem !important;
  }
  .mt-xl-20,
  .my-xl-20 {
    margin-top: 9.5rem !important;
  }
  .mr-xl-20,
  .mx-xl-20 {
    margin-right: 9.5rem !important;
  }
  .mb-xl-20,
  .my-xl-20 {
    margin-bottom: 9.5rem !important;
  }
  .ml-xl-20,
  .mx-xl-20 {
    margin-left: 9.5rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 2rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 2rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 2rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 2rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 2rem !important;
  }
  .p-xl-6 {
    padding: 2.5rem !important;
  }
  .pt-xl-6,
  .py-xl-6 {
    padding-top: 2.5rem !important;
  }
  .pr-xl-6,
  .px-xl-6 {
    padding-right: 2.5rem !important;
  }
  .pb-xl-6,
  .py-xl-6 {
    padding-bottom: 2.5rem !important;
  }
  .pl-xl-6,
  .px-xl-6 {
    padding-left: 2.5rem !important;
  }
  .p-xl-7 {
    padding: 3rem !important;
  }
  .pt-xl-7,
  .py-xl-7 {
    padding-top: 3rem !important;
  }
  .pr-xl-7,
  .px-xl-7 {
    padding-right: 3rem !important;
  }
  .pb-xl-7,
  .py-xl-7 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-7,
  .px-xl-7 {
    padding-left: 3rem !important;
  }
  .p-xl-8 {
    padding: 3.5rem !important;
  }
  .pt-xl-8,
  .py-xl-8 {
    padding-top: 3.5rem !important;
  }
  .pr-xl-8,
  .px-xl-8 {
    padding-right: 3.5rem !important;
  }
  .pb-xl-8,
  .py-xl-8 {
    padding-bottom: 3.5rem !important;
  }
  .pl-xl-8,
  .px-xl-8 {
    padding-left: 3.5rem !important;
  }
  .p-xl-9 {
    padding: 4rem !important;
  }
  .pt-xl-9,
  .py-xl-9 {
    padding-top: 4rem !important;
  }
  .pr-xl-9,
  .px-xl-9 {
    padding-right: 4rem !important;
  }
  .pb-xl-9,
  .py-xl-9 {
    padding-bottom: 4rem !important;
  }
  .pl-xl-9,
  .px-xl-9 {
    padding-left: 4rem !important;
  }
  .p-xl-10 {
    padding: 4.5rem !important;
  }
  .pt-xl-10,
  .py-xl-10 {
    padding-top: 4.5rem !important;
  }
  .pr-xl-10,
  .px-xl-10 {
    padding-right: 4.5rem !important;
  }
  .pb-xl-10,
  .py-xl-10 {
    padding-bottom: 4.5rem !important;
  }
  .pl-xl-10,
  .px-xl-10 {
    padding-left: 4.5rem !important;
  }
  .p-xl-11 {
    padding: 5rem !important;
  }
  .pt-xl-11,
  .py-xl-11 {
    padding-top: 5rem !important;
  }
  .pr-xl-11,
  .px-xl-11 {
    padding-right: 5rem !important;
  }
  .pb-xl-11,
  .py-xl-11 {
    padding-bottom: 5rem !important;
  }
  .pl-xl-11,
  .px-xl-11 {
    padding-left: 5rem !important;
  }
  .p-xl-12 {
    padding: 5.5rem !important;
  }
  .pt-xl-12,
  .py-xl-12 {
    padding-top: 5.5rem !important;
  }
  .pr-xl-12,
  .px-xl-12 {
    padding-right: 5.5rem !important;
  }
  .pb-xl-12,
  .py-xl-12 {
    padding-bottom: 5.5rem !important;
  }
  .pl-xl-12,
  .px-xl-12 {
    padding-left: 5.5rem !important;
  }
  .p-xl-13 {
    padding: 6rem !important;
  }
  .pt-xl-13,
  .py-xl-13 {
    padding-top: 6rem !important;
  }
  .pr-xl-13,
  .px-xl-13 {
    padding-right: 6rem !important;
  }
  .pb-xl-13,
  .py-xl-13 {
    padding-bottom: 6rem !important;
  }
  .pl-xl-13,
  .px-xl-13 {
    padding-left: 6rem !important;
  }
  .p-xl-14 {
    padding: 6.5rem !important;
  }
  .pt-xl-14,
  .py-xl-14 {
    padding-top: 6.5rem !important;
  }
  .pr-xl-14,
  .px-xl-14 {
    padding-right: 6.5rem !important;
  }
  .pb-xl-14,
  .py-xl-14 {
    padding-bottom: 6.5rem !important;
  }
  .pl-xl-14,
  .px-xl-14 {
    padding-left: 6.5rem !important;
  }
  .p-xl-15 {
    padding: 7rem !important;
  }
  .pt-xl-15,
  .py-xl-15 {
    padding-top: 7rem !important;
  }
  .pr-xl-15,
  .px-xl-15 {
    padding-right: 7rem !important;
  }
  .pb-xl-15,
  .py-xl-15 {
    padding-bottom: 7rem !important;
  }
  .pl-xl-15,
  .px-xl-15 {
    padding-left: 7rem !important;
  }
  .p-xl-16 {
    padding: 7.5rem !important;
  }
  .pt-xl-16,
  .py-xl-16 {
    padding-top: 7.5rem !important;
  }
  .pr-xl-16,
  .px-xl-16 {
    padding-right: 7.5rem !important;
  }
  .pb-xl-16,
  .py-xl-16 {
    padding-bottom: 7.5rem !important;
  }
  .pl-xl-16,
  .px-xl-16 {
    padding-left: 7.5rem !important;
  }
  .p-xl-17 {
    padding: 8rem !important;
  }
  .pt-xl-17,
  .py-xl-17 {
    padding-top: 8rem !important;
  }
  .pr-xl-17,
  .px-xl-17 {
    padding-right: 8rem !important;
  }
  .pb-xl-17,
  .py-xl-17 {
    padding-bottom: 8rem !important;
  }
  .pl-xl-17,
  .px-xl-17 {
    padding-left: 8rem !important;
  }
  .p-xl-18 {
    padding: 8.5rem !important;
  }
  .pt-xl-18,
  .py-xl-18 {
    padding-top: 8.5rem !important;
  }
  .pr-xl-18,
  .px-xl-18 {
    padding-right: 8.5rem !important;
  }
  .pb-xl-18,
  .py-xl-18 {
    padding-bottom: 8.5rem !important;
  }
  .pl-xl-18,
  .px-xl-18 {
    padding-left: 8.5rem !important;
  }
  .p-xl-19 {
    padding: 9rem !important;
  }
  .pt-xl-19,
  .py-xl-19 {
    padding-top: 9rem !important;
  }
  .pr-xl-19,
  .px-xl-19 {
    padding-right: 9rem !important;
  }
  .pb-xl-19,
  .py-xl-19 {
    padding-bottom: 9rem !important;
  }
  .pl-xl-19,
  .px-xl-19 {
    padding-left: 9rem !important;
  }
  .p-xl-20 {
    padding: 9.5rem !important;
  }
  .pt-xl-20,
  .py-xl-20 {
    padding-top: 9.5rem !important;
  }
  .pr-xl-20,
  .px-xl-20 {
    padding-right: 9.5rem !important;
  }
  .pb-xl-20,
  .py-xl-20 {
    padding-bottom: 9.5rem !important;
  }
  .pl-xl-20,
  .px-xl-20 {
    padding-left: 9.5rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.25rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n3 {
    margin: -0.25rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n4 {
    margin: -0.25rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n5 {
    margin: -0.25rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n6 {
    margin: -0.25rem !important;
  }
  .mt-xl-n6,
  .my-xl-n6 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n6,
  .mx-xl-n6 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n6,
  .my-xl-n6 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n6,
  .mx-xl-n6 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n7 {
    margin: -0.25rem !important;
  }
  .mt-xl-n7,
  .my-xl-n7 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n7,
  .mx-xl-n7 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n7,
  .my-xl-n7 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n7,
  .mx-xl-n7 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n8 {
    margin: -0.25rem !important;
  }
  .mt-xl-n8,
  .my-xl-n8 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n8,
  .mx-xl-n8 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n8,
  .my-xl-n8 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n8,
  .mx-xl-n8 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n9 {
    margin: -0.25rem !important;
  }
  .mt-xl-n9,
  .my-xl-n9 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n9,
  .mx-xl-n9 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n9,
  .my-xl-n9 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n9,
  .mx-xl-n9 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n10 {
    margin: -0.25rem !important;
  }
  .mt-xl-n10,
  .my-xl-n10 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n10,
  .mx-xl-n10 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n10,
  .my-xl-n10 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n10,
  .mx-xl-n10 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n11 {
    margin: -0.25rem !important;
  }
  .mt-xl-n11,
  .my-xl-n11 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n11,
  .mx-xl-n11 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n11,
  .my-xl-n11 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n11,
  .mx-xl-n11 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n12 {
    margin: -0.25rem !important;
  }
  .mt-xl-n12,
  .my-xl-n12 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n12,
  .mx-xl-n12 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n12,
  .my-xl-n12 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n12,
  .mx-xl-n12 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n13 {
    margin: -0.25rem !important;
  }
  .mt-xl-n13,
  .my-xl-n13 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n13,
  .mx-xl-n13 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n13,
  .my-xl-n13 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n13,
  .mx-xl-n13 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n14 {
    margin: -0.25rem !important;
  }
  .mt-xl-n14,
  .my-xl-n14 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n14,
  .mx-xl-n14 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n14,
  .my-xl-n14 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n14,
  .mx-xl-n14 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n15 {
    margin: -0.25rem !important;
  }
  .mt-xl-n15,
  .my-xl-n15 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n15,
  .mx-xl-n15 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n15,
  .my-xl-n15 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n15,
  .mx-xl-n15 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n16 {
    margin: -0.25rem !important;
  }
  .mt-xl-n16,
  .my-xl-n16 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n16,
  .mx-xl-n16 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n16,
  .my-xl-n16 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n16,
  .mx-xl-n16 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n17 {
    margin: -0.25rem !important;
  }
  .mt-xl-n17,
  .my-xl-n17 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n17,
  .mx-xl-n17 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n17,
  .my-xl-n17 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n17,
  .mx-xl-n17 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n18 {
    margin: -0.25rem !important;
  }
  .mt-xl-n18,
  .my-xl-n18 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n18,
  .mx-xl-n18 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n18,
  .my-xl-n18 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n18,
  .mx-xl-n18 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n19 {
    margin: -0.25rem !important;
  }
  .mt-xl-n19,
  .my-xl-n19 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n19,
  .mx-xl-n19 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n19,
  .my-xl-n19 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n19,
  .mx-xl-n19 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n20 {
    margin: -0.25rem !important;
  }
  .mt-xl-n20,
  .my-xl-n20 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n20,
  .mx-xl-n20 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n20,
  .my-xl-n20 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n20,
  .mx-xl-n20 {
    margin-left: -0.25rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

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

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

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

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

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

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

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

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

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

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

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

a.text-primary:hover, a.text-primary:focus {
  color: #0d5bdd !important;
}

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

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}

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

a.text-success:hover, a.text-success:focus {
  color: #19692c !important;
}

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

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

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

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

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

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

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

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

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

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

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

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

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

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

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

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

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

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

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: var(--border-color);
  }
  .table .thead-dark th {
    color: inherit;
    border-color: var(--border-color);
  }
}

.skiptranslate {
  display: none;
}

.yk-header {
  width: 100%;
}

.header-main {
  position: relative;
  z-index: 3;
}

.wrapper {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.body {
  min-height: 250px;
  flex: 1;
}

@keyframes stuckMoveDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

.header {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: var(--bg-white);
  color: var(--bg-white-inverse);
  left: 0;
  right: 0;
  top: 0;
  transition: background-color 0.3s, opacity 0.3s;
}

.header a {
  color: currentColor;
}

.header-top {
  transition: 0.3s ease-in-out all;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: var(--bg-gray);
  position: relative;
  z-index: 3;
}

.header-top_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .slogan {
  font-size: 0.8rem;
  color: currentColor;
  padding: 5px 0;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header .slogan_close {
  color: currentColor;
  margin-left: 0.5rem;
}

.header .slogan_close svg {
  width: 12px;
  height: 12px;
}

.header .short-links {
  display: flex;
  justify-content: flex-end;
}

.header .short-links a {
  color: inherit;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
}

.header .short-links a .arrow {
  line-height: 1;
  padding-top: 3px;
}

.header .short-links a .arrow .svg {
  width: 12px;
  height: 12px;
  margin: 0;
  transform: rotate(90deg);
  transition: all 0.5s ease;
}

.header .short-links .icn {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 3px;
}

.header .short-links .icn img {
  border-radius: 50%;
}

.header .short-links .icn .svg {
  width: 100%;
  height: 100%;
}

.header .short-links .icn.flag {
  margin-right: 8px !important;
}

.header .short-links > ul {
  display: flex;
}

.header .short-links > ul > li {
  padding: 0 1rem;
  border-right: solid 1px var(--border-color);
  border-color: var(--border-color);
}

.header .short-links > ul > li:first-child {
  padding-left: 0;
  border-left: none;
}

.header .short-links > ul > li:last-child {
  padding-right: 0;
  border-right: none;
}

.header .short-links > ul .checkbox,
.header .short-links > ul .radio {
  font-size: 0.8rem;
}

.header-middle {
  transition: 0.3s ease-in-out all;
  width: 100%;
  border-bottom: solid 1px var(--border-color);
  background-color: var(--bg-white);
  color: var(--bg-white-inverse);
  position: relative;
  z-index: 4;
}

.header-fixed .header-middle {
  position: fixed;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  left: 0;
  top: 0;
}

@media (min-width: 1200px) {
  .header-fixed .header-middle {
    animation: stuckMoveDown 0.6s;
  }
}

.header-middle .logo-bar {
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-middle .logo-bar .logo {
  width: 130px;
  max-height: 74px;
  min-width: 100px;
  margin: 10px 0;
  display: flex;
  align-items: center;
}

@media (max-width: 1199.98px) {
  .header-middle .logo-bar .logo {
    flex: 1;
    margin-right: auto;
  }
}

.header-middle .logo-bar .logo img[data-ratio="16:9"] {
  max-width: 100px;
}

@media (max-width: 1199.98px) {
  .header-middle .logo-bar .logo img[data-ratio="16:9"] {
    padding: 0 15px;
  }
}

@media (max-width: 991.98px) {
  .header-middle .logo-bar .logo img[data-ratio="16:9"] {
    max-width: 90px;
    padding: 0;
  }
}

.header-middle .logo-bar .logo img[data-ratio="1:1"] {
  max-width: 60px;
}

@media (max-width: 1199.98px) {
  .header-middle .logo-bar .short-links {
    display: none;
  }
}

.header-bottom {
  width: 100%;
  position: relative;
}

@media (min-width: 1200px) {
  .header-bottom {
    border-bottom: solid 1px var(--border-color);
  }
}

.header-bottom .short-links--mobile {
  border-top: solid 1px var(--border-color);
  color: var(--txt-gray);
  padding: 1rem;
}

@media (min-width: 992px) {
  .header-bottom .short-links--mobile {
    display: none;
  }
}

.header-bottom .short-links--mobile h4 {
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 0;
  padding: 0.65rem 1rem;
  padding-left: 0;
}

.header-bottom .short-links--mobile ul {
  width: 100%;
  padding: 0;
}

.header-bottom .short-links--mobile ul li {
  padding: 0.65rem 1rem;
  width: 100%;
  font-size: 0.8rem;
  color: currentColor;
}

.header-bottom .short-links--mobile ul li:hover {
  background: none;
}

.header-bottom .short-links--mobile ul li.dropdown-header {
  padding-left: 0 !important;
}

.header-bottom .short-links--mobile .short-link--item .icn {
  width: 1rem;
  height: 1rem;
}

.header-bottom .short-links--mobile .short-link--item .icn .svg {
  width: 1rem;
  height: 1rem;
}

.header-bottom .short-links--mobile .short-link--item .icn-txt {
  font-size: 0.8rem;
  display: inline-block;
}

.header-bottom .short-links--mobile .short-link--item .theme-switch {
  padding: 0.65rem 1rem;
  display: block;
  color: currentColor;
}

.header .icn-txt {
  padding: 0 2px;
  font-weight: 300;
}

@media (max-width: 767.98px) {
  .header .icn-txt {
    display: none;
  }
}

.side-account {
  display: flex;
  align-items: center;
}

.side-account > li {
  margin-right: 1.5rem;
  position: relative;
  font-size: 0.8rem;
}

@media (max-width: 991.98px) {
  .side-account > li {
    position: relative;
  }
}

@media (max-width: 767.98px) {
  .side-account > li {
    margin-right: 1rem;
  }
}

.side-account > li:last-child {
  margin-right: 0;
}

.side-account .header-account {
  display: flex;
  align-items: center;
}

@media (max-width: 991.98px) {
  .side-account .header-account {
    padding: 0 15px;
  }
}

@media (max-width: 767.98px) {
  .side-account .header-account {
    padding: 0px;
  }
}

.side-account .header-account .user-title {
  white-space: nowrap;
}

.side-account .header-account .user-avatar {
  background: #ddd;
  border-radius: 50%;
  overflow: hidden;
  width: 32px;
  height: 32px;
  min-width: 32px;
}

.side-account .header-account .arrow {
  font-size: 10px;
}

.side-account .login-user {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 1.75rem;
  border-bottom: solid 1px var(--border-color);
}

.side-account .login-user .user-title .hello {
  font-size: 0.75rem;
  color: var(--txt-gray);
  display: block;
  text-transform: uppercase;
}

.side-account .login-user .user-title .username {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--txt-body);
}

.side-account .login-user .icn {
  width: 16px;
  height: 16px;
  fill: currentColor;
  padding: 0;
}

.side-account .user-nav {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .side-account .user-nav {
    padding-right: 1rem;
  }
}

.side-account .icn {
  flex: 0 0 20px;
  max-width: 20px;
  width: 18px;
  height: 18px;
  margin: 0;
  margin-right: 3px;
  padding: 0;
  display: flex;
  border-radius: 50%;
  /* background-color: $bg-gray;*/
}

.side-account .icn .svg {
  width: 100%;
  height: 100%;
}

.side-account > li > a {
  display: flex;
  align-items: center;
}

.side-account .header-cart {
  position: relative;
}

.side-account .header-cart .shopping-cart {
  display: flex;
  align-items: center;
}

.side-account .header-cart .cart-items {
  border-radius: 50%;
  width: 16px;
  height: 16px;
  min-width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-color);
  color: var(--brand-color-inverse);
  font-size: 9px;
  font-weight: 300;
}

.side-account .header-cart-dropdown {
  max-width: 400px;
}

/*main search*/
.main-search-bar {
  background-color: var(--bg-white);
  position: absolute;
  bottom: 0;
  z-index: 100;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  min-height: 100%;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  backface-visibility: hidden;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: all 0.5s ease;
}

.main-search-bar--on .main-search-bar {
  bottom: -100%;
  opacity: 1;
  visibility: visible;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
}

.main-search-bar--on .search-overlay {
  display: block;
}

.back-overlay, .search-overlay {
  transition: all 1s ease-in-out;
  position: fixed;
  background-color: rgba(35, 35, 35, 0.8);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
  display: none;
  z-index: 99;
}

.search-overlay {
  z-index: 2;
}

.header-search-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-search-form__input {
  background: none;
  border: none;
  border-radius: 0px;
  padding: 0 10px;
  margin: 0;
  width: 100%;
  height: 40px;
  font-size: 0.85rem;
  font-weight: 300;
  flex: 1;
  color: var(--txt-gray);
}

.header-search-form__submit, .header-search-form__close {
  background: none;
  border: none;
  border-radius: 0px;
  height: 40px;
  width: 40px;
  opacity: 0.6;
}

.header-search-form__submit img, .header-search-form__close img,
.header-search-form__submit svg,
.header-search-form__close svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

[data-theme="dark"] .header-search-form__submit img, [data-theme="dark"] .header-search-form__close img, [data-theme="dark"] .header-search-form__submit svg, [data-theme="dark"] .header-search-form__close svg {
  fill: #f3f3f3;
}

.header-search-form__close img {
  width: 14px;
  height: 14px;
}

.header-search-form__close:hover {
  opacity: 1;
}

@media (min-width: 1200px) {
  .mini-cart {
    min-width: 400px;
  }
}

@media (max-width: 1199.98px) {
  .mini-cart {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}

.mini-cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.mini-cart__head h6 {
  font-size: 1rem;
  padding: 0;
  margin: 0;
  flex: 1;
}

.mini-cart__head .close .svg {
  fill: currentColor;
  opacity: 0.6;
  width: 20px;
  height: 20px;
  margin: 0;
}

.mini-cart__body {
  padding: 10px 1rem;
  position: relative;
}

.mini-cart__foot {
  padding: 1rem;
  border-top: solid 1px var(--border-color);
}

@media (max-width: 1199.98px) {
  .mini-cart__foot {
    margin-top: auto;
  }
}

.mini-cart__foot .cart-total .list-group-item {
  padding: 0.5rem 0;
}

.mini-cart .list-cart {
  min-height: 200px;
  overflow-y: auto;
}

.mini-cart .list-cart .list-group-item {
  flex-direction: row;
}

@media (max-width: 1199.98px) {
  .mini-cart .list-cart .product-price del {
    display: block;
  }
  .mini-cart .cart-total .hightlighted {
    padding: 0.375rem 0;
  }
  .mini-cart .product-profile__thumbnail img {
    max-width: 50px;
  }
}

@media (max-width: 991.98px) {
  .mini-cart .product-profile {
    max-width: inherit;
    margin-bottom: 0;
  }
  .mini-cart .list-cart .product-price {
    flex: 0 0 auto;
    padding-top: 0;
    padding-left: 25px;
  }
}

.cart__points {
  text-align: center;
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--brand-color);
}

.cart__points .svg {
  fill: currentColor;
  margin-right: 5px;
}

.navigations {
  width: 100%;
  margin: 0;
  display: flex;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.navigations.less {
  justify-content: flex-start;
}

.navigations > li {
  display: block;
  position: static;
  margin: 0 2rem;
}

.navigations > li:first-child {
  margin-left: 0;
  padding-left: 0;
}

.navigations > li:hover a {
  color: var(var(--brand-color));
}

.navigations > li > a {
  color: inherit;
  display: block;
  overflow: hidden;
  padding: 1.2rem 0;
  position: relative;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1;
  font-weight: 500;
  font-size: 0.8rem;
  color: currentColor;
  text-transform: uppercase;
}

.navigations > li > a:hover {
  text-decoration: none;
}

.navigations > li > a:after, .navigations > li > a:before {
  content: "";
  background: transparent;
  height: 2px;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transition: 0.4s all ease;
}

.navigations > li > a:before {
  left: auto;
  right: 50%;
}

.navigations > li .link__mobilenav {
  display: none;
}

.navigations > li .subnav {
  display: block;
}

.navigations > li .subnav__wrapper {
  background: var(--bg-white);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  left: 0;
  margin: 0;
  position: absolute;
  right: 0;
  width: 100%;
  top: 120%;
  z-index: 2;
  padding-bottom: 10px;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: all .3s ease-in-out;
}

.navigations > li.active > a, .navigations > li.nice-select.open > a {
  color: var(--brand-color);
}

.navigations > li.active .subnav__wrapper, .navigations > li.nice-select.open .subnav__wrapper,
.navigations > li.active .arrow,
.navigations > li.nice-select.open .arrow {
  opacity: 1;
  visibility: visible;
}

.navigations > li.active .subnav__wrapper, .navigations > li.nice-select.open .subnav__wrapper {
  top: 100%;
  transform: scaleY(1);
}

.navigations > li.active .nav__panel, .navigations > li.nice-select.open .nav__panel {
  opacity: 1;
}

.navigations .more svg {
  width: 24px;
  height: 17px;
  fill: #888;
}

/*Nav mobile toggle*/
.navs_toggle {
  cursor: pointer;
  display: none;
  height: 30px;
  line-height: 1;
  width: 30px;
  z-index: 1;
  margin-right: 1rem;
}

.navs_toggle span {
  background: var(--bg-white-inverse);
  border-radius: 3px;
  display: block;
  transition: 0.3s all ease;
  height: 2px;
  width: 30px;
  margin-bottom: 6px;
}

.navs_toggle span:nth-child(1) {
  width: 25px;
}

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

.navs_toggle:hover span:nth-child(3) {
  width: 25px;
}

.navs_toggle:hover span:nth-child(2) {
  width: 30px;
}

.navs_toggle:hover span:nth-child(1) {
  width: 20px;
}

.nav__sub-panels {
  display: flex;
  padding: 1.5rem 0 0;
}

@media (max-width: 1199.98px) {
  .nav__sub-panels {
    padding: 0.5rem 0;
  }
}

.nav__sub-panels .nav__panel {
  display: flex;
  flex-direction: column;
  padding-inline-end: 1rem;
  min-width: 200px;
  transition: opacity .2s ease-in-out;
  opacity: 0;
}

.nav__sub-panels .nav__panel.nav__panel--two-column {
  min-width: 400px;
}

.nav__sub-panels .nav__panel.nav__panel--two-column .nav__list {
  flex-wrap: wrap;
  display: flex;
}

.nav__sub-panels .nav__panel.nav__panel--two-column .nav__list .nav__list-item {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 7px;
  word-wrap: break-word;
}

.nav__sub-panels .nav__panel .nav__panel-title {
  font-size: .85rem;
  color: var(--txt-body);
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 20px;
}

@media (max-width: 1199.98px) {
  .nav__sub-panels .nav__panel .nav__panel-title {
    padding-bottom: 5px;
  }
}

.nav__sub-panels .nav__panel .nav__list {
  list-style: none;
  margin: 0;
}

.nav__sub-panels .nav__panel .nav__list .nav__list-item {
  display: flex;
}

.nav__sub-panels .nav__panel .nav__list .nav__list-item .nav__list-item__link {
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--txt-body);
  text-transform: none;
  padding: 7px 0;
}

.nav__sub-panels .nav__panel .nav__list .nav__list-item .nav__list-item__link:hover {
  color: var(--brand-color);
}

@media only screen and (max-width: 1200px) {
  .navs_toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .navs_toggle:after {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    content: "";
    transition: .3s ease-in-out all;
    -webkit-transition: .3s ease-in-out all;
  }
  .navs_toggle.active:after, .navs_toggle.nice-select.open:after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  body.toggled_left .common_overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition: opacity 0.5s, transform 0.5s;
  }
  body.toggled_left .navigation-wrapper {
    opacity: 1;
    transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
  }
  .navigation-wrapper {
    background: var(--bg-white);
    color: var(--bg-white-inverse);
    bottom: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    left: 0;
    opacity: 0;
    overflow: auto;
    padding: 0;
    position: fixed;
    top: 0;
    transform: translate(-100%, 0px);
    transition: all 300ms ease 0s;
    width: 260px;
    z-index: 110;
  }
  .navigations {
    margin: 0;
    width: 100%;
    padding: 0;
    flex-direction: column;
    justify-content: flex-start;
    display: block;
  }
  .navigations > li {
    display: block;
    float: none;
    width: auto;
    margin: 0;
    padding: 0;
    position: relative;
    border-bottom: solid 1px var(var(--border-color));
  }
  .navigations > li > a {
    text-align: left;
    color: inherit;
    display: block;
    padding: 20px 15px;
    position: relative;
    overflow: visible;
    height: auto;
  }
  .navigations > li > a:after, .navigations > li > a:before {
    content: normal;
  }
  .navigations > li .link__mobilenav {
    bottom: 0;
    cursor: pointer;
    display: block;
    opacity: 1;
    position: absolute;
    right: 0;
    top: 0;
    visibility: visible;
    width: 40px;
    z-index: 1;
  }
  .navigations > li .link__mobilenav:before, .navigations > li .link__mobilenav:after {
    background: #000;
    content: "";
    height: 2px;
    left: 14px;
    position: absolute;
    top: 15px;
    width: 12px;
  }
  .navigations > li .link__mobilenav:after {
    transform: rotate(90deg);
  }
  .navigations > li .link__mobilenav.active:after, .navigations > li .link__mobilenav.nice-select.open:after {
    content: normal;
  }
  .navigations > li .subnav {
    display: none;
    position: relative;
    width: 100%;
  }
  .navigations > li .subnav .subnav__wrapper {
    background: var(--bg-white);
    border-top: none;
    box-shadow: none;
    display: inline-block;
    opacity: 1;
    position: relative;
    top: 0;
    visibility: visible;
    width: 100%;
    transform: none;
    padding: 0;
  }
  .nav__sub-panels {
    flex-direction: column;
  }
  .nav__sub-panels .nav__panel {
    min-width: auto;
    opacity: 1;
    padding: 0 0 10px 0;
  }
  .nav__sub-panels .nav__panel.nav__panel--two-column {
    min-width: auto;
  }
  .nav__sub-panels .nav__panel.nav__panel--two-column .nav__list {
    flex-wrap: nowrap;
    flex-direction: column;
    min-height: auto;
    max-height: none;
  }
  .nav__sub-panels .nav__panel.nav__panel--two-column .nav__list .nav__list-item {
    flex: auto;
    max-width: none;
  }
}

.main-footer {
  background: #474747;
  color: #fff;
  padding-top: 4rem;
  font-size: 0.9rem;
}

.main-footer.v2 {
  background-color: #fff;
  padding: 0;
  color: var(--txt-body);
}

.main-footer.v2 .footer-top {
  padding: 1rem 0;
}

.main-footer.v2 .footer-bottom {
  padding: 1rem 10px;
  border-top: solid 1px var(--border-color);
}

.main-footer.v2 .footer-copyright-info {
  font-size: 0.8rem;
  color: var(--txt-body);
  text-align: center;
}

@media (max-width: 767.98px) {
  .main-footer.v2 .footer-copyright-info {
    padding: .5rem;
  }
}

.main-footer.v2 .footer-copyright-info a {
  color: currentColor;
}

@media (max-width: 767.98px) {
  .main-footer.v2 .nav--secondary {
    justify-content: center;
  }
}

.main-footer.v2 .nav--secondary a {
  padding: 0 0.8rem;
  font-size: 0.8rem;
  position: relative;
}

.main-footer.v2 .nav--secondary a:first-child {
  padding-left: 0;
}

.main-footer.v2 .nav--secondary a:last-child {
  padding-right: 0;
}

.main-footer.v2 .nav--secondary a::after {
  position: absolute;
  left: 0;
  height: 100%;
  width: 1px;
  background-color: currentColor;
}

@media (max-width: 767.98px) {
  .main-footer.v2 .nav--secondary a::after {
    right: 0;
    left: auto;
  }
}

@media (max-width: 767.98px) {
  .main-footer.v2 .nav--secondary a:last-child::after {
    display: none;
  }
}

.main-footer.v2 .socail-follow {
  color: #fff;
}

@media (max-width: 1199.98px) {
  .main-footer.v2 .socail-follow {
    margin-top: 25px;
    text-align: center;
  }
}

.main-footer.v2 .socail-follow .icon:before {
  background: rgba(0, 0, 0, 0.2);
}

.main-footer .footer-top {
  padding-bottom: 4rem;
}

.main-footer .block-content .footer-logo {
  max-width: 150px;
}

.main-footer .block-content h5 {
  font-size: 1rem;
  font-weight: 500;
  padding-top: 4px;
  margin-bottom: 2.25rem;
}

@media (max-width: 991.98px) {
  .main-footer .block-content h5 {
    margin-bottom: 1.15rem;
  }
}

@media (max-width: 767.98px) {
  .main-footer .block-content h5.toggle__trigger {
    position: relative;
  }
  .main-footer .block-content h5.toggle__trigger::after {
    content: "";
    position: absolute;
    right: 17px;
    width: 10px;
    height: 10px;
    border-left: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(-136deg);
    top: 18px;
  }
  .main-footer .block-content h5.toggle__trigger.is-active::after {
    transform: rotate(45deg);
  }
}

.main-footer .block-content p {
  font-size: inherit;
  display: flex;
  margin-bottom: 0.8rem;
}

.main-footer .block-content p a {
  color: inherit;
  position: relative;
}

.main-footer .block-content p i {
  font-size: 1rem;
  margin-top: 5px;
  margin-inline-end: 1rem;
  display: block;
}

.main-footer .block-content ul li a {
  font-size: inherit;
  margin-bottom: 0.8rem;
  display: inline-block;
}

.main-footer .block-content ul li a:hover {
  color: currentColor;
}

@media (max-width: 767.98px) {
  .main-footer .block-content .toggle__target {
    display: none;
  }
}

.main-footer .footer-copyright {
  border-top: solid 1px rgba(255, 255, 255, 0.3);
  background: #474747;
  color: #fff;
  padding: 1rem 0;
}

.main-footer .footer-copyright p {
  margin-bottom: 0;
  display: block;
  line-height: 1.2;
}

@media (max-width: 767.98px) {
  .main-footer .footer-copyright {
    text-align: center;
  }
  .main-footer .footer-copyright p {
    text-align: center;
    display: block;
    margin-bottom: 1rem;
  }
}

.main-footer .footer-copyright .footer-menu ul {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 767.98px) {
  .main-footer .footer-copyright .footer-menu ul {
    justify-content: center;
  }
}

.main-footer .footer-copyright .footer-menu ul li {
  margin: 0 1rem;
}

.main-footer .footer-copyright .footer-menu ul li a {
  margin-bottom: 0;
}

.main-footer .footer-copyright .footer-menu ul li:last-child {
  margin-right: 0;
}

.main-footer .footer-copyright-info p a {
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
}

.socail-follow .label, .socail-follow .product-line-info .value, .product-line-info .socail-follow .value {
  display: inline-block;
  color: var(--txt-body);
  margin-right: 1rem;
}

.socail-follow .icon {
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  line-height: 36px;
  height: 36px;
  width: 36px;
  margin-right: 0.8rem;
  color: var(--brand-color);
  border-radius: 100%;
  position: relative;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.socail-follow .icon:last-child {
  margin-right: 0;
}

.socail-follow .icon:before, .socail-follow .icon:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 100%;
  background: rgba(169, 169, 169, 0.07);
  z-index: 0;
  margin: auto;
}

.socail-follow .icon:after {
  width: 100%;
  height: 100%;
  transform: scale(0);
  background: var(--brand-color);
}

.socail-follow .icon:hover {
  animation-name: bubble2;
  animation-duration: 0.5s;
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
}

.socail-follow .icon:hover:after {
  animation-name: bubble;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.socail-follow .icon:hover i {
  color: var(--brand-color);
}

.socail-follow .icon i {
  position: relative;
  z-index: 1;
  color: var(--txt-gray);
}

@keyframes bubble {
  100% {
    transform: scale(1);
  }
}

@keyframes bubble2 {
  100% {
    color: #fff;
  }
}

.socail-follow .more {
  font-size: 0.8rem;
  z-index: 1;
  position: relative;
}

.socail-follow .icon-twitter {
  color: #4099ff;
}

.socail-follow .icon-linkedin {
  color: #4099ff;
}

.socail-follow .icon-pinterest {
  color: #4099ff;
}

.socail-follow .icon-skype {
  color: #4099ff;
}

.socail-follow .icon-facebook {
  color: #3b5998;
}

.socail-follow .icon-instagram {
  color: #3f729b;
}

.socail-follow .icon-gplus {
  color: #dc4e41;
}

.socail-follow-lg {
  text-align: center;
}

.socail-follow-lg .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin: 10px;
}

.sub-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border-radius: 2px;
  border: solid 1px var(--border-color);
  padding: 6px;
}

.sub-form input[type="text"], .sub-form .form select[type="text"], .form .sub-form select[type="text"], .sub-form .form-control select[type="text"], .form-control .sub-form select[type="text"], .sub-form .form textarea[type="text"], .form .sub-form textarea[type="text"], .sub-form .form-control textarea[type="text"], .form-control .sub-form textarea[type="text"] {
  flex: 1;
  background: none;
  height: 2.5rem;
  width: 100%;
  line-height: 1.2;
  font-size: 0.9em;
  padding: 5px 10px;
  margin: 0;
  margin-inline-end: -3px;
  border: none;
  border-radius: 0px;
  color: currentColor;
  vertical-align: top;
  min-width: 0px;
}

.sub-form .btn-submit {
  font-size: 1em;
  background: var(--brand-color);
  height: 2.5rem;
  width: 2.5rem;
  line-height: 1.2;
  padding: 5px 10px;
  margin: 0;
  border: none;
  color: #fff;
  vertical-align: top;
  font-weight: 300;
  border-radius: 2px;
  cursor: pointer;
}

footer .socail-follow .icon-twitter,
footer .socail-follow .icon-facebook,
footer .socail-follow .icon-instagram,
footer .socail-follow .icon-gplus {
  color: currentColor;
}

#back-top {
  display: inline-block;
  background-color: var(--brand-color);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 0.5rem;
  right: 1rem;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#back-top:after {
  content: "";
  border: solid var(--brand-color-inverse);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-135deg);
  margin-top: 5px;
}

#back-top:hover {
  cursor: pointer;
}

#back-top:active {
  background-color: #555;
}

#back-top.show {
  opacity: 1;
  visibility: visible;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: 400;
  font: inherit;
  font-family: inherit;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.42857;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
}

@font-face {
  font-display: auto;
}

html {
  font-size: 16px;
}

strong {
  font-weight: 500 !important;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow-x: hidden;
}

svg {
  fill: currentColor;
}

a:hover {
  color: var(--brand-color);
}

[class*="translated-"] body {
  top: 0 !important;
}

@media (min-width: 1366px) {
  .container {
    max-width: 1600px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding-left: 5%;
    padding-right: 5%;
  }
}

*,
*:before,
*:after {
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
}

ol,
ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

img {
  border: none;
  outline: none;
  margin: 0 auto;
  max-width: 100%;
}

img {
  -ms-interpolation-mode: bicubic;
}

hr {
  border-color: var(--border-color);
}

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

.bg-brand {
  background-color: var(--brand-color);
  color: var(--brand-color-inverse);
}

.bg-gray,
.bg-light {
  background-color: var(--bg-gray) !important;
}

.bg-cover {
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}

.bg-h-100 {
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: auto 100% !important;
}

.bg-white {
  background: var(--bg-white) !important;
}

.align-bottom-right {
  bottom: 0;
  right: 0;
  position: absolute;
}

.list-vertical li {
  padding: 0.5rem 0;
}

.embed-responsive-item-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.list-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.list-actions li {
  margin-right: 15px;
}

.list-actions li a {
  color: #65727e;
}

.list-actions li a .svg {
  fill: currentColor;
  width: 12px;
  height: 12px;
  margin: 0;
}

.list-actions li a:hover .svg {
  opacity: 1;
}

.list-actions li:last-child {
  margin-right: 0;
}

.payment-list {
  display: flex;
  margin: 2rem auto;
  justify-content: center;
}

.payment-list p {
  margin-right: 10px;
}

.payment-list .payment-list__item {
  margin-right: 5px;
}

.payment-list .payment-list__item:last-child {
  margin-right: 0;
}

.icon__action {
  color: var(--body-color);
}

.icon__action svg {
  fill: currentColor;
  opacity: 0.6;
  width: 18px;
  height: 18px;
  margin: 0;
}

.links-inline {
  display: flex;
  align-items: center;
  justify-content: center;
}

.links-inline li {
  margin: 0 0.5rem;
}

.fluid-height {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.contact-box h6 {
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

.contact-box p {
  font-size: 0.8rem;
}

@media (min-width: 1200px) {
  .map-wrapper .iframe-wrapper {
    padding-top: 25%;
  }
}

.iframe-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

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

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

.iti .iti__country {
  font-size: 12px;
  overflow: hidden;
}

.iti .iti__country .iti__country-name {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 70%;
  display: inline-block;
}

.iti .iti__flag-container {
  position: static;
}

.iti .iti__flag-container:hover .iti__selected-flag {
  background-color: transparent !important;
}

.iti .iti__flag-container .iti__selected-flag {
  width: 30%;
  position: absolute;
  background-color: transparent;
  justify-content: center;
  font-size: 0.8rem;
  min-width: 90px;
}

.iti .iti__flag-container .iti__selected-flag .iti__flag {
  min-width: 20px;
}

.iti .iti__flag-container .iti__country-list {
  width: 100%;
  top: 100%;
  bottom: auto;
  background-color: var(--bg-white);
  color: var(--bg-white-inverse);
}

.iti-mobile > .iti {
  width: auto;
}

.digit-group {
  position: relative;
}

.digit-group .error-info {
  position: absolute;
  right: -1.5rem;
  display: inline-flex;
  align-items: center;
  height: 50px;
}

.video_frame_wrap * {
  width: 100%;
  height: 100%;
}

.content-min-height {
  min-height: 100px;
}

.title_with_backgroundimage {
  background-image: url("../../../noimages/2000x500.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.scroll-y {
  overflow: hidden;
  overflow-y: auto;
  padding-right: 0.5rem;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}

.scroll-y::-webkit-scrollbar {
  width: 8px;
}

.scroll-y::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.scroll-y::-webkit-scrollbar-thumb {
  background: #b4b4b4;
}

.scroll-y::-webkit-scrollbar-thumb:hover {
  background: #818181;
}

.or {
  display: block;
  margin: 35px auto;
  text-align: center;
  color: var(--txt-gray);
  position: relative;
  font-size: 0.8rem;
}

.or span {
  background: var(--bg-white);
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.or:after, .or:before {
  content: "";
  background: var(--border-color);
  height: 1px;
  width: 40%;
  position: absolute;
  top: 50%;
  margin-top: -1px;
}

.or:after {
  left: 0;
}

.or:before {
  right: 0;
}

.subscribe-wrapper button.btn.btn-submit {
  position: absolute;
  right: 0;
}

.section {
  padding: calc(2rem + 2vw) 0;
  padding: clamp(1.75rem, 5vw, 5rem) 0;
}

.section-content {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 1199.98px) {
  .section-content {
    margin-bottom: 1rem;
  }
}

@media (max-width: 991.98px) {
  .section-content {
    margin-bottom: 1rem;
  }
}

.section-content h1 {
  font-size: calc(112.5% + 0.7vw);
  margin: 0;
}

.section-content h2 {
  display: inline-block;
  position: relative;
  margin: 0;
  margin-bottom: 0.5rem;
  padding: 0;
  font-size: calc(100% + 1vw);
  font-weight: 300;
}

.section-content h2 span {
  display: block;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--txt-body);
}

.section-content h2:before, .section-content h2:after {
  background-color: currentColor;
  height: 1px;
  left: 100%;
  margin-left: 1rem;
  position: absolute;
  top: 50%;
  width: 2rem;
}

.section-content h2:after {
  left: auto;
  right: 100%;
  margin-right: 1rem;
}

.section-content h3 {
  font-size: calc(112.5% + 0.4vw);
  margin-bottom: 0.5rem;
  padding: 0;
}

.section-content-center {
  justify-content: center;
}

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

.section--bg {
  background-color: var(--bg-gray);
  position: relative;
  z-index: 1;
  color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (min-width: 1200px) {
  .section--bg {
    min-height: 475px;
  }
}

.section--bg:after {
  background: black;
  background: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0) 100%);
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.2;
}

@media (max-width: 767.98px) {
  .section--bg:after {
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    opacity: 0.99;
  }
}

@media (max-width: 767.98px) {
  .section--bg {
    min-height: inherit;
    background-size: cover;
    background-color: #f1f3f6;
  }
}

.section.parallax-bg {
  background-attachment: fixed;
  background-position: center;
}

@media (max-width: 1199.98px) {
  .section.parallax-bg {
    background-attachment: inherit;
  }
}

@media (max-width: 767.98px) {
  .section.category-collectionLayout-1 .section-content {
    flex-wrap: wrap;
  }
}

@media (max-width: 767.98px) {
  .section.category-collectionLayout-1 .section-content .tabs {
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 1rem;
    display: block;
    white-space: nowrap;
    text-align: center;
  }
  .section.category-collectionLayout-1 .section-content .tabs li {
    display: inline-block;
  }
}

a:focus {
  outline: none !important;
  box-shadow: none !important;
}

button:focus {
  outline: none !important;
  box-shadow: none !important;
}

button.disabled, button:disabled {
  cursor: not-allowed;
}

.btn {
  border-radius: 3px;
}

.btn.btn-brand {
  color: var(--brand-color-inverse);
  background: var(--brand-color);
}

.btn.btn-wide {
  padding-left: 2rem;
  padding-right: 2rem;
}

.btn.btn-white {
  background: #fff;
  color: #000;
}

.btn.btn-pill {
  border-radius: 2rem;
}

.btn.btn-outline {
  border-color: var(--txt-body);
}

.btn.btn-outline-brand {
  background: none;
  color: var(--brand-color);
  border-color: var(--brand-color);
}

.btn.btn-outline-gray {
  background: none;
  color: var(--txt-body);
  border-color: var(--border-color);
}

.btn.btn-border {
  background: none;
  border: solid 1px #212529;
  color: var(--txt-body);
}

.btn.btn-border:hover {
  background: #212529;
  color: #fff;
}

.btn.btn-link {
  text-decoration: none;
  color: var(--txt-body);
  padding: 0;
}

.btn.btn-link .arrow {
  display: inline-block;
  transition: all .2s ease-in-out;
}

.btn.btn-link .arrow .svg {
  width: 12px;
  height: 12px;
  margin-right: 5px;
  fill: currentcolor;
}

.btn.btn-link:hover .arrow {
  transform: translateX(0.25rem);
}

.link-arrow {
  padding-right: 20px;
  color: var(--brand-color);
  position: relative;
  font-size: 0.8rem;
  white-space: nowrap;
  color: var(--brand-color);
  display: inline-block;
  background: none;
  border: none;
  height: auto;
}

.link-arrow:before {
  content: '';
  background: transparent;
  width: 8px;
  height: 8px;
  transform: rotate(134deg);
  border: solid 1px currentColor;
  border-bottom: 0;
  border-right: 0;
  border-color: currentColor;
  position: absolute;
  top: calc(50% - 4px);
  right: 0.5rem;
  transition: all 0.2s ease-in-out;
}

.link-text {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--brand-color);
}

.link-text .icn {
  width: 12px;
  height: 12px;
  display: block;
  margin-right: 8px;
}

.link-text .icn svg {
  width: 100%;
  height: 100%;
  display: flex;
  fill: currentColor;
}

.orientation-landscape {
  display: none;
}

@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: landscape) {
  .orientation-landscape {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
    text-align: center;
  }
  .orientation-landscape_img {
    margin: 1.5rem auto;
    max-width: 120px;
  }
  .orientation-landscape_message {
    font-size: 1rem;
    font-weight: 500;
  }
}

@keyframes gb-loader-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.gb-loader {
  width: 100px;
  height: 100px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 80 80' xml:space='preserve'%3e%3cpath fill='%23010101' d='M40,72C22.4,72,8,57.6,8,40C8,22.4, 22.4,8,40,8c17.6,0,32,14.4,32,32c0,1.1-0.9,2-2,2 s-2-0.9-2-2c0-15.4-12.6-28-28-28S12,24.6,12,40s12.6, 28,28,28c1.1,0,2,0.9,2,2S41.1,72,40,72z'%3e%3c/path%3e%3c/svg%3e");
  animation: gb-loader-animation 0.7s linear infinite;
}

.gb-btn {
  position: relative;
  outline: none;
  cursor: pointer;
}

.gb-btn::after {
  width: 2rem;
  height: 2rem;
  position: absolute;
  margin: -1rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 80 80' xml:space='preserve'%3e%3cpath fill='%23000' d='M40,72C22.4,72,8,57.6,8,40C8,22.4, 22.4,8,40,8c17.6,0,32,14.4,32,32c0,1.1-0.9,2-2,2 s-2-0.9-2-2c0-15.4-12.6-28-28-28S12,24.6,12,40s12.6, 28,28,28c1.1,0,2,0.9,2,2S41.1,72,40,72z'%3e%3c/path%3e%3c/svg%3e");
  animation: gb-loader-animation 0.7s linear infinite;
}

.gb-btn.gb-is-loading {
  color: transparent;
}

.gb-btn.gb-is-loading:after {
  content: '';
}

.gb-btn-primary:after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 80 80' xml:space='preserve'%3e%3cpath fill='%23fff' d='M40,72C22.4,72,8,57.6,8,40C8,22.4, 22.4,8,40,8c17.6,0,32,14.4,32,32c0,1.1-0.9,2-2,2 s-2-0.9-2-2c0-15.4-12.6-28-28-28S12,24.6,12,40s12.6, 28,28,28c1.1,0,2,0.9,2,2S41.1,72,40,72z'%3e%3c/path%3e%3c/svg%3e");
  animation: gb-loader-animation 0.7s linear infinite;
}

.card {
  border: solid 1px var(--border-color);
  background: var(--bg-white);
  color: var(--bg-white-inverse);
}

.card-header {
  background: none;
  border: none;
}

.card-header h6 {
  font-size: 0.95rem;
  margin: 0;
}

.card-header p {
  color: var(--txt-gray);
  font-size: 0.8rem;
}

.card {
  margin-bottom: 30px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.card__header {
  display: flex;
  justify-content: space-between;
  padding: 30px 25px 0 25px;
}

.card__title {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0;
  font-weight: 500;
}

.card__section {
  padding: 20px 25px;
}

.timeline-orders {
  margin: 2rem 0;
}

.timeline-comments {
  display: flex;
}

.timeline-comments .timeline-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--brand-color);
  color: var(--brand-color-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  overflow: hidden;
}

.timeline-comments .timeline-comments-box {
  flex: 1;
}

@media (max-width: 767.98px) {
  .timeline-comments .timeline-comments-box .input-group .form-control {
    flex: 1;
    margin-bottom: .875rem;
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .timeline-comments .timeline-comments-box .input-group .input-group-append > .btn {
    border-radius: 3px;
  }
}

/* Timeline */
.timeline {
  border-left: 2px solid var(--brand-color);
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
  color: rgba(0, 0, 0, 0.8);
  margin: 30px auto;
  margin-left: 153px;
  position: relative;
  line-height: 1.4em;
  font-size: 0.8rem;
  padding: 0 50px;
  list-style: none;
}

@media (max-width: 767.98px) {
  .timeline {
    margin-left: 0px;
    padding: 0 20px;
  }
}

.timeline p {
  font-size: 0.8rem;
}

.timeline .dropdown-toggle {
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .timeline .dropdown-toggle {
    white-space: normal;
  }
}

.timeline .event {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  position: relative;
  color: var(--txt-gray);
}

.timeline .event:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}

.timeline .event:before, .timeline .event:after {
  position: absolute;
  display: block;
  top: 0;
}

.timeline .event:before {
  left: -200px;
  color: var(--txt-gray);
  content: attr(data-date);
  text-align: right;
  font-size: 0.75rem;
  min-width: 120px;
}

@media (max-width: 767.98px) {
  .timeline .event:before {
    left: 0px;
    position: relative;
    display: block;
    text-align: left;
  }
}

.timeline .event:after {
  box-shadow: 0 0 0 2px var(--brand-color);
  left: -57px;
  background: var(--bg-white);
  border-radius: 50%;
  height: 11px;
  width: 11px;
  content: "";
  top: 2px;
}

@media (max-width: 767.98px) {
  .timeline .event:after {
    left: -27px;
  }
}

.timeline .timeline_status {
  font-size: 0.85rem;
  font-weight: 500;
  display: block;
  color: var(--txt-body);
  margin-bottom: 0.5rem;
}

.timeline .timeline_status .svg {
  fill: currentColor;
  margin-right: 5px;
}

.list-group-item {
  background: transparent;
  border: solid 1px var(--border-color);
}

.list-group-item.disabled, .list-group-item :disabled {
  background: transparent;
}

.list-group-xl .list-group-item {
  padding: 2.25rem 225rem;
}

.list-group-lg .list-group-item {
  padding: 2rem 2rem;
}

.list-group-md .list-group-item {
  padding: 1.5rem 1.5rem;
}

.list-group-sm .list-group-item {
  padding: 1.25rem 1.25rem;
}

.list-group-xs .list-group-item {
  padding: 1rem 1rem;
}

.list-group-flush-x .list-group-item {
  padding-left: 0;
  padding-right: 0;
  border-left: none;
  border-right: none;
  border-radius: 0;
}

.list-group-flush-y .list-group-item:first-child {
  padding-top: 0;
  border-top: none;
  border-radius: 0;
}

.list-group-flush-y .list-group-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
  border-radius: 0;
}

.opacity-10 {
  opacity: .1;
}

.opacity-20 {
  opacity: .2;
}

.opacity-30 {
  opacity: .3;
}

.opacity-40 {
  opacity: .4;
}

.opacity-50 {
  opacity: .5;
}

.opacity-60 {
  opacity: .6;
}

.opacity-70 {
  opacity: .7;
}

.opacity-80 {
  opacity: .8;
}

.opacity-90 {
  opacity: .9;
}

.opacity-100 {
  opacity: 1;
}

.spinner {
  position: relative;
}

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  animation: spinner .5s linear infinite;
}

.spinner.spinner--sm:before {
  width: 16px;
  height: 16px;
  margin-top: -8px;
}

.spinner.spinner--sm.spinner--center:before {
  left: 50%;
  margin-left: -8px;
}

.spinner.spinner--sm.spinner--left:before {
  left: 0;
  right: auto;
}

.spinner.spinner--sm .spinner--right:before {
  left: auto;
  right: 0;
}

.spinner.spinner--center:before {
  left: 50%;
  margin-left: -10px;
}

.spinner.spinner--left:before {
  left: 0;
  right: auto;
}

.spinner.spinner--right:before {
  left: auto;
  right: 0;
}

.spinner.spinner--lg:before {
  width: 24px;
  height: 24px;
  margin-top: -12px;
}

.spinner.spinner--lg.spinner--center:before {
  left: 50%;
  margin-left: -12px;
}

.spinner.spinner--lg.spinner--left:before {
  left: 0;
  right: auto;
}

.spinner.spinner--lg.spinner--right:before {
  left: auto;
  right: 0;
}

.spinner.spinner--brand:before {
  border: 2px solid var(--brand-color);
  border-right: 2px solid transparent;
}

.spinner.spinner--light:before {
  border: 2px solid #ffffff;
  border-right: 2px solid transparent;
}

.spinner.spinner--dark:before {
  border: 2px solid #212529;
  border-right: 2px solid transparent;
}

.spinner.spinner--primary:before {
  border: 2px solid var(--brand-color);
  border-right: 2px solid transparent;
}

.spinner.spinner--success:before {
  border: 2px solid #1dc9b7;
  border-right: 2px solid transparent;
}

.spinner.spinner--info:before {
  border: 2px solid #5578eb;
  border-right: 2px solid transparent;
}

.spinner.spinner--warning:before {
  border: 2px solid #ffb822;
  border-right: 2px solid transparent;
}

.spinner.spinner--danger:before {
  border: 2px solid #fd397a;
  border-right: 2px solid transparent;
}

.spinner.spinner--input.spinner--right:before {
  left: auto;
  right: 1rem;
}

.spinner.spinner--input.spinner--left:before {
  right: auto;
  left: 1rem;
}

.spinner.spinner--v2:before {
  animation: spinner .5s linear infinite;
}

.spinner.spinner--v2.spinner--brand:before {
  border: 2px solid #c6d6fc;
  border-top-color: #2861f2;
}

.spinner.spinner--v2.spinner--light:before {
  border: 2px solid white;
  border-top-color: #f7f7f7;
}

.spinner.spinner--v2.spinner--dark:before {
  border: 2px solid #656a98;
  border-top-color: #222433;
}

.spinner.spinner--v2.spinner--primary:before {
  border: 2px solid #d7dbf7;
  border-top-color: #4b5bda;
}

.spinner.spinner--v2.spinner--success:before {
  border: 2px solid #90efe5;
  border-top-color: #1bbcab;
}

.spinner.spinner--v2.spinner--info:before {
  border: 2px solid #dee5fb;
  border-top-color: #476de9;
}

.spinner.spinner--v2.spinner--warning:before {
  border: 2px solid #ffe9bb;
  border-top-color: #ffb313;
}

.spinner.spinner--v2.spinner--danger:before {
  border: 2px solid #ffd0e0;
  border-top-color: #fd2a70;
}

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

.loader {
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  margin: 0 auto;
  border-radius: 100%;
  background-color: #f7f8fa;
  opacity: 0;
  animation: loader-scaleout 0.9s infinite ease-in-out;
}

.loader.loader--lg {
  width: 2rem;
  height: 2rem;
}

.loader.loader--sm {
  width: 1rem;
  height: 1rem;
}

.loader.loader--brand {
  background-color: var(--brand-color);
}

.loader.loader--light {
  background-color: #ffffff;
}

.loader.loader--dark {
  background-color: var(--txt-body);
}

.loader.loader--primary {
  background-color: var(--brand-color);
}

.loader.loader--success {
  background-color: #1dc9b7;
}

.loader.loader--info {
  background-color: #5578eb;
}

.loader.loader--warning {
  background-color: #ffb822;
}

.loader.loader--danger {
  background-color: #fd397a;
}

.btn .loader {
  position: relative;
  line-height: 0;
}

@keyframes loader-scaleout {
  0% {
    opacity: 0.3;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.pulse {
  position: relative;
}

.pulse .pulse__ring {
  display: block;
  border-radius: 40px;
  height: 40px;
  width: 40px;
  position: absolute;
  animation: pulse 3.5s ease-out;
  animation-iteration-count: infinite;
  opacity: 0;
  border-width: 3px;
  border-style: solid;
  border-color: #d8dce6;
}

.pulse.pulse--brand .pulse__ring {
  border-color: rgba(54, 108, 243, 0.8);
}

.pulse.pulse--light .pulse__ring {
  border-color: rgba(255, 255, 255, 0.8);
}

.pulse.pulse--dark .pulse__ring {
  border-color: rgba(40, 42, 60, 0.8);
}

.pulse.pulse--primary .pulse__ring {
  border-color: rgba(88, 103, 221, 0.8);
}

.pulse.pulse--success .pulse__ring {
  border-color: rgba(29, 201, 183, 0.8);
}

.pulse.pulse--info .pulse__ring {
  border-color: rgba(85, 120, 235, 0.8);
}

.pulse.pulse--warning .pulse__ring {
  border-color: rgba(255, 184, 34, 0.8);
}

.pulse.pulse--danger .pulse__ring {
  border-color: rgba(253, 57, 122, 0.8);
}

@media screen\0 {
  .pulse .pulse__ring {
    top: 2px;
    left: 2px;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0.0;
  }
  60% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0.0;
  }
  65% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0.0;
  }
}

.alert {
  display: flex;
  align-items: stretch;
  position: relative;
  margin-bottom: 1rem;
  border: solid 1px var(--border-color);
  border-radius: 2px;
}

.alert.alert-outline-primary {
  border: 1px solid var(--brand-color);
  color: var(--brand-color);
}

.alert .alert-icon {
  display: flex;
  align-items: center;
  padding: 0 1.25rem 0 0;
}

.alert .alert-text {
  align-self: center;
  flex-grow: 1;
}

.dropdown-menu {
  border-radius: 4px;
  box-shadow: var(--shadow-rgb);
  min-width: 14rem;
  padding: 0;
  margin: 0;
  border: none !important;
  background-color: var(--bg-white);
  color: var(--txt-gray);
  text-align: left;
}

.dropdown-menu .dropdown-header {
  font-size: 0.75rem;
  color: currentColor;
}

.dropdown-menu .dropdown-item {
  color: currentColor;
}

.dropdown-menu .dropdown-divider {
  border-color: var(--border-color);
}

.dropdown-menu.dropdown-menu-anim {
  animation: dropdown-menu-fade-in .3s ease 1, dropdown-menu-move-up .3s ease-out 1;
}

.dropdown-menu .dropdown-menu-anim-down.dropdown-menu-anim,
.dropup .dropdown-menu.dropdown-menu-anim {
  animation: dropdown-menu-fade-in .3s ease 1, dropdown-menu-move-down .3s ease-out 1;
}

@keyframes dropdown-menu-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes dropdown-menu-move-down {
  from {
    margin-top: -10px;
  }
  to {
    margin-top: 0;
  }
}

@keyframes dropdown-menu-move-up {
  from {
    margin-top: 10px;
  }
  to {
    margin-top: 0;
  }
}

.form .form-group, .form-control .form-group {
  margin-bottom: 1.5rem;
}

.form .form-text, .form-control .form-text {
  font-size: 0.7rem;
}

.form input, .form-control input, .form input[type="text"], .form-control input[type="text"], .form input[type="email"], .form-control input[type="email"], .form input[type="phone"], .form-control input[type="phone"], .form input[type="search"], .form-control input[type="search"], .form input[type="password"], .form-control input[type="password"], .form input[type="date"], .form-control input[type="date"], .form input[type="url"], .form-control input[type="url"], .form input[type="tel"], .form-control input[type="tel"], .form input[type="number"], .form-control input[type="number"], .form input[type="file"], .form-control input[type="file"], .form select, .form .form-control select, .form-control .form select, .form-control select, .form textarea, .form .form-control textarea, .form-control .form textarea, .form-control textarea {
  padding: 0 1rem;
  border: solid 1px var(--border-color);
  background-color: var(--bg-white);
  color: var(--bg-white-inverse);
  height: 42px;
  font-size: 0.8rem;
  line-height: 2.0714285714rem;
  border-radius: 2px;
  outline: none;
  font-family: inherit;
  transition: 0.3s all ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form input:hover, .form-control input:hover, .form select:hover, .form-control select:hover, .form textarea:hover, .form-control textarea:hover {
  border-color: var(--border-color);
  outline: none !important;
  box-shadow: 0 0 0 0 var(--brand-color);
}

.form input:focus, .form-control input:focus, .form select:focus, .form-control select:focus, .form textarea:focus, .form-control textarea:focus {
  border-color: var(--brand-color);
  outline: none !important;
  box-shadow: 0 0 0 0 var(--brand-color);
  background: var(--bg-white);
  color: var(--bg-white-inverse);
}

.form input:disabled, .form-control input:disabled, .form select:disabled, .form-control select:disabled, .form textarea:disabled, .form-control textarea:disabled {
  color: rgba(0, 0, 0, 0.38);
  background-color: rgba(0, 0, 0, 0.011);
  box-shadow: none;
  cursor: initial;
}

.form input.is-invalid, .form-control input.is-invalid, .form select.is-invalid, .form-control select.is-invalid, .form textarea.is-invalid, .form-control textarea.is-invalid {
  border-color: #dc3545;
  background-image: none;
}

.form input[type="password"], .form-control input[type="password"], .form select[type="password"], .form-control select[type="password"], .form textarea[type="password"], .form-control textarea[type="password"] {
  padding: 0 1.65rem 0 1rem;
}

.form input[type="file"], .form-control input[type="file"], .form select[type="file"], .form-control select[type="file"], .form textarea[type="file"], .form-control textarea[type="file"] {
  height: auto;
}

.form select, .form-control select {
  padding-right: 35px;
  background-image: url(../media/retina/down-arrow.svg);
  background-size: 10px;
  background-color: var(--bg-white);
  background-repeat: no-repeat;
  background-position: calc(100% - 11px) center;
  font-family: "Poppins";
}

.form textarea, .form-control textarea {
  resize: vertical;
  height: 120px;
  line-height: 1.5;
  padding: 1rem;
  background: var(--bg-white);
  color: var(--bg-white-inverse);
}

.form label, .form-control label {
  font-size: 0.8rem;
  color: #65727e;
  margin: 0;
  margin-bottom: 5px;
  display: inline-block;
  min-height: none;
  cursor: default;
  /*opacity: 0.6;*/
}

.form label:empty, .form-control label:empty {
  min-height: 18px;
}

.form label a, .form-control label a {
  color: var(--brand-color);
}

.form [type="submit"], .form-control [type="submit"], .form [type="button"], .form .form-control [type="button"], .form-control .form [type="button"], .form-control [type="button"], .form [type="reset"], .form .form-control [type="reset"], .form-control .form [type="reset"], .form-control [type="reset"], .form input button, .form-control input button, .form input[type="text"] button, .form-control input[type="text"] button, .form input[type="email"] button, .form-control input[type="email"] button, .form input[type="phone"] button, .form-control input[type="phone"] button, .form input[type="search"] button, .form-control input[type="search"] button, .form input[type="password"] button, .form-control input[type="password"] button, .form input[type="date"] button, .form-control input[type="date"] button, .form input[type="url"] button, .form-control input[type="url"] button, .form input[type="tel"] button, .form-control input[type="tel"] button, .form input[type="number"] button, .form-control input[type="number"] button, .form input[type="file"] button, .form-control input[type="file"] button, .form select button, .form-control select button, .form textarea button, .form-control textarea button, .form button, .form .form-control button, .form-control .form button, .form-control button {
  position: relative;
  display: inline-block;
  margin: 0 0px;
  padding-top: 10px;
  padding-bottom: 10px;
  min-width: 64px;
  height: 42px;
  text-align: center;
  font-size: 0.9rem;
  line-height: normal;
  overflow: hidden;
  outline: none;
  cursor: pointer;
}

.form [type="submit"]:hover, .form-control [type="submit"]:hover, .form :hover[type="button"], .form-control :hover[type="button"], .form :hover[type="reset"], .form-control :hover[type="reset"], .form button:hover, .form .form-control button:hover, .form-control .form button:hover, .form-control button:hover, .form [type="submit"]:focus, .form-control [type="submit"]:focus, .form :focus[type="button"], .form-control :focus[type="button"], .form :focus[type="reset"], .form-control :focus[type="reset"], .form button:focus, .form .form-control button:focus, .form-control .form button:focus, .form-control button:focus {
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.05), 0px 4px 5px 0px rgba(0, 0, 0, 0.05), 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
}

.form [type="submit"]:active, .form-control [type="submit"]:active, .form :active[type="button"], .form-control :active[type="button"], .form :active[type="reset"], .form-control :active[type="reset"], .form button:active, .form .form-control button:active, .form-control .form button:active, .form-control button:active {
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.04), 0px 4px 5px 0px rgba(0, 0, 0, 0.04), 0px 1px 10px 0px rgba(0, 0, 0, 0.04);
}

.form button:focus :before, .form-control button:focus :before {
  opacity: 0.2;
}

.form button:active :before, .form-control button:active :before {
  opacity: 0.32;
}

.form button:disabled, .form-control button:disabled {
  cursor: not-allowed;
}

.form button:disabled :before, .form-control button:disabled :before {
  opacity: 0;
}

.form button:focus :after, .form-control button:focus :after {
  opacity: 0.2;
}

.form button:active :after, .form-control button:active :after {
  opacity: 0.4;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0s;
}

.form button:disabled :after, .form-control button:disabled :after {
  opacity: 0;
}

.form .no--focus:focus, .form-control .no--focus:focus {
  outline: none !important;
  border-color: inherit !important;
}

.form-control {
  background-color: var(--bg-white);
  color: var(--bg-white-inverse);
  border-color: var(--border-color);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.input-icon {
  position: relative;
  padding: 0;
  width: 100%;
}

.input-icon > .input-icon__icon {
  position: absolute;
  height: 100%;
  display: flex;
  justify-content: center;
  top: 0;
  width: 3.2rem;
}

.input-icon > .input-icon__icon > span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.input-icon > .input-icon__icon > span i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: black;
}

.input-icon > .input-icon__icon .input-icon__icon--left {
  left: 0;
}

.input-icon > .input-icon__icon .input-icon__icon--right {
  right: 0;
}

.input-icon.input-icon--left .form-control {
  padding-left: 2.8rem;
}

.form-floating__group {
  position: relative;
}

.form-floating__label {
  position: absolute;
  left: 1rem;
  top: 0;
  line-height: 44px;
  margin: 0;
  transform: scale(1);
  transform-origin: left top;
  transition: transform 0.2s ease-in-out;
  pointer-events: none;
}

.form-floating__field {
  padding-top: 16px !important;
  width: 100%;
  height: 44px;
  line-height: inherit;
  resize: none;
  transition: all 0.35s ease-in-out;
}

.form-floating__field:focus {
  outline-color: var(--brand-color);
  border-color: var(--brand-color);
}

.form-floating__field:focus + .form-floating__label {
  transform: translateY(-6px) scale(0.8);
}

.form-floating__field.filled + .form-floating__label {
  opacity: 0.7;
  transform: translateY(-6px) scale(0.8);
}

.form-floating textarea {
  padding-top: 1.5rem !important;
}

.form-floating__group textarea + .form-floating__label {
  top: 1px;
  padding-top: 10px;
  line-height: 1.2;
  background-color: var(--bg-white);
  opacity: 1;
  right: 1px;
}

.form-floating__group textarea:focus + .form-floating__label {
  transform: translateY(0px) scale(0.8);
  opacity: 1;
}

.form-floating__group textarea.filled + .form-floating__label {
  opacity: 1;
  transform: translateY(0px) scale(0.8);
}

.password-toggle {
  position: absolute;
  top: 15px;
  right: 8px;
  cursor: pointer;
}

.password-toggle:before {
  color: var(--txt-gray);
}

.write-review__about .form-floating__group textarea[readonly] + .form-floating__label {
  background-color: #e9ecef;
}

.form--inline {
  display: flex;
}

.form--inline .form-group {
  margin-right: 10px;
  flex: 1;
}

.custom-select {
  font-size: 0.8rem;
  border-radius: 2px;
  padding-right: 35px;
  background-image: url(../media/retina/down-arrow.svg);
  background-size: 10px;
  background-color: var(--bg-white);
  background-repeat: no-repeat;
  background-position: calc(100% - 11px) center;
}

.file-input {
  position: relative;
  flex: 1;
  height: 36px;
}

.file-input input, .file-input .form input[type="text"], .form .file-input input[type="text"], .file-input .form-control input[type="text"], .form-control .file-input input[type="text"], .file-input .form input[type="email"], .form .file-input input[type="email"], .file-input .form-control input[type="email"], .form-control .file-input input[type="email"], .file-input .form input[type="phone"], .form .file-input input[type="phone"], .file-input .form-control input[type="phone"], .form-control .file-input input[type="phone"], .file-input .form input[type="search"], .form .file-input input[type="search"], .file-input .form-control input[type="search"], .form-control .file-input input[type="search"], .file-input .form input[type="password"], .form .file-input input[type="password"], .file-input .form-control input[type="password"], .form-control .file-input input[type="password"], .file-input .form input[type="date"], .form .file-input input[type="date"], .file-input .form-control input[type="date"], .form-control .file-input input[type="date"], .file-input .form input[type="url"], .form .file-input input[type="url"], .file-input .form-control input[type="url"], .form-control .file-input input[type="url"], .file-input .form input[type="tel"], .form .file-input input[type="tel"], .file-input .form-control input[type="tel"], .form-control .file-input input[type="tel"], .file-input .form input[type="number"], .form .file-input input[type="number"], .file-input .form-control input[type="number"], .form-control .file-input input[type="number"], .file-input .form input[type="file"], .form .file-input input[type="file"], .file-input .form-control input[type="file"], .form-control .file-input input[type="file"], .file-input .form select, .form .file-input select, .file-input .form-control select, .form-control .file-input select, .file-input .form textarea, .form .file-input textarea, .file-input .form-control textarea, .form-control .file-input textarea {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
}

.file-input label.btn {
  height: 100%;
  padding: 7px;
  color: #fff;
}

select {
  font-family: "Poppins";
}

.switch {
  display: inline-block;
  font-size: 1rem;
}

.switch input:empty, .switch .form select:empty, .form .switch select:empty, .switch .form-control select:empty, .form-control .switch select:empty, .switch .form textarea:empty, .form .switch textarea:empty, .switch .form-control textarea:empty, .form-control .switch textarea:empty {
  margin-left: -999px;
  height: 0;
  width: 0;
  overflow: hidden;
  position: absolute;
  opacity: 0;
}

.switch input:empty ~ span, .switch .form input:empty[type="text"] ~ span, .switch .form-control input:empty[type="text"] ~ span, .switch .form input:empty[type="email"] ~ span, .switch .form-control input:empty[type="email"] ~ span, .switch .form input:empty[type="phone"] ~ span, .switch .form-control input:empty[type="phone"] ~ span, .switch .form input:empty[type="search"] ~ span, .switch .form-control input:empty[type="search"] ~ span, .switch .form input:empty[type="password"] ~ span, .switch .form-control input:empty[type="password"] ~ span, .switch .form input:empty[type="date"] ~ span, .switch .form-control input:empty[type="date"] ~ span, .switch .form input:empty[type="url"] ~ span, .switch .form-control input:empty[type="url"] ~ span, .switch .form input:empty[type="tel"] ~ span, .switch .form-control input:empty[type="tel"] ~ span, .switch .form input:empty[type="number"] ~ span, .switch .form-control input:empty[type="number"] ~ span, .switch .form input:empty[type="file"] ~ span, .switch .form-control input:empty[type="file"] ~ span, .switch .form select:empty ~ span, .form .switch select:empty ~ span, .switch .form-control select:empty ~ span, .form-control .switch select:empty ~ span, .switch .form textarea:empty ~ span, .form .switch textarea:empty ~ span, .switch .form-control textarea:empty ~ span, .form-control .switch textarea:empty ~ span {
  display: inline-block;
  position: relative;
  float: left;
  width: 1px;
  text-indent: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 30px;
  margin: 2px 0;
  height: 30px;
  width: 57px;
  border-radius: 15px;
}

.switch input:empty ~ span:before, .switch .form input:empty[type="text"] ~ span:before, .switch .form-control input:empty[type="text"] ~ span:before, .switch .form input:empty[type="email"] ~ span:before, .switch .form-control input:empty[type="email"] ~ span:before, .switch .form input:empty[type="phone"] ~ span:before, .switch .form-control input:empty[type="phone"] ~ span:before, .switch .form input:empty[type="search"] ~ span:before, .switch .form-control input:empty[type="search"] ~ span:before, .switch .form input:empty[type="password"] ~ span:before, .switch .form-control input:empty[type="password"] ~ span:before, .switch .form input:empty[type="date"] ~ span:before, .switch .form-control input:empty[type="date"] ~ span:before, .switch .form input:empty[type="url"] ~ span:before, .switch .form-control input:empty[type="url"] ~ span:before, .switch .form input:empty[type="tel"] ~ span:before, .switch .form-control input:empty[type="tel"] ~ span:before, .switch .form input:empty[type="number"] ~ span:before, .switch .form-control input:empty[type="number"] ~ span:before, .switch .form input:empty[type="file"] ~ span:before, .switch .form-control input:empty[type="file"] ~ span:before, .switch .form select:empty ~ span:before, .form .switch select:empty ~ span:before, .switch .form-control select:empty ~ span:before, .form-control .switch select:empty ~ span:before, .switch .form textarea:empty ~ span:before, .form .switch textarea:empty ~ span:before, .switch .form-control textarea:empty ~ span:before, .form-control .switch textarea:empty ~ span:before {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  content: ' ';
  transition: all 100ms ease-in;
  width: 54px;
  border-radius: 15px;
  background-color: #e8ebf1;
}

.switch input:empty ~ span:after, .switch .form input:empty[type="text"] ~ span:after, .switch .form-control input:empty[type="text"] ~ span:after, .switch .form input:empty[type="email"] ~ span:after, .switch .form-control input:empty[type="email"] ~ span:after, .switch .form input:empty[type="phone"] ~ span:after, .switch .form-control input:empty[type="phone"] ~ span:after, .switch .form input:empty[type="search"] ~ span:after, .switch .form-control input:empty[type="search"] ~ span:after, .switch .form input:empty[type="password"] ~ span:after, .switch .form-control input:empty[type="password"] ~ span:after, .switch .form input:empty[type="date"] ~ span:after, .switch .form-control input:empty[type="date"] ~ span:after, .switch .form input:empty[type="url"] ~ span:after, .switch .form-control input:empty[type="url"] ~ span:after, .switch .form input:empty[type="tel"] ~ span:after, .switch .form-control input:empty[type="tel"] ~ span:after, .switch .form input:empty[type="number"] ~ span:after, .switch .form-control input:empty[type="number"] ~ span:after, .switch .form input:empty[type="file"] ~ span:after, .switch .form-control input:empty[type="file"] ~ span:after, .switch .form select:empty ~ span:after, .form .switch select:empty ~ span:after, .switch .form-control select:empty ~ span:after, .form-control .switch select:empty ~ span:after, .switch .form textarea:empty ~ span:after, .form .switch textarea:empty ~ span:after, .switch .form-control textarea:empty ~ span:after, .form-control .switch textarea:empty ~ span:after {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  content: ' ';
  transition: all 100ms ease-in;
  width: 54px;
  border-radius: 15px;
  height: 24px;
  width: 24px;
  line-height: 26px;
  top: 3px;
  bottom: 3px;
  margin-left: 3px;
  font-size: 0.9em;
  text-align: center;
  vertical-align: middle;
  color: #f8f9fb;
  background-color: #ffffff;
}

.switch input:checked ~ span:after, .switch .form input:checked[type="text"] ~ span:after, .switch .form-control input:checked[type="text"] ~ span:after, .switch .form input:checked[type="email"] ~ span:after, .switch .form-control input:checked[type="email"] ~ span:after, .switch .form input:checked[type="phone"] ~ span:after, .switch .form-control input:checked[type="phone"] ~ span:after, .switch .form input:checked[type="search"] ~ span:after, .switch .form-control input:checked[type="search"] ~ span:after, .switch .form input:checked[type="password"] ~ span:after, .switch .form-control input:checked[type="password"] ~ span:after, .switch .form input:checked[type="date"] ~ span:after, .switch .form-control input:checked[type="date"] ~ span:after, .switch .form input:checked[type="url"] ~ span:after, .switch .form-control input:checked[type="url"] ~ span:after, .switch .form input:checked[type="tel"] ~ span:after, .switch .form-control input:checked[type="tel"] ~ span:after, .switch .form input:checked[type="number"] ~ span:after, .switch .form-control input:checked[type="number"] ~ span:after, .switch .form input:checked[type="file"] ~ span:after, .switch .form-control input:checked[type="file"] ~ span:after, .switch .form select:checked ~ span:after, .form .switch select:checked ~ span:after, .switch .form-control select:checked ~ span:after, .form-control .switch select:checked ~ span:after, .switch .form textarea:checked ~ span:after, .form .switch textarea:checked ~ span:after, .switch .form-control textarea:checked ~ span:after, .form-control .switch textarea:checked ~ span:after {
  margin-left: 26px;
  background-color: var(--brand-color);
  color: #ffffff;
}

.switch input:checked ~ span:before, .switch .form input:checked[type="text"] ~ span:before, .switch .form-control input:checked[type="text"] ~ span:before, .switch .form input:checked[type="email"] ~ span:before, .switch .form-control input:checked[type="email"] ~ span:before, .switch .form input:checked[type="phone"] ~ span:before, .switch .form-control input:checked[type="phone"] ~ span:before, .switch .form input:checked[type="search"] ~ span:before, .switch .form-control input:checked[type="search"] ~ span:before, .switch .form input:checked[type="password"] ~ span:before, .switch .form-control input:checked[type="password"] ~ span:before, .switch .form input:checked[type="date"] ~ span:before, .switch .form-control input:checked[type="date"] ~ span:before, .switch .form input:checked[type="url"] ~ span:before, .switch .form-control input:checked[type="url"] ~ span:before, .switch .form input:checked[type="tel"] ~ span:before, .switch .form-control input:checked[type="tel"] ~ span:before, .switch .form input:checked[type="number"] ~ span:before, .switch .form-control input:checked[type="number"] ~ span:before, .switch .form input:checked[type="file"] ~ span:before, .switch .form-control input:checked[type="file"] ~ span:before, .switch .form select:checked ~ span:before, .form .switch select:checked ~ span:before, .switch .form-control select:checked ~ span:before, .form-control .switch select:checked ~ span:before, .switch .form textarea:checked ~ span:before, .form .switch textarea:checked ~ span:before, .switch .form-control textarea:checked ~ span:before, .form-control .switch textarea:checked ~ span:before {
  background-color: #e8ebf1;
}

.switch input[disabled], .switch .form select[disabled], .form .switch select[disabled], .switch .form-control select[disabled], .form-control .switch select[disabled], .switch .form textarea[disabled], .form .switch textarea[disabled], .switch .form-control textarea[disabled], .form-control .switch textarea[disabled] {
  cursor: not-allowed;
}

.switch input[disabled] ~ span:after, .switch .form input[disabled][type="text"] ~ span:after, .switch .form-control input[disabled][type="text"] ~ span:after, .switch .form input[disabled][type="email"] ~ span:after, .switch .form-control input[disabled][type="email"] ~ span:after, .switch .form input[disabled][type="phone"] ~ span:after, .switch .form-control input[disabled][type="phone"] ~ span:after, .switch .form input[disabled][type="search"] ~ span:after, .switch .form-control input[disabled][type="search"] ~ span:after, .switch .form input[disabled][type="password"] ~ span:after, .switch .form-control input[disabled][type="password"] ~ span:after, .switch .form input[disabled][type="date"] ~ span:after, .switch .form-control input[disabled][type="date"] ~ span:after, .switch .form input[disabled][type="url"] ~ span:after, .switch .form-control input[disabled][type="url"] ~ span:after, .switch .form input[disabled][type="tel"] ~ span:after, .switch .form-control input[disabled][type="tel"] ~ span:after, .switch .form input[disabled][type="number"] ~ span:after, .switch .form-control input[disabled][type="number"] ~ span:after, .switch .form input[disabled][type="file"] ~ span:after, .switch .form-control input[disabled][type="file"] ~ span:after, .switch .form select[disabled] ~ span:after, .form .switch select[disabled] ~ span:after, .switch .form-control select[disabled] ~ span:after, .form-control .switch select[disabled] ~ span:after, .switch .form textarea[disabled] ~ span:after, .form .switch textarea[disabled] ~ span:after, .switch .form-control textarea[disabled] ~ span:after, .form-control .switch textarea[disabled] ~ span:after {
  cursor: not-allowed;
  opacity: 0.7;
}

.switch input[disabled] ~ span:before, .switch .form input[disabled][type="text"] ~ span:before, .switch .form-control input[disabled][type="text"] ~ span:before, .switch .form input[disabled][type="email"] ~ span:before, .switch .form-control input[disabled][type="email"] ~ span:before, .switch .form input[disabled][type="phone"] ~ span:before, .switch .form-control input[disabled][type="phone"] ~ span:before, .switch .form input[disabled][type="search"] ~ span:before, .switch .form-control input[disabled][type="search"] ~ span:before, .switch .form input[disabled][type="password"] ~ span:before, .switch .form-control input[disabled][type="password"] ~ span:before, .switch .form input[disabled][type="date"] ~ span:before, .switch .form-control input[disabled][type="date"] ~ span:before, .switch .form input[disabled][type="url"] ~ span:before, .switch .form-control input[disabled][type="url"] ~ span:before, .switch .form input[disabled][type="tel"] ~ span:before, .switch .form-control input[disabled][type="tel"] ~ span:before, .switch .form input[disabled][type="number"] ~ span:before, .switch .form-control input[disabled][type="number"] ~ span:before, .switch .form input[disabled][type="file"] ~ span:before, .switch .form-control input[disabled][type="file"] ~ span:before, .switch .form select[disabled] ~ span:before, .form .switch select[disabled] ~ span:before, .switch .form-control select[disabled] ~ span:before, .form-control .switch select[disabled] ~ span:before, .switch .form textarea[disabled] ~ span:before, .form .switch textarea[disabled] ~ span:before, .switch .form-control textarea[disabled] ~ span:before, .form-control .switch textarea[disabled] ~ span:before {
  cursor: not-allowed;
  opacity: 0.7;
}

.switch.switch--icon input:empty ~ span:after, .switch.switch--icon .form input:empty[type="text"] ~ span:after, .switch.switch--icon .form-control input:empty[type="text"] ~ span:after, .switch.switch--icon .form input:empty[type="email"] ~ span:after, .switch.switch--icon .form-control input:empty[type="email"] ~ span:after, .switch.switch--icon .form input:empty[type="phone"] ~ span:after, .switch.switch--icon .form-control input:empty[type="phone"] ~ span:after, .switch.switch--icon .form input:empty[type="search"] ~ span:after, .switch.switch--icon .form-control input:empty[type="search"] ~ span:after, .switch.switch--icon .form input:empty[type="password"] ~ span:after, .switch.switch--icon .form-control input:empty[type="password"] ~ span:after, .switch.switch--icon .form input:empty[type="date"] ~ span:after, .switch.switch--icon .form-control input:empty[type="date"] ~ span:after, .switch.switch--icon .form input:empty[type="url"] ~ span:after, .switch.switch--icon .form-control input:empty[type="url"] ~ span:after, .switch.switch--icon .form input:empty[type="tel"] ~ span:after, .switch.switch--icon .form-control input:empty[type="tel"] ~ span:after, .switch.switch--icon .form input:empty[type="number"] ~ span:after, .switch.switch--icon .form-control input:empty[type="number"] ~ span:after, .switch.switch--icon .form input:empty[type="file"] ~ span:after, .switch.switch--icon .form-control input:empty[type="file"] ~ span:after, .switch.switch--icon .form select:empty ~ span:after, .form .switch.switch--icon select:empty ~ span:after, .switch.switch--icon .form-control select:empty ~ span:after, .form-control .switch.switch--icon select:empty ~ span:after, .switch.switch--icon .form textarea:empty ~ span:after, .form .switch.switch--icon textarea:empty ~ span:after, .switch.switch--icon .form-control textarea:empty ~ span:after, .form-control .switch.switch--icon textarea:empty ~ span:after {
  font-family: "LineAwesome";
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  content: "\F342";
}

.switch.switch--icon input:checked ~ span:after, .switch.switch--icon .form input:checked[type="text"] ~ span:after, .switch.switch--icon .form-control input:checked[type="text"] ~ span:after, .switch.switch--icon .form input:checked[type="email"] ~ span:after, .switch.switch--icon .form-control input:checked[type="email"] ~ span:after, .switch.switch--icon .form input:checked[type="phone"] ~ span:after, .switch.switch--icon .form-control input:checked[type="phone"] ~ span:after, .switch.switch--icon .form input:checked[type="search"] ~ span:after, .switch.switch--icon .form-control input:checked[type="search"] ~ span:after, .switch.switch--icon .form input:checked[type="password"] ~ span:after, .switch.switch--icon .form-control input:checked[type="password"] ~ span:after, .switch.switch--icon .form input:checked[type="date"] ~ span:after, .switch.switch--icon .form-control input:checked[type="date"] ~ span:after, .switch.switch--icon .form input:checked[type="url"] ~ span:after, .switch.switch--icon .form-control input:checked[type="url"] ~ span:after, .switch.switch--icon .form input:checked[type="tel"] ~ span:after, .switch.switch--icon .form-control input:checked[type="tel"] ~ span:after, .switch.switch--icon .form input:checked[type="number"] ~ span:after, .switch.switch--icon .form-control input:checked[type="number"] ~ span:after, .switch.switch--icon .form input:checked[type="file"] ~ span:after, .switch.switch--icon .form-control input:checked[type="file"] ~ span:after, .switch.switch--icon .form select:checked ~ span:after, .form .switch.switch--icon select:checked ~ span:after, .switch.switch--icon .form-control select:checked ~ span:after, .form-control .switch.switch--icon select:checked ~ span:after, .switch.switch--icon .form textarea:checked ~ span:after, .form .switch.switch--icon textarea:checked ~ span:after, .switch.switch--icon .form-control textarea:checked ~ span:after, .form-control .switch.switch--icon textarea:checked ~ span:after {
  content: '\F17B';
}

.switch.switch--icon-check input:checked ~ span:after, .switch.switch--icon-check .form input:checked[type="text"] ~ span:after, .switch.switch--icon-check .form-control input:checked[type="text"] ~ span:after, .switch.switch--icon-check .form input:checked[type="email"] ~ span:after, .switch.switch--icon-check .form-control input:checked[type="email"] ~ span:after, .switch.switch--icon-check .form input:checked[type="phone"] ~ span:after, .switch.switch--icon-check .form-control input:checked[type="phone"] ~ span:after, .switch.switch--icon-check .form input:checked[type="search"] ~ span:after, .switch.switch--icon-check .form-control input:checked[type="search"] ~ span:after, .switch.switch--icon-check .form input:checked[type="password"] ~ span:after, .switch.switch--icon-check .form-control input:checked[type="password"] ~ span:after, .switch.switch--icon-check .form input:checked[type="date"] ~ span:after, .switch.switch--icon-check .form-control input:checked[type="date"] ~ span:after, .switch.switch--icon-check .form input:checked[type="url"] ~ span:after, .switch.switch--icon-check .form-control input:checked[type="url"] ~ span:after, .switch.switch--icon-check .form input:checked[type="tel"] ~ span:after, .switch.switch--icon-check .form-control input:checked[type="tel"] ~ span:after, .switch.switch--icon-check .form input:checked[type="number"] ~ span:after, .switch.switch--icon-check .form-control input:checked[type="number"] ~ span:after, .switch.switch--icon-check .form input:checked[type="file"] ~ span:after, .switch.switch--icon-check .form-control input:checked[type="file"] ~ span:after, .switch.switch--icon-check .form select:checked ~ span:after, .form .switch.switch--icon-check select:checked ~ span:after, .switch.switch--icon-check .form-control select:checked ~ span:after, .form-control .switch.switch--icon-check select:checked ~ span:after, .switch.switch--icon-check .form textarea:checked ~ span:after, .form .switch.switch--icon-check textarea:checked ~ span:after, .switch.switch--icon-check .form-control textarea:checked ~ span:after, .form-control .switch.switch--icon-check textarea:checked ~ span:after {
  font-family: "LineAwesome";
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  content: "\F17B";
}

.switch.switch--lg input:empty ~ span, .switch.switch--lg .form input:empty[type="text"] ~ span, .switch.switch--lg .form-control input:empty[type="text"] ~ span, .switch.switch--lg .form input:empty[type="email"] ~ span, .switch.switch--lg .form-control input:empty[type="email"] ~ span, .switch.switch--lg .form input:empty[type="phone"] ~ span, .switch.switch--lg .form-control input:empty[type="phone"] ~ span, .switch.switch--lg .form input:empty[type="search"] ~ span, .switch.switch--lg .form-control input:empty[type="search"] ~ span, .switch.switch--lg .form input:empty[type="password"] ~ span, .switch.switch--lg .form-control input:empty[type="password"] ~ span, .switch.switch--lg .form input:empty[type="date"] ~ span, .switch.switch--lg .form-control input:empty[type="date"] ~ span, .switch.switch--lg .form input:empty[type="url"] ~ span, .switch.switch--lg .form-control input:empty[type="url"] ~ span, .switch.switch--lg .form input:empty[type="tel"] ~ span, .switch.switch--lg .form-control input:empty[type="tel"] ~ span, .switch.switch--lg .form input:empty[type="number"] ~ span, .switch.switch--lg .form-control input:empty[type="number"] ~ span, .switch.switch--lg .form input:empty[type="file"] ~ span, .switch.switch--lg .form-control input:empty[type="file"] ~ span, .switch.switch--lg .form select:empty ~ span, .form .switch.switch--lg select:empty ~ span, .switch.switch--lg .form-control select:empty ~ span, .form-control .switch.switch--lg select:empty ~ span, .switch.switch--lg .form textarea:empty ~ span, .form .switch.switch--lg textarea:empty ~ span, .switch.switch--lg .form-control textarea:empty ~ span, .form-control .switch.switch--lg textarea:empty ~ span {
  line-height: 40px;
  margin: 2px 0;
  height: 40px;
  width: 75px;
  border-radius: 20px;
}

.switch.switch--lg input:empty ~ span:before, .switch.switch--lg .form input:empty[type="text"] ~ span:before, .switch.switch--lg .form-control input:empty[type="text"] ~ span:before, .switch.switch--lg .form input:empty[type="email"] ~ span:before, .switch.switch--lg .form-control input:empty[type="email"] ~ span:before, .switch.switch--lg .form input:empty[type="phone"] ~ span:before, .switch.switch--lg .form-control input:empty[type="phone"] ~ span:before, .switch.switch--lg .form input:empty[type="search"] ~ span:before, .switch.switch--lg .form-control input:empty[type="search"] ~ span:before, .switch.switch--lg .form input:empty[type="password"] ~ span:before, .switch.switch--lg .form-control input:empty[type="password"] ~ span:before, .switch.switch--lg .form input:empty[type="date"] ~ span:before, .switch.switch--lg .form-control input:empty[type="date"] ~ span:before, .switch.switch--lg .form input:empty[type="url"] ~ span:before, .switch.switch--lg .form-control input:empty[type="url"] ~ span:before, .switch.switch--lg .form input:empty[type="tel"] ~ span:before, .switch.switch--lg .form-control input:empty[type="tel"] ~ span:before, .switch.switch--lg .form input:empty[type="number"] ~ span:before, .switch.switch--lg .form-control input:empty[type="number"] ~ span:before, .switch.switch--lg .form input:empty[type="file"] ~ span:before, .switch.switch--lg .form-control input:empty[type="file"] ~ span:before, .switch.switch--lg .form select:empty ~ span:before, .form .switch.switch--lg select:empty ~ span:before, .switch.switch--lg .form-control select:empty ~ span:before, .form-control .switch.switch--lg select:empty ~ span:before, .switch.switch--lg .form textarea:empty ~ span:before, .form .switch.switch--lg textarea:empty ~ span:before, .switch.switch--lg .form-control textarea:empty ~ span:before, .form-control .switch.switch--lg textarea:empty ~ span:before {
  width: 72px;
  border-radius: 20px;
}

.switch.switch--lg input:empty ~ span:after, .switch.switch--lg .form input:empty[type="text"] ~ span:after, .switch.switch--lg .form-control input:empty[type="text"] ~ span:after, .switch.switch--lg .form input:empty[type="email"] ~ span:after, .switch.switch--lg .form-control input:empty[type="email"] ~ span:after, .switch.switch--lg .form input:empty[type="phone"] ~ span:after, .switch.switch--lg .form-control input:empty[type="phone"] ~ span:after, .switch.switch--lg .form input:empty[type="search"] ~ span:after, .switch.switch--lg .form-control input:empty[type="search"] ~ span:after, .switch.switch--lg .form input:empty[type="password"] ~ span:after, .switch.switch--lg .form-control input:empty[type="password"] ~ span:after, .switch.switch--lg .form input:empty[type="date"] ~ span:after, .switch.switch--lg .form-control input:empty[type="date"] ~ span:after, .switch.switch--lg .form input:empty[type="url"] ~ span:after, .switch.switch--lg .form-control input:empty[type="url"] ~ span:after, .switch.switch--lg .form input:empty[type="tel"] ~ span:after, .switch.switch--lg .form-control input:empty[type="tel"] ~ span:after, .switch.switch--lg .form input:empty[type="number"] ~ span:after, .switch.switch--lg .form-control input:empty[type="number"] ~ span:after, .switch.switch--lg .form input:empty[type="file"] ~ span:after, .switch.switch--lg .form-control input:empty[type="file"] ~ span:after, .switch.switch--lg .form select:empty ~ span:after, .form .switch.switch--lg select:empty ~ span:after, .switch.switch--lg .form-control select:empty ~ span:after, .form-control .switch.switch--lg select:empty ~ span:after, .switch.switch--lg .form textarea:empty ~ span:after, .form .switch.switch--lg textarea:empty ~ span:after, .switch.switch--lg .form-control textarea:empty ~ span:after, .form-control .switch.switch--lg textarea:empty ~ span:after {
  width: 72px;
  border-radius: 20px;
  height: 34px;
  width: 34px;
  line-height: 34px;
  top: 3px;
  bottom: 3px;
  margin-left: 3px;
  font-size: 1em;
  text-align: center;
  vertical-align: middle;
}

.switch.switch--lg input:checked ~ span:after, .switch.switch--lg .form input:checked[type="text"] ~ span:after, .switch.switch--lg .form-control input:checked[type="text"] ~ span:after, .switch.switch--lg .form input:checked[type="email"] ~ span:after, .switch.switch--lg .form-control input:checked[type="email"] ~ span:after, .switch.switch--lg .form input:checked[type="phone"] ~ span:after, .switch.switch--lg .form-control input:checked[type="phone"] ~ span:after, .switch.switch--lg .form input:checked[type="search"] ~ span:after, .switch.switch--lg .form-control input:checked[type="search"] ~ span:after, .switch.switch--lg .form input:checked[type="password"] ~ span:after, .switch.switch--lg .form-control input:checked[type="password"] ~ span:after, .switch.switch--lg .form input:checked[type="date"] ~ span:after, .switch.switch--lg .form-control input:checked[type="date"] ~ span:after, .switch.switch--lg .form input:checked[type="url"] ~ span:after, .switch.switch--lg .form-control input:checked[type="url"] ~ span:after, .switch.switch--lg .form input:checked[type="tel"] ~ span:after, .switch.switch--lg .form-control input:checked[type="tel"] ~ span:after, .switch.switch--lg .form input:checked[type="number"] ~ span:after, .switch.switch--lg .form-control input:checked[type="number"] ~ span:after, .switch.switch--lg .form input:checked[type="file"] ~ span:after, .switch.switch--lg .form-control input:checked[type="file"] ~ span:after, .switch.switch--lg .form select:checked ~ span:after, .form .switch.switch--lg select:checked ~ span:after, .switch.switch--lg .form-control select:checked ~ span:after, .form-control .switch.switch--lg select:checked ~ span:after, .switch.switch--lg .form textarea:checked ~ span:after, .form .switch.switch--lg textarea:checked ~ span:after, .switch.switch--lg .form-control textarea:checked ~ span:after, .form-control .switch.switch--lg textarea:checked ~ span:after {
  margin-left: 34px;
}

.switch.switch--sm input:empty ~ span, .switch.switch--sm .form input:empty[type="text"] ~ span, .switch.switch--sm .form-control input:empty[type="text"] ~ span, .switch.switch--sm .form input:empty[type="email"] ~ span, .switch.switch--sm .form-control input:empty[type="email"] ~ span, .switch.switch--sm .form input:empty[type="phone"] ~ span, .switch.switch--sm .form-control input:empty[type="phone"] ~ span, .switch.switch--sm .form input:empty[type="search"] ~ span, .switch.switch--sm .form-control input:empty[type="search"] ~ span, .switch.switch--sm .form input:empty[type="password"] ~ span, .switch.switch--sm .form-control input:empty[type="password"] ~ span, .switch.switch--sm .form input:empty[type="date"] ~ span, .switch.switch--sm .form-control input:empty[type="date"] ~ span, .switch.switch--sm .form input:empty[type="url"] ~ span, .switch.switch--sm .form-control input:empty[type="url"] ~ span, .switch.switch--sm .form input:empty[type="tel"] ~ span, .switch.switch--sm .form-control input:empty[type="tel"] ~ span, .switch.switch--sm .form input:empty[type="number"] ~ span, .switch.switch--sm .form-control input:empty[type="number"] ~ span, .switch.switch--sm .form input:empty[type="file"] ~ span, .switch.switch--sm .form-control input:empty[type="file"] ~ span, .switch.switch--sm .form select:empty ~ span, .form .switch.switch--sm select:empty ~ span, .switch.switch--sm .form-control select:empty ~ span, .form-control .switch.switch--sm select:empty ~ span, .switch.switch--sm .form textarea:empty ~ span, .form .switch.switch--sm textarea:empty ~ span, .switch.switch--sm .form-control textarea:empty ~ span, .form-control .switch.switch--sm textarea:empty ~ span {
  line-height: 24px;
  margin: 2px 0;
  height: 24px;
  width: 40px;
  border-radius: 12px;
  margin-right: 10px;
}

.switch.switch--sm input:empty ~ span:before, .switch.switch--sm .form input:empty[type="text"] ~ span:before, .switch.switch--sm .form-control input:empty[type="text"] ~ span:before, .switch.switch--sm .form input:empty[type="email"] ~ span:before, .switch.switch--sm .form-control input:empty[type="email"] ~ span:before, .switch.switch--sm .form input:empty[type="phone"] ~ span:before, .switch.switch--sm .form-control input:empty[type="phone"] ~ span:before, .switch.switch--sm .form input:empty[type="search"] ~ span:before, .switch.switch--sm .form-control input:empty[type="search"] ~ span:before, .switch.switch--sm .form input:empty[type="password"] ~ span:before, .switch.switch--sm .form-control input:empty[type="password"] ~ span:before, .switch.switch--sm .form input:empty[type="date"] ~ span:before, .switch.switch--sm .form-control input:empty[type="date"] ~ span:before, .switch.switch--sm .form input:empty[type="url"] ~ span:before, .switch.switch--sm .form-control input:empty[type="url"] ~ span:before, .switch.switch--sm .form input:empty[type="tel"] ~ span:before, .switch.switch--sm .form-control input:empty[type="tel"] ~ span:before, .switch.switch--sm .form input:empty[type="number"] ~ span:before, .switch.switch--sm .form-control input:empty[type="number"] ~ span:before, .switch.switch--sm .form input:empty[type="file"] ~ span:before, .switch.switch--sm .form-control input:empty[type="file"] ~ span:before, .switch.switch--sm .form select:empty ~ span:before, .form .switch.switch--sm select:empty ~ span:before, .switch.switch--sm .form-control select:empty ~ span:before, .form-control .switch.switch--sm select:empty ~ span:before, .switch.switch--sm .form textarea:empty ~ span:before, .form .switch.switch--sm textarea:empty ~ span:before, .switch.switch--sm .form-control textarea:empty ~ span:before, .form-control .switch.switch--sm textarea:empty ~ span:before {
  width: 38px;
  border-radius: 12px;
}

.switch.switch--sm input:empty ~ span:after, .switch.switch--sm .form input:empty[type="text"] ~ span:after, .switch.switch--sm .form-control input:empty[type="text"] ~ span:after, .switch.switch--sm .form input:empty[type="email"] ~ span:after, .switch.switch--sm .form-control input:empty[type="email"] ~ span:after, .switch.switch--sm .form input:empty[type="phone"] ~ span:after, .switch.switch--sm .form-control input:empty[type="phone"] ~ span:after, .switch.switch--sm .form input:empty[type="search"] ~ span:after, .switch.switch--sm .form-control input:empty[type="search"] ~ span:after, .switch.switch--sm .form input:empty[type="password"] ~ span:after, .switch.switch--sm .form-control input:empty[type="password"] ~ span:after, .switch.switch--sm .form input:empty[type="date"] ~ span:after, .switch.switch--sm .form-control input:empty[type="date"] ~ span:after, .switch.switch--sm .form input:empty[type="url"] ~ span:after, .switch.switch--sm .form-control input:empty[type="url"] ~ span:after, .switch.switch--sm .form input:empty[type="tel"] ~ span:after, .switch.switch--sm .form-control input:empty[type="tel"] ~ span:after, .switch.switch--sm .form input:empty[type="number"] ~ span:after, .switch.switch--sm .form-control input:empty[type="number"] ~ span:after, .switch.switch--sm .form input:empty[type="file"] ~ span:after, .switch.switch--sm .form-control input:empty[type="file"] ~ span:after, .switch.switch--sm .form select:empty ~ span:after, .form .switch.switch--sm select:empty ~ span:after, .switch.switch--sm .form-control select:empty ~ span:after, .form-control .switch.switch--sm select:empty ~ span:after, .switch.switch--sm .form textarea:empty ~ span:after, .form .switch.switch--sm textarea:empty ~ span:after, .switch.switch--sm .form-control textarea:empty ~ span:after, .form-control .switch.switch--sm textarea:empty ~ span:after {
  width: 38px;
  border-radius: 12px;
  height: 20px;
  width: 20px;
  line-height: 20px;
  top: 2px;
  bottom: 2px;
  margin-left: 2px;
  font-size: 0.8em;
  text-align: center;
  vertical-align: middle;
}

.switch.switch--sm input:checked ~ span:after, .switch.switch--sm .form input:checked[type="text"] ~ span:after, .switch.switch--sm .form-control input:checked[type="text"] ~ span:after, .switch.switch--sm .form input:checked[type="email"] ~ span:after, .switch.switch--sm .form-control input:checked[type="email"] ~ span:after, .switch.switch--sm .form input:checked[type="phone"] ~ span:after, .switch.switch--sm .form-control input:checked[type="phone"] ~ span:after, .switch.switch--sm .form input:checked[type="search"] ~ span:after, .switch.switch--sm .form-control input:checked[type="search"] ~ span:after, .switch.switch--sm .form input:checked[type="password"] ~ span:after, .switch.switch--sm .form-control input:checked[type="password"] ~ span:after, .switch.switch--sm .form input:checked[type="date"] ~ span:after, .switch.switch--sm .form-control input:checked[type="date"] ~ span:after, .switch.switch--sm .form input:checked[type="url"] ~ span:after, .switch.switch--sm .form-control input:checked[type="url"] ~ span:after, .switch.switch--sm .form input:checked[type="tel"] ~ span:after, .switch.switch--sm .form-control input:checked[type="tel"] ~ span:after, .switch.switch--sm .form input:checked[type="number"] ~ span:after, .switch.switch--sm .form-control input:checked[type="number"] ~ span:after, .switch.switch--sm .form input:checked[type="file"] ~ span:after, .switch.switch--sm .form-control input:checked[type="file"] ~ span:after, .switch.switch--sm .form select:checked ~ span:after, .form .switch.switch--sm select:checked ~ span:after, .switch.switch--sm .form-control select:checked ~ span:after, .form-control .switch.switch--sm select:checked ~ span:after, .switch.switch--sm .form textarea:checked ~ span:after, .form .switch.switch--sm textarea:checked ~ span:after, .switch.switch--sm .form-control textarea:checked ~ span:after, .form-control .switch.switch--sm textarea:checked ~ span:after {
  margin-left: 16px;
}

.switch.switch--brand:not(.switch--outline) input:empty ~ span:before, .switch.switch--brand:not(.switch--outline) .form input:empty[type="text"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control input:empty[type="text"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form input:empty[type="email"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control input:empty[type="email"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form input:empty[type="phone"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control input:empty[type="phone"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form input:empty[type="search"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control input:empty[type="search"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form input:empty[type="password"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control input:empty[type="password"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form input:empty[type="date"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control input:empty[type="date"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form input:empty[type="url"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control input:empty[type="url"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form input:empty[type="tel"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control input:empty[type="tel"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form input:empty[type="number"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control input:empty[type="number"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form input:empty[type="file"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control input:empty[type="file"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form select:empty ~ span:before, .form .switch.switch--brand:not(.switch--outline) select:empty ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control select:empty ~ span:before, .form-control .switch.switch--brand:not(.switch--outline) select:empty ~ span:before, .switch.switch--brand:not(.switch--outline) .form textarea:empty ~ span:before, .form .switch.switch--brand:not(.switch--outline) textarea:empty ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control textarea:empty ~ span:before, .form-control .switch.switch--brand:not(.switch--outline) textarea:empty ~ span:before {
  background-color: var(--brand-color);
}

.switch.switch--brand:not(.switch--outline) input:empty ~ span:after, .switch.switch--brand:not(.switch--outline) .form input:empty[type="text"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control input:empty[type="text"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form input:empty[type="email"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control input:empty[type="email"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form input:empty[type="phone"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control input:empty[type="phone"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form input:empty[type="search"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control input:empty[type="search"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form input:empty[type="password"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control input:empty[type="password"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form input:empty[type="date"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control input:empty[type="date"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form input:empty[type="url"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control input:empty[type="url"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form input:empty[type="tel"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control input:empty[type="tel"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form input:empty[type="number"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control input:empty[type="number"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form input:empty[type="file"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control input:empty[type="file"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form select:empty ~ span:after, .form .switch.switch--brand:not(.switch--outline) select:empty ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control select:empty ~ span:after, .form-control .switch.switch--brand:not(.switch--outline) select:empty ~ span:after, .switch.switch--brand:not(.switch--outline) .form textarea:empty ~ span:after, .form .switch.switch--brand:not(.switch--outline) textarea:empty ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control textarea:empty ~ span:after, .form-control .switch.switch--brand:not(.switch--outline) textarea:empty ~ span:after {
  color: var(--brand-color);
  background-color: #ffffff;
  opacity: 0.4;
}

.switch.switch--brand:not(.switch--outline) input:checked ~ span:before, .switch.switch--brand:not(.switch--outline) .form input:checked[type="text"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control input:checked[type="text"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form input:checked[type="email"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control input:checked[type="email"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form input:checked[type="phone"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control input:checked[type="phone"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form input:checked[type="search"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control input:checked[type="search"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form input:checked[type="password"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control input:checked[type="password"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form input:checked[type="date"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control input:checked[type="date"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form input:checked[type="url"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control input:checked[type="url"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form input:checked[type="tel"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control input:checked[type="tel"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form input:checked[type="number"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control input:checked[type="number"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form input:checked[type="file"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control input:checked[type="file"] ~ span:before, .switch.switch--brand:not(.switch--outline) .form select:checked ~ span:before, .form .switch.switch--brand:not(.switch--outline) select:checked ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control select:checked ~ span:before, .form-control .switch.switch--brand:not(.switch--outline) select:checked ~ span:before, .switch.switch--brand:not(.switch--outline) .form textarea:checked ~ span:before, .form .switch.switch--brand:not(.switch--outline) textarea:checked ~ span:before, .switch.switch--brand:not(.switch--outline) .form-control textarea:checked ~ span:before, .form-control .switch.switch--brand:not(.switch--outline) textarea:checked ~ span:before {
  background-color: var(--brand-color);
}

.switch.switch--brand:not(.switch--outline) input:checked ~ span:after, .switch.switch--brand:not(.switch--outline) .form input:checked[type="text"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control input:checked[type="text"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form input:checked[type="email"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control input:checked[type="email"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form input:checked[type="phone"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control input:checked[type="phone"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form input:checked[type="search"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control input:checked[type="search"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form input:checked[type="password"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control input:checked[type="password"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form input:checked[type="date"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control input:checked[type="date"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form input:checked[type="url"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control input:checked[type="url"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form input:checked[type="tel"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control input:checked[type="tel"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form input:checked[type="number"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control input:checked[type="number"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form input:checked[type="file"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control input:checked[type="file"] ~ span:after, .switch.switch--brand:not(.switch--outline) .form select:checked ~ span:after, .form .switch.switch--brand:not(.switch--outline) select:checked ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control select:checked ~ span:after, .form-control .switch.switch--brand:not(.switch--outline) select:checked ~ span:after, .switch.switch--brand:not(.switch--outline) .form textarea:checked ~ span:after, .form .switch.switch--brand:not(.switch--outline) textarea:checked ~ span:after, .switch.switch--brand:not(.switch--outline) .form-control textarea:checked ~ span:after, .form-control .switch.switch--brand:not(.switch--outline) textarea:checked ~ span:after {
  opacity: 1;
}

.switch.switch--outline.switch--brand input:empty ~ span:before, .switch.switch--outline.switch--brand .form input:empty[type="text"] ~ span:before, .switch.switch--outline.switch--brand .form-control input:empty[type="text"] ~ span:before, .switch.switch--outline.switch--brand .form input:empty[type="email"] ~ span:before, .switch.switch--outline.switch--brand .form-control input:empty[type="email"] ~ span:before, .switch.switch--outline.switch--brand .form input:empty[type="phone"] ~ span:before, .switch.switch--outline.switch--brand .form-control input:empty[type="phone"] ~ span:before, .switch.switch--outline.switch--brand .form input:empty[type="search"] ~ span:before, .switch.switch--outline.switch--brand .form-control input:empty[type="search"] ~ span:before, .switch.switch--outline.switch--brand .form input:empty[type="password"] ~ span:before, .switch.switch--outline.switch--brand .form-control input:empty[type="password"] ~ span:before, .switch.switch--outline.switch--brand .form input:empty[type="date"] ~ span:before, .switch.switch--outline.switch--brand .form-control input:empty[type="date"] ~ span:before, .switch.switch--outline.switch--brand .form input:empty[type="url"] ~ span:before, .switch.switch--outline.switch--brand .form-control input:empty[type="url"] ~ span:before, .switch.switch--outline.switch--brand .form input:empty[type="tel"] ~ span:before, .switch.switch--outline.switch--brand .form-control input:empty[type="tel"] ~ span:before, .switch.switch--outline.switch--brand .form input:empty[type="number"] ~ span:before, .switch.switch--outline.switch--brand .form-control input:empty[type="number"] ~ span:before, .switch.switch--outline.switch--brand .form input:empty[type="file"] ~ span:before, .switch.switch--outline.switch--brand .form-control input:empty[type="file"] ~ span:before, .switch.switch--outline.switch--brand .form select:empty ~ span:before, .form .switch.switch--outline.switch--brand select:empty ~ span:before, .switch.switch--outline.switch--brand .form-control select:empty ~ span:before, .form-control .switch.switch--outline.switch--brand select:empty ~ span:before, .switch.switch--outline.switch--brand .form textarea:empty ~ span:before, .form .switch.switch--outline.switch--brand textarea:empty ~ span:before, .switch.switch--outline.switch--brand .form-control textarea:empty ~ span:before, .form-control .switch.switch--outline.switch--brand textarea:empty ~ span:before {
  border: 2px solid #dee3eb;
  background-color: #e8ebf1;
}

.switch.switch--outline.switch--brand input:empty ~ span:after, .switch.switch--outline.switch--brand .form input:empty[type="text"] ~ span:after, .switch.switch--outline.switch--brand .form-control input:empty[type="text"] ~ span:after, .switch.switch--outline.switch--brand .form input:empty[type="email"] ~ span:after, .switch.switch--outline.switch--brand .form-control input:empty[type="email"] ~ span:after, .switch.switch--outline.switch--brand .form input:empty[type="phone"] ~ span:after, .switch.switch--outline.switch--brand .form-control input:empty[type="phone"] ~ span:after, .switch.switch--outline.switch--brand .form input:empty[type="search"] ~ span:after, .switch.switch--outline.switch--brand .form-control input:empty[type="search"] ~ span:after, .switch.switch--outline.switch--brand .form input:empty[type="password"] ~ span:after, .switch.switch--outline.switch--brand .form-control input:empty[type="password"] ~ span:after, .switch.switch--outline.switch--brand .form input:empty[type="date"] ~ span:after, .switch.switch--outline.switch--brand .form-control input:empty[type="date"] ~ span:after, .switch.switch--outline.switch--brand .form input:empty[type="url"] ~ span:after, .switch.switch--outline.switch--brand .form-control input:empty[type="url"] ~ span:after, .switch.switch--outline.switch--brand .form input:empty[type="tel"] ~ span:after, .switch.switch--outline.switch--brand .form-control input:empty[type="tel"] ~ span:after, .switch.switch--outline.switch--brand .form input:empty[type="number"] ~ span:after, .switch.switch--outline.switch--brand .form-control input:empty[type="number"] ~ span:after, .switch.switch--outline.switch--brand .form input:empty[type="file"] ~ span:after, .switch.switch--outline.switch--brand .form-control input:empty[type="file"] ~ span:after, .switch.switch--outline.switch--brand .form select:empty ~ span:after, .form .switch.switch--outline.switch--brand select:empty ~ span:after, .switch.switch--outline.switch--brand .form-control select:empty ~ span:after, .form-control .switch.switch--outline.switch--brand select:empty ~ span:after, .switch.switch--outline.switch--brand .form textarea:empty ~ span:after, .form .switch.switch--outline.switch--brand textarea:empty ~ span:after, .switch.switch--outline.switch--brand .form-control textarea:empty ~ span:after, .form-control .switch.switch--outline.switch--brand textarea:empty ~ span:after {
  color: #ffffff;
}

.switch.switch--outline.switch--brand input:checked ~ span:before, .switch.switch--outline.switch--brand .form input:checked[type="text"] ~ span:before, .switch.switch--outline.switch--brand .form-control input:checked[type="text"] ~ span:before, .switch.switch--outline.switch--brand .form input:checked[type="email"] ~ span:before, .switch.switch--outline.switch--brand .form-control input:checked[type="email"] ~ span:before, .switch.switch--outline.switch--brand .form input:checked[type="phone"] ~ span:before, .switch.switch--outline.switch--brand .form-control input:checked[type="phone"] ~ span:before, .switch.switch--outline.switch--brand .form input:checked[type="search"] ~ span:before, .switch.switch--outline.switch--brand .form-control input:checked[type="search"] ~ span:before, .switch.switch--outline.switch--brand .form input:checked[type="password"] ~ span:before, .switch.switch--outline.switch--brand .form-control input:checked[type="password"] ~ span:before, .switch.switch--outline.switch--brand .form input:checked[type="date"] ~ span:before, .switch.switch--outline.switch--brand .form-control input:checked[type="date"] ~ span:before, .switch.switch--outline.switch--brand .form input:checked[type="url"] ~ span:before, .switch.switch--outline.switch--brand .form-control input:checked[type="url"] ~ span:before, .switch.switch--outline.switch--brand .form input:checked[type="tel"] ~ span:before, .switch.switch--outline.switch--brand .form-control input:checked[type="tel"] ~ span:before, .switch.switch--outline.switch--brand .form input:checked[type="number"] ~ span:before, .switch.switch--outline.switch--brand .form-control input:checked[type="number"] ~ span:before, .switch.switch--outline.switch--brand .form input:checked[type="file"] ~ span:before, .switch.switch--outline.switch--brand .form-control input:checked[type="file"] ~ span:before, .switch.switch--outline.switch--brand .form select:checked ~ span:before, .form .switch.switch--outline.switch--brand select:checked ~ span:before, .switch.switch--outline.switch--brand .form-control select:checked ~ span:before, .form-control .switch.switch--outline.switch--brand select:checked ~ span:before, .switch.switch--outline.switch--brand .form textarea:checked ~ span:before, .form .switch.switch--outline.switch--brand textarea:checked ~ span:before, .switch.switch--outline.switch--brand .form-control textarea:checked ~ span:before, .form-control .switch.switch--outline.switch--brand textarea:checked ~ span:before {
  background-color: #ffffff;
}

.switch.switch--outline.switch--brand input:checked ~ span:after, .switch.switch--outline.switch--brand .form input:checked[type="text"] ~ span:after, .switch.switch--outline.switch--brand .form-control input:checked[type="text"] ~ span:after, .switch.switch--outline.switch--brand .form input:checked[type="email"] ~ span:after, .switch.switch--outline.switch--brand .form-control input:checked[type="email"] ~ span:after, .switch.switch--outline.switch--brand .form input:checked[type="phone"] ~ span:after, .switch.switch--outline.switch--brand .form-control input:checked[type="phone"] ~ span:after, .switch.switch--outline.switch--brand .form input:checked[type="search"] ~ span:after, .switch.switch--outline.switch--brand .form-control input:checked[type="search"] ~ span:after, .switch.switch--outline.switch--brand .form input:checked[type="password"] ~ span:after, .switch.switch--outline.switch--brand .form-control input:checked[type="password"] ~ span:after, .switch.switch--outline.switch--brand .form input:checked[type="date"] ~ span:after, .switch.switch--outline.switch--brand .form-control input:checked[type="date"] ~ span:after, .switch.switch--outline.switch--brand .form input:checked[type="url"] ~ span:after, .switch.switch--outline.switch--brand .form-control input:checked[type="url"] ~ span:after, .switch.switch--outline.switch--brand .form input:checked[type="tel"] ~ span:after, .switch.switch--outline.switch--brand .form-control input:checked[type="tel"] ~ span:after, .switch.switch--outline.switch--brand .form input:checked[type="number"] ~ span:after, .switch.switch--outline.switch--brand .form-control input:checked[type="number"] ~ span:after, .switch.switch--outline.switch--brand .form input:checked[type="file"] ~ span:after, .switch.switch--outline.switch--brand .form-control input:checked[type="file"] ~ span:after, .switch.switch--outline.switch--brand .form select:checked ~ span:after, .form .switch.switch--outline.switch--brand select:checked ~ span:after, .switch.switch--outline.switch--brand .form-control select:checked ~ span:after, .form-control .switch.switch--outline.switch--brand select:checked ~ span:after, .switch.switch--outline.switch--brand .form textarea:checked ~ span:after, .form .switch.switch--outline.switch--brand textarea:checked ~ span:after, .switch.switch--outline.switch--brand .form-control textarea:checked ~ span:after, .form-control .switch.switch--outline.switch--brand textarea:checked ~ span:after {
  background-color: var(--brand-color);
  opacity: 1;
}

.switch.switch--light:not(.switch--outline) input:empty ~ span:before, .switch.switch--light:not(.switch--outline) .form input:empty[type="text"] ~ span:before, .switch.switch--light:not(.switch--outline) .form-control input:empty[type="text"] ~ span:before, .switch.switch--light:not(.switch--outline) .form input:empty[type="email"] ~ span:before, .switch.switch--light:not(.switch--outline) .form-control input:empty[type="email"] ~ span:before, .switch.switch--light:not(.switch--outline) .form input:empty[type="phone"] ~ span:before, .switch.switch--light:not(.switch--outline) .form-control input:empty[type="phone"] ~ span:before, .switch.switch--light:not(.switch--outline) .form input:empty[type="search"] ~ span:before, .switch.switch--light:not(.switch--outline) .form-control input:empty[type="search"] ~ span:before, .switch.switch--light:not(.switch--outline) .form input:empty[type="password"] ~ span:before, .switch.switch--light:not(.switch--outline) .form-control input:empty[type="password"] ~ span:before, .switch.switch--light:not(.switch--outline) .form input:empty[type="date"] ~ span:before, .switch.switch--light:not(.switch--outline) .form-control input:empty[type="date"] ~ span:before, .switch.switch--light:not(.switch--outline) .form input:empty[type="url"] ~ span:before, .switch.switch--light:not(.switch--outline) .form-control input:empty[type="url"] ~ span:before, .switch.switch--light:not(.switch--outline) .form input:empty[type="tel"] ~ span:before, .switch.switch--light:not(.switch--outline) .form-control input:empty[type="tel"] ~ span:before, .switch.switch--light:not(.switch--outline) .form input:empty[type="number"] ~ span:before, .switch.switch--light:not(.switch--outline) .form-control input:empty[type="number"] ~ span:before, .switch.switch--light:not(.switch--outline) .form input:empty[type="file"] ~ span:before, .switch.switch--light:not(.switch--outline) .form-control input:empty[type="file"] ~ span:before, .switch.switch--light:not(.switch--outline) .form select:empty ~ span:before, .form .switch.switch--light:not(.switch--outline) select:empty ~ span:before, .switch.switch--light:not(.switch--outline) .form-control select:empty ~ span:before, .form-control .switch.switch--light:not(.switch--outline) select:empty ~ span:before, .switch.switch--light:not(.switch--outline) .form textarea:empty ~ span:before, .form .switch.switch--light:not(.switch--outline) textarea:empty ~ span:before, .switch.switch--light:not(.switch--outline) .form-control textarea:empty ~ span:before, .form-control .switch.switch--light:not(.switch--outline) textarea:empty ~ span:before {
  background-color: #ffffff;
}

.switch.switch--light:not(.switch--outline) input:empty ~ span:after, .switch.switch--light:not(.switch--outline) .form input:empty[type="text"] ~ span:after, .switch.switch--light:not(.switch--outline) .form-control input:empty[type="text"] ~ span:after, .switch.switch--light:not(.switch--outline) .form input:empty[type="email"] ~ span:after, .switch.switch--light:not(.switch--outline) .form-control input:empty[type="email"] ~ span:after, .switch.switch--light:not(.switch--outline) .form input:empty[type="phone"] ~ span:after, .switch.switch--light:not(.switch--outline) .form-control input:empty[type="phone"] ~ span:after, .switch.switch--light:not(.switch--outline) .form input:empty[type="search"] ~ span:after, .switch.switch--light:not(.switch--outline) .form-control input:empty[type="search"] ~ span:after, .switch.switch--light:not(.switch--outline) .form input:empty[type="password"] ~ span:after, .switch.switch--light:not(.switch--outline) .form-control input:empty[type="password"] ~ span:after, .switch.switch--light:not(.switch--outline) .form input:empty[type="date"] ~ span:after, .switch.switch--light:not(.switch--outline) .form-control input:empty[type="date"] ~ span:after, .switch.switch--light:not(.switch--outline) .form input:empty[type="url"] ~ span:after, .switch.switch--light:not(.switch--outline) .form-control input:empty[type="url"] ~ span:after, .switch.switch--light:not(.switch--outline) .form input:empty[type="tel"] ~ span:after, .switch.switch--light:not(.switch--outline) .form-control input:empty[type="tel"] ~ span:after, .switch.switch--light:not(.switch--outline) .form input:empty[type="number"] ~ span:after, .switch.switch--light:not(.switch--outline) .form-control input:empty[type="number"] ~ span:after, .switch.switch--light:not(.switch--outline) .form input:empty[type="file"] ~ span:after, .switch.switch--light:not(.switch--outline) .form-control input:empty[type="file"] ~ span:after, .switch.switch--light:not(.switch--outline) .form select:empty ~ span:after, .form .switch.switch--light:not(.switch--outline) select:empty ~ span:after, .switch.switch--light:not(.switch--outline) .form-control select:empty ~ span:after, .form-control .switch.switch--light:not(.switch--outline) select:empty ~ span:after, .switch.switch--light:not(.switch--outline) .form textarea:empty ~ span:after, .form .switch.switch--light:not(.switch--outline) textarea:empty ~ span:after, .switch.switch--light:not(.switch--outline) .form-control textarea:empty ~ span:after, .form-control .switch.switch--light:not(.switch--outline) textarea:empty ~ span:after {
  color: #ffffff;
  background-color: var(--txt-body);
  opacity: 0.4;
}

.switch.switch--light:not(.switch--outline) input:checked ~ span:before, .switch.switch--light:not(.switch--outline) .form input:checked[type="text"] ~ span:before, .switch.switch--light:not(.switch--outline) .form-control input:checked[type="text"] ~ span:before, .switch.switch--light:not(.switch--outline) .form input:checked[type="email"] ~ span:before, .switch.switch--light:not(.switch--outline) .form-control input:checked[type="email"] ~ span:before, .switch.switch--light:not(.switch--outline) .form input:checked[type="phone"] ~ span:before, .switch.switch--light:not(.switch--outline) .form-control input:checked[type="phone"] ~ span:before, .switch.switch--light:not(.switch--outline) .form input:checked[type="search"] ~ span:before, .switch.switch--light:not(.switch--outline) .form-control input:checked[type="search"] ~ span:before, .switch.switch--light:not(.switch--outline) .form input:checked[type="password"] ~ span:before, .switch.switch--light:not(.switch--outline) .form-control input:checked[type="password"] ~ span:before, .switch.switch--light:not(.switch--outline) .form input:checked[type="date"] ~ span:before, .switch.switch--light:not(.switch--outline) .form-control input:checked[type="date"] ~ span:before, .switch.switch--light:not(.switch--outline) .form input:checked[type="url"] ~ span:before, .switch.switch--light:not(.switch--outline) .form-control input:checked[type="url"] ~ span:before, .switch.switch--light:not(.switch--outline) .form input:checked[type="tel"] ~ span:before, .switch.switch--light:not(.switch--outline) .form-control input:checked[type="tel"] ~ span:before, .switch.switch--light:not(.switch--outline) .form input:checked[type="number"] ~ span:before, .switch.switch--light:not(.switch--outline) .form-control input:checked[type="number"] ~ span:before, .switch.switch--light:not(.switch--outline) .form input:checked[type="file"] ~ span:before, .switch.switch--light:not(.switch--outline) .form-control input:checked[type="file"] ~ span:before, .switch.switch--light:not(.switch--outline) .form select:checked ~ span:before, .form .switch.switch--light:not(.switch--outline) select:checked ~ span:before, .switch.switch--light:not(.switch--outline) .form-control select:checked ~ span:before, .form-control .switch.switch--light:not(.switch--outline) select:checked ~ span:before, .switch.switch--light:not(.switch--outline) .form textarea:checked ~ span:before, .form .switch.switch--light:not(.switch--outline) textarea:checked ~ span:before, .switch.switch--light:not(.switch--outline) .form-control textarea:checked ~ span:before, .form-control .switch.switch--light:not(.switch--outline) textarea:checked ~ span:before {
  background-color: #ffffff;
}

.switch.switch--light:not(.switch--outline) input:checked ~ span:after, .switch.switch--light:not(.switch--outline) .form input:checked[type="text"] ~ span:after, .switch.switch--light:not(.switch--outline) .form-control input:checked[type="text"] ~ span:after, .switch.switch--light:not(.switch--outline) .form input:checked[type="email"] ~ span:after, .switch.switch--light:not(.switch--outline) .form-control input:checked[type="email"] ~ span:after, .switch.switch--light:not(.switch--outline) .form input:checked[type="phone"] ~ span:after, .switch.switch--light:not(.switch--outline) .form-control input:checked[type="phone"] ~ span:after, .switch.switch--light:not(.switch--outline) .form input:checked[type="search"] ~ span:after, .switch.switch--light:not(.switch--outline) .form-control input:checked[type="search"] ~ span:after, .switch.switch--light:not(.switch--outline) .form input:checked[type="password"] ~ span:after, .switch.switch--light:not(.switch--outline) .form-control input:checked[type="password"] ~ span:after, .switch.switch--light:not(.switch--outline) .form input:checked[type="date"] ~ span:after, .switch.switch--light:not(.switch--outline) .form-control input:checked[type="date"] ~ span:after, .switch.switch--light:not(.switch--outline) .form input:checked[type="url"] ~ span:after, .switch.switch--light:not(.switch--outline) .form-control input:checked[type="url"] ~ span:after, .switch.switch--light:not(.switch--outline) .form input:checked[type="tel"] ~ span:after, .switch.switch--light:not(.switch--outline) .form-control input:checked[type="tel"] ~ span:after, .switch.switch--light:not(.switch--outline) .form input:checked[type="number"] ~ span:after, .switch.switch--light:not(.switch--outline) .form-control input:checked[type="number"] ~ span:after, .switch.switch--light:not(.switch--outline) .form input:checked[type="file"] ~ span:after, .switch.switch--light:not(.switch--outline) .form-control input:checked[type="file"] ~ span:after, .switch.switch--light:not(.switch--outline) .form select:checked ~ span:after, .form .switch.switch--light:not(.switch--outline) select:checked ~ span:after, .switch.switch--light:not(.switch--outline) .form-control select:checked ~ span:after, .form-control .switch.switch--light:not(.switch--outline) select:checked ~ span:after, .switch.switch--light:not(.switch--outline) .form textarea:checked ~ span:after, .form .switch.switch--light:not(.switch--outline) textarea:checked ~ span:after, .switch.switch--light:not(.switch--outline) .form-control textarea:checked ~ span:after, .form-control .switch.switch--light:not(.switch--outline) textarea:checked ~ span:after {
  opacity: 1;
}

.switch.switch--outline.switch--light input:empty ~ span:before, .switch.switch--outline.switch--light .form input:empty[type="text"] ~ span:before, .switch.switch--outline.switch--light .form-control input:empty[type="text"] ~ span:before, .switch.switch--outline.switch--light .form input:empty[type="email"] ~ span:before, .switch.switch--outline.switch--light .form-control input:empty[type="email"] ~ span:before, .switch.switch--outline.switch--light .form input:empty[type="phone"] ~ span:before, .switch.switch--outline.switch--light .form-control input:empty[type="phone"] ~ span:before, .switch.switch--outline.switch--light .form input:empty[type="search"] ~ span:before, .switch.switch--outline.switch--light .form-control input:empty[type="search"] ~ span:before, .switch.switch--outline.switch--light .form input:empty[type="password"] ~ span:before, .switch.switch--outline.switch--light .form-control input:empty[type="password"] ~ span:before, .switch.switch--outline.switch--light .form input:empty[type="date"] ~ span:before, .switch.switch--outline.switch--light .form-control input:empty[type="date"] ~ span:before, .switch.switch--outline.switch--light .form input:empty[type="url"] ~ span:before, .switch.switch--outline.switch--light .form-control input:empty[type="url"] ~ span:before, .switch.switch--outline.switch--light .form input:empty[type="tel"] ~ span:before, .switch.switch--outline.switch--light .form-control input:empty[type="tel"] ~ span:before, .switch.switch--outline.switch--light .form input:empty[type="number"] ~ span:before, .switch.switch--outline.switch--light .form-control input:empty[type="number"] ~ span:before, .switch.switch--outline.switch--light .form input:empty[type="file"] ~ span:before, .switch.switch--outline.switch--light .form-control input:empty[type="file"] ~ span:before, .switch.switch--outline.switch--light .form select:empty ~ span:before, .form .switch.switch--outline.switch--light select:empty ~ span:before, .switch.switch--outline.switch--light .form-control select:empty ~ span:before, .form-control .switch.switch--outline.switch--light select:empty ~ span:before, .switch.switch--outline.switch--light .form textarea:empty ~ span:before, .form .switch.switch--outline.switch--light textarea:empty ~ span:before, .switch.switch--outline.switch--light .form-control textarea:empty ~ span:before, .form-control .switch.switch--outline.switch--light textarea:empty ~ span:before {
  border: 2px solid #dee3eb;
  background-color: #e8ebf1;
}

.switch.switch--outline.switch--light input:empty ~ span:after, .switch.switch--outline.switch--light .form input:empty[type="text"] ~ span:after, .switch.switch--outline.switch--light .form-control input:empty[type="text"] ~ span:after, .switch.switch--outline.switch--light .form input:empty[type="email"] ~ span:after, .switch.switch--outline.switch--light .form-control input:empty[type="email"] ~ span:after, .switch.switch--outline.switch--light .form input:empty[type="phone"] ~ span:after, .switch.switch--outline.switch--light .form-control input:empty[type="phone"] ~ span:after, .switch.switch--outline.switch--light .form input:empty[type="search"] ~ span:after, .switch.switch--outline.switch--light .form-control input:empty[type="search"] ~ span:after, .switch.switch--outline.switch--light .form input:empty[type="password"] ~ span:after, .switch.switch--outline.switch--light .form-control input:empty[type="password"] ~ span:after, .switch.switch--outline.switch--light .form input:empty[type="date"] ~ span:after, .switch.switch--outline.switch--light .form-control input:empty[type="date"] ~ span:after, .switch.switch--outline.switch--light .form input:empty[type="url"] ~ span:after, .switch.switch--outline.switch--light .form-control input:empty[type="url"] ~ span:after, .switch.switch--outline.switch--light .form input:empty[type="tel"] ~ span:after, .switch.switch--outline.switch--light .form-control input:empty[type="tel"] ~ span:after, .switch.switch--outline.switch--light .form input:empty[type="number"] ~ span:after, .switch.switch--outline.switch--light .form-control input:empty[type="number"] ~ span:after, .switch.switch--outline.switch--light .form input:empty[type="file"] ~ span:after, .switch.switch--outline.switch--light .form-control input:empty[type="file"] ~ span:after, .switch.switch--outline.switch--light .form select:empty ~ span:after, .form .switch.switch--outline.switch--light select:empty ~ span:after, .switch.switch--outline.switch--light .form-control select:empty ~ span:after, .form-control .switch.switch--outline.switch--light select:empty ~ span:after, .switch.switch--outline.switch--light .form textarea:empty ~ span:after, .form .switch.switch--outline.switch--light textarea:empty ~ span:after, .switch.switch--outline.switch--light .form-control textarea:empty ~ span:after, .form-control .switch.switch--outline.switch--light textarea:empty ~ span:after {
  color: var(--txt-body);
}

.switch.switch--outline.switch--light input:checked ~ span:before, .switch.switch--outline.switch--light .form input:checked[type="text"] ~ span:before, .switch.switch--outline.switch--light .form-control input:checked[type="text"] ~ span:before, .switch.switch--outline.switch--light .form input:checked[type="email"] ~ span:before, .switch.switch--outline.switch--light .form-control input:checked[type="email"] ~ span:before, .switch.switch--outline.switch--light .form input:checked[type="phone"] ~ span:before, .switch.switch--outline.switch--light .form-control input:checked[type="phone"] ~ span:before, .switch.switch--outline.switch--light .form input:checked[type="search"] ~ span:before, .switch.switch--outline.switch--light .form-control input:checked[type="search"] ~ span:before, .switch.switch--outline.switch--light .form input:checked[type="password"] ~ span:before, .switch.switch--outline.switch--light .form-control input:checked[type="password"] ~ span:before, .switch.switch--outline.switch--light .form input:checked[type="date"] ~ span:before, .switch.switch--outline.switch--light .form-control input:checked[type="date"] ~ span:before, .switch.switch--outline.switch--light .form input:checked[type="url"] ~ span:before, .switch.switch--outline.switch--light .form-control input:checked[type="url"] ~ span:before, .switch.switch--outline.switch--light .form input:checked[type="tel"] ~ span:before, .switch.switch--outline.switch--light .form-control input:checked[type="tel"] ~ span:before, .switch.switch--outline.switch--light .form input:checked[type="number"] ~ span:before, .switch.switch--outline.switch--light .form-control input:checked[type="number"] ~ span:before, .switch.switch--outline.switch--light .form input:checked[type="file"] ~ span:before, .switch.switch--outline.switch--light .form-control input:checked[type="file"] ~ span:before, .switch.switch--outline.switch--light .form select:checked ~ span:before, .form .switch.switch--outline.switch--light select:checked ~ span:before, .switch.switch--outline.switch--light .form-control select:checked ~ span:before, .form-control .switch.switch--outline.switch--light select:checked ~ span:before, .switch.switch--outline.switch--light .form textarea:checked ~ span:before, .form .switch.switch--outline.switch--light textarea:checked ~ span:before, .switch.switch--outline.switch--light .form-control textarea:checked ~ span:before, .form-control .switch.switch--outline.switch--light textarea:checked ~ span:before {
  background-color: var(--txt-body);
}

.switch.switch--outline.switch--light input:checked ~ span:after, .switch.switch--outline.switch--light .form input:checked[type="text"] ~ span:after, .switch.switch--outline.switch--light .form-control input:checked[type="text"] ~ span:after, .switch.switch--outline.switch--light .form input:checked[type="email"] ~ span:after, .switch.switch--outline.switch--light .form-control input:checked[type="email"] ~ span:after, .switch.switch--outline.switch--light .form input:checked[type="phone"] ~ span:after, .switch.switch--outline.switch--light .form-control input:checked[type="phone"] ~ span:after, .switch.switch--outline.switch--light .form input:checked[type="search"] ~ span:after, .switch.switch--outline.switch--light .form-control input:checked[type="search"] ~ span:after, .switch.switch--outline.switch--light .form input:checked[type="password"] ~ span:after, .switch.switch--outline.switch--light .form-control input:checked[type="password"] ~ span:after, .switch.switch--outline.switch--light .form input:checked[type="date"] ~ span:after, .switch.switch--outline.switch--light .form-control input:checked[type="date"] ~ span:after, .switch.switch--outline.switch--light .form input:checked[type="url"] ~ span:after, .switch.switch--outline.switch--light .form-control input:checked[type="url"] ~ span:after, .switch.switch--outline.switch--light .form input:checked[type="tel"] ~ span:after, .switch.switch--outline.switch--light .form-control input:checked[type="tel"] ~ span:after, .switch.switch--outline.switch--light .form input:checked[type="number"] ~ span:after, .switch.switch--outline.switch--light .form-control input:checked[type="number"] ~ span:after, .switch.switch--outline.switch--light .form input:checked[type="file"] ~ span:after, .switch.switch--outline.switch--light .form-control input:checked[type="file"] ~ span:after, .switch.switch--outline.switch--light .form select:checked ~ span:after, .form .switch.switch--outline.switch--light select:checked ~ span:after, .switch.switch--outline.switch--light .form-control select:checked ~ span:after, .form-control .switch.switch--outline.switch--light select:checked ~ span:after, .switch.switch--outline.switch--light .form textarea:checked ~ span:after, .form .switch.switch--outline.switch--light textarea:checked ~ span:after, .switch.switch--outline.switch--light .form-control textarea:checked ~ span:after, .form-control .switch.switch--outline.switch--light textarea:checked ~ span:after {
  background-color: #ffffff;
  opacity: 1;
}

.switch.switch--dark:not(.switch--outline) input:empty ~ span:before, .switch.switch--dark:not(.switch--outline) .form input:empty[type="text"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control input:empty[type="text"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form input:empty[type="email"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control input:empty[type="email"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form input:empty[type="phone"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control input:empty[type="phone"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form input:empty[type="search"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control input:empty[type="search"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form input:empty[type="password"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control input:empty[type="password"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form input:empty[type="date"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control input:empty[type="date"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form input:empty[type="url"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control input:empty[type="url"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form input:empty[type="tel"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control input:empty[type="tel"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form input:empty[type="number"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control input:empty[type="number"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form input:empty[type="file"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control input:empty[type="file"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form select:empty ~ span:before, .form .switch.switch--dark:not(.switch--outline) select:empty ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control select:empty ~ span:before, .form-control .switch.switch--dark:not(.switch--outline) select:empty ~ span:before, .switch.switch--dark:not(.switch--outline) .form textarea:empty ~ span:before, .form .switch.switch--dark:not(.switch--outline) textarea:empty ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control textarea:empty ~ span:before, .form-control .switch.switch--dark:not(.switch--outline) textarea:empty ~ span:before {
  background-color: var(--txt-body);
}

.switch.switch--dark:not(.switch--outline) input:empty ~ span:after, .switch.switch--dark:not(.switch--outline) .form input:empty[type="text"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control input:empty[type="text"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form input:empty[type="email"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control input:empty[type="email"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form input:empty[type="phone"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control input:empty[type="phone"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form input:empty[type="search"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control input:empty[type="search"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form input:empty[type="password"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control input:empty[type="password"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form input:empty[type="date"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control input:empty[type="date"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form input:empty[type="url"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control input:empty[type="url"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form input:empty[type="tel"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control input:empty[type="tel"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form input:empty[type="number"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control input:empty[type="number"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form input:empty[type="file"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control input:empty[type="file"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form select:empty ~ span:after, .form .switch.switch--dark:not(.switch--outline) select:empty ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control select:empty ~ span:after, .form-control .switch.switch--dark:not(.switch--outline) select:empty ~ span:after, .switch.switch--dark:not(.switch--outline) .form textarea:empty ~ span:after, .form .switch.switch--dark:not(.switch--outline) textarea:empty ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control textarea:empty ~ span:after, .form-control .switch.switch--dark:not(.switch--outline) textarea:empty ~ span:after {
  color: var(--txt-body);
  background-color: #ffffff;
  opacity: 0.4;
}

.switch.switch--dark:not(.switch--outline) input:checked ~ span:before, .switch.switch--dark:not(.switch--outline) .form input:checked[type="text"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control input:checked[type="text"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form input:checked[type="email"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control input:checked[type="email"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form input:checked[type="phone"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control input:checked[type="phone"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form input:checked[type="search"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control input:checked[type="search"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form input:checked[type="password"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control input:checked[type="password"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form input:checked[type="date"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control input:checked[type="date"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form input:checked[type="url"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control input:checked[type="url"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form input:checked[type="tel"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control input:checked[type="tel"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form input:checked[type="number"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control input:checked[type="number"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form input:checked[type="file"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control input:checked[type="file"] ~ span:before, .switch.switch--dark:not(.switch--outline) .form select:checked ~ span:before, .form .switch.switch--dark:not(.switch--outline) select:checked ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control select:checked ~ span:before, .form-control .switch.switch--dark:not(.switch--outline) select:checked ~ span:before, .switch.switch--dark:not(.switch--outline) .form textarea:checked ~ span:before, .form .switch.switch--dark:not(.switch--outline) textarea:checked ~ span:before, .switch.switch--dark:not(.switch--outline) .form-control textarea:checked ~ span:before, .form-control .switch.switch--dark:not(.switch--outline) textarea:checked ~ span:before {
  background-color: var(--txt-body);
}

.switch.switch--dark:not(.switch--outline) input:checked ~ span:after, .switch.switch--dark:not(.switch--outline) .form input:checked[type="text"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control input:checked[type="text"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form input:checked[type="email"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control input:checked[type="email"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form input:checked[type="phone"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control input:checked[type="phone"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form input:checked[type="search"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control input:checked[type="search"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form input:checked[type="password"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control input:checked[type="password"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form input:checked[type="date"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control input:checked[type="date"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form input:checked[type="url"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control input:checked[type="url"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form input:checked[type="tel"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control input:checked[type="tel"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form input:checked[type="number"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control input:checked[type="number"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form input:checked[type="file"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control input:checked[type="file"] ~ span:after, .switch.switch--dark:not(.switch--outline) .form select:checked ~ span:after, .form .switch.switch--dark:not(.switch--outline) select:checked ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control select:checked ~ span:after, .form-control .switch.switch--dark:not(.switch--outline) select:checked ~ span:after, .switch.switch--dark:not(.switch--outline) .form textarea:checked ~ span:after, .form .switch.switch--dark:not(.switch--outline) textarea:checked ~ span:after, .switch.switch--dark:not(.switch--outline) .form-control textarea:checked ~ span:after, .form-control .switch.switch--dark:not(.switch--outline) textarea:checked ~ span:after {
  opacity: 1;
}

.switch.switch--outline.switch--dark input:empty ~ span:before, .switch.switch--outline.switch--dark .form input:empty[type="text"] ~ span:before, .switch.switch--outline.switch--dark .form-control input:empty[type="text"] ~ span:before, .switch.switch--outline.switch--dark .form input:empty[type="email"] ~ span:before, .switch.switch--outline.switch--dark .form-control input:empty[type="email"] ~ span:before, .switch.switch--outline.switch--dark .form input:empty[type="phone"] ~ span:before, .switch.switch--outline.switch--dark .form-control input:empty[type="phone"] ~ span:before, .switch.switch--outline.switch--dark .form input:empty[type="search"] ~ span:before, .switch.switch--outline.switch--dark .form-control input:empty[type="search"] ~ span:before, .switch.switch--outline.switch--dark .form input:empty[type="password"] ~ span:before, .switch.switch--outline.switch--dark .form-control input:empty[type="password"] ~ span:before, .switch.switch--outline.switch--dark .form input:empty[type="date"] ~ span:before, .switch.switch--outline.switch--dark .form-control input:empty[type="date"] ~ span:before, .switch.switch--outline.switch--dark .form input:empty[type="url"] ~ span:before, .switch.switch--outline.switch--dark .form-control input:empty[type="url"] ~ span:before, .switch.switch--outline.switch--dark .form input:empty[type="tel"] ~ span:before, .switch.switch--outline.switch--dark .form-control input:empty[type="tel"] ~ span:before, .switch.switch--outline.switch--dark .form input:empty[type="number"] ~ span:before, .switch.switch--outline.switch--dark .form-control input:empty[type="number"] ~ span:before, .switch.switch--outline.switch--dark .form input:empty[type="file"] ~ span:before, .switch.switch--outline.switch--dark .form-control input:empty[type="file"] ~ span:before, .switch.switch--outline.switch--dark .form select:empty ~ span:before, .form .switch.switch--outline.switch--dark select:empty ~ span:before, .switch.switch--outline.switch--dark .form-control select:empty ~ span:before, .form-control .switch.switch--outline.switch--dark select:empty ~ span:before, .switch.switch--outline.switch--dark .form textarea:empty ~ span:before, .form .switch.switch--outline.switch--dark textarea:empty ~ span:before, .switch.switch--outline.switch--dark .form-control textarea:empty ~ span:before, .form-control .switch.switch--outline.switch--dark textarea:empty ~ span:before {
  border: 2px solid #dee3eb;
  background-color: #e8ebf1;
}

.switch.switch--outline.switch--dark input:empty ~ span:after, .switch.switch--outline.switch--dark .form input:empty[type="text"] ~ span:after, .switch.switch--outline.switch--dark .form-control input:empty[type="text"] ~ span:after, .switch.switch--outline.switch--dark .form input:empty[type="email"] ~ span:after, .switch.switch--outline.switch--dark .form-control input:empty[type="email"] ~ span:after, .switch.switch--outline.switch--dark .form input:empty[type="phone"] ~ span:after, .switch.switch--outline.switch--dark .form-control input:empty[type="phone"] ~ span:after, .switch.switch--outline.switch--dark .form input:empty[type="search"] ~ span:after, .switch.switch--outline.switch--dark .form-control input:empty[type="search"] ~ span:after, .switch.switch--outline.switch--dark .form input:empty[type="password"] ~ span:after, .switch.switch--outline.switch--dark .form-control input:empty[type="password"] ~ span:after, .switch.switch--outline.switch--dark .form input:empty[type="date"] ~ span:after, .switch.switch--outline.switch--dark .form-control input:empty[type="date"] ~ span:after, .switch.switch--outline.switch--dark .form input:empty[type="url"] ~ span:after, .switch.switch--outline.switch--dark .form-control input:empty[type="url"] ~ span:after, .switch.switch--outline.switch--dark .form input:empty[type="tel"] ~ span:after, .switch.switch--outline.switch--dark .form-control input:empty[type="tel"] ~ span:after, .switch.switch--outline.switch--dark .form input:empty[type="number"] ~ span:after, .switch.switch--outline.switch--dark .form-control input:empty[type="number"] ~ span:after, .switch.switch--outline.switch--dark .form input:empty[type="file"] ~ span:after, .switch.switch--outline.switch--dark .form-control input:empty[type="file"] ~ span:after, .switch.switch--outline.switch--dark .form select:empty ~ span:after, .form .switch.switch--outline.switch--dark select:empty ~ span:after, .switch.switch--outline.switch--dark .form-control select:empty ~ span:after, .form-control .switch.switch--outline.switch--dark select:empty ~ span:after, .switch.switch--outline.switch--dark .form textarea:empty ~ span:after, .form .switch.switch--outline.switch--dark textarea:empty ~ span:after, .switch.switch--outline.switch--dark .form-control textarea:empty ~ span:after, .form-control .switch.switch--outline.switch--dark textarea:empty ~ span:after {
  color: #ffffff;
}

.switch.switch--outline.switch--dark input:checked ~ span:before, .switch.switch--outline.switch--dark .form input:checked[type="text"] ~ span:before, .switch.switch--outline.switch--dark .form-control input:checked[type="text"] ~ span:before, .switch.switch--outline.switch--dark .form input:checked[type="email"] ~ span:before, .switch.switch--outline.switch--dark .form-control input:checked[type="email"] ~ span:before, .switch.switch--outline.switch--dark .form input:checked[type="phone"] ~ span:before, .switch.switch--outline.switch--dark .form-control input:checked[type="phone"] ~ span:before, .switch.switch--outline.switch--dark .form input:checked[type="search"] ~ span:before, .switch.switch--outline.switch--dark .form-control input:checked[type="search"] ~ span:before, .switch.switch--outline.switch--dark .form input:checked[type="password"] ~ span:before, .switch.switch--outline.switch--dark .form-control input:checked[type="password"] ~ span:before, .switch.switch--outline.switch--dark .form input:checked[type="date"] ~ span:before, .switch.switch--outline.switch--dark .form-control input:checked[type="date"] ~ span:before, .switch.switch--outline.switch--dark .form input:checked[type="url"] ~ span:before, .switch.switch--outline.switch--dark .form-control input:checked[type="url"] ~ span:before, .switch.switch--outline.switch--dark .form input:checked[type="tel"] ~ span:before, .switch.switch--outline.switch--dark .form-control input:checked[type="tel"] ~ span:before, .switch.switch--outline.switch--dark .form input:checked[type="number"] ~ span:before, .switch.switch--outline.switch--dark .form-control input:checked[type="number"] ~ span:before, .switch.switch--outline.switch--dark .form input:checked[type="file"] ~ span:before, .switch.switch--outline.switch--dark .form-control input:checked[type="file"] ~ span:before, .switch.switch--outline.switch--dark .form select:checked ~ span:before, .form .switch.switch--outline.switch--dark select:checked ~ span:before, .switch.switch--outline.switch--dark .form-control select:checked ~ span:before, .form-control .switch.switch--outline.switch--dark select:checked ~ span:before, .switch.switch--outline.switch--dark .form textarea:checked ~ span:before, .form .switch.switch--outline.switch--dark textarea:checked ~ span:before, .switch.switch--outline.switch--dark .form-control textarea:checked ~ span:before, .form-control .switch.switch--outline.switch--dark textarea:checked ~ span:before {
  background-color: #ffffff;
}

.switch.switch--outline.switch--dark input:checked ~ span:after, .switch.switch--outline.switch--dark .form input:checked[type="text"] ~ span:after, .switch.switch--outline.switch--dark .form-control input:checked[type="text"] ~ span:after, .switch.switch--outline.switch--dark .form input:checked[type="email"] ~ span:after, .switch.switch--outline.switch--dark .form-control input:checked[type="email"] ~ span:after, .switch.switch--outline.switch--dark .form input:checked[type="phone"] ~ span:after, .switch.switch--outline.switch--dark .form-control input:checked[type="phone"] ~ span:after, .switch.switch--outline.switch--dark .form input:checked[type="search"] ~ span:after, .switch.switch--outline.switch--dark .form-control input:checked[type="search"] ~ span:after, .switch.switch--outline.switch--dark .form input:checked[type="password"] ~ span:after, .switch.switch--outline.switch--dark .form-control input:checked[type="password"] ~ span:after, .switch.switch--outline.switch--dark .form input:checked[type="date"] ~ span:after, .switch.switch--outline.switch--dark .form-control input:checked[type="date"] ~ span:after, .switch.switch--outline.switch--dark .form input:checked[type="url"] ~ span:after, .switch.switch--outline.switch--dark .form-control input:checked[type="url"] ~ span:after, .switch.switch--outline.switch--dark .form input:checked[type="tel"] ~ span:after, .switch.switch--outline.switch--dark .form-control input:checked[type="tel"] ~ span:after, .switch.switch--outline.switch--dark .form input:checked[type="number"] ~ span:after, .switch.switch--outline.switch--dark .form-control input:checked[type="number"] ~ span:after, .switch.switch--outline.switch--dark .form input:checked[type="file"] ~ span:after, .switch.switch--outline.switch--dark .form-control input:checked[type="file"] ~ span:after, .switch.switch--outline.switch--dark .form select:checked ~ span:after, .form .switch.switch--outline.switch--dark select:checked ~ span:after, .switch.switch--outline.switch--dark .form-control select:checked ~ span:after, .form-control .switch.switch--outline.switch--dark select:checked ~ span:after, .switch.switch--outline.switch--dark .form textarea:checked ~ span:after, .form .switch.switch--outline.switch--dark textarea:checked ~ span:after, .switch.switch--outline.switch--dark .form-control textarea:checked ~ span:after, .form-control .switch.switch--outline.switch--dark textarea:checked ~ span:after {
  background-color: var(--txt-body);
  opacity: 1;
}

.switch.switch--primary:not(.switch--outline) input:empty ~ span:before, .switch.switch--primary:not(.switch--outline) .form input:empty[type="text"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control input:empty[type="text"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form input:empty[type="email"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control input:empty[type="email"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form input:empty[type="phone"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control input:empty[type="phone"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form input:empty[type="search"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control input:empty[type="search"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form input:empty[type="password"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control input:empty[type="password"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form input:empty[type="date"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control input:empty[type="date"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form input:empty[type="url"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control input:empty[type="url"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form input:empty[type="tel"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control input:empty[type="tel"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form input:empty[type="number"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control input:empty[type="number"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form input:empty[type="file"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control input:empty[type="file"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form select:empty ~ span:before, .form .switch.switch--primary:not(.switch--outline) select:empty ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control select:empty ~ span:before, .form-control .switch.switch--primary:not(.switch--outline) select:empty ~ span:before, .switch.switch--primary:not(.switch--outline) .form textarea:empty ~ span:before, .form .switch.switch--primary:not(.switch--outline) textarea:empty ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control textarea:empty ~ span:before, .form-control .switch.switch--primary:not(.switch--outline) textarea:empty ~ span:before {
  background-color: var(--brand-color);
}

.switch.switch--primary:not(.switch--outline) input:empty ~ span:after, .switch.switch--primary:not(.switch--outline) .form input:empty[type="text"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control input:empty[type="text"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form input:empty[type="email"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control input:empty[type="email"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form input:empty[type="phone"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control input:empty[type="phone"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form input:empty[type="search"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control input:empty[type="search"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form input:empty[type="password"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control input:empty[type="password"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form input:empty[type="date"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control input:empty[type="date"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form input:empty[type="url"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control input:empty[type="url"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form input:empty[type="tel"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control input:empty[type="tel"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form input:empty[type="number"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control input:empty[type="number"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form input:empty[type="file"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control input:empty[type="file"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form select:empty ~ span:after, .form .switch.switch--primary:not(.switch--outline) select:empty ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control select:empty ~ span:after, .form-control .switch.switch--primary:not(.switch--outline) select:empty ~ span:after, .switch.switch--primary:not(.switch--outline) .form textarea:empty ~ span:after, .form .switch.switch--primary:not(.switch--outline) textarea:empty ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control textarea:empty ~ span:after, .form-control .switch.switch--primary:not(.switch--outline) textarea:empty ~ span:after {
  color: var(--brand-color);
  background-color: #ffffff;
  opacity: 0.4;
}

.switch.switch--primary:not(.switch--outline) input:checked ~ span:before, .switch.switch--primary:not(.switch--outline) .form input:checked[type="text"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control input:checked[type="text"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form input:checked[type="email"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control input:checked[type="email"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form input:checked[type="phone"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control input:checked[type="phone"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form input:checked[type="search"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control input:checked[type="search"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form input:checked[type="password"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control input:checked[type="password"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form input:checked[type="date"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control input:checked[type="date"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form input:checked[type="url"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control input:checked[type="url"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form input:checked[type="tel"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control input:checked[type="tel"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form input:checked[type="number"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control input:checked[type="number"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form input:checked[type="file"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control input:checked[type="file"] ~ span:before, .switch.switch--primary:not(.switch--outline) .form select:checked ~ span:before, .form .switch.switch--primary:not(.switch--outline) select:checked ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control select:checked ~ span:before, .form-control .switch.switch--primary:not(.switch--outline) select:checked ~ span:before, .switch.switch--primary:not(.switch--outline) .form textarea:checked ~ span:before, .form .switch.switch--primary:not(.switch--outline) textarea:checked ~ span:before, .switch.switch--primary:not(.switch--outline) .form-control textarea:checked ~ span:before, .form-control .switch.switch--primary:not(.switch--outline) textarea:checked ~ span:before {
  background-color: var(--brand-color);
}

.switch.switch--primary:not(.switch--outline) input:checked ~ span:after, .switch.switch--primary:not(.switch--outline) .form input:checked[type="text"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control input:checked[type="text"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form input:checked[type="email"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control input:checked[type="email"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form input:checked[type="phone"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control input:checked[type="phone"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form input:checked[type="search"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control input:checked[type="search"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form input:checked[type="password"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control input:checked[type="password"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form input:checked[type="date"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control input:checked[type="date"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form input:checked[type="url"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control input:checked[type="url"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form input:checked[type="tel"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control input:checked[type="tel"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form input:checked[type="number"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control input:checked[type="number"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form input:checked[type="file"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control input:checked[type="file"] ~ span:after, .switch.switch--primary:not(.switch--outline) .form select:checked ~ span:after, .form .switch.switch--primary:not(.switch--outline) select:checked ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control select:checked ~ span:after, .form-control .switch.switch--primary:not(.switch--outline) select:checked ~ span:after, .switch.switch--primary:not(.switch--outline) .form textarea:checked ~ span:after, .form .switch.switch--primary:not(.switch--outline) textarea:checked ~ span:after, .switch.switch--primary:not(.switch--outline) .form-control textarea:checked ~ span:after, .form-control .switch.switch--primary:not(.switch--outline) textarea:checked ~ span:after {
  opacity: 1;
}

.switch.switch--outline.switch--primary input:empty ~ span:before, .switch.switch--outline.switch--primary .form input:empty[type="text"] ~ span:before, .switch.switch--outline.switch--primary .form-control input:empty[type="text"] ~ span:before, .switch.switch--outline.switch--primary .form input:empty[type="email"] ~ span:before, .switch.switch--outline.switch--primary .form-control input:empty[type="email"] ~ span:before, .switch.switch--outline.switch--primary .form input:empty[type="phone"] ~ span:before, .switch.switch--outline.switch--primary .form-control input:empty[type="phone"] ~ span:before, .switch.switch--outline.switch--primary .form input:empty[type="search"] ~ span:before, .switch.switch--outline.switch--primary .form-control input:empty[type="search"] ~ span:before, .switch.switch--outline.switch--primary .form input:empty[type="password"] ~ span:before, .switch.switch--outline.switch--primary .form-control input:empty[type="password"] ~ span:before, .switch.switch--outline.switch--primary .form input:empty[type="date"] ~ span:before, .switch.switch--outline.switch--primary .form-control input:empty[type="date"] ~ span:before, .switch.switch--outline.switch--primary .form input:empty[type="url"] ~ span:before, .switch.switch--outline.switch--primary .form-control input:empty[type="url"] ~ span:before, .switch.switch--outline.switch--primary .form input:empty[type="tel"] ~ span:before, .switch.switch--outline.switch--primary .form-control input:empty[type="tel"] ~ span:before, .switch.switch--outline.switch--primary .form input:empty[type="number"] ~ span:before, .switch.switch--outline.switch--primary .form-control input:empty[type="number"] ~ span:before, .switch.switch--outline.switch--primary .form input:empty[type="file"] ~ span:before, .switch.switch--outline.switch--primary .form-control input:empty[type="file"] ~ span:before, .switch.switch--outline.switch--primary .form select:empty ~ span:before, .form .switch.switch--outline.switch--primary select:empty ~ span:before, .switch.switch--outline.switch--primary .form-control select:empty ~ span:before, .form-control .switch.switch--outline.switch--primary select:empty ~ span:before, .switch.switch--outline.switch--primary .form textarea:empty ~ span:before, .form .switch.switch--outline.switch--primary textarea:empty ~ span:before, .switch.switch--outline.switch--primary .form-control textarea:empty ~ span:before, .form-control .switch.switch--outline.switch--primary textarea:empty ~ span:before {
  border: 2px solid #dee3eb;
  background-color: #e8ebf1;
}

.switch.switch--outline.switch--primary input:empty ~ span:after, .switch.switch--outline.switch--primary .form input:empty[type="text"] ~ span:after, .switch.switch--outline.switch--primary .form-control input:empty[type="text"] ~ span:after, .switch.switch--outline.switch--primary .form input:empty[type="email"] ~ span:after, .switch.switch--outline.switch--primary .form-control input:empty[type="email"] ~ span:after, .switch.switch--outline.switch--primary .form input:empty[type="phone"] ~ span:after, .switch.switch--outline.switch--primary .form-control input:empty[type="phone"] ~ span:after, .switch.switch--outline.switch--primary .form input:empty[type="search"] ~ span:after, .switch.switch--outline.switch--primary .form-control input:empty[type="search"] ~ span:after, .switch.switch--outline.switch--primary .form input:empty[type="password"] ~ span:after, .switch.switch--outline.switch--primary .form-control input:empty[type="password"] ~ span:after, .switch.switch--outline.switch--primary .form input:empty[type="date"] ~ span:after, .switch.switch--outline.switch--primary .form-control input:empty[type="date"] ~ span:after, .switch.switch--outline.switch--primary .form input:empty[type="url"] ~ span:after, .switch.switch--outline.switch--primary .form-control input:empty[type="url"] ~ span:after, .switch.switch--outline.switch--primary .form input:empty[type="tel"] ~ span:after, .switch.switch--outline.switch--primary .form-control input:empty[type="tel"] ~ span:after, .switch.switch--outline.switch--primary .form input:empty[type="number"] ~ span:after, .switch.switch--outline.switch--primary .form-control input:empty[type="number"] ~ span:after, .switch.switch--outline.switch--primary .form input:empty[type="file"] ~ span:after, .switch.switch--outline.switch--primary .form-control input:empty[type="file"] ~ span:after, .switch.switch--outline.switch--primary .form select:empty ~ span:after, .form .switch.switch--outline.switch--primary select:empty ~ span:after, .switch.switch--outline.switch--primary .form-control select:empty ~ span:after, .form-control .switch.switch--outline.switch--primary select:empty ~ span:after, .switch.switch--outline.switch--primary .form textarea:empty ~ span:after, .form .switch.switch--outline.switch--primary textarea:empty ~ span:after, .switch.switch--outline.switch--primary .form-control textarea:empty ~ span:after, .form-control .switch.switch--outline.switch--primary textarea:empty ~ span:after {
  color: #ffffff;
}

.switch.switch--outline.switch--primary input:checked ~ span:before, .switch.switch--outline.switch--primary .form input:checked[type="text"] ~ span:before, .switch.switch--outline.switch--primary .form-control input:checked[type="text"] ~ span:before, .switch.switch--outline.switch--primary .form input:checked[type="email"] ~ span:before, .switch.switch--outline.switch--primary .form-control input:checked[type="email"] ~ span:before, .switch.switch--outline.switch--primary .form input:checked[type="phone"] ~ span:before, .switch.switch--outline.switch--primary .form-control input:checked[type="phone"] ~ span:before, .switch.switch--outline.switch--primary .form input:checked[type="search"] ~ span:before, .switch.switch--outline.switch--primary .form-control input:checked[type="search"] ~ span:before, .switch.switch--outline.switch--primary .form input:checked[type="password"] ~ span:before, .switch.switch--outline.switch--primary .form-control input:checked[type="password"] ~ span:before, .switch.switch--outline.switch--primary .form input:checked[type="date"] ~ span:before, .switch.switch--outline.switch--primary .form-control input:checked[type="date"] ~ span:before, .switch.switch--outline.switch--primary .form input:checked[type="url"] ~ span:before, .switch.switch--outline.switch--primary .form-control input:checked[type="url"] ~ span:before, .switch.switch--outline.switch--primary .form input:checked[type="tel"] ~ span:before, .switch.switch--outline.switch--primary .form-control input:checked[type="tel"] ~ span:before, .switch.switch--outline.switch--primary .form input:checked[type="number"] ~ span:before, .switch.switch--outline.switch--primary .form-control input:checked[type="number"] ~ span:before, .switch.switch--outline.switch--primary .form input:checked[type="file"] ~ span:before, .switch.switch--outline.switch--primary .form-control input:checked[type="file"] ~ span:before, .switch.switch--outline.switch--primary .form select:checked ~ span:before, .form .switch.switch--outline.switch--primary select:checked ~ span:before, .switch.switch--outline.switch--primary .form-control select:checked ~ span:before, .form-control .switch.switch--outline.switch--primary select:checked ~ span:before, .switch.switch--outline.switch--primary .form textarea:checked ~ span:before, .form .switch.switch--outline.switch--primary textarea:checked ~ span:before, .switch.switch--outline.switch--primary .form-control textarea:checked ~ span:before, .form-control .switch.switch--outline.switch--primary textarea:checked ~ span:before {
  background-color: #ffffff;
}

.switch.switch--outline.switch--primary input:checked ~ span:after, .switch.switch--outline.switch--primary .form input:checked[type="text"] ~ span:after, .switch.switch--outline.switch--primary .form-control input:checked[type="text"] ~ span:after, .switch.switch--outline.switch--primary .form input:checked[type="email"] ~ span:after, .switch.switch--outline.switch--primary .form-control input:checked[type="email"] ~ span:after, .switch.switch--outline.switch--primary .form input:checked[type="phone"] ~ span:after, .switch.switch--outline.switch--primary .form-control input:checked[type="phone"] ~ span:after, .switch.switch--outline.switch--primary .form input:checked[type="search"] ~ span:after, .switch.switch--outline.switch--primary .form-control input:checked[type="search"] ~ span:after, .switch.switch--outline.switch--primary .form input:checked[type="password"] ~ span:after, .switch.switch--outline.switch--primary .form-control input:checked[type="password"] ~ span:after, .switch.switch--outline.switch--primary .form input:checked[type="date"] ~ span:after, .switch.switch--outline.switch--primary .form-control input:checked[type="date"] ~ span:after, .switch.switch--outline.switch--primary .form input:checked[type="url"] ~ span:after, .switch.switch--outline.switch--primary .form-control input:checked[type="url"] ~ span:after, .switch.switch--outline.switch--primary .form input:checked[type="tel"] ~ span:after, .switch.switch--outline.switch--primary .form-control input:checked[type="tel"] ~ span:after, .switch.switch--outline.switch--primary .form input:checked[type="number"] ~ span:after, .switch.switch--outline.switch--primary .form-control input:checked[type="number"] ~ span:after, .switch.switch--outline.switch--primary .form input:checked[type="file"] ~ span:after, .switch.switch--outline.switch--primary .form-control input:checked[type="file"] ~ span:after, .switch.switch--outline.switch--primary .form select:checked ~ span:after, .form .switch.switch--outline.switch--primary select:checked ~ span:after, .switch.switch--outline.switch--primary .form-control select:checked ~ span:after, .form-control .switch.switch--outline.switch--primary select:checked ~ span:after, .switch.switch--outline.switch--primary .form textarea:checked ~ span:after, .form .switch.switch--outline.switch--primary textarea:checked ~ span:after, .switch.switch--outline.switch--primary .form-control textarea:checked ~ span:after, .form-control .switch.switch--outline.switch--primary textarea:checked ~ span:after {
  background-color: var(--brand-color);
  opacity: 1;
}

.switch.switch--success:not(.switch--outline) input:empty ~ span:before, .switch.switch--success:not(.switch--outline) .form input:empty[type="text"] ~ span:before, .switch.switch--success:not(.switch--outline) .form-control input:empty[type="text"] ~ span:before, .switch.switch--success:not(.switch--outline) .form input:empty[type="email"] ~ span:before, .switch.switch--success:not(.switch--outline) .form-control input:empty[type="email"] ~ span:before, .switch.switch--success:not(.switch--outline) .form input:empty[type="phone"] ~ span:before, .switch.switch--success:not(.switch--outline) .form-control input:empty[type="phone"] ~ span:before, .switch.switch--success:not(.switch--outline) .form input:empty[type="search"] ~ span:before, .switch.switch--success:not(.switch--outline) .form-control input:empty[type="search"] ~ span:before, .switch.switch--success:not(.switch--outline) .form input:empty[type="password"] ~ span:before, .switch.switch--success:not(.switch--outline) .form-control input:empty[type="password"] ~ span:before, .switch.switch--success:not(.switch--outline) .form input:empty[type="date"] ~ span:before, .switch.switch--success:not(.switch--outline) .form-control input:empty[type="date"] ~ span:before, .switch.switch--success:not(.switch--outline) .form input:empty[type="url"] ~ span:before, .switch.switch--success:not(.switch--outline) .form-control input:empty[type="url"] ~ span:before, .switch.switch--success:not(.switch--outline) .form input:empty[type="tel"] ~ span:before, .switch.switch--success:not(.switch--outline) .form-control input:empty[type="tel"] ~ span:before, .switch.switch--success:not(.switch--outline) .form input:empty[type="number"] ~ span:before, .switch.switch--success:not(.switch--outline) .form-control input:empty[type="number"] ~ span:before, .switch.switch--success:not(.switch--outline) .form input:empty[type="file"] ~ span:before, .switch.switch--success:not(.switch--outline) .form-control input:empty[type="file"] ~ span:before, .switch.switch--success:not(.switch--outline) .form select:empty ~ span:before, .form .switch.switch--success:not(.switch--outline) select:empty ~ span:before, .switch.switch--success:not(.switch--outline) .form-control select:empty ~ span:before, .form-control .switch.switch--success:not(.switch--outline) select:empty ~ span:before, .switch.switch--success:not(.switch--outline) .form textarea:empty ~ span:before, .form .switch.switch--success:not(.switch--outline) textarea:empty ~ span:before, .switch.switch--success:not(.switch--outline) .form-control textarea:empty ~ span:before, .form-control .switch.switch--success:not(.switch--outline) textarea:empty ~ span:before {
  background-color: #1dc9b7;
}

.switch.switch--success:not(.switch--outline) input:empty ~ span:after, .switch.switch--success:not(.switch--outline) .form input:empty[type="text"] ~ span:after, .switch.switch--success:not(.switch--outline) .form-control input:empty[type="text"] ~ span:after, .switch.switch--success:not(.switch--outline) .form input:empty[type="email"] ~ span:after, .switch.switch--success:not(.switch--outline) .form-control input:empty[type="email"] ~ span:after, .switch.switch--success:not(.switch--outline) .form input:empty[type="phone"] ~ span:after, .switch.switch--success:not(.switch--outline) .form-control input:empty[type="phone"] ~ span:after, .switch.switch--success:not(.switch--outline) .form input:empty[type="search"] ~ span:after, .switch.switch--success:not(.switch--outline) .form-control input:empty[type="search"] ~ span:after, .switch.switch--success:not(.switch--outline) .form input:empty[type="password"] ~ span:after, .switch.switch--success:not(.switch--outline) .form-control input:empty[type="password"] ~ span:after, .switch.switch--success:not(.switch--outline) .form input:empty[type="date"] ~ span:after, .switch.switch--success:not(.switch--outline) .form-control input:empty[type="date"] ~ span:after, .switch.switch--success:not(.switch--outline) .form input:empty[type="url"] ~ span:after, .switch.switch--success:not(.switch--outline) .form-control input:empty[type="url"] ~ span:after, .switch.switch--success:not(.switch--outline) .form input:empty[type="tel"] ~ span:after, .switch.switch--success:not(.switch--outline) .form-control input:empty[type="tel"] ~ span:after, .switch.switch--success:not(.switch--outline) .form input:empty[type="number"] ~ span:after, .switch.switch--success:not(.switch--outline) .form-control input:empty[type="number"] ~ span:after, .switch.switch--success:not(.switch--outline) .form input:empty[type="file"] ~ span:after, .switch.switch--success:not(.switch--outline) .form-control input:empty[type="file"] ~ span:after, .switch.switch--success:not(.switch--outline) .form select:empty ~ span:after, .form .switch.switch--success:not(.switch--outline) select:empty ~ span:after, .switch.switch--success:not(.switch--outline) .form-control select:empty ~ span:after, .form-control .switch.switch--success:not(.switch--outline) select:empty ~ span:after, .switch.switch--success:not(.switch--outline) .form textarea:empty ~ span:after, .form .switch.switch--success:not(.switch--outline) textarea:empty ~ span:after, .switch.switch--success:not(.switch--outline) .form-control textarea:empty ~ span:after, .form-control .switch.switch--success:not(.switch--outline) textarea:empty ~ span:after {
  color: #1dc9b7;
  background-color: #ffffff;
  opacity: 0.4;
}

.switch.switch--success:not(.switch--outline) input:checked ~ span:before, .switch.switch--success:not(.switch--outline) .form input:checked[type="text"] ~ span:before, .switch.switch--success:not(.switch--outline) .form-control input:checked[type="text"] ~ span:before, .switch.switch--success:not(.switch--outline) .form input:checked[type="email"] ~ span:before, .switch.switch--success:not(.switch--outline) .form-control input:checked[type="email"] ~ span:before, .switch.switch--success:not(.switch--outline) .form input:checked[type="phone"] ~ span:before, .switch.switch--success:not(.switch--outline) .form-control input:checked[type="phone"] ~ span:before, .switch.switch--success:not(.switch--outline) .form input:checked[type="search"] ~ span:before, .switch.switch--success:not(.switch--outline) .form-control input:checked[type="search"] ~ span:before, .switch.switch--success:not(.switch--outline) .form input:checked[type="password"] ~ span:before, .switch.switch--success:not(.switch--outline) .form-control input:checked[type="password"] ~ span:before, .switch.switch--success:not(.switch--outline) .form input:checked[type="date"] ~ span:before, .switch.switch--success:not(.switch--outline) .form-control input:checked[type="date"] ~ span:before, .switch.switch--success:not(.switch--outline) .form input:checked[type="url"] ~ span:before, .switch.switch--success:not(.switch--outline) .form-control input:checked[type="url"] ~ span:before, .switch.switch--success:not(.switch--outline) .form input:checked[type="tel"] ~ span:before, .switch.switch--success:not(.switch--outline) .form-control input:checked[type="tel"] ~ span:before, .switch.switch--success:not(.switch--outline) .form input:checked[type="number"] ~ span:before, .switch.switch--success:not(.switch--outline) .form-control input:checked[type="number"] ~ span:before, .switch.switch--success:not(.switch--outline) .form input:checked[type="file"] ~ span:before, .switch.switch--success:not(.switch--outline) .form-control input:checked[type="file"] ~ span:before, .switch.switch--success:not(.switch--outline) .form select:checked ~ span:before, .form .switch.switch--success:not(.switch--outline) select:checked ~ span:before, .switch.switch--success:not(.switch--outline) .form-control select:checked ~ span:before, .form-control .switch.switch--success:not(.switch--outline) select:checked ~ span:before, .switch.switch--success:not(.switch--outline) .form textarea:checked ~ span:before, .form .switch.switch--success:not(.switch--outline) textarea:checked ~ span:before, .switch.switch--success:not(.switch--outline) .form-control textarea:checked ~ span:before, .form-control .switch.switch--success:not(.switch--outline) textarea:checked ~ span:before {
  background-color: #1dc9b7;
}

.switch.switch--success:not(.switch--outline) input:checked ~ span:after, .switch.switch--success:not(.switch--outline) .form input:checked[type="text"] ~ span:after, .switch.switch--success:not(.switch--outline) .form-control input:checked[type="text"] ~ span:after, .switch.switch--success:not(.switch--outline) .form input:checked[type="email"] ~ span:after, .switch.switch--success:not(.switch--outline) .form-control input:checked[type="email"] ~ span:after, .switch.switch--success:not(.switch--outline) .form input:checked[type="phone"] ~ span:after, .switch.switch--success:not(.switch--outline) .form-control input:checked[type="phone"] ~ span:after, .switch.switch--success:not(.switch--outline) .form input:checked[type="search"] ~ span:after, .switch.switch--success:not(.switch--outline) .form-control input:checked[type="search"] ~ span:after, .switch.switch--success:not(.switch--outline) .form input:checked[type="password"] ~ span:after, .switch.switch--success:not(.switch--outline) .form-control input:checked[type="password"] ~ span:after, .switch.switch--success:not(.switch--outline) .form input:checked[type="date"] ~ span:after, .switch.switch--success:not(.switch--outline) .form-control input:checked[type="date"] ~ span:after, .switch.switch--success:not(.switch--outline) .form input:checked[type="url"] ~ span:after, .switch.switch--success:not(.switch--outline) .form-control input:checked[type="url"] ~ span:after, .switch.switch--success:not(.switch--outline) .form input:checked[type="tel"] ~ span:after, .switch.switch--success:not(.switch--outline) .form-control input:checked[type="tel"] ~ span:after, .switch.switch--success:not(.switch--outline) .form input:checked[type="number"] ~ span:after, .switch.switch--success:not(.switch--outline) .form-control input:checked[type="number"] ~ span:after, .switch.switch--success:not(.switch--outline) .form input:checked[type="file"] ~ span:after, .switch.switch--success:not(.switch--outline) .form-control input:checked[type="file"] ~ span:after, .switch.switch--success:not(.switch--outline) .form select:checked ~ span:after, .form .switch.switch--success:not(.switch--outline) select:checked ~ span:after, .switch.switch--success:not(.switch--outline) .form-control select:checked ~ span:after, .form-control .switch.switch--success:not(.switch--outline) select:checked ~ span:after, .switch.switch--success:not(.switch--outline) .form textarea:checked ~ span:after, .form .switch.switch--success:not(.switch--outline) textarea:checked ~ span:after, .switch.switch--success:not(.switch--outline) .form-control textarea:checked ~ span:after, .form-control .switch.switch--success:not(.switch--outline) textarea:checked ~ span:after {
  opacity: 1;
}

.switch.switch--outline.switch--success input:empty ~ span:before, .switch.switch--outline.switch--success .form input:empty[type="text"] ~ span:before, .switch.switch--outline.switch--success .form-control input:empty[type="text"] ~ span:before, .switch.switch--outline.switch--success .form input:empty[type="email"] ~ span:before, .switch.switch--outline.switch--success .form-control input:empty[type="email"] ~ span:before, .switch.switch--outline.switch--success .form input:empty[type="phone"] ~ span:before, .switch.switch--outline.switch--success .form-control input:empty[type="phone"] ~ span:before, .switch.switch--outline.switch--success .form input:empty[type="search"] ~ span:before, .switch.switch--outline.switch--success .form-control input:empty[type="search"] ~ span:before, .switch.switch--outline.switch--success .form input:empty[type="password"] ~ span:before, .switch.switch--outline.switch--success .form-control input:empty[type="password"] ~ span:before, .switch.switch--outline.switch--success .form input:empty[type="date"] ~ span:before, .switch.switch--outline.switch--success .form-control input:empty[type="date"] ~ span:before, .switch.switch--outline.switch--success .form input:empty[type="url"] ~ span:before, .switch.switch--outline.switch--success .form-control input:empty[type="url"] ~ span:before, .switch.switch--outline.switch--success .form input:empty[type="tel"] ~ span:before, .switch.switch--outline.switch--success .form-control input:empty[type="tel"] ~ span:before, .switch.switch--outline.switch--success .form input:empty[type="number"] ~ span:before, .switch.switch--outline.switch--success .form-control input:empty[type="number"] ~ span:before, .switch.switch--outline.switch--success .form input:empty[type="file"] ~ span:before, .switch.switch--outline.switch--success .form-control input:empty[type="file"] ~ span:before, .switch.switch--outline.switch--success .form select:empty ~ span:before, .form .switch.switch--outline.switch--success select:empty ~ span:before, .switch.switch--outline.switch--success .form-control select:empty ~ span:before, .form-control .switch.switch--outline.switch--success select:empty ~ span:before, .switch.switch--outline.switch--success .form textarea:empty ~ span:before, .form .switch.switch--outline.switch--success textarea:empty ~ span:before, .switch.switch--outline.switch--success .form-control textarea:empty ~ span:before, .form-control .switch.switch--outline.switch--success textarea:empty ~ span:before {
  border: 2px solid #dee3eb;
  background-color: #e8ebf1;
}

.switch.switch--outline.switch--success input:empty ~ span:after, .switch.switch--outline.switch--success .form input:empty[type="text"] ~ span:after, .switch.switch--outline.switch--success .form-control input:empty[type="text"] ~ span:after, .switch.switch--outline.switch--success .form input:empty[type="email"] ~ span:after, .switch.switch--outline.switch--success .form-control input:empty[type="email"] ~ span:after, .switch.switch--outline.switch--success .form input:empty[type="phone"] ~ span:after, .switch.switch--outline.switch--success .form-control input:empty[type="phone"] ~ span:after, .switch.switch--outline.switch--success .form input:empty[type="search"] ~ span:after, .switch.switch--outline.switch--success .form-control input:empty[type="search"] ~ span:after, .switch.switch--outline.switch--success .form input:empty[type="password"] ~ span:after, .switch.switch--outline.switch--success .form-control input:empty[type="password"] ~ span:after, .switch.switch--outline.switch--success .form input:empty[type="date"] ~ span:after, .switch.switch--outline.switch--success .form-control input:empty[type="date"] ~ span:after, .switch.switch--outline.switch--success .form input:empty[type="url"] ~ span:after, .switch.switch--outline.switch--success .form-control input:empty[type="url"] ~ span:after, .switch.switch--outline.switch--success .form input:empty[type="tel"] ~ span:after, .switch.switch--outline.switch--success .form-control input:empty[type="tel"] ~ span:after, .switch.switch--outline.switch--success .form input:empty[type="number"] ~ span:after, .switch.switch--outline.switch--success .form-control input:empty[type="number"] ~ span:after, .switch.switch--outline.switch--success .form input:empty[type="file"] ~ span:after, .switch.switch--outline.switch--success .form-control input:empty[type="file"] ~ span:after, .switch.switch--outline.switch--success .form select:empty ~ span:after, .form .switch.switch--outline.switch--success select:empty ~ span:after, .switch.switch--outline.switch--success .form-control select:empty ~ span:after, .form-control .switch.switch--outline.switch--success select:empty ~ span:after, .switch.switch--outline.switch--success .form textarea:empty ~ span:after, .form .switch.switch--outline.switch--success textarea:empty ~ span:after, .switch.switch--outline.switch--success .form-control textarea:empty ~ span:after, .form-control .switch.switch--outline.switch--success textarea:empty ~ span:after {
  color: #ffffff;
}

.switch.switch--outline.switch--success input:checked ~ span:before, .switch.switch--outline.switch--success .form input:checked[type="text"] ~ span:before, .switch.switch--outline.switch--success .form-control input:checked[type="text"] ~ span:before, .switch.switch--outline.switch--success .form input:checked[type="email"] ~ span:before, .switch.switch--outline.switch--success .form-control input:checked[type="email"] ~ span:before, .switch.switch--outline.switch--success .form input:checked[type="phone"] ~ span:before, .switch.switch--outline.switch--success .form-control input:checked[type="phone"] ~ span:before, .switch.switch--outline.switch--success .form input:checked[type="search"] ~ span:before, .switch.switch--outline.switch--success .form-control input:checked[type="search"] ~ span:before, .switch.switch--outline.switch--success .form input:checked[type="password"] ~ span:before, .switch.switch--outline.switch--success .form-control input:checked[type="password"] ~ span:before, .switch.switch--outline.switch--success .form input:checked[type="date"] ~ span:before, .switch.switch--outline.switch--success .form-control input:checked[type="date"] ~ span:before, .switch.switch--outline.switch--success .form input:checked[type="url"] ~ span:before, .switch.switch--outline.switch--success .form-control input:checked[type="url"] ~ span:before, .switch.switch--outline.switch--success .form input:checked[type="tel"] ~ span:before, .switch.switch--outline.switch--success .form-control input:checked[type="tel"] ~ span:before, .switch.switch--outline.switch--success .form input:checked[type="number"] ~ span:before, .switch.switch--outline.switch--success .form-control input:checked[type="number"] ~ span:before, .switch.switch--outline.switch--success .form input:checked[type="file"] ~ span:before, .switch.switch--outline.switch--success .form-control input:checked[type="file"] ~ span:before, .switch.switch--outline.switch--success .form select:checked ~ span:before, .form .switch.switch--outline.switch--success select:checked ~ span:before, .switch.switch--outline.switch--success .form-control select:checked ~ span:before, .form-control .switch.switch--outline.switch--success select:checked ~ span:before, .switch.switch--outline.switch--success .form textarea:checked ~ span:before, .form .switch.switch--outline.switch--success textarea:checked ~ span:before, .switch.switch--outline.switch--success .form-control textarea:checked ~ span:before, .form-control .switch.switch--outline.switch--success textarea:checked ~ span:before {
  background-color: #ffffff;
}

.switch.switch--outline.switch--success input:checked ~ span:after, .switch.switch--outline.switch--success .form input:checked[type="text"] ~ span:after, .switch.switch--outline.switch--success .form-control input:checked[type="text"] ~ span:after, .switch.switch--outline.switch--success .form input:checked[type="email"] ~ span:after, .switch.switch--outline.switch--success .form-control input:checked[type="email"] ~ span:after, .switch.switch--outline.switch--success .form input:checked[type="phone"] ~ span:after, .switch.switch--outline.switch--success .form-control input:checked[type="phone"] ~ span:after, .switch.switch--outline.switch--success .form input:checked[type="search"] ~ span:after, .switch.switch--outline.switch--success .form-control input:checked[type="search"] ~ span:after, .switch.switch--outline.switch--success .form input:checked[type="password"] ~ span:after, .switch.switch--outline.switch--success .form-control input:checked[type="password"] ~ span:after, .switch.switch--outline.switch--success .form input:checked[type="date"] ~ span:after, .switch.switch--outline.switch--success .form-control input:checked[type="date"] ~ span:after, .switch.switch--outline.switch--success .form input:checked[type="url"] ~ span:after, .switch.switch--outline.switch--success .form-control input:checked[type="url"] ~ span:after, .switch.switch--outline.switch--success .form input:checked[type="tel"] ~ span:after, .switch.switch--outline.switch--success .form-control input:checked[type="tel"] ~ span:after, .switch.switch--outline.switch--success .form input:checked[type="number"] ~ span:after, .switch.switch--outline.switch--success .form-control input:checked[type="number"] ~ span:after, .switch.switch--outline.switch--success .form input:checked[type="file"] ~ span:after, .switch.switch--outline.switch--success .form-control input:checked[type="file"] ~ span:after, .switch.switch--outline.switch--success .form select:checked ~ span:after, .form .switch.switch--outline.switch--success select:checked ~ span:after, .switch.switch--outline.switch--success .form-control select:checked ~ span:after, .form-control .switch.switch--outline.switch--success select:checked ~ span:after, .switch.switch--outline.switch--success .form textarea:checked ~ span:after, .form .switch.switch--outline.switch--success textarea:checked ~ span:after, .switch.switch--outline.switch--success .form-control textarea:checked ~ span:after, .form-control .switch.switch--outline.switch--success textarea:checked ~ span:after {
  background-color: #1dc9b7;
  opacity: 1;
}

.switch.switch--info:not(.switch--outline) input:empty ~ span:before, .switch.switch--info:not(.switch--outline) .form input:empty[type="text"] ~ span:before, .switch.switch--info:not(.switch--outline) .form-control input:empty[type="text"] ~ span:before, .switch.switch--info:not(.switch--outline) .form input:empty[type="email"] ~ span:before, .switch.switch--info:not(.switch--outline) .form-control input:empty[type="email"] ~ span:before, .switch.switch--info:not(.switch--outline) .form input:empty[type="phone"] ~ span:before, .switch.switch--info:not(.switch--outline) .form-control input:empty[type="phone"] ~ span:before, .switch.switch--info:not(.switch--outline) .form input:empty[type="search"] ~ span:before, .switch.switch--info:not(.switch--outline) .form-control input:empty[type="search"] ~ span:before, .switch.switch--info:not(.switch--outline) .form input:empty[type="password"] ~ span:before, .switch.switch--info:not(.switch--outline) .form-control input:empty[type="password"] ~ span:before, .switch.switch--info:not(.switch--outline) .form input:empty[type="date"] ~ span:before, .switch.switch--info:not(.switch--outline) .form-control input:empty[type="date"] ~ span:before, .switch.switch--info:not(.switch--outline) .form input:empty[type="url"] ~ span:before, .switch.switch--info:not(.switch--outline) .form-control input:empty[type="url"] ~ span:before, .switch.switch--info:not(.switch--outline) .form input:empty[type="tel"] ~ span:before, .switch.switch--info:not(.switch--outline) .form-control input:empty[type="tel"] ~ span:before, .switch.switch--info:not(.switch--outline) .form input:empty[type="number"] ~ span:before, .switch.switch--info:not(.switch--outline) .form-control input:empty[type="number"] ~ span:before, .switch.switch--info:not(.switch--outline) .form input:empty[type="file"] ~ span:before, .switch.switch--info:not(.switch--outline) .form-control input:empty[type="file"] ~ span:before, .switch.switch--info:not(.switch--outline) .form select:empty ~ span:before, .form .switch.switch--info:not(.switch--outline) select:empty ~ span:before, .switch.switch--info:not(.switch--outline) .form-control select:empty ~ span:before, .form-control .switch.switch--info:not(.switch--outline) select:empty ~ span:before, .switch.switch--info:not(.switch--outline) .form textarea:empty ~ span:before, .form .switch.switch--info:not(.switch--outline) textarea:empty ~ span:before, .switch.switch--info:not(.switch--outline) .form-control textarea:empty ~ span:before, .form-control .switch.switch--info:not(.switch--outline) textarea:empty ~ span:before {
  background-color: #5578eb;
}

.switch.switch--info:not(.switch--outline) input:empty ~ span:after, .switch.switch--info:not(.switch--outline) .form input:empty[type="text"] ~ span:after, .switch.switch--info:not(.switch--outline) .form-control input:empty[type="text"] ~ span:after, .switch.switch--info:not(.switch--outline) .form input:empty[type="email"] ~ span:after, .switch.switch--info:not(.switch--outline) .form-control input:empty[type="email"] ~ span:after, .switch.switch--info:not(.switch--outline) .form input:empty[type="phone"] ~ span:after, .switch.switch--info:not(.switch--outline) .form-control input:empty[type="phone"] ~ span:after, .switch.switch--info:not(.switch--outline) .form input:empty[type="search"] ~ span:after, .switch.switch--info:not(.switch--outline) .form-control input:empty[type="search"] ~ span:after, .switch.switch--info:not(.switch--outline) .form input:empty[type="password"] ~ span:after, .switch.switch--info:not(.switch--outline) .form-control input:empty[type="password"] ~ span:after, .switch.switch--info:not(.switch--outline) .form input:empty[type="date"] ~ span:after, .switch.switch--info:not(.switch--outline) .form-control input:empty[type="date"] ~ span:after, .switch.switch--info:not(.switch--outline) .form input:empty[type="url"] ~ span:after, .switch.switch--info:not(.switch--outline) .form-control input:empty[type="url"] ~ span:after, .switch.switch--info:not(.switch--outline) .form input:empty[type="tel"] ~ span:after, .switch.switch--info:not(.switch--outline) .form-control input:empty[type="tel"] ~ span:after, .switch.switch--info:not(.switch--outline) .form input:empty[type="number"] ~ span:after, .switch.switch--info:not(.switch--outline) .form-control input:empty[type="number"] ~ span:after, .switch.switch--info:not(.switch--outline) .form input:empty[type="file"] ~ span:after, .switch.switch--info:not(.switch--outline) .form-control input:empty[type="file"] ~ span:after, .switch.switch--info:not(.switch--outline) .form select:empty ~ span:after, .form .switch.switch--info:not(.switch--outline) select:empty ~ span:after, .switch.switch--info:not(.switch--outline) .form-control select:empty ~ span:after, .form-control .switch.switch--info:not(.switch--outline) select:empty ~ span:after, .switch.switch--info:not(.switch--outline) .form textarea:empty ~ span:after, .form .switch.switch--info:not(.switch--outline) textarea:empty ~ span:after, .switch.switch--info:not(.switch--outline) .form-control textarea:empty ~ span:after, .form-control .switch.switch--info:not(.switch--outline) textarea:empty ~ span:after {
  color: #5578eb;
  background-color: #ffffff;
  opacity: 0.4;
}

.switch.switch--info:not(.switch--outline) input:checked ~ span:before, .switch.switch--info:not(.switch--outline) .form input:checked[type="text"] ~ span:before, .switch.switch--info:not(.switch--outline) .form-control input:checked[type="text"] ~ span:before, .switch.switch--info:not(.switch--outline) .form input:checked[type="email"] ~ span:before, .switch.switch--info:not(.switch--outline) .form-control input:checked[type="email"] ~ span:before, .switch.switch--info:not(.switch--outline) .form input:checked[type="phone"] ~ span:before, .switch.switch--info:not(.switch--outline) .form-control input:checked[type="phone"] ~ span:before, .switch.switch--info:not(.switch--outline) .form input:checked[type="search"] ~ span:before, .switch.switch--info:not(.switch--outline) .form-control input:checked[type="search"] ~ span:before, .switch.switch--info:not(.switch--outline) .form input:checked[type="password"] ~ span:before, .switch.switch--info:not(.switch--outline) .form-control input:checked[type="password"] ~ span:before, .switch.switch--info:not(.switch--outline) .form input:checked[type="date"] ~ span:before, .switch.switch--info:not(.switch--outline) .form-control input:checked[type="date"] ~ span:before, .switch.switch--info:not(.switch--outline) .form input:checked[type="url"] ~ span:before, .switch.switch--info:not(.switch--outline) .form-control input:checked[type="url"] ~ span:before, .switch.switch--info:not(.switch--outline) .form input:checked[type="tel"] ~ span:before, .switch.switch--info:not(.switch--outline) .form-control input:checked[type="tel"] ~ span:before, .switch.switch--info:not(.switch--outline) .form input:checked[type="number"] ~ span:before, .switch.switch--info:not(.switch--outline) .form-control input:checked[type="number"] ~ span:before, .switch.switch--info:not(.switch--outline) .form input:checked[type="file"] ~ span:before, .switch.switch--info:not(.switch--outline) .form-control input:checked[type="file"] ~ span:before, .switch.switch--info:not(.switch--outline) .form select:checked ~ span:before, .form .switch.switch--info:not(.switch--outline) select:checked ~ span:before, .switch.switch--info:not(.switch--outline) .form-control select:checked ~ span:before, .form-control .switch.switch--info:not(.switch--outline) select:checked ~ span:before, .switch.switch--info:not(.switch--outline) .form textarea:checked ~ span:before, .form .switch.switch--info:not(.switch--outline) textarea:checked ~ span:before, .switch.switch--info:not(.switch--outline) .form-control textarea:checked ~ span:before, .form-control .switch.switch--info:not(.switch--outline) textarea:checked ~ span:before {
  background-color: #5578eb;
}

.switch.switch--info:not(.switch--outline) input:checked ~ span:after, .switch.switch--info:not(.switch--outline) .form input:checked[type="text"] ~ span:after, .switch.switch--info:not(.switch--outline) .form-control input:checked[type="text"] ~ span:after, .switch.switch--info:not(.switch--outline) .form input:checked[type="email"] ~ span:after, .switch.switch--info:not(.switch--outline) .form-control input:checked[type="email"] ~ span:after, .switch.switch--info:not(.switch--outline) .form input:checked[type="phone"] ~ span:after, .switch.switch--info:not(.switch--outline) .form-control input:checked[type="phone"] ~ span:after, .switch.switch--info:not(.switch--outline) .form input:checked[type="search"] ~ span:after, .switch.switch--info:not(.switch--outline) .form-control input:checked[type="search"] ~ span:after, .switch.switch--info:not(.switch--outline) .form input:checked[type="password"] ~ span:after, .switch.switch--info:not(.switch--outline) .form-control input:checked[type="password"] ~ span:after, .switch.switch--info:not(.switch--outline) .form input:checked[type="date"] ~ span:after, .switch.switch--info:not(.switch--outline) .form-control input:checked[type="date"] ~ span:after, .switch.switch--info:not(.switch--outline) .form input:checked[type="url"] ~ span:after, .switch.switch--info:not(.switch--outline) .form-control input:checked[type="url"] ~ span:after, .switch.switch--info:not(.switch--outline) .form input:checked[type="tel"] ~ span:after, .switch.switch--info:not(.switch--outline) .form-control input:checked[type="tel"] ~ span:after, .switch.switch--info:not(.switch--outline) .form input:checked[type="number"] ~ span:after, .switch.switch--info:not(.switch--outline) .form-control input:checked[type="number"] ~ span:after, .switch.switch--info:not(.switch--outline) .form input:checked[type="file"] ~ span:after, .switch.switch--info:not(.switch--outline) .form-control input:checked[type="file"] ~ span:after, .switch.switch--info:not(.switch--outline) .form select:checked ~ span:after, .form .switch.switch--info:not(.switch--outline) select:checked ~ span:after, .switch.switch--info:not(.switch--outline) .form-control select:checked ~ span:after, .form-control .switch.switch--info:not(.switch--outline) select:checked ~ span:after, .switch.switch--info:not(.switch--outline) .form textarea:checked ~ span:after, .form .switch.switch--info:not(.switch--outline) textarea:checked ~ span:after, .switch.switch--info:not(.switch--outline) .form-control textarea:checked ~ span:after, .form-control .switch.switch--info:not(.switch--outline) textarea:checked ~ span:after {
  opacity: 1;
}

.switch.switch--outline.switch--info input:empty ~ span:before, .switch.switch--outline.switch--info .form input:empty[type="text"] ~ span:before, .switch.switch--outline.switch--info .form-control input:empty[type="text"] ~ span:before, .switch.switch--outline.switch--info .form input:empty[type="email"] ~ span:before, .switch.switch--outline.switch--info .form-control input:empty[type="email"] ~ span:before, .switch.switch--outline.switch--info .form input:empty[type="phone"] ~ span:before, .switch.switch--outline.switch--info .form-control input:empty[type="phone"] ~ span:before, .switch.switch--outline.switch--info .form input:empty[type="search"] ~ span:before, .switch.switch--outline.switch--info .form-control input:empty[type="search"] ~ span:before, .switch.switch--outline.switch--info .form input:empty[type="password"] ~ span:before, .switch.switch--outline.switch--info .form-control input:empty[type="password"] ~ span:before, .switch.switch--outline.switch--info .form input:empty[type="date"] ~ span:before, .switch.switch--outline.switch--info .form-control input:empty[type="date"] ~ span:before, .switch.switch--outline.switch--info .form input:empty[type="url"] ~ span:before, .switch.switch--outline.switch--info .form-control input:empty[type="url"] ~ span:before, .switch.switch--outline.switch--info .form input:empty[type="tel"] ~ span:before, .switch.switch--outline.switch--info .form-control input:empty[type="tel"] ~ span:before, .switch.switch--outline.switch--info .form input:empty[type="number"] ~ span:before, .switch.switch--outline.switch--info .form-control input:empty[type="number"] ~ span:before, .switch.switch--outline.switch--info .form input:empty[type="file"] ~ span:before, .switch.switch--outline.switch--info .form-control input:empty[type="file"] ~ span:before, .switch.switch--outline.switch--info .form select:empty ~ span:before, .form .switch.switch--outline.switch--info select:empty ~ span:before, .switch.switch--outline.switch--info .form-control select:empty ~ span:before, .form-control .switch.switch--outline.switch--info select:empty ~ span:before, .switch.switch--outline.switch--info .form textarea:empty ~ span:before, .form .switch.switch--outline.switch--info textarea:empty ~ span:before, .switch.switch--outline.switch--info .form-control textarea:empty ~ span:before, .form-control .switch.switch--outline.switch--info textarea:empty ~ span:before {
  border: 2px solid #dee3eb;
  background-color: #e8ebf1;
}

.switch.switch--outline.switch--info input:empty ~ span:after, .switch.switch--outline.switch--info .form input:empty[type="text"] ~ span:after, .switch.switch--outline.switch--info .form-control input:empty[type="text"] ~ span:after, .switch.switch--outline.switch--info .form input:empty[type="email"] ~ span:after, .switch.switch--outline.switch--info .form-control input:empty[type="email"] ~ span:after, .switch.switch--outline.switch--info .form input:empty[type="phone"] ~ span:after, .switch.switch--outline.switch--info .form-control input:empty[type="phone"] ~ span:after, .switch.switch--outline.switch--info .form input:empty[type="search"] ~ span:after, .switch.switch--outline.switch--info .form-control input:empty[type="search"] ~ span:after, .switch.switch--outline.switch--info .form input:empty[type="password"] ~ span:after, .switch.switch--outline.switch--info .form-control input:empty[type="password"] ~ span:after, .switch.switch--outline.switch--info .form input:empty[type="date"] ~ span:after, .switch.switch--outline.switch--info .form-control input:empty[type="date"] ~ span:after, .switch.switch--outline.switch--info .form input:empty[type="url"] ~ span:after, .switch.switch--outline.switch--info .form-control input:empty[type="url"] ~ span:after, .switch.switch--outline.switch--info .form input:empty[type="tel"] ~ span:after, .switch.switch--outline.switch--info .form-control input:empty[type="tel"] ~ span:after, .switch.switch--outline.switch--info .form input:empty[type="number"] ~ span:after, .switch.switch--outline.switch--info .form-control input:empty[type="number"] ~ span:after, .switch.switch--outline.switch--info .form input:empty[type="file"] ~ span:after, .switch.switch--outline.switch--info .form-control input:empty[type="file"] ~ span:after, .switch.switch--outline.switch--info .form select:empty ~ span:after, .form .switch.switch--outline.switch--info select:empty ~ span:after, .switch.switch--outline.switch--info .form-control select:empty ~ span:after, .form-control .switch.switch--outline.switch--info select:empty ~ span:after, .switch.switch--outline.switch--info .form textarea:empty ~ span:after, .form .switch.switch--outline.switch--info textarea:empty ~ span:after, .switch.switch--outline.switch--info .form-control textarea:empty ~ span:after, .form-control .switch.switch--outline.switch--info textarea:empty ~ span:after {
  color: #ffffff;
}

.switch.switch--outline.switch--info input:checked ~ span:before, .switch.switch--outline.switch--info .form input:checked[type="text"] ~ span:before, .switch.switch--outline.switch--info .form-control input:checked[type="text"] ~ span:before, .switch.switch--outline.switch--info .form input:checked[type="email"] ~ span:before, .switch.switch--outline.switch--info .form-control input:checked[type="email"] ~ span:before, .switch.switch--outline.switch--info .form input:checked[type="phone"] ~ span:before, .switch.switch--outline.switch--info .form-control input:checked[type="phone"] ~ span:before, .switch.switch--outline.switch--info .form input:checked[type="search"] ~ span:before, .switch.switch--outline.switch--info .form-control input:checked[type="search"] ~ span:before, .switch.switch--outline.switch--info .form input:checked[type="password"] ~ span:before, .switch.switch--outline.switch--info .form-control input:checked[type="password"] ~ span:before, .switch.switch--outline.switch--info .form input:checked[type="date"] ~ span:before, .switch.switch--outline.switch--info .form-control input:checked[type="date"] ~ span:before, .switch.switch--outline.switch--info .form input:checked[type="url"] ~ span:before, .switch.switch--outline.switch--info .form-control input:checked[type="url"] ~ span:before, .switch.switch--outline.switch--info .form input:checked[type="tel"] ~ span:before, .switch.switch--outline.switch--info .form-control input:checked[type="tel"] ~ span:before, .switch.switch--outline.switch--info .form input:checked[type="number"] ~ span:before, .switch.switch--outline.switch--info .form-control input:checked[type="number"] ~ span:before, .switch.switch--outline.switch--info .form input:checked[type="file"] ~ span:before, .switch.switch--outline.switch--info .form-control input:checked[type="file"] ~ span:before, .switch.switch--outline.switch--info .form select:checked ~ span:before, .form .switch.switch--outline.switch--info select:checked ~ span:before, .switch.switch--outline.switch--info .form-control select:checked ~ span:before, .form-control .switch.switch--outline.switch--info select:checked ~ span:before, .switch.switch--outline.switch--info .form textarea:checked ~ span:before, .form .switch.switch--outline.switch--info textarea:checked ~ span:before, .switch.switch--outline.switch--info .form-control textarea:checked ~ span:before, .form-control .switch.switch--outline.switch--info textarea:checked ~ span:before {
  background-color: #ffffff;
}

.switch.switch--outline.switch--info input:checked ~ span:after, .switch.switch--outline.switch--info .form input:checked[type="text"] ~ span:after, .switch.switch--outline.switch--info .form-control input:checked[type="text"] ~ span:after, .switch.switch--outline.switch--info .form input:checked[type="email"] ~ span:after, .switch.switch--outline.switch--info .form-control input:checked[type="email"] ~ span:after, .switch.switch--outline.switch--info .form input:checked[type="phone"] ~ span:after, .switch.switch--outline.switch--info .form-control input:checked[type="phone"] ~ span:after, .switch.switch--outline.switch--info .form input:checked[type="search"] ~ span:after, .switch.switch--outline.switch--info .form-control input:checked[type="search"] ~ span:after, .switch.switch--outline.switch--info .form input:checked[type="password"] ~ span:after, .switch.switch--outline.switch--info .form-control input:checked[type="password"] ~ span:after, .switch.switch--outline.switch--info .form input:checked[type="date"] ~ span:after, .switch.switch--outline.switch--info .form-control input:checked[type="date"] ~ span:after, .switch.switch--outline.switch--info .form input:checked[type="url"] ~ span:after, .switch.switch--outline.switch--info .form-control input:checked[type="url"] ~ span:after, .switch.switch--outline.switch--info .form input:checked[type="tel"] ~ span:after, .switch.switch--outline.switch--info .form-control input:checked[type="tel"] ~ span:after, .switch.switch--outline.switch--info .form input:checked[type="number"] ~ span:after, .switch.switch--outline.switch--info .form-control input:checked[type="number"] ~ span:after, .switch.switch--outline.switch--info .form input:checked[type="file"] ~ span:after, .switch.switch--outline.switch--info .form-control input:checked[type="file"] ~ span:after, .switch.switch--outline.switch--info .form select:checked ~ span:after, .form .switch.switch--outline.switch--info select:checked ~ span:after, .switch.switch--outline.switch--info .form-control select:checked ~ span:after, .form-control .switch.switch--outline.switch--info select:checked ~ span:after, .switch.switch--outline.switch--info .form textarea:checked ~ span:after, .form .switch.switch--outline.switch--info textarea:checked ~ span:after, .switch.switch--outline.switch--info .form-control textarea:checked ~ span:after, .form-control .switch.switch--outline.switch--info textarea:checked ~ span:after {
  background-color: #5578eb;
  opacity: 1;
}

.switch.switch--warning:not(.switch--outline) input:empty ~ span:before, .switch.switch--warning:not(.switch--outline) .form input:empty[type="text"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control input:empty[type="text"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form input:empty[type="email"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control input:empty[type="email"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form input:empty[type="phone"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control input:empty[type="phone"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form input:empty[type="search"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control input:empty[type="search"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form input:empty[type="password"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control input:empty[type="password"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form input:empty[type="date"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control input:empty[type="date"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form input:empty[type="url"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control input:empty[type="url"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form input:empty[type="tel"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control input:empty[type="tel"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form input:empty[type="number"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control input:empty[type="number"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form input:empty[type="file"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control input:empty[type="file"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form select:empty ~ span:before, .form .switch.switch--warning:not(.switch--outline) select:empty ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control select:empty ~ span:before, .form-control .switch.switch--warning:not(.switch--outline) select:empty ~ span:before, .switch.switch--warning:not(.switch--outline) .form textarea:empty ~ span:before, .form .switch.switch--warning:not(.switch--outline) textarea:empty ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control textarea:empty ~ span:before, .form-control .switch.switch--warning:not(.switch--outline) textarea:empty ~ span:before {
  background-color: #ffb822;
}

.switch.switch--warning:not(.switch--outline) input:empty ~ span:after, .switch.switch--warning:not(.switch--outline) .form input:empty[type="text"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control input:empty[type="text"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form input:empty[type="email"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control input:empty[type="email"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form input:empty[type="phone"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control input:empty[type="phone"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form input:empty[type="search"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control input:empty[type="search"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form input:empty[type="password"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control input:empty[type="password"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form input:empty[type="date"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control input:empty[type="date"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form input:empty[type="url"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control input:empty[type="url"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form input:empty[type="tel"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control input:empty[type="tel"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form input:empty[type="number"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control input:empty[type="number"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form input:empty[type="file"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control input:empty[type="file"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form select:empty ~ span:after, .form .switch.switch--warning:not(.switch--outline) select:empty ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control select:empty ~ span:after, .form-control .switch.switch--warning:not(.switch--outline) select:empty ~ span:after, .switch.switch--warning:not(.switch--outline) .form textarea:empty ~ span:after, .form .switch.switch--warning:not(.switch--outline) textarea:empty ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control textarea:empty ~ span:after, .form-control .switch.switch--warning:not(.switch--outline) textarea:empty ~ span:after {
  color: #ffb822;
  background-color: #111111;
  opacity: 0.4;
}

.switch.switch--warning:not(.switch--outline) input:checked ~ span:before, .switch.switch--warning:not(.switch--outline) .form input:checked[type="text"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control input:checked[type="text"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form input:checked[type="email"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control input:checked[type="email"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form input:checked[type="phone"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control input:checked[type="phone"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form input:checked[type="search"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control input:checked[type="search"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form input:checked[type="password"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control input:checked[type="password"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form input:checked[type="date"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control input:checked[type="date"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form input:checked[type="url"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control input:checked[type="url"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form input:checked[type="tel"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control input:checked[type="tel"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form input:checked[type="number"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control input:checked[type="number"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form input:checked[type="file"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control input:checked[type="file"] ~ span:before, .switch.switch--warning:not(.switch--outline) .form select:checked ~ span:before, .form .switch.switch--warning:not(.switch--outline) select:checked ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control select:checked ~ span:before, .form-control .switch.switch--warning:not(.switch--outline) select:checked ~ span:before, .switch.switch--warning:not(.switch--outline) .form textarea:checked ~ span:before, .form .switch.switch--warning:not(.switch--outline) textarea:checked ~ span:before, .switch.switch--warning:not(.switch--outline) .form-control textarea:checked ~ span:before, .form-control .switch.switch--warning:not(.switch--outline) textarea:checked ~ span:before {
  background-color: #ffb822;
}

.switch.switch--warning:not(.switch--outline) input:checked ~ span:after, .switch.switch--warning:not(.switch--outline) .form input:checked[type="text"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control input:checked[type="text"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form input:checked[type="email"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control input:checked[type="email"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form input:checked[type="phone"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control input:checked[type="phone"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form input:checked[type="search"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control input:checked[type="search"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form input:checked[type="password"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control input:checked[type="password"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form input:checked[type="date"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control input:checked[type="date"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form input:checked[type="url"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control input:checked[type="url"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form input:checked[type="tel"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control input:checked[type="tel"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form input:checked[type="number"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control input:checked[type="number"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form input:checked[type="file"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control input:checked[type="file"] ~ span:after, .switch.switch--warning:not(.switch--outline) .form select:checked ~ span:after, .form .switch.switch--warning:not(.switch--outline) select:checked ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control select:checked ~ span:after, .form-control .switch.switch--warning:not(.switch--outline) select:checked ~ span:after, .switch.switch--warning:not(.switch--outline) .form textarea:checked ~ span:after, .form .switch.switch--warning:not(.switch--outline) textarea:checked ~ span:after, .switch.switch--warning:not(.switch--outline) .form-control textarea:checked ~ span:after, .form-control .switch.switch--warning:not(.switch--outline) textarea:checked ~ span:after {
  opacity: 1;
}

.switch.switch--outline.switch--warning input:empty ~ span:before, .switch.switch--outline.switch--warning .form input:empty[type="text"] ~ span:before, .switch.switch--outline.switch--warning .form-control input:empty[type="text"] ~ span:before, .switch.switch--outline.switch--warning .form input:empty[type="email"] ~ span:before, .switch.switch--outline.switch--warning .form-control input:empty[type="email"] ~ span:before, .switch.switch--outline.switch--warning .form input:empty[type="phone"] ~ span:before, .switch.switch--outline.switch--warning .form-control input:empty[type="phone"] ~ span:before, .switch.switch--outline.switch--warning .form input:empty[type="search"] ~ span:before, .switch.switch--outline.switch--warning .form-control input:empty[type="search"] ~ span:before, .switch.switch--outline.switch--warning .form input:empty[type="password"] ~ span:before, .switch.switch--outline.switch--warning .form-control input:empty[type="password"] ~ span:before, .switch.switch--outline.switch--warning .form input:empty[type="date"] ~ span:before, .switch.switch--outline.switch--warning .form-control input:empty[type="date"] ~ span:before, .switch.switch--outline.switch--warning .form input:empty[type="url"] ~ span:before, .switch.switch--outline.switch--warning .form-control input:empty[type="url"] ~ span:before, .switch.switch--outline.switch--warning .form input:empty[type="tel"] ~ span:before, .switch.switch--outline.switch--warning .form-control input:empty[type="tel"] ~ span:before, .switch.switch--outline.switch--warning .form input:empty[type="number"] ~ span:before, .switch.switch--outline.switch--warning .form-control input:empty[type="number"] ~ span:before, .switch.switch--outline.switch--warning .form input:empty[type="file"] ~ span:before, .switch.switch--outline.switch--warning .form-control input:empty[type="file"] ~ span:before, .switch.switch--outline.switch--warning .form select:empty ~ span:before, .form .switch.switch--outline.switch--warning select:empty ~ span:before, .switch.switch--outline.switch--warning .form-control select:empty ~ span:before, .form-control .switch.switch--outline.switch--warning select:empty ~ span:before, .switch.switch--outline.switch--warning .form textarea:empty ~ span:before, .form .switch.switch--outline.switch--warning textarea:empty ~ span:before, .switch.switch--outline.switch--warning .form-control textarea:empty ~ span:before, .form-control .switch.switch--outline.switch--warning textarea:empty ~ span:before {
  border: 2px solid #dee3eb;
  background-color: #e8ebf1;
}

.switch.switch--outline.switch--warning input:empty ~ span:after, .switch.switch--outline.switch--warning .form input:empty[type="text"] ~ span:after, .switch.switch--outline.switch--warning .form-control input:empty[type="text"] ~ span:after, .switch.switch--outline.switch--warning .form input:empty[type="email"] ~ span:after, .switch.switch--outline.switch--warning .form-control input:empty[type="email"] ~ span:after, .switch.switch--outline.switch--warning .form input:empty[type="phone"] ~ span:after, .switch.switch--outline.switch--warning .form-control input:empty[type="phone"] ~ span:after, .switch.switch--outline.switch--warning .form input:empty[type="search"] ~ span:after, .switch.switch--outline.switch--warning .form-control input:empty[type="search"] ~ span:after, .switch.switch--outline.switch--warning .form input:empty[type="password"] ~ span:after, .switch.switch--outline.switch--warning .form-control input:empty[type="password"] ~ span:after, .switch.switch--outline.switch--warning .form input:empty[type="date"] ~ span:after, .switch.switch--outline.switch--warning .form-control input:empty[type="date"] ~ span:after, .switch.switch--outline.switch--warning .form input:empty[type="url"] ~ span:after, .switch.switch--outline.switch--warning .form-control input:empty[type="url"] ~ span:after, .switch.switch--outline.switch--warning .form input:empty[type="tel"] ~ span:after, .switch.switch--outline.switch--warning .form-control input:empty[type="tel"] ~ span:after, .switch.switch--outline.switch--warning .form input:empty[type="number"] ~ span:after, .switch.switch--outline.switch--warning .form-control input:empty[type="number"] ~ span:after, .switch.switch--outline.switch--warning .form input:empty[type="file"] ~ span:after, .switch.switch--outline.switch--warning .form-control input:empty[type="file"] ~ span:after, .switch.switch--outline.switch--warning .form select:empty ~ span:after, .form .switch.switch--outline.switch--warning select:empty ~ span:after, .switch.switch--outline.switch--warning .form-control select:empty ~ span:after, .form-control .switch.switch--outline.switch--warning select:empty ~ span:after, .switch.switch--outline.switch--warning .form textarea:empty ~ span:after, .form .switch.switch--outline.switch--warning textarea:empty ~ span:after, .switch.switch--outline.switch--warning .form-control textarea:empty ~ span:after, .form-control .switch.switch--outline.switch--warning textarea:empty ~ span:after {
  color: #111111;
}

.switch.switch--outline.switch--warning input:checked ~ span:before, .switch.switch--outline.switch--warning .form input:checked[type="text"] ~ span:before, .switch.switch--outline.switch--warning .form-control input:checked[type="text"] ~ span:before, .switch.switch--outline.switch--warning .form input:checked[type="email"] ~ span:before, .switch.switch--outline.switch--warning .form-control input:checked[type="email"] ~ span:before, .switch.switch--outline.switch--warning .form input:checked[type="phone"] ~ span:before, .switch.switch--outline.switch--warning .form-control input:checked[type="phone"] ~ span:before, .switch.switch--outline.switch--warning .form input:checked[type="search"] ~ span:before, .switch.switch--outline.switch--warning .form-control input:checked[type="search"] ~ span:before, .switch.switch--outline.switch--warning .form input:checked[type="password"] ~ span:before, .switch.switch--outline.switch--warning .form-control input:checked[type="password"] ~ span:before, .switch.switch--outline.switch--warning .form input:checked[type="date"] ~ span:before, .switch.switch--outline.switch--warning .form-control input:checked[type="date"] ~ span:before, .switch.switch--outline.switch--warning .form input:checked[type="url"] ~ span:before, .switch.switch--outline.switch--warning .form-control input:checked[type="url"] ~ span:before, .switch.switch--outline.switch--warning .form input:checked[type="tel"] ~ span:before, .switch.switch--outline.switch--warning .form-control input:checked[type="tel"] ~ span:before, .switch.switch--outline.switch--warning .form input:checked[type="number"] ~ span:before, .switch.switch--outline.switch--warning .form-control input:checked[type="number"] ~ span:before, .switch.switch--outline.switch--warning .form input:checked[type="file"] ~ span:before, .switch.switch--outline.switch--warning .form-control input:checked[type="file"] ~ span:before, .switch.switch--outline.switch--warning .form select:checked ~ span:before, .form .switch.switch--outline.switch--warning select:checked ~ span:before, .switch.switch--outline.switch--warning .form-control select:checked ~ span:before, .form-control .switch.switch--outline.switch--warning select:checked ~ span:before, .switch.switch--outline.switch--warning .form textarea:checked ~ span:before, .form .switch.switch--outline.switch--warning textarea:checked ~ span:before, .switch.switch--outline.switch--warning .form-control textarea:checked ~ span:before, .form-control .switch.switch--outline.switch--warning textarea:checked ~ span:before {
  background-color: #111111;
}

.switch.switch--outline.switch--warning input:checked ~ span:after, .switch.switch--outline.switch--warning .form input:checked[type="text"] ~ span:after, .switch.switch--outline.switch--warning .form-control input:checked[type="text"] ~ span:after, .switch.switch--outline.switch--warning .form input:checked[type="email"] ~ span:after, .switch.switch--outline.switch--warning .form-control input:checked[type="email"] ~ span:after, .switch.switch--outline.switch--warning .form input:checked[type="phone"] ~ span:after, .switch.switch--outline.switch--warning .form-control input:checked[type="phone"] ~ span:after, .switch.switch--outline.switch--warning .form input:checked[type="search"] ~ span:after, .switch.switch--outline.switch--warning .form-control input:checked[type="search"] ~ span:after, .switch.switch--outline.switch--warning .form input:checked[type="password"] ~ span:after, .switch.switch--outline.switch--warning .form-control input:checked[type="password"] ~ span:after, .switch.switch--outline.switch--warning .form input:checked[type="date"] ~ span:after, .switch.switch--outline.switch--warning .form-control input:checked[type="date"] ~ span:after, .switch.switch--outline.switch--warning .form input:checked[type="url"] ~ span:after, .switch.switch--outline.switch--warning .form-control input:checked[type="url"] ~ span:after, .switch.switch--outline.switch--warning .form input:checked[type="tel"] ~ span:after, .switch.switch--outline.switch--warning .form-control input:checked[type="tel"] ~ span:after, .switch.switch--outline.switch--warning .form input:checked[type="number"] ~ span:after, .switch.switch--outline.switch--warning .form-control input:checked[type="number"] ~ span:after, .switch.switch--outline.switch--warning .form input:checked[type="file"] ~ span:after, .switch.switch--outline.switch--warning .form-control input:checked[type="file"] ~ span:after, .switch.switch--outline.switch--warning .form select:checked ~ span:after, .form .switch.switch--outline.switch--warning select:checked ~ span:after, .switch.switch--outline.switch--warning .form-control select:checked ~ span:after, .form-control .switch.switch--outline.switch--warning select:checked ~ span:after, .switch.switch--outline.switch--warning .form textarea:checked ~ span:after, .form .switch.switch--outline.switch--warning textarea:checked ~ span:after, .switch.switch--outline.switch--warning .form-control textarea:checked ~ span:after, .form-control .switch.switch--outline.switch--warning textarea:checked ~ span:after {
  background-color: #ffb822;
  opacity: 1;
}

.switch.switch--danger:not(.switch--outline) input:empty ~ span:before, .switch.switch--danger:not(.switch--outline) .form input:empty[type="text"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control input:empty[type="text"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form input:empty[type="email"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control input:empty[type="email"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form input:empty[type="phone"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control input:empty[type="phone"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form input:empty[type="search"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control input:empty[type="search"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form input:empty[type="password"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control input:empty[type="password"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form input:empty[type="date"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control input:empty[type="date"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form input:empty[type="url"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control input:empty[type="url"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form input:empty[type="tel"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control input:empty[type="tel"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form input:empty[type="number"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control input:empty[type="number"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form input:empty[type="file"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control input:empty[type="file"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form select:empty ~ span:before, .form .switch.switch--danger:not(.switch--outline) select:empty ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control select:empty ~ span:before, .form-control .switch.switch--danger:not(.switch--outline) select:empty ~ span:before, .switch.switch--danger:not(.switch--outline) .form textarea:empty ~ span:before, .form .switch.switch--danger:not(.switch--outline) textarea:empty ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control textarea:empty ~ span:before, .form-control .switch.switch--danger:not(.switch--outline) textarea:empty ~ span:before {
  background-color: #fd397a;
}

.switch.switch--danger:not(.switch--outline) input:empty ~ span:after, .switch.switch--danger:not(.switch--outline) .form input:empty[type="text"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control input:empty[type="text"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form input:empty[type="email"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control input:empty[type="email"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form input:empty[type="phone"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control input:empty[type="phone"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form input:empty[type="search"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control input:empty[type="search"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form input:empty[type="password"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control input:empty[type="password"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form input:empty[type="date"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control input:empty[type="date"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form input:empty[type="url"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control input:empty[type="url"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form input:empty[type="tel"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control input:empty[type="tel"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form input:empty[type="number"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control input:empty[type="number"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form input:empty[type="file"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control input:empty[type="file"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form select:empty ~ span:after, .form .switch.switch--danger:not(.switch--outline) select:empty ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control select:empty ~ span:after, .form-control .switch.switch--danger:not(.switch--outline) select:empty ~ span:after, .switch.switch--danger:not(.switch--outline) .form textarea:empty ~ span:after, .form .switch.switch--danger:not(.switch--outline) textarea:empty ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control textarea:empty ~ span:after, .form-control .switch.switch--danger:not(.switch--outline) textarea:empty ~ span:after {
  color: #fd397a;
  background-color: #ffffff;
  opacity: 0.4;
}

.switch.switch--danger:not(.switch--outline) input:checked ~ span:before, .switch.switch--danger:not(.switch--outline) .form input:checked[type="text"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control input:checked[type="text"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form input:checked[type="email"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control input:checked[type="email"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form input:checked[type="phone"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control input:checked[type="phone"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form input:checked[type="search"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control input:checked[type="search"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form input:checked[type="password"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control input:checked[type="password"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form input:checked[type="date"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control input:checked[type="date"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form input:checked[type="url"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control input:checked[type="url"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form input:checked[type="tel"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control input:checked[type="tel"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form input:checked[type="number"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control input:checked[type="number"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form input:checked[type="file"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control input:checked[type="file"] ~ span:before, .switch.switch--danger:not(.switch--outline) .form select:checked ~ span:before, .form .switch.switch--danger:not(.switch--outline) select:checked ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control select:checked ~ span:before, .form-control .switch.switch--danger:not(.switch--outline) select:checked ~ span:before, .switch.switch--danger:not(.switch--outline) .form textarea:checked ~ span:before, .form .switch.switch--danger:not(.switch--outline) textarea:checked ~ span:before, .switch.switch--danger:not(.switch--outline) .form-control textarea:checked ~ span:before, .form-control .switch.switch--danger:not(.switch--outline) textarea:checked ~ span:before {
  background-color: #fd397a;
}

.switch.switch--danger:not(.switch--outline) input:checked ~ span:after, .switch.switch--danger:not(.switch--outline) .form input:checked[type="text"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control input:checked[type="text"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form input:checked[type="email"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control input:checked[type="email"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form input:checked[type="phone"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control input:checked[type="phone"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form input:checked[type="search"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control input:checked[type="search"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form input:checked[type="password"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control input:checked[type="password"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form input:checked[type="date"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control input:checked[type="date"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form input:checked[type="url"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control input:checked[type="url"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form input:checked[type="tel"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control input:checked[type="tel"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form input:checked[type="number"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control input:checked[type="number"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form input:checked[type="file"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control input:checked[type="file"] ~ span:after, .switch.switch--danger:not(.switch--outline) .form select:checked ~ span:after, .form .switch.switch--danger:not(.switch--outline) select:checked ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control select:checked ~ span:after, .form-control .switch.switch--danger:not(.switch--outline) select:checked ~ span:after, .switch.switch--danger:not(.switch--outline) .form textarea:checked ~ span:after, .form .switch.switch--danger:not(.switch--outline) textarea:checked ~ span:after, .switch.switch--danger:not(.switch--outline) .form-control textarea:checked ~ span:after, .form-control .switch.switch--danger:not(.switch--outline) textarea:checked ~ span:after {
  opacity: 1;
}

.switch.switch--outline.switch--danger input:empty ~ span:before, .switch.switch--outline.switch--danger .form input:empty[type="text"] ~ span:before, .switch.switch--outline.switch--danger .form-control input:empty[type="text"] ~ span:before, .switch.switch--outline.switch--danger .form input:empty[type="email"] ~ span:before, .switch.switch--outline.switch--danger .form-control input:empty[type="email"] ~ span:before, .switch.switch--outline.switch--danger .form input:empty[type="phone"] ~ span:before, .switch.switch--outline.switch--danger .form-control input:empty[type="phone"] ~ span:before, .switch.switch--outline.switch--danger .form input:empty[type="search"] ~ span:before, .switch.switch--outline.switch--danger .form-control input:empty[type="search"] ~ span:before, .switch.switch--outline.switch--danger .form input:empty[type="password"] ~ span:before, .switch.switch--outline.switch--danger .form-control input:empty[type="password"] ~ span:before, .switch.switch--outline.switch--danger .form input:empty[type="date"] ~ span:before, .switch.switch--outline.switch--danger .form-control input:empty[type="date"] ~ span:before, .switch.switch--outline.switch--danger .form input:empty[type="url"] ~ span:before, .switch.switch--outline.switch--danger .form-control input:empty[type="url"] ~ span:before, .switch.switch--outline.switch--danger .form input:empty[type="tel"] ~ span:before, .switch.switch--outline.switch--danger .form-control input:empty[type="tel"] ~ span:before, .switch.switch--outline.switch--danger .form input:empty[type="number"] ~ span:before, .switch.switch--outline.switch--danger .form-control input:empty[type="number"] ~ span:before, .switch.switch--outline.switch--danger .form input:empty[type="file"] ~ span:before, .switch.switch--outline.switch--danger .form-control input:empty[type="file"] ~ span:before, .switch.switch--outline.switch--danger .form select:empty ~ span:before, .form .switch.switch--outline.switch--danger select:empty ~ span:before, .switch.switch--outline.switch--danger .form-control select:empty ~ span:before, .form-control .switch.switch--outline.switch--danger select:empty ~ span:before, .switch.switch--outline.switch--danger .form textarea:empty ~ span:before, .form .switch.switch--outline.switch--danger textarea:empty ~ span:before, .switch.switch--outline.switch--danger .form-control textarea:empty ~ span:before, .form-control .switch.switch--outline.switch--danger textarea:empty ~ span:before {
  border: 2px solid #dee3eb;
  background-color: #e8ebf1;
}

.switch.switch--outline.switch--danger input:empty ~ span:after, .switch.switch--outline.switch--danger .form input:empty[type="text"] ~ span:after, .switch.switch--outline.switch--danger .form-control input:empty[type="text"] ~ span:after, .switch.switch--outline.switch--danger .form input:empty[type="email"] ~ span:after, .switch.switch--outline.switch--danger .form-control input:empty[type="email"] ~ span:after, .switch.switch--outline.switch--danger .form input:empty[type="phone"] ~ span:after, .switch.switch--outline.switch--danger .form-control input:empty[type="phone"] ~ span:after, .switch.switch--outline.switch--danger .form input:empty[type="search"] ~ span:after, .switch.switch--outline.switch--danger .form-control input:empty[type="search"] ~ span:after, .switch.switch--outline.switch--danger .form input:empty[type="password"] ~ span:after, .switch.switch--outline.switch--danger .form-control input:empty[type="password"] ~ span:after, .switch.switch--outline.switch--danger .form input:empty[type="date"] ~ span:after, .switch.switch--outline.switch--danger .form-control input:empty[type="date"] ~ span:after, .switch.switch--outline.switch--danger .form input:empty[type="url"] ~ span:after, .switch.switch--outline.switch--danger .form-control input:empty[type="url"] ~ span:after, .switch.switch--outline.switch--danger .form input:empty[type="tel"] ~ span:after, .switch.switch--outline.switch--danger .form-control input:empty[type="tel"] ~ span:after, .switch.switch--outline.switch--danger .form input:empty[type="number"] ~ span:after, .switch.switch--outline.switch--danger .form-control input:empty[type="number"] ~ span:after, .switch.switch--outline.switch--danger .form input:empty[type="file"] ~ span:after, .switch.switch--outline.switch--danger .form-control input:empty[type="file"] ~ span:after, .switch.switch--outline.switch--danger .form select:empty ~ span:after, .form .switch.switch--outline.switch--danger select:empty ~ span:after, .switch.switch--outline.switch--danger .form-control select:empty ~ span:after, .form-control .switch.switch--outline.switch--danger select:empty ~ span:after, .switch.switch--outline.switch--danger .form textarea:empty ~ span:after, .form .switch.switch--outline.switch--danger textarea:empty ~ span:after, .switch.switch--outline.switch--danger .form-control textarea:empty ~ span:after, .form-control .switch.switch--outline.switch--danger textarea:empty ~ span:after {
  color: #ffffff;
}

.switch.switch--outline.switch--danger input:checked ~ span:before, .switch.switch--outline.switch--danger .form input:checked[type="text"] ~ span:before, .switch.switch--outline.switch--danger .form-control input:checked[type="text"] ~ span:before, .switch.switch--outline.switch--danger .form input:checked[type="email"] ~ span:before, .switch.switch--outline.switch--danger .form-control input:checked[type="email"] ~ span:before, .switch.switch--outline.switch--danger .form input:checked[type="phone"] ~ span:before, .switch.switch--outline.switch--danger .form-control input:checked[type="phone"] ~ span:before, .switch.switch--outline.switch--danger .form input:checked[type="search"] ~ span:before, .switch.switch--outline.switch--danger .form-control input:checked[type="search"] ~ span:before, .switch.switch--outline.switch--danger .form input:checked[type="password"] ~ span:before, .switch.switch--outline.switch--danger .form-control input:checked[type="password"] ~ span:before, .switch.switch--outline.switch--danger .form input:checked[type="date"] ~ span:before, .switch.switch--outline.switch--danger .form-control input:checked[type="date"] ~ span:before, .switch.switch--outline.switch--danger .form input:checked[type="url"] ~ span:before, .switch.switch--outline.switch--danger .form-control input:checked[type="url"] ~ span:before, .switch.switch--outline.switch--danger .form input:checked[type="tel"] ~ span:before, .switch.switch--outline.switch--danger .form-control input:checked[type="tel"] ~ span:before, .switch.switch--outline.switch--danger .form input:checked[type="number"] ~ span:before, .switch.switch--outline.switch--danger .form-control input:checked[type="number"] ~ span:before, .switch.switch--outline.switch--danger .form input:checked[type="file"] ~ span:before, .switch.switch--outline.switch--danger .form-control input:checked[type="file"] ~ span:before, .switch.switch--outline.switch--danger .form select:checked ~ span:before, .form .switch.switch--outline.switch--danger select:checked ~ span:before, .switch.switch--outline.switch--danger .form-control select:checked ~ span:before, .form-control .switch.switch--outline.switch--danger select:checked ~ span:before, .switch.switch--outline.switch--danger .form textarea:checked ~ span:before, .form .switch.switch--outline.switch--danger textarea:checked ~ span:before, .switch.switch--outline.switch--danger .form-control textarea:checked ~ span:before, .form-control .switch.switch--outline.switch--danger textarea:checked ~ span:before {
  background-color: #ffffff;
}

.switch.switch--outline.switch--danger input:checked ~ span:after, .switch.switch--outline.switch--danger .form input:checked[type="text"] ~ span:after, .switch.switch--outline.switch--danger .form-control input:checked[type="text"] ~ span:after, .switch.switch--outline.switch--danger .form input:checked[type="email"] ~ span:after, .switch.switch--outline.switch--danger .form-control input:checked[type="email"] ~ span:after, .switch.switch--outline.switch--danger .form input:checked[type="phone"] ~ span:after, .switch.switch--outline.switch--danger .form-control input:checked[type="phone"] ~ span:after, .switch.switch--outline.switch--danger .form input:checked[type="search"] ~ span:after, .switch.switch--outline.switch--danger .form-control input:checked[type="search"] ~ span:after, .switch.switch--outline.switch--danger .form input:checked[type="password"] ~ span:after, .switch.switch--outline.switch--danger .form-control input:checked[type="password"] ~ span:after, .switch.switch--outline.switch--danger .form input:checked[type="date"] ~ span:after, .switch.switch--outline.switch--danger .form-control input:checked[type="date"] ~ span:after, .switch.switch--outline.switch--danger .form input:checked[type="url"] ~ span:after, .switch.switch--outline.switch--danger .form-control input:checked[type="url"] ~ span:after, .switch.switch--outline.switch--danger .form input:checked[type="tel"] ~ span:after, .switch.switch--outline.switch--danger .form-control input:checked[type="tel"] ~ span:after, .switch.switch--outline.switch--danger .form input:checked[type="number"] ~ span:after, .switch.switch--outline.switch--danger .form-control input:checked[type="number"] ~ span:after, .switch.switch--outline.switch--danger .form input:checked[type="file"] ~ span:after, .switch.switch--outline.switch--danger .form-control input:checked[type="file"] ~ span:after, .switch.switch--outline.switch--danger .form select:checked ~ span:after, .form .switch.switch--outline.switch--danger select:checked ~ span:after, .switch.switch--outline.switch--danger .form-control select:checked ~ span:after, .form-control .switch.switch--outline.switch--danger select:checked ~ span:after, .switch.switch--outline.switch--danger .form textarea:checked ~ span:after, .form .switch.switch--outline.switch--danger textarea:checked ~ span:after, .switch.switch--outline.switch--danger .form-control textarea:checked ~ span:after, .form-control .switch.switch--outline.switch--danger textarea:checked ~ span:after {
  background-color: #fd397a;
  opacity: 1;
}

.form-group.row .switch {
  margin-top: 0.15rem;
}

.form-group.row .switch.switch--lg {
  margin-top: 0rem;
  position: relative;
  top: -0.3rem;
}

.form-group.row .switch.switch--sm {
  margin-top: 0.3rem;
}

.table-sm thead th {
  font-weight: 600;
  border-top: solid 1px var(--border-color);
  border-bottom: solid 1px var(--border-color);
}

.table-sm.table--noborder thead th {
  border-top: 0;
}

.table-sm th,
.table-sm td {
  padding: 0.8rem;
  border-bottom: solid 1px var(--border-color);
  font-size: 0.8rem;
  vertical-align: top;
}

.table-sm th:first-child,
.table-sm td:first-child {
  padding-left: 0;
}

.table-sm th:last-child,
.table-sm td:last-child {
  padding-right: 0;
  text-align: right;
}

.table-bordered thead th {
  border-width: 1px;
}

@keyframes click-wave {
  0% {
    height: 20px;
    width: 20px;
    opacity: 0.35;
    position: relative;
  }
  100% {
    height: 40px;
    width: 40px;
    margin-left: -18px;
    margin-top: -18px;
    opacity: 0;
  }
}

.checkbox,
.radio {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1rem;
  cursor: pointer !important;
}

.checkbox.brand,
.radio.brand {
  display: flex;
}

.checkbox input, .checkbox .form input[type="text"], .form .checkbox input[type="text"], .checkbox .form-control input[type="text"], .form-control .checkbox input[type="text"], .checkbox .form input[type="email"], .form .checkbox input[type="email"], .checkbox .form-control input[type="email"], .form-control .checkbox input[type="email"], .checkbox .form input[type="phone"], .form .checkbox input[type="phone"], .checkbox .form-control input[type="phone"], .form-control .checkbox input[type="phone"], .checkbox .form input[type="search"], .form .checkbox input[type="search"], .checkbox .form-control input[type="search"], .form-control .checkbox input[type="search"], .checkbox .form input[type="password"], .form .checkbox input[type="password"], .checkbox .form-control input[type="password"], .form-control .checkbox input[type="password"], .checkbox .form input[type="date"], .form .checkbox input[type="date"], .checkbox .form-control input[type="date"], .form-control .checkbox input[type="date"], .checkbox .form input[type="url"], .form .checkbox input[type="url"], .checkbox .form-control input[type="url"], .form-control .checkbox input[type="url"], .checkbox .form input[type="tel"], .form .checkbox input[type="tel"], .checkbox .form-control input[type="tel"], .form-control .checkbox input[type="tel"], .checkbox .form input[type="number"], .form .checkbox input[type="number"], .checkbox .form-control input[type="number"], .form-control .checkbox input[type="number"], .checkbox .form input[type="file"], .form .checkbox input[type="file"], .checkbox .form-control input[type="file"], .form-control .checkbox input[type="file"], .checkbox .form select, .form .checkbox select, .checkbox .form-control select, .form-control .checkbox select, .checkbox .form textarea, .form .checkbox textarea, .checkbox .form-control textarea, .form-control .checkbox textarea,
.radio input,
.radio .form input[type="text"],
.form .radio input[type="text"],
.radio .form-control input[type="text"],
.form-control .radio input[type="text"],
.radio .form input[type="email"],
.form .radio input[type="email"],
.radio .form-control input[type="email"],
.form-control .radio input[type="email"],
.radio .form input[type="phone"],
.form .radio input[type="phone"],
.radio .form-control input[type="phone"],
.form-control .radio input[type="phone"],
.radio .form input[type="search"],
.form .radio input[type="search"],
.radio .form-control input[type="search"],
.form-control .radio input[type="search"],
.radio .form input[type="password"],
.form .radio input[type="password"],
.radio .form-control input[type="password"],
.form-control .radio input[type="password"],
.radio .form input[type="date"],
.form .radio input[type="date"],
.radio .form-control input[type="date"],
.form-control .radio input[type="date"],
.radio .form input[type="url"],
.form .radio input[type="url"],
.radio .form-control input[type="url"],
.form-control .radio input[type="url"],
.radio .form input[type="tel"],
.form .radio input[type="tel"],
.radio .form-control input[type="tel"],
.form-control .radio input[type="tel"],
.radio .form input[type="number"],
.form .radio input[type="number"],
.radio .form-control input[type="number"],
.form-control .radio input[type="number"],
.radio .form input[type="file"],
.form .radio input[type="file"],
.radio .form-control input[type="file"],
.form-control .radio input[type="file"],
.radio .form select,
.form .radio select,
.radio .form-control select,
.form-control .radio select,
.radio .form textarea,
.form .radio textarea,
.radio .form-control textarea,
.form-control .radio textarea {
  -o-appearance: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  top: -1px;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1rem !important;
  width: 1rem !important;
  flex: 0 0 1rem;
  max-width: 1rem;
  transition: all 0.15s ease-out 0s;
  border: solid 1px var(--border-color);
  background: var(--bg-white);
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  padding: 0 !important;
  outline: none;
  position: relative;
  z-index: 1;
  border-radius: 2px;
  vertical-align: middle;
}

.checkbox input:checked, .checkbox .form select:checked, .form .checkbox select:checked, .checkbox .form-control select:checked, .form-control .checkbox select:checked, .checkbox .form textarea:checked, .form .checkbox textarea:checked, .checkbox .form-control textarea:checked, .form-control .checkbox textarea:checked,
.radio input:checked,
.radio .form select:checked,
.form .radio select:checked,
.radio .form-control select:checked,
.form-control .radio select:checked,
.radio .form textarea:checked,
.form .radio textarea:checked,
.radio .form-control textarea:checked,
.form-control .radio textarea:checked {
  background: var(--brand-color);
  color: var(--brand-color-inverse);
}

.checkbox input:checked::before, .checkbox .form select:checked::before, .form .checkbox select:checked::before, .checkbox .form-control select:checked::before, .form-control .checkbox select:checked::before, .checkbox .form textarea:checked::before, .form .checkbox textarea:checked::before, .checkbox .form-control textarea:checked::before, .form-control .checkbox textarea:checked::before,
.radio input:checked::before,
.radio .form select:checked::before,
.form .radio select:checked::before,
.radio .form-control select:checked::before,
.form-control .radio select:checked::before,
.radio .form textarea:checked::before,
.form .radio textarea:checked::before,
.radio .form-control textarea:checked::before,
.form-control .radio textarea:checked::before {
  height: 9px;
  width: 6px;
  position: absolute;
  content: '';
  display: inline-block;
  font-size: 1rem;
  text-align: center;
  line-height: 1rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  left: 50%;
  top: 50%;
  margin: -6px 0 0 -3px;
}

.checkbox input:checked::after, .checkbox .form select:checked::after, .form .checkbox select:checked::after, .checkbox .form-control select:checked::after, .form-control .checkbox select:checked::after, .checkbox .form textarea:checked::after, .form .checkbox textarea:checked::after, .checkbox .form-control textarea:checked::after, .form-control .checkbox textarea:checked::after,
.radio input:checked::after,
.radio .form select:checked::after,
.form .radio select:checked::after,
.radio .form-control select:checked::after,
.form-control .radio select:checked::after,
.radio .form textarea:checked::after,
.form .radio textarea:checked::after,
.radio .form-control textarea:checked::after,
.form-control .radio textarea:checked::after {
  animation: click-wave 0.65s;
  background: var(--brand-color);
  color: var(--brand-color-inverse);
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}

.checkbox input:checked, .checkbox .form select:checked, .form .checkbox select:checked, .checkbox .form-control select:checked, .form-control .checkbox select:checked, .checkbox .form textarea:checked, .form .checkbox textarea:checked, .checkbox .form-control textarea:checked, .form-control .checkbox textarea:checked,
.radio input:checked,
.radio .form select:checked,
.form .radio select:checked,
.radio .form-control select:checked,
.form-control .radio select:checked,
.radio .form textarea:checked,
.form .radio textarea:checked,
.radio .form-control textarea:checked,
.form-control .radio textarea:checked {
  border-color: var(--brand-color);
}


.radio input,
.radio .form input[type="text"],
.form .radio input[type="text"],
.radio .form-control input[type="text"],
.form-control .radio input[type="text"],
.radio .form input[type="email"],
.form .radio input[type="email"],
.radio .form-control input[type="email"],
.form-control .radio input[type="email"],
.radio .form input[type="phone"],
.form .radio input[type="phone"],
.radio .form-control input[type="phone"],
.form-control .radio input[type="phone"],
.radio .form input[type="search"],
.form .radio input[type="search"],
.radio .form-control input[type="search"],
.form-control .radio input[type="search"],
.radio .form input[type="password"],
.form .radio input[type="password"],
.radio .form-control input[type="password"],
.form-control .radio input[type="password"],
.radio .form input[type="date"],
.form .radio input[type="date"],
.radio .form-control input[type="date"],
.form-control .radio input[type="date"],
.radio .form input[type="url"],
.form .radio input[type="url"],
.radio .form-control input[type="url"],
.form-control .radio input[type="url"],
.radio .form input[type="tel"],
.form .radio input[type="tel"],
.radio .form-control input[type="tel"],
.form-control .radio input[type="tel"],
.radio .form input[type="number"],
.form .radio input[type="number"],
.radio .form-control input[type="number"],
.form-control .radio input[type="number"],
.radio .form input[type="file"],
.form .radio input[type="file"],
.radio .form-control input[type="file"],
.form-control .radio input[type="file"],
.radio .form select,
.form .radio select,
.radio .form-control select,
.form-control .radio select,
.radio .form textarea,
.form .radio textarea,
.radio .form-control textarea,
.form-control .radio textarea {
  border-radius: 50% !important;
}

.radio input::after, .radio .form input[type="text"]::after, .form .radio input[type="text"]::after, .radio .form-control input[type="text"]::after, .form-control .radio input[type="text"]::after, .radio .form input[type="email"]::after, .form .radio input[type="email"]::after, .radio .form-control input[type="email"]::after, .form-control .radio input[type="email"]::after, .radio .form input[type="phone"]::after, .form .radio input[type="phone"]::after, .radio .form-control input[type="phone"]::after, .form-control .radio input[type="phone"]::after, .radio .form input[type="search"]::after, .form .radio input[type="search"]::after, .radio .form-control input[type="search"]::after, .form-control .radio input[type="search"]::after, .radio .form input[type="password"]::after, .form .radio input[type="password"]::after, .radio .form-control input[type="password"]::after, .form-control .radio input[type="password"]::after, .radio .form input[type="date"]::after, .form .radio input[type="date"]::after, .radio .form-control input[type="date"]::after, .form-control .radio input[type="date"]::after, .radio .form input[type="url"]::after, .form .radio input[type="url"]::after, .radio .form-control input[type="url"]::after, .form-control .radio input[type="url"]::after, .radio .form input[type="tel"]::after, .form .radio input[type="tel"]::after, .radio .form-control input[type="tel"]::after, .form-control .radio input[type="tel"]::after, .radio .form input[type="number"]::after, .form .radio input[type="number"]::after, .radio .form-control input[type="number"]::after, .form-control .radio input[type="number"]::after, .radio .form input[type="file"]::after, .form .radio input[type="file"]::after, .radio .form-control input[type="file"]::after, .form-control .radio input[type="file"]::after, .radio .form select::after, .form .radio select::after, .radio .form-control select::after, .form-control .radio select::after, .radio .form textarea::after, .form .radio textarea::after, .radio .form-control textarea::after, .form-control .radio textarea::after {
  border-radius: 50%;
}

/*toggles*/
.switch-links {
  text-align: center;
  margin: 0px auto;
  display: block;
  position: relative;
  max-width: 250px;
}

.switch-links a {
  padding-top: 3px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  color: var(--txt-body);
  font-size: 0.8em;
}

.switch-links a:first-child {
  float: left;
  margin-right: 10px;
}

.switch-links a:last-child {
  margin-left: 10px;
  float: right;
}

.switch-button {
  position: relative;
  width: 70px;
  display: inline-block;
  vertical-align: top;
  margin: 0 auto;
}

.switch-button:before {
  content: "";
  position: absolute;
  background: #e6e6e6;
  border-radius: 30px;
  width: 70px;
  height: 25px;
  top: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.switch-button:after {
  background: var(--brand-color);
  color: var(--brand-color-inverse);
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  transition: all ease .3s;
}

.switch-button.is--active:after {
  left: auto;
  right: 4px;
  transition: all ease .3s;
}

.switch-links a.is--active {
  color: var(--brand-color);
}

.breadcrumb {
  background: none;
  border-radius: 0;
  font-size: 0.75rem;
  padding: 1rem 0;
  margin: 0;
  color: var(--txt-gray);
}

.breadcrumb a {
  color: currentColor;
}

.breadcrumb a:hover {
  color: var(--brand-color);
}

.nav {
  display: flex;
  padding: 0 0;
  margin: 0;
  list-style: none;
  border: 0;
}

.nav__item {
  display: block;
}

.nav__item:hover {
  background-color: var(--bg-gray);
}

.nav__link {
  display: flex;
  flex-grow: 1;
  align-items: center;
  padding: .55rem 1.75rem;
  cursor: pointer;
  transition: all .3s;
}

.nav__link-text {
  flex-grow: 1;
  font-size: 0.8rem;
  font-weight: 400;
}

.nav__link-icon {
  flex: 0 0 18px;
  font-size: 1.25rem;
  line-height: 0;
  margin-right: 10px;
}

.nav--block {
  display: block !important;
  padding: 1rem 0;
}

.tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

@media (max-width: 767.98px) {
  .tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    width: 100%;
  }
}

.tabs li a {
  background-color: rgba(0, 0, 0, 0);
  border: solid 1px transparent;
  border-radius: 40px;
  display: block;
  padding: 7px 25px;
  transition: all 0.2s ease 0s;
  color: var(--txt-body);
  margin: 0 2px;
}

@media (max-width: 767.98px) {
  .tabs li a {
    border-width: 1px;
    padding: 4px 10px;
    white-space: nowrap;
    font-size: 0.9rem;
  }
}

.tabs li.active a, .tabs li.nice-select.open a {
  color: var(--brand-color-inverse);
  background-color: var(--brand-color);
}

.content-data {
  display: none;
}

.content-data.active, .content-data.nice-select.open {
  display: block;
}

.pagination {
  margin-bottom: 0;
  font-weight: 500;
}

.pagination-sm {
  font-size: .9375rem;
}

.pagination .page-link {
  border-width: 0 0 1px 0;
}

.pagination .page-link-arrow {
  border-width: 0;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  padding: .75rem 1rem;
  margin-left: -1px;
  line-height: 1.25;
  color: inherit;
  background-color: transparent;
  border: solid 1px var(--border-color);
}

.page-link:hover {
  z-index: 2;
  color: var(--brand-color);
  text-decoration: none;
  background-color: transparent;
  border-color: #e5e5e5;
}

.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

.page-item:first-child .page-link {
  margin-left: 0;
}

.page-item.active .page-link, .page-item.nice-select.open .page-link {
  z-index: 3;
  color: var(--brand-color);
  background-color: transparent;
  border-color: var(--txt-body);
}

.page-item.disabled .page-link {
  color: #3e3e3e;
  pointer-events: none;
  cursor: auto;
  background-color: var(--bg-white);
  border-color: var(--txt-body);
}

.pagination-lg .page-link {
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  line-height: 1.5;
}

.pagination-sm .page-link {
  padding: .5rem 1rem;
  font-size: .9375rem;
  line-height: 1.5;
}

/*3D product*/

@keyframes slideRight {
  0% {
    opacity: 0;
    left: 30px;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

.product {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 5s;
  transition: width 500ms ease-in-out;
  animation: slideRight 600ms;
}

.product-body {
  background: #ddd;
}

.product_title {
  display: block;
  font-size: 0.875rem;
  color: currentColor;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  line-height: 1.4;
  margin-bottom: 6px;
}

@media (max-width: 767.98px) {
  .product_title {
    font-size: 0.8rem;
  }
}

.product_title a {
  color: currentColor;
}

.product_category {
  display: block;
  font-size: 0.7rem;
  margin-bottom: 2px;
  color: var(--txt-gray);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .product_category {
    font-size: 0.65rem;
  }
}

.product_category a {
  color: currentColor;
}

.product_price {
  font-size: 0.875rem;
  color: var(--brand-color);
  font-weight: 500;
  white-space: nowrap;
}

.product_price_old {
  color: var(--txt-gray);
  padding-left: 5px;
}

.product .badge-sale {
  background: var(--brand-color);
  padding: 2px 8px;
  text-transform: uppercase;
  color: var(--brand-color-inverse);
  font-weight: 600;
  font-size: 0.7rem;
  position: absolute;
  z-index: 1;
  margin: 10px;
}

.product .product-img {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 0;
  background: #f4f5fa;
  mix-blend-mode: multiply;
}

.product .product-img[data-ratio="3:4"] {
  padding-bottom: 133%;
}

.product .product-img[data-ratio="16:9"] {
  padding-bottom: 56%;
}

.product .product-img[data-ratio="1:1"] {
  padding-bottom: 100%;
}

.product .product-img:before {
  color: #dadada;
  content: "";
  background: url(../media/loading.gif) no-repeat center;
  background-size: 100%;
  font-size: 100px;
  height: 20px;
  left: calc(50% - 10px);
  line-height: 46px;
  margin: 0;
  position: absolute;
  z-index: -1;
  text-align: center;
  top: calc(50% - 10px);
  width: 20px;
}

.product .product-img img {
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  max-height: 100%;
}

@media (min-width: 1200px) {
  .product:hover {
    box-shadow: 0px 3px 15px #92929229;
  }
}

.product:hover .product-actions {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
}

.product:hover .product-actions .btn {
  opacity: 1;
}

.product:hover .product-options {
  opacity: 1;
  transform: translate(0, 0);
}

.product-2 {
  border: solid 1px var(--border-color);
}

.product-2 .product-body .product-image {
  background: #ddd;
  transition: all 100ms ease-out;
}

.product-2 .product-body .product-image a {
  display: block;
}

.product-2 .product-body .badge-sale {
  margin: 0;
  border-top-right-radius: 4rem;
  border-bottom-right-radius: 4rem;
  font-weight: 400;
  top: 2rem;
  font-size: 0.65rem;
  padding: 4px 8px;
}

@media (max-width: 767.98px) {
  .product-2 .product-body .badge-sale {
    font-size: 0.65rem;
    padding: 4px 8px;
  }
}

.product-2 .product-foot {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.product-2 .product-foot-top {
  width: 100%;
  padding: 0.75rem;
}

.product-2 .product-foot-top .product-actions {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
}

@media (max-width: 1199.98px) {
  .product-2 .product-foot-top .product-actions {
    bottom: 8rem;
  }
}

@media (max-width: 767.98px) {
  .product-2 .product-foot-top .product-actions {
    bottom: 7.5rem;
  }
}

.product-2 .product-foot-top .product-actions .btn {
  opacity: 1;
}

.product-2 .product-foot-bottom {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  width: 100%;
  border-top: solid 1px var(--border-color);
}

.product-2 .product-foot-bottom .product-options {
  position: relative;
  opacity: 1;
  transform: none;
  top: auto;
  padding: 0;
  flex: 0 0 50%;
  order: 4;
  justify-content: flex-end;
}

.product-2 .product-foot-bottom .product_price {
  flex: 0 0 50%;
}

.product-foot {
  width: 100%;
  padding: 0.75rem;
  position: relative;
  transition: all 200ms ease-out;
}

@media (max-width: 1199.98px) {
  .product-foot {
    padding: 0.75rem 0;
  }
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  width: auto;
  position: absolute;
  bottom: 6.25rem;
  right: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  transform: translate(0px, 40px);
  z-index: 2;
}

.product-actions .btn {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
  background-color: #fff;
  border-radius: 50%;
  border: none;
  margin: 4px 2px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: all .1s ease-in-out;
  transition-property: transform, opacity;
}

@media (max-width: 767.98px) {
  .product-actions .btn {
    width: 36px;
    height: 36px;
  }
}

.product-actions .btn:nth-child(1) {
  transition-delay: 75ms;
}

.product-actions .btn:nth-child(2) {
  transition-delay: .15s;
}

.product-actions .btn:nth-child(3) {
  transition-delay: .30s;
}

.product-actions .btn:nth-child(4) {
  transition-delay: .45s;
}

.product-actions .btn:hover {
  background: #fff;
  color: currentColor;
}

.product-actions .btn:hover .svg {
  fill: var(--brand-color) !important;
}

.product-actions .btn.active, .product-actions .btn.nice-select.open {
  color: var(--brand-color) !important;
}

.product-actions .btn.active .svg, .product-actions .btn.nice-select.open .svg {
  fill: currentColor;
}

.product-actions .btn .svg {
  width: 15px;
  height: 15px;
  fill: rgba(0, 0, 0, 0.5);
}

.product-actions .add-to-cart {
  position: relative;
  overflow: hidden;
}

.product-actions .add-to-cart em {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform .3s;
}

.product-actions .add-to-cart svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translateX(50%) translateY(-50%);
  transition: transform .3s;
}

.product-actions .add-to-cart.is-added em {
  color: transparent;
  transform: translateX(-100%);
}

.product-actions .add-to-cart.is-added svg {
  transform: translateX(-50%) translateY(-50%);
}

.product-options {
  position: absolute;
  display: flex;
  align-items: center;
  top: -24px;
  width: 100%;
  left: 0;
  z-index: 0;
  padding: 12px 12px 0;
  background: var(--bg-white);
  opacity: 0;
  transform: translate(0, 10px);
}

@media (max-width: 1199.98px) {
  .product-options {
    display: none;
  }
}

.product-options p {
  font-size: 0.8rem;
  color: var(--txt-gray);
}

.product-options h6 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--txt-gray);
  line-height: normal;
  padding: 0;
}

@media (max-width: 767.98px) {
  .product-options h6 {
    display: none;
  }
}

.product-options span {
  font-size: 0.8rem;
  display: block;
  margin-bottom: 8px;
}

.product-options .colors {
  display: inline-grid;
  grid-auto-flow: column;
  grid-gap: 5px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.6rem;
  color: var(--txt-gray);
}

@media (min-width: 576px) {
  .product-options .colors {
    margin-left: 0.5rem;
  }
}

.product-options .colors > li > span {
  width: 12px;
  height: 12px;
  margin: 0;
  display: block;
  border: solid 1px var(--border-color);
}

.product3D {
  flex: 1;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: 100ms ease-out;
}

@media (max-width: 767.98px) {
  .product3D {
    position: relative;
  }
}

.product3D.outline {
  outline: solid 1px #f3f3f3;
}

.product3D .product-front,
.product3D .product-back {
  background: #ddd;
  transition: all 100ms ease-out;
}

.product3D .product-front a,
.product3D .product-back a {
  display: block;
}

.product3D .product-back {
  display: none;
  transform: rotateY(180deg);
  height: 100%;
}

@media (min-width: 1200px) {
  .product3D:hover {
    transition: 100ms ease-out;
  }
  .product3D:hover .image_overlay {
    opacity: 0.7;
    transition: all 200ms ease-out;
  }
  .product3D:hover .product-back,
  .product3D:hover .product-front {
    top: 0px;
    left: 0px;
    transition: all 100ms ease-out;
  }
}

.product3D.flip-10 {
  transform: rotateY(-10deg);
  transition: 50ms ease-out;
}

.product3D.flip90 {
  transform: rotateY(90deg);
  transition: 100ms ease-in;
}

.product3D.flip190 {
  transform: rotateY(190deg);
  transition: 100ms ease-out;
}

.product3D.flip180 {
  transform: rotateY(180deg);
  transition: 150ms ease-out;
}

.image_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brand-color);
  opacity: 0;
  cursor: pointer;
}

.shadow {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: none;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
}

.product-back div.shadow {
  z-index: 10;
  opacity: 1;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
}

.slider-quick {
  z-index: -1;
  height: 100%;
}

.slider-quick .slick-list {
  z-index: -1;
}

.slider-quick .slick-arrow {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.7);
  background: none !important;
}

.slider-quick .slick-arrow:after {
  border-color: #000 !important;
}

.slider-quick:hover .slick-arrow {
  transform: scale(1);
  opacity: 1;
}

.flip-back {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
}

.flip-back:hover img {
  opacity: 0.99;
}

.flip-back img {
  width: 10px;
  height: 10px;
  opacity: 0.7;
}

#info {
  position: absolute;
  top: 20px;
  left: 676px;
  text-align: center;
  width: 413px;
}

#info p {
  font-size: 15px;
  padding: 3px;
  color: #b1b1b3;
}

#info a {
  text-decoration: none;
}

/* ---------------- */
.floating-image-large {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.info-large {
  display: none;
  position: absolute;
  top: 0;
  left: 0px;
  padding: 42px;
  width: 245px;
  height: 395px;
  transition: all 300ms ease-out;
}

.large .info-large {
  left: 310px;
  transition: all 300ms ease-out;
}

.info-large h4 {
  text-transform: uppercase;
  font-size: 28px;
  color: #000;
  font-weight: 400;
  padding: 0;
}

div.sku {
  font-weight: 700;
  color: #d0d0d0;
  font-size: 12px;
  padding-top: 11px;
}

div.sku strong {
  color: #000;
}

.price-big {
  font-size: 34px;
  font-weight: 600;
  color: #5ff7d2;
  margin-top: 21px;
}

.price-big span {
  color: #d0d0d0;
  font-weight: 400;
  text-decoration: line-through;
}

.add-cart-large {
  border: 3px solid #000;
  font-size: 17px;
  background: var(--bg-white);
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px;
  font-family: "Open Sans", sans-serif;
  width: 246px;
  margin-top: 38px;
  transition: all 200ms ease-out;
}

.add-cart-large:hover {
  color: #5ff7d2;
  border-color: #5ff7d2;
  transition: all 200ms ease-out;
  cursor: pointer;
}

.info-large h3 {
  letter-spacing: 1px;
  color: #262626;
  text-transform: uppercase;
  font-size: 14px;
  clear: left;
  margin-top: 20px;
  font-weight: 700;
  margin-bottom: 3px;
}

.colors-large {
  margin-bottom: 38px;
}

.colors-large li {
  float: left;
  list-style: none;
  margin-right: 7px;
  width: 16px;
  height: 16px;
}

.colors-large li a {
  float: left;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.colors-large li a:hover {
  width: 19px;
  height: 19px;
  position: relative;
  top: -1px;
  left: -1px;
}

.sizes-large span {
  font-weight: 600;
  color: #b0b0b0;
}

.sizes-large span:hover {
  color: #000;
  cursor: pointer;
}

.product.large:hover {
  box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15);
}

.no-stock-wrap {
  position: relative;
}

.no-stock-wrap .product3D,
.no-stock-wrap .product-foot, .no-stock-wrap .tea-widget {
  opacity: 0.5 !important;
}

.no-stock-wrap .no-stock {
  position: absolute;
  left: 0;
  right: 0;
  top: 35%;
  z-index: 2;
  background-color: var(--bg-white);
  color: var(--bg-white-inverse);
  font-size: 0.8rem;
  text-align: center;
  padding: 5px 12px;
  margin: 0 auto;
  width: 70%;
  border-radius: 5rem;
}

@media (max-width: 767.98px) {
  .no-stock-wrap .no-stock {
    top: 30%;
    width: 80%;
  }
}

.products-grid {
  display: flex;
}

.products-grid > li {
  flex: 0 0 25%;
  max-width: 25%;
}

@media (max-width: 1199.98px) {
  .products-grid > li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

@media (max-width: 767.98px) {
  .products-grid > li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.product-grid-item {
  outline: solid 1px var(--border-color);
}

.product-grid-item .product-head {
  background-color: var(--bg-white);
  position: relative;
}

.product-grid-item .product-head .tag {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  height: 24px;
  padding: 0 0.5rem;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  border-radius: 2px;
}

.product-grid-item .product-head .tag-primary {
  background-color: #26a69a;
  border-color: #26a69a;
  color: #fff;
}

.product-grid-item .product-head .badge-sale {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.product-grid-item .product-head .product__overlay {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1.25rem;
}

.product-grid-item .product-head .product__overlay .product__overlay-action {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: all .1s ease-in-out;
  transition-property: transform, opacity;
}

.product-grid-item .product-head .product__overlay .product__overlay-action:nth-child(1) {
  transition-delay: 75ms;
}

.product-grid-item .product-head .product__overlay .product__overlay-action:nth-child(2) {
  transition-delay: .15s;
}

.product-grid-item .product-head .product__overlay .product__overlay-action:nth-child(3) {
  transition-delay: .30s;
}

.product-grid-item .product-head .product__overlay .product__overlay-action:nth-child(4) {
  transition-delay: .45s;
}

.product-grid-item .product-head .product__overlay .product__overlay-action .icon-button {
  border: solid 1px #212529;
  border-radius: 0;
  background: var(--bg-white);
  color: #000;
  margin: 0 2px;
  padding: 0.275rem 0.55rem;
}

.product-grid-item .product-head .product__overlay .product__overlay-action .icon-button:hover {
  background: #212529;
}

.product-grid-item .product-head .product__overlay .product__overlay-action .icon-button:hover i {
  color: #fff;
}

.product-grid-item .product-head .product__overlay .product__overlay-action .add-to-wishlist-button.active, .product-grid-item .product-head .product__overlay .product__overlay-action .add-to-wishlist-button.nice-select.open {
  background-color: var(--brand-color) !important;
  color: #fff !important;
  border-color: var(--brand-color) !important;
}

.product-grid-item .product-head:hover .product__overlay {
  visibility: visible;
  pointer-events: auto;
}

.product-grid-item .product-head:hover .product__overlay .icon-button {
  transform: translateY(0);
  opacity: 1;
}

.product-grid-item .product__img, .product-grid-item .tea-widget .tea-widget__link, .tea-widget .product-grid-item .tea-widget__link {
  display: block;
  margin: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.product-grid-item .product__img[data-ratio="3:4"], .product-grid-item .tea-widget .tea-widget__link[data-ratio="3:4"], .tea-widget .product-grid-item .tea-widget__link[data-ratio="3:4"] {
  padding-bottom: 133%;
}

.product-grid-item .product__img[data-ratio="16:9"], .product-grid-item .tea-widget .tea-widget__link[data-ratio="16:9"], .tea-widget .product-grid-item .tea-widget__link[data-ratio="16:9"] {
  padding-bottom: 56%;
}

.product-grid-item .product__img[data-ratio="1:1"], .product-grid-item .tea-widget .tea-widget__link[data-ratio="1:1"], .tea-widget .product-grid-item .tea-widget__link[data-ratio="1:1"] {
  padding-bottom: 100%;
}

.product-grid-item .product__img:before, .product-grid-item .tea-widget .tea-widget__link:before, .tea-widget .product-grid-item .tea-widget__link:before {
  color: #dadada;
  content: "";
  background: url(../media/loading.gif) no-repeat center;
  background-size: 100%;
  font-size: 100px;
  height: 20px;
  left: calc(50% - 10px);
  line-height: 46px;
  margin: 0;
  position: absolute;
  text-align: center;
  top: calc(50% - 10px);
  width: 20px;
}

.product-grid-item .product__img img, .product-grid-item .tea-widget .tea-widget__link img, .tea-widget .product-grid-item .tea-widget__link img {
  max-width: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.product-grid-item .product-footer {
  padding: 0.2rem 1rem;
}

.product-grid-item .product-footer .product-title {
  color: var(--txt-body);
  font-weight: 500;
  margin: 10px;
  font-size: 0.8rem;
  max-width: 100%;
  margin: 0 auto;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-grid-item .product-footer .product-price {
  display: flex;
  align-items: center;
}

.product-grid-item .product-footer .product-price .price {
  color: var(--brand-color);
  margin: 0 5px;
  font-weight: 500;
}

.product-grid-item .product-footer .product-price .sale-price {
  color: var(--txt-body);
  margin: 0 5px;
  font-size: 0.8rem;
}

.product-grid-item .product-footer .product-stars {
  min-height: 20px;
  height: 20px;
  margin: 0 0 1rem 0;
}

.product-grid-item .product-footer .product-stars ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-grid-item .product-footer .product-stars ul li {
  margin: 0 2px;
}

.product-grid-item .product-footer .product-stars .svg {
  width: 0.8rem;
  height: 0.8rem;
  display: block;
  fill: #212529;
}

.product-grid-item:hover .product__overlay .product__overlay-action {
  opacity: 1;
  transform: translateY(0);
}

.collection-categories .categories__item {
  position: relative;
}

.collection-categories .categories__item .categories__item_inner {
  max-width: 300px;
  margin: 0 auto;
  position: relative;
}

.collection-categories .categories__item .categories__item_inner .img-box {
  position: relative;
  padding-bottom: 100%;
}

.collection-categories .categories__item .categories__item_inner .img-box .img {
  max-width: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.5s linear;
}

.collection-categories .categories__item .categories__item_inner .img-box .img img {
  width: 100%;
}

.collection-categories .categories__text {
  width: 100%;
  margin: 0;
  padding: 0.75rem;
  background-color: rgba(var(--brand-color), 0.2);
  color: var(--txt-body);
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .collection-categories .categories__text {
    padding: .25rem .5rem;
  }
}

.collection-categories .categories__text:before {
  content: '';
  background: var(--brand-color);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.2;
}

.collection-categories .categories__text h3 {
  color: inherit;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

.collection-categories .categories__text h3 a.btn {
  font-size: inherit;
  display: flex;
  justify-content: space-between;
  color: currentColor;
}

.collection-categories .categories__text h3 a.btn span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  max-width: 100%;
  margin-right: 5px;
}

.collection-categories .categories__text h3 a.btn .svg {
  width: 10px;
  height: 10px;
}

.collection-categories .categories_mosaic {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1199.98px) {
  .collection-categories .categories_mosaic {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .collection-categories .categories_mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}

.collection-categories .categories_mosaic .categories_mosaic__column {
  overflow: hidden;
}

@media (min-width: 1200px) {
  .collection-categories .categories_mosaic .categories_mosaic__column {
    height: 339px;
  }
  .collection-categories .categories_mosaic .categories_mosaic__column:nth-child(3) {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .collection-categories .categories_mosaic .categories_mosaic__column:nth-child(4) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
  }
}

.collection-categories .categories_mosaic .categories_mosaic__column .categories__item {
  position: relative;
  height: 100%;
  padding-bottom: 0;
}

.collection-categories .categories_mosaic .categories_mosaic__column .categories__item .categories__item_inner {
  max-width: none;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .collection-categories .categories_mosaic .categories_mosaic__column .categories__item .categories__item_inner {
    position: static;
  }
}

.collection-categories-3 .categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3rem;
  margin: auto;
}

@media (min-width: 1200px) {
  .collection-categories-3 .categories {
    max-width: 90%;
  }
}

@media (max-width: 991.98px) {
  .collection-categories-3 .categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .collection-categories-3 .categories {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .collection-categories-3 .categories_link {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 767.98px) {
  .collection-categories-3 .categories_link {
    text-align: center;
  }
}

.collection-categories-3 .categories_img {
  border-radius: 50%;
  overflow: hidden;
  width: clamp(5rem, 12.5vw, 12.5rem);
  height: clamp(5rem, 12.5vw, 12.5rem);
  flex: 0 0 clamp(5rem, 12.5vw, 12.5rem);
  max-width: clamp(5rem, 12.5vw, 12.5rem);
  margin-right: 1rem;
  display: block;
}

@media (max-width: 767.98px) {
  .collection-categories-3 .categories_img {
    margin: 0 auto;
    margin-bottom: .5rem;
  }
}

.collection-categories-3 .categories_tittle {
  font-size: 1rem;
  font-weight: 500;
  max-width: 150px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .collection-categories-3 .categories_tittle {
    font-size: 0.8rem;
    margin: 0 auto;
  }
}

.collection-categories-3 .categories_tittle_sub {
  font-size: 0.8rem;
  font-weight: 300;
  max-width: 150px;
  position: relative;
  display: inline-block;
  padding-right: 16px;
}

@media (max-width: 767.98px) {
  .collection-categories-3 .categories_tittle_sub {
    display: none;
  }
}

.collection-categories-3 .categories_tittle_sub:before {
  content: '';
  background: transparent;
  width: 6px;
  height: 6px;
  transform: rotate(134deg);
  border: solid 1px currentColor;
  border-bottom: 0;
  border-right: 0;
  border-color: currentColor;
  position: absolute;
  top: calc(50% - 3px);
  right: 0.5rem;
  transition: all 0.2s ease-in-out;
}

.collection-categories-4 .categories {
  margin: auto;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1199.98px) {
  .collection-categories-4 .categories {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767.98px) {
  .collection-categories-4 .categories {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: .625rem;
  }
}

.collection-categories-4 .categories-item {
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .collection-categories-4 .categories-item:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
  }
  .collection-categories-4 .categories-item:nth-child(6) {
    grid-column-start: 5;
    grid-column-end: 7;
    grid-row-start: 1;
    grid-row-end: 3;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .collection-categories-4 .categories-item:nth-child(6) {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 2;
    grid-row-end: 4;
  }
}

@media (max-width: 767.98px) {
  .collection-categories-4 .categories-item:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .collection-categories-4 .categories-item:nth-child(6) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 4;
    grid-row-end: 5;
  }
}

.collection-categories-4 .categories-item:hover .categories_detail {
  transform: translate(0px, 0px);
}

.collection-categories-4 .categories_img img[data-aspect-ratio="1:1"] {
  width: 100%;
}

.collection-categories-4 .categories_detail {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--txt-white);
  text-align: center;
  padding: 0.8rem 0.5rem;
  transition: 0.5s ease all;
  font-size: 1rem;
}

@media (min-width: 1200px) {
  .collection-categories-4 .categories_detail {
    transform: translate(0px, 110%);
  }
}

@media (max-width: 767.98px) {
  .collection-categories-4 .categories_detail {
    font-size: 0.8rem;
    transform: none;
    padding: 0.8rem;
  }
}

.collection-categories-4 .categories_detail .categories_tittle {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1199.98px) {
  .collection-categories-4 .categories_detail .categories_tittle {
    font-size: 0.875rem;
  }
}

.categories-top {
  display: grid;
  grid-gap: 1.875rem;
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1199.98px) {
  .categories-top {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
  }
}

@media (max-width: 767.98px) {
  .categories-top {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: .625rem;
  }
}

.categories-top .cat-block {
  min-width: 0px;
}

.img-box {
  position: relative;
  overflow: hidden;
}

.animate-scale:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #232323;
  overflow: hidden;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=0)";
  filter: alpha(opacity=0);
  z-index: 2;
  transition: all 0.5s ease;
}

.animate-scale img {
  transition: all 0.7s ease;
}

.animate-scale:hover img {
  transform: scale3d(1.1, 1.1, 1);
}

.collections-mosaic {
  max-width: 70%;
  margin: auto;
  display: grid;
  grid-gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  border: solid 1px var(--border-color);
  background-color: var(--border-color);
}

@media (max-width: 767.98px) {
  .collections-mosaic {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}

.collections-mosaic__column {
  background: var(--bg-white);
}

@media (min-width: 768px) {
  .collections-mosaic__column:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .collections-mosaic__column:nth-child(2) {
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 3;
  }
  .collections-mosaic__column:nth-child(3) {
    grid-column-start: 4;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 2;
  }
  .collections-mosaic__column:nth-child(4) {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .collections-mosaic__column:nth-child(5) {
    grid-column-start: 4;
    grid-column-end: 5;
    grid-row-start: 2;
    grid-row-end: 3;
  }
}

.tea-widget {
  background-size: cover;
  overflow: hidden;
  position: relative;
  display: flex;
  /*height: 100%;*/
  flex-direction: column;
}

.tea-widget .tea-widget__content {
  position: absolute;
  z-index: 2;
  padding: 1rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}

@media (max-width: 991.98px) {
  .tea-widget .tea-widget__content {
    padding: .75rem .875rem;
  }
}

.tea-widget .tea-widget__content h2 {
  font-weight: 400;
  font-size: calc(112.5% + 1vw);
  padding: 0;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.tea-widget .tea-widget__content h3 {
  font-size: 1rem;
  line-height: 1;
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.tea-widget .tea-widget__content h4 {
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 0.5rem;
  padding: 0;
  text-transform: uppercase;
}

.tea-widget .tea-widget__content p {
  font-size: 0.8rem;
}

.tea-widget .tea-widget__content.deals__content {
  background: rgba(255, 255, 255, 0.9);
}

.tea-widget .tea-widget__link {
  display: block;
  max-width: 100%;
  margin: 0;
  padding-bottom: 133%;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.tea-widget .tea-widget__link:before {
  color: #dadada;
  content: "";
  background: url(../media/loading.gif) no-repeat center;
  background-size: 100%;
  font-size: 100px;
  height: 20px;
  left: calc(50% - 10px);
  line-height: 46px;
  margin: 0;
  position: absolute;
  text-align: center;
  top: calc(50% - 10px);
  width: 20px;
}

.tea-widget .tea-widget__link img {
  transition: all 0.35s ease 0s;
  -webkit-transition: all 0.35s ease 0s;
  width: 100%;
  max-width: 100%;
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.tea-widget:hover .tea-widget__link img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.collection-parallax {
  background-attachment: fixed;
  background-position: center;
  display: flex;
  align-items: center;
  color: #fff;
}

.collection-parallax_data {
  margin: 1rem 0;
}

.collection-parallax_data h4 {
  margin: 0;
}

.collection-deals {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.collection-deals_data ul {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.collection-deals_data ul li {
  position: relative;
  text-align: center;
  display: flex;
}

.collection-deals_data ul li .value {
  display: block;
  font-weight: 600;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--brand-color);
}

@media (max-width: 767.98px) {
  .collection-deals_data ul li .value {
    font-size: 1.5rem;
  }
}

.collection-deals_data ul li .value .label, .collection-deals_data ul li .value .product-line-info .value, .product-line-info .collection-deals_data ul li .value .value {
  display: block;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--txt-body);
  text-transform: uppercase;
}

.collection-deals_data ul li:after {
  line-height: 1;
  font-weight: 600;
  margin: 0 1rem;
  font-size: 2rem;
  content: ":";
  color: var(--brand-color);
}

.collection-deals_data ul li:last-child:after {
  content: normal;
}

.collection-newsletter {
  display: flex;
  align-items: center;
}

.collection-newsletter .newsletter h4 {
  margin: 0;
  padding: 0;
}

.collection-newsletter .newsletter p {
  font-size: 0.8rem;
}

.collection-newsletter .newsletter .form-newsletter {
  margin: 1.5rem 0;
  margin-bottom: 0;
  background-color: var(--bg-white);
  padding: 1rem;
  border-radius: 2px;
  max-width: 550px;
}

.collection-newsletter .newsletter .form-newsletter input[type="email"], .collection-newsletter .newsletter .form-newsletter .form select[type="email"], .form .collection-newsletter .newsletter .form-newsletter select[type="email"], .collection-newsletter .newsletter .form-newsletter .form-control select[type="email"], .form-control .collection-newsletter .newsletter .form-newsletter select[type="email"], .collection-newsletter .newsletter .form-newsletter .form textarea[type="email"], .form .collection-newsletter .newsletter .form-newsletter textarea[type="email"], .collection-newsletter .newsletter .form-newsletter .form-control textarea[type="email"], .form-control .collection-newsletter .newsletter .form-newsletter textarea[type="email"] {
  height: 40px;
  border: none;
  border-radius: 0px;
}

@media (max-width: 767.98px) {
  .collection-newsletter .newsletter .form-newsletter input[type="email"], .collection-newsletter .newsletter .form-newsletter .form select[type="email"], .form .collection-newsletter .newsletter .form-newsletter select[type="email"], .collection-newsletter .newsletter .form-newsletter .form-control select[type="email"], .form-control .collection-newsletter .newsletter .form-newsletter select[type="email"], .collection-newsletter .newsletter .form-newsletter .form textarea[type="email"], .form .collection-newsletter .newsletter .form-newsletter textarea[type="email"], .collection-newsletter .newsletter .form-newsletter .form-control textarea[type="email"], .form-control .collection-newsletter .newsletter .form-newsletter textarea[type="email"] {
    height: 30px;
  }
}

.collection-newsletter .newsletter .form-newsletter input[type="email"]:focus, .collection-newsletter .newsletter .form-newsletter .form select[type="email"]:focus, .form .collection-newsletter .newsletter .form-newsletter select[type="email"]:focus, .collection-newsletter .newsletter .form-newsletter .form-control select[type="email"]:focus, .form-control .collection-newsletter .newsletter .form-newsletter select[type="email"]:focus, .collection-newsletter .newsletter .form-newsletter .form textarea[type="email"]:focus, .form .collection-newsletter .newsletter .form-newsletter textarea[type="email"]:focus, .collection-newsletter .newsletter .form-newsletter .form-control textarea[type="email"]:focus, .form-control .collection-newsletter .newsletter .form-newsletter textarea[type="email"]:focus {
  box-shadow: none;
}

.collection-newsletter .newsletter .form-newsletter button {
  padding: 0.375rem 2rem;
  margin: 0;
}

.collection-newsletter-2 {
  color: var(--txt-body);
}

@media (min-width: 992px) {
  .collection-newsletter-2 .container {
    max-width: 1330px;
  }
}

.collection-newsletter-2 h4 {
  color: #000;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .collection-newsletter-2 h4 {
    text-align: center;
  }
}

.collection-newsletter-2 .newsletter-form-wrapper {
  max-width: 600px;
  width: 100%;
  margin-right: 0;
  margin-left: auto;
}

@media (max-width: 767.98px) {
  .collection-newsletter-2 .newsletter-form-wrapper .input-group {
    flex-direction: column;
  }
}

.collection-newsletter-2 .newsletter-form-wrapper .input-group input, .collection-newsletter-2 .newsletter-form-wrapper .input-group .form select, .form .collection-newsletter-2 .newsletter-form-wrapper .input-group select, .collection-newsletter-2 .newsletter-form-wrapper .input-group .form-control select, .form-control .collection-newsletter-2 .newsletter-form-wrapper .input-group select, .collection-newsletter-2 .newsletter-form-wrapper .input-group .form textarea, .form .collection-newsletter-2 .newsletter-form-wrapper .input-group textarea, .collection-newsletter-2 .newsletter-form-wrapper .input-group .form-control textarea, .form-control .collection-newsletter-2 .newsletter-form-wrapper .input-group textarea {
  border-radius: 5rem;
  border: 0;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0.75rem 2rem;
  margin-right: 1.5rem;
  color: #000;
  font-size: 1rem;
  font-weight: normal;
}

.collection-newsletter-2 .newsletter-form-wrapper .input-group input::-moz-placeholder, .collection-newsletter-2 .newsletter-form-wrapper .input-group .form select::-moz-placeholder, .form .collection-newsletter-2 .newsletter-form-wrapper .input-group select::-moz-placeholder, .collection-newsletter-2 .newsletter-form-wrapper .input-group .form-control select::-moz-placeholder, .form-control .collection-newsletter-2 .newsletter-form-wrapper .input-group select::-moz-placeholder, .collection-newsletter-2 .newsletter-form-wrapper .input-group .form textarea::-moz-placeholder, .form .collection-newsletter-2 .newsletter-form-wrapper .input-group textarea::-moz-placeholder, .collection-newsletter-2 .newsletter-form-wrapper .input-group .form-control textarea::-moz-placeholder, .form-control .collection-newsletter-2 .newsletter-form-wrapper .input-group textarea::-moz-placeholder {
  color: #000;
}

.collection-newsletter-2 .newsletter-form-wrapper .input-group input::placeholder, .collection-newsletter-2 .newsletter-form-wrapper .input-group .form select::placeholder, .form .collection-newsletter-2 .newsletter-form-wrapper .input-group select::placeholder, .collection-newsletter-2 .newsletter-form-wrapper .input-group .form-control select::placeholder, .form-control .collection-newsletter-2 .newsletter-form-wrapper .input-group select::placeholder, .collection-newsletter-2 .newsletter-form-wrapper .input-group .form textarea::placeholder, .form .collection-newsletter-2 .newsletter-form-wrapper .input-group textarea::placeholder, .collection-newsletter-2 .newsletter-form-wrapper .input-group .form-control textarea::placeholder, .form-control .collection-newsletter-2 .newsletter-form-wrapper .input-group textarea::placeholder, .collection-newsletter-2 .newsletter-form-wrapper .input-group input:focus, .collection-newsletter-2 .newsletter-form-wrapper .input-group .form select:focus, .form .collection-newsletter-2 .newsletter-form-wrapper .input-group select:focus, .collection-newsletter-2 .newsletter-form-wrapper .input-group .form-control select:focus, .form-control .collection-newsletter-2 .newsletter-form-wrapper .input-group select:focus, .collection-newsletter-2 .newsletter-form-wrapper .input-group .form textarea:focus, .form .collection-newsletter-2 .newsletter-form-wrapper .input-group textarea:focus, .collection-newsletter-2 .newsletter-form-wrapper .input-group .form-control textarea:focus, .form-control .collection-newsletter-2 .newsletter-form-wrapper .input-group textarea:focus {
  color: #000;
}

@media (max-width: 767.98px) {
  .collection-newsletter-2 .newsletter-form-wrapper .input-group input, .collection-newsletter-2 .newsletter-form-wrapper .input-group .form select, .form .collection-newsletter-2 .newsletter-form-wrapper .input-group select, .collection-newsletter-2 .newsletter-form-wrapper .input-group .form-control select, .form-control .collection-newsletter-2 .newsletter-form-wrapper .input-group select, .collection-newsletter-2 .newsletter-form-wrapper .input-group .form textarea, .form .collection-newsletter-2 .newsletter-form-wrapper .input-group textarea, .collection-newsletter-2 .newsletter-form-wrapper .input-group .form-control textarea, .form-control .collection-newsletter-2 .newsletter-form-wrapper .input-group textarea {
    width: 100%;
    margin-right: 0rem;
    margin-bottom: 1rem;
    text-align: center;
  }
}

.collection-newsletter-2 .newsletter-form-wrapper .input-group button {
  padding: 0.75rem 3rem;
  border-radius: 5rem;
  height: 50px;
  outline: 0;
}

.brands {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
}

.brands .brand {
  display: block;
  padding: 2rem;
  margin: 0 0.5rem;
  background-color: #fff;
  color: #000;
}

.brands .brand a {
  display: block;
}

.brands .brand a img {
  min-width: 150px;
  max-width: 250px;
  filter: grayscale(50);
  opacity: 0.5;
}

@media screen and (max-width: 500px) {
  .brands .brand a img {
    min-width: inherit;
    max-width: 100%;
  }
}

.brands .brand a:hover img {
  filter: none;
  opacity: 1;
}

@media (max-width: 767.98px) {
  .brands .brand {
    padding: 1rem;
  }
}

@media (min-width: 1200px) {
  .collection-testimonial-1 {
    margin: 0 4rem;
  }
}

.collection-testimonial-1 .slick-track,
.collection-testimonial-1 .slick-list {
  display: flex;
}

.collection-testimonial-1 .testimonial {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  flex: 1;
}

.collection-testimonial-1 .testimonial__content {
  flex: 1;
}

@media (min-width: 1200px) {
  .collection-testimonial-1 .testimonial__content {
    opacity: 0;
    visibility: hidden;
  }
}

.collection-testimonial-1 .testimonial__content h4 {
  color: var(--txt-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  padding: 0 0 .5rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.collection-testimonial-1 .testimonial__content p {
  font-size: 0.8rem;
  line-height: 1.5;
  -webkit-line-clamp: 6;
  overflow: hidden;
  color: var(--txt-gray);
}

.collection-testimonial-1 .testimonial-1-no-slider {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.collection-testimonial-1 .testimonial-1-no-slider .testimonials__item {
  background-color: #feebe9;
  flex: 1;
  margin: 1rem;
}

.collection-testimonial-1 .testimonial-1-no-slider .testimonial__content {
  opacity: 1;
  visibility: visible;
}

.collection-testimonial-1 .testimonials__item {
  transition: all 500ms ease-out;
  background-color: transparent;
  padding: 1.875rem;
  border-radius: 0.5rem;
  margin: 0 1rem;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
}

@media (max-width: 1199.98px) {
  .collection-testimonial-1 .testimonials__item {
    background-color: #feebe9;
  }
}

@media (max-width: 991.98px) {
  .collection-testimonial-1 .testimonials__item {
    padding: 1.125rem;
  }
}

@media (min-width: 768px) {
  .collection-testimonial-1 .testimonials__item {
    max-width: 510px;
  }
}

.collection-testimonial-1 .testimonials__item.slick-current {
  background-color: var(--bg-gray);
}

.collection-testimonial-1 .testimonials__item.slick-current .testimonial__content {
  opacity: 1;
  visibility: visible;
}

.collection-testimonial-1 .testimonial__avtar {
  display: flex;
  align-items: center;
  padding-top: 2.25rem;
  margin-top: auto;
}

@media (max-width: 991.98px) {
  .collection-testimonial-1 .testimonial__avtar {
    padding-top: 1.25rem;
  }
}

.collection-testimonial-1 .testimonial__avtar-img {
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 3.5rem;
  max-width: 3.5rem;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  margin-right: 1.5rem;
  position: relative;
}

.collection-testimonial-1 .testimonial__avtar-img:after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -5px;
  background-image: url("../media/retina/icon__quotes.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  height: 22px;
  width: 29px;
}

.collection-testimonial-1 .testimonial__avtar-img img {
  margin: auto;
  max-height: 100%;
  border-radius: 100%;
}

.collection-testimonial-1 .testimonial__avtar-detail {
  min-width: 0px;
}

.collection-testimonial-1 .testimonial__avtar-detail h6 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.collection-testimonial-1 .testimonial__avtar-detail span {
  font-size: .75rem;
}

@media (min-width: 768px) {
  .collection-testimonial-1 .slick-list {
    margin: 0 -1rem;
  }
}

@media (max-width: 1199.98px) {
  .collection-testimonial-1 .slick-slider .slick-dots {
    position: relative;
    margin-top: 1rem;
    bottom: 0;
  }
}

@media (max-width: 1199.98px) {
  .collection-testimonial-1 .slick-slider .slick-dots li {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: var(--bg-gray);
    box-shadow: none;
  }
}

@media (max-width: 1199.98px) {
  .collection-testimonial-1 .slick-slider .slick-dots li.slick-active {
    width: 10px;
  }
}

.collection-testimonial-1 .slick-slider .slick-arrow {
  opacity: 1;
  background-color: var(--bg-white);
  background-image: url("../media/retina/testimonial-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  color: var(--txt-body);
}

.collection-testimonial-1 .slick-slider .slick-arrow:after, .collection-testimonial-1 .slick-slider .slick-arrow:before {
  display: none;
}

@media (max-width: 1199.98px) {
  .collection-testimonial-1 .slick-slider .slick-arrow {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .collection-testimonial-1 .slick-slider .slick-arrow {
    top: auto;
    bottom: 2.25rem;
  }
}

.collection-testimonial-1 .slick-slider .slick-arrow.slick-prev {
  left: -4rem;
}

.collection-testimonial-1 .slick-slider .slick-arrow.slick-next {
  right: -4rem;
  transform: rotate(180deg);
}

.collection-testimonial-2 {
  overflow: hidden;
}

.collection-testimonial-2 .testimonial-wrapper .slider-controls {
  display: flex;
  position: absolute;
  bottom: 24px;
  z-index: 2;
}

@media (max-width: 1199.98px) {
  .collection-testimonial-2 .testimonial-wrapper .slider-controls {
    display: none;
  }
}

.collection-testimonial-2 .testimonial-wrapper .slider-controls .slick-arrow {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--brand-color);
  border-radius: 5px;
  display: flex;
  position: relative;
  padding: 0.25rem;
  align-items: center;
  justify-content: center;
}

.collection-testimonial-2 .testimonial-wrapper .slider-controls .slick-arrow:before {
  content: '';
  width: 7px;
  height: 7px;
  border: 2px solid var(--brand-color);
  display: block;
  position: absolute;
  top: 10px;
  transform: rotate(45deg);
}

.collection-testimonial-2 .testimonial-wrapper .slider-controls .prev-arrow {
  margin-right: 0.5rem;
}

.collection-testimonial-2 .testimonial-wrapper .slider-controls .prev-arrow:before {
  left: 12px;
  border-right: 0;
  border-top: 0;
}

.collection-testimonial-2 .testimonial-wrapper .slider-controls .next-arrow:before {
  right: 12px;
  border-left: 0;
  border-bottom: 0;
}

@media (max-width: 1199.98px) {
  .collection-testimonial-2 .testimonial-wrapper .slider-controls .slider-btn:not(:last-child) {
    margin-right: 1rem;
  }
}

.collection-testimonial-2 .testimonial-wrapper .section__header-testimonial {
  margin-bottom: 1rem;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  background-color: var(--bg-white);
}

.collection-testimonial-2 .testimonial-wrapper .section__header-testimonial .section__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 1199.98px) {
  .collection-testimonial-2 .testimonial-wrapper .section__header-testimonial .section__content {
    display: block;
    text-align: center;
  }
}

.collection-testimonial-2 .testimonial-wrapper .section__header-testimonial h2 {
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .collection-testimonial-2 .testimonial-wrapper .section__header-testimonial {
    max-width: 25%;
    flex: 0 0 25%;
    padding: 0;
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .collection-testimonial-2 .testimonial-wrapper .section__header-testimonial {
    text-align: center;
    padding: 0;
  }
}

.collection-testimonial-2 .testimonial-wrapper .section__header-testimonial::after {
  content: "";
  position: absolute;
  right: 100%;
  top: -1.25rem;
  bottom: -1.25rem;
  width: 100vw;
  background-color: var(--bg-white);
}

.collection-testimonial-2 .testimonial-wrapper .section__body {
  min-width: 0;
}

@media (min-width: 1200px) {
  .collection-testimonial-2 .testimonial-wrapper .section__body {
    max-width: 74%;
    flex: 0 0 74%;
  }
}

.collection-testimonial-2 .testimonial-wrapper .testimonials {
  height: 100%;
}

@media (min-width: 768px) {
  .collection-testimonial-2 .testimonial-wrapper .testimonials {
    margin: 0 -15px;
  }
}

@media (max-width: 767.98px) {
  .collection-testimonial-2 .testimonial-wrapper .testimonials__item {
    padding: 0 1rem;
  }
}

@media (min-width: 1200px) {
  .collection-testimonial-2 .testimonial-wrapper .testimonials .slick-list {
    overflow: visible;
    height: 100%;
  }
  .collection-testimonial-2 .testimonial-wrapper .testimonials .slick-list .slick-track {
    height: 100%;
  }
}

.collection-testimonial-2 .testimonial-wrapper .testimonials .slick-current .testimonial {
  background-color: var(--brand-color);
  color: var(--brand-color-inverse);
}

.collection-testimonial-2 .testimonial {
  padding: 2rem;
  position: relative;
  background-color: var(--bg-gray);
  border-radius: 0.5rem;
  transition: .3s ease-in-out all;
  margin: 0 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 1s ease-out;
}

.collection-testimonial-2 .testimonial:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url("../media/retina/quote.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 180px;
  height: 180px;
  z-index: 0;
}

@media (max-width: 767.98px) {
  .collection-testimonial-2 .testimonial {
    padding: 15px;
    margin: 0;
  }
}

.collection-testimonial-2 .testimonial h4 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.collection-testimonial-2 .testimonial p {
  line-height: 1.5;
  font-size: 0.8rem;
  overflow: hidden;
  -webkit-line-clamp: 4;
  text-overflow: ellipsis;
}

.collection-testimonial-2 .testimonial .testimonial__avtar {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: center;
}

.collection-testimonial-2 .testimonial .testimonial__avtar-img {
  margin-right: 1rem;
}

.collection-testimonial-2 .testimonial .testimonial__avtar-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-position: center;
     object-position: center;
}

.collection-testimonial-2 .testimonial .testimonial__avtar-detail h6 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

@media (min-width: 1200px) {
  .collection-testimonial-2 .slick-slider .slick-dots {
    display: none !important;
  }
}

@media (max-width: 1199.98px) {
  .collection-testimonial-2 .slick-slider .slick-dots {
    position: relative;
    margin-top: 1rem;
    bottom: 0;
  }
}

@media (max-width: 1199.98px) {
  .collection-testimonial-2 .slick-slider .slick-dots li {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: var(--bg-gray);
    box-shadow: none;
  }
}

@media (max-width: 1199.98px) {
  .collection-testimonial-2 .slick-slider .slick-dots li.slick-active {
    width: 10px;
  }
}

.collection-banner .banners {
  display: grid;
  grid-gap: 1rem;
  grid-auto-flow: column;
}

@media (max-width: 767.98px) {
  .collection-banner .banners {
    grid-auto-flow: row;
  }
}

.collection-insta {
  position: relative;
}

.collection-insta .insta-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(152px, 1fr));
}

.collection-insta .insta-profile {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 250px;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.collection-insta .insta-profile .handle {
  display: flex;
  flex-direction: column;
}

.collection-insta .insta-profile .handle .name {
  text-transform: uppercase;
  color: var(--txt-gray);
}

.collection-insta .insta-profile .handle a {
  color: currentColor;
}

.collection-insta-2 .insta-wrap {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}

@media (max-width: 1199.98px) {
  .collection-insta-2 .insta-wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767.98px) {
  .collection-insta-2 .insta-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .collection-insta-2 .insta-wrap .insta:last-child {
    display: none;
  }
}

.collection-insta-2 .insta-profile {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 250px;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 3px;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.collection-insta-2 .insta-profile .handle {
  display: flex;
  flex-direction: column;
}

.collection-insta-2 .insta-profile .handle .name {
  text-transform: uppercase;
  color: var(--txt-gray);
}

.collection-insta-2 .insta-profile .handle a {
  color: #fff;
}

.collection-insta-3 .insta-wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 767.98px) {
  .collection-insta-3 .insta-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

.collection-insta-3 .insta-profile {
  background-color: var(--bg-black);
  color: var(--bg-black-inverse);
  text-align: center;
  padding: 1rem 10px;
}

.collection-insta-3 .insta-profile .handle {
  display: flex;
  flex-direction: column;
}

.collection-insta-3 .insta-profile .handle .name {
  text-transform: uppercase;
  color: var(--txt-gray);
}

.collection-insta-3 .insta-profile .handle a {
  color: currentColor;
}

.insta-img {
  min-height: 120px;
}

.instashop {
  display: grid;
  grid-gap: 1px;
  grid-template-columns: repeat(auto-fill, minmax(10%, 1fr));
  position: relative;
}

@media (max-width: 767.98px) {
  .instashop {
    grid-template-columns: repeat(3, 1fr);
  }
}

.collection-insta-1 .insta-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 767.98px) {
  .collection-insta-1 .insta-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.collection-insta-1 .insta-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767.98px) {
  .collection-insta-1 .insta-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.collection-insta-1 .insta-profile {
  background-color: #FEEBE9;
  color: #000;
  text-align: center;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .collection-insta-1 .insta-profile {
    grid-row-start: 1;
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

.collection-insta-1 .insta-profile h6 {
  text-transform: uppercase;
  font-size: clamp(0.75rem, 0.875vw, 0.875rem);
  font-weight: normal;
  margin: 0;
}

@media (min-width: 768px) {
  .collection-insta-1 .insta-profile h6 {
    letter-spacing: 2.8px;
  }
}

.collection-insta-1 .insta-profile a {
  font-size: clamp(1rem, 3vw, 3rem);
  color: #F03627;
}

.collection-services .panel-services {
  display: flex;
  padding-right: 2rem;
}

@media (max-width: 991.98px) {
  .collection-services .panel-services {
    padding-right: 0rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.collection-services .panel-services i {
  font-size: 1.5rem;
  color: var(--txt-body);
  margin-right: 1rem;
  display: block;
}

.collection-services .panel-services h3 {
  font-size: 1rem;
  font-weight: 500;
  padding-top: 0;
  margin: 0;
  color: var(--txt-body);
}

.collection-services .panel-services p {
  color: var(--txt-gray);
  font-size: 0.9rem;
}

.collection-services-2 .panel-services {
  display: block;
  text-align: center;
  padding: 0 2rem;
}

@media (max-width: 991.98px) {
  .collection-services-2 .panel-services {
    padding: 1.125rem .5rem;
  }
}

.collection-services-2 .panel-services__icon {
  margin: 0 auto;
  margin-bottom: 1.5rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 991.98px) {
  .collection-services-2 .panel-services__icon {
    margin-bottom: .75rem;
  }
}

.collection-services-2 .panel-services__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.collection-services-2 .panel-services h3 {
  color: var(--txt-body);
  font-weight: 500;
}

.collection-services-2 .panel-services p {
  color: var(--txt-gray);
  font-size: 0.875rem;
}

@media (max-width: 767.98px) {
  .site-blog .slide {
    margin-bottom: 1rem;
  }
}

.site-blog .slide-figure {
  margin-bottom: 1rem;
  padding-bottom: 75%;
  background-color: #f0f0f0;
  position: relative;
}

.site-blog .slide-figure img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  overflow: hidden;
}

.site-blog h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .site-blog h4 {
    font-size: 1.1rem;
    margin: 0;
  }
}

.site-blog h5 {
  font-size: 0.8rem;
  color: currentColor;
  font-weight: 300;
  margin-bottom: 0.8rem;
}

@media (max-width: 767.98px) {
  .site-blog h5 {
    margin-bottom: 0.45rem;
  }
}

.site-blog h5 span {
  color: currentColor;
  font-weight: 600;
}

.site-blog p {
  color: currentColor;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  line-height: 1.8;
  padding-right: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .site-blog p {
    font-size: .8rem;
    padding: 0;
  }
}

.site-blog-2 .data {
  background-color: var(--bg-white);
  color: var(--bg-white-inverse);
  margin: 0 auto;
  margin-top: -80px;
  padding: 1.2rem;
  width: 92%;
  position: relative;
  z-index: 1;
}

.site-blog-2 .data h4 {
  margin-bottom: 0.7rem;
  font-weight: 500;
}

.site-blog-2 .data h4 a {
  color: currentColor;
}

.site-blog-2 .data p {
  color: currentColor;
  padding: 0;
}

.site-blog-2 .data .author {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: 0 8px;
  display: inline-block;
  overflow: hidden;
}

.slide-figure {
  position: relative;
}

.slide-figure .slide-img {
  margin: 0;
  padding-bottom: 75%;
  background-color: #f0f0f0;
  position: relative;
}

.slide-figure .slide-img img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  overflow: hidden;
}

.slide-figure figcaption {
  width: 100%;
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.66);
  padding: 1rem;
  color: #fff;
  text-align: center;
}

.slide-figure figcaption a {
  color: #fff;
}

.slide-figure figcaption h5 {
  color: #fff;
}

.slide-figure figcaption span {
  color: #fff;
}

.collection-blog-3 {
  max-width: 2000px;
  margin: 0 auto;
}

.collection-blog-3 .blog {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 991.98px) {
  .collection-blog-3 .blog {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 calc(1rem + 4vh);
  }
}

@media (max-width: 767.98px) {
  .collection-blog-3 .blog {
    padding-right: 8%;
    padding-left: 8%;
  }
}

.collection-blog-3 .blog .blog-image {
  order: 2;
  width: 50%;
}

@media (max-width: 991.98px) {
  .collection-blog-3 .blog .blog-image {
    width: 100%;
    order: 1;
  }
}

.collection-blog-3 .blog .blog-image .blog_img {
  position: relative;
  display: block;
  padding-bottom: 75%;
  background-color: var(--bg-white);
}

.collection-blog-3 .blog .blog-image .blog_img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.collection-blog-3 .blog-content {
  background-color: var(--bg-white);
  color: var(--bg-white-inverse);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
  padding: 3rem;
  border-radius: 3px;
  position: relative;
  z-index: 1;
  max-width: 580px;
  right: -5rem;
  order: 1;
}

@media (max-width: 767.98px) {
  .collection-blog-3 .blog-content {
    padding: 1.25rem;
  }
}

@media (max-width: 991.98px) {
  .collection-blog-3 .blog-content {
    width: 100%;
    right: 0;
    top: -2.5rem;
    order: 2;
    max-width: 90%;
  }
}

.collection-blog-3 .blog-content h4 {
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .collection-blog-3 .blog-content h4 {
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
  }
}

.collection-blog-3 .blog-content h5 {
  color: var(--brand-color);
  font-size: 0.8rem;
  margin-bottom: 0;
}

.collection-blog-3 .blog-content p {
  font-size: 1rem;
  color: var(--txt-gray);
}

@media (max-width: 767.98px) {
  .collection-blog-3 .blog-content p {
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.collection-blog-3 .blog-content .slick-arrow {
  opacity: 1;
  background: var(--bg-white);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
}

.collection-blog-3 .blog-content .slick-arrow.slick-prev {
  left: -8rem;
}

.collection-blog-3 .blog-content .slick-arrow.slick-next {
  right: -8rem;
}

.collection-blog-3 .blog-content .slick-arrow:after {
  border-color: var(--brand-color);
}

.collection-blog-3 .blog-content .slick-dots {
  bottom: -4rem;
}

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

.collection-faq .section-content {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  grid-gap: 1rem;
}

@media (min-width: 768px) {
  .collection-faq .section-content {
    margin-top: 1.75rem;
  }
}

.collection-faq .list-faqs .list-group-item {
  display: list-item;
  border-top: 0;
}

@media (max-width: 767.98px) {
  .collection-faq .list-faqs .list-group-item {
    padding: 1.5rem 0;
  }
}

.collection-faq .list-faqs .list-group-item:last-child {
  border-bottom: 0;
}

.collection-faq .list-faqs .list-group-item .faq_data {
  font-size: 0.88rem;
}

@media (max-width: 767.98px) {
  .collection-faq .list-faqs .list-group-item .faq_data {
    margin-top: 1rem;
  }
}

.collection-faq .list-faqs .faq_trigger {
  font-size: 1.2rem;
  font-weight: normal;
}

@media (max-width: 767.98px) {
  .collection-faq .list-faqs .faq_trigger {
    font-size: 1rem;
  }
}

.collection-faq .list-faqs .faq_trigger:before {
  background: transparent;
  width: 10px;
  height: 10px;
  transform: rotate(225deg);
  border: solid 1px var(--border-color);
  border-bottom: 0;
  border-right: 0;
  border-color: var(--txt-body);
  top: calc(30% - 1px);
  right: 0.5rem;
}

.collection-faq .list-faqs .faq_trigger:after {
  display: none;
}

.collection-faq .list-faqs .faq_trigger[aria-expanded='true']:before {
  transform: rotate(45deg);
}

/* #Typography
================================================== */
/* Headings & paragraphs -- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-weight: 300;
  text-transform: none;
  padding: 0 0 5px 0;
  margin: 0;
  line-height: normal;
  margin-bottom: 1rem;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: inherit;
}

h1 {
  font-size: calc(112.5% + 2vw);
  padding: 0;
  margin-bottom: 1rem;
}

h2 {
  font-size: calc(112.5% + 0.6vw);
  line-height: 1.4;
  margin-bottom: 1rem;
}

h3 {
  font-size: calc(112.5% + 0.55vw);
  line-height: 1.4;
  margin-bottom: 1rem;
}

h4 {
  font-size: calc(112.5% + 0.44vw);
  line-height: 1.5;
}

h4 strong {
  font-weight: 400;
}

h5 {
  font-size: calc(112.5% + 0.20vw);
  line-height: 1.59;
  font-weight: 300;
}

h5 strong {
  font-weight: 400;
}

h6 {
  font-size: calc(112.5% + 0.040vw);
  line-height: 1.5;
}

.heading-xxxs {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.heading-xxs {
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
}

strong {
  font-weight: 600;
}

.font-size-lg {
  font-size: 1.125rem !important;
}

@media (max-width: 767.98px) {
  .font-size-lg {
    font-size: .875rem !important;
  }
}

.font-size-base {
  font-size: 1rem !important;
}

.font-size-sm {
  font-size: .9375rem !important;
}

.font-size-xs {
  font-size: .875rem !important;
}

.font-size-xxs {
  font-size: .8125rem !important;
}

.font-size-xxxs {
  font-size: .6875rem !important;
}

.font-size-h1 {
  font-size: 2.75rem !important;
}

.font-size-h2 {
  font-size: 2.25rem !important;
}

.font-size-h3 {
  font-size: 2rem !important;
}

.font-size-h4 {
  font-size: 1.75rem !important;
}

.font-size-h5 {
  font-size: 1.5rem !important;
}

.font-size-h6 {
  font-size: 1.25rem !important;
}

@media (max-width: 767.98px) {
  .font-size-h1 {
    font-size: 2.25rem !important;
  }
  .font-size-h2 {
    font-size: 1.875rem !important;
  }
  .font-size-h3 {
    font-size: 1.75rem !important;
  }
  .font-size-h4 {
    font-size: 1.5rem !important;
  }
  .font-size-h5 {
    font-size: 1.15rem !important;
  }
}

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

.weight-400 {
  font-weight: 400;
}

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

.weight-600 {
  font-weight: 600;
}

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

p {
  margin: 0;
  line-height: 1.59;
  font-weight: 300;
}

p.p-sm {
  font-size: 1rem !important;
}

p.p-lg {
  font-size: calc(112.5% + 0.29vw) !important;
}

p img {
  margin: 0;
}

p.lead {
  font-size: 21px;
  color: #777;
}

a {
  color: inherit;
}

a,
a:visited {
  text-decoration: none;
  outline: none;
}

p {
  color: inherit;
}

p a {
  color: var(--txt-body);
}

a:hover {
  text-decoration: none;
}

em {
  font-style: italic;
}

small {
  font-size: 80%;
}

.link {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: top;
  overflow-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  color: var(--brand-color);
  transition: all .17s ease-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
  border: none;
  height: auto !important;
  line-height: inherit;
}

.link:after, .link:before {
  width: 100%;
  height: 1px;
  content: "";
  position: absolute;
  overflow: hidden;
  bottom: 0px;
  left: 0;
  background-color: currentColor;
  transition: transform 0.4s cubic-bezier(0.93, 0.01, 0, 0.98);
}

.link:before {
  transition-delay: 0s;
  transform: translateX(-100%);
}

.link:after {
  transition-delay: .25s;
}

.link:hover {
  color: var(--txt-body);
  box-shadow: none !important;
}

.link:hover:after, .link:hover:before {
  background-color: var(--txt-body);
}

.link:hover:before {
  transition-delay: .25s;
  transform: translateX(0);
}

.link:hover:after {
  transition-delay: 0s;
  transform: translateX(100%);
}

.modal-content {
  border: none;
  border-radius: 2px;
  background-color: var(--bg-white);
  color: var(--bg-white-inverse);
}

.modal-content .modal-header {
  align-items: center;
}

.modal-content .modal-header .modal-title {
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

.modal-content .modal-header button.close {
  font-weight: 400;
  font-size: 1.5rem;
  margin-right: -1rem !important;
  margin-left: 0 !important;
}

.modal.fixed-right {
  padding-right: 0 !important;
}

.modal.fixed-right .modal-dialog-vertical {
  height: 100%;
  max-width: 470px;
  margin: 0;
  margin-left: auto;
}

.modal.fixed-right .modal-dialog-vertical .modal-content {
  border-radius: 0px;
  height: inherit;
  overflow-y: auto;
}

.modal.fixed-right.fade .modal-dialog-vertical {
  transform: translateX(100%);
}

.modal.fixed-right.show .modal-dialog-vertical {
  transform: translateX(0);
}

button.close {
  font-weight: 400;
  font-size: 1.5rem;
  color: currentColor;
}

.modal-backdrop {
  background-color: var(--bg-black);
}

.rating-holder {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-size: 0.8rem;
}

.rating {
  --rating-bg: #ddd;
  --rating-fg: #ffd700;
  --size: .75rem;
  --space: 0.25em;
  position: relative;
  display: inline-flex;
}

.rating-action, .rating-view {
  display: inline-flex;
}

.rating-action .icon, .rating-view .icon {
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  padding: var(--space);
  box-sizing: content-box;
}

.rating-action, .rating-view {
  flex-direction: row-reverse;
}

.rating-action .icon, .rating-view .icon {
  fill: #ddd;
  stroke: #ddd;
}

.rating-action[data-rating="1"] .icon:nth-last-child(1),
.rating-action[data-rating="1"] .icon:nth-last-child(1) ~ .icon, .rating-view[data-rating="1"] .icon:nth-last-child(1),
.rating-view[data-rating="1"] .icon:nth-last-child(1) ~ .icon {
  fill: var(--rating-fg);
  stroke: var(--rating-fg);
}

.rating-action[data-rating="2"] .icon:nth-last-child(2),
.rating-action[data-rating="2"] .icon:nth-last-child(2) ~ .icon, .rating-view[data-rating="2"] .icon:nth-last-child(2),
.rating-view[data-rating="2"] .icon:nth-last-child(2) ~ .icon {
  fill: var(--rating-fg);
  stroke: var(--rating-fg);
}

.rating-action[data-rating="3"] .icon:nth-last-child(3),
.rating-action[data-rating="3"] .icon:nth-last-child(3) ~ .icon, .rating-view[data-rating="3"] .icon:nth-last-child(3),
.rating-view[data-rating="3"] .icon:nth-last-child(3) ~ .icon {
  fill: var(--rating-fg);
  stroke: var(--rating-fg);
}

.rating-action[data-rating="4"] .icon:nth-last-child(4),
.rating-action[data-rating="4"] .icon:nth-last-child(4) ~ .icon, .rating-view[data-rating="4"] .icon:nth-last-child(4),
.rating-view[data-rating="4"] .icon:nth-last-child(4) ~ .icon {
  fill: var(--rating-fg);
  stroke: var(--rating-fg);
}

.rating-action[data-rating="5"] .icon:nth-last-child(5),
.rating-action[data-rating="5"] .icon:nth-last-child(5) ~ .icon, .rating-view[data-rating="5"] .icon:nth-last-child(5),
.rating-view[data-rating="5"] .icon:nth-last-child(5) ~ .icon {
  fill: var(--rating-fg);
  stroke: var(--rating-fg);
}

.rating-action .icon:hover,
.rating-action .icon:hover ~ .icon {
  fill: var(--rating-fg);
  stroke: var(--rating-fg);
}

.rating:not([data-readonly]) .rating-action .icon {
  cursor: pointer;
}

.rating:not([data-readonly]) .rating-action .icon:hover,
.rating:not([data-readonly]) .rating-action .icon:hover ~ .icon {
  fill: var(--rating-fg);
  stroke: var(--rating-fg);
}

.loading-wrapper {
  background: rgba(0, 0, 0, 0.65);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 101;
  bottom: 0;
  left: 0;
  right: 0;
}

.loading-wrapper .loading {
  width: 100px;
  height: 80px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -50px;
}

.loading-wrapper .loading .inner {
  animation: rotate 0.8s linear infinite;
  margin-top: 20px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
}

.loading-wrapper .loading .rotate-one {
  left: 50%;
  margin-left: -25px;
  border-top: 2px solid #fff;
}

.loading-wrapper .loading .rotate-two {
  top: -10px;
  left: 30px;
  border-left: 2px solid #fff;
}

.loading-wrapper .loading .rotate-three {
  top: -10px;
  right: 30px;
  border-right: 2px solid #fff;
}

@keyframes rotate {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

.loading-1 {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 102;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
}

.loading-1:before {
  z-index: 5;
  content: '';
  position: absolute;
  border-radius: 50px;
  border: 3px dashed var(--brand-color);
  width: 30px;
  height: 30px;
  border-left: 3px solid transparent;
  border-bottom: 3px solid trasparent;
  animation: loading1 1s linear infinite;
}

.loading-1:after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 3px solid var(--brand-color);
  width: 30px;
  height: 30px;
  border-left: 3px solid transparent;
  border-bottom: 3px solid transpanent;
  animation: loading1 1s ease infinite;
  z-index: 10;
}

@keyframes loading1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.filter-directory a {
  color: inherit;
}

.filter-directory .filter-directory_bar {
  display: flex;
  align-items: center;
  border-bottom: solid 1px var(--border-color);
  padding: 0 0 1rem 0;
  margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
  .filter-directory .filter-directory_bar {
    flex-direction: column;
  }
}

.filter-directory .filter-directory_bar .filter-directory_search_input {
  background: url(../media/retina/magnifying-glass.svg) no-repeat 93% center;
  background-size: 16px;
  margin-right: 1rem;
  flex: 0 0 170px;
  max-width: 170px;
  font-size: 0.8rem;
}

@media (max-width: 991.98px) {
  .filter-directory .filter-directory_bar .filter-directory_search_input {
    margin: 0;
    margin-bottom: 1rem;
    flex: auto;
    max-width: none;
  }
}

.filter-directory .filter-directory_bar .filter-directory_indices {
  display: flex;
  justify-content: space-around;
  flex: 1;
  flex-direction: row;
  flex-wrap: nowrap;
}

@media (max-width: 991.98px) {
  .filter-directory .filter-directory_bar .filter-directory_indices {
    justify-content: flex-start;
    overflow-x: auto;
    width: 100%;
  }
}

.filter-directory .filter-directory_bar .filter-directory_indices li {
  font-size: 0.8rem;
  padding: 0.4rem;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  color: var(--txt-gray);
}

.filter-directory .filter-directory_disabled {
  opacity: 0.2;
}

.filter-directory_list {
  padding: 0;
  height: 465px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  white-space: nowrap;
  overflow-y: auto;
}

.filter-directory_list li {
  margin: 0.5rem 0;
  margin-right: 2rem;
  font-size: 0.8rem;
}

.filter-directory_list .filter-directory_list_title {
  text-transform: uppercase;
  font-weight: 600;
}

.filter-directory_list .lb-txt {
  font-size: 0.8rem;
  color: var(--txt-gray);
}

.filter-directory_list .filter-directory_count {
  opacity: 0.66;
  font-size: 0.7rem;
}

.cms {
  color: var(--txt-gray);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  overflow-x: auto;
}

.cms h1 {
  font-weight: 400;
}

.cms h2 {
  font-weight: 400;
}

.cms h3 {
  font-size: 1.5rem;
  font-weight: 400;
}

.cms h4 {
  font-size: 1.25rem;
  font-weight: 400;
}

.cms h5 {
  font-size: 1rem;
  font-weight: 400;
}

.cms h6 {
  font-size: 0.95rem;
  font-weight: 500;
}

.cms p {
  color: currentColor;
  margin-bottom: 1rem;
  word-break: break-word;
}

.cms.space {
  padding: 50px 0;
}

.cms ul {
  margin: 10px 0;
  color: inherit;
}

.cms ul li {
  position: relative;
  padding: 5px 0;
  margin: 0 15px;
  color: inherit;
  list-style: disc;
  display: list-item;
}

.cms ul li ul li {
  font-size: 0.875rem;
}

.cms ol {
  list-style: decimal;
  list-style-position: inside;
  margin: 10px 0;
  color: inherit;
}

.cms ol li {
  position: relative;
  padding: 5px 0;
  margin: 0 15px;
  color: inherit;
}

.cms ol li li {
  font-size: 0.875rem;
}

.cms ol a {
  color: inherit;
}

.cms table th {
  font-weight: 500;
  text-align: left;
}

.cms table th,
.cms table td {
  padding: 1rem;
  font-size: 0.8rem;
  vertical-align: top;
  color: var(--txt-body);
}

.cms-table {
  width: 100%;
}

.cms-table th,
.cms-table td {
  font-weight: 300 !important;
}

.cms-table tr:nth-child(odd) {
  background: var(--bg-gray);
}

.emphasis-txt {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--txt-body);
}

.ribbon {
  position: relative;
}

.ribbon .ribbon__target {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  position: relative;
  z-index: 1;
  background-color: var(--brand-color);
  color: #ffffff;
}

.ribbon .ribbon__target > .ribbon__inner {
  z-index: -1;
  position: relative;
  padding: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.ribbon .ribbon__target:after {
  border-color: #082d88;
}

.ribbon--ver .ribbon__target {
  padding: 5px 5px;
  width: 36px;
  text-align: center;
  display: block;
}

.ribbon--ver .ribbon__target i:not(:last-child) {
  margin-bottom: 10px;
}

.ribbon--shadow .ribbon__target {
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.4);
}

.ribbon.ribbon--round.ribbon--top .ribbon__target {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.ribbon.ribbon--round.ribbon--bottom .ribbon__target {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.ribbon.ribbon--round.ribbon--left .ribbon__target {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.ribbon.ribbon--round.ribbon--right .ribbon__target {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.ribbon--border-ver .ribbon__target:after {
  border-top: none;
  border-bottom: none;
  border-left: 1px solid;
  border-right: 1px solid;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  right: 5px;
}

.ribbon--border-hor .ribbon__target:after {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-left: none;
  border-right: none;
  content: '';
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  right: 0;
}

.ribbon--border-dash-ver .ribbon__target:after {
  border-top: none;
  border-bottom: none;
  border-left: 1px solid;
  border-right: 1px solid;
  border-left-style: dashed;
  border-right-style: dashed;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  right: 5px;
}

.ribbon--border-dash-hor .ribbon__target:after {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-left: none;
  border-right: none;
  border-top-style: dashed;
  border-bottom-style: dashed;
  content: '';
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  right: 0;
}

.ribbon--clip.ribbon--left .ribbon__target {
  left: -10px;
}

.ribbon--clip.ribbon--left .ribbon__target .ribbon__inner:before {
  content: '';
  position: absolute;
  border-style: solid;
  border-color: transparent !important;
  bottom: -10px;
  border-width: 0 10px 10px 0;
  border-right-color: #222 !important;
  left: 0;
}

.ribbon--clip.ribbon--left .ribbon__target .ribbon__inner:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-color: transparent !important;
  bottom: -10px;
}

.ribbon--clip.ribbon--right .ribbon__target {
  right: -10px;
}

.ribbon--clip.ribbon--right .ribbon__target .ribbon__inner:before {
  content: '';
  position: absolute;
  border-style: solid;
  border-color: transparent !important;
  bottom: -10px;
  border-width: 0 0 10px 10px;
  border-left-color: #222 !important;
  right: 0;
}

.ribbon--clip.ribbon--right .ribbon__target .ribbon__inner:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-color: transparent !important;
  bottom: -10px;
}

.ribbon--flag .ribbon__target > .ribbon__inner:after {
  border-left: 18px solid;
  border-right: 18px solid;
  border-bottom: 1em solid transparent !important;
  bottom: -1em;
  content: '';
  height: 0;
  left: 0;
  position: absolute;
  width: 0;
}

.ribbon--brand .ribbon__target {
  background-color: var(--brand-color);
  color: #ffffff;
}

.ribbon--brand .ribbon__target:after {
  border-color: rgba(255, 255, 255, 0.5);
}

.ribbon--brand .ribbon__target > .ribbon__inner {
  background-color: var(--brand-color);
  color: #ffffff;
}

.ribbon--brand .ribbon__target > .ribbon__inner:after {
  border-color: transparent;
  border-left-color: var(--brand-color);
  border-right-color: var(--brand-color);
}

.ribbon--light .ribbon__target {
  background-color: #ffffff;
  color: var(--txt-body);
}

.ribbon--light .ribbon__target:after {
  border-color: rgba(40, 42, 60, 0.5);
}

.ribbon--light .ribbon__target > .ribbon__inner {
  background-color: #ffffff;
  color: var(--txt-body);
}

.ribbon--light .ribbon__target > .ribbon__inner:after {
  border-color: transparent;
  border-left-color: #ffffff;
  border-right-color: #ffffff;
}

.ribbon--dark .ribbon__target {
  background-color: var(--txt-body);
  color: #ffffff;
}

.ribbon--dark .ribbon__target:after {
  border-color: rgba(255, 255, 255, 0.5);
}

.ribbon--dark .ribbon__target > .ribbon__inner {
  background-color: var(--txt-body);
  color: #ffffff;
}

.ribbon--dark .ribbon__target > .ribbon__inner:after {
  border-color: transparent;
  border-left-color: var(--txt-body);
  border-right-color: var(--txt-body);
}

.ribbon--primary .ribbon__target {
  background-color: var(--brand-color);
  color: #ffffff;
}

.ribbon--primary .ribbon__target:after {
  border-color: rgba(255, 255, 255, 0.5);
}

.ribbon--primary .ribbon__target > .ribbon__inner {
  background-color: var(--brand-color);
  color: #ffffff;
}

.ribbon--primary .ribbon__target > .ribbon__inner:after {
  border-color: transparent;
  border-left-color: var(--brand-color);
  border-right-color: var(--brand-color);
}

.ribbon--success .ribbon__target {
  background-color: #1dc9b7;
  color: #ffffff;
}

.ribbon--success .ribbon__target:after {
  border-color: rgba(255, 255, 255, 0.5);
}

.ribbon--success .ribbon__target > .ribbon__inner {
  background-color: #1dc9b7;
  color: #ffffff;
}

.ribbon--success .ribbon__target > .ribbon__inner:after {
  border-color: transparent;
  border-left-color: #1dc9b7;
  border-right-color: #1dc9b7;
}

.ribbon--info .ribbon__target {
  background-color: #5578eb;
  color: #ffffff;
}

.ribbon--info .ribbon__target:after {
  border-color: rgba(255, 255, 255, 0.5);
}

.ribbon--info .ribbon__target > .ribbon__inner {
  background-color: #5578eb;
  color: #ffffff;
}

.ribbon--info .ribbon__target > .ribbon__inner:after {
  border-color: transparent;
  border-left-color: #5578eb;
  border-right-color: #5578eb;
}

.ribbon--warning .ribbon__target {
  background-color: #ffb822;
  color: #111111;
}

.ribbon--warning .ribbon__target:after {
  border-color: rgba(17, 17, 17, 0.5);
}

.ribbon--warning .ribbon__target > .ribbon__inner {
  background-color: #ffb822;
  color: #111111;
}

.ribbon--warning .ribbon__target > .ribbon__inner:after {
  border-color: transparent;
  border-left-color: #ffb822;
  border-right-color: #ffb822;
}

.ribbon--danger .ribbon__target {
  background-color: #fd397a;
  color: #ffffff;
}

.ribbon--danger .ribbon__target:after {
  border-color: rgba(255, 255, 255, 0.5);
}

.ribbon--danger .ribbon__target > .ribbon__inner {
  background-color: #fd397a;
  color: #ffffff;
}

.ribbon--danger .ribbon__target > .ribbon__inner:after {
  border-color: transparent;
  border-left-color: #fd397a;
  border-right-color: #fd397a;
}

.badge {
  padding: 0;
  margin: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 400;
}

.badge.badge--bold {
  font-weight: 500;
}

.badge.badge--bolder {
  font-weight: 600;
}

.badge.badge--boldest {
  font-weight: 700;
}

.badge.badge--md {
  height: 24px;
  width: 24px;
  font-size: 1rem;
}

.badge.badge--lg {
  height: 35px;
  width: 35px;
  font-size: 1rem;
}

.badge.badge--xl {
  height: 50px;
  width: 50px;
  font-size: 1.1rem;
  font-weight: 500;
}

.badge.badge__pics {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.badge.badge__pics .badge__pic {
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  overflow: hidden;
  margin-left: -0.7rem;
  border: 1px solid #ffffff;
  background-color: #f0f3ff;
  color: #a1a8c3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  position: relative;
}

.badge.badge__pics .badge__pic img {
  width: 100%;
}

.badge.badge__pics .badge__pic .badge__pic--last {
  font-size: 1rem;
  font-weight: 500;
}

.badge.badge--brand {
  color: #ffffff;
  background: var(--brand-color);
}

.badge.badge--outline.badge--brand {
  background: transparent;
  color: var(--brand-color);
  border: 1px solid var(--brand-color);
}

.badge.badge--outline.badge--brand.badge--outline-2x {
  border: 2px solid var(--brand-color);
  margin: 0;
}

.badge.badge--light {
  color: var(--txt-body);
  background: #ffffff;
}

.badge.badge--light.badge--outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.badge.badge--light.badge--outline.badge--outline-2x {
  border: 2px solid #ffffff;
}

.badge.badge--dark {
  color: #ffffff;
  background: #212529;
}

.badge.badge--dark.badge--outline {
  background: transparent;
  color: var(--txt-body);
  border: 1px solid #212529;
}

.badge.badge--dark.badge--outline.badge--outline-2x {
  border: 2px solid #212529;
}

.badge.badge--primary {
  color: #ffffff;
  background: var(--brand-color);
}

.badge.badge--primary.badge--outline {
  background: transparent;
  color: var(--brand-color);
  border: 1px solid var(--brand-color);
  margin: 87px;
}

.badge.badge--primary.badge--outline.badge--outline-2x {
  border: 2px solid var(--brand-color);
}

.badge.badge--success {
  color: #ffffff;
  background: #1dc9b7;
}

.badge.badge--success.badge--outline {
  background: transparent;
  color: #1dc9b7;
  border: 1px solid #1dc9b7;
}

.badge.badge--success.badge--outline.badge--outline-2x {
  border: 2px solid #1dc9b7;
}

.badge.badge--info {
  color: #ffffff;
  background: #5578eb;
}

.badge.badge--info.badge--outline {
  background: transparent;
  color: #5578eb;
  border: 1px solid #5578eb;
}

.badge.badge--info.badge--outline.badge--outline-2x {
  border: 2px solid #5578eb;
}

.badge.badge--warning {
  color: #111111;
  background: #ffb822;
}

.badge.badge--warning.badge--outline {
  background: transparent;
  color: #ffb822;
  border: 1px solid #ffb822;
}

.badge.badge--warning.badge--outline.badge--outline-2x {
  border: 2px solid #ffb822;
}

.badge.badge--danger {
  color: #ffffff;
  background: #fd397a;
}

.badge.badge--danger.badge--outline {
  background: transparent;
  color: #fd397a;
  border: 1px solid #fd397a;
}

.badge.badge--danger.badge--outline.badge--outline-2x {
  border: 2px solid #fd397a;
}

.badge.badge--unified-brand {
  color: var(--brand-color);
  background: rgba(54, 108, 243, 0.1);
}

.badge.badge--unified-light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.badge.badge--unified-dark {
  color: var(--txt-body);
  background: rgba(40, 42, 60, 0.1);
}

.badge.badge--unified-primary {
  color: var(--brand-color);
  background: rgba(88, 103, 221, 0.1);
}

.badge.badge--unified-success {
  color: #1dc9b7;
  background: rgba(29, 201, 183, 0.1);
}

.badge.badge--unified-info {
  color: #5578eb;
  background: rgba(85, 120, 235, 0.1);
}

.badge.badge--unified-warning {
  color: #ffb822;
  background: rgba(255, 184, 34, 0.1);
}

.badge.badge--unified-danger {
  color: #fd397a;
  background: rgba(253, 57, 122, 0.1);
}

.badge.badge--inline {
  height: 0;
  width: auto;
  padding: 0.75rem 0.75rem;
  border-radius: 2px;
}

.badge.badge--inline.badge--md {
  padding: 0.8rem 0.6rem;
}

.badge.badge--inline.badge--lg {
  padding: 0.9rem 0.7rem;
}

.badge.badge--inline.badge--xl {
  padding: 1rem 0.8rem;
}

.badge.badge--pill {
  border-radius: 2rem;
}

.badge.badge--rounded {
  border-radius: 4px;
  padding-left: .6rem;
  padding-right: .6rem;
}

.badge.badge--dot {
  display: inline-block;
  line-height: 6px;
  min-height: 6px;
  min-width: 6px;
  height: 6px;
  width: 6px;
  font-size: 0;
  vertical-align: middle;
  text-align: center;
}

.badge.badge--dot.badge--sm {
  line-height: 4px;
  min-height: 4px;
  min-width: 4px;
  height: 4px;
  width: 4px;
}

.badge.badge--dot.badge--lg {
  line-height: 8px;
  min-height: 8px;
  min-width: 8px;
  height: 8px;
  width: 8px;
}

.badge.badge--xl {
  line-height: 10px;
  min-height: 10px;
  min-width: 10px;
  height: 10px;
  width: 10px;
}

.badge.badge--square {
  border-radius: 0;
}

.badge.badge--elevate {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.badge.badge--status {
  height: auto;
  width: auto;
  padding: .25rem .65rem;
}

.media-more {
  transition: all 0.5s ease-out;
  display: flex;
  align-items: center;
}

.media-more li {
  opacity: 0;
  transition: all .1s ease-in-out;
  margin-left: -10px;
}

.media-more li:first-child {
  margin-left: 0;
}

.media-more li:nth-child(1) {
  transition-delay: 75ms;
}

.media-more li:nth-child(2) {
  transition-delay: .15s;
}

.media-more li:nth-child(3) {
  transition-delay: .30s;
}

.media-more li:nth-child(4) {
  transition-delay: .45s;
}

.media-more li:nth-child(5) {
  transition-delay: .60s;
}

.media-more li:nth-child(6) {
  transition-delay: .75s;
}

.media-more li:nth-child(7) {
  transition-delay: .90s;
}

.media-more li:nth-child(8) {
  transition-delay: .105s;
}

.media-more li:nth-child(9) {
  transition-delay: .130s;
}

.media-more li .circle {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px var(--bg-white);
  overflow: hidden;
  border-radius: 50%;
  padding: 0;
  box-shadow: 0 0 6px rgba(154, 154, 154, 0.3);
  background: var(--bg-gray);
}

.media-more li .circle img {
  display: block;
}

.media-more li .circle svg {
  max-width: 16px;
  height: 16px;
  width: 100%;
  fill: #212529;
}

.media-more li .plus-more {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-left: 18px;
}

.media-more li:hover {
  position: relative;
  z-index: 1;
}

.media-more.show li {
  opacity: 1;
}

.no-data-found-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.no-data-found {
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.no-data-found .img {
  max-width: 100%;
  margin: 1rem auto;
}

.no-data-found .img img,
.no-data-found .img .svg {
  width: 100%;
  max-width: 400px;
}

.no-data-found .data {
  margin-top: 1rem;
}

.no-data-found .data h2 {
  font-size: 1.8rem;
  margin: 0;
}

.no-data-found .data p {
  margin-bottom: 1rem;
  color: var(--txt-gray);
  font-size: 0.85rem;
}

.no-data-found.no-data-found--md .img {
  max-width: 150px;
}

.no-data-found.no-data-found--md .data h2 {
  font-size: 1.5rem;
}

.no-data-found.no-data-found--sm .img {
  max-width: 100px;
}

.no-data-found.no-data-found--sm .data h2 {
  font-size: 1.2rem;
}

.checkout-progress {
  width: 100%;
  max-width: 650px;
  margin: 1rem 0;
  position: relative;
  display: flex;
}

.checkout-progress .progress-track {
  position: absolute;
  top: 7px;
  width: 76%;
  height: 2px;
  background-color: #dfe3e4;
  z-index: -1;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.checkout-progress .progress-step {
  position: relative;
  width: 100%;
  font-size: 12px;
  text-align: center;
}

.checkout-progress .progress-step:last-child:after {
  display: none;
}

.checkout-progress .progress-step:before {
  content: "";
  display: flex;
  margin: 0 auto;
  margin-bottom: 0.5rem;
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  border: 2px solid #dfe3e4;
  border-radius: 100%;
  color: #fff;
  background-image: url(../media/retina/tick.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.5rem;
}

.checkout-progress .progress-step:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 0%;
  transition: width 1s ease-in;
  height: 2px;
  background: #dfe3e4;
  z-index: -1;
}

.checkout-progress .progress-step.is-active {
  color: #1dc9b7;
}

.checkout-progress .progress-step.is-active:before {
  border: 2px solid #1dc9b7;
  animation: pulse 2s infinite;
}

.checkout-progress .progress-step.is-complete {
  color: #1dc9b7;
}

.checkout-progress .progress-step.is-complete:before {
  font-size: 10px;
  color: #fff;
  background-color: #1dc9b7;
  border: 2px solid transparent;
}

.checkout-progress .progress-step.is-complete:after {
  background: #1dc9b7;
  animation: nextStep 1s;
  animation-fill-mode: forwards;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(29, 201, 183, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(29, 201, 183, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(29, 201, 183, 0);
  }
}

@keyframes nextStep {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.progressbar {
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: flex;
  flex: 1;
  justify-content: flex-end;
}

@media (max-width: 991.98px) {
  .progressbar {
    padding: 1rem 0;
    width: 100%;
    justify-content: center;
  }
}

.progressbar li {
  list-style-type: none;
  width: 25%;
  float: left;
  font-size: 12px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

.progressbar li:before {
  width: 30px;
  height: 30px;
  content: counter(step);
  counter-increment: step;
  line-height: 27px;
  border: 2px solid var(--border-color);
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: var(--bg-white);
}

.progressbar li:after {
  width: 100%;
  height: 2px;
  content: '';
  position: absolute;
  background-color: var(--border-color);
  top: 15px;
  left: -50%;
  z-index: -1;
}

.progressbar li:first-child:after {
  content: none;
}

.progressbar li.is-active {
  color: #1dc9b7;
}

.progressbar li.is-active:before {
  border-color: #1dc9b7;
}

.progressbar li.is-active + li:after {
  background-color: #1dc9b7;
}

.quantity {
  background: var(--bg-gray);
  border: solid 1px var(--border-color);
  height: 34px;
  display: flex;
  align-items: center;
  max-width: 108px;
  border-radius: 2px;
}

.quantity span {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  max-width: 32px;
  flex: 0 0 32px;
  width: 32px;
  height: 100%;
  font-size: 0.7rem;
  color: var(--txt-gray);
}

.quantity span:hover {
  color: var(--txt-body);
}

.quantity span.disabled {
  cursor: not-allowed !important;
  opacity: 0.3;
}

.quantity .svg {
  width: 14px;
  height: 14px;
}

.quantity input, .quantity .form input[type="text"], .form .quantity input[type="text"], .quantity .form-control input[type="text"], .form-control .quantity input[type="text"], .quantity .form input[type="email"], .form .quantity input[type="email"], .quantity .form-control input[type="email"], .form-control .quantity input[type="email"], .quantity .form input[type="phone"], .form .quantity input[type="phone"], .quantity .form-control input[type="phone"], .form-control .quantity input[type="phone"], .quantity .form input[type="search"], .form .quantity input[type="search"], .quantity .form-control input[type="search"], .form-control .quantity input[type="search"], .quantity .form input[type="password"], .form .quantity input[type="password"], .quantity .form-control input[type="password"], .form-control .quantity input[type="password"], .quantity .form input[type="date"], .form .quantity input[type="date"], .quantity .form-control input[type="date"], .form-control .quantity input[type="date"], .quantity .form input[type="url"], .form .quantity input[type="url"], .quantity .form-control input[type="url"], .form-control .quantity input[type="url"], .quantity .form input[type="tel"], .form .quantity input[type="tel"], .quantity .form-control input[type="tel"], .form-control .quantity input[type="tel"], .quantity .form input[type="number"], .form .quantity input[type="number"], .quantity .form-control input[type="number"], .form-control .quantity input[type="number"], .quantity .form input[type="file"], .form .quantity input[type="file"], .quantity .form-control input[type="file"], .form-control .quantity input[type="file"], .quantity .form select, .form .quantity select, .quantity .form-control select, .form-control .quantity select, .quantity .form textarea, .form .quantity textarea, .quantity .form-control textarea, .form-control .quantity textarea {
  background: var(--bg-gray);
  color: var(--bg-white-inverse);
  border: none;
  text-align: center;
  padding: 0 8px;
  width: 100%;
  height: 100%;
  font-size: 0.7rem;
  font-weight: 400;
  min-width: 40px;
}

.quantity-2 {
  max-width: 90px;
  height: 24px;
  border: none;
}

.quantity-2 span {
  width: 24px;
  flex: 0 0 24px;
  max-width: 24px;
  background-color: var(--bg-gray);
  border-radius: 2px;
}

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

.empty-state__content h5 {
  margin: 0;
}

.empty-state__content p {
  color: #000;
}

.empty-state__img {
  max-width: 140px;
  margin: 0 auto 20px;
}

.saved-cards {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.saved-cards > li {
  border-radius: 4px;
  border: solid 1px var(--border-color);
  background: var(--bg-white);
  padding: 1rem;
  position: relative;
  color: var(--txt-gray);
}

.saved-cards > li.selected, .saved-cards > li:hover {
  background: #005eff url(../media/visa-bg.jpg) no-repeat center;
  border-color: #005eff;
  box-shadow: 0 2px 4px 0 #cfd7df;
  color: #fff;
}

.saved-cards > li.selected .radio input, .form .saved-cards > li.selected .radio input[type="text"], .form-control .saved-cards > li.selected .radio input[type="text"], .form .saved-cards > li.selected .radio input[type="email"], .form-control .saved-cards > li.selected .radio input[type="email"], .form .saved-cards > li.selected .radio input[type="phone"], .form-control .saved-cards > li.selected .radio input[type="phone"], .form .saved-cards > li.selected .radio input[type="search"], .form-control .saved-cards > li.selected .radio input[type="search"], .form .saved-cards > li.selected .radio input[type="password"], .form-control .saved-cards > li.selected .radio input[type="password"], .form .saved-cards > li.selected .radio input[type="date"], .form-control .saved-cards > li.selected .radio input[type="date"], .form .saved-cards > li.selected .radio input[type="url"], .form-control .saved-cards > li.selected .radio input[type="url"], .form .saved-cards > li.selected .radio input[type="tel"], .form-control .saved-cards > li.selected .radio input[type="tel"], .form .saved-cards > li.selected .radio input[type="number"], .form-control .saved-cards > li.selected .radio input[type="number"], .form .saved-cards > li.selected .radio input[type="file"], .form-control .saved-cards > li.selected .radio input[type="file"], .saved-cards > li.selected .radio .form select, .form .saved-cards > li.selected .radio select, .saved-cards > li.selected .radio .form-control select, .form-control .saved-cards > li.selected .radio select, .saved-cards > li.selected .radio .form textarea, .form .saved-cards > li.selected .radio textarea, .saved-cards > li.selected .radio .form-control textarea, .form-control .saved-cards > li.selected .radio textarea, .saved-cards > li:hover .radio input, .form .saved-cards > li:hover .radio input[type="text"], .form-control .saved-cards > li:hover .radio input[type="text"], .form .saved-cards > li:hover .radio input[type="email"], .form-control .saved-cards > li:hover .radio input[type="email"], .form .saved-cards > li:hover .radio input[type="phone"], .form-control .saved-cards > li:hover .radio input[type="phone"], .form .saved-cards > li:hover .radio input[type="search"], .form-control .saved-cards > li:hover .radio input[type="search"], .form .saved-cards > li:hover .radio input[type="password"], .form-control .saved-cards > li:hover .radio input[type="password"], .form .saved-cards > li:hover .radio input[type="date"], .form-control .saved-cards > li:hover .radio input[type="date"], .form .saved-cards > li:hover .radio input[type="url"], .form-control .saved-cards > li:hover .radio input[type="url"], .form .saved-cards > li:hover .radio input[type="tel"], .form-control .saved-cards > li:hover .radio input[type="tel"], .form .saved-cards > li:hover .radio input[type="number"], .form-control .saved-cards > li:hover .radio input[type="number"], .form .saved-cards > li:hover .radio input[type="file"], .form-control .saved-cards > li:hover .radio input[type="file"], .saved-cards > li:hover .radio .form select, .form .saved-cards > li:hover .radio select, .saved-cards > li:hover .radio .form-control select, .form-control .saved-cards > li:hover .radio select, .saved-cards > li:hover .radio .form textarea, .form .saved-cards > li:hover .radio textarea, .saved-cards > li:hover .radio .form-control textarea, .form-control .saved-cards > li:hover .radio textarea {
  border-color: #fff;
}

.saved-cards > li.selected .cards-detail h6,
.saved-cards > li.selected .cards-detail p, .saved-cards > li:hover .cards-detail h6,
.saved-cards > li:hover .cards-detail p {
  color: currentColor;
}

.saved-cards > li .radio input, .form .saved-cards > li .radio input[type="text"], .form-control .saved-cards > li .radio input[type="text"], .form .saved-cards > li .radio input[type="email"], .form-control .saved-cards > li .radio input[type="email"], .form .saved-cards > li .radio input[type="phone"], .form-control .saved-cards > li .radio input[type="phone"], .form .saved-cards > li .radio input[type="search"], .form-control .saved-cards > li .radio input[type="search"], .form .saved-cards > li .radio input[type="password"], .form-control .saved-cards > li .radio input[type="password"], .form .saved-cards > li .radio input[type="date"], .form-control .saved-cards > li .radio input[type="date"], .form .saved-cards > li .radio input[type="url"], .form-control .saved-cards > li .radio input[type="url"], .form .saved-cards > li .radio input[type="tel"], .form-control .saved-cards > li .radio input[type="tel"], .form .saved-cards > li .radio input[type="number"], .form-control .saved-cards > li .radio input[type="number"], .form .saved-cards > li .radio input[type="file"], .form-control .saved-cards > li .radio input[type="file"], .saved-cards > li .radio .form select, .form .saved-cards > li .radio select, .saved-cards > li .radio .form-control select, .form-control .saved-cards > li .radio select, .saved-cards > li .radio .form textarea, .form .saved-cards > li .radio textarea, .saved-cards > li .radio .form-control textarea, .form-control .saved-cards > li .radio textarea {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px;
  flex: 0 0 20px;
  border-color: var(--border-color);
  background: none;
  vertical-align: inherit;
}

.saved-cards > li .cards-detail h6 {
  color: var(--txt-gray);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.saved-cards > li .cards-detail p {
  color: var(--txt-body);
  font-size: 0.9rem;
  font-weight: 600;
}

.saved-cards > li .list-actions {
  position: absolute;
  top: 19px;
  right: 0.5rem;
  transition: all .1s ease-in-out;
  transition-property: transform, opacity;
}

.saved-cards > li .list-actions li {
  margin-right: 0.5rem;
  display: flex;
}

.saved-cards > li .list-actions li a {
  color: currentColor;
}

.saved-cards > li .list-actions li a .svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  vertical-align: inherit;
}

.saved-cards > li .list-actions li a:hover .svg {
  fill: #fff;
}

.saved-cards > li.add-new {
  border: none;
  border: solid 1px var(--border-color);
  background: none;
  display: grid;
  place-items: center;
  padding: 1rem 0;
}

.saved-cards > li.add-new:hover {
  box-shadow: none;
}

.sticky-demo-header body {
  background-color: #dfe3e8;
  height: 100%;
}

.demo-header {
  background: var(--bg-gray);
  color: var(--txt-gray);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0 1rem;
  border-bottom: solid 1px var(--border-color);
  transform: translateY(-100%);
  transition: ease 350ms;
  margin-top: -72px;
}

.demo-header--on .demo-header {
  transform: translateY(0);
  margin-top: 0;
}

.demo-header--on.header-fixed .header-middle {
  top: 70px;
}

.demo-header .restore-wrapper {
  display: flex;
  min-width: 132px;
}

.demo-header .restore-wrapper > a {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 10px 0;
}

.demo-header .restore-wrapper .restore__counter {
  padding: 0px 8px;
  font-size: 1rem;
  color: var(--brand-color);
  margin: 0.1rem 0;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 4px;
}

.demo-header .restore-wrapper .restore__progress {
  display: flex;
  height: 4px;
  width: 100%;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 2rem;
  margin: 0.25rem 0;
  max-width: 96px;
}

.demo-header .restore-wrapper .restore__progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: var(--brand-color);
  transition: width 0.6s ease;
}

.demo-header .restore-wrapper .restore__content {
  font-size: 0.675rem;
  color: var(--txt-body);
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.switch-interface {
  display: flex;
}

.switch-interface li {
  margin: 0 1rem;
  display: flex;
  position: relative;
  align-items: center;
}

.switch-interface li img {
  max-width: 30px;
  height: auto;
  opacity: 0.5;
}

.switch-interface li svg {
  display: block;
  width: 24px;
  height: 24px;
  opacity: 0.65;
}

.switch-interface li.is-active img {
  opacity: 0.8;
}

.switch-interface li.is-active:before {
  height: 2px;
  background: #212529;
  position: absolute;
  bottom: 0;
  content: "";
  width: 100%;
}

.demo-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}

.demo-cta a {
  margin: 0 1rem;
}

.demo-cta a:last-child {
  margin-right: 0;
}

.demo-cta a svg {
  display: block;
  width: 18px;
  height: 18px;
}

.demo-cta .icn {
  min-width: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
}

.demo-cta .close-layer img {
  min-width: 14px;
}

.bar-show {
  background-color: var(--bg-gray);
  position: absolute;
  bottom: -50px;
  right: 1.5rem;
  border-radius: 0px 0px 4px 4px;
  display: flex;
  align-items: center;
  justify-items: center;
  transition: ease 350ms;
  transform: translateY(0);
}

.bar-show img {
  width: 50px;
}

.bar-show svg {
  width: 50px;
  height: 50px;
  display: block;
}

.demo-header--on .bar-show {
  transform: translateY(-56px);
  opacity: 0;
}

.device-preview {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1.5rem 0;
  background-position: 0 center;
  background-size: 5px 5px;
  text-align: center;
}

.device-preview__container {
  transform: scale(1);
  transform-origin: center top;
  transition: ease 350ms;
}

@media (max-height: 801px) {
  .device-preview__container {
    transform: scale(0.9);
  }
}

@media (max-height: 700px) {
  .device-preview__container {
    transform: scale(0.8);
  }
}

@media (max-height: 600px) {
  .device-preview__container {
    transform: scale(0.7);
  }
}

.device-preview__iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: none;
  width: 100%;
  height: 100%;
}

.smartphone {
  position: relative;
  margin: 0 auto;
  border: 10px black solid;
  border-radius: 36px;
  overflow: hidden;
  width: 395px;
  height: 800px;
}

.smartphone:before {
  content: "";
  display: block;
  width: 60px;
  height: 5px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #333;
  border-radius: 10px;
}

.smartphone:after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  left: 50%;
  bottom: -65px;
  transform: translate(-50%, -50%);
  background: #333;
  border-radius: 50%;
}

.tablet {
  position: relative;
  width: 800px;
  height: 1144px;
  margin: 20px auto;
  border: 16px black solid;
  border-top-width: 60px;
  border-bottom-width: 60px;
  border-radius: 36px;
}

.tablet:before {
  content: "";
  display: block;
  width: 60px;
  height: 5px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #333;
  border-radius: 10px;
}

.tablet:after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  left: 50%;
  bottom: -65px;
  transform: translate(-50%, -50%);
  background: #333;
  border-radius: 50%;
}

.demo-data-inner {
  margin: 20px;
  color: #4c4c4c;
}

.demo-data-inner .heading {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  line-height: 1.2;
  margin-bottom: 40px;
  color: inherit;
}

.demo-data-inner .heading:after {
  background: #aa66cc;
  color: #fff;
  width: 60px;
  height: 3px;
  position: absolute;
  bottom: -10px;
  content: "";
  display: block;
}

.demo-data-inner .heading span {
  display: block;
  font-size: 0.8rem;
  text-transform: none;
}

.demo-data-inner ul li {
  position: relative;
  margin: 10px 0;
  padding: 0 15px;
  display: block;
  font-size: 0.9rem;
}

.demo-data-inner ul li:before {
  width: 5px;
  height: 5px;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 8px;
  transform: rotate(45deg);
  background: #4c4c4c;
}

.demo-data-inner .demo-data-inner ul ul {
  -webkit-margin-start: 15px;
  -moz-margin-start: 15px;
  margin-left: 15px;
  margin-bottom: 20px;
}

.feedback-btn {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 9999;
}

.feedback-btn .crcle-btn {
  background-color: var(--brand-color);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
}

.feedback-btn .crcle-btn svg {
  height: 20px;
  width: 20px;
  fill: #fff;
}

.vc-chrome {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 9;
  width: 100% !important;
  margin-top: 10px;
}

.vc-chrome-saturation-wrap {
  padding-bottom: 30% !important;
}

.current-color {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #000;
  cursor: pointer;
}

.cookies {
  text-align: center;
}

.cookies_img {
  max-width: 100px;
  margin: 1rem auto;
}

.cookies .modal-title {
  margin-top: 1.5rem;
}

.cookies p {
  font-size: 0.8rem;
  color: var(--txt-gray);
}

.cookies_actions {
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 200px;
}

.cookies_actions .btn-link {
  font-size: 0.8rem;
}

.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: var(--bg-white);
  border-radius: 3px;
  border: solid 1px var(--border-color);
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-size: 0.8rem;
  font-weight: normal;
  height: calc(1.5em + 0.75rem + 2px);
  line-height: calc(1.5em + 0.75rem + 2px);
  outline: none;
  padding-left: 16px;
  padding-right: 28px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: auto;
}

.nice-select:hover {
  border-color: #dbdbdb;
}

.nice-select:active, .nice-select:focus {
  border-color: #999;
}

.nice-select:after {
  border-bottom: 1px solid #212529;
  border-right: 1px solid #212529;
  content: '';
  display: block;
  height: 7px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 7px;
}

.nice-select.open:after {
  transform: rotate(-135deg);
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #cccccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small:after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: var(--bg-white);
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-calc(1.5em + 0.75rem + 2px)/2);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: calc(1.5em + 0.75rem + 2px);
  list-style: none;
  min-height: calc(1.5em + 0.75rem + 2px);
  outline: none;
  padding-left: 16px;
  padding-right: 27px;
  transition: all 0.2s;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f6f6f6;
}

.nice-select .option.selected {
  font-weight: 500;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #ff3a59;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

#nprogress .peg {
  display: block;
  position: absolute;
  right: 0;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #ff3a59, 0 0 5px #ff3a59;
  opacity: 1;
  transform: rotate(3deg) translate(0, -4px);
}

#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: 2px solid transparent;
  border-top-color: #ff3a59;
  border-left-color: #ff3a59;
  border-radius: 50%;
  animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .bar,
.nprogress-custom-parent #nprogress .spinner {
  position: absolute;
}

@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*!
 * Font Awesome Free 5.12.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -.0667em;
}

.fa-xs {
  font-size: .75em;
}

.fa-sm {
  font-size: .875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\F26E";
}

.fa-accessible-icon:before {
  content: "\F368";
}

.fa-accusoft:before {
  content: "\F369";
}

.fa-acquisitions-incorporated:before {
  content: "\F6AF";
}

.fa-ad:before {
  content: "\F641";
}

.fa-address-book:before {
  content: "\F2B9";
}

.fa-address-card:before {
  content: "\F2BB";
}

.fa-adjust:before {
  content: "\F042";
}

.fa-adn:before {
  content: "\F170";
}

.fa-adobe:before {
  content: "\F778";
}

.fa-adversal:before {
  content: "\F36A";
}

.fa-affiliatetheme:before {
  content: "\F36B";
}

.fa-air-freshener:before {
  content: "\F5D0";
}

.fa-airbnb:before {
  content: "\F834";
}

.fa-algolia:before {
  content: "\F36C";
}

.fa-align-center:before {
  content: "\F037";
}

.fa-align-justify:before {
  content: "\F039";
}

.fa-align-left:before {
  content: "\F036";
}

.fa-align-right:before {
  content: "\F038";
}

.fa-alipay:before {
  content: "\F642";
}

.fa-allergies:before {
  content: "\F461";
}

.fa-amazon:before {
  content: "\F270";
}

.fa-amazon-pay:before {
  content: "\F42C";
}

.fa-ambulance:before {
  content: "\F0F9";
}

.fa-american-sign-language-interpreting:before {
  content: "\F2A3";
}

.fa-amilia:before {
  content: "\F36D";
}

.fa-anchor:before {
  content: "\F13D";
}

.fa-android:before {
  content: "\F17B";
}

.fa-angellist:before {
  content: "\F209";
}

.fa-angle-double-down:before {
  content: "\F103";
}

.fa-angle-double-left:before {
  content: "\F100";
}

.fa-angle-double-right:before {
  content: "\F101";
}

.fa-angle-double-up:before {
  content: "\F102";
}

.fa-angle-down:before {
  content: "\F107";
}

.fa-angle-left:before {
  content: "\F104";
}

.fa-angle-right:before {
  content: "\F105";
}

.fa-angle-up:before {
  content: "\F106";
}

.fa-angry:before {
  content: "\F556";
}

.fa-angrycreative:before {
  content: "\F36E";
}

.fa-angular:before {
  content: "\F420";
}

.fa-ankh:before {
  content: "\F644";
}

.fa-app-store:before {
  content: "\F36F";
}

.fa-app-store-ios:before {
  content: "\F370";
}

.fa-apper:before {
  content: "\F371";
}

.fa-apple:before {
  content: "\F179";
}

.fa-apple-alt:before {
  content: "\F5D1";
}

.fa-apple-pay:before {
  content: "\F415";
}

.fa-archive:before {
  content: "\F187";
}

.fa-archway:before {
  content: "\F557";
}

.fa-arrow-alt-circle-down:before {
  content: "\F358";
}

.fa-arrow-alt-circle-left:before {
  content: "\F359";
}

.fa-arrow-alt-circle-right:before {
  content: "\F35A";
}

.fa-arrow-alt-circle-up:before {
  content: "\F35B";
}

.fa-arrow-circle-down:before {
  content: "\F0AB";
}

.fa-arrow-circle-left:before {
  content: "\F0A8";
}

.fa-arrow-circle-right:before {
  content: "\F0A9";
}

.fa-arrow-circle-up:before {
  content: "\F0AA";
}

.fa-arrow-down:before {
  content: "\F063";
}

.fa-arrow-left:before {
  content: "\F060";
}

.fa-arrow-right:before {
  content: "\F061";
}

.fa-arrow-up:before {
  content: "\F062";
}

.fa-arrows-alt:before {
  content: "\F0B2";
}

.fa-arrows-alt-h:before {
  content: "\F337";
}

.fa-arrows-alt-v:before {
  content: "\F338";
}

.fa-artstation:before {
  content: "\F77A";
}

.fa-assistive-listening-systems:before {
  content: "\F2A2";
}

.fa-asterisk:before {
  content: "\F069";
}

.fa-asymmetrik:before {
  content: "\F372";
}

.fa-at:before {
  content: "\F1FA";
}

.fa-atlas:before {
  content: "\F558";
}

.fa-atlassian:before {
  content: "\F77B";
}

.fa-atom:before {
  content: "\F5D2";
}

.fa-audible:before {
  content: "\F373";
}

.fa-audio-description:before {
  content: "\F29E";
}

.fa-autoprefixer:before {
  content: "\F41C";
}

.fa-avianex:before {
  content: "\F374";
}

.fa-aviato:before {
  content: "\F421";
}

.fa-award:before {
  content: "\F559";
}

.fa-aws:before {
  content: "\F375";
}

.fa-baby:before {
  content: "\F77C";
}

.fa-baby-carriage:before {
  content: "\F77D";
}

.fa-backspace:before {
  content: "\F55A";
}

.fa-backward:before {
  content: "\F04A";
}

.fa-bacon:before {
  content: "\F7E5";
}

.fa-bahai:before {
  content: "\F666";
}

.fa-balance-scale:before {
  content: "\F24E";
}

.fa-balance-scale-left:before {
  content: "\F515";
}

.fa-balance-scale-right:before {
  content: "\F516";
}

.fa-ban:before {
  content: "\F05E";
}

.fa-band-aid:before {
  content: "\F462";
}

.fa-bandcamp:before {
  content: "\F2D5";
}

.fa-barcode:before {
  content: "\F02A";
}

.fa-bars:before {
  content: "\F0C9";
}

.fa-baseball-ball:before {
  content: "\F433";
}

.fa-basketball-ball:before {
  content: "\F434";
}

.fa-bath:before {
  content: "\F2CD";
}

.fa-battery-empty:before {
  content: "\F244";
}

.fa-battery-full:before {
  content: "\F240";
}

.fa-battery-half:before {
  content: "\F242";
}

.fa-battery-quarter:before {
  content: "\F243";
}

.fa-battery-three-quarters:before {
  content: "\F241";
}

.fa-battle-net:before {
  content: "\F835";
}

.fa-bed:before {
  content: "\F236";
}

.fa-beer:before {
  content: "\F0FC";
}

.fa-behance:before {
  content: "\F1B4";
}

.fa-behance-square:before {
  content: "\F1B5";
}

.fa-bell:before {
  content: "\F0F3";
}

.fa-bell-slash:before {
  content: "\F1F6";
}

.fa-bezier-curve:before {
  content: "\F55B";
}

.fa-bible:before {
  content: "\F647";
}

.fa-bicycle:before {
  content: "\F206";
}

.fa-biking:before {
  content: "\F84A";
}

.fa-bimobject:before {
  content: "\F378";
}

.fa-binoculars:before {
  content: "\F1E5";
}

.fa-biohazard:before {
  content: "\F780";
}

.fa-birthday-cake:before {
  content: "\F1FD";
}

.fa-bitbucket:before {
  content: "\F171";
}

.fa-bitcoin:before {
  content: "\F379";
}

.fa-bity:before {
  content: "\F37A";
}

.fa-black-tie:before {
  content: "\F27E";
}

.fa-blackberry:before {
  content: "\F37B";
}

.fa-blender:before {
  content: "\F517";
}

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

.fa-blind:before {
  content: "\F29D";
}

.fa-blog:before {
  content: "\F781";
}

.fa-blogger:before {
  content: "\F37C";
}

.fa-blogger-b:before {
  content: "\F37D";
}

.fa-bluetooth:before {
  content: "\F293";
}

.fa-bluetooth-b:before {
  content: "\F294";
}

.fa-bold:before {
  content: "\F032";
}

.fa-bolt:before {
  content: "\F0E7";
}

.fa-bomb:before {
  content: "\F1E2";
}

.fa-bone:before {
  content: "\F5D7";
}

.fa-bong:before {
  content: "\F55C";
}

.fa-book:before {
  content: "\F02D";
}

.fa-book-dead:before {
  content: "\F6B7";
}

.fa-book-medical:before {
  content: "\F7E6";
}

.fa-book-open:before {
  content: "\F518";
}

.fa-book-reader:before {
  content: "\F5DA";
}

.fa-bookmark:before {
  content: "\F02E";
}

.fa-bootstrap:before {
  content: "\F836";
}

.fa-border-all:before {
  content: "\F84C";
}

.fa-border-none:before {
  content: "\F850";
}

.fa-border-style:before {
  content: "\F853";
}

.fa-bowling-ball:before {
  content: "\F436";
}

.fa-box:before {
  content: "\F466";
}

.fa-box-open:before {
  content: "\F49E";
}

.fa-boxes:before {
  content: "\F468";
}

.fa-braille:before {
  content: "\F2A1";
}

.fa-brain:before {
  content: "\F5DC";
}

.fa-bread-slice:before {
  content: "\F7EC";
}

.fa-briefcase:before {
  content: "\F0B1";
}

.fa-briefcase-medical:before {
  content: "\F469";
}

.fa-broadcast-tower:before {
  content: "\F519";
}

.fa-broom:before {
  content: "\F51A";
}

.fa-brush:before {
  content: "\F55D";
}

.fa-btc:before {
  content: "\F15A";
}

.fa-buffer:before {
  content: "\F837";
}

.fa-bug:before {
  content: "\F188";
}

.fa-building:before {
  content: "\F1AD";
}

.fa-bullhorn:before {
  content: "\F0A1";
}

.fa-bullseye:before {
  content: "\F140";
}

.fa-burn:before {
  content: "\F46A";
}

.fa-buromobelexperte:before {
  content: "\F37F";
}

.fa-bus:before {
  content: "\F207";
}

.fa-bus-alt:before {
  content: "\F55E";
}

.fa-business-time:before {
  content: "\F64A";
}

.fa-buy-n-large:before {
  content: "\F8A6";
}

.fa-buysellads:before {
  content: "\F20D";
}

.fa-calculator:before {
  content: "\F1EC";
}

.fa-calendar:before {
  content: "\F133";
}

.fa-calendar-alt:before {
  content: "\F073";
}

.fa-calendar-check:before {
  content: "\F274";
}

.fa-calendar-day:before {
  content: "\F783";
}

.fa-calendar-minus:before {
  content: "\F272";
}

.fa-calendar-plus:before {
  content: "\F271";
}

.fa-calendar-times:before {
  content: "\F273";
}

.fa-calendar-week:before {
  content: "\F784";
}

.fa-camera:before {
  content: "\F030";
}

.fa-camera-retro:before {
  content: "\F083";
}

.fa-campground:before {
  content: "\F6BB";
}

.fa-canadian-maple-leaf:before {
  content: "\F785";
}

.fa-candy-cane:before {
  content: "\F786";
}

.fa-cannabis:before {
  content: "\F55F";
}

.fa-capsules:before {
  content: "\F46B";
}

.fa-car:before {
  content: "\F1B9";
}

.fa-car-alt:before {
  content: "\F5DE";
}

.fa-car-battery:before {
  content: "\F5DF";
}

.fa-car-crash:before {
  content: "\F5E1";
}

.fa-car-side:before {
  content: "\F5E4";
}

.fa-caravan:before {
  content: "\F8FF";
}

.fa-caret-down:before {
  content: "\F0D7";
}

.fa-caret-left:before {
  content: "\F0D9";
}

.fa-caret-right:before {
  content: "\F0DA";
}

.fa-caret-square-down:before {
  content: "\F150";
}

.fa-caret-square-left:before {
  content: "\F191";
}

.fa-caret-square-right:before {
  content: "\F152";
}

.fa-caret-square-up:before {
  content: "\F151";
}

.fa-caret-up:before {
  content: "\F0D8";
}

.fa-carrot:before {
  content: "\F787";
}

.fa-cart-arrow-down:before {
  content: "\F218";
}

.fa-cart-plus:before {
  content: "\F217";
}

.fa-cash-register:before {
  content: "\F788";
}

.fa-cat:before {
  content: "\F6BE";
}

.fa-cc-amazon-pay:before {
  content: "\F42D";
}

.fa-cc-amex:before {
  content: "\F1F3";
}

.fa-cc-apple-pay:before {
  content: "\F416";
}

.fa-cc-diners-club:before {
  content: "\F24C";
}

.fa-cc-discover:before {
  content: "\F1F2";
}

.fa-cc-jcb:before {
  content: "\F24B";
}

.fa-cc-mastercard:before {
  content: "\F1F1";
}

.fa-cc-paypal:before {
  content: "\F1F4";
}

.fa-cc-stripe:before {
  content: "\F1F5";
}

.fa-cc-visa:before {
  content: "\F1F0";
}

.fa-centercode:before {
  content: "\F380";
}

.fa-centos:before {
  content: "\F789";
}

.fa-certificate:before {
  content: "\F0A3";
}

.fa-chair:before {
  content: "\F6C0";
}

.fa-chalkboard:before {
  content: "\F51B";
}

.fa-chalkboard-teacher:before {
  content: "\F51C";
}

.fa-charging-station:before {
  content: "\F5E7";
}

.fa-chart-area:before {
  content: "\F1FE";
}

.fa-chart-bar:before {
  content: "\F080";
}

.fa-chart-line:before {
  content: "\F201";
}

.fa-chart-pie:before {
  content: "\F200";
}

.fa-check:before {
  content: "\F00C";
}

.fa-check-circle:before {
  content: "\F058";
}

.fa-check-double:before {
  content: "\F560";
}

.fa-check-square:before {
  content: "\F14A";
}

.fa-cheese:before {
  content: "\F7EF";
}

.fa-chess:before {
  content: "\F439";
}

.fa-chess-bishop:before {
  content: "\F43A";
}

.fa-chess-board:before {
  content: "\F43C";
}

.fa-chess-king:before {
  content: "\F43F";
}

.fa-chess-knight:before {
  content: "\F441";
}

.fa-chess-pawn:before {
  content: "\F443";
}

.fa-chess-queen:before {
  content: "\F445";
}

.fa-chess-rook:before {
  content: "\F447";
}

.fa-chevron-circle-down:before {
  content: "\F13A";
}

.fa-chevron-circle-left:before {
  content: "\F137";
}

.fa-chevron-circle-right:before {
  content: "\F138";
}

.fa-chevron-circle-up:before {
  content: "\F139";
}

.fa-chevron-down:before {
  content: "\F078";
}

.fa-chevron-left:before {
  content: "\F053";
}

.fa-chevron-right:before {
  content: "\F054";
}

.fa-chevron-up:before {
  content: "\F077";
}

.fa-child:before {
  content: "\F1AE";
}

.fa-chrome:before {
  content: "\F268";
}

.fa-chromecast:before {
  content: "\F838";
}

.fa-church:before {
  content: "\F51D";
}

.fa-circle:before {
  content: "\F111";
}

.fa-circle-notch:before {
  content: "\F1CE";
}

.fa-city:before {
  content: "\F64F";
}

.fa-clinic-medical:before {
  content: "\F7F2";
}

.fa-clipboard:before {
  content: "\F328";
}

.fa-clipboard-check:before {
  content: "\F46C";
}

.fa-clipboard-list:before {
  content: "\F46D";
}

.fa-clock:before {
  content: "\F017";
}

.fa-clone:before {
  content: "\F24D";
}

.fa-closed-captioning:before {
  content: "\F20A";
}

.fa-cloud:before {
  content: "\F0C2";
}

.fa-cloud-download-alt:before {
  content: "\F381";
}

.fa-cloud-meatball:before {
  content: "\F73B";
}

.fa-cloud-moon:before {
  content: "\F6C3";
}

.fa-cloud-moon-rain:before {
  content: "\F73C";
}

.fa-cloud-rain:before {
  content: "\F73D";
}

.fa-cloud-showers-heavy:before {
  content: "\F740";
}

.fa-cloud-sun:before {
  content: "\F6C4";
}

.fa-cloud-sun-rain:before {
  content: "\F743";
}

.fa-cloud-upload-alt:before {
  content: "\F382";
}

.fa-cloudscale:before {
  content: "\F383";
}

.fa-cloudsmith:before {
  content: "\F384";
}

.fa-cloudversify:before {
  content: "\F385";
}

.fa-cocktail:before {
  content: "\F561";
}

.fa-code:before {
  content: "\F121";
}

.fa-code-branch:before {
  content: "\F126";
}

.fa-codepen:before {
  content: "\F1CB";
}

.fa-codiepie:before {
  content: "\F284";
}

.fa-coffee:before {
  content: "\F0F4";
}

.fa-cog:before {
  content: "\F013";
}

.fa-cogs:before {
  content: "\F085";
}

.fa-coins:before {
  content: "\F51E";
}

.fa-columns:before {
  content: "\F0DB";
}

.fa-comment:before {
  content: "\F075";
}

.fa-comment-alt:before {
  content: "\F27A";
}

.fa-comment-dollar:before {
  content: "\F651";
}

.fa-comment-dots:before {
  content: "\F4AD";
}

.fa-comment-medical:before {
  content: "\F7F5";
}

.fa-comment-slash:before {
  content: "\F4B3";
}

.fa-comments:before {
  content: "\F086";
}

.fa-comments-dollar:before {
  content: "\F653";
}

.fa-compact-disc:before {
  content: "\F51F";
}

.fa-compass:before {
  content: "\F14E";
}

.fa-compress:before {
  content: "\F066";
}

.fa-compress-alt:before {
  content: "\F422";
}

.fa-compress-arrows-alt:before {
  content: "\F78C";
}

.fa-concierge-bell:before {
  content: "\F562";
}

.fa-confluence:before {
  content: "\F78D";
}

.fa-connectdevelop:before {
  content: "\F20E";
}

.fa-contao:before {
  content: "\F26D";
}

.fa-cookie:before {
  content: "\F563";
}

.fa-cookie-bite:before {
  content: "\F564";
}

.fa-copy:before {
  content: "\F0C5";
}

.fa-copyright:before {
  content: "\F1F9";
}

.fa-cotton-bureau:before {
  content: "\F89E";
}

.fa-couch:before {
  content: "\F4B8";
}

.fa-cpanel:before {
  content: "\F388";
}

.fa-creative-commons:before {
  content: "\F25E";
}

.fa-creative-commons-by:before {
  content: "\F4E7";
}

.fa-creative-commons-nc:before {
  content: "\F4E8";
}

.fa-creative-commons-nc-eu:before {
  content: "\F4E9";
}

.fa-creative-commons-nc-jp:before {
  content: "\F4EA";
}

.fa-creative-commons-nd:before {
  content: "\F4EB";
}

.fa-creative-commons-pd:before {
  content: "\F4EC";
}

.fa-creative-commons-pd-alt:before {
  content: "\F4ED";
}

.fa-creative-commons-remix:before {
  content: "\F4EE";
}

.fa-creative-commons-sa:before {
  content: "\F4EF";
}

.fa-creative-commons-sampling:before {
  content: "\F4F0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\F4F1";
}

.fa-creative-commons-share:before {
  content: "\F4F2";
}

.fa-creative-commons-zero:before {
  content: "\F4F3";
}

.fa-credit-card:before {
  content: "\F09D";
}

.fa-critical-role:before {
  content: "\F6C9";
}

.fa-crop:before {
  content: "\F125";
}

.fa-crop-alt:before {
  content: "\F565";
}

.fa-cross:before {
  content: "\F654";
}

.fa-crosshairs:before {
  content: "\F05B";
}

.fa-crow:before {
  content: "\F520";
}

.fa-crown:before {
  content: "\F521";
}

.fa-crutch:before {
  content: "\F7F7";
}

.fa-css3:before {
  content: "\F13C";
}

.fa-css3-alt:before {
  content: "\F38B";
}

.fa-cube:before {
  content: "\F1B2";
}

.fa-cubes:before {
  content: "\F1B3";
}

.fa-cut:before {
  content: "\F0C4";
}

.fa-cuttlefish:before {
  content: "\F38C";
}

.fa-d-and-d:before {
  content: "\F38D";
}

.fa-d-and-d-beyond:before {
  content: "\F6CA";
}

.fa-dashcube:before {
  content: "\F210";
}

.fa-database:before {
  content: "\F1C0";
}

.fa-deaf:before {
  content: "\F2A4";
}

.fa-delicious:before {
  content: "\F1A5";
}

.fa-democrat:before {
  content: "\F747";
}

.fa-deploydog:before {
  content: "\F38E";
}

.fa-deskpro:before {
  content: "\F38F";
}

.fa-desktop:before {
  content: "\F108";
}

.fa-dev:before {
  content: "\F6CC";
}

.fa-deviantart:before {
  content: "\F1BD";
}

.fa-dharmachakra:before {
  content: "\F655";
}

.fa-dhl:before {
  content: "\F790";
}

.fa-diagnoses:before {
  content: "\F470";
}

.fa-diaspora:before {
  content: "\F791";
}

.fa-dice:before {
  content: "\F522";
}

.fa-dice-d20:before {
  content: "\F6CF";
}

.fa-dice-d6:before {
  content: "\F6D1";
}

.fa-dice-five:before {
  content: "\F523";
}

.fa-dice-four:before {
  content: "\F524";
}

.fa-dice-one:before {
  content: "\F525";
}

.fa-dice-six:before {
  content: "\F526";
}

.fa-dice-three:before {
  content: "\F527";
}

.fa-dice-two:before {
  content: "\F528";
}

.fa-digg:before {
  content: "\F1A6";
}

.fa-digital-ocean:before {
  content: "\F391";
}

.fa-digital-tachograph:before {
  content: "\F566";
}

.fa-directions:before {
  content: "\F5EB";
}

.fa-discord:before {
  content: "\F392";
}

.fa-discourse:before {
  content: "\F393";
}

.fa-divide:before {
  content: "\F529";
}

.fa-dizzy:before {
  content: "\F567";
}

.fa-dna:before {
  content: "\F471";
}

.fa-dochub:before {
  content: "\F394";
}

.fa-docker:before {
  content: "\F395";
}

.fa-dog:before {
  content: "\F6D3";
}

.fa-dollar-sign:before {
  content: "\F155";
}

.fa-dolly:before {
  content: "\F472";
}

.fa-dolly-flatbed:before {
  content: "\F474";
}

.fa-donate:before {
  content: "\F4B9";
}

.fa-door-closed:before {
  content: "\F52A";
}

.fa-door-open:before {
  content: "\F52B";
}

.fa-dot-circle:before {
  content: "\F192";
}

.fa-dove:before {
  content: "\F4BA";
}

.fa-download:before {
  content: "\F019";
}

.fa-draft2digital:before {
  content: "\F396";
}

.fa-drafting-compass:before {
  content: "\F568";
}

.fa-dragon:before {
  content: "\F6D5";
}

.fa-draw-polygon:before {
  content: "\F5EE";
}

.fa-dribbble:before {
  content: "\F17D";
}

.fa-dribbble-square:before {
  content: "\F397";
}

.fa-dropbox:before {
  content: "\F16B";
}

.fa-drum:before {
  content: "\F569";
}

.fa-drum-steelpan:before {
  content: "\F56A";
}

.fa-drumstick-bite:before {
  content: "\F6D7";
}

.fa-drupal:before {
  content: "\F1A9";
}

.fa-dumbbell:before {
  content: "\F44B";
}

.fa-dumpster:before {
  content: "\F793";
}

.fa-dumpster-fire:before {
  content: "\F794";
}

.fa-dungeon:before {
  content: "\F6D9";
}

.fa-dyalog:before {
  content: "\F399";
}

.fa-earlybirds:before {
  content: "\F39A";
}

.fa-ebay:before {
  content: "\F4F4";
}

.fa-edge:before {
  content: "\F282";
}

.fa-edit:before {
  content: "\F044";
}

.fa-egg:before {
  content: "\F7FB";
}

.fa-eject:before {
  content: "\F052";
}

.fa-elementor:before {
  content: "\F430";
}

.fa-ellipsis-h:before {
  content: "\F141";
}

.fa-ellipsis-v:before {
  content: "\F142";
}

.fa-ello:before {
  content: "\F5F1";
}

.fa-ember:before {
  content: "\F423";
}

.fa-empire:before {
  content: "\F1D1";
}

.fa-envelope:before {
  content: "\F0E0";
}

.fa-envelope-open:before {
  content: "\F2B6";
}

.fa-envelope-open-text:before {
  content: "\F658";
}

.fa-envelope-square:before {
  content: "\F199";
}

.fa-envira:before {
  content: "\F299";
}

.fa-equals:before {
  content: "\F52C";
}

.fa-eraser:before {
  content: "\F12D";
}

.fa-erlang:before {
  content: "\F39D";
}

.fa-ethereum:before {
  content: "\F42E";
}

.fa-ethernet:before {
  content: "\F796";
}

.fa-etsy:before {
  content: "\F2D7";
}

.fa-euro-sign:before {
  content: "\F153";
}

.fa-evernote:before {
  content: "\F839";
}

.fa-exchange-alt:before {
  content: "\F362";
}

.fa-exclamation:before {
  content: "\F12A";
}

.fa-exclamation-circle:before {
  content: "\F06A";
}

.fa-exclamation-triangle:before {
  content: "\F071";
}

.fa-expand:before {
  content: "\F065";
}

.fa-expand-alt:before {
  content: "\F424";
}

.fa-expand-arrows-alt:before {
  content: "\F31E";
}

.fa-expeditedssl:before {
  content: "\F23E";
}

.fa-external-link-alt:before {
  content: "\F35D";
}

.fa-external-link-square-alt:before {
  content: "\F360";
}

.fa-eye:before {
  content: "\F06E";
}

.fa-eye-dropper:before {
  content: "\F1FB";
}

.fa-eye-slash:before {
  content: "\F070";
}

.fa-facebook:before {
  content: "\F09A";
}

.fa-facebook-f:before {
  content: "\F39E";
}

.fa-facebook-messenger:before {
  content: "\F39F";
}

.fa-facebook-square:before {
  content: "\F082";
}

.fa-fan:before {
  content: "\F863";
}

.fa-fantasy-flight-games:before {
  content: "\F6DC";
}

.fa-fast-backward:before {
  content: "\F049";
}

.fa-fast-forward:before {
  content: "\F050";
}

.fa-fax:before {
  content: "\F1AC";
}

.fa-feather:before {
  content: "\F52D";
}

.fa-feather-alt:before {
  content: "\F56B";
}

.fa-fedex:before {
  content: "\F797";
}

.fa-fedora:before {
  content: "\F798";
}

.fa-female:before {
  content: "\F182";
}

.fa-fighter-jet:before {
  content: "\F0FB";
}

.fa-figma:before {
  content: "\F799";
}

.fa-file:before {
  content: "\F15B";
}

.fa-file-alt:before {
  content: "\F15C";
}

.fa-file-archive:before {
  content: "\F1C6";
}

.fa-file-audio:before {
  content: "\F1C7";
}

.fa-file-code:before {
  content: "\F1C9";
}

.fa-file-contract:before {
  content: "\F56C";
}

.fa-file-csv:before {
  content: "\F6DD";
}

.fa-file-download:before {
  content: "\F56D";
}

.fa-file-excel:before {
  content: "\F1C3";
}

.fa-file-export:before {
  content: "\F56E";
}

.fa-file-image:before {
  content: "\F1C5";
}

.fa-file-import:before {
  content: "\F56F";
}

.fa-file-invoice:before {
  content: "\F570";
}

.fa-file-invoice-dollar:before {
  content: "\F571";
}

.fa-file-medical:before {
  content: "\F477";
}

.fa-file-medical-alt:before {
  content: "\F478";
}

.fa-file-pdf:before {
  content: "\F1C1";
}

.fa-file-powerpoint:before {
  content: "\F1C4";
}

.fa-file-prescription:before {
  content: "\F572";
}

.fa-file-signature:before {
  content: "\F573";
}

.fa-file-upload:before {
  content: "\F574";
}

.fa-file-video:before {
  content: "\F1C8";
}

.fa-file-word:before {
  content: "\F1C2";
}

.fa-fill:before {
  content: "\F575";
}

.fa-fill-drip:before {
  content: "\F576";
}

.fa-film:before {
  content: "\F008";
}

.fa-filter:before {
  content: "\F0B0";
}

.fa-fingerprint:before {
  content: "\F577";
}

.fa-fire:before {
  content: "\F06D";
}

.fa-fire-alt:before {
  content: "\F7E4";
}

.fa-fire-extinguisher:before {
  content: "\F134";
}

.fa-firefox:before {
  content: "\F269";
}

.fa-firefox-browser:before {
  content: "\F907";
}

.fa-first-aid:before {
  content: "\F479";
}

.fa-first-order:before {
  content: "\F2B0";
}

.fa-first-order-alt:before {
  content: "\F50A";
}

.fa-firstdraft:before {
  content: "\F3A1";
}

.fa-fish:before {
  content: "\F578";
}

.fa-fist-raised:before {
  content: "\F6DE";
}

.fa-flag:before {
  content: "\F024";
}

.fa-flag-checkered:before {
  content: "\F11E";
}

.fa-flag-usa:before {
  content: "\F74D";
}

.fa-flask:before {
  content: "\F0C3";
}

.fa-flickr:before {
  content: "\F16E";
}

.fa-flipboard:before {
  content: "\F44D";
}

.fa-flushed:before {
  content: "\F579";
}

.fa-fly:before {
  content: "\F417";
}

.fa-folder:before {
  content: "\F07B";
}

.fa-folder-minus:before {
  content: "\F65D";
}

.fa-folder-open:before {
  content: "\F07C";
}

.fa-folder-plus:before {
  content: "\F65E";
}

.fa-font:before {
  content: "\F031";
}

.fa-font-awesome:before {
  content: "\F2B4";
}

.fa-font-awesome-alt:before {
  content: "\F35C";
}

.fa-font-awesome-flag:before {
  content: "\F425";
}

.fa-font-awesome-logo-full:before {
  content: "\F4E6";
}

.fa-fonticons:before {
  content: "\F280";
}

.fa-fonticons-fi:before {
  content: "\F3A2";
}

.fa-football-ball:before {
  content: "\F44E";
}

.fa-fort-awesome:before {
  content: "\F286";
}

.fa-fort-awesome-alt:before {
  content: "\F3A3";
}

.fa-forumbee:before {
  content: "\F211";
}

.fa-forward:before {
  content: "\F04E";
}

.fa-foursquare:before {
  content: "\F180";
}

.fa-free-code-camp:before {
  content: "\F2C5";
}

.fa-freebsd:before {
  content: "\F3A4";
}

.fa-frog:before {
  content: "\F52E";
}

.fa-frown:before {
  content: "\F119";
}

.fa-frown-open:before {
  content: "\F57A";
}

.fa-fulcrum:before {
  content: "\F50B";
}

.fa-funnel-dollar:before {
  content: "\F662";
}

.fa-futbol:before {
  content: "\F1E3";
}

.fa-galactic-republic:before {
  content: "\F50C";
}

.fa-galactic-senate:before {
  content: "\F50D";
}

.fa-gamepad:before {
  content: "\F11B";
}

.fa-gas-pump:before {
  content: "\F52F";
}

.fa-gavel:before {
  content: "\F0E3";
}

.fa-gem:before {
  content: "\F3A5";
}

.fa-genderless:before {
  content: "\F22D";
}

.fa-get-pocket:before {
  content: "\F265";
}

.fa-gg:before {
  content: "\F260";
}

.fa-gg-circle:before {
  content: "\F261";
}

.fa-ghost:before {
  content: "\F6E2";
}

.fa-gift:before {
  content: "\F06B";
}

.fa-gifts:before {
  content: "\F79C";
}

.fa-git:before {
  content: "\F1D3";
}

.fa-git-alt:before {
  content: "\F841";
}

.fa-git-square:before {
  content: "\F1D2";
}

.fa-github:before {
  content: "\F09B";
}

.fa-github-alt:before {
  content: "\F113";
}

.fa-github-square:before {
  content: "\F092";
}

.fa-gitkraken:before {
  content: "\F3A6";
}

.fa-gitlab:before {
  content: "\F296";
}

.fa-gitter:before {
  content: "\F426";
}

.fa-glass-cheers:before {
  content: "\F79F";
}

.fa-glass-martini:before {
  content: "\F000";
}

.fa-glass-martini-alt:before {
  content: "\F57B";
}

.fa-glass-whiskey:before {
  content: "\F7A0";
}

.fa-glasses:before {
  content: "\F530";
}

.fa-glide:before {
  content: "\F2A5";
}

.fa-glide-g:before {
  content: "\F2A6";
}

.fa-globe:before {
  content: "\F0AC";
}

.fa-globe-africa:before {
  content: "\F57C";
}

.fa-globe-americas:before {
  content: "\F57D";
}

.fa-globe-asia:before {
  content: "\F57E";
}

.fa-globe-europe:before {
  content: "\F7A2";
}

.fa-gofore:before {
  content: "\F3A7";
}

.fa-golf-ball:before {
  content: "\F450";
}

.fa-goodreads:before {
  content: "\F3A8";
}

.fa-goodreads-g:before {
  content: "\F3A9";
}

.fa-google:before {
  content: "\F1A0";
}

.fa-google-drive:before {
  content: "\F3AA";
}

.fa-google-play:before {
  content: "\F3AB";
}

.fa-google-plus:before {
  content: "\F2B3";
}

.fa-google-plus-g:before {
  content: "\F0D5";
}

.fa-google-plus-square:before {
  content: "\F0D4";
}

.fa-google-wallet:before {
  content: "\F1EE";
}

.fa-gopuram:before {
  content: "\F664";
}

.fa-graduation-cap:before {
  content: "\F19D";
}

.fa-gratipay:before {
  content: "\F184";
}

.fa-grav:before {
  content: "\F2D6";
}

.fa-greater-than:before {
  content: "\F531";
}

.fa-greater-than-equal:before {
  content: "\F532";
}

.fa-grimace:before {
  content: "\F57F";
}

.fa-grin:before {
  content: "\F580";
}

.fa-grin-alt:before {
  content: "\F581";
}

.fa-grin-beam:before {
  content: "\F582";
}

.fa-grin-beam-sweat:before {
  content: "\F583";
}

.fa-grin-hearts:before {
  content: "\F584";
}

.fa-grin-squint:before {
  content: "\F585";
}

.fa-grin-squint-tears:before {
  content: "\F586";
}

.fa-grin-stars:before {
  content: "\F587";
}

.fa-grin-tears:before {
  content: "\F588";
}

.fa-grin-tongue:before {
  content: "\F589";
}

.fa-grin-tongue-squint:before {
  content: "\F58A";
}

.fa-grin-tongue-wink:before {
  content: "\F58B";
}

.fa-grin-wink:before {
  content: "\F58C";
}

.fa-grip-horizontal:before {
  content: "\F58D";
}

.fa-grip-lines:before {
  content: "\F7A4";
}

.fa-grip-lines-vertical:before {
  content: "\F7A5";
}

.fa-grip-vertical:before {
  content: "\F58E";
}

.fa-gripfire:before {
  content: "\F3AC";
}

.fa-grunt:before {
  content: "\F3AD";
}

.fa-guitar:before {
  content: "\F7A6";
}

.fa-gulp:before {
  content: "\F3AE";
}

.fa-h-square:before {
  content: "\F0FD";
}

.fa-hacker-news:before {
  content: "\F1D4";
}

.fa-hacker-news-square:before {
  content: "\F3AF";
}

.fa-hackerrank:before {
  content: "\F5F7";
}

.fa-hamburger:before {
  content: "\F805";
}

.fa-hammer:before {
  content: "\F6E3";
}

.fa-hamsa:before {
  content: "\F665";
}

.fa-hand-holding:before {
  content: "\F4BD";
}

.fa-hand-holding-heart:before {
  content: "\F4BE";
}

.fa-hand-holding-usd:before {
  content: "\F4C0";
}

.fa-hand-lizard:before {
  content: "\F258";
}

.fa-hand-middle-finger:before {
  content: "\F806";
}

.fa-hand-paper:before {
  content: "\F256";
}

.fa-hand-peace:before {
  content: "\F25B";
}

.fa-hand-point-down:before {
  content: "\F0A7";
}

.fa-hand-point-left:before {
  content: "\F0A5";
}

.fa-hand-point-right:before {
  content: "\F0A4";
}

.fa-hand-point-up:before {
  content: "\F0A6";
}

.fa-hand-pointer:before {
  content: "\F25A";
}

.fa-hand-rock:before {
  content: "\F255";
}

.fa-hand-scissors:before {
  content: "\F257";
}

.fa-hand-spock:before {
  content: "\F259";
}

.fa-hands:before {
  content: "\F4C2";
}

.fa-hands-helping:before {
  content: "\F4C4";
}

.fa-handshake:before {
  content: "\F2B5";
}

.fa-hanukiah:before {
  content: "\F6E6";
}

.fa-hard-hat:before {
  content: "\F807";
}

.fa-hashtag:before {
  content: "\F292";
}

.fa-hat-cowboy:before {
  content: "\F8C0";
}

.fa-hat-cowboy-side:before {
  content: "\F8C1";
}

.fa-hat-wizard:before {
  content: "\F6E8";
}

.fa-hdd:before {
  content: "\F0A0";
}

.fa-heading:before {
  content: "\F1DC";
}

.fa-headphones:before {
  content: "\F025";
}

.fa-headphones-alt:before {
  content: "\F58F";
}

.fa-headset:before {
  content: "\F590";
}

.fa-heart:before {
  content: "\F004";
}

.fa-heart-broken:before {
  content: "\F7A9";
}

.fa-heartbeat:before {
  content: "\F21E";
}

.fa-helicopter:before {
  content: "\F533";
}

.fa-highlighter:before {
  content: "\F591";
}

.fa-hiking:before {
  content: "\F6EC";
}

.fa-hippo:before {
  content: "\F6ED";
}

.fa-hips:before {
  content: "\F452";
}

.fa-hire-a-helper:before {
  content: "\F3B0";
}

.fa-history:before {
  content: "\F1DA";
}

.fa-hockey-puck:before {
  content: "\F453";
}

.fa-holly-berry:before {
  content: "\F7AA";
}

.fa-home:before {
  content: "\F015";
}

.fa-hooli:before {
  content: "\F427";
}

.fa-hornbill:before {
  content: "\F592";
}

.fa-horse:before {
  content: "\F6F0";
}

.fa-horse-head:before {
  content: "\F7AB";
}

.fa-hospital:before {
  content: "\F0F8";
}

.fa-hospital-alt:before {
  content: "\F47D";
}

.fa-hospital-symbol:before {
  content: "\F47E";
}

.fa-hot-tub:before {
  content: "\F593";
}

.fa-hotdog:before {
  content: "\F80F";
}

.fa-hotel:before {
  content: "\F594";
}

.fa-hotjar:before {
  content: "\F3B1";
}

.fa-hourglass:before {
  content: "\F254";
}

.fa-hourglass-end:before {
  content: "\F253";
}

.fa-hourglass-half:before {
  content: "\F252";
}

.fa-hourglass-start:before {
  content: "\F251";
}

.fa-house-damage:before {
  content: "\F6F1";
}

.fa-houzz:before {
  content: "\F27C";
}

.fa-hryvnia:before {
  content: "\F6F2";
}

.fa-html5:before {
  content: "\F13B";
}

.fa-hubspot:before {
  content: "\F3B2";
}

.fa-i-cursor:before {
  content: "\F246";
}

.fa-ice-cream:before {
  content: "\F810";
}

.fa-icicles:before {
  content: "\F7AD";
}

.fa-icons:before {
  content: "\F86D";
}

.fa-id-badge:before {
  content: "\F2C1";
}

.fa-id-card:before {
  content: "\F2C2";
}

.fa-id-card-alt:before {
  content: "\F47F";
}

.fa-ideal:before {
  content: "\F913";
}

.fa-igloo:before {
  content: "\F7AE";
}

.fa-image:before {
  content: "\F03E";
}

.fa-images:before {
  content: "\F302";
}

.fa-imdb:before {
  content: "\F2D8";
}

.fa-inbox:before {
  content: "\F01C";
}

.fa-indent:before {
  content: "\F03C";
}

.fa-industry:before {
  content: "\F275";
}

.fa-infinity:before {
  content: "\F534";
}

.fa-info:before {
  content: "\F129";
}

.fa-info-circle:before {
  content: "\F05A";
}

.fa-instagram:before {
  content: "\F16D";
}

.fa-intercom:before {
  content: "\F7AF";
}

.fa-internet-explorer:before {
  content: "\F26B";
}

.fa-invision:before {
  content: "\F7B0";
}

.fa-ioxhost:before {
  content: "\F208";
}

.fa-italic:before {
  content: "\F033";
}

.fa-itch-io:before {
  content: "\F83A";
}

.fa-itunes:before {
  content: "\F3B4";
}

.fa-itunes-note:before {
  content: "\F3B5";
}

.fa-java:before {
  content: "\F4E4";
}

.fa-jedi:before {
  content: "\F669";
}

.fa-jedi-order:before {
  content: "\F50E";
}

.fa-jenkins:before {
  content: "\F3B6";
}

.fa-jira:before {
  content: "\F7B1";
}

.fa-joget:before {
  content: "\F3B7";
}

.fa-joint:before {
  content: "\F595";
}

.fa-joomla:before {
  content: "\F1AA";
}

.fa-journal-whills:before {
  content: "\F66A";
}

.fa-js:before {
  content: "\F3B8";
}

.fa-js-square:before {
  content: "\F3B9";
}

.fa-jsfiddle:before {
  content: "\F1CC";
}

.fa-kaaba:before {
  content: "\F66B";
}

.fa-kaggle:before {
  content: "\F5FA";
}

.fa-key:before {
  content: "\F084";
}

.fa-keybase:before {
  content: "\F4F5";
}

.fa-keyboard:before {
  content: "\F11C";
}

.fa-keycdn:before {
  content: "\F3BA";
}

.fa-khanda:before {
  content: "\F66D";
}

.fa-kickstarter:before {
  content: "\F3BB";
}

.fa-kickstarter-k:before {
  content: "\F3BC";
}

.fa-kiss:before {
  content: "\F596";
}

.fa-kiss-beam:before {
  content: "\F597";
}

.fa-kiss-wink-heart:before {
  content: "\F598";
}

.fa-kiwi-bird:before {
  content: "\F535";
}

.fa-korvue:before {
  content: "\F42F";
}

.fa-landmark:before {
  content: "\F66F";
}

.fa-language:before {
  content: "\F1AB";
}

.fa-laptop:before {
  content: "\F109";
}

.fa-laptop-code:before {
  content: "\F5FC";
}

.fa-laptop-medical:before {
  content: "\F812";
}

.fa-laravel:before {
  content: "\F3BD";
}

.fa-lastfm:before {
  content: "\F202";
}

.fa-lastfm-square:before {
  content: "\F203";
}

.fa-laugh:before {
  content: "\F599";
}

.fa-laugh-beam:before {
  content: "\F59A";
}

.fa-laugh-squint:before {
  content: "\F59B";
}

.fa-laugh-wink:before {
  content: "\F59C";
}

.fa-layer-group:before {
  content: "\F5FD";
}

.fa-leaf:before {
  content: "\F06C";
}

.fa-leanpub:before {
  content: "\F212";
}

.fa-lemon:before {
  content: "\F094";
}

.fa-less:before {
  content: "\F41D";
}

.fa-less-than:before {
  content: "\F536";
}

.fa-less-than-equal:before {
  content: "\F537";
}

.fa-level-down-alt:before {
  content: "\F3BE";
}

.fa-level-up-alt:before {
  content: "\F3BF";
}

.fa-life-ring:before {
  content: "\F1CD";
}

.fa-lightbulb:before {
  content: "\F0EB";
}

.fa-line:before {
  content: "\F3C0";
}

.fa-link:before {
  content: "\F0C1";
}

.fa-linkedin:before {
  content: "\F08C";
}

.fa-linkedin-in:before {
  content: "\F0E1";
}

.fa-linode:before {
  content: "\F2B8";
}

.fa-linux:before {
  content: "\F17C";
}

.fa-lira-sign:before {
  content: "\F195";
}

.fa-list:before {
  content: "\F03A";
}

.fa-list-alt:before {
  content: "\F022";
}

.fa-list-ol:before {
  content: "\F0CB";
}

.fa-list-ul:before {
  content: "\F0CA";
}

.fa-location-arrow:before {
  content: "\F124";
}

.fa-lock:before {
  content: "\F023";
}

.fa-lock-open:before {
  content: "\F3C1";
}

.fa-long-arrow-alt-down:before {
  content: "\F309";
}

.fa-long-arrow-alt-left:before {
  content: "\F30A";
}

.fa-long-arrow-alt-right:before {
  content: "\F30B";
}

.fa-long-arrow-alt-up:before {
  content: "\F30C";
}

.fa-low-vision:before {
  content: "\F2A8";
}

.fa-luggage-cart:before {
  content: "\F59D";
}

.fa-lyft:before {
  content: "\F3C3";
}

.fa-magento:before {
  content: "\F3C4";
}

.fa-magic:before {
  content: "\F0D0";
}

.fa-magnet:before {
  content: "\F076";
}

.fa-mail-bulk:before {
  content: "\F674";
}

.fa-mailchimp:before {
  content: "\F59E";
}

.fa-male:before {
  content: "\F183";
}

.fa-mandalorian:before {
  content: "\F50F";
}

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

.fa-map-marked:before {
  content: "\F59F";
}

.fa-map-marked-alt:before {
  content: "\F5A0";
}

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

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

.fa-map-pin:before {
  content: "\F276";
}

.fa-map-signs:before {
  content: "\F277";
}

.fa-markdown:before {
  content: "\F60F";
}

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

.fa-mars:before {
  content: "\F222";
}

.fa-mars-double:before {
  content: "\F227";
}

.fa-mars-stroke:before {
  content: "\F229";
}

.fa-mars-stroke-h:before {
  content: "\F22B";
}

.fa-mars-stroke-v:before {
  content: "\F22A";
}

.fa-mask:before {
  content: "\F6FA";
}

.fa-mastodon:before {
  content: "\F4F6";
}

.fa-maxcdn:before {
  content: "\F136";
}

.fa-mdb:before {
  content: "\F8CA";
}

.fa-medal:before {
  content: "\F5A2";
}

.fa-medapps:before {
  content: "\F3C6";
}

.fa-medium:before {
  content: "\F23A";
}

.fa-medium-m:before {
  content: "\F3C7";
}

.fa-medkit:before {
  content: "\F0FA";
}

.fa-medrt:before {
  content: "\F3C8";
}

.fa-meetup:before {
  content: "\F2E0";
}

.fa-megaport:before {
  content: "\F5A3";
}

.fa-meh:before {
  content: "\F11A";
}

.fa-meh-blank:before {
  content: "\F5A4";
}

.fa-meh-rolling-eyes:before {
  content: "\F5A5";
}

.fa-memory:before {
  content: "\F538";
}

.fa-mendeley:before {
  content: "\F7B3";
}

.fa-menorah:before {
  content: "\F676";
}

.fa-mercury:before {
  content: "\F223";
}

.fa-meteor:before {
  content: "\F753";
}

.fa-microblog:before {
  content: "\F91A";
}

.fa-microchip:before {
  content: "\F2DB";
}

.fa-microphone:before {
  content: "\F130";
}

.fa-microphone-alt:before {
  content: "\F3C9";
}

.fa-microphone-alt-slash:before {
  content: "\F539";
}

.fa-microphone-slash:before {
  content: "\F131";
}

.fa-microscope:before {
  content: "\F610";
}

.fa-microsoft:before {
  content: "\F3CA";
}

.fa-minus:before {
  content: "\F068";
}

.fa-minus-circle:before {
  content: "\F056";
}

.fa-minus-square:before {
  content: "\F146";
}

.fa-mitten:before {
  content: "\F7B5";
}

.fa-mix:before {
  content: "\F3CB";
}

.fa-mixcloud:before {
  content: "\F289";
}

.fa-mizuni:before {
  content: "\F3CC";
}

.fa-mobile:before {
  content: "\F10B";
}

.fa-mobile-alt:before {
  content: "\F3CD";
}

.fa-modx:before {
  content: "\F285";
}

.fa-monero:before {
  content: "\F3D0";
}

.fa-money-bill:before {
  content: "\F0D6";
}

.fa-money-bill-alt:before {
  content: "\F3D1";
}

.fa-money-bill-wave:before {
  content: "\F53A";
}

.fa-money-bill-wave-alt:before {
  content: "\F53B";
}

.fa-money-check:before {
  content: "\F53C";
}

.fa-money-check-alt:before {
  content: "\F53D";
}

.fa-monument:before {
  content: "\F5A6";
}

.fa-moon:before {
  content: "\F186";
}

.fa-mortar-pestle:before {
  content: "\F5A7";
}

.fa-mosque:before {
  content: "\F678";
}

.fa-motorcycle:before {
  content: "\F21C";
}

.fa-mountain:before {
  content: "\F6FC";
}

.fa-mouse:before {
  content: "\F8CC";
}

.fa-mouse-pointer:before {
  content: "\F245";
}

.fa-mug-hot:before {
  content: "\F7B6";
}

.fa-music:before {
  content: "\F001";
}

.fa-napster:before {
  content: "\F3D2";
}

.fa-neos:before {
  content: "\F612";
}

.fa-network-wired:before {
  content: "\F6FF";
}

.fa-neuter:before {
  content: "\F22C";
}

.fa-newspaper:before {
  content: "\F1EA";
}

.fa-nimblr:before {
  content: "\F5A8";
}

.fa-node:before {
  content: "\F419";
}

.fa-node-js:before {
  content: "\F3D3";
}

.fa-not-equal:before {
  content: "\F53E";
}

.fa-notes-medical:before {
  content: "\F481";
}

.fa-npm:before {
  content: "\F3D4";
}

.fa-ns8:before {
  content: "\F3D5";
}

.fa-nutritionix:before {
  content: "\F3D6";
}

.fa-object-group:before {
  content: "\F247";
}

.fa-object-ungroup:before {
  content: "\F248";
}

.fa-odnoklassniki:before {
  content: "\F263";
}

.fa-odnoklassniki-square:before {
  content: "\F264";
}

.fa-oil-can:before {
  content: "\F613";
}

.fa-old-republic:before {
  content: "\F510";
}

.fa-om:before {
  content: "\F679";
}

.fa-opencart:before {
  content: "\F23D";
}

.fa-openid:before {
  content: "\F19B";
}

.fa-opera:before {
  content: "\F26A";
}

.fa-optin-monster:before {
  content: "\F23C";
}

.fa-orcid:before {
  content: "\F8D2";
}

.fa-osi:before {
  content: "\F41A";
}

.fa-otter:before {
  content: "\F700";
}

.fa-outdent:before {
  content: "\F03B";
}

.fa-page4:before {
  content: "\F3D7";
}

.fa-pagelines:before {
  content: "\F18C";
}

.fa-pager:before {
  content: "\F815";
}

.fa-paint-brush:before {
  content: "\F1FC";
}

.fa-paint-roller:before {
  content: "\F5AA";
}

.fa-palette:before {
  content: "\F53F";
}

.fa-palfed:before {
  content: "\F3D8";
}

.fa-pallet:before {
  content: "\F482";
}

.fa-paper-plane:before {
  content: "\F1D8";
}

.fa-paperclip:before {
  content: "\F0C6";
}

.fa-parachute-box:before {
  content: "\F4CD";
}

.fa-paragraph:before {
  content: "\F1DD";
}

.fa-parking:before {
  content: "\F540";
}

.fa-passport:before {
  content: "\F5AB";
}

.fa-pastafarianism:before {
  content: "\F67B";
}

.fa-paste:before {
  content: "\F0EA";
}

.fa-patreon:before {
  content: "\F3D9";
}

.fa-pause:before {
  content: "\F04C";
}

.fa-pause-circle:before {
  content: "\F28B";
}

.fa-paw:before {
  content: "\F1B0";
}

.fa-paypal:before {
  content: "\F1ED";
}

.fa-peace:before {
  content: "\F67C";
}

.fa-pen:before {
  content: "\F304";
}

.fa-pen-alt:before {
  content: "\F305";
}

.fa-pen-fancy:before {
  content: "\F5AC";
}

.fa-pen-nib:before {
  content: "\F5AD";
}

.fa-pen-square:before {
  content: "\F14B";
}

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

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

.fa-penny-arcade:before {
  content: "\F704";
}

.fa-people-carry:before {
  content: "\F4CE";
}

.fa-pepper-hot:before {
  content: "\F816";
}

.fa-percent:before {
  content: "\F295";
}

.fa-percentage:before {
  content: "\F541";
}

.fa-periscope:before {
  content: "\F3DA";
}

.fa-person-booth:before {
  content: "\F756";
}

.fa-phabricator:before {
  content: "\F3DB";
}

.fa-phoenix-framework:before {
  content: "\F3DC";
}

.fa-phoenix-squadron:before {
  content: "\F511";
}

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

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

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

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

.fa-phone-square-alt:before {
  content: "\F87B";
}

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

.fa-photo-video:before {
  content: "\F87C";
}

.fa-php:before {
  content: "\F457";
}

.fa-pied-piper:before {
  content: "\F2AE";
}

.fa-pied-piper-alt:before {
  content: "\F1A8";
}

.fa-pied-piper-hat:before {
  content: "\F4E5";
}

.fa-pied-piper-pp:before {
  content: "\F1A7";
}

.fa-pied-piper-square:before {
  content: "\F91E";
}

.fa-piggy-bank:before {
  content: "\F4D3";
}

.fa-pills:before {
  content: "\F484";
}

.fa-pinterest:before {
  content: "\F0D2";
}

.fa-pinterest-p:before {
  content: "\F231";
}

.fa-pinterest-square:before {
  content: "\F0D3";
}

.fa-pizza-slice:before {
  content: "\F818";
}

.fa-place-of-worship:before {
  content: "\F67F";
}

.fa-plane:before {
  content: "\F072";
}

.fa-plane-arrival:before {
  content: "\F5AF";
}

.fa-plane-departure:before {
  content: "\F5B0";
}

.fa-play:before {
  content: "\F04B";
}

.fa-play-circle:before {
  content: "\F144";
}

.fa-playstation:before {
  content: "\F3DF";
}

.fa-plug:before {
  content: "\F1E6";
}

.fa-plus:before {
  content: "\F067";
}

.fa-plus-circle:before {
  content: "\F055";
}

.fa-plus-square:before {
  content: "\F0FE";
}

.fa-podcast:before {
  content: "\F2CE";
}

.fa-poll:before {
  content: "\F681";
}

.fa-poll-h:before {
  content: "\F682";
}

.fa-poo:before {
  content: "\F2FE";
}

.fa-poo-storm:before {
  content: "\F75A";
}

.fa-poop:before {
  content: "\F619";
}

.fa-portrait:before {
  content: "\F3E0";
}

.fa-pound-sign:before {
  content: "\F154";
}

.fa-power-off:before {
  content: "\F011";
}

.fa-pray:before {
  content: "\F683";
}

.fa-praying-hands:before {
  content: "\F684";
}

.fa-prescription:before {
  content: "\F5B1";
}

.fa-prescription-bottle:before {
  content: "\F485";
}

.fa-prescription-bottle-alt:before {
  content: "\F486";
}

.fa-print:before {
  content: "\F02F";
}

.fa-procedures:before {
  content: "\F487";
}

.fa-product-hunt:before {
  content: "\F288";
}

.fa-project-diagram:before {
  content: "\F542";
}

.fa-pushed:before {
  content: "\F3E1";
}

.fa-puzzle-piece:before {
  content: "\F12E";
}

.fa-python:before {
  content: "\F3E2";
}

.fa-qq:before {
  content: "\F1D6";
}

.fa-qrcode:before {
  content: "\F029";
}

.fa-question:before {
  content: "\F128";
}

.fa-question-circle:before {
  content: "\F059";
}

.fa-quidditch:before {
  content: "\F458";
}

.fa-quinscape:before {
  content: "\F459";
}

.fa-quora:before {
  content: "\F2C4";
}

.fa-quote-left:before {
  content: "\F10D";
}

.fa-quote-right:before {
  content: "\F10E";
}

.fa-quran:before {
  content: "\F687";
}

.fa-r-project:before {
  content: "\F4F7";
}

.fa-radiation:before {
  content: "\F7B9";
}

.fa-radiation-alt:before {
  content: "\F7BA";
}

.fa-rainbow:before {
  content: "\F75B";
}

.fa-random:before {
  content: "\F074";
}

.fa-raspberry-pi:before {
  content: "\F7BB";
}

.fa-ravelry:before {
  content: "\F2D9";
}

.fa-react:before {
  content: "\F41B";
}

.fa-reacteurope:before {
  content: "\F75D";
}

.fa-readme:before {
  content: "\F4D5";
}

.fa-rebel:before {
  content: "\F1D0";
}

.fa-receipt:before {
  content: "\F543";
}

.fa-record-vinyl:before {
  content: "\F8D9";
}

.fa-recycle:before {
  content: "\F1B8";
}

.fa-red-river:before {
  content: "\F3E3";
}

.fa-reddit:before {
  content: "\F1A1";
}

.fa-reddit-alien:before {
  content: "\F281";
}

.fa-reddit-square:before {
  content: "\F1A2";
}

.fa-redhat:before {
  content: "\F7BC";
}

.fa-redo:before {
  content: "\F01E";
}

.fa-redo-alt:before {
  content: "\F2F9";
}

.fa-registered:before {
  content: "\F25D";
}

.fa-remove-format:before {
  content: "\F87D";
}

.fa-renren:before {
  content: "\F18B";
}

.fa-reply:before {
  content: "\F3E5";
}

.fa-reply-all:before {
  content: "\F122";
}

.fa-replyd:before {
  content: "\F3E6";
}

.fa-republican:before {
  content: "\F75E";
}

.fa-researchgate:before {
  content: "\F4F8";
}

.fa-resolving:before {
  content: "\F3E7";
}

.fa-restroom:before {
  content: "\F7BD";
}

.fa-retweet:before {
  content: "\F079";
}

.fa-rev:before {
  content: "\F5B2";
}

.fa-ribbon:before {
  content: "\F4D6";
}

.fa-ring:before {
  content: "\F70B";
}

.fa-road:before {
  content: "\F018";
}

.fa-robot:before {
  content: "\F544";
}

.fa-rocket:before {
  content: "\F135";
}

.fa-rocketchat:before {
  content: "\F3E8";
}

.fa-rockrms:before {
  content: "\F3E9";
}

.fa-route:before {
  content: "\F4D7";
}

.fa-rss:before {
  content: "\F09E";
}

.fa-rss-square:before {
  content: "\F143";
}

.fa-ruble-sign:before {
  content: "\F158";
}

.fa-ruler:before {
  content: "\F545";
}

.fa-ruler-combined:before {
  content: "\F546";
}

.fa-ruler-horizontal:before {
  content: "\F547";
}

.fa-ruler-vertical:before {
  content: "\F548";
}

.fa-running:before {
  content: "\F70C";
}

.fa-rupee-sign:before {
  content: "\F156";
}

.fa-sad-cry:before {
  content: "\F5B3";
}

.fa-sad-tear:before {
  content: "\F5B4";
}

.fa-safari:before {
  content: "\F267";
}

.fa-salesforce:before {
  content: "\F83B";
}

.fa-sass:before {
  content: "\F41E";
}

.fa-satellite:before {
  content: "\F7BF";
}

.fa-satellite-dish:before {
  content: "\F7C0";
}

.fa-save:before {
  content: "\F0C7";
}

.fa-schlix:before {
  content: "\F3EA";
}

.fa-school:before {
  content: "\F549";
}

.fa-screwdriver:before {
  content: "\F54A";
}

.fa-scribd:before {
  content: "\F28A";
}

.fa-scroll:before {
  content: "\F70E";
}

.fa-sd-card:before {
  content: "\F7C2";
}

.fa-search:before {
  content: "\F002";
}

.fa-search-dollar:before {
  content: "\F688";
}

.fa-search-location:before {
  content: "\F689";
}

.fa-search-minus:before {
  content: "\F010";
}

.fa-search-plus:before {
  content: "\F00E";
}

.fa-searchengin:before {
  content: "\F3EB";
}

.fa-seedling:before {
  content: "\F4D8";
}

.fa-sellcast:before {
  content: "\F2DA";
}

.fa-sellsy:before {
  content: "\F213";
}

.fa-server:before {
  content: "\F233";
}

.fa-servicestack:before {
  content: "\F3EC";
}

.fa-shapes:before {
  content: "\F61F";
}

.fa-share:before {
  content: "\F064";
}

.fa-share-alt:before {
  content: "\F1E0";
}

.fa-share-alt-square:before {
  content: "\F1E1";
}

.fa-share-square:before {
  content: "\F14D";
}

.fa-shekel-sign:before {
  content: "\F20B";
}

.fa-shield-alt:before {
  content: "\F3ED";
}

.fa-ship:before {
  content: "\F21A";
}

.fa-shipping-fast:before {
  content: "\F48B";
}

.fa-shirtsinbulk:before {
  content: "\F214";
}

.fa-shoe-prints:before {
  content: "\F54B";
}

.fa-shopping-bag:before {
  content: "\F290";
}

.fa-shopping-basket:before {
  content: "\F291";
}

.fa-shopping-cart:before {
  content: "\F07A";
}

.fa-shopware:before {
  content: "\F5B5";
}

.fa-shower:before {
  content: "\F2CC";
}

.fa-shuttle-van:before {
  content: "\F5B6";
}

.fa-sign:before {
  content: "\F4D9";
}

.fa-sign-in-alt:before {
  content: "\F2F6";
}

.fa-sign-language:before {
  content: "\F2A7";
}

.fa-sign-out-alt:before {
  content: "\F2F5";
}

.fa-signal:before {
  content: "\F012";
}

.fa-signature:before {
  content: "\F5B7";
}

.fa-sim-card:before {
  content: "\F7C4";
}

.fa-simplybuilt:before {
  content: "\F215";
}

.fa-sistrix:before {
  content: "\F3EE";
}

.fa-sitemap:before {
  content: "\F0E8";
}

.fa-sith:before {
  content: "\F512";
}

.fa-skating:before {
  content: "\F7C5";
}

.fa-sketch:before {
  content: "\F7C6";
}

.fa-skiing:before {
  content: "\F7C9";
}

.fa-skiing-nordic:before {
  content: "\F7CA";
}

.fa-skull:before {
  content: "\F54C";
}

.fa-skull-crossbones:before {
  content: "\F714";
}

.fa-skyatlas:before {
  content: "\F216";
}

.fa-skype:before {
  content: "\F17E";
}

.fa-slack:before {
  content: "\F198";
}

.fa-slack-hash:before {
  content: "\F3EF";
}

.fa-slash:before {
  content: "\F715";
}

.fa-sleigh:before {
  content: "\F7CC";
}

.fa-sliders-h:before {
  content: "\F1DE";
}

.fa-slideshare:before {
  content: "\F1E7";
}

.fa-smile:before {
  content: "\F118";
}

.fa-smile-beam:before {
  content: "\F5B8";
}

.fa-smile-wink:before {
  content: "\F4DA";
}

.fa-smog:before {
  content: "\F75F";
}

.fa-smoking:before {
  content: "\F48D";
}

.fa-smoking-ban:before {
  content: "\F54D";
}

.fa-sms:before {
  content: "\F7CD";
}

.fa-snapchat:before {
  content: "\F2AB";
}

.fa-snapchat-ghost:before {
  content: "\F2AC";
}

.fa-snapchat-square:before {
  content: "\F2AD";
}

.fa-snowboarding:before {
  content: "\F7CE";
}

.fa-snowflake:before {
  content: "\F2DC";
}

.fa-snowman:before {
  content: "\F7D0";
}

.fa-snowplow:before {
  content: "\F7D2";
}

.fa-socks:before {
  content: "\F696";
}

.fa-solar-panel:before {
  content: "\F5BA";
}

.fa-sort:before {
  content: "\F0DC";
}

.fa-sort-alpha-down:before {
  content: "\F15D";
}

.fa-sort-alpha-down-alt:before {
  content: "\F881";
}

.fa-sort-alpha-up:before {
  content: "\F15E";
}

.fa-sort-alpha-up-alt:before {
  content: "\F882";
}

.fa-sort-amount-down:before {
  content: "\F160";
}

.fa-sort-amount-down-alt:before {
  content: "\F884";
}

.fa-sort-amount-up:before {
  content: "\F161";
}

.fa-sort-amount-up-alt:before {
  content: "\F885";
}

.fa-sort-down:before {
  content: "\F0DD";
}

.fa-sort-numeric-down:before {
  content: "\F162";
}

.fa-sort-numeric-down-alt:before {
  content: "\F886";
}

.fa-sort-numeric-up:before {
  content: "\F163";
}

.fa-sort-numeric-up-alt:before {
  content: "\F887";
}

.fa-sort-up:before {
  content: "\F0DE";
}

.fa-soundcloud:before {
  content: "\F1BE";
}

.fa-sourcetree:before {
  content: "\F7D3";
}

.fa-spa:before {
  content: "\F5BB";
}

.fa-space-shuttle:before {
  content: "\F197";
}

.fa-speakap:before {
  content: "\F3F3";
}

.fa-speaker-deck:before {
  content: "\F83C";
}

.fa-spell-check:before {
  content: "\F891";
}

.fa-spider:before {
  content: "\F717";
}

.fa-spinner:before {
  content: "\F110";
}

.fa-splotch:before {
  content: "\F5BC";
}

.fa-spotify:before {
  content: "\F1BC";
}

.fa-spray-can:before {
  content: "\F5BD";
}

.fa-square:before {
  content: "\F0C8";
}

.fa-square-full:before {
  content: "\F45C";
}

.fa-square-root-alt:before {
  content: "\F698";
}

.fa-squarespace:before {
  content: "\F5BE";
}

.fa-stack-exchange:before {
  content: "\F18D";
}

.fa-stack-overflow:before {
  content: "\F16C";
}

.fa-stackpath:before {
  content: "\F842";
}

.fa-stamp:before {
  content: "\F5BF";
}

.fa-star:before {
  content: "\F005";
}

.fa-star-and-crescent:before {
  content: "\F699";
}

.fa-star-half:before {
  content: "\F089";
}

.fa-star-half-alt:before {
  content: "\F5C0";
}

.fa-star-of-david:before {
  content: "\F69A";
}

.fa-star-of-life:before {
  content: "\F621";
}

.fa-staylinked:before {
  content: "\F3F5";
}

.fa-steam:before {
  content: "\F1B6";
}

.fa-steam-square:before {
  content: "\F1B7";
}

.fa-steam-symbol:before {
  content: "\F3F6";
}

.fa-step-backward:before {
  content: "\F048";
}

.fa-step-forward:before {
  content: "\F051";
}

.fa-stethoscope:before {
  content: "\F0F1";
}

.fa-sticker-mule:before {
  content: "\F3F7";
}

.fa-sticky-note:before {
  content: "\F249";
}

.fa-stop:before {
  content: "\F04D";
}

.fa-stop-circle:before {
  content: "\F28D";
}

.fa-stopwatch:before {
  content: "\F2F2";
}

.fa-store:before {
  content: "\F54E";
}

.fa-store-alt:before {
  content: "\F54F";
}

.fa-strava:before {
  content: "\F428";
}

.fa-stream:before {
  content: "\F550";
}

.fa-street-view:before {
  content: "\F21D";
}

.fa-strikethrough:before {
  content: "\F0CC";
}

.fa-stripe:before {
  content: "\F429";
}

.fa-stripe-s:before {
  content: "\F42A";
}

.fa-stroopwafel:before {
  content: "\F551";
}

.fa-studiovinari:before {
  content: "\F3F8";
}

.fa-stumbleupon:before {
  content: "\F1A4";
}

.fa-stumbleupon-circle:before {
  content: "\F1A3";
}

.fa-subscript:before {
  content: "\F12C";
}

.fa-subway:before {
  content: "\F239";
}

.fa-suitcase:before {
  content: "\F0F2";
}

.fa-suitcase-rolling:before {
  content: "\F5C1";
}

.fa-sun:before {
  content: "\F185";
}

.fa-superpowers:before {
  content: "\F2DD";
}

.fa-superscript:before {
  content: "\F12B";
}

.fa-supple:before {
  content: "\F3F9";
}

.fa-surprise:before {
  content: "\F5C2";
}

.fa-suse:before {
  content: "\F7D6";
}

.fa-swatchbook:before {
  content: "\F5C3";
}

.fa-swift:before {
  content: "\F8E1";
}

.fa-swimmer:before {
  content: "\F5C4";
}

.fa-swimming-pool:before {
  content: "\F5C5";
}

.fa-symfony:before {
  content: "\F83D";
}

.fa-synagogue:before {
  content: "\F69B";
}

.fa-sync:before {
  content: "\F021";
}

.fa-sync-alt:before {
  content: "\F2F1";
}

.fa-syringe:before {
  content: "\F48E";
}

.fa-table:before {
  content: "\F0CE";
}

.fa-table-tennis:before {
  content: "\F45D";
}

.fa-tablet:before {
  content: "\F10A";
}

.fa-tablet-alt:before {
  content: "\F3FA";
}

.fa-tablets:before {
  content: "\F490";
}

.fa-tachometer-alt:before {
  content: "\F3FD";
}

.fa-tag:before {
  content: "\F02B";
}

.fa-tags:before {
  content: "\F02C";
}

.fa-tape:before {
  content: "\F4DB";
}

.fa-tasks:before {
  content: "\F0AE";
}

.fa-taxi:before {
  content: "\F1BA";
}

.fa-teamspeak:before {
  content: "\F4F9";
}

.fa-teeth:before {
  content: "\F62E";
}

.fa-teeth-open:before {
  content: "\F62F";
}

.fa-telegram:before {
  content: "\F2C6";
}

.fa-telegram-plane:before {
  content: "\F3FE";
}

.fa-temperature-high:before {
  content: "\F769";
}

.fa-temperature-low:before {
  content: "\F76B";
}

.fa-tencent-weibo:before {
  content: "\F1D5";
}

.fa-tenge:before {
  content: "\F7D7";
}

.fa-terminal:before {
  content: "\F120";
}

.fa-text-height:before {
  content: "\F034";
}

.fa-text-width:before {
  content: "\F035";
}

.fa-th:before {
  content: "\F00A";
}

.fa-th-large:before {
  content: "\F009";
}

.fa-th-list:before {
  content: "\F00B";
}

.fa-the-red-yeti:before {
  content: "\F69D";
}

.fa-theater-masks:before {
  content: "\F630";
}

.fa-themeco:before {
  content: "\F5C6";
}

.fa-themeisle:before {
  content: "\F2B2";
}

.fa-thermometer:before {
  content: "\F491";
}

.fa-thermometer-empty:before {
  content: "\F2CB";
}

.fa-thermometer-full:before {
  content: "\F2C7";
}

.fa-thermometer-half:before {
  content: "\F2C9";
}

.fa-thermometer-quarter:before {
  content: "\F2CA";
}

.fa-thermometer-three-quarters:before {
  content: "\F2C8";
}

.fa-think-peaks:before {
  content: "\F731";
}

.fa-thumbs-down:before {
  content: "\F165";
}

.fa-thumbs-up:before {
  content: "\F164";
}

.fa-thumbtack:before {
  content: "\F08D";
}

.fa-ticket-alt:before {
  content: "\F3FF";
}

.fa-times:before {
  content: "\F00D";
}

.fa-times-circle:before {
  content: "\F057";
}

.fa-tint:before {
  content: "\F043";
}

.fa-tint-slash:before {
  content: "\F5C7";
}

.fa-tired:before {
  content: "\F5C8";
}

.fa-toggle-off:before {
  content: "\F204";
}

.fa-toggle-on:before {
  content: "\F205";
}

.fa-toilet:before {
  content: "\F7D8";
}

.fa-toilet-paper:before {
  content: "\F71E";
}

.fa-toolbox:before {
  content: "\F552";
}

.fa-tools:before {
  content: "\F7D9";
}

.fa-tooth:before {
  content: "\F5C9";
}

.fa-torah:before {
  content: "\F6A0";
}

.fa-torii-gate:before {
  content: "\F6A1";
}

.fa-tractor:before {
  content: "\F722";
}

.fa-trade-federation:before {
  content: "\F513";
}

.fa-trademark:before {
  content: "\F25C";
}

.fa-traffic-light:before {
  content: "\F637";
}

.fa-trailer:before {
  content: "\F941";
}

.fa-train:before {
  content: "\F238";
}

.fa-tram:before {
  content: "\F7DA";
}

.fa-transgender:before {
  content: "\F224";
}

.fa-transgender-alt:before {
  content: "\F225";
}

.fa-trash:before {
  content: "\F1F8";
}

.fa-trash-alt:before {
  content: "\F2ED";
}

.fa-trash-restore:before {
  content: "\F829";
}

.fa-trash-restore-alt:before {
  content: "\F82A";
}

.fa-tree:before {
  content: "\F1BB";
}

.fa-trello:before {
  content: "\F181";
}

.fa-tripadvisor:before {
  content: "\F262";
}

.fa-trophy:before {
  content: "\F091";
}

.fa-truck:before {
  content: "\F0D1";
}

.fa-truck-loading:before {
  content: "\F4DE";
}

.fa-truck-monster:before {
  content: "\F63B";
}

.fa-truck-moving:before {
  content: "\F4DF";
}

.fa-truck-pickup:before {
  content: "\F63C";
}

.fa-tshirt:before {
  content: "\F553";
}

.fa-tty:before {
  content: "\F1E4";
}

.fa-tumblr:before {
  content: "\F173";
}

.fa-tumblr-square:before {
  content: "\F174";
}

.fa-tv:before {
  content: "\F26C";
}

.fa-twitch:before {
  content: "\F1E8";
}

.fa-twitter:before {
  content: "\F099";
}

.fa-twitter-square:before {
  content: "\F081";
}

.fa-typo3:before {
  content: "\F42B";
}

.fa-uber:before {
  content: "\F402";
}

.fa-ubuntu:before {
  content: "\F7DF";
}

.fa-uikit:before {
  content: "\F403";
}

.fa-umbraco:before {
  content: "\F8E8";
}

.fa-umbrella:before {
  content: "\F0E9";
}

.fa-umbrella-beach:before {
  content: "\F5CA";
}

.fa-underline:before {
  content: "\F0CD";
}

.fa-undo:before {
  content: "\F0E2";
}

.fa-undo-alt:before {
  content: "\F2EA";
}

.fa-uniregistry:before {
  content: "\F404";
}

.fa-unity:before {
  content: "\F949";
}

.fa-universal-access:before {
  content: "\F29A";
}

.fa-university:before {
  content: "\F19C";
}

.fa-unlink:before {
  content: "\F127";
}

.fa-unlock:before {
  content: "\F09C";
}

.fa-unlock-alt:before {
  content: "\F13E";
}

.fa-untappd:before {
  content: "\F405";
}

.fa-upload:before {
  content: "\F093";
}

.fa-ups:before {
  content: "\F7E0";
}

.fa-usb:before {
  content: "\F287";
}

.fa-user:before {
  content: "\F007";
}

.fa-user-alt:before {
  content: "\F406";
}

.fa-user-alt-slash:before {
  content: "\F4FA";
}

.fa-user-astronaut:before {
  content: "\F4FB";
}

.fa-user-check:before {
  content: "\F4FC";
}

.fa-user-circle:before {
  content: "\F2BD";
}

.fa-user-clock:before {
  content: "\F4FD";
}

.fa-user-cog:before {
  content: "\F4FE";
}

.fa-user-edit:before {
  content: "\F4FF";
}

.fa-user-friends:before {
  content: "\F500";
}

.fa-user-graduate:before {
  content: "\F501";
}

.fa-user-injured:before {
  content: "\F728";
}

.fa-user-lock:before {
  content: "\F502";
}

.fa-user-md:before {
  content: "\F0F0";
}

.fa-user-minus:before {
  content: "\F503";
}

.fa-user-ninja:before {
  content: "\F504";
}

.fa-user-nurse:before {
  content: "\F82F";
}

.fa-user-plus:before {
  content: "\F234";
}

.fa-user-secret:before {
  content: "\F21B";
}

.fa-user-shield:before {
  content: "\F505";
}

.fa-user-slash:before {
  content: "\F506";
}

.fa-user-tag:before {
  content: "\F507";
}

.fa-user-tie:before {
  content: "\F508";
}

.fa-user-times:before {
  content: "\F235";
}

.fa-users:before {
  content: "\F0C0";
}

.fa-users-cog:before {
  content: "\F509";
}

.fa-usps:before {
  content: "\F7E1";
}

.fa-ussunnah:before {
  content: "\F407";
}

.fa-utensil-spoon:before {
  content: "\F2E5";
}

.fa-utensils:before {
  content: "\F2E7";
}

.fa-vaadin:before {
  content: "\F408";
}

.fa-vector-square:before {
  content: "\F5CB";
}

.fa-venus:before {
  content: "\F221";
}

.fa-venus-double:before {
  content: "\F226";
}

.fa-venus-mars:before {
  content: "\F228";
}

.fa-viacoin:before {
  content: "\F237";
}

.fa-viadeo:before {
  content: "\F2A9";
}

.fa-viadeo-square:before {
  content: "\F2AA";
}

.fa-vial:before {
  content: "\F492";
}

.fa-vials:before {
  content: "\F493";
}

.fa-viber:before {
  content: "\F409";
}

.fa-video:before {
  content: "\F03D";
}

.fa-video-slash:before {
  content: "\F4E2";
}

.fa-vihara:before {
  content: "\F6A7";
}

.fa-vimeo:before {
  content: "\F40A";
}

.fa-vimeo-square:before {
  content: "\F194";
}

.fa-vimeo-v:before {
  content: "\F27D";
}

.fa-vine:before {
  content: "\F1CA";
}

.fa-vk:before {
  content: "\F189";
}

.fa-vnv:before {
  content: "\F40B";
}

.fa-voicemail:before {
  content: "\F897";
}

.fa-volleyball-ball:before {
  content: "\F45F";
}

.fa-volume-down:before {
  content: "\F027";
}

.fa-volume-mute:before {
  content: "\F6A9";
}

.fa-volume-off:before {
  content: "\F026";
}

.fa-volume-up:before {
  content: "\F028";
}

.fa-vote-yea:before {
  content: "\F772";
}

.fa-vr-cardboard:before {
  content: "\F729";
}

.fa-vuejs:before {
  content: "\F41F";
}

.fa-walking:before {
  content: "\F554";
}

.fa-wallet:before {
  content: "\F555";
}

.fa-warehouse:before {
  content: "\F494";
}

.fa-water:before {
  content: "\F773";
}

.fa-wave-square:before {
  content: "\F83E";
}

.fa-waze:before {
  content: "\F83F";
}

.fa-weebly:before {
  content: "\F5CC";
}

.fa-weibo:before {
  content: "\F18A";
}

.fa-weight:before {
  content: "\F496";
}

.fa-weight-hanging:before {
  content: "\F5CD";
}

.fa-weixin:before {
  content: "\F1D7";
}

.fa-whatsapp:before {
  content: "\F232";
}

.fa-whatsapp-square:before {
  content: "\F40C";
}

.fa-wheelchair:before {
  content: "\F193";
}

.fa-whmcs:before {
  content: "\F40D";
}

.fa-wifi:before {
  content: "\F1EB";
}

.fa-wikipedia-w:before {
  content: "\F266";
}

.fa-wind:before {
  content: "\F72E";
}

.fa-window-close:before {
  content: "\F410";
}

.fa-window-maximize:before {
  content: "\F2D0";
}

.fa-window-minimize:before {
  content: "\F2D1";
}

.fa-window-restore:before {
  content: "\F2D2";
}

.fa-windows:before {
  content: "\F17A";
}

.fa-wine-bottle:before {
  content: "\F72F";
}

.fa-wine-glass:before {
  content: "\F4E3";
}

.fa-wine-glass-alt:before {
  content: "\F5CE";
}

.fa-wix:before {
  content: "\F5CF";
}

.fa-wizards-of-the-coast:before {
  content: "\F730";
}

.fa-wolf-pack-battalion:before {
  content: "\F514";
}

.fa-won-sign:before {
  content: "\F159";
}

.fa-wordpress:before {
  content: "\F19A";
}

.fa-wordpress-simple:before {
  content: "\F411";
}

.fa-wpbeginner:before {
  content: "\F297";
}

.fa-wpexplorer:before {
  content: "\F2DE";
}

.fa-wpforms:before {
  content: "\F298";
}

.fa-wpressr:before {
  content: "\F3E4";
}

.fa-wrench:before {
  content: "\F0AD";
}

.fa-x-ray:before {
  content: "\F497";
}

.fa-xbox:before {
  content: "\F412";
}

.fa-xing:before {
  content: "\F168";
}

.fa-xing-square:before {
  content: "\F169";
}

.fa-y-combinator:before {
  content: "\F23B";
}

.fa-yahoo:before {
  content: "\F19E";
}

.fa-yammer:before {
  content: "\F840";
}

.fa-yandex:before {
  content: "\F413";
}

.fa-yandex-international:before {
  content: "\F414";
}

.fa-yarn:before {
  content: "\F7E3";
}

.fa-yelp:before {
  content: "\F1E9";
}

.fa-yen-sign:before {
  content: "\F157";
}

.fa-yin-yang:before {
  content: "\F6AD";
}

.fa-yoast:before {
  content: "\F2B1";
}

.fa-youtube:before {
  content: "\F167";
}

.fa-youtube-square:before {
  content: "\F431";
}

.fa-zhihu:before {
  content: "\F63F";
}

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

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

@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url("../fonts/fa-brands-400.eot");
  src: url("../fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-brands-400.woff2") format("woff2"), url("../fonts/fa-brands-400.woff") format("woff"), url("../fonts/fa-brands-400.ttf") format("truetype"), url("../fonts/fa-brands-400.svg#fontawesome") format("svg");
}

.fab {
  font-family: 'Font Awesome 5 Brands';
}

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url("../fonts/fa-regular-400.eot");
  src: url("../fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-regular-400.woff2") format("woff2"), url("../fonts/fa-regular-400.woff") format("woff"), url("../fonts/fa-regular-400.ttf") format("truetype"), url("../fonts/fa-regular-400.svg#fontawesome") format("svg");
}

.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
}

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("../fonts/fa-solid-900.eot");
  src: url("../fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/fa-solid-900.woff2") format("woff2"), url("../fonts/fa-solid-900.woff") format("woff"), url("../fonts/fa-solid-900.ttf") format("truetype"), url("../fonts/fa-solid-900.svg#fontawesome") format("svg");
}

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%,
  100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}

.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity .3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: .8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: var(--bg-white);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

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

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

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

#pswd_info {
  z-index: 999;
  position: absolute;
  bottom: -75px;
  bottom: -115px\9;
  /* IE Specific */
  right: -255px;
  max-width: 250px;
  padding: 15px;
  background: var(--bg-white);
  font-size: .875rem;
  border-radius: 5px;
  box-shadow: 0 1px 3px #ccc;
  border: solid 1px var(--border-color);
}

#pswd_info:before {
  content: "";
  position: absolute;
  top: -12px;
  left: 45%;
  font-size: 14px;
  line-height: 14px;
  color: #ddd;
  text-shadow: none;
  display: block;
}

#pswd_info h4 {
  margin: 0 0 10px 0;
  padding: 0;
  font-weight: normal;
  font-size: 0.9rem;
}

#pswd_info > ul > li {
  font-size: 0.8rem;
  color: var(--txt-gray);
  position: relative;
  padding-left: 24px;
  margin: 0.5rem 0;
}

#pswd_info > ul > li:before {
  content: "";
  position: absolute;
  left: 0;
  background-size: 14px;
  width: 14px;
  height: 14px;
  display: block;
}

#pswd_info > ul > li.invalid {
  color: #fd397a;
}

#pswd_info > ul > li.invalid:before {
  background: url(../media/retina/cancel.svg) no-repeat center;
}

#pswd_info > ul > li.valid {
  color: #1dc9b7;
}

#pswd_info > ul > li.valid:before {
  background: url(../media/retina/check.svg) no-repeat center;
}

#pswd_info {
  display: none;
}

/*! nouislider - 14.6.3 - 11/19/2020 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  touch-action: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
  */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

.noUi-connect {
  height: 100%;
  width: 100%;
}

.noUi-origin {
  height: 10%;
  width: 10%;
}

/* Offset direction
  */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
  * connect elements.
  */
.noUi-vertical .noUi-origin {
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
  */
.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  top: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Styling;
  * Giving the connect element a border radius causes issues with using transform: scale
  */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #3FB8AF;
}

/* Handles and cursors;
  */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

/* Handle stripes;
  */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

/* Disabled state;
  */
[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
  *
  */
.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
  *
  */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
  *
  */
.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #AAA;
}

/* Horizontal layout;
  *
  */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
  *
  */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.login-dialog {
  max-width: 410px;
}

.sign-page {
  height: 100%;
  min-height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media (max-width: 575.98px) {
  .sign-page {
    justify-content: flex-start;
  }
}

.sign-page body {
  width: 100%;
  min-height: auto !important;
}

.sign-page .login-page {
  max-width: 385px;
  box-shadow: 0 0 4px 0 rgba(82, 63, 105, 0.15);
  border-radius: 4px;
  border: solid 1px var(--border-color);
  animation: slideRight 600ms ease both;
}

@media (max-width: 991.98px) {
  .sign-page .login-page {
    border: none;
    box-shadow: none;
  }
}

.sign-page .login-page.forgot-password {
  max-width: 340px;
}

.sign-page .login-page.forgot-password .floated-txt {
  font-size: 0.85em;
  margin-bottom: 30px;
}

.sign-page .login-page.forgot-password .floated-txt .loginVia {
  color: #343a40;
}

.sign-page .login-page.register .floated-txt .loginVia {
  color: #343a40;
}

.login-bg {
  align-items: center;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-gray) 100%);
  display: flex;
  justify-content: center;
  min-height: 100vh;
  position: fixed;
  z-index: -1;
}

.login-bg:before {
  content: '';
  position: fixed;
  left: -22%;
  top: 60%;
  right: 0;
  width: 125%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-white) 100%);
  transform: rotate(15deg);
}

.login-page {
  width: 100%;
  max-width: 370px;
  max-height: 100%;
  margin: 0 auto;
  background: var(--bg-white);
  position: relative;
  z-index: 2;
  text-align: center;
}

.login-page .login-logo-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.login-page .login-logo-wrap .login-logo {
  display: inline-block;
  margin: auto;
}

.login-page .login-logo-wrap .login-logo img {
  max-width: 110px;
}

.login-page .login-head {
  text-align: center;
  padding: 1rem 2rem;
}

.login-page .login-head h1 {
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 0;
}

.login-page .login-head h1 span {
  font-weight: 300;
  display: block;
  font-size: 0.8rem;
  padding-top: 5px;
}

.login-page .login-body {
  padding: 1rem 2rem;
}

.login-page .login-body .divider {
  margin: 2rem 0;
}

.login-page .login-body .button-wrap .btn.btn-social {
  padding: 0;
  border-radius: 50%;
  height: 42px;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: initial;
}

.login-page .login-body .floated-txt .loginVia {
  font-size: 0.8rem;
  color: #999;
  display: block;
  margin-top: 0.2rem;
}

.login-page .login-body .floated-txt .loginVia:after {
  background-color: #999;
}

.login-page .login-body .floated-txt .loginVia .svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  margin-top: -1px;
  margin-right: 2px;
}

.login-page .login-body p {
  color: var(--txt-gray);
  font-size: 0.8rem;
  padding-bottom: 1rem;
}

.login-page .login-foot {
  padding: 1rem 2rem;
}

.login-page .form-login {
  text-align: left;
}

.login-page .form-login .forgot-txt {
  font-size: 0.8rem;
}

.login-page .form-login .btn-submit .arrow {
  position: absolute;
  font-size: 21px;
  top: 50%;
  right: 20px;
  transition: all 0.2s;
  transform: translateY(-50%);
  opacity: 0.8;
}

.login-page .form-login .btn-submit:hover .arrow {
  right: 10px;
}

.login-page .no-account {
  font-size: 0.8rem;
  text-align: center;
}

.login-page .no-account .pipe {
  margin: 0 8px;
}

.login-page.register .row {
  margin-left: -5px;
  margin-right: -5px;
}

.login-page.register .row [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.floated-txt_wrap {
  margin-bottom: 40px !important;
}

.floated-txt_wrap .floated-txt {
  position: absolute;
  right: 0;
  bottom: -20px;
  z-index: 1;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--brand-color);
  line-height: 1;
}

.floated-txt_wrap .floated-txt .loginVia {
  font-size: 0.8rem;
  color: #999;
}

.button-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn.btn-social {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 28px;
  margin: 0 5px;
  border: none;
  position: relative;
  box-shadow: none;
  border-radius: 3px;
  line-height: 1.6428571429rem;
  height: auto;
  width: auto;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.btn.btn-social:first-child {
  margin-left: 0;
}

.btn.btn-social:last-child {
  margin-right: 0;
}

.btn.btn-social .svg {
  width: 20px;
  height: 20px;
}

.btn.btn-google {
  background: rgba(248, 73, 52, 0.25);
}

.btn.btn-google .svg {
  fill: #f84934;
}

.btn.btn-twitter {
  background: rgba(85, 172, 238, 0.25);
}

.btn.btn-twitter .svg {
  fill: #55acee;
}

.btn.btn-facebook {
  background: rgba(59, 89, 152, 0.25);
}

.btn.btn-facebook .svg {
  fill: #3b5998;
}

.btn.btn-instagram {
  background: rgba(63, 114, 155, 0.25);
}

.btn.btn-instagram .svg {
  fill: #3f729b;
}

.divider {
  position: relative;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--txt-gray);
  margin: 30px 0;
  display: flex;
  text-align: center;
}

.divider:after {
  content: '';
  height: 1px;
  width: 100%;
  background: var(--border-color);
  position: absolute;
  top: 50%;
  left: 0;
}

.divider span {
  position: relative;
  z-index: 1;
  background: var(--bg-white);
  padding: 0 5px;
  letter-spacing: 2px;
  margin: 0 auto;
}

button.close {
  position: relative;
  z-index: 10;
}

button.close span {
  line-height: 1;
}

.signup-full {
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.signup-full-head {
  margin-bottom: 2rem;
}

.signup-full-body {
  margin-bottom: 1.5rem;
}

.signup-full-foot {
  margin-top: 1.5rem;
}

.signup-full .flow-cms h1 {
  font-size: calc(112.5% + 1vw);
}

.slick-slider .slick-arrow {
  text-indent: -99999px;
  background: rgba(0, 0, 0, 0.54);
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  position: absolute;
  top: calc(50% - 20px);
  z-index: 1;
  border: none;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(1);
}

.slick-slider .slick-arrow.slick-prev {
  left: 0;
}

.slick-slider .slick-arrow.slick-next {
  right: 0;
}

.slick-slider .slick-arrow.slick-next:after {
  transform: rotate(-45deg);
  margin-left: -7px;
}

.slick-slider .slick-arrow:after {
  content: "";
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 10px;
  height: 10px;
  transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -3px;
  top: 50%;
  margin-top: -5px;
}

.slick-slider .slick-dots {
  padding: 0;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 767.98px) {
  .slick-slider .slick-dots {
    bottom: 0;
  }
}

.slick-slider .slick-dots li {
  vertical-align: middle;
  display: inline-block;
  margin: 0 3px;
  width: 13px;
  height: 3px;
  border-radius: 1px;
  cursor: pointer;
  background: var(--bg-white);
  box-shadow: 0 0 10px rgba(82, 63, 105, 0.15);
  transition: all 0.5s ease-in-out;
}

@media (max-width: 767.98px) {
  .slick-slider .slick-dots li {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: var(--bg-gray);
    box-shadow: none;
  }
}

.slick-slider .slick-dots li button {
  background: none;
  border: none;
  text-indent: -9999999px;
}

.slick-slider .slick-dots li.slick-active {
  background: var(--brand-color);
  width: 30px;
  border-radius: 15px;
}

@media (max-width: 767.98px) {
  .slick-slider .slick-dots li.slick-active {
    width: 10px;
  }
}

.slick-slider:hover .slick-arrow {
  opacity: 1;
}

.hero-banner {
  text-align: center;
  background-color: var(--bg-gray);
}

.hero-banner picture {
  padding-bottom: 25%;
  display: block;
  position: relative;
}

@media (max-width: 1024px) {
  .hero-banner picture {
    padding-bottom: 66%;
  }
}

@media (max-width: 767px) {
  .hero-banner picture {
    padding-bottom: 75%;
  }
}

.hero-banner picture img {
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.hero-banner .slick-arrow {
  background: none;
  --active: #fff;
  --border: rgba(255, 255, 255, 0.12);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 22px);
  z-index: 1;
  border-radius: 50%;
  opacity: 1;
  transform: scale(1);
}

.hero-banner .slick-arrow.prev-arrow {
  left: 3%;
  z-index: 2;
}

.hero-banner .slick-arrow.next-arrow {
  left: auto;
  right: 3%;
  transform: scaleX(-1);
}

.hero-banner .slick-arrow i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}

.hero-banner .slick-arrow i:before, .hero-banner .slick-arrow i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 0;
}

.hero-banner .slick-arrow i:before {
  transform: rotate(-40deg);
}

.hero-banner .slick-arrow i:after {
  transform: rotate(40deg);
}

.hero-banner .slick-arrow:before {
  border-radius: 50%;
  border: 2px solid var(--border);
}

.hero-banner .slick-arrow:before, .hero-banner .slick-arrow:after {
  content: normal !important;
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  width: auto;
  height: auto;
  margin: 0;
}

.hero-banner .slick-arrow svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}

.hero-banner .slick-arrow.animate svg {
  animation: stroke 1s ease forwards 0.3s;
}

.hero-banner .slick-arrow.animate i {
  animation: arrow 1.6s ease forwards;
}

.hero-banner .slick-arrow.animate i:before {
  animation: arrowUp 1.6s ease forwards;
}

.hero-banner .slick-arrow.animate i:after {
  animation: arrowDown 1.6s ease forwards;
}

@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@keyframes arrow {
  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%,
  80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}

@keyframes arrowUp {
  0%,
  100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@keyframes arrowDown {
  0%,
  100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

.collection-slider {
  position: relative;
  margin: 0 -15px;
}

@media (max-width: 767.98px) {
  .collection-slider {
    margin: 0 -0.625rem;
  }
}

.collection-slider .slick-track {
  display: flex;
}

.collection-slider .product-grid-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-radius: 3px;
}

.collection-slider .product-grid-item .product-head {
  min-width: 25%;
  padding: 10px;
  padding-right: 0;
}

.collection-slider .product-grid-item .product-head .badge-sale {
  display: none;
}

.collection-slider .product-grid-item .product-head .product__img, .collection-slider .product-grid-item .product-head .tea-widget .tea-widget__link, .tea-widget .collection-slider .product-grid-item .product-head .tea-widget__link {
  border-radius: 3px;
  border: solid 1px var(--border-color);
}

.collection-slider .item {
  padding: 1px 15px;
}

@media (max-width: 767.98px) {
  .collection-slider .item {
    padding: 5px;
  }
}

@media (min-width: 1200px) {
  .collection-slider .item .product {
    margin-bottom: 15px;
  }
}

.collection-slider .badge-sale {
  margin: 0;
  border-top-right-radius: 4rem;
  border-bottom-right-radius: 4rem;
  font-weight: 400;
  top: 1.5rem;
  font-size: 0.65rem;
  padding: 4px 8px;
}

.collection-slider .slick-dotsx {
  display: flex;
  justify-content: center;
}

.collection-slider .slick-dotsx li {
  padding: 4px;
}

.collection-slider .slick-dotsx li button {
  border-radius: 50%;
  border: none;
  background-color: #ddd;
  width: 10px;
  height: 10px;
  font-size: 0px;
  text-indent: -9999px;
}

.collection-slider .slick-dotsx li.slick-active button {
  background-color: var(--brand-color);
}

@media (max-width: 1199.98px) {
  .display-1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 767.98px) {
  .newsletter {
    padding: 1.5rem 0;
  }
}

.tabs-index {
  margin-top: 1.5rem;
}

.newsletter-wrapper {
  color: var(--txt-body);
  text-align: center;
  padding-bottom: 2rem;
}

.newsletter-wrapper img {
  max-width: 180px;
  margin: auto;
  display: block;
}

.newsletter-wrapper h5 {
  font-size: 1.4rem;
  text-align: center;
  color: currentColor;
  padding: 1rem 1rem 2rem;
  margin: 0;
}

.listing-head {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-gray);
  position: relative;
  text-align: center;
}

.listing-head_inner {
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.listing-head_title h1 {
  margin: 0;
  font-size: calc(112.5% + 1vw);
}

.listing-head .breadcrumb {
  padding: 0;
}

.listing-head .img-category {
  padding-bottom: 20%;
  display: block;
  position: relative;
}

.listing-head .img-category img {
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.collection-listing {
  display: flex;
  flex-wrap: wrap;
}

.collection-sidebar {
  max-width: 260px;
  flex: 0 0 260px;
  flex-grow: 0;
  background-color: var(--bg-white);
}

@media (max-width: 1199.98px) {
  .collection-sidebar {
    box-shadow: 0px 0px 28px 0px rgba(82, 63, 105, 0.08);
    padding: 1.5rem;
    z-index: 1050;
    position: fixed;
    -webkit-overflow-scrolling: touch;
    top: 0;
    left: -280px;
    bottom: 0;
    overflow-y: auto;
    backface-visibility: hidden;
    width: 280px;
    transition: left 0.3s ease, right 0.3s ease;
  }
  .collection-sidebar--on .collection-sidebar {
    padding: 0 1rem;
    left: 0;
    visibility: visible;
  }
  .collection-sidebar--on {
    overflow: hidden;
  }
  .collection-sidebar--on .back-overlay, .collection-sidebar--on .search-overlay {
    display: block;
  }
}

.collection-sidebar .sidebar-widgets {
  position: sticky;
  top: 4.5rem;
  border-radius: 4px;
}

@media (max-width: 991.98px) {
  .collection-sidebar .sidebar-widgets {
    top: 0;
    padding: 1rem 0;
    height: auto;
  }
}

.collection-sidebar .sidebar-widget {
  border-bottom: solid 1px var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  animation: slideRight 600ms ease both;
}

.collection-sidebar .sidebar-widget:last-child {
  border-bottom: none;
}

.collection-sidebar .sidebar-widget__head {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--txt-gray);
  margin: 0;
  padding-right: 20px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.collection-sidebar .sidebar-widget__head:after, .collection-sidebar .sidebar-widget__head:before {
  background: currentColor;
  content: "";
  height: 2px;
  position: absolute;
  right: 0;
  top: calc(50% - 1px);
  width: 12px;
}

.collection-sidebar .sidebar-widget__head:before {
  transform: rotate(90deg);
  transition: all 0.2s ease-in-out;
}

.collection-sidebar .sidebar-widget__head[aria-expanded="true"]:before {
  transform: rotate(0deg);
}

.collection-sidebar .sidebar-widget__body {
  padding-top: 1rem;
}

.collection-sidebar .sidebar-widget .loadmore {
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-right: auto;
  text-align: right;
}

.collection-sidebar .sidebar-widget .list-vertical li {
  padding: 0 0 0.5em 0;
}

.collection-skeleton .sidebar-widget {
  margin-bottom: 2rem;
}

.collection-skeleton .sidebar-widget .sidebar-widget__head.skeleton {
  display: inline-block;
  min-width: 80px;
  border-radius: 4px;
  margin-bottom: 0.85rem;
}

.collection-skeleton .sidebar-widget .sidebar-widget__head:after, .collection-skeleton .sidebar-widget .sidebar-widget__head:before {
  display: none;
}

.collection-skeleton .sidebar-widget .sidebar-widget__body .list-vertical .skeleton {
  padding: 0 0 0 0;
  margin: 0 0 0.75em 0;
  line-height: 0.6;
  border-radius: 2px;
}

.collection-skeleton .sidebar-widget .sidebar-widget__body .list-vertical .skeleton:nth-child(1) {
  width: 80%;
}

.collection-skeleton .sidebar-widget .sidebar-widget__body .list-vertical .skeleton:nth-child(2) {
  width: 100%;
}

.collection-skeleton .sidebar-widget .sidebar-widget__body .list-vertical .skeleton:nth-child(3) {
  width: 60%;
}

.collection-skeleton .sidebar-widget .sidebar-widget__body .list-vertical .skeleton:nth-child(4) {
  width: 40%;
}

.collection-content {
  flex: 0 0 100%;
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  padding-left: 3.5rem;
}

@media (max-width: 1199.98px) {
  .collection-content {
    padding-left: 0;
  }
}

.list-colors .color-display {
  width: 10px;
  height: 10px;
  margin-right: 5px;
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.85);
}

.category-menu ul {
  margin: 0;
  list-style: none;
  padding: 0rem 0;
}

.category-menu ul .menu__item {
  position: relative;
  padding: 0 0 0.5rem 0;
}

.category-menu ul .menu__item .menu__ver-arrow {
  font-size: 0.8rem;
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 0;
  transform: rotate(0deg);
  transition: all 0.3s ease;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 22;
}

.category-menu ul .menu__item .menu__ver-arrow.collapsed {
  transform: rotate(-90deg);
}

.category-menu ul .menu__item .menu__link-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 1.8rem;
  color: var(--txt-gray);
  overflow: hidden;
  display: inherit;
  position: relative;
}

.category-menu ul .menu__item .menu__link-text .menu__link {
  display: inline;
  flex-grow: 1;
  align-items: center;
  margin: 0;
  text-decoration: none;
  position: relative;
  outline: none;
  color: currentColor;
  font-size: 0.85rem;
  font-weight: 300;
  padding: 3px 0;
  word-break: break-all;
}

.category-menu ul .menu__item .menu__link-text .menu__link .menu__link-text {
  display: flex;
  flex-grow: 1;
  align-items: center;
}

.category-menu ul .menu__item .menu__link-text .menu__link:hover {
  color: var(--brand-color);
}

.category-menu ul .menu__item .menu__link-text i {
  color: currentColor;
}

.category-menu ul .menu__item .menu__submenu {
  flex-grow: 1;
  flex-direction: column;
}

.category-menu ul .menu__item .menu__submenu .menu__link .menu__link-text {
  font-weight: 300;
}

.category-menu ul .menu__item:last-child {
  padding-bottom: 0;
}

.category-menu ul ul {
  margin-inline-start: 0.5rem;
  padding: 0.5rem 0;
}

.category-menu ul ul li.menu__item {
  padding: 0 0 0.5rem 0;
}

.category-menu ul ul li.menu__item:last-child {
  padding-bottom: 0;
}

.collection-top-bar {
  padding: 0 0 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.collection-top-bar.no-data .collection-top-bar__title {
  max-width: 100%;
  width: 100%;
  text-align: center;
}

.collection-top-bar.no-data .collection-top-bar__title h1 {
  width: 100%;
}

.collection-top-bar__title {
  max-width: 70%;
}

.collection-top-bar__title h1 {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 1.85rem;
  line-height: 1.25;
}

.collection-top-bar .collection-options {
  margin-left: auto;
  display: flex;
  align-items: center;
}

@media (max-width: 991.98px) {
  .collection-top-bar .collection-options {
    margin-right: auto;
  }
}

.collection-top-bar .collection-options .filter-select {
  border: solid 1px var(--border-color);
  border-radius: 40px;
  font-size: 0.85rem;
  height: 33px;
  line-height: 1.5;
  color: var(--txt-body);
}

.collection-top-bar label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--txt-body);
  margin-right: 10px;
}

.collection-top-bar .wc-col-switch a {
  height: 20px;
  float: left;
  position: relative;
  margin-right: 10px;
}

.collection-top-bar .wc-col-switch a:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  width: 8px;
  height: 12px;
  background: var(--bg-gray);
  transition: all 0.3s;
}

.collection-top-bar .wc-col-switch a.two {
  width: 35px;
}

.collection-top-bar .wc-col-switch a.two:before {
  box-shadow: 11px 0 0 var(--bg-gray), 12px 0 0 var(--bg-gray);
}

.collection-top-bar .wc-col-switch a.two.active:before, .collection-top-bar .wc-col-switch a.two.nice-select.open:before {
  background: #212529;
  box-shadow: 11px 0 0 #212529, 12px 0 0 #212529;
}

.collection-top-bar .wc-col-switch a.three {
  width: 45px;
}

.collection-top-bar .wc-col-switch a.three:before {
  box-shadow: 11px 0 0 var(--bg-gray), 22px 0 0 var(--bg-gray);
}

.collection-top-bar .wc-col-switch a.three.active:before, .collection-top-bar .wc-col-switch a.three.nice-select.open:before {
  background: #212529;
  box-shadow: 11px 0 0 #212529, 22px 0 0 #212529;
}

.collection-top-bar .wc-col-switch a.four {
  width: 55px;
}

.collection-top-bar .wc-col-switch a.four:before {
  box-shadow: 11px 0 0 var(--bg-gray), 22px 0 0 var(--bg-gray), 33px 0 0 var(--bg-gray);
}

.collection-top-bar .wc-col-switch a.four.active:before, .collection-top-bar .wc-col-switch a.four.nice-select.open:before {
  background: #212529;
  box-shadow: 11px 0 0 #212529, 22px 0 0 #212529, 33px 0 0 #212529;
}

.collection-top-bar .wc-col-switch a.five {
  width: 65px;
}

.collection-top-bar .wc-col-switch a.five:before {
  box-shadow: 11px 0 0 var(--bg-gray), 22px 0 0 var(--bg-gray), 33px 0 0 var(--bg-gray), 44px 0 0 var(--bg-gray);
}

.collection-top-bar .wc-col-switch a.five.active:before, .collection-top-bar .wc-col-switch a.five.nice-select.open:before {
  background: #212529;
  box-shadow: 11px 0 0 #212529, 22px 0 0 #212529, 33px 0 0 #212529, 44px 0 0 #212529;
}

.collection-products {
  display: grid;
  grid-gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.collection-products[data-view="2"] {
  grid-template-columns: repeat(2, 1fr);
}

.collection-products[data-view="3"] {
  grid-template-columns: repeat(3, 1fr);
}

.collection-products[data-view="4"] {
  grid-template-columns: repeat(4, 1fr);
}

.collection-products[data-view="5"] {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 991.98px) {
  .collection-products[data-view="3"] {
    grid-template-columns: repeat(3, 1fr);
  }
  .collection-products[data-view="4"] {
    grid-template-columns: repeat(4, 1fr);
  }
  .collection-products[data-view="5"] {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .collection-products {
    grid-gap: 10px;
  }
  .collection-products[data-view="3"] {
    grid-template-columns: repeat(2, 1fr);
  }
  .collection-products[data-view="4"] {
    grid-template-columns: repeat(2, 1fr);
  }
  .collection-products[data-view="5"] {
    grid-template-columns: repeat(2, 1fr);
  }
}

.collection-footer {
  margin-top: 2rem;
}

.options-articles ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.options-articles ul li {
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative;
}

.options-articles ul li:last-child {
  margin-right: 0;
}

.options-articles ul li .control-label {
  border: solid 1px var(--border-color);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s ease;
}

.options-articles ul li .control-label:hover {
  border-color: var(--brand-color);
}

.options-articles ul li .control-label .size {
  padding: 0.5rem 0.8rem;
  display: block;
}

.options-articles ul li .control-label .color {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}

.options-articles ul li .control-input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.options-articles ul li .control-input:checked + label {
  color: var(--brand-color);
  border-color: currentColor;
}

.selected-filter {
  display: flex;
  flex-wrap: wrap;
}

.selected-filter li {
  font-size: 0.8rem;
  list-style: none;
  margin-bottom: 1rem;
  margin-right: 5px;
  padding-left: 10px;
  border-radius: 30px;
  border: solid 1px var(--border-color);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.selected-filter li span {
  padding-right: 5px;
}

.selected-filter li .remove {
  color: var(--txt-body);
  padding: 5px 10px;
  font-size: 0.7rem;
}

.selected-filter li .remove:hover {
  color: var(--brand-color);
}

.selected-filter li:last-child {
  border: none;
}

.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767.98px) {
  .pagination-wrapper {
    justify-content: center;
    flex-direction: column;
  }
}

.pagination-wrapper .pagination {
  border-radius: 0;
}

.pagination-wrapper .pagination .page-link {
  border-radius: 0;
}

.pagination-wrapper .show-all {
  display: flex;
  align-items: center;
}

@media (max-width: 991.98px) {
  .pagination-wrapper .show-all {
    padding-top: 15px;
  }
}

.pagination-wrapper .show-all .select-show {
  max-width: 70px;
  margin-right: 10px;
}

.pagination-wrapper .show-all .showing-all {
  white-space: nowrap;
  font-size: 0.8rem;
}

.price-slider {
  box-shadow: none !important;
  border-radius: 2px !important;
  border: none !important;
  margin: 0 8px;
  margin-top: 1rem;
}

.price-slider.noUi-target {
  background-color: transparent;
}

.price-slider .noUi-connects {
  position: relative;
  background-color: #ddd;
  left: -10px;
  width: calc(100% + 20px);
}

.price-slider .noUi-connect {
  background: var(--brand-color);
}

.price-slider .noUi-handle {
  cursor: move;
}

.price-slider.noUi-horizontal {
  height: 6px;
}

.price-slider.noUi-horizontal .noUi-handle {
  right: -10px;
  top: -7px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.price-slider .noUi-handle:before,
.price-slider .noUi-handle:after {
  display: none;
}

.slide__fields {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
}

.slide__fields .price-input {
  padding: 0;
  text-align: center;
}

.slide__fields .price-input .price-text-box {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  border: solid 1px var(--border-color);
  background-color: #fff;
  align-items: center;
  padding: 0 5px;
}

.slide__fields .price-input .price-text-box .rsText {
  color: #9e9e9e;
  font-size: 0.8rem;
  position: relative;
  left: 0;
  top: 0;
  padding: 0px;
  width: 30px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.slide__fields .price-input .price-text-box .input-filter {
  margin: 0;
  font-size: 0.8rem;
  height: 30px;
  padding: 0 5px;
  border: none;
}

.slide__fields .dash {
  display: inline-block;
  padding: 6px;
}

.btn-float {
  display: none;
}

@media (max-width: 1199.98px) {
  .btn-float {
    position: sticky;
    bottom: 3rem;
    margin-left: auto;
    z-index: 8;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    padding: 1rem;
    background-color: var(--brand-color);
    color: var(--brand-color-inverse);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }
  .btn-float .icn .svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }
}

.skeleton {
  background-color: var(--bg-gray) !important;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)) !important;
  background-size: 40px 100%;
  background-repeat: no-repeat;
  background-position: left -40px top 0;
  animation: shine 1s ease infinite;
}

@keyframes shine {
  to {
    background-position: right -40px top 0;
  }
}

.product-gallery-section {
  margin-right: 3.5rem;
  position: sticky;
  top: 50px;
}

@media (max-width: 1199.98px) {
  .product-gallery-section {
    margin-right: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .product-gallery-section {
    margin: 0 0 1.5rem 0;
  }
}

@media (min-width: 768px) {
  .breadcrumb-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.breadcrumb-wrapper .page_navigation {
  font-size: 0.8rem;
}

.breadcrumb-wrapper .page_navigation .page_navigation-item svg {
  width: 6px;
  height: 9px;
}

.breadcrumb-wrapper .page_navigation .page_navigation-item svg path {
  stroke-width: 1.5px;
}

.breadcrumb-wrapper .page_navigation .page_navigation-item--prev svg {
  margin-right: 9px;
}

.breadcrumb-wrapper .page_navigation .page_navigation-item--next svg {
  margin-left: 9px;
}

.breadcrumb-wrapper .page_navigation .page_navigation-item--prev + .page_navigation-item--next::before {
  display: inline-block;
  content: "";
  width: 1px;
  height: 12px;
  margin: 0 15px;
  background: #212529;
  vertical-align: -2px;
}

.product-detail__description .cms {
  margin: 0;
  color: var(--txt-body);
}

.product-block-list {
  position: relative;
}

@media (min-width: 1200px) {
  .product-block-list__item--info {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    padding-left: 2rem;
    border-left: solid 1px var(--border-color);
  }
}

.product-block-list .card {
  border: none;
  background: none;
  margin: 0;
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .product-block-list .card_head {
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width: 767.98px) {
  .product-block-list .card_head_action {
    margin-top: 10px;
  }
}

.product-block-list .card_title {
  padding: 0;
  margin: 0;
  font-size: calc(112.5% + 0.3vw);
}

.product-block-list .card_body {
  padding: 1rem 0 0 0;
}

.product-block-list .horizontal-slider .slick-track {
  margin-left: 0;
}

.product-block-list .horizontal-slider .slick-track .product-footer {
  flex: 1;
}

.block-sticky {
  position: sticky;
  top: 80px;
}

.expandable-content {
  position: relative;
  transition: 0.2s ease-in-out;
}

.expandable-content[aria-expanded="true"] {
  max-height: none;
  overflow: inherit;
}

.expandable-content[aria-expanded="true"] .expandable-content__toggle:before {
  height: 0;
}

.expandable-content .expandable-content__toggle {
  visibility: visible;
  opacity: 1;
}

.expandable-content .expandable-content__toggle:focus {
  outline: none;
}

.expandable-content__toggle {
  border: none;
  background: none;
  display: flex;
  align-items: center;
  color: var(--brand-color);
  font-size: 0.85rem;
  text-align: left;
  font-weight: 500;
  transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
}

.expandable-content__toggle:before {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 50px;
  pointer-events: none;
  background: var(--bg-white);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--bg-white) 100%);
}

.expandable-content__toggle .expandable-content__toggle-icon {
  position: relative;
  margin-right: 10px;
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease-in-out;
}

.expandable-content__toggle .expandable-content__toggle-icon::before,
.expandable-content__toggle .expandable-content__toggle-icon::after {
  position: absolute;
  background: currentColor;
  transition: transform 0.2s ease-in-out;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.expandable-content__toggle .expandable-content__toggle-icon::before {
  width: 2px;
  height: 10px;
}

.expandable-content__toggle .expandable-content__toggle-icon::after {
  width: 10px;
  height: 2px;
}

.review {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.review:last-child {
  margin-bottom: 0;
}

.review .review-helpful-lbl {
  font-size: 0.875rem;
  color: var(--txt-gray);
}

.review .review-title {
  font-weight: 500;
  color: var(--txt-body);
  margin: 0;
  padding: 0.5rem 0;
}

.review__avatar {
  display: flex;
  align-items: center;
}

.review__avatar .avatar {
  flex: 0 0 3rem;
  max-width: 3rem;
  margin-right: 0.75rem;
}

.review__avatar-detail .from {
  display: block;
  font-size: 0.875rem;
}

.review__avatar-detail time {
  font-size: 0.7rem;
  color: var(--txt-gray);
  display: block;
}

.review__head {
  margin-bottom: 1.5rem;
}

.review__head .from {
  font-size: 0.85rem;
  color: var(--txt-gray);
}

.review__head .from time {
  font-size: 0.75rem;
  font-style: italic;
}

.review__body {
  font-size: 0.8rem;
  padding-bottom: 0.5rem;
  color: var(--txt-gray);
}

.review__body p {
  font-weight: normal;
  line-height: 1.7;
  color: currentColor;
}

.review__body .rating {
  --size: 0.7rem !important;
}

.review__footer {
  padding: 0;
}

.review__reply {
  background-color: var(--bg-gray);
  padding: 1rem;
  border-radius: 2px;
  display: flex;
  font-size: 0.8rem;
  color: var(--txt-gray);
  line-height: 1.6;
  margin-top: 1rem;
  margin-left: 3.875rem;
}

.review__reply_avatar {
  flex: 0 0 40px;
  max-width: 40px;
  margin-right: 10px;
}

.review__reply_avatar .avatar-sm {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--bg-gray);
  border-radius: 100%;
}

.video-section {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
}

@media (max-width: 991.98px) {
  .video-section {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

@media (max-width: 767.98px) {
  .video-section {
    grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  }
}

.video-section .product-detail__info {
  order: 2;
}

@media (max-width: 767.98px) {
  .video-section .product-detail__info {
    order: inherit;
  }
}

.gallery__main[data-aspect-ratio="3:4"] .gallery__img {
  padding-bottom: 133%;
  display: block;
  position: relative;
}

.gallery__main[data-aspect-ratio="3:4"] .gallery__img img {
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.gallery--product {
  background-color: var(--bg-gray);
  position: relative;
  max-width: 450px;
  margin: auto;
}

.gallery--product .slideCount {
  background: rgba(255, 255, 255, 0.5);
  color: var(--txt-gray);
  border-radius: 2px;
  text-align: center;
  min-width: 50px;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 20px;
  height: 20px;
  position: absolute;
  left: 15px;
  bottom: 15px;
  z-index: 2;
}

.gallery--product .slideCount > span {
  margin: 0 0.5rem;
  opacity: 0.5;
  font-weight: 300;
}

.gallery--product .slick-slider .slick-dots {
  bottom: 15px;
  left: 20px;
}

.gallery--product .slick-slider .slick-dots li {
  box-shadow: none;
  height: auto;
  width: auto;
  background-color: transparent;
}

.gallery--product .slick-slider .slick-dots li button {
  text-indent: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.25px;
  color: var(--txt-body);
}

.gallery--product .slick-slider .slick-arrow {
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.5);
  color: var(--txt-gray);
  bottom: 1px;
  top: auto;
  right: 1px;
  opacity: 1;
}

.gallery--product .slick-slider .slick-arrow:hover {
  background: rgba(255, 255, 255, 0.8);
}

.gallery--product .slick-slider .slick-arrow::after {
  border-color: currentColor;
  width: 8px;
  height: 8px;
  margin-top: -3px;
}

.gallery--product .slick-slider .slick-arrow.slick-prev {
  left: auto;
  right: 50px;
}

.product-detail .divider {
  margin: 15px 0;
}

.product-detail__row {
  font-size: 0.8rem;
  color: var(--txt-gray);
}

.product-detail__wrap {
  display: flex;
  justify-content: space-between;
}

.product-detail__wrap .askquestion {
  margin-top: 10px;
  color: var(--brand-color);
  height: 24px;
}

.product-detail__wrap .askquestion .svg {
  fill: currentColor;
}

.product-detail__title {
  margin: 0;
  font-size: clamp(1rem, 1.75vw, 1.75rem);
  color: var(--txt-body);
  line-height: 1.5;
}

.product-detail__brand {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-color);
}

.product-detail .sale-badge__wrap .badge-sale {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  height: 24px;
  padding: 0 0.5rem;
  margin: 0 0 0.5rem 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  border-radius: 2px;
  background-color: var(--brand-color);
  border-color: var(--brand-color);
  color: #fff;
}

.product-detail__meta {
  display: flex;
  align-items: center;
}

@media (max-width: 767.98px) {
  .product-detail__meta {
    flex-wrap: wrap;
  }
}

.product-detail__meta span {
  display: block;
}

.product-detail__meta span:not(:last-child) {
  border-right: solid 1px var(--border-color);
  padding-right: 1rem;
  margin-right: 1rem;
}

.product-detail__meta .brand-name {
  font-weight: 500;
  color: var(--brand-color);
  text-transform: uppercase;
}

.product-detail__meta .brand-sku {
  color: var(--txt-gray);
}

@media (min-width: 768px) {
  .product-detail__rating {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 1200px) {
  .product-detail__rating + .product-detail__meta {
    padding-left: 1rem;
    margin-left: 1rem;
    border-left: 1px solid var(--border-color);
  }
}

@media (max-width: 1199.98px) {
  .product-detail__rating + .product-detail__meta {
    padding-top: 1rem;
  }
}

.product-detail .product-detail__price {
  margin: 1.5rem 0;
}

.product-detail .product-detail__price .block-label {
  font-weight: 500;
  font-size: 0.8rem;
  padding-bottom: 0.75rem;
}

.product-detail .product-detail__price .block-label span {
  font-weight: normal;
}

.product-detail .product-detail__price .price-wrappar {
  display: flex;
  align-items: center;
}

.product-detail .product-detail__price .price-wrappar .price {
  line-height: 1;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--txt-body);
  margin-right: 8px;
}

.product-detail .product-detail__price .price-wrappar .sale-price {
  color: var(--txt-gray);
  font-size: 1.125rem;
}

.product-detail .product-detail__price .price-wrappar .spl-price {
  background-color: #f03627;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
}

.product-detail .askquestion + .product-share {
  padding-left: 1rem;
  margin-left: 1rem;
  border-left: 1px solid var(--border-color);
}

.product-detail__info .section-content {
  align-items: flex-start;
}

.product-selectors {
  max-width: 490px;
  display: flex;
  flex: 1;
  margin-bottom: 1.5rem;
}

.product-selectors .product-quantity {
  padding: 0.5rem 0.8rem;
  border: solid 1px var(--border-color);
  border-radius: 4px;
}

.product-selectors__lbl {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--txt-gray);
  padding-bottom: 0.5rem;
  font-weight: 300;
}

.product-selectors__lbl .size-chart {
  color: var(--brand-color);
}

.product-selectors__lbl .size-chart .svg {
  width: 12px;
  height: 12px;
}

.product-selectors .product-detail__option {
  flex: 1;
  padding: 0.5rem 0.8rem;
  margin-left: 10px;
  border: solid 1px var(--border-color);
  border-radius: 4px;
}

.product-selectors .product-detail__option .dropdown-select {
  width: 100%;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-selectors .product-detail__option .dropdown-select::after {
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  vertical-align: middle;
  margin-left: 15px;
}

.product-selectors .product-detail__option select {
  padding: 0 10px;
  padding-right: 35px;
  background-image: url(../media/retina/down-arrow.svg);
  background-size: 12px;
  background-color: var(--bg-white);
  background-repeat: no-repeat;
  background-position: right center;
  font-size: 0.8rem;
  border: none;
  outline: none;
  box-shadow: none;
  line-height: 30px;
  height: 30px;
  color: var(--txt-gray);
}

.product-selectors .product-detail__option select:focus {
  outline: none;
  box-shadow: none;
}

.product-selectors .attribute-selectors {
  padding: 1rem 2rem;
  flex: 0 0 50%;
  max-width: 50%;
}

.product-selectors .attribute-selectors ~ .attribute-selectors {
  padding: 1rem 2rem;
  border-left: solid 1px var(--border-color);
}

.product-selectors .color-display {
  width: 10px;
  height: 10px;
  min-width: 10px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 5px;
}

.product-selectors .color-display.color-shadow {
  border: solid 1px var(--border-color);
}

.quantity-detail {
  background: none;
  border: none;
  height: 30px;
  line-height: 30px;
}

.quantity-detail.quantity span.decrease {
  justify-content: flex-start;
}

.quantity-detail.quantity span.increase {
  justify-content: flex-end;
}

.quantity-detail input, .quantity-detail .form input[type="text"], .form .quantity-detail input[type="text"], .quantity-detail .form-control input[type="text"], .form-control .quantity-detail input[type="text"], .quantity-detail .form input[type="email"], .form .quantity-detail input[type="email"], .quantity-detail .form-control input[type="email"], .form-control .quantity-detail input[type="email"], .quantity-detail .form input[type="phone"], .form .quantity-detail input[type="phone"], .quantity-detail .form-control input[type="phone"], .form-control .quantity-detail input[type="phone"], .quantity-detail .form input[type="search"], .form .quantity-detail input[type="search"], .quantity-detail .form-control input[type="search"], .form-control .quantity-detail input[type="search"], .quantity-detail .form input[type="password"], .form .quantity-detail input[type="password"], .quantity-detail .form-control input[type="password"], .form-control .quantity-detail input[type="password"], .quantity-detail .form input[type="date"], .form .quantity-detail input[type="date"], .quantity-detail .form-control input[type="date"], .form-control .quantity-detail input[type="date"], .quantity-detail .form input[type="url"], .form .quantity-detail input[type="url"], .quantity-detail .form-control input[type="url"], .form-control .quantity-detail input[type="url"], .quantity-detail .form input[type="tel"], .form .quantity-detail input[type="tel"], .quantity-detail .form-control input[type="tel"], .form-control .quantity-detail input[type="tel"], .quantity-detail .form input[type="number"], .form .quantity-detail input[type="number"], .quantity-detail .form-control input[type="number"], .form-control .quantity-detail input[type="number"], .quantity-detail .form input[type="file"], .form .quantity-detail input[type="file"], .quantity-detail .form-control input[type="file"], .form-control .quantity-detail input[type="file"], .quantity-detail .form select, .form .quantity-detail select, .quantity-detail .form-control select, .form-control .quantity-detail select, .quantity-detail .form textarea, .form .quantity-detail textarea, .quantity-detail .form-control textarea, .form-control .quantity-detail textarea {
  background: none;
}

.socail-follow-detail .icon {
  border: solid 1px var(--border-color);
}

.success-animation {
  /*---------- Cross ----------*/
}

.success-animation .svg-box {
  display: inline-block;
  position: relative;
  width: 150px;
  overflow: hidden;
}

.success-animation .green-stroke {
  stroke: #7cb342;
}

.success-animation .red-stroke {
  stroke: #ff6245;
}

.success-animation .yellow-stroke {
  stroke: #ffc107;
}

.success-animation .circular circle.path {
  stroke-dasharray: 330;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  opacity: 0.4;
  animation: 0.7s draw-circle ease-out;
}

.success-animation .checkmark {
  stroke-width: 6.25;
  stroke-linecap: round;
  position: absolute;
  top: 56px;
  left: 49px;
  width: 52px;
  height: 40px;
}

.success-animation .checkmark path {
  animation: 1s draw-check ease-out;
}

@keyframes draw-circle {
  0% {
    stroke-dasharray: 0, 330;
    stroke-dashoffset: 0;
    opacity: 1;
  }
  80% {
    stroke-dasharray: 330, 330;
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}

@keyframes draw-check {
  0% {
    stroke-dasharray: 49, 80;
    stroke-dashoffset: 48;
    opacity: 0;
  }
  50% {
    stroke-dasharray: 49, 80;
    stroke-dashoffset: 48;
    opacity: 1;
  }
  100% {
    stroke-dasharray: 130, 80;
    stroke-dashoffset: 48;
  }
}

.success-animation .cross {
  stroke-width: 6.25;
  stroke-linecap: round;
  position: absolute;
  top: 54px;
  left: 54px;
  width: 40px;
  height: 40px;
}

.success-animation .cross .first-line {
  animation: 0.7s draw-first-line ease-out;
}

.success-animation .cross .second-line {
  animation: 0.7s draw-second-line ease-out;
}

@keyframes draw-first-line {
  0% {
    stroke-dasharray: 0, 56;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 0, 56;
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dasharray: 56, 330;
    stroke-dashoffset: 0;
  }
}

@keyframes draw-second-line {
  0% {
    stroke-dasharray: 0, 55;
    stroke-dashoffset: 1;
  }
  50% {
    stroke-dasharray: 0, 55;
    stroke-dashoffset: 1;
  }
  100% {
    stroke-dasharray: 55, 0;
    stroke-dashoffset: 70;
  }
}

.success-animation .alert-sign {
  stroke-width: 6.25;
  stroke-linecap: round;
  position: absolute;
  top: 40px;
  left: 68px;
  width: 15px;
  height: 70px;
  animation: 0.5s alert-sign-bounce cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-animation .alert-sign .dot {
  stroke: none;
  fill: #ffc107;
}

@keyframes alert-sign-bounce {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.attribute-selectors.sizes {
  display: inline-block;
}

.attribute-selectors__heading {
  font-weight: 400;
  font-size: 0.875rem;
  margin-bottom: 0.3rem;
}

.attribute-selectors__heading .selector {
  font-weight: 300;
  margin-left: 5px;
}

.attribute-selectors .size-chart {
  margin-left: auto;
  color: var(--brand-color);
  font-weight: 500;
  font-size: 0.875rem;
}

.attribute-selectors .size,
.attribute-selectors .color {
  min-width: 2rem;
  height: 2rem !important;
}

.attribute-selectors input:checked ~ .control-label-color .color, .attribute-selectors .form input:checked[type="text"] ~ .control-label-color .color, .attribute-selectors .form-control input:checked[type="text"] ~ .control-label-color .color, .attribute-selectors .form input:checked[type="email"] ~ .control-label-color .color, .attribute-selectors .form-control input:checked[type="email"] ~ .control-label-color .color, .attribute-selectors .form input:checked[type="phone"] ~ .control-label-color .color, .attribute-selectors .form-control input:checked[type="phone"] ~ .control-label-color .color, .attribute-selectors .form input:checked[type="search"] ~ .control-label-color .color, .attribute-selectors .form-control input:checked[type="search"] ~ .control-label-color .color, .attribute-selectors .form input:checked[type="password"] ~ .control-label-color .color, .attribute-selectors .form-control input:checked[type="password"] ~ .control-label-color .color, .attribute-selectors .form input:checked[type="date"] ~ .control-label-color .color, .attribute-selectors .form-control input:checked[type="date"] ~ .control-label-color .color, .attribute-selectors .form input:checked[type="url"] ~ .control-label-color .color, .attribute-selectors .form-control input:checked[type="url"] ~ .control-label-color .color, .attribute-selectors .form input:checked[type="tel"] ~ .control-label-color .color, .attribute-selectors .form-control input:checked[type="tel"] ~ .control-label-color .color, .attribute-selectors .form input:checked[type="number"] ~ .control-label-color .color, .attribute-selectors .form-control input:checked[type="number"] ~ .control-label-color .color, .attribute-selectors .form input:checked[type="file"] ~ .control-label-color .color, .attribute-selectors .form-control input:checked[type="file"] ~ .control-label-color .color, .attribute-selectors .form select:checked ~ .control-label-color .color, .form .attribute-selectors select:checked ~ .control-label-color .color, .attribute-selectors .form-control select:checked ~ .control-label-color .color, .form-control .attribute-selectors select:checked ~ .control-label-color .color, .attribute-selectors .form textarea:checked ~ .control-label-color .color, .form .attribute-selectors textarea:checked ~ .control-label-color .color, .attribute-selectors .form-control textarea:checked ~ .control-label-color .color, .form-control .attribute-selectors textarea:checked ~ .control-label-color .color {
  position: relative;
}

.attribute-selectors input:checked ~ .control-label-color .color::after, .attribute-selectors .form input:checked[type="text"] ~ .control-label-color .color::after, .attribute-selectors .form-control input:checked[type="text"] ~ .control-label-color .color::after, .attribute-selectors .form input:checked[type="email"] ~ .control-label-color .color::after, .attribute-selectors .form-control input:checked[type="email"] ~ .control-label-color .color::after, .attribute-selectors .form input:checked[type="phone"] ~ .control-label-color .color::after, .attribute-selectors .form-control input:checked[type="phone"] ~ .control-label-color .color::after, .attribute-selectors .form input:checked[type="search"] ~ .control-label-color .color::after, .attribute-selectors .form-control input:checked[type="search"] ~ .control-label-color .color::after, .attribute-selectors .form input:checked[type="password"] ~ .control-label-color .color::after, .attribute-selectors .form-control input:checked[type="password"] ~ .control-label-color .color::after, .attribute-selectors .form input:checked[type="date"] ~ .control-label-color .color::after, .attribute-selectors .form-control input:checked[type="date"] ~ .control-label-color .color::after, .attribute-selectors .form input:checked[type="url"] ~ .control-label-color .color::after, .attribute-selectors .form-control input:checked[type="url"] ~ .control-label-color .color::after, .attribute-selectors .form input:checked[type="tel"] ~ .control-label-color .color::after, .attribute-selectors .form-control input:checked[type="tel"] ~ .control-label-color .color::after, .attribute-selectors .form input:checked[type="number"] ~ .control-label-color .color::after, .attribute-selectors .form-control input:checked[type="number"] ~ .control-label-color .color::after, .attribute-selectors .form input:checked[type="file"] ~ .control-label-color .color::after, .attribute-selectors .form-control input:checked[type="file"] ~ .control-label-color .color::after, .attribute-selectors .form select:checked ~ .control-label-color .color::after, .form .attribute-selectors select:checked ~ .control-label-color .color::after, .attribute-selectors .form-control select:checked ~ .control-label-color .color::after, .form-control .attribute-selectors select:checked ~ .control-label-color .color::after, .attribute-selectors .form textarea:checked ~ .control-label-color .color::after, .form .attribute-selectors textarea:checked ~ .control-label-color .color::after, .attribute-selectors .form-control textarea:checked ~ .control-label-color .color::after, .form-control .attribute-selectors textarea:checked ~ .control-label-color .color::after {
  content: "";
  width: 14px;
  height: 6px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  left: 9px;
  top: 11px;
  transform: rotate(-45deg);
}

.attribute-selectors .color {
  position: relative;
}

.rating {
  display: inline-flex;
  margin-bottom: 0;
}

.rate {
  font-size: 0.8rem;
  color: var(--txt-gray);
}

.rate a {
  color: currentColor;
}

.rate a:hover {
  color: var(--brand-color);
}

.rate-item {
  white-space: nowrap;
}

.rate-item::after {
  content: attr(data-count);
}

.rate-item + .rate-item {
  margin-left: 1rem;
}

.available-form {
  margin: 1.5rem 0;
}

.available-form p {
  font-size: 0.8rem;
}

.available-form .input-group {
  max-width: 240px;
  border: solid 1px var(--border-color);
  border-radius: 4px;
}

.available-form .input-group:focus, .available-form .input-group:hover {
  border-color: var(--txt-body);
}

.available-form .input-group .form-control {
  border: none;
  border-radius: 4px;
  height: 56px;
  font-size: 1rem;
  outline: none;
}

.available-form .input-group .form-control:focus {
  outline: none;
}

.available-form .input-group input.btn, .available-form .input-group .form select.btn, .form .available-form .input-group select.btn, .available-form .input-group .form-control select.btn, .form-control .available-form .input-group select.btn, .available-form .input-group .form textarea.btn, .form .available-form .input-group textarea.btn, .available-form .input-group .form-control textarea.btn, .form-control .available-form .input-group textarea.btn {
  height: 56px;
  border-radius: 4px;
  border: none;
  background-color: transparent;
  color: var(--brand-color);
  box-shadow: none;
  font-weight: 500;
  text-transform: capitalize;
  outline: none;
}

.available-form .input-group input.btn:focus, .available-form .input-group .form select.btn:focus, .form .available-form .input-group select.btn:focus, .available-form .input-group .form-control select.btn:focus, .form-control .available-form .input-group select.btn:focus, .available-form .input-group .form textarea.btn:focus, .form .available-form .input-group textarea.btn:focus, .available-form .input-group .form-control textarea.btn:focus, .form-control .available-form .input-group textarea.btn:focus {
  color: var(--txt-body);
  background-color: transparent;
  outline: none;
}

.available-form .input-group input.btn:hover, .available-form .input-group .form select.btn:hover, .form .available-form .input-group select.btn:hover, .available-form .input-group .form-control select.btn:hover, .form-control .available-form .input-group select.btn:hover, .available-form .input-group .form textarea.btn:hover, .form .available-form .input-group textarea.btn:hover, .available-form .input-group .form-control textarea.btn:hover, .form-control .available-form .input-group textarea.btn:hover {
  color: var(--txt-body);
}

.product-add-to-cart {
  display: flex;
  align-items: center;
}

.product-add-to-cart .btn {
  padding: 0.625rem 2rem;
  display: block;
  font-size: 1rem;
}

@media (max-width: 1199.98px) {
  .product-add-to-cart .btn {
    padding: 0.5rem 1.75rem;
  }
}

@media (max-width: 1199.98px) {
  .product-add-to-cart .btn {
    font-size: 0.875rem;
  }
}

.product-add-to-cart .btn svg {
  fill: currentColor;
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 5px;
}

.product-add-to-cart .add-wishlist {
  border: solid 1px var(--border-color);
  margin-left: 1rem;
  padding: 0.625rem 0.875rem;
}

@media (max-width: 1199.98px) {
  .product-add-to-cart .add-wishlist {
    padding: 0.5rem;
  }
}

.product-add-to-cart .add-wishlist:hover {
  border-color: #aa66cc;
}

.product-add-to-cart .add-wishlist.active, .product-add-to-cart .add-wishlist.nice-select.open {
  background-color: #aa66cc;
  color: #fff;
  border-color: transparent;
}

.avatar {
  position: relative;
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  font-size: 0.625rem;
}

.avatar:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background-image: url(../img/masks/avatar-status.svg), url(../img/masks/avatar-group.svg), url(../img/masks/avatar-group-hover.svg), url(../img/masks/avatar-group-hover-last.svg);
}

.avatar-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.avatar-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  -o-object-fit: cover;
     object-fit: cover;
}

.avatar-offline::before,
.avatar-online::before {
  content: "";
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 20%;
  height: 20%;
  border-radius: 50%;
}

.avatar-offline .avatar-img,
.avatar-online .avatar-img {
  -webkit-mask-image: url(../img/masks/avatar-status.svg);
          mask-image: url(../img/masks/avatar-status.svg);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}

.avatar-online::before {
  background-color: #28bb74;
}

.avatar-offline::before {
  background-color: #909090;
}

.avatar-xs {
  width: 1rem;
  height: 1rem;
  font-size: 0.33333rem;
}

.avatar-sm {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.5rem;
}

.avatar-lg {
  width: 3rem;
  height: 3rem;
  font-size: 0.75rem;
}

.avatar-xl {
  width: 4rem;
  height: 4rem;
  font-size: 1.33333rem;
}

.avatar-xxl {
  width: 4rem;
  height: 4rem;
  font-size: 1.33333rem;
}

@media (min-width: 768px) {
  .avatar-xxl {
    width: 6.25rem;
    height: 6.25rem;
    font-size: 2.08333rem;
  }
}

.avatar.avatar-4by3 {
  width: 2.5rem;
}

.avatar-xs.avatar-4by3 {
  width: 1.33333rem;
}

.avatar-sm.avatar-4by3 {
  width: 2rem;
}

.avatar-lg.avatar-4by3 {
  width: 3rem;
}

.avatar-xl.avatar-4by3 {
  width: 5.33333rem;
}

.avatar-xxl.avatar-4by3 {
  width: 8.33333rem;
}

.avatar-group {
  display: inline-flex;
}

.avatar-group .avatar + .avatar {
  margin-left: -0.46875rem;
}

.avatar-group .avatar-xs + .avatar-xs {
  margin-left: -0.25rem;
}

.avatar-group .avatar-sm + .avatar-sm {
  margin-left: -0.375rem;
}

.avatar-group .avatar-lg + .avatar-lg {
  margin-left: -0.5625rem;
}

.avatar-group .avatar-xl + .avatar-xl {
  margin-left: -1rem;
}

.avatar-group .avatar-xxl + .avatar-xxl {
  margin-left: -1.5625rem;
}

.avatar-group .avatar:not(:last-child) {
  -webkit-mask-image: url(../img/masks/avatar-group.svg);
          mask-image: url(../img/masks/avatar-group.svg);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}

.avatar-group .avatar:hover {
  -webkit-mask-image: none;
          mask-image: none;
  z-index: 1;
}

.avatar-group .avatar:hover + .avatar {
  -webkit-mask-image: url(../img/masks/avatar-group-hover.svg);
          mask-image: url(../img/masks/avatar-group-hover.svg);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}

.avatar-group .avatar:hover + .avatar:last-child {
  -webkit-mask-image: url(../img/masks/avatar-group-hover-last.svg);
          mask-image: url(../img/masks/avatar-group-hover-last.svg);
}

.shipping-pickup ul > li {
  border-radius: 4px;
  border: solid 1px var(--border-color);
  padding: 1rem;
  margin: 1rem 0;
}

.shipping-pickup ul > li ul li {
  padding: 0;
  border: none;
  margin-left: 1rem;
}

.shipping-pickup .detail {
  padding-right: 1rem;
}

.pickup-slider {
  text-align: center;
  padding: 0 4rem;
}

.list-media {
  display: flex;
  flex-wrap: wrap;
  margin: 1rem 0 0 0;
  flex-wrap: wrap;
  align-items: stretch;
}

.list-media li {
  max-width: 48px;
  flex: 0 0 48px;
  height: 48px;
  border: solid 1px var(--border-color);
  border-radius: 6px;
  padding: 0;
  margin-right: 12px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--txt-gray);
  position: relative;
}

.list-media li.remove-able {
  margin-right: 1rem;
}

.list-media li a {
  height: 100%;
  display: flex;
  align-items: center;
}

.list-media li img {
  max-height: 100%;
  max-width: 48px;
  height: auto;
}

.list-media li .btn {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: var(--bg-gray);
  position: absolute;
  top: -10px;
  right: -10px;
  border-color: transparent;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
}

.list-media li .btn i {
  color: var(--dark);
}

.list-media li.more {
  cursor: pointer;
  background-color: var(--bg-gray);
  font-weight: 500;
}

.list-media li:last-child {
  margin: 0;
}

.list-media .remove {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: block;
  background: var(--bg-white);
  position: absolute;
  top: -10px;
  right: -10px;
  border-color: transparent;
  min-width: inherit;
  margin: 0;
  padding: 0;
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.05), 0px 4px 5px 0px rgba(0, 0, 0, 0.05), 0px 1px 10px 0px rgba(0, 0, 0, 0.05);
}

.list-media .upload {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.list-media .upload:hover {
  border-color: var(--txt-body);
  color: var(--txt-body);
  cursor: pointer;
}

.list-media .upload input[type="file"], .list-media .upload .form select[type="file"], .form .list-media .upload select[type="file"], .list-media .upload .form-control select[type="file"], .form-control .list-media .upload select[type="file"], .list-media .upload .form textarea[type="file"], .form .list-media .upload textarea[type="file"], .list-media .upload .form-control textarea[type="file"], .form-control .list-media .upload textarea[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  padding: 0;
  width: 100%;
  cursor: pointer;
}

.list-services {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: solid 1px var(--border-color);
  border-bottom: solid 1px var(--border-color);
  color: var(--txt-gray);
}

.list-services ul {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.list-services ul li {
  flex: 1;
  padding: 1rem;
}

.list-services__box {
  font-size: 0.8rem;
  text-align: center;
  min-width: 120px;
}

.list-services__box .icon {
  margin: 0 auto;
  margin-bottom: 1rem;
  display: block;
}

.list-services__box .icon .svg {
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
  display: block;
  fill: var(--brand-color);
}

.list-services__box h6 {
  color: var(--txt-gray);
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 0.875rem;
}

.btn-group .dropdown-item {
  font-size: 0.875rem;
  padding: 0.5rem 1.2rem;
}

.video-slider {
  position: relative;
}

.video-slider > li {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-slider > li > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.write-review h6 {
  margin: 0;
  font-size: 1rem;
}

.write-review .c-rating button {
  width: 2rem;
  height: 2rem;
}

.write-review__purchase {
  margin-bottom: 2rem;
}

.write-review__purchase .img-fluid {
  max-width: 40px;
}

.write-review__purchase .title {
  font-size: 1rem;
  font-weight: 400;
}

.write-review__rate, .write-review__about {
  margin-bottom: 2rem;
}

.rating {
  --rating-bg: #ddd;
  --rating-fg: #ffd700;
  --size: 0.75rem;
  --space: 0.25em;
  position: relative;
  display: inline-flex;
}

.rating-action, .rating-view {
  display: inline-flex;
}

.rating-action .icon, .rating-view .icon {
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  padding: var(--space);
  box-sizing: content-box;
}

.rating-action, .rating-view {
  flex-direction: row-reverse;
}

.rating-action .icon, .rating-view .icon {
  fill: #ddd;
  stroke: #ddd;
}

.rating-action[data-rating="1"] .icon:nth-last-child(1),
.rating-action[data-rating="1"] .icon:nth-last-child(1) ~ .icon, .rating-view[data-rating="1"] .icon:nth-last-child(1),
.rating-view[data-rating="1"] .icon:nth-last-child(1) ~ .icon {
  fill: var(--rating-fg);
  stroke: var(--rating-fg);
}

.rating-action[data-rating="2"] .icon:nth-last-child(2),
.rating-action[data-rating="2"] .icon:nth-last-child(2) ~ .icon, .rating-view[data-rating="2"] .icon:nth-last-child(2),
.rating-view[data-rating="2"] .icon:nth-last-child(2) ~ .icon {
  fill: var(--rating-fg);
  stroke: var(--rating-fg);
}

.rating-action[data-rating="3"] .icon:nth-last-child(3),
.rating-action[data-rating="3"] .icon:nth-last-child(3) ~ .icon, .rating-view[data-rating="3"] .icon:nth-last-child(3),
.rating-view[data-rating="3"] .icon:nth-last-child(3) ~ .icon {
  fill: var(--rating-fg);
  stroke: var(--rating-fg);
}

.rating-action[data-rating="4"] .icon:nth-last-child(4),
.rating-action[data-rating="4"] .icon:nth-last-child(4) ~ .icon, .rating-view[data-rating="4"] .icon:nth-last-child(4),
.rating-view[data-rating="4"] .icon:nth-last-child(4) ~ .icon {
  fill: var(--rating-fg);
  stroke: var(--rating-fg);
}

.rating-action[data-rating="5"] .icon:nth-last-child(5),
.rating-action[data-rating="5"] .icon:nth-last-child(5) ~ .icon, .rating-view[data-rating="5"] .icon:nth-last-child(5),
.rating-view[data-rating="5"] .icon:nth-last-child(5) ~ .icon {
  fill: var(--rating-fg);
  stroke: var(--rating-fg);
}

.rating-action .icon:hover,
.rating-action .icon:hover ~ .icon {
  fill: var(--rating-fg);
  stroke: var(--rating-fg);
}

.rating:not([data-readonly]) .rating-action .icon {
  cursor: pointer;
}

.rating:not([data-readonly]) .rating-action .icon:hover,
.rating:not([data-readonly]) .rating-action .icon:hover ~ .icon {
  fill: var(--rating-fg);
  stroke: var(--rating-fg);
}

.btns-group {
  display: flex;
  flex-wrap: wrap;
}

.btns-group > * {
  margin-bottom: 5px;
}

.btns-group > *:not(:last-child) {
  margin-right: 1rem;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
}

.video-wrap > * {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.overall-rating {
  background-color: var(--bg-gray);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767.98px) {
  .overall-rating {
    padding: 1.125rem;
    flex-direction: column;
  }
}

.overall-rating__count {
  display: block;
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.overall-rating__count span {
  font-size: 1rem;
  color: var(--txt-gray);
}

.overall-rating p {
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

.product-review .rating {
  --size: 1.1rem;
  margin-left: -0.25em;
}

.product-review_head .section-content {
  display: flex;
  justify-content: space-between;
  flex-direction: inherit;
}

@media (max-width: 767.98px) {
  .product-review_head .section-content {
    flex-direction: column;
  }
}

@media (min-width: 1200px) {
  .product-review_head .btns-group .btn {
    font-size: 1rem;
    padding: 6px 14px;
  }
}

.product-review_head .btns-group .dropdown-toggle::after {
  width: 10px;
  height: 10px;
  border: none;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-45deg);
  vertical-align: middle;
  margin-top: -6px;
  margin-left: 15px;
}

.product-review_body .no-data-found img {
  max-width: 250px;
}

.product-available-msg {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.9;
}

.product-available-msg span {
  font-weight: normal;
  display: block;
}

.product-rating__star {
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  text-align: center;
}

.product-rating__star svg {
  fill: #ffd700;
}

.product-rating__counter {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  padding-top: 0.625rem;
  text-align: center;
}

.index-rating-bar {
  display: flex;
  font-size: 0.9rem;
  color: var(--txt-gray);
}

.index-rating-bar li {
  display: flex;
  align-items: center;
  margin: 4px 0;
}

.index-rating-bar .index-rating {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.index-rating-bar .index-rating .index-ratinglevel {
  min-width: 15px;
}

.index-rating-bar .index-rating .svg {
  fill: var(--txt-gray);
  opacity: 0.5;
}

.index-rating-bar .progress {
  background: #ddd;
  width: 200px;
  height: 8px;
  border-radius: 0;
  border: none;
  margin: 0 0.5rem;
}

.index-rating-bar .progress span {
  background: #ffd700;
}

.index-rating-bar progress {
  display: inline-block;
  margin: 0 0.5rem;
  border: none;
  width: 200px;
  height: 8px;
}

.index-rating-bar progress[value] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
}

.index-rating-bar progress[data-rating="4"], .index-rating-bar progress[data-rating="5"] {
  color: var(--brand-color);
}

.index-rating-bar .index-count {
  font-size: 0.8rem;
}

.rating-by-percentage {
  display: flex;
  padding-left: 2rem;
}

.rating-by-percentage li {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 1rem 2rem;
}

.product_price {
  display: flex;
}

.product_price .sale-price {
  color: var(--txt-gray);
  padding-left: 0.5rem;
}

.socail-follow--popup .icon {
  margin: 0.25rem 0.25rem 0.5rem 0.25rem !important;
  border: solid 1px var(--border-color);
}

.bg-contact {
  padding: 2rem 0;
}

.contact-us .container {
  max-width: 1200px;
}

.contact-us .contact-head {
  border-radius: 7px;
  overflow: hidden;
  box-shadow: var(--shadow-rgb);
  position: relative;
  z-index: 5;
}

.contact-us .title {
  margin-bottom: 30px;
}

.contact-us .contant-inner-title {
  margin-bottom: 45px;
}

.contact-us .contant-inner-title h4 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
  text-transform: capitalize;
}

.contact-us .contant-inner-title p {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 23px;
  margin-top: 10px;
  display: block;
}

.contact-us .single-head {
  padding: 50px;
  height: 100%;
  background: var(--brand-color);
  color: var(--brand-color-inverse);
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.contact-us .single-info {
  text-align: left;
  margin-bottom: 16px;
  padding-left: 40px;
  position: relative;
}

.contact-us .single-info i {
  color: currentColor;
  font-size: 18px;
  display: inline-block;
  margin-right: 20px;
  position: absolute;
  left: 0;
  top: 2px;
}

.contact-us .single-info ul {
  display: inline-block;
}

.contact-us .single-info ul li {
  font-weight: 500;
  display: inline-block;
  font-size: 13px;
}

.contact-us .single-info ul li:last-child {
  margin-bottom: 0;
}

.contact-us .single-info ul li a {
  font-weight: 500;
  display: inline-block;
  font-size: 13px;
}

.contact-us .single-info ul li a:hover {
  color: currentColor;
}

.contact-us .contact-social {
  display: block;
  margin-top: 65px;
}

.contact-us .contact-social h5 {
  color: currentColor;
  font-weight: 600;
  font-size: 18px;
}

.contact-us .contact-social ul {
  display: inline-block;
  position: relative;
  left: -9px;
}

.contact-us .contact-social ul li {
  display: inline-block;
  margin-right: 5px;
}

.contact-us .contact-social ul li:last-child {
  margin-right: 0;
}

.contact-us .contact-social ul li a {
  color: currentColor;
  font-size: 17px;
  position: relative;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  display: block;
  transition: all 0.4s ease;
  overflow: hidden;
}

.contact-us .contact-social ul li a span {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -15px;
  margin-top: -15px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  display: block;
  transition: all 0.3s ease;
}

.contact-us .contact-social ul li a:hover .icon-1 {
  top: -15px;
}

.contact-us .contact-social ul li a .icon-2 {
  top: 50px;
}

.contact-us .contact-social ul li a:hover .icon-2 {
  top: 15px;
}

.contact-us .contact-social ul li a:hover {
  color: currentColor;
}

.contact-us .single-info .title {
  margin-bottom: 10px;
  font-weight: 500;
  color: currentColor;
  font-size: 18px;
}

.contact-us .single-info .title span {
  display: block;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 500;
}

.contact-us .form-main {
  padding: 50px 50px 50px 30px;
}

.map-section {
  background-color: #fff;
  margin-top: 50px;
  padding-bottom: 100px;
}

.map-section .map-container {
  box-shadow: 0 10px 30px rgba(111, 111, 111, 0.1);
  padding: 20px;
  border-radius: 7px;
}

.cart-page {
  position: relative;
  overflow-x: hidden;
  border-bottom: solid 1px var(--border-color);
}

.cart-page:after {
  content: "";
  border-left: solid 1px var(--border-color);
  position: absolute;
  left: calc(50% - -146px);
  top: 0;
  bottom: 0;
  background: var(--bg-gray);
  z-index: -1;
  width: 50%;
}

@media (max-width: 1199.98px) {
  .cart-page:after {
    content: normal;
  }
}

.cart-page .cart-title {
  font-weight: 300;
  font-size: 1.2rem;
  margin-top: 1.2rem;
  margin-bottom: 0;
}

.cart-page .cart-blocks .list-cart {
  margin-bottom: 3rem;
}

.table--cart {
  border: solid 1px var(--border-color);
}

.table--cart th {
  font-weight: 700;
}

.table--cart th,
.table--cart td {
  padding: 1rem;
  border-top: solid 1px var(--border-color);
  border-bottom: solid 1px var(--border-color);
}

.table--cart .product-img {
  min-width: 30px;
  max-width: 60px;
}

.promo-code {
  max-width: 400px;
  display: flex;
  align-items: center;
}

.promo-code form {
  display: flex;
  flex: 1;
}

.promo-code form .promo-input {
  width: auto;
  height: 40px;
  line-height: 1;
}

.product-line-info .label, .product-line-info .value {
  font-size: 0.8rem;
}

.product-line-info .value {
  color: var(--txt-body);
}

.list-cart {
  font-size: 0.9rem;
}

.list-cart .list-group-item {
  background-color: var(--bg-white);
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

@media (max-width: 767.98px) {
  .list-cart .list-group-item {
    flex-direction: column;
  }
}

.list-cart .list-group-item .row {
  align-items: flex-start;
}

.list-cart .list-group-item.out-of-stock {
  opacity: 0.5;
  filter: grayscale(1);
}

.list-cart .product-quantity {
  text-align: center;
  margin: 0 1rem;
}

@media (max-width: 991.98px) {
  .list-cart .product-quantity {
    margin: 0;
  }
}

.list-cart .product-quantity .remove {
  margin: 0.5rem 0;
  display: inline-block;
}

.list-cart .product-quantity .side-price {
  font-weight: 500;
  font-size: 0.8rem;
  margin-left: 10px;
}

.list-cart .product-quantity-price {
  display: flex;
  align-items: center;
}

.list-cart .product-price {
  margin: 0 1rem;
  text-align: right;
  /* flex: 0 0 110px;
        max-width: 110px;*/
}

@media (max-width: 767.98px) {
  .list-cart .product-price {
    flex: 1;
    max-width: none;
    text-align: inherit;
    margin: 0;
  }
}

.list-cart .product-action {
  flex: 0 0 5%;
  max-width: 5%;
}

@media (max-width: 767.98px) {
  .list-cart .product-action {
    position: absolute;
    top: 1rem;
    right: 1rem;
    flex: 1;
    max-width: none;
  }
}

.list-cart .product-action .list-actions {
  justify-content: flex-end;
}

.list-cart .list-add {
  padding-top: 8px;
  display: flex;
  align-items: center;
  color: var(--txt-gray);
}

.list-cart .list-add li {
  margin-right: 10px;
}

.list-cart .list-add li:last-child {
  margin: 0;
}

.list-cart .list-add .svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.list-cart .list-add .active .svg, .list-cart .list-add .nice-select.open .svg {
  width: 1rem;
  height: 1rem;
  fill: var(--brand-color);
}

.list-cart-page {
  margin-bottom: 3rem;
}

.list-cart-page .product-quantity {
  flex: 0 0 15%;
  max-width: 15%;
}

@media (max-width: 767.98px) {
  .list-cart-page .product-quantity {
    flex: auto;
    max-width: none;
    margin-bottom: 1rem;
  }
}

.list-cart-page .product-price {
  flex: 0 0 15%;
  max-width: 15%;
}

@media (max-width: 767.98px) {
  .list-cart-page .product-price {
    flex: auto;
    max-width: none;
  }
}

.list-cart-double {
  flex-direction: row;
  flex-wrap: wrap;
}

.list-cart-double li {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 1rem;
  border: none;
  border-top: solid 1px var(--border-color);
}

.list-cart-double li:nth-child(1), .list-cart-double li:nth-child(2) {
  border-top: none;
}

.list-cart-double li:last-child {
  flex: 1;
  max-width: none;
}

.list-cart-checkout .list-group-item {
  background: none;
  border: none;
  padding: 1rem 0;
  flex-direction: row;
}

.list-cart-checkout .list-group-item .img-fluid {
  max-width: 40px;
}

.list-cart-checkout .list-group-item .product-price {
  margin-right: 0;
  padding-top: 0;
  text-align: right;
}

.list-cart-return .list-group-item {
  flex-direction: column;
}

.list-cart-return .list-group-item:last-child {
  border-bottom: none;
}

.list-cart-return .list-group-item .product-profile__thumbnail img {
  max-width: 70px;
}

.list-cart-return .list-group-item .product-quantity {
  margin: 0;
  margin-bottom: 1rem;
  justify-content: flex-end;
}

@media (max-width: 991.98px) {
  .list-cart-return .list-group-item .product-quantity {
    justify-content: inherit;
  }
}

.list-cart-return .list-group-item .product-price {
  flex: none;
  max-width: none;
  margin: 0;
  margin-bottom: 2rem;
  text-align: inherit;
}

.list-cart-order .product-thumbnail {
  max-width: 48px;
  flex: 0 0 48px;
}

.list-cart-saved-later .list-group-item .action .link {
  color: var(--txt-gray);
}

.list-cart-saved-later .list-group-item .action .link:before, .list-cart-saved-later .list-group-item .action .link:after {
  display: none;
}

.product-price {
  font-weight: 600;
  color: var(--brand-color);
}

.product-price del {
  color: var(--txt-body);
  font-size: 0.8rem;
  font-weight: 300;
}

.product-profile {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  padding-right: 1rem;
  /*max-width: 300px;*/
  min-width: 0px;
}

@media (max-width: 991.98px) {
  .product-profile {
    margin-bottom: 1rem;
  }
}

.product-profile__thumbnail {
  position: relative;
  margin-right: 15px;
}

.product-profile__thumbnail img {
  max-width: 50px;
  border-radius: 4px;
  border: solid 1px var(--border-color);
}

.product-profile__thumbnail .product-qty {
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1rem;
  white-space: nowrap;
  text-align: center;
  border-radius: 1.75rem;
  background-color: rgba(114, 114, 114, 0.9);
  color: #fff;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.1rem;
  position: absolute;
  right: -0.25rem;
  top: -0.25rem;
  z-index: 1;
}

.product-profile__data {
  flex: 1;
  min-width: 0px;
}

.product-profile__data .title {
  font-weight: 500;
  font-size: 0.8rem;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-profile__data .title a {
  color: var(--txt-body);
}

.product-profile__data .options {
  font-size: 0.75rem;
  color: var(--txt-gray);
}

.product-profile__btn {
  margin-top: 5px;
  font-size: 0.8rem;
}

.cart-total {
  font-size: 0.8rem;
  color: var(--txt-gray);
}

.cart-total .list-group .list-group-item {
  display: flex;
  justify-content: space-between;
  border: none;
  border-radius: 0;
  padding: 0.5rem 0;
}

.cart-total .list-group .list-group-item.hightlighted {
  font-weight: 600;
  padding: 1rem 0;
  margin-top: 1rem;
  border-top: solid 1px var(--border-color);
}

.cart-total .list-group .list-group-item .label, .cart-total .list-group .list-group-item .product-line-info .value, .product-line-info .cart-total .list-group .list-group-item .value {
  color: currentColor;
  font-size: inherit;
  padding: 0;
  display: flex;
  align-items: center;
}

.cart-total .coupons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.cart-total .coupons .links {
  color: var(--brand-color);
  font-weight: 500;
  border: none;
  background: none;
  text-decoration: underline;
  line-height: 1.4;
}

.cart-total .coupons h6 {
  font-size: 0.8rem;
  margin: 0;
  padding: 0;
}

.cart-total .coupons .svg {
  margin-right: 5px;
}

.cart-total .coupons-applied {
  border: dashed 1px #1dc9b7;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #1dc9b7;
}

.cart-total .coupons-applied.error {
  border-color: #fd397a;
  color: #fd397a;
}

.cart-total .coupons-applied h6 {
  font-weight: 500;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--txt-body);
}

.cart-total .coupons-applied p {
  font-size: 0.8rem;
}

.cart-total .applied {
  display: flex;
  align-items: center;
  border: dashed 1px currentColor;
  border-radius: 3px;
  padding: 1px 10px;
  color: #1dc9b7;
  margin: 0 4px;
}

.cart-total .applied .svg {
  margin-left: 10px;
}

.cart-total .included {
  text-align: center;
  font-weight: 400;
  font-size: 0.8rem;
  padding: 1rem 0;
  color: var(--txt-gray);
}

.sticky-summary {
  position: sticky;
  top: 0px;
}

.sticky-summary .card {
  background: none;
  border: none;
}

.buttons-group {
  display: flex;
  justify-content: space-between;
}

.buttons-group .btn {
  flex: 0 0 48%;
  max-width: 48%;
  width: 100%;
  display: block;
}

.gift-wrap {
  margin-top: 1.5rem;
  background-color: var(--bg-white);
}

.gift-wrap .list-group-item {
  display: flex;
  justify-content: space-between;
}

.gift-wrap__left {
  display: flex;
  align-items: center;
}

.gift-wrap__icon {
  margin-right: 1rem;
}

.gift-wrap__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.gift-wrap__text span:first-child {
  padding-right: 1rem;
}

.strong {
  font-weight: 500;
}

.secure {
  text-align: center;
}

.secure p {
  margin: 0.5rem 0;
  font-weight: 400;
  font-size: 0.8rem;
}

.secure .payment-list {
  margin: 0;
}

.row-coupon .row-coupon__left {
  max-width: 10%;
  flex: 0 0 10%;
  padding-top: 10px;
}

.list-promo {
  color: var(--txt-gray);
}

.list-promo .radio {
  width: 100%;
}

.list-promo__name {
  color: var(--brand-color);
  border: dashed 2px var(--brand-color);
  border-radius: 4px;
  padding: 0.2rem 1rem;
  font-weight: 500;
  display: inline-block;
  font-size: 0.8rem;
}

.list-promo__code {
  font-weight: 500;
  padding-bottom: 0.5rem;
  display: block;
}

.list-promo__text {
  font-size: 0.75rem;
}

.list-promo .coupon-label {
  border: solid 1px #1dc9b7;
  color: #1dc9b7;
  padding: 0px 6px;
  line-height: 1;
  border-radius: 30px;
  font-size: 0.75rem;
}

.list-promo .disabled {
  opacity: 0.5;
  filter: grayscale(1);
}

.row-coupon {
  display: flex;
}

.shiporpickup {
  position: relative;
  z-index: 1;
  margin-bottom: -2px;
  border-radius: 4px;
}

.shiporpickup ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: solid 1px var(--border-color);
  border-radius: 4px 4px 0 0;
}

.shiporpickup ul li {
  background: var(--bg-white);
  color: var(--txt-gray);
  flex: 1;
}

.shiporpickup ul li:first-child {
  border-top-left-radius: 4px;
}

.shiporpickup ul li:last-child {
  border-top-right-radius: 4px;
}

.shiporpickup .control-label {
  padding: 1.2rem 1rem;
  margin: 0;
  display: block;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  position: relative;
}

@media (max-width: 991.98px) {
  .shiporpickup .control-label {
    padding: 1rem 0rem;
  }
}

.shiporpickup input[type="radio"], .shiporpickup .form select[type="radio"], .form .shiporpickup select[type="radio"], .shiporpickup .form-control select[type="radio"], .form-control .shiporpickup select[type="radio"], .shiporpickup .form textarea[type="radio"], .form .shiporpickup textarea[type="radio"], .shiporpickup .form-control textarea[type="radio"], .form-control .shiporpickup textarea[type="radio"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.shiporpickup input[type="radio"]:checked + .control-label, .shiporpickup .form input[type="radio"]:checked[type="text"] + .control-label, .shiporpickup .form-control input[type="radio"]:checked[type="text"] + .control-label, .shiporpickup .form input[type="radio"]:checked[type="email"] + .control-label, .shiporpickup .form-control input[type="radio"]:checked[type="email"] + .control-label, .shiporpickup .form input[type="radio"]:checked[type="phone"] + .control-label, .shiporpickup .form-control input[type="radio"]:checked[type="phone"] + .control-label, .shiporpickup .form input[type="radio"]:checked[type="search"] + .control-label, .shiporpickup .form-control input[type="radio"]:checked[type="search"] + .control-label, .shiporpickup .form input[type="radio"]:checked[type="password"] + .control-label, .shiporpickup .form-control input[type="radio"]:checked[type="password"] + .control-label, .shiporpickup .form input[type="radio"]:checked[type="date"] + .control-label, .shiporpickup .form-control input[type="radio"]:checked[type="date"] + .control-label, .shiporpickup .form input[type="radio"]:checked[type="url"] + .control-label, .shiporpickup .form-control input[type="radio"]:checked[type="url"] + .control-label, .shiporpickup .form input[type="radio"]:checked[type="tel"] + .control-label, .shiporpickup .form-control input[type="radio"]:checked[type="tel"] + .control-label, .shiporpickup .form input[type="radio"]:checked[type="number"] + .control-label, .shiporpickup .form-control input[type="radio"]:checked[type="number"] + .control-label, .shiporpickup .form input[type="radio"]:checked[type="file"] + .control-label, .shiporpickup .form-control input[type="radio"]:checked[type="file"] + .control-label, .shiporpickup .form select[type="radio"]:checked + .control-label, .form .shiporpickup select[type="radio"]:checked + .control-label, .shiporpickup .form-control select[type="radio"]:checked + .control-label, .form-control .shiporpickup select[type="radio"]:checked + .control-label, .shiporpickup .form textarea[type="radio"]:checked + .control-label, .form .shiporpickup textarea[type="radio"]:checked + .control-label, .shiporpickup .form-control textarea[type="radio"]:checked + .control-label, .form-control .shiporpickup textarea[type="radio"]:checked + .control-label {
  color: var(--brand-color);
}

.shiporpickup input[type="radio"]:checked + .control-label:after, .shiporpickup .form input[type="radio"]:checked[type="text"] + .control-label:after, .shiporpickup .form-control input[type="radio"]:checked[type="text"] + .control-label:after, .shiporpickup .form input[type="radio"]:checked[type="email"] + .control-label:after, .shiporpickup .form-control input[type="radio"]:checked[type="email"] + .control-label:after, .shiporpickup .form input[type="radio"]:checked[type="phone"] + .control-label:after, .shiporpickup .form-control input[type="radio"]:checked[type="phone"] + .control-label:after, .shiporpickup .form input[type="radio"]:checked[type="search"] + .control-label:after, .shiporpickup .form-control input[type="radio"]:checked[type="search"] + .control-label:after, .shiporpickup .form input[type="radio"]:checked[type="password"] + .control-label:after, .shiporpickup .form-control input[type="radio"]:checked[type="password"] + .control-label:after, .shiporpickup .form input[type="radio"]:checked[type="date"] + .control-label:after, .shiporpickup .form-control input[type="radio"]:checked[type="date"] + .control-label:after, .shiporpickup .form input[type="radio"]:checked[type="url"] + .control-label:after, .shiporpickup .form-control input[type="radio"]:checked[type="url"] + .control-label:after, .shiporpickup .form input[type="radio"]:checked[type="tel"] + .control-label:after, .shiporpickup .form-control input[type="radio"]:checked[type="tel"] + .control-label:after, .shiporpickup .form input[type="radio"]:checked[type="number"] + .control-label:after, .shiporpickup .form-control input[type="radio"]:checked[type="number"] + .control-label:after, .shiporpickup .form input[type="radio"]:checked[type="file"] + .control-label:after, .shiporpickup .form-control input[type="radio"]:checked[type="file"] + .control-label:after, .shiporpickup .form select[type="radio"]:checked + .control-label:after, .form .shiporpickup select[type="radio"]:checked + .control-label:after, .shiporpickup .form-control select[type="radio"]:checked + .control-label:after, .form-control .shiporpickup select[type="radio"]:checked + .control-label:after, .shiporpickup .form textarea[type="radio"]:checked + .control-label:after, .form .shiporpickup textarea[type="radio"]:checked + .control-label:after, .shiporpickup .form-control textarea[type="radio"]:checked + .control-label:after, .form-control .shiporpickup textarea[type="radio"]:checked + .control-label:after {
  content: "";
  background: var(--brand-color);
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}

.shiporpickup .svg {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  fill: currentColor;
}

@media (max-width: 767.98px) {
  .shiporpickup .svg {
    display: none;
  }
}

.shiporpickup .disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.info {
  flex: 1;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-gray);
  border-radius: 4px;
  font-size: 0.8rem;
  position: relative;
}

.info__inner {
  padding: 1.5rem;
  display: flex;
  align-items: center;
}

.info .svg {
  min-width: 1rem;
  width: 1rem;
  height: 1rem;
  margin-top: 4px;
  margin-right: 10px;
  fill: currentColor;
}

.info p {
  margin-right: 10px;
}

.info .list-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.save-later {
  margin-top: 0.5rem;
  line-height: 1;
  font-weight: 500;
  font-size: 0.75rem;
}

.save-later a:hover {
  color: var(--brand-color);
}

.gift-item {
  display: inline-flex;
  align-items: center;
}

.gift-item svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
  margin-left: .25rem;
  opacity: 0;
}

.gift-item.active, .gift-item.nice-select.open {
  color: #ff3a59;
}

.gift-item.active svg, .gift-item.nice-select.open svg {
  opacity: 1;
}

.txt-brand {
  color: var(--brand-color);
}

.txt-success {
  color: #1dc9b7;
}

.out-of-stock {
  background-color: #fff6e4;
  color: #bb7f00;
  border-radius: 3px;
  padding: 1rem;
  font-size: 0.8rem;
}

.checkout {
  overflow-x: hidden;
}

@media (min-width: 1200px) {
  .checkout .container {
    max-width: 1000px;
    padding-left: 0;
    padding-right: 0;
  }
}

.checkout .floated-txt .loginVia {
  font-size: 0.8rem;
  color: #999;
  display: block;
}

.checkout .floated-txt .loginVia:after {
  background-color: #999;
}

.checkout .floated-txt .loginVia .svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  margin-top: -1px;
  margin-right: 2px;
}

.header-checkout {
  background: var(--bg-white);
  background-size: cover;
  border-bottom: solid 1px var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 2;
}

.header-checkout_inner {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991.98px) {
  .header-checkout_inner {
    flex-direction: column;
  }
}

.header-checkout .logo-checkout-main {
  max-width: 120px;
  display: block;
  margin: 0;
}

@media (max-width: 991.98px) {
  .header-checkout .logo-checkout-main {
    max-width: 100px;
  }
}

.order-summary-toggle {
  background: var(--bg-gray);
  border: none;
  border-bottom: solid 1px var(--border-color);
  padding: 1rem 0;
  flex-shrink: 0;
  width: 100%;
}

.order-summary-toggle .order-summary-toggle__inner {
  display: flex;
  width: 100%;
}

.order-summary-toggle .order-summary-toggle__inner .order-summary-toggle__text {
  position: relative;
  text-transform: uppercase;
}

.order-summary-toggle .order-summary-toggle__inner .svg {
  width: 10px;
  height: 10px;
  margin: 0;
  fill: currentColor;
  transform: rotate(90deg);
  transition: all 0.5s ease;
}

.order-summary-toggle .order-summary-toggle__total-recap {
  text-align: right;
  flex: 1;
}

.order-summary--on .order-summary-toggle__text .svg {
  transform: rotate(-90deg);
}

@media (min-width: 1200px) {
  .order-summary-toggle {
    display: none;
  }
}

.content {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  min-height: calc(100vh - 116px);
}

@media (max-width: 1199.98px) {
  .content {
    height: auto;
  }
}

.content .container {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column-reverse;
}

@media (max-width: 1199.98px) {
  .content .container {
    padding: 0;
  }
}

@media (max-width: 991.98px) {
  .content .container {
    flex: none;
  }
}

@media (min-width: 1200px) {
  .content .container {
    flex-direction: row;
  }
}

@media (max-width: 1199.98px) {
  .content .main {
    padding: 1rem;
  }
}

@media (min-width: 1200px) {
  .content .main {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    background: none;
    height: auto;
    padding: 1rem 0;
    padding-top: 4rem;
    flex: 0 0 60%;
    max-width: 60%;
    padding-right: 5%;
    float: left;
  }
  .content .main__content {
    position: relative;
  }
}

@media (max-width: 1199.98px) {
  .content .sidebar {
    padding: 0 1rem;
    background-color: var(--bg-gray);
  }
}

@media (min-width: 1200px) {
  .content .sidebar {
    position: relative;
    color: #525252;
    flex: 0 0 40%;
    max-width: 40%;
    padding-top: 4rem;
    padding-left: 4rem;
    background-position: left top;
    float: right;
    border-left: solid 1px var(--border-color);
  }
}

.steps {
  position: relative;
}

@media (min-width: 1200px) {
  .steps {
    min-height: 455px;
  }
}

.steps .step {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transform: translateX(-72px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.steps .step.active, .steps .step.nice-select.open {
  opacity: 1;
  visibility: visible;
  height: auto;
  overflow: inherit;
  transform: translateX(0) scale(1);
  transition-delay: 0.4s;
}

.steps .step h5 {
  margin: 0;
  padding: 0;
}

.steps .step h6 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  padding: 0;
  font-size: 1rem;
}

.steps .step__section__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.steps .step__section__head__title {
  margin: 0;
}

.steps .step__section__head__title small {
  display: block;
  font-size: 0.8rem;
}

.steps .step__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.step-actions {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.step-actions .agree {
  margin: 1rem 0;
  margin-bottom: 2rem;
}

.step-actions .agree a {
  text-decoration: underline;
}

.step-actions .actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.login-quick {
  padding-bottom: 3rem;
}

.review-block {
  margin: 0 0 2rem 0;
  font-size: 0.8rem;
}

.review-block li {
  display: flex;
}

.review-block__label {
  flex: 0 0 125px;
  max-width: 125px;
  padding-right: 1rem;
  color: var(--txt-gray);
}

.review-block__content {
  flex: 1;
  padding-right: 1rem;
}

.review-block__content .selected-slot {
  font-weight: 500;
  padding-top: 0.5rem;
  display: block;
}

.order-summary {
  height: 0;
  visibility: hidden;
  display: none;
}

.order-summary--on .order-summary {
  display: block;
  height: auto;
  visibility: visible;
  padding-top: 1rem;
}

@media (min-width: 1200px) {
  .order-summary {
    height: auto;
    display: block;
    visibility: visible;
  }
  .order-summary h5 {
    margin: 0;
  }
}

.order-summary__sections {
  display: flex;
  flex-direction: column;
  /* height: calc(100vh - 8em);*/
  width: 100%;
}

.order-summary__sections .order-summary__section--product-list {
  display: flex;
  flex: 0 1 auto;
  overflow: hidden;
  margin-bottom: 1rem;
  padding: 0;
  position: relative;
}

.order-summary__sections .order-summary__section--product-list .order-summary__section__content {
  min-width: 100%;
  position: relative;
  max-height: 280px;
  padding-right: 0.5rem;
}

.v-divider:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  background: #efefef;
  width: 1px;
}

.shipping-section {
  border: solid 1px var(--border-color);
  border-radius: 4px;
  margin-bottom: 1rem;
}

.shipping-section .shipping-option {
  border-bottom: solid 1px var(--border-color);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shipping-section .custom-select {
  font-size: 0.8rem;
  border: none;
  background-color: var(--bg-gray);
}

.pick-section {
  margin-bottom: 1rem;
}

.pick-section .pickup-option {
  display: flex;
  flex-direction: column;
}

.pick-section .pickup-option__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 1200px) {
  .pick-section .pickup-option__list {
    max-height: 336px;
  }
}

.pick-section .pickup-option__list li {
  border-radius: 3px;
  border: dashed 1px var(--border-color);
  padding: 0.6rem 0;
}

.pick-section .pickup-option__list li.selected {
  font-weight: 500;
  border-style: solid;
}

.pick-section .pickup-option__list_label {
  padding: 1rem;
  display: flex;
}

.pick-section .pickup-option .pickup_time {
  margin-top: 2rem;
  display: grid;
  grid-gap: 1rem;
}

@media (min-width: 1200px) {
  .pick-section .pickup-option .pickup_time {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

.pick-section .pickup-option .pickup_time .calendar .pignose-calendar {
  width: 100%;
  max-width: inherit;
  background-color: transparent;
  border: solid 1px var(--border-color);
  box-shadow: none;
  border-radius: 3px;
  font-size: 0.7rem;
}

.pick-section .pickup-option .pickup_time .calendar .pignose-calendar .pignose-calendar-top {
  padding: 1.6em 0;
  box-shadow: none;
  border-bottom: solid 1px var(--border-color);
  background-color: transparent;
}

.pick-section .pickup-option .pickup_time .calendar .pignose-calendar .pignose-calendar-top .pignose-calendar-top-date {
  padding: 0.8em 0;
}

.pick-section .pickup-option .pickup_time .calendar .pignose-calendar .pignose-calendar-top .pignose-calendar-top-icon {
  position: relative;
}

.pick-section .pickup-option .pickup_time .calendar .pignose-calendar .pignose-calendar-top .pignose-calendar-top-icon:before {
  content: "";
  position: absolute;
  top: calc(50% - -5px);
  background: transparent;
  width: 10px;
  height: 10px;
  border: solid 1px var(--border-color);
  border-bottom: 0;
  border-right: 0;
  border-color: var(--txt-body);
}

.pick-section .pickup-option .pickup_time .calendar .pignose-calendar .pignose-calendar-top .pignose-calendar-top-icon.icon-arrow-left:before {
  transform: rotate(311deg);
}

.pick-section .pickup-option .pickup_time .calendar .pignose-calendar .pignose-calendar-top .pignose-calendar-top-icon.icon-arrow-right:before {
  transform: rotate(135deg);
}

.pick-section .pickup-option .pickup_time .calendar .pignose-calendar .pignose-calendar-unit {
  height: 2.8em;
}

.pick-section .pickup-option .lb-txt {
  font-size: 0.8rem;
  margin-top: -4px;
  color: var(--txt-gray);
}

.pick-section .pickup_time .calendar .xdsoft_datetimepicker .xdsoft_datepicker {
  width: 256px;
}

.pick-section .pickup_time .time-slot {
  display: grid;
  flex-wrap: wrap;
  grid-gap: 0.5rem;
}

.pick-section .pickup_time .time-slot li .control-input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.pick-section .pickup_time .time-slot li .control-input:checked + .control-label {
  background: var(--brand-color);
  border-color: var(--brand-color);
  color: var(--brand-color-inverse);
}

.pick-section .pickup_time .time-slot li .control-label {
  padding: 5px 8px;
  display: block;
  background: var(--bg-white);
  border: dashed 1px var(--border-color);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s ease;
}

.pick-section .pickup_time .time-slot li .control-label .time {
  display: block;
  text-align: center;
}

.payment-area .nav-payments {
  display: flex;
  border: solid 1px #888;
  border-radius: 4px;
  margin: 1rem 0;
}

.payment-area .nav-payments li {
  flex: 1;
  font-size: 0.85rem;
  text-align: center;
}

.payment-area .nav-payments li a {
  padding: 0.6rem 0.8rem;
  color: #888;
}

.payment-area .nav-payments li a.active, .payment-area .nav-payments li a.nice-select.open {
  background: #888;
  color: #fff;
}

.payment-area .tab-content {
  margin-bottom: 1.5rem;
  border: solid 1px var(--border-color);
  border-radius: 4px;
}

.payment-area .paypal-data {
  text-align: center;
  padding: 1rem;
}

.payment-area .paypal-data p {
  padding: 1rem 0;
  font-size: 0.8rem;
}

.payment-area .order-notes {
  border-top: solid 1px var(--border-color);
}

.payment-area .order-notes textarea {
  border: none;
  padding: 1rem;
  height: 100px;
}

.place-order {
  text-align: center;
  font-size: 0.8rem;
  padding: 2rem 0;
}

.place-order p {
  padding-bottom: 1rem;
}

.place-order p a {
  color: var(--brand-color);
}

.rewards {
  background-color: var(--bg-gray);
  border-radius: 4px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.rewards__points {
  margin-bottom: 1.5rem;
}

.rewards__points ul {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  align-items: center;
}

.rewards__points ul li {
  text-align: center;
  border-radius: 4px;
  padding: 1rem;
  border: solid 1px var(--border-color);
  background-color: var(--bg-white);
  height: 100%;
}

.rewards__points ul li p {
  font-size: 0.8rem;
}

.rewards__points ul li .count {
  font-weight: 500;
  font-size: 1.3rem;
}

.rewards .info {
  font-weight: 300;
  margin-top: 0.7rem;
  padding: 0;
  display: flex;
  flex-wrap: unset;
  align-items: flex-start;
}

.earn-points {
  background-color: var(--bg-gray);
  border-radius: 4px;
  padding: 0.7rem;
  text-align: center;
}

.earn-points .svg {
  margin-right: 5px;
}

@media (min-width: 768px) {
  .addresses-wrapper {
    max-height: 400px;
  }
}

.list-addresses {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  overflow: hidden;
}

.list-addresses .list-group-item {
  padding: 0;
  margin: 0;
  position: relative;
  border: none;
}

.list-addresses .list-group-item .list-addresses__label {
  border-radius: 3px;
  border: dashed 1px var(--border-color);
  height: 100%;
}

.list-addresses .list-group-item.selected .list-addresses__label {
  border-style: solid;
}

.list-addresses .list-group-item.selected .list-actions {
  display: flex;
}

.list-addresses .list-group-item .list-actions {
  justify-content: flex-end;
  display: none;
}

.list-addresses__label {
  display: flex !important;
  flex: 1;
  padding: 1rem;
  margin: 0;
  margin: 0;
  cursor: pointer !important;
}

.list-addresses__label .radio {
  margin-top: 5px;
  margin-right: 8px;
}

.list-addresses__label .delivery-address {
  flex: 1;
  margin-bottom: 0;
}

.list-addresses__label .delivery-address h5 {
  color: var(--txt-body);
  margin: 0;
  margin-bottom: 0.5rem;
  padding: 0;
  font-weight: 500;
  font-size: 0.8rem;
}

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

.payment-card {
  font-size: 0.85rem;
  color: var(--txt-gray);
}

.payment-card strong {
  font-weight: 500;
  color: var(--txt-body);
}

.payment-card-view .list-group-item {
  padding: 0;
}

.payment-card-view .list-group-item:last-child {
  border: none;
}

.payment-card__label {
  display: grid !important;
  grid-gap: 1rem;
  grid-template-columns: 30px 10% 1fr 1fr;
  margin: 0 !important;
  padding: 1rem 1.5rem;
  cursor: pointer !important;
  align-items: center;
}

.payment-card__photo .svg {
  width: 38px;
  height: 24px;
}

.form-inline {
  position: relative;
}

.form-inline input[type='text'], .form-inline .form input[type="text"][type="email"], .form .form-inline input[type="text"][type="email"], .form-inline .form-control input[type="text"][type="email"], .form-control .form-inline input[type="text"][type="email"], .form-inline .form input[type="text"][type="phone"], .form .form-inline input[type="text"][type="phone"], .form-inline .form-control input[type="text"][type="phone"], .form-control .form-inline input[type="text"][type="phone"], .form-inline .form input[type="text"][type="search"], .form .form-inline input[type="text"][type="search"], .form-inline .form-control input[type="text"][type="search"], .form-control .form-inline input[type="text"][type="search"], .form-inline .form input[type="text"][type="password"], .form .form-inline input[type="text"][type="password"], .form-inline .form-control input[type="text"][type="password"], .form-control .form-inline input[type="text"][type="password"], .form-inline .form input[type="text"][type="date"], .form .form-inline input[type="text"][type="date"], .form-inline .form-control input[type="text"][type="date"], .form-control .form-inline input[type="text"][type="date"], .form-inline .form input[type="text"][type="tel"], .form .form-inline input[type="text"][type="tel"], .form-inline .form-control input[type="text"][type="tel"], .form-control .form-inline input[type="text"][type="tel"], .form-inline .form input[type="text"][type="number"], .form .form-inline input[type="text"][type="number"], .form-inline .form-control input[type="text"][type="number"], .form-control .form-inline input[type="text"][type="number"], .form-inline .form input[type="text"][type="file"], .form .form-inline input[type="text"][type="file"], .form-inline .form-control input[type="text"][type="file"], .form-control .form-inline input[type="text"][type="file"], .form-inline .form select[type="text"], .form .form-inline select[type="text"], .form-inline .form-control select[type="text"], .form-control .form-inline select[type="text"], .form-inline .form textarea[type="text"], .form .form-inline textarea[type="text"], .form-inline .form-control textarea[type="text"], .form-control .form-inline textarea[type="text"] {
  width: 100%;
}

.form-inline .btn-submit {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--brand-color);
  font-weight: 500;
}

.form-inline .btn-submit:focus {
  outline: none;
}

.form-inline .btn-submit:hover {
  box-shadow: none;
}

.otp-block__head {
  padding: 1.5rem 0;
  text-align: center;
}

.otp-block__head h5 {
  margin: 0;
  padding: 0;
}

.otp-block__footer {
  padding: 1rem 0;
  text-align: center;
}

.otp-block p {
  font-size: 0.8rem;
  color: var(--txt-gray);
  padding-bottom: 0.5rem;
}

.otp-block .otp-enter {
  margin: 0 auto;
  text-align: center;
}

.otp-block .otp-enter .otp-inputs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.otp-block .otp-enter .otp-inputs input.field-otp, .otp-block .otp-enter .otp-inputs .form select.field-otp, .form .otp-block .otp-enter .otp-inputs select.field-otp, .otp-block .otp-enter .otp-inputs .form-control select.field-otp, .form-control .otp-block .otp-enter .otp-inputs select.field-otp, .otp-block .otp-enter .otp-inputs .form textarea.field-otp, .form .otp-block .otp-enter .otp-inputs textarea.field-otp, .otp-block .otp-enter .otp-inputs .form-control textarea.field-otp, .form-control .otp-block .otp-enter .otp-inputs textarea.field-otp {
  border: none;
  border-radius: 0;
  border: solid 1px var(--border-color);
  max-width: 30px;
  text-align: center;
  padding: 5px;
  margin: 0 3px;
  height: 50px;
}

.otp-block .otp-enter .otp-inputs input.field-otp:focus, .otp-block .otp-enter .otp-inputs .form select.field-otp:focus, .form .otp-block .otp-enter .otp-inputs select.field-otp:focus, .otp-block .otp-enter .otp-inputs .form-control select.field-otp:focus, .form-control .otp-block .otp-enter .otp-inputs select.field-otp:focus, .otp-block .otp-enter .otp-inputs .form textarea.field-otp:focus, .form .otp-block .otp-enter .otp-inputs textarea.field-otp:focus, .otp-block .otp-enter .otp-inputs .form-control textarea.field-otp:focus, .form-control .otp-block .otp-enter .otp-inputs textarea.field-otp:focus {
  border-color: #000;
}

.otp-block .otp-enter .otp-inputs input.field-otp.is-invalid, .otp-block .otp-enter .otp-inputs .form select.field-otp.is-invalid, .form .otp-block .otp-enter .otp-inputs select.field-otp.is-invalid, .otp-block .otp-enter .otp-inputs .form-control select.field-otp.is-invalid, .form-control .otp-block .otp-enter .otp-inputs select.field-otp.is-invalid, .otp-block .otp-enter .otp-inputs .form textarea.field-otp.is-invalid, .form .otp-block .otp-enter .otp-inputs textarea.field-otp.is-invalid, .otp-block .otp-enter .otp-inputs .form-control textarea.field-otp.is-invalid, .form-control .otp-block .otp-enter .otp-inputs textarea.field-otp.is-invalid {
  border-color: red;
}

.otp-block .otp-success {
  text-align: center;
}

.otp-block .otp-success .img {
  max-width: 80px;
  margin: 2rem auto;
}

.otp-block .otp-success h5 {
  margin: 0;
  padding: 0;
}

.yay-block {
  margin: 2rem 0;
  border-radius: 4px;
  padding: 1.5rem;
}

.yay-block img {
  margin: 0 auto 1.25rem;
  display: block;
}

.yay-block p {
  font-size: 0.875rem;
}

.list-collections {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}

.list-collections__item {
  display: block;
  position: relative;
  border-radius: 1px;
  overflow: hidden;
}

.list-collections__item:hover .list-collections__image {
  transform: scale(1.2);
}

.list-collections__item:hover .list-collections__image:after {
  opacity: 1;
}

.list-collections .aspect-ratio {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.list-collections__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  background-size: cover;
  background-position: center;
  transition: all 1s ease-out;
}

.list-collections__image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 1s ease-out;
}

.list-collections__heading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 0 20px;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 500;
  z-index: 1;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.faq-filters a {
  border: solid 1px var(--border-color);
  border-radius: 3px;
  margin: 5px;
  margin: 5px 2px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.faq-filters a:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid var(--brand-color);
  border-left: 10px solid transparent;
}

.faq-filters a.is--active {
  background: var(--brand-color);
  color: var(--brand-color-inverse);
  border-color: var(--brand-color);
}

.highlighted {
  background: #fbf9c9;
}

.list-faqs .faq_trigger {
  position: relative;
  display: block;
  font-weight: 500;
  padding-right: 2rem;
}

.list-faqs .faq_trigger:after, .list-faqs .faq_trigger:before {
  background: #212529;
  content: '';
  height: 2px;
  position: absolute;
  right: 0;
  top: calc(50% - 1px);
  width: 12px;
}

.list-faqs .faq_trigger:before {
  transform: rotate(90deg);
  transition: all 0.2s ease-in-out;
}

.list-faqs .faq_trigger[aria-expanded='true']:before {
  transform: rotate(0deg);
}

.list-faqs .faq_data {
  margin-top: 2rem;
}

.slider-reviews {
  margin: 0 6rem;
  padding: 0rem 6rem;
  text-align: center;
}

@media (max-width: 767.98px) {
  .slider-reviews {
    padding: 0;
    margin: 0;
  }
}

.slider-reviews p {
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: auto;
  padding-bottom: 1.5rem;
}

.slider-reviews p.user-title {
  font-style: normal;
  color: var(--txt-body);
  font-size: 0.8rem;
}

.slider-reviews .slick-dots {
  bottom: -10px;
}

.slider-reviews .slick-dots li {
  background: #212529;
}

.contact-box p {
  margin-bottom: 1rem;
}

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

@media (max-width: 767.98px) {
  .row {
    margin: 0 -10px;
  }
  .row > [class*="col"] {
    padding: 0 10px;
  }
}

/*
.about-images {
    max-width: 80%;
    margin: auto;
    display: grid;
    grid-gap: 1.7rem;
    grid-template-columns: repeat(2, 1fr);
    img {
        &:nth-child(2) {
            margin-top: 110px;
        }
        &:nth-child(4) {
            margin-top: -110px;
        }
    }
}
*/
.about-images {
  max-width: 80%;
  margin: auto;
  line-height: 0;
  -webkit-column-count: 2;
  -webkit-column-gap: 10px;
  -moz-column-count: 2;
  -moz-column-gap: 10px;
  column-count: 2;
  column-gap: 10px;
}

.about-images img {
  width: 100% !important;
  height: auto !important;
}

@media (max-width: 400px) {
  .about-images {
    max-width: none;
  }
}

.site-map {
  border-bottom: solid 1px var(--border-color);
  margin-bottom: 1.5rem;
}

.site-map:last-child {
  border-bottom: none;
}

.site-map h3 {
  font-size: 1.5rem;
}

.site-map > ul {
  -moz-columns: 3 auto;
       columns: 3 auto;
  margin-bottom: 0.5rem;
}

@media (max-width: 767.98px) {
  .site-map > ul {
    -moz-column-count: 1;
         column-count: 1;
  }
}

.site-map > ul > li {
  font-size: 0.88rem;
}

.site-map > ul > li a {
  margin: 0.5rem 0;
  padding-left: 1rem;
  color: #aa66cc;
  position: relative;
  display: inline-block;
}

.site-map > ul > li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  background: #212529;
  width: 6px;
  height: 2px;
}

.site-map > ul > li .site-map-section {
  display: inline-block;
  margin-bottom: 1.5rem;
  vertical-align: top;
  z-index: 1;
  -moz-column-span: 1;
       column-span: 1;
}

.site-map > ul > li .site-map-section h6 {
  font-weight: 600;
  text-transform: uppercase;
  margin: 0.5rem 0;
  font-size: 0.8rem;
  padding-right: 1rem;
}

.site-map__brand .site-map-section, .site-map__pages .site-map-section {
  display: block !important;
}

.maintenance, .not-found, .access-denied {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.maintenance .svg, .not-found .svg, .access-denied .svg {
  margin: 0 auto;
  max-width: 450px;
  margin-bottom: 3rem;
}

.maintenance p, .not-found p, .access-denied p {
  margin-bottom: 1.2rem;
}

.invoice-2 {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  font-size: 0.8rem;
}

.invoice-2 .invoice__container {
  width: 100%;
  margin: 0;
  padding: 0 30px;
}

.invoice-2 .invoice__head {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
}

.invoice-2 .invoice__head .invoice__container {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.invoice-2 .invoice__head .invoice__brand {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.invoice-2 .invoice__head .invoice__brand .invoice__title {
  font-weight: 700;
  font-size: 2.7rem;
  margin-right: 10px;
  margin-top: 5px;
  color: #595d6e;
  vertical-align: top;
}

.invoice-2 .invoice__head .invoice__brand .invoice__logo {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  text-align: right;
}

.invoice-2 .invoice__head .invoice__brand .invoice__logo img {
  text-align: right;
}

.invoice-2 .invoice__head .invoice__brand .invoice__logo .invoice__desc {
  display: flex;
  flex-direction: column;
  text-align: right;
  font-weight: 400;
  padding: 1rem 0 1rem 0;
  color: var(--txt-gray);
}

.invoice-2 .invoice__head .invoice__items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  width: 100%;
  border-top: 1px solid #ebedf2;
}

.invoice-2 .invoice__head .invoice__items .invoice__item {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: #595d6e;
  margin-right: 10px;
  margin-top: 20px;
}

.invoice-2 .invoice__head .invoice__items .invoice__item:last-child {
  margin-right: 0;
}

.invoice-2 .invoice__head .invoice__items .invoice__item .invoice__subtitle {
  font-weight: 500;
  padding-bottom: 0.5rem;
}

.invoice-2 .invoice__head .invoice__items .invoice__item .invoice__text {
  font-weight: 400;
  color: var(--txt-gray);
}

.invoice-2 .invoice__body {
  padding: 3rem 0;
}

.invoice-2 .invoice__body table {
  background-color: transparent;
}

.invoice-2 .invoice__body table thead tr th {
  background-color: transparent;
  padding: 1rem 0 0.5rem 0;
  color: var(--brand-color);
  border-top: 0;
  border-bottom: 1px solid #ebedf2;
}

.invoice-2 .invoice__body table thead tr th:not(:first-child) {
  text-align: right;
}

.invoice-2 .invoice__body table tbody tr td {
  background-color: transparent;
  padding: 1rem 0 1rem 0;
  border-top: none;
  font-weight: 600;
  font-size: 1rem;
  color: #595d6e;
}

.invoice-2 .invoice__body table tbody tr td:not(:first-child) {
  text-align: right;
}

.invoice-2 .invoice__body table tbody tr:first-child td {
  padding-top: 1.8rem;
}

.invoice-2 .invoice__footer {
  padding: 3rem 0;
  background-color: #f7f8fa;
}

.invoice-2 .invoice__footer .invoice__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}

.invoice-2 .invoice__footer .table {
  background-color: transparent;
  padding: 0;
}

.invoice-2 .invoice__footer .table th {
  text-transform: capitalize;
  font-weight: 500;
  color: var(--brand-color);
  border-top: 0;
  border-bottom: 1px solid #ebedf2;
  padding: 10px 10px 10px 0;
  background-color: transparent;
}

.invoice-2 .invoice__footer .table th:last-child {
  padding-right: 0;
}

.invoice-2 .invoice__footer .table td {
  font-size: 1rem;
  text-transform: capitalize;
  background-color: transparent;
  font-weight: 500;
  color: #595d6e;
  padding: 10px 10px 10px 0;
}

.invoice-2 .invoice__footer .table td:last-child {
  padding-right: 0;
}

.invoice-2 .invoice__actions {
  padding: 2rem 0;
}

.invoice-2 .invoice__actions .invoice__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media (min-width: 1025px) {
  .invoice-2 .invoice__container {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .invoice-2 .invoice__container {
    width: 100%;
    margin: 0;
    padding: 0 20px;
  }
  .invoice-2 .invoice__head {
    padding: 20px 0;
  }
  .invoice-2 .invoice__head .invoice__brand {
    display: flex;
    flex-direction: column;
  }
  .invoice-2 .invoice__head .invoice__brand .invoice__title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .invoice-2 .invoice__head .invoice__brand .invoice__logo {
    text-align: left;
  }
  .invoice-2 .invoice__head .invoice__brand .invoice__logo img {
    text-align: left;
  }
  .invoice-2 .invoice__head .invoice__brand .invoice__logo .invoice__desc {
    text-align: left;
  }
  .invoice-2 .invoice__head .invoice__items {
    margin-top: 20px;
  }
  .invoice-2 .invoice__body {
    padding: 2rem 0;
  }
  .invoice-2 .invoice__footer {
    padding: 2rem 0;
  }
}

@media print {
  .header {
    display: none !important;
  }
  .header-mobile {
    display: none !important;
  }
  .aside {
    display: none !important;
  }
  .footer {
    display: none !important;
  }
  .subheader {
    display: none !important;
  }
  .scrolltop {
    display: none !important;
  }
  .quick-panel {
    display: none !important;
  }
  .demo-panel {
    display: none !important;
  }
  .sticky-toolbar {
    display: none !important;
  }
  body {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .wrapper {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .body {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .content {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .invoice-2 {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .invoice-2 .invoice__head {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .invoice-2 .invoice__head .invoice__container {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .invoice-2 .invoice__actions {
    display: none !important;
  }
  .invoice-2 .invoice__footer {
    background-color: transparent !important;
  }
  .invoice-2 .invoice__container {
    width: 100%;
    padding: 0 10px;
  }
}

.payment {
  overflow-x: hidden;
}

@media (min-width: 1200px) {
  .payment .container {
    max-width: 1000px;
    padding: inherit;
  }
}

@media (max-width: 991.98px) {
  .payment .content .container {
    flex-direction: column;
  }
}

.payment .payment-header {
  background: var(--bg-white);
  background-size: cover;
  border-bottom: solid 1px var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 2;
}

.payment .payment-header_inner {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991.98px) {
  .payment .payment-header_inner {
    padding: 0;
    flex-direction: column;
  }
}

.payment .payment-header .logo {
  max-width: 150px;
  display: block;
}

@media (max-width: 991.98px) {
  .payment .payment-header .logo {
    max-width: 100px;
  }
}

.payment .payment-header .payment-amount {
  flex: 1;
  max-width: 338px;
  width: 100%;
  font-size: 0.8rem;
  color: var(--txt-gray);
}

@media (max-width: 1199.98px) {
  .payment .payment-header .payment-amount {
    max-width: none;
  }
}

.payment .payment-header .payment-amount ul {
  display: flex;
  flex-wrap: wrap;
}

.payment .payment-header .payment-amount ul li {
  flex: 0 0 50%;
  max-width: 50%;
}

@media (max-width: 1199.98px) {
  .payment .payment-header .payment-amount ul li {
    padding: 1rem;
  }
}

.payment .payment-header .payment-amount ul .lable {
  display: block;
  font-weight: 500;
  color: var(--txt-body);
}

.payment .customer-detail {
  margin-bottom: 1.5rem;
}

@media (max-width: 991.98px) {
  .payment .customer-detail {
    padding-top: 1rem;
  }
}

.payment .customer-detail h5 {
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0;
}

.payment .customer-detail p {
  font-size: 0.85rem;
  color: var(--txt-gray);
}
