@charset "UTF-8";
.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  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.open, .nice-select:focus {
  border-color: #999;
}
.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  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: 5px;
}
.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: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  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(-21px);
  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: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  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: bold;
}
.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;
}

/*!
 * Bootstrap v4.4.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: #007bff;
  --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:not(:focus-visible) {
  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: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #0056b3;
  text-decoration: underline;
}

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

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

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

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,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

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

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

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

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

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

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

progress {
  vertical-align: baseline;
}

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

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

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

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

output {
  display: inline-block;
}

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

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-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-wrap: break-word;
}
a > code {
  color: inherit;
}

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

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

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

.container {
  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: 1140px;
  }
}

.container-fluid, .container-xl, .container-lg, .container-md, .container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
.row {
  display: 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-xl,
.col-xl-auto, .col-xl-18, .col-xl-17, .col-xl-16, .col-xl-15, .col-xl-14, .col-xl-13, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-18, .col-lg-17, .col-lg-16, .col-lg-15, .col-lg-14, .col-lg-13, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-18, .col-md-17, .col-md-16, .col-md-15, .col-md-14, .col-md-13, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-18, .col-sm-17, .col-sm-16, .col-sm-15, .col-sm-14, .col-sm-13, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-18, .col-17, .col-16, .col-15, .col-14, .col-13, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.col-13 {
  flex: 0 0 72.2222222222%;
  max-width: 72.2222222222%;
}

.col-14 {
  flex: 0 0 77.7777777778%;
  max-width: 77.7777777778%;
}

.col-15 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-16 {
  flex: 0 0 88.8888888889%;
  max-width: 88.8888888889%;
}

.col-17 {
  flex: 0 0 94.4444444444%;
  max-width: 94.4444444444%;
}

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

.order-first {
  order: -1;
}

.order-last {
  order: 19;
}

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

.order-13 {
  order: 13;
}

.order-14 {
  order: 14;
}

.order-15 {
  order: 15;
}

.order-16 {
  order: 16;
}

.order-17 {
  order: 17;
}

.order-18 {
  order: 18;
}

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

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

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

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

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

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

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

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

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

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

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

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

.offset-13 {
  margin-left: 72.2222222222%;
}

.offset-14 {
  margin-left: 77.7777777778%;
}

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

.offset-16 {
  margin-left: 88.8888888889%;
}

.offset-17 {
  margin-left: 94.4444444444%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 5.5555555556%;
    max-width: 5.5555555556%;
  }
  .col-sm-2 {
    flex: 0 0 11.1111111111%;
    max-width: 11.1111111111%;
  }
  .col-sm-3 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-4 {
    flex: 0 0 22.2222222222%;
    max-width: 22.2222222222%;
  }
  .col-sm-5 {
    flex: 0 0 27.7777777778%;
    max-width: 27.7777777778%;
  }
  .col-sm-6 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-7 {
    flex: 0 0 38.8888888889%;
    max-width: 38.8888888889%;
  }
  .col-sm-8 {
    flex: 0 0 44.4444444444%;
    max-width: 44.4444444444%;
  }
  .col-sm-9 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-10 {
    flex: 0 0 55.5555555556%;
    max-width: 55.5555555556%;
  }
  .col-sm-11 {
    flex: 0 0 61.1111111111%;
    max-width: 61.1111111111%;
  }
  .col-sm-12 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-13 {
    flex: 0 0 72.2222222222%;
    max-width: 72.2222222222%;
  }
  .col-sm-14 {
    flex: 0 0 77.7777777778%;
    max-width: 77.7777777778%;
  }
  .col-sm-15 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-16 {
    flex: 0 0 88.8888888889%;
    max-width: 88.8888888889%;
  }
  .col-sm-17 {
    flex: 0 0 94.4444444444%;
    max-width: 94.4444444444%;
  }
  .col-sm-18 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 19;
  }
  .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;
  }
  .order-sm-13 {
    order: 13;
  }
  .order-sm-14 {
    order: 14;
  }
  .order-sm-15 {
    order: 15;
  }
  .order-sm-16 {
    order: 16;
  }
  .order-sm-17 {
    order: 17;
  }
  .order-sm-18 {
    order: 18;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 5.5555555556%;
  }
  .offset-sm-2 {
    margin-left: 11.1111111111%;
  }
  .offset-sm-3 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-4 {
    margin-left: 22.2222222222%;
  }
  .offset-sm-5 {
    margin-left: 27.7777777778%;
  }
  .offset-sm-6 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-7 {
    margin-left: 38.8888888889%;
  }
  .offset-sm-8 {
    margin-left: 44.4444444444%;
  }
  .offset-sm-9 {
    margin-left: 50%;
  }
  .offset-sm-10 {
    margin-left: 55.5555555556%;
  }
  .offset-sm-11 {
    margin-left: 61.1111111111%;
  }
  .offset-sm-12 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-13 {
    margin-left: 72.2222222222%;
  }
  .offset-sm-14 {
    margin-left: 77.7777777778%;
  }
  .offset-sm-15 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-16 {
    margin-left: 88.8888888889%;
  }
  .offset-sm-17 {
    margin-left: 94.4444444444%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 5.5555555556%;
    max-width: 5.5555555556%;
  }
  .col-md-2 {
    flex: 0 0 11.1111111111%;
    max-width: 11.1111111111%;
  }
  .col-md-3 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-4 {
    flex: 0 0 22.2222222222%;
    max-width: 22.2222222222%;
  }
  .col-md-5 {
    flex: 0 0 27.7777777778%;
    max-width: 27.7777777778%;
  }
  .col-md-6 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-7 {
    flex: 0 0 38.8888888889%;
    max-width: 38.8888888889%;
  }
  .col-md-8 {
    flex: 0 0 44.4444444444%;
    max-width: 44.4444444444%;
  }
  .col-md-9 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-10 {
    flex: 0 0 55.5555555556%;
    max-width: 55.5555555556%;
  }
  .col-md-11 {
    flex: 0 0 61.1111111111%;
    max-width: 61.1111111111%;
  }
  .col-md-12 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-13 {
    flex: 0 0 72.2222222222%;
    max-width: 72.2222222222%;
  }
  .col-md-14 {
    flex: 0 0 77.7777777778%;
    max-width: 77.7777777778%;
  }
  .col-md-15 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-16 {
    flex: 0 0 88.8888888889%;
    max-width: 88.8888888889%;
  }
  .col-md-17 {
    flex: 0 0 94.4444444444%;
    max-width: 94.4444444444%;
  }
  .col-md-18 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 19;
  }
  .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;
  }
  .order-md-13 {
    order: 13;
  }
  .order-md-14 {
    order: 14;
  }
  .order-md-15 {
    order: 15;
  }
  .order-md-16 {
    order: 16;
  }
  .order-md-17 {
    order: 17;
  }
  .order-md-18 {
    order: 18;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 5.5555555556%;
  }
  .offset-md-2 {
    margin-left: 11.1111111111%;
  }
  .offset-md-3 {
    margin-left: 16.6666666667%;
  }
  .offset-md-4 {
    margin-left: 22.2222222222%;
  }
  .offset-md-5 {
    margin-left: 27.7777777778%;
  }
  .offset-md-6 {
    margin-left: 33.3333333333%;
  }
  .offset-md-7 {
    margin-left: 38.8888888889%;
  }
  .offset-md-8 {
    margin-left: 44.4444444444%;
  }
  .offset-md-9 {
    margin-left: 50%;
  }
  .offset-md-10 {
    margin-left: 55.5555555556%;
  }
  .offset-md-11 {
    margin-left: 61.1111111111%;
  }
  .offset-md-12 {
    margin-left: 66.6666666667%;
  }
  .offset-md-13 {
    margin-left: 72.2222222222%;
  }
  .offset-md-14 {
    margin-left: 77.7777777778%;
  }
  .offset-md-15 {
    margin-left: 83.3333333333%;
  }
  .offset-md-16 {
    margin-left: 88.8888888889%;
  }
  .offset-md-17 {
    margin-left: 94.4444444444%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 5.5555555556%;
    max-width: 5.5555555556%;
  }
  .col-lg-2 {
    flex: 0 0 11.1111111111%;
    max-width: 11.1111111111%;
  }
  .col-lg-3 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-4 {
    flex: 0 0 22.2222222222%;
    max-width: 22.2222222222%;
  }
  .col-lg-5 {
    flex: 0 0 27.7777777778%;
    max-width: 27.7777777778%;
  }
  .col-lg-6 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-7 {
    flex: 0 0 38.8888888889%;
    max-width: 38.8888888889%;
  }
  .col-lg-8 {
    flex: 0 0 44.4444444444%;
    max-width: 44.4444444444%;
  }
  .col-lg-9 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-10 {
    flex: 0 0 55.5555555556%;
    max-width: 55.5555555556%;
  }
  .col-lg-11 {
    flex: 0 0 61.1111111111%;
    max-width: 61.1111111111%;
  }
  .col-lg-12 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-13 {
    flex: 0 0 72.2222222222%;
    max-width: 72.2222222222%;
  }
  .col-lg-14 {
    flex: 0 0 77.7777777778%;
    max-width: 77.7777777778%;
  }
  .col-lg-15 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-16 {
    flex: 0 0 88.8888888889%;
    max-width: 88.8888888889%;
  }
  .col-lg-17 {
    flex: 0 0 94.4444444444%;
    max-width: 94.4444444444%;
  }
  .col-lg-18 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 19;
  }
  .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;
  }
  .order-lg-13 {
    order: 13;
  }
  .order-lg-14 {
    order: 14;
  }
  .order-lg-15 {
    order: 15;
  }
  .order-lg-16 {
    order: 16;
  }
  .order-lg-17 {
    order: 17;
  }
  .order-lg-18 {
    order: 18;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 5.5555555556%;
  }
  .offset-lg-2 {
    margin-left: 11.1111111111%;
  }
  .offset-lg-3 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-4 {
    margin-left: 22.2222222222%;
  }
  .offset-lg-5 {
    margin-left: 27.7777777778%;
  }
  .offset-lg-6 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-7 {
    margin-left: 38.8888888889%;
  }
  .offset-lg-8 {
    margin-left: 44.4444444444%;
  }
  .offset-lg-9 {
    margin-left: 50%;
  }
  .offset-lg-10 {
    margin-left: 55.5555555556%;
  }
  .offset-lg-11 {
    margin-left: 61.1111111111%;
  }
  .offset-lg-12 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-13 {
    margin-left: 72.2222222222%;
  }
  .offset-lg-14 {
    margin-left: 77.7777777778%;
  }
  .offset-lg-15 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-16 {
    margin-left: 88.8888888889%;
  }
  .offset-lg-17 {
    margin-left: 94.4444444444%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 5.5555555556%;
    max-width: 5.5555555556%;
  }
  .col-xl-2 {
    flex: 0 0 11.1111111111%;
    max-width: 11.1111111111%;
  }
  .col-xl-3 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-4 {
    flex: 0 0 22.2222222222%;
    max-width: 22.2222222222%;
  }
  .col-xl-5 {
    flex: 0 0 27.7777777778%;
    max-width: 27.7777777778%;
  }
  .col-xl-6 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-7 {
    flex: 0 0 38.8888888889%;
    max-width: 38.8888888889%;
  }
  .col-xl-8 {
    flex: 0 0 44.4444444444%;
    max-width: 44.4444444444%;
  }
  .col-xl-9 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-10 {
    flex: 0 0 55.5555555556%;
    max-width: 55.5555555556%;
  }
  .col-xl-11 {
    flex: 0 0 61.1111111111%;
    max-width: 61.1111111111%;
  }
  .col-xl-12 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-13 {
    flex: 0 0 72.2222222222%;
    max-width: 72.2222222222%;
  }
  .col-xl-14 {
    flex: 0 0 77.7777777778%;
    max-width: 77.7777777778%;
  }
  .col-xl-15 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-16 {
    flex: 0 0 88.8888888889%;
    max-width: 88.8888888889%;
  }
  .col-xl-17 {
    flex: 0 0 94.4444444444%;
    max-width: 94.4444444444%;
  }
  .col-xl-18 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 19;
  }
  .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;
  }
  .order-xl-13 {
    order: 13;
  }
  .order-xl-14 {
    order: 14;
  }
  .order-xl-15 {
    order: 15;
  }
  .order-xl-16 {
    order: 16;
  }
  .order-xl-17 {
    order: 17;
  }
  .order-xl-18 {
    order: 18;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 5.5555555556%;
  }
  .offset-xl-2 {
    margin-left: 11.1111111111%;
  }
  .offset-xl-3 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-4 {
    margin-left: 22.2222222222%;
  }
  .offset-xl-5 {
    margin-left: 27.7777777778%;
  }
  .offset-xl-6 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-7 {
    margin-left: 38.8888888889%;
  }
  .offset-xl-8 {
    margin-left: 44.4444444444%;
  }
  .offset-xl-9 {
    margin-left: 50%;
  }
  .offset-xl-10 {
    margin-left: 55.5555555556%;
  }
  .offset-xl-11 {
    margin-left: 61.1111111111%;
  }
  .offset-xl-12 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-13 {
    margin-left: 72.2222222222%;
  }
  .offset-xl-14 {
    margin-left: 77.7777777778%;
  }
  .offset-xl-15 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-16 {
    margin-left: 88.8888888889%;
  }
  .offset-xl-17 {
    margin-left: 94.4444444444%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

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

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

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

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

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

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #7abaff;
}

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

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

.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: 42px;
  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: 5px;
  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:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 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: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

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

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

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

textarea.form-control {
  height: auto;
}

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

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

.form-row {
  display: 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, .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: 0.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 :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

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

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

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #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 .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #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: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: 0.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 :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

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

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

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #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 .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #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: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;
  cursor: pointer;
  -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(0, 123, 255, 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: #007bff;
  border-color: #007bff;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary.nice-select.open:not(:disabled):not(.disabled), .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary.nice-select.open:not(:disabled):not(.disabled):focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 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 {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
  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.nice-select.open:not(:disabled):not(.disabled), .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary.nice-select.open:not(:disabled):not(.disabled):focus, .btn-secondary:not(:disabled):not(.disabled).active: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 {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
  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.nice-select.open:not(:disabled):not(.disabled), .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success.nice-select.open:not(:disabled):not(.disabled):focus, .btn-success:not(:disabled):not(.disabled).active: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 {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  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.nice-select.open:not(:disabled):not(.disabled), .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info.nice-select.open:not(:disabled):not(.disabled):focus, .btn-info:not(:disabled):not(.disabled).active: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 {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  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.nice-select.open:not(:disabled):not(.disabled), .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning.nice-select.open:not(:disabled):not(.disabled):focus, .btn-warning:not(:disabled):not(.disabled).active: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 {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
  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.nice-select.open:not(:disabled):not(.disabled), .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger.nice-select.open:not(:disabled):not(.disabled):focus, .btn-danger:not(:disabled):not(.disabled).active: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 {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  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.nice-select.open:not(:disabled):not(.disabled), .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light.nice-select.open:not(:disabled):not(.disabled):focus, .btn-light:not(:disabled):not(.disabled).active: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 {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  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.nice-select.open:not(:disabled):not(.disabled), .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark.nice-select.open:not(:disabled):not(.disabled):focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary.nice-select.open:not(:disabled):not(.disabled), .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary.nice-select.open:not(:disabled):not(.disabled):focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 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.nice-select.open:not(:disabled):not(.disabled), .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary.nice-select.open:not(:disabled):not(.disabled):focus, .btn-outline-secondary:not(:disabled):not(.disabled).active: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.nice-select.open:not(:disabled):not(.disabled), .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success.nice-select.open:not(:disabled):not(.disabled):focus, .btn-outline-success:not(:disabled):not(.disabled).active: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.nice-select.open:not(:disabled):not(.disabled), .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info.nice-select.open:not(:disabled):not(.disabled):focus, .btn-outline-info:not(:disabled):not(.disabled).active: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.nice-select.open:not(:disabled):not(.disabled), .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning.nice-select.open:not(:disabled):not(.disabled):focus, .btn-outline-warning:not(:disabled):not(.disabled).active: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.nice-select.open:not(:disabled):not(.disabled), .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger.nice-select.open:not(:disabled):not(.disabled):focus, .btn-outline-danger:not(:disabled):not(.disabled).active: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.nice-select.open:not(:disabled):not(.disabled), .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light.nice-select.open:not(:disabled):not(.disabled):focus, .btn-outline-light:not(:disabled):not(.disabled).active: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.nice-select.open:not(:disabled):not(.disabled), .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark.nice-select.open:not(:disabled):not(.disabled):focus, .btn-outline-dark:not(:disabled):not(.disabled).active: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: #007bff;
  text-decoration: none;
}
.btn-link:hover {
  color: #0056b3;
  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,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.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:active, .dropdown-item.nice-select.open {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}
.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.nice-select.open, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.nice-select.open,
.btn-group-vertical > .btn.active {
  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],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: 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 0%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .form-control:not(: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: 5px;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

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

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

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

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

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

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .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;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #007bff;
  background-color: #007bff;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before, .custom-control-input.nice-select.open:not(:disabled) ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 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' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 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(0, 123, 255, 0.5);
}

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

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

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

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 42px;
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 42px;
  margin: 0;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 42px;
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 5px;
}
.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 5px 5px 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-range:focus {
  outline: none;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  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, .custom-range.nice-select.open::-webkit-slider-thumb {
  background-color: #b3d7ff;
}
.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: #007bff;
  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, .custom-range.nice-select.open::-moz-range-thumb {
  background-color: #b3d7ff;
}
.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: #007bff;
  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, .custom-range.nice-select.open::-ms-thumb {
  background-color: #b3d7ff;
}
.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-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

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

.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 {
  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,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  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,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    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,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    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,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    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,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    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,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    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,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    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,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    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,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    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,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  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,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  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 .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' 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;
  min-height: 1px;
  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,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

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

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

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

.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    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: hidden;
}
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card > .card-header {
  border-radius: 0;
  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 {
  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: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.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: #007bff;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: #0062cc;
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 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: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}
.alert-primary hr {
  border-top-color: #9fcdff;
}
.alert-primary .alert-link {
  color: #002752;
}

.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;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  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, .list-group-item-action.nice-select.open {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.list-group-item:last-child {
  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 {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

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

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

.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #004085;
  background-color: #9fcdff;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

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

.list-group-item-success {
  color: #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 {
  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 {
  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 {
  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 {
  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 {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

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

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

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -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.modal-static .modal-dialog {
  transform: scale(1.02);
}

.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 #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

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

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

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

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

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }
  .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);
}
.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=top] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

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

.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}
.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=bottom] > .arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #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);
  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-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.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 .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    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' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%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' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-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: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}
.carousel-indicators .active {
  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 0.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 0.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: #007bff !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !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 #dee2e6 !important;
}

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

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

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

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

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

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

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

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

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

.border-primary {
  border-color: #007bff !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.8571428571%;
}

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

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

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

.flex-row {
  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;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable.nice-select.open, .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: 3rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-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.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 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: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-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.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 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: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-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.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 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: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-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.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@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: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !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: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !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.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !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: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #0056b3 !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: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
.lar,
.las,
.lab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

@font-face {
  font-family: Line Awesome Brands;
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url("../fonts/la-brands-400.eot");
  src: url("../fonts/la-brands-400.eot?#iefix") format("embedded-opentype"), url("../fonts/la-brands-400.woff2") format("woff2"), url("../fonts/la-brands-400.woff") format("woff"), url("../fonts/la-brands-400.ttf") format("truetype"), url("../fonts/la-brands-400.svg#lineawesome") format("svg");
}
.lab {
  font-family: Line Awesome Brands;
  font-weight: 400;
}

@font-face {
  font-family: Line Awesome Free;
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url("../fonts/la-regular-400.eot");
  src: url("../fonts/la-regular-400.eot?#iefix") format("embedded-opentype"), url("../fonts/la-regular-400.woff2") format("woff2"), url("../fonts/la-regular-400.woff") format("woff"), url("../fonts/la-regular-400.ttf") format("truetype"), url("../fonts/la-regular-400.svg#lineawesome") format("svg");
}
.lar {
  font-family: Line Awesome Free;
  font-weight: 400;
}

@font-face {
  font-family: Line Awesome Free;
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("../fonts/la-solid-900.eot");
  src: url("../fonts/la-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/la-solid-900.woff2") format("woff2"), url("../fonts/la-solid-900.woff") format("woff"), url("../fonts/la-solid-900.ttf") format("truetype"), url("../fonts/la-solid-900.svg#lineawesome") format("svg");
}
.las {
  font-family: Line Awesome Free;
  font-weight: 900;
}

.la-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.la-xs {
  font-size: 0.75em;
}

.la-2x {
  font-size: 1em;
}

.la-2x {
  font-size: 2em;
}

.la-3x {
  font-size: 3em;
}

.la-4x {
  font-size: 4em;
}

.la-5x {
  font-size: 5em;
}

.la-6x {
  font-size: 6em;
}

.la-7x {
  font-size: 7em;
}

.la-8x {
  font-size: 8em;
}

.la-9x {
  font-size: 9em;
}

.la-10x {
  font-size: 10em;
}

.la-fw {
  text-align: center;
  width: 1.25em;
}

.la-fw {
  width: 1.25em;
  text-align: center;
}

.la-ul {
  padding-left: 0;
  margin-left: 1.4285714286em;
  list-style-type: none;
}
.la-ul > li {
  position: relative;
}

.la-li {
  position: absolute;
  left: -2em;
  text-align: center;
  width: 1.4285714286em;
  line-height: inherit;
}
.la-li.la-lg {
  left: -1.1428571429em;
}

.la-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.la-pull-left {
  float: left;
}

.la-pull-right {
  float: right;
}

.la.la-pull-left {
  margin-right: 0.3em;
}
.la.la-pull-right {
  margin-left: 0.3em;
}

.la.pull-left {
  margin-right: 0.3em;
}
.la.pull-right {
  margin-left: 0.3em;
}

.la-pull-left {
  float: left;
}

.la-pull-right {
  float: right;
}

.la.la-pull-left,
.las.la-pull-left,
.lar.la-pull-left,
.lal.la-pull-left,
.lab.la-pull-left {
  margin-right: 0.3em;
}

.la.la-pull-right,
.las.la-pull-right,
.lar.la-pull-right,
.lal.la-pull-right,
.lab.la-pull-right {
  margin-left: 0.3em;
}

.la-spin {
  animation: la-spin 2s infinite linear;
}

.la-pulse {
  animation: la-spin 1s infinite steps(8);
}
@keyframes la-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.la-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.la-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.la-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.la-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.la-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

.la-flip-both, .la-flip-horizontal.la-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

:root .la-rotate-90,
:root .la-rotate-180,
:root .la-rotate-270,
:root .la-flip-horizontal,
:root .la-flip-vertical,
:root .la-flip-both {
  filter: none;
}

.la-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.la-stack-1x,
.la-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.la-stack-1x {
  line-height: inherit;
}

.la-stack-2x {
  font-size: 2em;
}

.la-inverse {
  color: #fff;
}

.la-500px:before {
  content: "\F26E";
}

.la-accessible-icon:before {
  content: "\F368";
}

.la-accusoft:before {
  content: "\F369";
}

.la-acquisitions-incorporated:before {
  content: "\F6AF";
}

.la-ad:before {
  content: "\F641";
}

.la-address-book:before {
  content: "\F2B9";
}

.la-address-card:before {
  content: "\F2BB";
}

.la-adjust:before {
  content: "\F042";
}

.la-adn:before {
  content: "\F170";
}

.la-adobe:before {
  content: "\F778";
}

.la-adversal:before {
  content: "\F36A";
}

.la-affiliatetheme:before {
  content: "\F36B";
}

.la-air-freshener:before {
  content: "\F5D0";
}

.la-airbnb:before {
  content: "\F834";
}

.la-algolia:before {
  content: "\F36C";
}

.la-align-center:before {
  content: "\F037";
}

.la-align-justify:before {
  content: "\F039";
}

.la-align-left:before {
  content: "\F036";
}

.la-align-right:before {
  content: "\F038";
}

.la-alipay:before {
  content: "\F642";
}

.la-allergies:before {
  content: "\F461";
}

.la-amazon:before {
  content: "\F270";
}

.la-amazon-pay:before {
  content: "\F42C";
}

.la-ambulance:before {
  content: "\F0F9";
}

.la-american-sign-language-interpreting:before {
  content: "\F2A3";
}

.la-amilia:before {
  content: "\F36D";
}

.la-anchor:before {
  content: "\F13D";
}

.la-android:before {
  content: "\F17B";
}

.la-angellist:before {
  content: "\F209";
}

.la-angle-double-down:before {
  content: "\F103";
}

.la-angle-double-left:before {
  content: "\F100";
}

.la-angle-double-right:before {
  content: "\F101";
}

.la-angle-double-up:before {
  content: "\F102";
}

.la-angle-down:before {
  content: "\F107";
}

.la-angle-left:before {
  content: "\F104";
}

.la-angle-right:before {
  content: "\F105";
}

.la-angle-up:before {
  content: "\F106";
}

.la-angry:before {
  content: "\F556";
}

.la-angrycreative:before {
  content: "\F36E";
}

.la-angular:before {
  content: "\F420";
}

.la-ankh:before {
  content: "\F644";
}

.la-app-store:before {
  content: "\F36F";
}

.la-app-store-ios:before {
  content: "\F370";
}

.la-apper:before {
  content: "\F371";
}

.la-apple:before {
  content: "\F179";
}

.la-apple-alt:before {
  content: "\F5D1";
}

.la-apple-pay:before {
  content: "\F415";
}

.la-archive:before {
  content: "\F187";
}

.la-archway:before {
  content: "\F557";
}

.la-arrow-alt-circle-down:before {
  content: "\F358";
}

.la-arrow-alt-circle-left:before {
  content: "\F359";
}

.la-arrow-alt-circle-right:before {
  content: "\F35A";
}

.la-arrow-alt-circle-up:before {
  content: "\F35B";
}

.la-arrow-circle-down:before {
  content: "\F0AB";
}

.la-arrow-circle-left:before {
  content: "\F0A8";
}

.la-arrow-circle-right:before {
  content: "\F0A9";
}

.la-arrow-circle-up:before {
  content: "\F0AA";
}

.la-arrow-down:before {
  content: "\F063";
}

.la-arrow-left:before {
  content: "\F060";
}

.la-arrow-right:before {
  content: "\F061";
}

.la-arrow-up:before {
  content: "\F062";
}

.la-arrows-alt:before {
  content: "\F0B2";
}

.la-arrows-alt-h:before {
  content: "\F337";
}

.la-arrows-alt-v:before {
  content: "\F338";
}

.la-artstation:before {
  content: "\F77A";
}

.la-assistive-listening-systems:before {
  content: "\F2A2";
}

.la-asterisk:before {
  content: "\F069";
}

.la-asymmetrik:before {
  content: "\F372";
}

.la-at:before {
  content: "\F1FA";
}

.la-atlas:before {
  content: "\F558";
}

.la-atlassian:before {
  content: "\F77B";
}

.la-atom:before {
  content: "\F5D2";
}

.la-audible:before {
  content: "\F373";
}

.la-audio-description:before {
  content: "\F29E";
}

.la-autoprefixer:before {
  content: "\F41C";
}

.la-avianex:before {
  content: "\F374";
}

.la-aviato:before {
  content: "\F421";
}

.la-award:before {
  content: "\F559";
}

.la-aws:before {
  content: "\F375";
}

.la-baby:before {
  content: "\F77C";
}

.la-baby-carriage:before {
  content: "\F77D";
}

.la-backspace:before {
  content: "\F55A";
}

.la-backward:before {
  content: "\F04A";
}

.la-bacon:before {
  content: "\F7E5";
}

.la-balance-scale:before {
  content: "\F24E";
}

.la-balance-scale-left:before {
  content: "\F515";
}

.la-balance-scale-right:before {
  content: "\F516";
}

.la-ban:before {
  content: "\F05E";
}

.la-band-aid:before {
  content: "\F462";
}

.la-bandcamp:before {
  content: "\F2D5";
}

.la-barcode:before {
  content: "\F02A";
}

.la-bars:before {
  content: "\F0C9";
}

.la-baseball-ball:before {
  content: "\F433";
}

.la-basketball-ball:before {
  content: "\F434";
}

.la-bath:before {
  content: "\F2CD";
}

.la-battery-empty:before {
  content: "\F244";
}

.la-battery-full:before {
  content: "\F240";
}

.la-battery-half:before {
  content: "\F242";
}

.la-battery-quarter:before {
  content: "\F243";
}

.la-battery-three-quarters:before {
  content: "\F241";
}

.la-battle-net:before {
  content: "\F835";
}

.la-bed:before {
  content: "\F236";
}

.la-beer:before {
  content: "\F0FC";
}

.la-behance:before {
  content: "\F1B4";
}

.la-behance-square:before {
  content: "\F1B5";
}

.la-bell:before {
  content: "\F0F3";
}

.la-bell-slash:before {
  content: "\F1F6";
}

.la-bezier-curve:before {
  content: "\F55B";
}

.la-bible:before {
  content: "\F647";
}

.la-bicycle:before {
  content: "\F206";
}

.la-biking:before {
  content: "\F84A";
}

.la-bimobject:before {
  content: "\F378";
}

.la-binoculars:before {
  content: "\F1E5";
}

.la-biohazard:before {
  content: "\F780";
}

.la-birthday-cake:before {
  content: "\F1FD";
}

.la-bitbucket:before {
  content: "\F171";
}

.la-bitcoin:before {
  content: "\F379";
}

.la-bity:before {
  content: "\F37A";
}

.la-black-tie:before {
  content: "\F27E";
}

.la-blackberry:before {
  content: "\F37B";
}

.la-blender:before {
  content: "\F517";
}

.la-blender-phone:before {
  content: "\F6B6";
}

.la-blind:before {
  content: "\F29D";
}

.la-blog:before {
  content: "\F781";
}

.la-blogger:before {
  content: "\F37C";
}

.la-blogger-b:before {
  content: "\F37D";
}

.la-bluetooth:before {
  content: "\F293";
}

.la-bluetooth-b:before {
  content: "\F294";
}

.la-bold:before {
  content: "\F032";
}

.la-bolt:before {
  content: "\F0E7";
}

.la-bomb:before {
  content: "\F1E2";
}

.la-bone:before {
  content: "\F5D7";
}

.la-bong:before {
  content: "\F55C";
}

.la-book:before {
  content: "\F02D";
}

.la-book-dead:before {
  content: "\F6B7";
}

.la-book-medical:before {
  content: "\F7E6";
}

.la-book-open:before {
  content: "\F518";
}

.la-book-reader:before {
  content: "\F5DA";
}

.la-bookmark:before {
  content: "\F02E";
}

.la-bootstrap:before {
  content: "\F836";
}

.la-border-all:before {
  content: "\F84C";
}

.la-border-none:before {
  content: "\F850";
}

.la-border-style:before {
  content: "\F853";
}

.la-bowling-ball:before {
  content: "\F436";
}

.la-box:before {
  content: "\F466";
}

.la-box-open:before {
  content: "\F49E";
}

.la-boxes:before {
  content: "\F468";
}

.la-braille:before {
  content: "\F2A1";
}

.la-brain:before {
  content: "\F5DC";
}

.la-bread-slice:before {
  content: "\F7EC";
}

.la-briefcase:before {
  content: "\F0B1";
}

.la-briefcase-medical:before {
  content: "\F469";
}

.la-broadcast-tower:before {
  content: "\F519";
}

.la-broom:before {
  content: "\F51A";
}

.la-brush:before {
  content: "\F55D";
}

.la-btc:before {
  content: "\F15A";
}

.la-buffer:before {
  content: "\F837";
}

.la-bug:before {
  content: "\F188";
}

.la-building:before {
  content: "\F1AD";
}

.la-bullhorn:before {
  content: "\F0A1";
}

.la-bullseye:before {
  content: "\F140";
}

.la-burn:before {
  content: "\F46A";
}

.la-buromobelexperte:before {
  content: "\F37F";
}

.la-bus:before {
  content: "\F207";
}

.la-bus-alt:before {
  content: "\F55E";
}

.la-business-time:before {
  content: "\F64A";
}

.la-buysellads:before {
  content: "\F20D";
}

.la-calculator:before {
  content: "\F1EC";
}

.la-calendar:before {
  content: "\F133";
}

.la-calendar-alt:before {
  content: "\F073";
}

.la-calendar-check:before {
  content: "\F274";
}

.la-calendar-day:before {
  content: "\F783";
}

.la-calendar-minus:before {
  content: "\F272";
}

.la-calendar-plus:before {
  content: "\F271";
}

.la-calendar-times:before {
  content: "\F273";
}

.la-calendar-week:before {
  content: "\F784";
}

.la-camera:before {
  content: "\F030";
}

.la-camera-retro:before {
  content: "\F083";
}

.la-campground:before {
  content: "\F6BB";
}

.la-canadian-maple-leaf:before {
  content: "\F785";
}

.la-candy-cane:before {
  content: "\F786";
}

.la-cannabis:before {
  content: "\F55F";
}

.la-capsules:before {
  content: "\F46B";
}

.la-car:before {
  content: "\F1B9";
}

.la-car-alt:before {
  content: "\F5DE";
}

.la-car-battery:before {
  content: "\F5DF";
}

.la-car-crash:before {
  content: "\F5E1";
}

.la-car-side:before {
  content: "\F5E4";
}

.la-caret-down:before {
  content: "\F0D7";
}

.la-caret-left:before {
  content: "\F0D9";
}

.la-caret-right:before {
  content: "\F0DA";
}

.la-caret-square-down:before {
  content: "\F150";
}

.la-caret-square-left:before {
  content: "\F191";
}

.la-caret-square-right:before {
  content: "\F152";
}

.la-caret-square-up:before {
  content: "\F151";
}

.la-caret-up:before {
  content: "\F0D8";
}

.la-carrot:before {
  content: "\F787";
}

.la-cart-arrow-down:before {
  content: "\F218";
}

.la-cart-plus:before {
  content: "\F217";
}

.la-cash-register:before {
  content: "\F788";
}

.la-cat:before {
  content: "\F6BE";
}

.la-cc-amazon-pay:before {
  content: "\F42D";
}

.la-cc-amex:before {
  content: "\F1F3";
}

.la-cc-apple-pay:before {
  content: "\F416";
}

.la-cc-diners-club:before {
  content: "\F24C";
}

.la-cc-discover:before {
  content: "\F1F2";
}

.la-cc-jcb:before {
  content: "\F24B";
}

.la-cc-mastercard:before {
  content: "\F1F1";
}

.la-cc-paypal:before {
  content: "\F1F4";
}

.la-cc-stripe:before {
  content: "\F1F5";
}

.la-cc-visa:before {
  content: "\F1F0";
}

.la-centercode:before {
  content: "\F380";
}

.la-centos:before {
  content: "\F789";
}

.la-certificate:before {
  content: "\F0A3";
}

.la-chair:before {
  content: "\F6C0";
}

.la-chalkboard:before {
  content: "\F51B";
}

.la-chalkboard-teacher:before {
  content: "\F51C";
}

.la-charging-station:before {
  content: "\F5E7";
}

.la-chart-area:before {
  content: "\F1FE";
}

.la-chart-bar:before {
  content: "\F080";
}

.la-chart-line:before {
  content: "\F201";
}

.la-chart-pie:before {
  content: "\F200";
}

.la-check:before {
  content: "\F00C";
}

.la-check-circle:before {
  content: "\F058";
}

.la-check-double:before {
  content: "\F560";
}

.la-check-square:before {
  content: "\F14A";
}

.la-cheese:before {
  content: "\F7EF";
}

.la-chess:before {
  content: "\F439";
}

.la-chess-bishop:before {
  content: "\F43A";
}

.la-chess-board:before {
  content: "\F43C";
}

.la-chess-king:before {
  content: "\F43F";
}

.la-chess-knight:before {
  content: "\F441";
}

.la-chess-pawn:before {
  content: "\F443";
}

.la-chess-queen:before {
  content: "\F445";
}

.la-chess-rook:before {
  content: "\F447";
}

.la-chevron-circle-down:before {
  content: "\F13A";
}

.la-chevron-circle-left:before {
  content: "\F137";
}

.la-chevron-circle-right:before {
  content: "\F138";
}

.la-chevron-circle-up:before {
  content: "\F139";
}

.la-chevron-down:before {
  content: "\F078";
}

.la-chevron-left:before {
  content: "\F053";
}

.la-chevron-right:before {
  content: "\F054";
}

.la-chevron-up:before {
  content: "\F077";
}

.la-child:before {
  content: "\F1AE";
}

.la-chrome:before {
  content: "\F268";
}

.la-chromecast:before {
  content: "\F838";
}

.la-church:before {
  content: "\F51D";
}

.la-circle:before {
  content: "\F111";
}

.la-circle-notch:before {
  content: "\F1CE";
}

.la-city:before {
  content: "\F64F";
}

.la-clinic-medical:before {
  content: "\F7F2";
}

.la-clipboard:before {
  content: "\F328";
}

.la-clipboard-check:before {
  content: "\F46C";
}

.la-clipboard-list:before {
  content: "\F46D";
}

.la-clock:before {
  content: "\F017";
}

.la-clone:before {
  content: "\F24D";
}

.la-closed-captioning:before {
  content: "\F20A";
}

.la-cloud:before {
  content: "\F0C2";
}

.la-cloud-download-alt:before {
  content: "\F381";
}

.la-cloud-meatball:before {
  content: "\F73B";
}

.la-cloud-moon:before {
  content: "\F6C3";
}

.la-cloud-moon-rain:before {
  content: "\F73C";
}

.la-cloud-rain:before {
  content: "\F73D";
}

.la-cloud-showers-heavy:before {
  content: "\F740";
}

.la-cloud-sun:before {
  content: "\F6C4";
}

.la-cloud-sun-rain:before {
  content: "\F743";
}

.la-cloud-upload-alt:before {
  content: "\F382";
}

.la-cloudscale:before {
  content: "\F383";
}

.la-cloudsmith:before {
  content: "\F384";
}

.la-cloudversify:before {
  content: "\F385";
}

.la-cocktail:before {
  content: "\F561";
}

.la-code:before {
  content: "\F121";
}

.la-code-branch:before {
  content: "\F126";
}

.la-codepen:before {
  content: "\F1CB";
}

.la-codiepie:before {
  content: "\F284";
}

.la-coffee:before {
  content: "\F0F4";
}

.la-cog:before {
  content: "\F013";
}

.la-cogs:before {
  content: "\F085";
}

.la-coins:before {
  content: "\F51E";
}

.la-columns:before {
  content: "\F0DB";
}

.la-comment:before {
  content: "\F075";
}

.la-comment-alt:before {
  content: "\F27A";
}

.la-comment-dollar:before {
  content: "\F651";
}

.la-comment-dots:before {
  content: "\F4AD";
}

.la-comment-medical:before {
  content: "\F7F5";
}

.la-comment-slash:before {
  content: "\F4B3";
}

.la-comments:before {
  content: "\F086";
}

.la-comments-dollar:before {
  content: "\F653";
}

.la-compact-disc:before {
  content: "\F51F";
}

.la-compass:before {
  content: "\F14E";
}

.la-compress:before {
  content: "\F066";
}

.la-compress-arrows-alt:before {
  content: "\F78C";
}

.la-concierge-bell:before {
  content: "\F562";
}

.la-confluence:before {
  content: "\F78D";
}

.la-connectdevelop:before {
  content: "\F20E";
}

.la-contao:before {
  content: "\F26D";
}

.la-cookie:before {
  content: "\F563";
}

.la-cookie-bite:before {
  content: "\F564";
}

.la-copy:before {
  content: "\F0C5";
}

.la-copyright:before {
  content: "\F1F9";
}

.la-cotton-bureau:before {
  content: "\F89E";
}

.la-couch:before {
  content: "\F4B8";
}

.la-cpanel:before {
  content: "\F388";
}

.la-creative-commons:before {
  content: "\F25E";
}

.la-creative-commons-by:before {
  content: "\F4E7";
}

.la-creative-commons-nc:before {
  content: "\F4E8";
}

.la-creative-commons-nc-eu:before {
  content: "\F4E9";
}

.la-creative-commons-nc-jp:before {
  content: "\F4EA";
}

.la-creative-commons-nd:before {
  content: "\F4EB";
}

.la-creative-commons-pd:before {
  content: "\F4EC";
}

.la-creative-commons-pd-alt:before {
  content: "\F4ED";
}

.la-creative-commons-remix:before {
  content: "\F4EE";
}

.la-creative-commons-sa:before {
  content: "\F4EF";
}

.la-creative-commons-sampling:before {
  content: "\F4F0";
}

.la-creative-commons-sampling-plus:before {
  content: "\F4F1";
}

.la-creative-commons-share:before {
  content: "\F4F2";
}

.la-creative-commons-zero:before {
  content: "\F4F3";
}

.la-credit-card:before {
  content: "\F09D";
}

.la-critical-role:before {
  content: "\F6C9";
}

.la-crop:before {
  content: "\F125";
}

.la-crop-alt:before {
  content: "\F565";
}

.la-cross:before {
  content: "\F654";
}

.la-crosshairs:before {
  content: "\F05B";
}

.la-crow:before {
  content: "\F520";
}

.la-crown:before {
  content: "\F521";
}

.la-crutch:before {
  content: "\F7F7";
}

.la-css3:before {
  content: "\F13C";
}

.la-css3-alt:before {
  content: "\F38B";
}

.la-cube:before {
  content: "\F1B2";
}

.la-cubes:before {
  content: "\F1B3";
}

.la-cut:before {
  content: "\F0C4";
}

.la-cuttlefish:before {
  content: "\F38C";
}

.la-d-and-d:before {
  content: "\F38D";
}

.la-d-and-d-beyond:before {
  content: "\F6CA";
}

.la-dashcube:before {
  content: "\F210";
}

.la-database:before {
  content: "\F1C0";
}

.la-deaf:before {
  content: "\F2A4";
}

.la-delicious:before {
  content: "\F1A5";
}

.la-democrat:before {
  content: "\F747";
}

.la-deploydog:before {
  content: "\F38E";
}

.la-deskpro:before {
  content: "\F38F";
}

.la-desktop:before {
  content: "\F108";
}

.la-dev:before {
  content: "\F6CC";
}

.la-deviantart:before {
  content: "\F1BD";
}

.la-dharmachakra:before {
  content: "\F655";
}

.la-dhl:before {
  content: "\F790";
}

.la-diagnoses:before {
  content: "\F470";
}

.la-diaspora:before {
  content: "\F791";
}

.la-dice:before {
  content: "\F522";
}

.la-dice-d20:before {
  content: "\F6CF";
}

.la-dice-d6:before {
  content: "\F6D1";
}

.la-dice-five:before {
  content: "\F523";
}

.la-dice-four:before {
  content: "\F524";
}

.la-dice-one:before {
  content: "\F525";
}

.la-dice-six:before {
  content: "\F526";
}

.la-dice-three:before {
  content: "\F527";
}

.la-dice-two:before {
  content: "\F528";
}

.la-digg:before {
  content: "\F1A6";
}

.la-digital-ocean:before {
  content: "\F391";
}

.la-digital-tachograph:before {
  content: "\F566";
}

.la-directions:before {
  content: "\F5EB";
}

.la-discord:before {
  content: "\F392";
}

.la-discourse:before {
  content: "\F393";
}

.la-divide:before {
  content: "\F529";
}

.la-dizzy:before {
  content: "\F567";
}

.la-dna:before {
  content: "\F471";
}

.la-dochub:before {
  content: "\F394";
}

.la-docker:before {
  content: "\F395";
}

.la-dog:before {
  content: "\F6D3";
}

.la-dollar-sign:before {
  content: "\F155";
}

.la-dolly:before {
  content: "\F472";
}

.la-dolly-flatbed:before {
  content: "\F474";
}

.la-donate:before {
  content: "\F4B9";
}

.la-door-closed:before {
  content: "\F52A";
}

.la-door-open:before {
  content: "\F52B";
}

.la-dot-circle:before {
  content: "\F192";
}

.la-dove:before {
  content: "\F4BA";
}

.la-download:before {
  content: "\F019";
}

.la-draft2digital:before {
  content: "\F396";
}

.la-drafting-compass:before {
  content: "\F568";
}

.la-dragon:before {
  content: "\F6D5";
}

.la-draw-polygon:before {
  content: "\F5EE";
}

.la-dribbble:before {
  content: "\F17D";
}

.la-dribbble-square:before {
  content: "\F397";
}

.la-dropbox:before {
  content: "\F16B";
}

.la-drum:before {
  content: "\F569";
}

.la-drum-steelpan:before {
  content: "\F56A";
}

.la-drumstick-bite:before {
  content: "\F6D7";
}

.la-drupal:before {
  content: "\F1A9";
}

.la-dumbbell:before {
  content: "\F44B";
}

.la-dumpster:before {
  content: "\F793";
}

.la-dumpster-fire:before {
  content: "\F794";
}

.la-dungeon:before {
  content: "\F6D9";
}

.la-dyalog:before {
  content: "\F399";
}

.la-earlybirds:before {
  content: "\F39A";
}

.la-ebay:before {
  content: "\F4F4";
}

.la-edge:before {
  content: "\F282";
}

.la-edit:before {
  content: "\F044";
}

.la-egg:before {
  content: "\F7FB";
}

.la-eject:before {
  content: "\F052";
}

.la-elementor:before {
  content: "\F430";
}

.la-ellipsis-h:before {
  content: "\F141";
}

.la-ellipsis-v:before {
  content: "\F142";
}

.la-ello:before {
  content: "\F5F1";
}

.la-ember:before {
  content: "\F423";
}

.la-empire:before {
  content: "\F1D1";
}

.la-envelope:before {
  content: "\F0E0";
}

.la-envelope-open:before {
  content: "\F2B6";
}

.la-envelope-open-text:before {
  content: "\F658";
}

.la-envelope-square:before {
  content: "\F199";
}

.la-envira:before {
  content: "\F299";
}

.la-equals:before {
  content: "\F52C";
}

.la-eraser:before {
  content: "\F12D";
}

.la-erlang:before {
  content: "\F39D";
}

.la-ethereum:before {
  content: "\F42E";
}

.la-ethernet:before {
  content: "\F796";
}

.la-etsy:before {
  content: "\F2D7";
}

.la-euro-sign:before {
  content: "\F153";
}

.la-evernote:before {
  content: "\F839";
}

.la-exchange-alt:before {
  content: "\F362";
}

.la-exclamation:before {
  content: "\F12A";
}

.la-exclamation-circle:before {
  content: "\F06A";
}

.la-exclamation-triangle:before {
  content: "\F071";
}

.la-expand:before {
  content: "\F065";
}

.la-expand-arrows-alt:before {
  content: "\F31E";
}

.la-expeditedssl:before {
  content: "\F23E";
}

.la-external-link-alt:before {
  content: "\F35D";
}

.la-external-link-square-alt:before {
  content: "\F360";
}

.la-eye:before {
  content: "\F06E";
}

.la-eye-dropper:before {
  content: "\F1FB";
}

.la-eye-slash:before {
  content: "\F070";
}

.la-facebook:before {
  content: "\F09A";
}

.la-facebook-f:before {
  content: "\F39E";
}

.la-facebook-messenger:before {
  content: "\F39F";
}

.la-facebook-square:before {
  content: "\F082";
}

.la-fan:before {
  content: "\F863";
}

.la-fantasy-flight-games:before {
  content: "\F6DC";
}

.la-fast-backward:before {
  content: "\F049";
}

.la-fast-forward:before {
  content: "\F050";
}

.la-fax:before {
  content: "\F1AC";
}

.la-feather:before {
  content: "\F52D";
}

.la-feather-alt:before {
  content: "\F56B";
}

.la-fedex:before {
  content: "\F797";
}

.la-fedora:before {
  content: "\F798";
}

.la-female:before {
  content: "\F182";
}

.la-fighter-jet:before {
  content: "\F0FB";
}

.la-figma:before {
  content: "\F799";
}

.la-file:before {
  content: "\F15B";
}

.la-file-alt:before {
  content: "\F15C";
}

.la-file-archive:before {
  content: "\F1C6";
}

.la-file-audio:before {
  content: "\F1C7";
}

.la-file-code:before {
  content: "\F1C9";
}

.la-file-contract:before {
  content: "\F56C";
}

.la-file-csv:before {
  content: "\F6DD";
}

.la-file-download:before {
  content: "\F56D";
}

.la-file-excel:before {
  content: "\F1C3";
}

.la-file-export:before {
  content: "\F56E";
}

.la-file-image:before {
  content: "\F1C5";
}

.la-file-import:before {
  content: "\F56F";
}

.la-file-invoice:before {
  content: "\F570";
}

.la-file-invoice-dollar:before {
  content: "\F571";
}

.la-file-medical:before {
  content: "\F477";
}

.la-file-medical-alt:before {
  content: "\F478";
}

.la-file-pdf:before {
  content: "\F1C1";
}

.la-file-powerpoint:before {
  content: "\F1C4";
}

.la-file-prescription:before {
  content: "\F572";
}

.la-file-signature:before {
  content: "\F573";
}

.la-file-upload:before {
  content: "\F574";
}

.la-file-video:before {
  content: "\F1C8";
}

.la-file-word:before {
  content: "\F1C2";
}

.la-fill:before {
  content: "\F575";
}

.la-fill-drip:before {
  content: "\F576";
}

.la-film:before {
  content: "\F008";
}

.la-filter:before {
  content: "\F0B0";
}

.la-fingerprint:before {
  content: "\F577";
}

.la-fire:before {
  content: "\F06D";
}

.la-fire-alt:before {
  content: "\F7E4";
}

.la-fire-extinguisher:before {
  content: "\F134";
}

.la-firefox:before {
  content: "\F269";
}

.la-first-aid:before {
  content: "\F479";
}

.la-first-order:before {
  content: "\F2B0";
}

.la-first-order-alt:before {
  content: "\F50A";
}

.la-firstdraft:before {
  content: "\F3A1";
}

.la-fish:before {
  content: "\F578";
}

.la-fist-raised:before {
  content: "\F6DE";
}

.la-flag:before {
  content: "\F024";
}

.la-flag-checkered:before {
  content: "\F11E";
}

.la-flag-usa:before {
  content: "\F74D";
}

.la-flask:before {
  content: "\F0C3";
}

.la-flickr:before {
  content: "\F16E";
}

.la-flipboard:before {
  content: "\F44D";
}

.la-flushed:before {
  content: "\F579";
}

.la-fly:before {
  content: "\F417";
}

.la-folder:before {
  content: "\F07B";
}

.la-folder-minus:before {
  content: "\F65D";
}

.la-folder-open:before {
  content: "\F07C";
}

.la-folder-plus:before {
  content: "\F65E";
}

.la-font:before {
  content: "\F031";
}

.la-font-awesome:before {
  content: "\F2B4";
}

.la-font-awesome-alt:before {
  content: "\F35C";
}

.la-font-awesome-flag:before {
  content: "\F425";
}

.la-fonticons:before {
  content: "\F280";
}

.la-fonticons-fi:before {
  content: "\F3A2";
}

.la-football-ball:before {
  content: "\F44E";
}

.la-fort-awesome:before {
  content: "\F286";
}

.la-fort-awesome-alt:before {
  content: "\F3A3";
}

.la-forumbee:before {
  content: "\F211";
}

.la-forward:before {
  content: "\F04E";
}

.la-foursquare:before {
  content: "\F180";
}

.la-free-code-camp:before {
  content: "\F2C5";
}

.la-freebsd:before {
  content: "\F3A4";
}

.la-frog:before {
  content: "\F52E";
}

.la-frown:before {
  content: "\F119";
}

.la-frown-open:before {
  content: "\F57A";
}

.la-fulcrum:before {
  content: "\F50B";
}

.la-funnel-dollar:before {
  content: "\F662";
}

.la-futbol:before {
  content: "\F1E3";
}

.la-galactic-republic:before {
  content: "\F50C";
}

.la-galactic-senate:before {
  content: "\F50D";
}

.la-gamepad:before {
  content: "\F11B";
}

.la-gas-pump:before {
  content: "\F52F";
}

.la-gavel:before {
  content: "\F0E3";
}

.la-gem:before {
  content: "\F3A5";
}

.la-genderless:before {
  content: "\F22D";
}

.la-get-pocket:before {
  content: "\F265";
}

.la-gg:before {
  content: "\F260";
}

.la-gg-circle:before {
  content: "\F261";
}

.la-ghost:before {
  content: "\F6E2";
}

.la-gift:before {
  content: "\F06B";
}

.la-gifts:before {
  content: "\F79C";
}

.la-git:before {
  content: "\F1D3";
}

.la-git-alt:before {
  content: "\F841";
}

.la-git-square:before {
  content: "\F1D2";
}

.la-github:before {
  content: "\F09B";
}

.la-github-alt:before {
  content: "\F113";
}

.la-github-square:before {
  content: "\F092";
}

.la-gitkraken:before {
  content: "\F3A6";
}

.la-gitlab:before {
  content: "\F296";
}

.la-gitter:before {
  content: "\F426";
}

.la-glass-cheers:before {
  content: "\F79F";
}

.la-glass-martini:before {
  content: "\F000";
}

.la-glass-martini-alt:before {
  content: "\F57B";
}

.la-glass-whiskey:before {
  content: "\F7A0";
}

.la-glasses:before {
  content: "\F530";
}

.la-glide:before {
  content: "\F2A5";
}

.la-glide-g:before {
  content: "\F2A6";
}

.la-globe:before {
  content: "\F0AC";
}

.la-globe-africa:before {
  content: "\F57C";
}

.la-globe-americas:before {
  content: "\F57D";
}

.la-globe-asia:before {
  content: "\F57E";
}

.la-globe-europe:before {
  content: "\F7A2";
}

.la-gofore:before {
  content: "\F3A7";
}

.la-golf-ball:before {
  content: "\F450";
}

.la-goodreads:before {
  content: "\F3A8";
}

.la-goodreads-g:before {
  content: "\F3A9";
}

.la-google:before {
  content: "\F1A0";
}

.la-google-drive:before {
  content: "\F3AA";
}

.la-google-play:before {
  content: "\F3AB";
}

.la-google-plus:before {
  content: "\F2B3";
}

.la-google-plus-g:before {
  content: "\F0D5";
}

.la-google-plus-square:before {
  content: "\F0D4";
}

.la-google-wallet:before {
  content: "\F1EE";
}

.la-gopuram:before {
  content: "\F664";
}

.la-graduation-cap:before {
  content: "\F19D";
}

.la-gratipay:before {
  content: "\F184";
}

.la-grav:before {
  content: "\F2D6";
}

.la-greater-than:before {
  content: "\F531";
}

.la-greater-than-equal:before {
  content: "\F532";
}

.la-grimace:before {
  content: "\F57F";
}

.la-grin:before {
  content: "\F580";
}

.la-grin-alt:before {
  content: "\F581";
}

.la-grin-beam:before {
  content: "\F582";
}

.la-grin-beam-sweat:before {
  content: "\F583";
}

.la-grin-hearts:before {
  content: "\F584";
}

.la-grin-squint:before {
  content: "\F585";
}

.la-grin-squint-tears:before {
  content: "\F586";
}

.la-grin-stars:before {
  content: "\F587";
}

.la-grin-tears:before {
  content: "\F588";
}

.la-grin-tongue:before {
  content: "\F589";
}

.la-grin-tongue-squint:before {
  content: "\F58A";
}

.la-grin-tongue-wink:before {
  content: "\F58B";
}

.la-grin-wink:before {
  content: "\F58C";
}

.la-grip-horizontal:before {
  content: "\F58D";
}

.la-grip-lines:before {
  content: "\F7A4";
}

.la-grip-lines-vertical:before {
  content: "\F7A5";
}

.la-grip-vertical:before {
  content: "\F58E";
}

.la-gripfire:before {
  content: "\F3AC";
}

.la-grunt:before {
  content: "\F3AD";
}

.la-guitar:before {
  content: "\F7A6";
}

.la-gulp:before {
  content: "\F3AE";
}

.la-h-square:before {
  content: "\F0FD";
}

.la-hacker-news:before {
  content: "\F1D4";
}

.la-hacker-news-square:before {
  content: "\F3AF";
}

.la-hackerrank:before {
  content: "\F5F7";
}

.la-hamburger:before {
  content: "\F805";
}

.la-hammer:before {
  content: "\F6E3";
}

.la-hamsa:before {
  content: "\F665";
}

.la-hand-holding:before {
  content: "\F4BD";
}

.la-hand-holding-heart:before {
  content: "\F4BE";
}

.la-hand-holding-usd:before {
  content: "\F4C0";
}

.la-hand-lizard:before {
  content: "\F258";
}

.la-hand-middle-finger:before {
  content: "\F806";
}

.la-hand-paper:before {
  content: "\F256";
}

.la-hand-peace:before {
  content: "\F25B";
}

.la-hand-point-down:before {
  content: "\F0A7";
}

.la-hand-point-left:before {
  content: "\F0A5";
}

.la-hand-point-right:before {
  content: "\F0A4";
}

.la-hand-point-up:before {
  content: "\F0A6";
}

.la-hand-pointer:before {
  content: "\F25A";
}

.la-hand-rock:before {
  content: "\F255";
}

.la-hand-scissors:before {
  content: "\F257";
}

.la-hand-spock:before {
  content: "\F259";
}

.la-hands:before {
  content: "\F4C2";
}

.la-hands-helping:before {
  content: "\F4C4";
}

.la-handshake:before {
  content: "\F2B5";
}

.la-hanukiah:before {
  content: "\F6E6";
}

.la-hard-hat:before {
  content: "\F807";
}

.la-hashtag:before {
  content: "\F292";
}

.la-hat-wizard:before {
  content: "\F6E8";
}

.la-haykal:before {
  content: "\F666";
}

.la-hdd:before {
  content: "\F0A0";
}

.la-heading:before {
  content: "\F1DC";
}

.la-headphones:before {
  content: "\F025";
}

.la-headphones-alt:before {
  content: "\F58F";
}

.la-headset:before {
  content: "\F590";
}

.la-heart:before {
  content: "\F004";
}

.la-heart-broken:before {
  content: "\F7A9";
}

.la-heartbeat:before {
  content: "\F21E";
}

.la-helicopter:before {
  content: "\F533";
}

.la-highlighter:before {
  content: "\F591";
}

.la-hiking:before {
  content: "\F6EC";
}

.la-hippo:before {
  content: "\F6ED";
}

.la-hips:before {
  content: "\F452";
}

.la-hire-a-helper:before {
  content: "\F3B0";
}

.la-history:before {
  content: "\F1DA";
}

.la-hockey-puck:before {
  content: "\F453";
}

.la-holly-berry:before {
  content: "\F7AA";
}

.la-home:before {
  content: "\F015";
}

.la-hooli:before {
  content: "\F427";
}

.la-hornbill:before {
  content: "\F592";
}

.la-horse:before {
  content: "\F6F0";
}

.la-horse-head:before {
  content: "\F7AB";
}

.la-hospital:before {
  content: "\F0F8";
}

.la-hospital-alt:before {
  content: "\F47D";
}

.la-hospital-symbol:before {
  content: "\F47E";
}

.la-hot-tub:before {
  content: "\F593";
}

.la-hotdog:before {
  content: "\F80F";
}

.la-hotel:before {
  content: "\F594";
}

.la-hotjar:before {
  content: "\F3B1";
}

.la-hourglass:before {
  content: "\F254";
}

.la-hourglass-end:before {
  content: "\F253";
}

.la-hourglass-half:before {
  content: "\F252";
}

.la-hourglass-start:before {
  content: "\F251";
}

.la-house-damage:before {
  content: "\F6F1";
}

.la-houzz:before {
  content: "\F27C";
}

.la-hryvnia:before {
  content: "\F6F2";
}

.la-html5:before {
  content: "\F13B";
}

.la-hubspot:before {
  content: "\F3B2";
}

.la-i-cursor:before {
  content: "\F246";
}

.la-ice-cream:before {
  content: "\F810";
}

.la-icicles:before {
  content: "\F7AD";
}

.la-icons:before {
  content: "\F86D";
}

.la-id-badge:before {
  content: "\F2C1";
}

.la-id-card:before {
  content: "\F2C2";
}

.la-id-card-alt:before {
  content: "\F47F";
}

.la-igloo:before {
  content: "\F7AE";
}

.la-image:before {
  content: "\F03E";
}

.la-images:before {
  content: "\F302";
}

.la-imdb:before {
  content: "\F2D8";
}

.la-inbox:before {
  content: "\F01C";
}

.la-indent:before {
  content: "\F03C";
}

.la-industry:before {
  content: "\F275";
}

.la-infinity:before {
  content: "\F534";
}

.la-info:before {
  content: "\F129";
}

.la-info-circle:before {
  content: "\F05A";
}

.la-instagram:before {
  content: "\F16D";
}

.la-intercom:before {
  content: "\F7AF";
}

.la-internet-explorer:before {
  content: "\F26B";
}

.la-invision:before {
  content: "\F7B0";
}

.la-ioxhost:before {
  content: "\F208";
}

.la-italic:before {
  content: "\F033";
}

.la-itch-io:before {
  content: "\F83A";
}

.la-itunes:before {
  content: "\F3B4";
}

.la-itunes-note:before {
  content: "\F3B5";
}

.la-java:before {
  content: "\F4E4";
}

.la-jedi:before {
  content: "\F669";
}

.la-jedi-order:before {
  content: "\F50E";
}

.la-jenkins:before {
  content: "\F3B6";
}

.la-jira:before {
  content: "\F7B1";
}

.la-joget:before {
  content: "\F3B7";
}

.la-joint:before {
  content: "\F595";
}

.la-joomla:before {
  content: "\F1AA";
}

.la-journal-whills:before {
  content: "\F66A";
}

.la-js:before {
  content: "\F3B8";
}

.la-js-square:before {
  content: "\F3B9";
}

.la-jsfiddle:before {
  content: "\F1CC";
}

.la-kaaba:before {
  content: "\F66B";
}

.la-kaggle:before {
  content: "\F5FA";
}

.la-key:before {
  content: "\F084";
}

.la-keybase:before {
  content: "\F4F5";
}

.la-keyboard:before {
  content: "\F11C";
}

.la-keycdn:before {
  content: "\F3BA";
}

.la-khanda:before {
  content: "\F66D";
}

.la-kickstarter:before {
  content: "\F3BB";
}

.la-kickstarter-k:before {
  content: "\F3BC";
}

.la-kiss:before {
  content: "\F596";
}

.la-kiss-beam:before {
  content: "\F597";
}

.la-kiss-wink-heart:before {
  content: "\F598";
}

.la-kiwi-bird:before {
  content: "\F535";
}

.la-korvue:before {
  content: "\F42F";
}

.la-landmark:before {
  content: "\F66F";
}

.la-language:before {
  content: "\F1AB";
}

.la-laptop:before {
  content: "\F109";
}

.la-laptop-code:before {
  content: "\F5FC";
}

.la-laptop-medical:before {
  content: "\F812";
}

.la-laravel:before {
  content: "\F3BD";
}

.la-lastfm:before {
  content: "\F202";
}

.la-lastfm-square:before {
  content: "\F203";
}

.la-laugh:before {
  content: "\F599";
}

.la-laugh-beam:before {
  content: "\F59A";
}

.la-laugh-squint:before {
  content: "\F59B";
}

.la-laugh-wink:before {
  content: "\F59C";
}

.la-layer-group:before {
  content: "\F5FD";
}

.la-leaf:before {
  content: "\F06C";
}

.la-leanpub:before {
  content: "\F212";
}

.la-lemon:before {
  content: "\F094";
}

.la-less:before {
  content: "\F41D";
}

.la-less-than:before {
  content: "\F536";
}

.la-less-than-equal:before {
  content: "\F537";
}

.la-level-down-alt:before {
  content: "\F3BE";
}

.la-level-up-alt:before {
  content: "\F3BF";
}

.la-life-ring:before {
  content: "\F1CD";
}

.la-lightbulb:before {
  content: "\F0EB";
}

.la-line:before {
  content: "\F3C0";
}

.la-link:before {
  content: "\F0C1";
}

.la-linkedin:before {
  content: "\F08C";
}

.la-linkedin-in:before {
  content: "\F0E1";
}

.la-linode:before {
  content: "\F2B8";
}

.la-linux:before {
  content: "\F17C";
}

.la-lira-sign:before {
  content: "\F195";
}

.la-list:before {
  content: "\F03A";
}

.la-list-alt:before {
  content: "\F022";
}

.la-list-ol:before {
  content: "\F0CB";
}

.la-list-ul:before {
  content: "\F0CA";
}

.la-location-arrow:before {
  content: "\F124";
}

.la-lock:before {
  content: "\F023";
}

.la-lock-open:before {
  content: "\F3C1";
}

.la-long-arrow-alt-down:before {
  content: "\F309";
}

.la-long-arrow-alt-left:before {
  content: "\F30A";
}

.la-long-arrow-alt-right:before {
  content: "\F30B";
}

.la-long-arrow-alt-up:before {
  content: "\F30C";
}

.la-low-vision:before {
  content: "\F2A8";
}

.la-luggage-cart:before {
  content: "\F59D";
}

.la-lyft:before {
  content: "\F3C3";
}

.la-magento:before {
  content: "\F3C4";
}

.la-magic:before {
  content: "\F0D0";
}

.la-magnet:before {
  content: "\F076";
}

.la-mail-bulk:before {
  content: "\F674";
}

.la-mailchimp:before {
  content: "\F59E";
}

.la-male:before {
  content: "\F183";
}

.la-mandalorian:before {
  content: "\F50F";
}

.la-map:before {
  content: "\F279";
}

.la-map-marked:before {
  content: "\F59F";
}

.la-map-marked-alt:before {
  content: "\F5A0";
}

.la-map-marker:before {
  content: "\F041";
}

.la-map-marker-alt:before {
  content: "\F3C5";
}

.la-map-pin:before {
  content: "\F276";
}

.la-map-signs:before {
  content: "\F277";
}

.la-markdown:before {
  content: "\F60F";
}

.la-marker:before {
  content: "\F5A1";
}

.la-mars:before {
  content: "\F222";
}

.la-mars-double:before {
  content: "\F227";
}

.la-mars-stroke:before {
  content: "\F229";
}

.la-mars-stroke-h:before {
  content: "\F22B";
}

.la-mars-stroke-v:before {
  content: "\F22A";
}

.la-mask:before {
  content: "\F6FA";
}

.la-mastodon:before {
  content: "\F4F6";
}

.la-maxcdn:before {
  content: "\F136";
}

.la-medal:before {
  content: "\F5A2";
}

.la-medapps:before {
  content: "\F3C6";
}

.la-medium:before {
  content: "\F23A";
}

.la-medium-m:before {
  content: "\F3C7";
}

.la-medkit:before {
  content: "\F0FA";
}

.la-medrt:before {
  content: "\F3C8";
}

.la-meetup:before {
  content: "\F2E0";
}

.la-megaport:before {
  content: "\F5A3";
}

.la-meh:before {
  content: "\F11A";
}

.la-meh-blank:before {
  content: "\F5A4";
}

.la-meh-rolling-eyes:before {
  content: "\F5A5";
}

.la-memory:before {
  content: "\F538";
}

.la-mendeley:before {
  content: "\F7B3";
}

.la-menorah:before {
  content: "\F676";
}

.la-mercury:before {
  content: "\F223";
}

.la-meteor:before {
  content: "\F753";
}

.la-microchip:before {
  content: "\F2DB";
}

.la-microphone:before {
  content: "\F130";
}

.la-microphone-alt:before {
  content: "\F3C9";
}

.la-microphone-alt-slash:before {
  content: "\F539";
}

.la-microphone-slash:before {
  content: "\F131";
}

.la-microscope:before {
  content: "\F610";
}

.la-microsoft:before {
  content: "\F3CA";
}

.la-minus:before {
  content: "\F068";
}

.la-minus-circle:before {
  content: "\F056";
}

.la-minus-square:before {
  content: "\F146";
}

.la-mitten:before {
  content: "\F7B5";
}

.la-mix:before {
  content: "\F3CB";
}

.la-mixcloud:before {
  content: "\F289";
}

.la-mizuni:before {
  content: "\F3CC";
}

.la-mobile:before {
  content: "\F10B";
}

.la-mobile-alt:before {
  content: "\F3CD";
}

.la-modx:before {
  content: "\F285";
}

.la-monero:before {
  content: "\F3D0";
}

.la-money-bill:before {
  content: "\F0D6";
}

.la-money-bill-alt:before {
  content: "\F3D1";
}

.la-money-bill-wave:before {
  content: "\F53A";
}

.la-money-bill-wave-alt:before {
  content: "\F53B";
}

.la-money-check:before {
  content: "\F53C";
}

.la-money-check-alt:before {
  content: "\F53D";
}

.la-monument:before {
  content: "\F5A6";
}

.la-moon:before {
  content: "\F186";
}

.la-mortar-pestle:before {
  content: "\F5A7";
}

.la-mosque:before {
  content: "\F678";
}

.la-motorcycle:before {
  content: "\F21C";
}

.la-mountain:before {
  content: "\F6FC";
}

.la-mouse-pointer:before {
  content: "\F245";
}

.la-mug-hot:before {
  content: "\F7B6";
}

.la-music:before {
  content: "\F001";
}

.la-napster:before {
  content: "\F3D2";
}

.la-neos:before {
  content: "\F612";
}

.la-network-wired:before {
  content: "\F6FF";
}

.la-neuter:before {
  content: "\F22C";
}

.la-newspaper:before {
  content: "\F1EA";
}

.la-nimblr:before {
  content: "\F5A8";
}

.la-node:before {
  content: "\F419";
}

.la-node-js:before {
  content: "\F3D3";
}

.la-not-equal:before {
  content: "\F53E";
}

.la-notes-medical:before {
  content: "\F481";
}

.la-npm:before {
  content: "\F3D4";
}

.la-ns8:before {
  content: "\F3D5";
}

.la-nutritionix:before {
  content: "\F3D6";
}

.la-object-group:before {
  content: "\F247";
}

.la-object-ungroup:before {
  content: "\F248";
}

.la-odnoklassniki:before {
  content: "\F263";
}

.la-odnoklassniki-square:before {
  content: "\F264";
}

.la-oil-can:before {
  content: "\F613";
}

.la-old-republic:before {
  content: "\F510";
}

.la-om:before {
  content: "\F679";
}

.la-opencart:before {
  content: "\F23D";
}

.la-openid:before {
  content: "\F19B";
}

.la-opera:before {
  content: "\F26A";
}

.la-optin-monster:before {
  content: "\F23C";
}

.la-osi:before {
  content: "\F41A";
}

.la-otter:before {
  content: "\F700";
}

.la-outdent:before {
  content: "\F03B";
}

.la-page4:before {
  content: "\F3D7";
}

.la-pagelines:before {
  content: "\F18C";
}

.la-pager:before {
  content: "\F815";
}

.la-paint-brush:before {
  content: "\F1FC";
}

.la-paint-roller:before {
  content: "\F5AA";
}

.la-palette:before {
  content: "\F53F";
}

.la-palfed:before {
  content: "\F3D8";
}

.la-pallet:before {
  content: "\F482";
}

.la-paper-plane:before {
  content: "\F1D8";
}

.la-paperclip:before {
  content: "\F0C6";
}

.la-parachute-box:before {
  content: "\F4CD";
}

.la-paragraph:before {
  content: "\F1DD";
}

.la-parking:before {
  content: "\F540";
}

.la-passport:before {
  content: "\F5AB";
}

.la-pastafarianism:before {
  content: "\F67B";
}

.la-paste:before {
  content: "\F0EA";
}

.la-patreon:before {
  content: "\F3D9";
}

.la-pause:before {
  content: "\F04C";
}

.la-pause-circle:before {
  content: "\F28B";
}

.la-paw:before {
  content: "\F1B0";
}

.la-paypal:before {
  content: "\F1ED";
}

.la-peace:before {
  content: "\F67C";
}

.la-pen:before {
  content: "\F304";
}

.la-pen-alt:before {
  content: "\F305";
}

.la-pen-fancy:before {
  content: "\F5AC";
}

.la-pen-nib:before {
  content: "\F5AD";
}

.la-pen-square:before {
  content: "\F14B";
}

.la-pencil-alt:before {
  content: "\F303";
}

.la-pencil-ruler:before {
  content: "\F5AE";
}

.la-penny-arcade:before {
  content: "\F704";
}

.la-people-carry:before {
  content: "\F4CE";
}

.la-pepper-hot:before {
  content: "\F816";
}

.la-percent:before {
  content: "\F295";
}

.la-percentage:before {
  content: "\F541";
}

.la-periscope:before {
  content: "\F3DA";
}

.la-person-booth:before {
  content: "\F756";
}

.la-phabricator:before {
  content: "\F3DB";
}

.la-phoenix-framework:before {
  content: "\F3DC";
}

.la-phoenix-squadron:before {
  content: "\F511";
}

.la-phone:before {
  content: "\F095";
}

.la-phone-alt:before {
  content: "\F879";
}

.la-phone-slash:before {
  content: "\F3DD";
}

.la-phone-square:before {
  content: "\F098";
}

.la-phone-square-alt:before {
  content: "\F87B";
}

.la-phone-volume:before {
  content: "\F2A0";
}

.la-photo-video:before {
  content: "\F87C";
}

.la-php:before {
  content: "\F457";
}

.la-pied-piper:before {
  content: "\F2AE";
}

.la-pied-piper-alt:before {
  content: "\F1A8";
}

.la-pied-piper-hat:before {
  content: "\F4E5";
}

.la-pied-piper-pp:before {
  content: "\F1A7";
}

.la-piggy-bank:before {
  content: "\F4D3";
}

.la-pills:before {
  content: "\F484";
}

.la-pinterest:before {
  content: "\F0D2";
}

.la-pinterest-p:before {
  content: "\F231";
}

.la-pinterest-square:before {
  content: "\F0D3";
}

.la-pizza-slice:before {
  content: "\F818";
}

.la-place-of-worship:before {
  content: "\F67F";
}

.la-plane:before {
  content: "\F072";
}

.la-plane-arrival:before {
  content: "\F5AF";
}

.la-plane-departure:before {
  content: "\F5B0";
}

.la-play:before {
  content: "\F04B";
}

.la-play-circle:before {
  content: "\F144";
}

.la-playstation:before {
  content: "\F3DF";
}

.la-plug:before {
  content: "\F1E6";
}

.la-plus:before {
  content: "\F067";
}

.la-plus-circle:before {
  content: "\F055";
}

.la-plus-square:before {
  content: "\F0FE";
}

.la-podcast:before {
  content: "\F2CE";
}

.la-poll:before {
  content: "\F681";
}

.la-poll-h:before {
  content: "\F682";
}

.la-poo:before {
  content: "\F2FE";
}

.la-poo-storm:before {
  content: "\F75A";
}

.la-poop:before {
  content: "\F619";
}

.la-portrait:before {
  content: "\F3E0";
}

.la-pound-sign:before {
  content: "\F154";
}

.la-power-off:before {
  content: "\F011";
}

.la-pray:before {
  content: "\F683";
}

.la-praying-hands:before {
  content: "\F684";
}

.la-prescription:before {
  content: "\F5B1";
}

.la-prescription-bottle:before {
  content: "\F485";
}

.la-prescription-bottle-alt:before {
  content: "\F486";
}

.la-print:before {
  content: "\F02F";
}

.la-procedures:before {
  content: "\F487";
}

.la-product-hunt:before {
  content: "\F288";
}

.la-project-diagram:before {
  content: "\F542";
}

.la-pushed:before {
  content: "\F3E1";
}

.la-puzzle-piece:before {
  content: "\F12E";
}

.la-python:before {
  content: "\F3E2";
}

.la-qq:before {
  content: "\F1D6";
}

.la-qrcode:before {
  content: "\F029";
}

.la-question:before {
  content: "\F128";
}

.la-question-circle:before {
  content: "\F059";
}

.la-quidditch:before {
  content: "\F458";
}

.la-quinscape:before {
  content: "\F459";
}

.la-quora:before {
  content: "\F2C4";
}

.la-quote-left:before {
  content: "\F10D";
}

.la-quote-right:before {
  content: "\F10E";
}

.la-quran:before {
  content: "\F687";
}

.la-r-project:before {
  content: "\F4F7";
}

.la-radiation:before {
  content: "\F7B9";
}

.la-radiation-alt:before {
  content: "\F7BA";
}

.la-rainbow:before {
  content: "\F75B";
}

.la-random:before {
  content: "\F074";
}

.la-raspberry-pi:before {
  content: "\F7BB";
}

.la-ravelry:before {
  content: "\F2D9";
}

.la-react:before {
  content: "\F41B";
}

.la-reacteurope:before {
  content: "\F75D";
}

.la-readme:before {
  content: "\F4D5";
}

.la-rebel:before {
  content: "\F1D0";
}

.la-receipt:before {
  content: "\F543";
}

.la-recycle:before {
  content: "\F1B8";
}

.la-red-river:before {
  content: "\F3E3";
}

.la-reddit:before {
  content: "\F1A1";
}

.la-reddit-alien:before {
  content: "\F281";
}

.la-reddit-square:before {
  content: "\F1A2";
}

.la-redhat:before {
  content: "\F7BC";
}

.la-redo:before {
  content: "\F01E";
}

.la-redo-alt:before {
  content: "\F2F9";
}

.la-registered:before {
  content: "\F25D";
}

.la-remove-format:before {
  content: "\F87D";
}

.la-renren:before {
  content: "\F18B";
}

.la-reply:before {
  content: "\F3E5";
}

.la-reply-all:before {
  content: "\F122";
}

.la-replyd:before {
  content: "\F3E6";
}

.la-republican:before {
  content: "\F75E";
}

.la-researchgate:before {
  content: "\F4F8";
}

.la-resolving:before {
  content: "\F3E7";
}

.la-restroom:before {
  content: "\F7BD";
}

.la-retweet:before {
  content: "\F079";
}

.la-rev:before {
  content: "\F5B2";
}

.la-ribbon:before {
  content: "\F4D6";
}

.la-ring:before {
  content: "\F70B";
}

.la-road:before {
  content: "\F018";
}

.la-robot:before {
  content: "\F544";
}

.la-rocket:before {
  content: "\F135";
}

.la-rocketchat:before {
  content: "\F3E8";
}

.la-rockrms:before {
  content: "\F3E9";
}

.la-route:before {
  content: "\F4D7";
}

.la-rss:before {
  content: "\F09E";
}

.la-rss-square:before {
  content: "\F143";
}

.la-ruble-sign:before {
  content: "\F158";
}

.la-ruler:before {
  content: "\F545";
}

.la-ruler-combined:before {
  content: "\F546";
}

.la-ruler-horizontal:before {
  content: "\F547";
}

.la-ruler-vertical:before {
  content: "\F548";
}

.la-running:before {
  content: "\F70C";
}

.la-rupee-sign:before {
  content: "\F156";
}

.la-sad-cry:before {
  content: "\F5B3";
}

.la-sad-tear:before {
  content: "\F5B4";
}

.la-safari:before {
  content: "\F267";
}

.la-salesforce:before {
  content: "\F83B";
}

.la-sass:before {
  content: "\F41E";
}

.la-satellite:before {
  content: "\F7BF";
}

.la-satellite-dish:before {
  content: "\F7C0";
}

.la-save:before {
  content: "\F0C7";
}

.la-schlix:before {
  content: "\F3EA";
}

.la-school:before {
  content: "\F549";
}

.la-screwdriver:before {
  content: "\F54A";
}

.la-scribd:before {
  content: "\F28A";
}

.la-scroll:before {
  content: "\F70E";
}

.la-sd-card:before {
  content: "\F7C2";
}

.la-search:before {
  content: "\F002";
}

.la-search-dollar:before {
  content: "\F688";
}

.la-search-location:before {
  content: "\F689";
}

.la-search-minus:before {
  content: "\F010";
}

.la-search-plus:before {
  content: "\F00E";
}

.la-searchengin:before {
  content: "\F3EB";
}

.la-seedling:before {
  content: "\F4D8";
}

.la-sellcast:before {
  content: "\F2DA";
}

.la-sellsy:before {
  content: "\F213";
}

.la-server:before {
  content: "\F233";
}

.la-servicestack:before {
  content: "\F3EC";
}

.la-shapes:before {
  content: "\F61F";
}

.la-share:before {
  content: "\F064";
}

.la-share-alt:before {
  content: "\F1E0";
}

.la-share-alt-square:before {
  content: "\F1E1";
}

.la-share-square:before {
  content: "\F14D";
}

.la-shekel-sign:before {
  content: "\F20B";
}

.la-shield-alt:before {
  content: "\F3ED";
}

.la-ship:before {
  content: "\F21A";
}

.la-shipping-fast:before {
  content: "\F48B";
}

.la-shirtsinbulk:before {
  content: "\F214";
}

.la-shoe-prints:before {
  content: "\F54B";
}

.la-shopping-bag:before {
  content: "\F290";
}

.la-shopping-basket:before {
  content: "\F291";
}

.la-shopping-cart:before {
  content: "\F07A";
}

.la-shopware:before {
  content: "\F5B5";
}

.la-shower:before {
  content: "\F2CC";
}

.la-shuttle-van:before {
  content: "\F5B6";
}

.la-sign:before {
  content: "\F4D9";
}

.la-sign-in-alt:before {
  content: "\F2F6";
}

.la-sign-language:before {
  content: "\F2A7";
}

.la-sign-out-alt:before {
  content: "\F2F5";
}

.la-signal:before {
  content: "\F012";
}

.la-signature:before {
  content: "\F5B7";
}

.la-sim-card:before {
  content: "\F7C4";
}

.la-simplybuilt:before {
  content: "\F215";
}

.la-sistrix:before {
  content: "\F3EE";
}

.la-sitemap:before {
  content: "\F0E8";
}

.la-sith:before {
  content: "\F512";
}

.la-skating:before {
  content: "\F7C5";
}

.la-sketch:before {
  content: "\F7C6";
}

.la-skiing:before {
  content: "\F7C9";
}

.la-skiing-nordic:before {
  content: "\F7CA";
}

.la-skull:before {
  content: "\F54C";
}

.la-skull-crossbones:before {
  content: "\F714";
}

.la-skyatlas:before {
  content: "\F216";
}

.la-skype:before {
  content: "\F17E";
}

.la-slack:before {
  content: "\F198";
}

.la-slack-hash:before {
  content: "\F3EF";
}

.la-slash:before {
  content: "\F715";
}

.la-sleigh:before {
  content: "\F7CC";
}

.la-sliders-h:before {
  content: "\F1DE";
}

.la-slideshare:before {
  content: "\F1E7";
}

.la-smile:before {
  content: "\F118";
}

.la-smile-beam:before {
  content: "\F5B8";
}

.la-smile-wink:before {
  content: "\F4DA";
}

.la-smog:before {
  content: "\F75F";
}

.la-smoking:before {
  content: "\F48D";
}

.la-smoking-ban:before {
  content: "\F54D";
}

.la-sms:before {
  content: "\F7CD";
}

.la-snapchat:before {
  content: "\F2AB";
}

.la-snapchat-ghost:before {
  content: "\F2AC";
}

.la-snapchat-square:before {
  content: "\F2AD";
}

.la-snowboarding:before {
  content: "\F7CE";
}

.la-snowflake:before {
  content: "\F2DC";
}

.la-snowman:before {
  content: "\F7D0";
}

.la-snowplow:before {
  content: "\F7D2";
}

.la-socks:before {
  content: "\F696";
}

.la-solar-panel:before {
  content: "\F5BA";
}

.la-sort:before {
  content: "\F0DC";
}

.la-sort-alpha-down:before {
  content: "\F15D";
}

.la-sort-alpha-down-alt:before {
  content: "\F881";
}

.la-sort-alpha-up:before {
  content: "\F15E";
}

.la-sort-alpha-up-alt:before {
  content: "\F882";
}

.la-sort-amount-down:before {
  content: "\F160";
}

.la-sort-amount-down-alt:before {
  content: "\F884";
}

.la-sort-amount-up:before {
  content: "\F161";
}

.la-sort-amount-up-alt:before {
  content: "\F885";
}

.la-sort-down:before {
  content: "\F0DD";
}

.la-sort-numeric-down:before {
  content: "\F162";
}

.la-sort-numeric-down-alt:before {
  content: "\F886";
}

.la-sort-numeric-up:before {
  content: "\F163";
}

.la-sort-numeric-up-alt:before {
  content: "\F887";
}

.la-sort-up:before {
  content: "\F0DE";
}

.la-soundcloud:before {
  content: "\F1BE";
}

.la-sourcetree:before {
  content: "\F7D3";
}

.la-spa:before {
  content: "\F5BB";
}

.la-space-shuttle:before {
  content: "\F197";
}

.la-speakap:before {
  content: "\F3F3";
}

.la-speaker-deck:before {
  content: "\F83C";
}

.la-spell-check:before {
  content: "\F891";
}

.la-spider:before {
  content: "\F717";
}

.la-spinner:before {
  content: "\F110";
}

.la-splotch:before {
  content: "\F5BC";
}

.la-spotify:before {
  content: "\F1BC";
}

.la-spray-can:before {
  content: "\F5BD";
}

.la-square:before {
  content: "\F0C8";
}

.la-square-full:before {
  content: "\F45C";
}

.la-square-root-alt:before {
  content: "\F698";
}

.la-squarespace:before {
  content: "\F5BE";
}

.la-stack-exchange:before {
  content: "\F18D";
}

.la-stack-overflow:before {
  content: "\F16C";
}

.la-stackpath:before {
  content: "\F842";
}

.la-stamp:before {
  content: "\F5BF";
}

.la-star:before {
  content: "\F005";
}

.la-star-and-crescent:before {
  content: "\F699";
}

.la-star-half:before {
  content: "\F089";
}

.la-star-half-alt:before {
  content: "\F5C0";
}

.la-star-of-david:before {
  content: "\F69A";
}

.la-star-of-life:before {
  content: "\F621";
}

.la-staylinked:before {
  content: "\F3F5";
}

.la-steam:before {
  content: "\F1B6";
}

.la-steam-square:before {
  content: "\F1B7";
}

.la-steam-symbol:before {
  content: "\F3F6";
}

.la-step-backward:before {
  content: "\F048";
}

.la-step-forward:before {
  content: "\F051";
}

.la-stethoscope:before {
  content: "\F0F1";
}

.la-sticker-mule:before {
  content: "\F3F7";
}

.la-sticky-note:before {
  content: "\F249";
}

.la-stop:before {
  content: "\F04D";
}

.la-stop-circle:before {
  content: "\F28D";
}

.la-stopwatch:before {
  content: "\F2F2";
}

.la-store:before {
  content: "\F54E";
}

.la-store-alt:before {
  content: "\F54F";
}

.la-strava:before {
  content: "\F428";
}

.la-stream:before {
  content: "\F550";
}

.la-street-view:before {
  content: "\F21D";
}

.la-strikethrough:before {
  content: "\F0CC";
}

.la-stripe:before {
  content: "\F429";
}

.la-stripe-s:before {
  content: "\F42A";
}

.la-stroopwafel:before {
  content: "\F551";
}

.la-studiovinari:before {
  content: "\F3F8";
}

.la-stumbleupon:before {
  content: "\F1A4";
}

.la-stumbleupon-circle:before {
  content: "\F1A3";
}

.la-subscript:before {
  content: "\F12C";
}

.la-subway:before {
  content: "\F239";
}

.la-suitcase:before {
  content: "\F0F2";
}

.la-suitcase-rolling:before {
  content: "\F5C1";
}

.la-sun:before {
  content: "\F185";
}

.la-superpowers:before {
  content: "\F2DD";
}

.la-superscript:before {
  content: "\F12B";
}

.la-supple:before {
  content: "\F3F9";
}

.la-surprise:before {
  content: "\F5C2";
}

.la-suse:before {
  content: "\F7D6";
}

.la-swatchbook:before {
  content: "\F5C3";
}

.la-swimmer:before {
  content: "\F5C4";
}

.la-swimming-pool:before {
  content: "\F5C5";
}

.la-symfony:before {
  content: "\F83D";
}

.la-synagogue:before {
  content: "\F69B";
}

.la-sync:before {
  content: "\F021";
}

.la-sync-alt:before {
  content: "\F2F1";
}

.la-syringe:before {
  content: "\F48E";
}

.la-table:before {
  content: "\F0CE";
}

.la-table-tennis:before {
  content: "\F45D";
}

.la-tablet:before {
  content: "\F10A";
}

.la-tablet-alt:before {
  content: "\F3FA";
}

.la-tablets:before {
  content: "\F490";
}

.la-tachometer-alt:before {
  content: "\F3FD";
}

.la-tag:before {
  content: "\F02B";
}

.la-tags:before {
  content: "\F02C";
}

.la-tape:before {
  content: "\F4DB";
}

.la-tasks:before {
  content: "\F0AE";
}

.la-taxi:before {
  content: "\F1BA";
}

.la-teamspeak:before {
  content: "\F4F9";
}

.la-teeth:before {
  content: "\F62E";
}

.la-teeth-open:before {
  content: "\F62F";
}

.la-telegram:before {
  content: "\F2C6";
}

.la-telegram-plane:before {
  content: "\F3FE";
}

.la-temperature-high:before {
  content: "\F769";
}

.la-temperature-low:before {
  content: "\F76B";
}

.la-tencent-weibo:before {
  content: "\F1D5";
}

.la-tenge:before {
  content: "\F7D7";
}

.la-terminal:before {
  content: "\F120";
}

.la-text-height:before {
  content: "\F034";
}

.la-text-width:before {
  content: "\F035";
}

.la-th:before {
  content: "\F00A";
}

.la-th-large:before {
  content: "\F009";
}

.la-th-list:before {
  content: "\F00B";
}

.la-the-red-yeti:before {
  content: "\F69D";
}

.la-theater-masks:before {
  content: "\F630";
}

.la-themeco:before {
  content: "\F5C6";
}

.la-themeisle:before {
  content: "\F2B2";
}

.la-thermometer:before {
  content: "\F491";
}

.la-thermometer-empty:before {
  content: "\F2CB";
}

.la-thermometer-full:before {
  content: "\F2C7";
}

.la-thermometer-half:before {
  content: "\F2C9";
}

.la-thermometer-quarter:before {
  content: "\F2CA";
}

.la-thermometer-three-quarters:before {
  content: "\F2C8";
}

.la-think-peaks:before {
  content: "\F731";
}

.la-thumbs-down:before {
  content: "\F165";
}

.la-thumbs-up:before {
  content: "\F164";
}

.la-thumbtack:before {
  content: "\F08D";
}

.la-ticket-alt:before {
  content: "\F3FF";
}

.la-times:before {
  content: "\F00D";
}

.la-times-circle:before {
  content: "\F057";
}

.la-tint:before {
  content: "\F043";
}

.la-tint-slash:before {
  content: "\F5C7";
}

.la-tired:before {
  content: "\F5C8";
}

.la-toggle-off:before {
  content: "\F204";
}

.la-toggle-on:before {
  content: "\F205";
}

.la-toilet:before {
  content: "\F7D8";
}

.la-toilet-paper:before {
  content: "\F71E";
}

.la-toolbox:before {
  content: "\F552";
}

.la-tools:before {
  content: "\F7D9";
}

.la-tooth:before {
  content: "\F5C9";
}

.la-torah:before {
  content: "\F6A0";
}

.la-torii-gate:before {
  content: "\F6A1";
}

.la-tractor:before {
  content: "\F722";
}

.la-trade-federation:before {
  content: "\F513";
}

.la-trademark:before {
  content: "\F25C";
}

.la-traffic-light:before {
  content: "\F637";
}

.la-train:before {
  content: "\F238";
}

.la-tram:before {
  content: "\F7DA";
}

.la-transgender:before {
  content: "\F224";
}

.la-transgender-alt:before {
  content: "\F225";
}

.la-trash:before {
  content: "\F1F8";
}

.la-trash-alt:before {
  content: "\F2ED";
}

.la-trash-restore:before {
  content: "\F829";
}

.la-trash-restore-alt:before {
  content: "\F82A";
}

.la-tree:before {
  content: "\F1BB";
}

.la-trello:before {
  content: "\F181";
}

.la-tripadvisor:before {
  content: "\F262";
}

.la-trophy:before {
  content: "\F091";
}

.la-truck:before {
  content: "\F0D1";
}

.la-truck-loading:before {
  content: "\F4DE";
}

.la-truck-monster:before {
  content: "\F63B";
}

.la-truck-moving:before {
  content: "\F4DF";
}

.la-truck-pickup:before {
  content: "\F63C";
}

.la-tshirt:before {
  content: "\F553";
}

.la-tty:before {
  content: "\F1E4";
}

.la-tumblr:before {
  content: "\F173";
}

.la-tumblr-square:before {
  content: "\F174";
}

.la-tv:before {
  content: "\F26C";
}

.la-twitch:before {
  content: "\F1E8";
}

.la-twitter:before {
  content: "\F099";
}

.la-twitter-square:before {
  content: "\F081";
}

.la-typo3:before {
  content: "\F42B";
}

.la-uber:before {
  content: "\F402";
}

.la-ubuntu:before {
  content: "\F7DF";
}

.la-uikit:before {
  content: "\F403";
}

.la-umbrella:before {
  content: "\F0E9";
}

.la-umbrella-beach:before {
  content: "\F5CA";
}

.la-underline:before {
  content: "\F0CD";
}

.la-undo:before {
  content: "\F0E2";
}

.la-undo-alt:before {
  content: "\F2EA";
}

.la-uniregistry:before {
  content: "\F404";
}

.la-universal-access:before {
  content: "\F29A";
}

.la-university:before {
  content: "\F19C";
}

.la-unlink:before {
  content: "\F127";
}

.la-unlock:before {
  content: "\F09C";
}

.la-unlock-alt:before {
  content: "\F13E";
}

.la-untappd:before {
  content: "\F405";
}

.la-upload:before {
  content: "\F093";
}

.la-ups:before {
  content: "\F7E0";
}

.la-usb:before {
  content: "\F287";
}

.la-user:before {
  content: "\F007";
}

.la-user-alt:before {
  content: "\F406";
}

.la-user-alt-slash:before {
  content: "\F4FA";
}

.la-user-astronaut:before {
  content: "\F4FB";
}

.la-user-check:before {
  content: "\F4FC";
}

.la-user-circle:before {
  content: "\F2BD";
}

.la-user-clock:before {
  content: "\F4FD";
}

.la-user-cog:before {
  content: "\F4FE";
}

.la-user-edit:before {
  content: "\F4FF";
}

.la-user-friends:before {
  content: "\F500";
}

.la-user-graduate:before {
  content: "\F501";
}

.la-user-injured:before {
  content: "\F728";
}

.la-user-lock:before {
  content: "\F502";
}

.la-user-md:before {
  content: "\F0F0";
}

.la-user-minus:before {
  content: "\F503";
}

.la-user-ninja:before {
  content: "\F504";
}

.la-user-nurse:before {
  content: "\F82F";
}

.la-user-plus:before {
  content: "\F234";
}

.la-user-secret:before {
  content: "\F21B";
}

.la-user-shield:before {
  content: "\F505";
}

.la-user-slash:before {
  content: "\F506";
}

.la-user-tag:before {
  content: "\F507";
}

.la-user-tie:before {
  content: "\F508";
}

.la-user-times:before {
  content: "\F235";
}

.la-users:before {
  content: "\F0C0";
}

.la-users-cog:before {
  content: "\F509";
}

.la-usps:before {
  content: "\F7E1";
}

.la-ussunnah:before {
  content: "\F407";
}

.la-utensil-spoon:before {
  content: "\F2E5";
}

.la-utensils:before {
  content: "\F2E7";
}

.la-vaadin:before {
  content: "\F408";
}

.la-vector-square:before {
  content: "\F5CB";
}

.la-venus:before {
  content: "\F221";
}

.la-venus-double:before {
  content: "\F226";
}

.la-venus-mars:before {
  content: "\F228";
}

.la-viacoin:before {
  content: "\F237";
}

.la-viadeo:before {
  content: "\F2A9";
}

.la-viadeo-square:before {
  content: "\F2AA";
}

.la-vial:before {
  content: "\F492";
}

.la-vials:before {
  content: "\F493";
}

.la-viber:before {
  content: "\F409";
}

.la-video:before {
  content: "\F03D";
}

.la-video-slash:before {
  content: "\F4E2";
}

.la-vihara:before {
  content: "\F6A7";
}

.la-vimeo:before {
  content: "\F40A";
}

.la-vimeo-square:before {
  content: "\F194";
}

.la-vimeo-v:before {
  content: "\F27D";
}

.la-vine:before {
  content: "\F1CA";
}

.la-vk:before {
  content: "\F189";
}

.la-vnv:before {
  content: "\F40B";
}

.la-voicemail:before {
  content: "\F897";
}

.la-volleyball-ball:before {
  content: "\F45F";
}

.la-volume-down:before {
  content: "\F027";
}

.la-volume-mute:before {
  content: "\F6A9";
}

.la-volume-off:before {
  content: "\F026";
}

.la-volume-up:before {
  content: "\F028";
}

.la-vote-yea:before {
  content: "\F772";
}

.la-vr-cardboard:before {
  content: "\F729";
}

.la-vuejs:before {
  content: "\F41F";
}

.la-walking:before {
  content: "\F554";
}

.la-wallet:before {
  content: "\F555";
}

.la-warehouse:before {
  content: "\F494";
}

.la-water:before {
  content: "\F773";
}

.la-wave-square:before {
  content: "\F83E";
}

.la-waze:before {
  content: "\F83F";
}

.la-weebly:before {
  content: "\F5CC";
}

.la-weibo:before {
  content: "\F18A";
}

.la-weight:before {
  content: "\F496";
}

.la-weight-hanging:before {
  content: "\F5CD";
}

.la-weixin:before {
  content: "\F1D7";
}

.la-whatsapp:before {
  content: "\F232";
}

.la-whatsapp-square:before {
  content: "\F40C";
}

.la-wheelchair:before {
  content: "\F193";
}

.la-whmcs:before {
  content: "\F40D";
}

.la-wifi:before {
  content: "\F1EB";
}

.la-wikipedia-w:before {
  content: "\F266";
}

.la-wind:before {
  content: "\F72E";
}

.la-window-close:before {
  content: "\F410";
}

.la-window-maximize:before {
  content: "\F2D0";
}

.la-window-minimize:before {
  content: "\F2D1";
}

.la-window-restore:before {
  content: "\F2D2";
}

.la-windows:before {
  content: "\F17A";
}

.la-wine-bottle:before {
  content: "\F72F";
}

.la-wine-glass:before {
  content: "\F4E3";
}

.la-wine-glass-alt:before {
  content: "\F5CE";
}

.la-wix:before {
  content: "\F5CF";
}

.la-wizards-of-the-coast:before {
  content: "\F730";
}

.la-wolf-pack-battalion:before {
  content: "\F514";
}

.la-won-sign:before {
  content: "\F159";
}

.la-wordpress:before {
  content: "\F19A";
}

.la-wordpress-simple:before {
  content: "\F411";
}

.la-wpbeginner:before {
  content: "\F297";
}

.la-wpexplorer:before {
  content: "\F2DE";
}

.la-wpforms:before {
  content: "\F298";
}

.la-wpressr:before {
  content: "\F3E4";
}

.la-wrench:before {
  content: "\F0AD";
}

.la-x-ray:before {
  content: "\F497";
}

.la-xbox:before {
  content: "\F412";
}

.la-xing:before {
  content: "\F168";
}

.la-xing-square:before {
  content: "\F169";
}

.la-y-combinator:before {
  content: "\F23B";
}

.la-yahoo:before {
  content: "\F19E";
}

.la-yammer:before {
  content: "\F840";
}

.la-yandex:before {
  content: "\F413";
}

.la-yandex-international:before {
  content: "\F414";
}

.la-yarn:before {
  content: "\F7E3";
}

.la-yelp:before {
  content: "\F1E9";
}

.la-yen-sign:before {
  content: "\F157";
}

.la-yin-yang:before {
  content: "\F6AD";
}

.la-yoast:before {
  content: "\F2B1";
}

.la-youtube:before {
  content: "\F167";
}

.la-youtube-square:before {
  content: "\F431";
}

.la-zhihu:before {
  content: "\F63F";
}

.la-hat-cowboy:before {
  content: "\F8C0";
}

.la-hat-cowboy-side:before {
  content: "\F8C1";
}

.la-mdb:before {
  content: "\F8CA";
}

.la-mouse:before {
  content: "\F8CC";
}

.la-orcid:before {
  content: "\F8D2";
}

.la-record-vinyl:before {
  content: "\F8D9";
}

.la-swift:before {
  content: "\F8E1";
}

.la-umbraco:before {
  content: "\F8E8";
}

.la-buy-n-large:before {
  content: "\F8A6";
}

.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.nice-select.open, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-timing-function: ease-in-out;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  animation-duration: 0.75s;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 2s;
  animation-name: hinge;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}

.animated.fast {
  animation-duration: 800ms;
}

.animated.faster {
  animation-duration: 500ms;
}

.animated.slow {
  animation-duration: 2s;
}

.animated.slower {
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

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

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "\2190";
}
[dir=rtl] .slick-prev:before {
  content: "\2192";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "\2192";
}
[dir=rtl] .slick-next:before {
  content: "\2190";
}

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

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

.slick-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: black;
  transition: opacity 0.5s ease;
}
.slick-lightbox .slick-loading .slick-list {
  background-color: transparent;
}
.slick-lightbox .slick-prev {
  left: 15px;
}
.slick-lightbox .slick-next {
  right: 15px;
}

.slick-lightbox-hide {
  opacity: 0;
}
.slick-lightbox-hide.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-hide-init {
  position: absolute;
  top: -9999px;
  opacity: 0;
}
.slick-lightbox-hide-init.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-lightbox-slick-item {
  text-align: center;
  overflow: hidden;
}
.slick-lightbox-slick-item:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
.slick-caption-bottom .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}
.slick-caption-dynamic .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  display: block;
  text-align: center;
}

.slick-lightbox-slick-item-inner {
  display: inline-block;
  vertical-align: middle;
  max-width: 90%;
  max-height: 90%;
}

.slick-lightbox-slick-img {
  margin: 0 auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
}

.slick-lightbox-slick-caption {
  margin: 10px 0 0;
  color: white;
}

.slick-lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: none;
}
.slick-lightbox-close:focus {
  outline: none;
}
.slick-lightbox-close:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\D7";
}

/* jQuery Countdown styles 2.0.0. */
.is-countdown {
  border: 1px solid #ccc;
  background-color: #eee;
}

.countdown-rtl {
  direction: rtl;
}

.countdown-holding span {
  color: #888;
}

.countdown-row {
  clear: both;
  width: 100%;
  padding: 0px 2px;
  text-align: center;
}

.countdown-show1 .countdown-section {
  width: 98%;
}

.countdown-show2 .countdown-section {
  width: 48%;
}

.countdown-show3 .countdown-section {
  width: 32.5%;
}

.countdown-show4 .countdown-section {
  width: 24.5%;
}

.countdown-show5 .countdown-section {
  width: 19.5%;
}

.countdown-show6 .countdown-section {
  width: 16.25%;
}

.countdown-show7 .countdown-section {
  width: 14%;
}

.countdown-section {
  display: block;
  float: left;
  font-size: 75%;
  text-align: center;
}

.countdown-amount {
  font-size: 200%;
}

.countdown-period {
  display: block;
}

.countdown-descr {
  display: block;
  width: 100%;
}

/*! nouislider - 14.1.1 - 12/15/2019 */
/* 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%;
}

.flatpickr-calendar {
  background: transparent;
  opacity: 0;
  display: none;
  text-align: center;
  visibility: hidden;
  padding: 0;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 307.875px;
  box-sizing: border-box;
  touch-action: manipulation;
  background: #fff;
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  max-height: 640px;
  visibility: visible;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999;
}

.flatpickr-calendar.animate.open {
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) {
  box-shadow: none !important;
}

.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) {
  box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-calendar .hasWeeks .dayContainer,
.flatpickr-calendar .hasTime .dayContainer {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flatpickr-calendar .hasWeeks .dayContainer {
  border-left: 0;
}

.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.rightMost:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-calendar:focus {
  outline: 0;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-months {
  display: flex;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 34px;
  line-height: 1;
  text-align: center;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  overflow: hidden;
  flex: 1;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 34px;
  padding: 10px;
  z-index: 3;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
}

.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: none;
}

.flatpickr-months .flatpickr-prev-month i,
.flatpickr-months .flatpickr-next-month i {
  position: relative;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  left: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*
        /*rtl:begin:ignore*/
  /*
        */
  right: 0;
  /*
        /*rtl:end:ignore*/
  /*
        */
}

/*
      /*rtl:begin:ignore*/
/*
      /*rtl:end:ignore*/
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  width: 14px;
  height: 14px;
}

.flatpickr-months .flatpickr-prev-month svg path,
.flatpickr-months .flatpickr-next-month svg path {
  transition: fill 0.1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper input::-ms-clear {
  display: none;
}

.numInputWrapper input::-webkit-outer-spin-button,
.numInputWrapper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.15);
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active, .numInputWrapper span.nice-select.open {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
  top: 26%;
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
  top: 40%;
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  padding: 7.48px 0 0 0;
  line-height: 1;
  height: 34px;
  display: inline-block;
  text-align: center;
  transform: translate3d(0px, 0px, 0px);
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 0.5ch;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0 ;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  box-sizing: border-box;
  color: inherit;
  cursor: text;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: auto;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  appearance: menulist;
  background: transparent;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  height: auto;
  line-height: inherit;
  margin: -1px 0 0 0;
  outline: none;
  padding: 0 0 0 0.5ch;
  position: relative;
  vertical-align: initial;
  -webkit-box-sizing: border-box;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  width: auto;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:focus,
.flatpickr-current-month .flatpickr-monthDropdown-months:active,
.flatpickr-current-month .flatpickr-monthDropdown-months.nice-select.open {
  outline: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  background-color: transparent;
  outline: none;
  padding: 0;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  height: 28px;
}

.flatpickr-weekdays .flatpickr-weekdaycontainer {
  display: flex;
  flex: 1;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  background: transparent;
  color: rgba(0, 0, 0, 0.54);
  line-height: 1;
  margin: 0;
  text-align: center;
  display: block;
  flex: 1;
  font-weight: bolder;
}

.dayContainer,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  width: 307.875px;
}

.flatpickr-days:focus {
  outline: 0;
}

.dayContainer {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 307.875px;
  min-width: 307.875px;
  max-width: 307.875px;
  box-sizing: border-box;
  display: inline-block;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-around;
  transform: translate3d(0px, 0px, 0px);
  opacity: 1;
}

.dayContainer + .dayContainer {
  box-shadow: -1px 0 0 #e6e6e6;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 39px;
  height: 39px;
  line-height: 39px;
  margin: 0;
  display: inline-block;
  position: relative;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  box-shadow: none;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  box-shadow: -10px 0 0 #569ff7;
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: rgba(57, 57, 57, 0.1);
}

.flatpickr-day.week.selected {
  border-radius: 0;
  box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7;
}

.flatpickr-day.hidden {
  visibility: hidden;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 0 12px;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
  line-height: 28px;
}

.flatpickr-weekwrapper span.flatpickr-day,
.flatpickr-weekwrapper span.flatpickr-day:hover {
  display: block;
  width: 100%;
  max-width: none;
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  cursor: default;
  border: none;
}

.flatpickr-innerContainer {
  display: block;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  color: #393939;
  font-size: 14px;
  position: relative;
  box-sizing: border-box;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  align-self: center;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #eee;
}

.flatpickr-input[readonly] {
  cursor: pointer;
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/**
 * selectize.css (v0.12.6)
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  box-shadow: inset 0 0 12px 4px #fff;
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: "!";
  visibility: hidden;
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.selectize-dropdown-header {
  position: relative;
  padding: 5px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  border-radius: 3px 3px 0 0;
}

.selectize-dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}

.selectize-dropdown-header-close:hover {
  color: #000000;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  float: left;
  box-sizing: border-box;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important;
}

.selectize-control.plugin-remove_button [data-value] .remove {
  z-index: 1;
  /* fixes ie bug (see #392) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 0 0 0;
  border-left: 1px solid #d0d0d0;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
}

.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

.selectize-control.plugin-remove_button [data-value].active .remove {
  border-left-color: #cacaca;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
  background: none;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove {
  border-left-color: #ffffff;
}

.selectize-control.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}

.selectize-control {
  position: relative;
}

.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
  -webkit-font-smoothing: inherit;
}

.selectize-input,
.selectize-control.single .selectize-input.input-active {
  background: #fff;
  cursor: text;
  display: inline-block;
}

.selectize-input {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.selectize-control.multi .selectize-input.has-items {
  padding: 6px 8px 3px;
}

.selectize-input.full {
  background-color: #fff;
}

.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important;
}

.selectize-input.focus {
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

.selectize-input.dropdown-active {
  border-radius: 3px 3px 0 0;
}

.selectize-input > * {
  vertical-align: baseline;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #f2f2f2;
  color: #303030;
  border: 0 solid #d0d0d0;
}

.selectize-control.multi .selectize-input > div.active {
  background: #e8e8e8;
  color: #303030;
  border: 0 solid #cacaca;
}

.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
  color: #7d7d7d;
  background: #ffffff;
  border: 0 solid #ffffff;
}

.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 2px 0 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  box-shadow: none !important;
}

.selectize-input > input::-ms-clear {
  display: none;
}

.selectize-input > input:focus {
  outline: none !important;
}

.selectize-input::after {
  content: " ";
  display: block;
  clear: left;
}

.selectize-input.dropdown-active::before {
  content: " ";
  display: block;
  position: absolute;
  background: #f0f0f0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}

.selectize-dropdown {
  position: absolute;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: -1px 0 0 0;
  border-top: 0 none;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}

.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}

.selectize-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}

.selectize-dropdown .option,
.selectize-dropdown .optgroup-header {
  padding: 5px 8px;
}

.selectize-dropdown .option,
.selectize-dropdown [data-disabled],
.selectize-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}

.selectize-dropdown [data-selectable].option {
  opacity: 1;
}

.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}

.selectize-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
}

.selectize-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}

.selectize-dropdown .active.create {
  color: #495c68;
}

.selectize-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}

.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  -webkit-overflow-scrolling: touch;
}

.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer;
}

.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
  cursor: text;
}

.selectize-control.single .selectize-input:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #808080 transparent transparent transparent;
}

.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #808080 transparent;
}

.selectize-control.rtl.single .selectize-input:after {
  left: 15px;
  right: auto;
}

.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}

.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: #fafafa;
}

/* fonts */
/* default theme colors */
/* colors */
/* screen size */
/* miscellaneous */
/* color */
.bg-blue {
  background: #247cc6;
}

.bg-red {
  background: #e23e1d;
}

.bg-yellow {
  background: #ffb136;
}

/* margin */
.m-t-30 {
  margin-top: 30px;
}

.m-r-30 {
  margin-right: 30px;
}

.m-r-20 {
  margin-right: 20px;
}

/* padding */
.padding-tb-75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.p-t-5 {
  margin-top: 5px;
}

.single-feature {
  display: flex;
  justify-content: center;
}
.single-feature .feature-icon {
  margin-right: 13px;
}
.single-feature .feature-icon > i {
  font-size: 36px;
  color: #173583;
  color: var(--color-primary);
}
.single-feature .feature-details > span {
  font-size: 14px;
  line-height: 22px;
  display: block;
  color: #6e6e6e;
  margin-top: 2px;
}

.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image > img {
  max-height: 100%;
  max-width: 100%;
  transition: 200ms ease-in-out;
}

.product-badge {
  position: absolute;
  top: -5px;
  right: 0;
  display: flex;
  flex-direction: column;
}
.product-badge .badge {
  font-size: 12px;
  font-weight: 500;
  width: auto;
  min-width: 0;
  display: inline-block;
  margin: 0 0 5px auto;
  padding: 6px 9px;
  text-align: right;
  border-radius: 0;
}
.product-badge .badge:last-child {
  margin-bottom: 0;
}
.product-badge .badge.badge-success {
  color: #ffffff;
  background: #1eb48e;
}
.product-badge .badge.badge-primary {
  color: #ffffff;
  background: #173583;
  background: var(--color-primary);
}
.product-badge .badge.badge-warning {
  color: #ffffff;
  background: #ffb136;
}
.product-badge .badge.badge-danger {
  color: #ffffff;
  background: #e23e1d;
}

.product-price {
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  color: #173583;
  color: var(--color-primary);
}
.product-price .previous-price {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  margin: 1px 0 0 8px;
  color: #a6a6a6;
  text-decoration: line-through;
}

.product-rating {
  display: inline-flex;
}
.product-rating .back-stars {
  position: relative;
  display: flex;
}
.product-rating .back-stars > i {
  margin-right: 1px;
  color: #a6a6a6;
}
.product-rating .back-stars > i:last-child {
  margin-right: 0;
}
.product-rating .front-stars {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  color: #ffb136;
  overflow: hidden;
}
.product-rating .front-stars > i {
  margin-right: 1px;
}
.product-rating .front-stars > i:last-child {
  margin-right: 0;
}
.product-rating .rating-count {
  font-size: 11px;
  line-height: 12px;
  margin: 1px 0 0 5px;
  color: #6e6e6e;
}

.form-wrap {
  margin-top: 63px;
  padding-bottom: 20px;
}

.form-wrap-inner {
  width: 600px;
  margin: auto;
  padding: 0 15px;
}
.form-wrap-inner > h2 {
  margin-bottom: 40px;
  text-align: center;
}
.form-wrap-inner > p {
  margin-bottom: 19px;
  color: #6e6e6e;
}
.form-wrap-inner .btn-primary {
  width: 100%;
  padding: 12px 14px;
  letter-spacing: 1px;
}
.form-wrap-inner .btn-default {
  width: 100%;
  padding: 11px 14px;
  letter-spacing: 1px;
}
.form-wrap-inner .sign-in-with {
  font-size: 16px;
  display: block;
  margin-top: 25px;
  color: #6e6e6e;
  text-align: center;
}
.form-wrap-inner .social-login {
  display: flex;
  margin-top: 13px;
  justify-content: center;
}
.form-wrap-inner .social-login li a {
  font-size: 16px;
  display: flex;
  height: 40px;
  width: 40px;
  margin: 0 10px;
  color: #ffffff;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.form-wrap-inner .social-login li a:hover {
  opacity: 0.85;
}
.form-wrap-inner .social-login li a.facebook {
  background: #3a559f;
}
.form-wrap-inner .social-login li a.google {
  background: #d94936;
}
.form-wrap-inner .have-an-account {
  display: block;
  line-height: 26px;
  margin-top: 23px;
  letter-spacing: 1px;
  text-align: center;
}

@media screen and (max-width: 647px) {
  .form-wrap-inner {
    width: 100%;
  }
}
.product-card {
  background-color: #F1F3F6;
  position: relative;
  display: flex !important;
  height: auto;
  margin: 0 15px;
  padding: 20px 20px 0;
  flex-direction: column;
  overflow: hidden;
  border-radius: 2px;
  transition: 200ms ease-in-out;
}
.product-card:hover {
  border-color: #ffffff;
  box-shadow: 2.5px 4.33px 50px 5px rgba(11, 28, 42, 0.15);
  z-index: 1;
}
.product-card:hover .product-card-actions button {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.product-card:hover .product-badge {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
}
.product-card:hover .product-card-countdown {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.9);
}
.product-card:hover .product-rating {
  opacity: 0;
  visibility: hidden;
}
.product-card:hover .product-name {
  transform: translateY(-33px);
}
.product-card:hover .product-card-bottom {
  border-top-color: transparent;
}
.product-card:hover .product-price {
  opacity: 0;
  visibility: hidden;
}
.product-card:hover .product-price:after {
  opacity: 0;
  visibility: hidden;
}
.product-card:hover .product-price-clone {
  opacity: 1;
  visibility: visible;
  transform: translateX(-15px);
}
.product-card:hover .product-price-clone:after {
  opacity: 1;
  visibility: visible;
  transform: translateX(20px);
}
.product-card:hover .btn-add-to-cart {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.product-card:hover .btn-add-to-cart.disabled, .product-card:hover .btn-add-to-cart[disabled] {
  opacity: 0.65;
}
.product-card .product-card-top {
  position: relative;
}
.product-card .product-image {
  height: 180px;
}
.product-card .product-image .image-placeholder {
  height: 85px;
  width: 85px;
}
.product-card .product-badge {
  right: 0;
  z-index: 1;
  transition: 200ms ease-in-out;
}
.product-card .product-card-actions {
  position: absolute;
  top: -5px;
  right: 0;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  z-index: 1;
}
.product-card .product-card-actions .btn {
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transition: opacity 200ms ease-in-out, transform 200ms ease-in-out, border-color 150ms ease-in-out;
}
.product-card .product-card-actions .btn:hover {
  border-color: rgba(0, 85, 184, 0.3);
  border-color: var(--color-primary-transparent-lite);
}
.product-card .product-card-actions .btn > i {
  font-size: 15px;
}
.product-card .product-card-actions .btn-wishlist {
  margin-bottom: 5px;
}
.product-card .product-card-countdown {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: 200ms ease-in-out;
}
.product-card .product-card-countdown.is-countdown .countdown-section {
  width: auto;
  margin-right: 10px;
}
.product-card .product-card-countdown.is-countdown .countdown-section:last-child {
  margin-right: 0;
}
.product-card .product-card-countdown.is-countdown .countdown-amount {
  height: 38px;
  width: 38px;
  margin: 0;
  color: #ffffff;
  background: rgba(0, 85, 184, 0.8);
  background: var(--color-primary-transparent);
}
.product-card .product-card-countdown.is-countdown .countdown-period {
  display: none;
}
.product-card .product-card-middle {
  position: relative;
  display: flex;
  height: 90px;
  margin-top: auto;
  padding-bottom: 9px;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 0;
}
.product-card .product-rating {
  margin-bottom: 10px;
  transition: 200ms ease-in-out;
}
.product-card .product-rating .back-stars {
  font-size: 13px;
}
.product-card .product-name {
  display: block;
  color: #191919;
  transition: 200ms ease-in-out;
  z-index: 1;
}
.product-card .product-name h6 {
  position: relative;
  font-weight: 700;
  line-height: 21px;
  max-height: 40px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #173583;
  font-size: 16px;
}
.product-card .product-card-bottom {
  position: relative;
  padding: 12px 0 10px;
  border-top: 1px solid #ebebeb;
  transition: 150ms ease-in-out;
}
.product-card .product-price {
  position: relative;
  transition: 200ms ease-in-out;
}
.product-card .product-price:after {
  position: absolute;
  content: "";
  left: -20px;
  top: 4px;
  height: 15px;
  width: 7px;
  background: #173583;
  background: var(--color-primary);
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  transition: 200ms ease-in-out;
}
.product-card .product-price-clone {
  position: absolute;
  left: 15px;
  bottom: 15px;
  padding: 0;
  border: none;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.product-card .product-price-clone:after {
  left: -40px;
  top: 4px;
  opacity: 0;
  visibility: hidden;
}
.product-card .btn-add-to-cart {
  font-size: 13px;
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  padding: 6px 0 4px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: 200ms ease-in-out;
}
.product-card .btn-add-to-cart > i {
  font-size: 15px;
  margin: 5px 6px 0 0;
  vertical-align: top;
}

@media screen and (max-width: 1800px) {
  .product-card .product-image {
    height: 160px;
  }
}
@media screen and (max-width: 991px) {
  .product-card {
    margin: 0 8px;
    padding: 15px 15px 0;
  }
  .product-card:hover {
    border-color: #ebebeb;
    box-shadow: none;
  }
  .product-card:hover .product-badge {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  .product-card:hover .product-card-countdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
  }
  .product-card:hover .product-rating {
    opacity: 1;
    visibility: visible;
  }
  .product-card:hover .product-name {
    transform: none;
  }
  .product-card:hover .product-price {
    opacity: 1;
    visibility: visible;
  }
  .product-card .product-card-top {
    margin-bottom: 10px;
  }
  .product-card .product-image {
    position: relative;
    height: 80%;
    padding-bottom: 80%;
  }
  .product-card .product-image img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .product-card .product-card-actions,
  .product-card .product-price-clone,
  .product-card .btn-add-to-cart {
    display: none;
  }
  .product-card .product-card-middle {
    height: 60px;
    padding-bottom: 0;
  }
  .product-card .product-rating {
    margin-bottom: 5px;
  }
  .product-card .product-card-bottom {
    padding-top: 5px;
    border-top: none;
  }
  .product-card .product-price {
    flex-direction: column;
  }
  .product-card .product-price:after {
    content: none;
  }
  .product-card .product-price .previous-price {
    margin: -4px auto 0 0;
  }
}
.vertical-product-card {
  display: flex;
  margin-bottom: 20px;
}
.vertical-product-card:last-child {
  margin-bottom: 0;
}
.vertical-product-card .product-image {
  height: 70px;
  width: 70px;
  min-width: 70px;
  margin-top: 5px;
  border-radius: 2px;
  overflow: hidden;
}
.vertical-product-card .product-image .image-placeholder {
  height: 40px;
  width: 40px;
}
.vertical-product-card .product-info {
  flex-grow: 1;
  margin-left: 20px;
}
.vertical-product-card .product-name {
  display: inline-block;
  margin-bottom: 10px;
  color: #191919;
}
.vertical-product-card .product-name:hover h6 {
  color: #173583;
  color: var(--color-primary);
}
.vertical-product-card .product-name h6 {
  font-weight: 400;
  line-height: 22px;
  max-height: 44px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: 150ms ease-in-out;
}
.vertical-product-card .product-price {
  line-height: 1;
  margin-bottom: 6px;
}
.vertical-product-card .product-price .previous-price {
  margin-top: 2px;
}
.vertical-product-card .product-rating {
  font-size: 13px;
}

.wrapper {
  position: relative;
  background: #ffffff;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 180;
  transition: 200ms ease-in-out;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

.section-title {
  position: relative;
}
.section-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 50px;
  border-bottom: 2px solid #173583;
  border-bottom: 2px solid var(--color-primary);
}

.product-options {
  display: flex;
  flex-wrap: wrap;
}
.product-options li {
  font-size: 13px;
  margin-right: 5px;
  color: #a6a6a6;
}
.product-options li:last-child {
  margin-right: 0;
}
.product-options label {
  margin-bottom: 0;
  color: #6e6e6e;
}

.tab-products-header {
  border-bottom: 1px solid #e5e5e5;
}

.vertical-products .vertical-products-header {
  margin-bottom: 25px;
  border-bottom: 1px solid #e5e5e5;
}
.vertical-products .section-title {
  padding-bottom: 13px;
}
.vertical-products .slick-prev,
.vertical-products .slick-next {
  top: -62px;
  transform: translate(0, 0);
}
.vertical-products .slick-prev:before,
.vertical-products .slick-next:before {
  font-size: 16px;
  font-weight: 900;
}
.vertical-products .slick-prev {
  left: auto;
  right: 20px;
}
.vertical-products .slick-next {
  right: -5px;
}

.btn-wishlist.added > i,
.btn-compare.added > i {
  color: #173583;
  color: var(--color-primary);
}
.btn-wishlist > i,
.btn-compare > i {
  color: #6e6e6e;
  transition: 500ms ease-in-out;
}
.btn-wishlist > i.animating,
.btn-compare > i.animating {
  animation: zoomInOut 500ms ease-in-out;
}

.coupon-wrap .form-group {
  display: flex;
  margin-bottom: 0;
}
.coupon-wrap .form-group .form-input input {
  height: 40px;
  width: 250px;
}
.coupon-wrap .form-group .error-message {
  display: none;
}
.coupon-wrap .form-group .btn-apply-coupon {
  margin-left: 10px;
  align-self: flex-start;
}

.order-summary-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
}
.order-summary-list li:last-child {
  margin-bottom: 0;
}
.order-summary-list label {
  margin-bottom: 0;
  padding-right: 20px;
}
.order-summary-list .coupon-code {
  color: #6e6e6e;
  white-space: nowrap;
}
.order-summary-list .btn-remove-coupon {
  font-size: 14px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.order-summary-list .btn-remove-coupon:hover {
  color: #173583;
  color: var(--color-primary);
}

.order-summary-total {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  margin-top: 21px;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid #ebebeb;
}
.order-summary-total label {
  margin-bottom: 0;
}

@media screen and (max-width: 455px) {
  .coupon-wrap .form-group {
    flex-direction: column;
  }
  .coupon-wrap .form-group .form-input input {
    width: 100%;
  }
  .coupon-wrap .form-group .form-input .error-message {
    display: block;
  }
  .coupon-wrap .form-group .btn-apply-coupon {
    margin: 15px 0 0 0;
    align-self: stretch;
  }
  .coupon-wrap > .error-message {
    display: none;
  }
}
.arrow-black {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent url("../images/arrow-black.png") no-repeat right 0px center;
  background-size: 10px;
}

.arrow-white {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent url("../images/arrow-white.png") no-repeat right 0px center;
  background-size: 10px;
}

.contact-info > li {
  color: #6e6e6e;
  margin-bottom: 14px;
  white-space: nowrap;
  clear: both;
}
.contact-info > li:last-child {
  margin-bottom: 0;
}
.contact-info > li > i {
  margin-top: 3px;
  color: #173583;
  color: var(--color-primary);
  float: left;
}
.contact-info > li > span {
  line-height: 22px;
  display: block;
  margin-left: 24px;
  word-break: break-all;
  white-space: pre-wrap;
}

.social-links li {
  display: inline-flex;
  margin-right: 5px;
}
.social-links li:last-child {
  margin-right: 0;
}
.social-links li a {
  font-size: 22px;
  display: flex;
  height: 35px;
  width: 35px;
  color: #6e6e6e;
  align-items: center;
  justify-content: center;
}
.social-links li a:hover {
  color: #173583;
  color: var(--color-primary);
}

.captcha-input {
  font-size: 14px;
  height: 45px;
  margin-left: 7px;
  padding: 10px 15px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  transition: 150ms ease-in-out;
}
.captcha-input:focus {
  outline: 0;
  border-color: #173583;
  border-color: var(--color-primary);
  box-shadow: none;
}

@media screen and (max-width: 510px) {
  .captcha-input {
    display: block;
    margin: 10px 0 0 0;
  }
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.7);
  }
  100% {
    transform: scale(1);
  }
}
html {
  font-family: "Rubik", Arial, Helvetica, sans-serif;
}

body {
  direction: ltr;
  font-family: "Rubik", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  min-width: 320px;
  color: #191919;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: #191919;
}

h1, h2, h3, h4, h5, h6,
ul, ol, li, address, p {
  margin: 0;
  padding: 0;
}

div:active, div.nice-select.open, div:focus, div:visited, a:active, a.nice-select.open, a:focus, a:visited, button:active, button.nice-select.open, button:focus, button:visited {
  outline: 0;
}

a {
  transition: 150ms ease-in-out;
}
a:hover {
  text-decoration: none;
}

b, strong {
  font-weight: 500;
}

.tooltip {
  pointer-events: none;
}
.tooltip > .tooltip-inner {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 2px;
}

.container {
  padding-left: 4.5%;
  padding-right: 4.5%;
}

@media screen and (min-width: 1920px) {
  .container {
    max-width: 1770px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 2200px) {
  .container {
    max-width: 1920px;
  }
}
@media screen and (max-width: 1920px) {
  .container {
    max-width: 100%;
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media screen and (max-width: 1500px) {
  .container {
    padding-left: 1.5%;
    padding-right: 1.5%;
  }
}
@media screen and (max-width: 991px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
h1, h2, h3, h4, h5, h6, p, span {
  font-family: "Rubik", Arial, Helvetica, sans-serif;
}

h1 {
  font-size: 36px;
  line-height: 44px;
}

h2 {
  font-size: 28px;
  line-height: 36px;
}

h3 {
  font-size: 24px;
  line-height: 30px;
}

h4 {
  font-size: 20px;
  line-height: 28px;
}

h5 {
  font-size: 18px;
  line-height: 24px;
}

h6 {
  font-size: 15px;
  line-height: 18px;
}

p {
  font-size: 15px;
  line-height: 22px;
}

.slick-list .slick-track {
  float: left;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-prev,
.slick-next {
  z-index: 1;
}
.slick-prev:before,
.slick-next:before {
  font-family: "Line Awesome Free";
  font-size: 14px;
  font-weight: 900;
  color: #a6a6a6;
  opacity: 1;
  transition: 150ms ease-in-out;
}
.slick-prev:hover:before,
.slick-next:hover:before {
  color: #173583;
  color: var(--color-primary);
}

.slick-prev:before {
  content: "\F104";
}

.slick-next:before {
  content: "\F105";
}

.rtl .slick-prev:before {
  content: "\F105";
}
.rtl .slick-next:before {
  content: "\F104";
}

.slick-lightbox .slick-prev:before,
.slick-lightbox .slick-next:before {
  font-size: 24px;
}
.slick-lightbox .slick-lightbox-close {
  right: 13px;
}
.slick-lightbox .slick-lightbox-close:before {
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 20px;
  content: "\F00D";
  transition: 150ms ease-in-out;
}
.slick-lightbox .slick-lightbox-close:hover:before {
  color: #173583;
  color: var(--color-primary);
}

.slick-dots {
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: -12px;
}
.slick-dots li {
  height: 10px;
  width: 10px;
  margin: 0 8px 12px;
  transition: 200ms ease-in-out;
}
.slick-dots li button {
  height: 10px;
  width: 10px;
  padding: 0;
  transition: 200ms ease-in-out;
}
.slick-dots li button:before {
  content: "";
  font-size: 14px;
  height: 10px;
  width: 10px;
  background: #173583;
  background: var(--color-primary);
  border-radius: 5px;
  transition: 200ms ease-in-out;
}
.slick-dots li.slick-active {
  width: 30px;
}
.slick-dots li.slick-active button {
  width: 30px;
}
.slick-dots li.slick-active button:before {
  width: 30px;
  opacity: 1;
}

.arrow-prev.slick-arrow,
.arrow-next.slick-arrow {
  position: absolute;
  font-size: 14px;
  padding: 4px 0;
  color: #a6a6a6;
  z-index: 1;
  cursor: pointer;
  transition: none;
}
.arrow-prev.slick-arrow:hover,
.arrow-next.slick-arrow:hover {
  font-weight: 500;
  color: #173583;
  color: var(--color-primary);
}

.arrow-prev {
  right: 69px;
}

.arrow-next {
  right: -3px;
}

.nice-select {
  height: auto;
  display: inline-block;
  float: none;
  border: none;
}
.nice-select:after {
  border: none;
}
.nice-select.form-control {
  color: #191919;
  padding: 12px 30px 12px 20px;
  border: 1px solid #ebebeb;
}
.nice-select.form-control.arrow-black {
  background-position: right 10px center;
}
.nice-select.right {
  float: none;
}
.nice-select .list {
  max-height: 60vh;
  overflow: auto;
  min-width: 190px;
  margin-top: 1px;
  padding: 19px 0 16px;
  border-radius: 2px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  transform: scale(0.8);
  z-index: 9;
  transition: all 150ms ease-in-out cubic-bezier(0.5, 0, 0, 1.25);
}
.nice-select .option {
  line-height: 36px;
  padding: 0 30px;
}
.nice-select .option:hover {
  color: #173583;
  color: var(--color-primary);
  background: #ffffff;
}
.nice-select .option.focus {
  background: #ffffff;
}
.nice-select .option.selected {
  font-weight: 400;
  color: #173583;
  color: var(--color-primary);
}
.nice-select .option.selected.focus {
  background: #ffffff;
}

.mega-menu > .multi-level .sub-menu > li:hover > a {
  color: #173583;
  color: var(--color-primary);
}
.mega-menu .dropdown {
  position: relative;
}
.mega-menu .dropdown:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}
.mega-menu .dropdown > .sub-menu {
  position: absolute;
  width: 175px;
  padding: 12px 0 10px;
  background: #ffffff;
  border-radius: 2px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 150ms ease-in-out;
}
.mega-menu .dropdown > .sub-menu > li > a {
  font-size: 14px;
  line-height: 29px;
  position: relative;
  display: block;
  padding: 0 36px 0 19px;
  color: #6e6e6e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mega-menu .dropdown > .sub-menu > li > a > i {
  font-size: 12px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}
.mega-menu > .fluid-menu {
  position: relative;
}
.mega-menu > .fluid-menu:hover > .fluid-menu-wrap {
  opacity: 1;
  visibility: visible;
}
.mega-menu > .fluid-menu > .fluid-menu-wrap {
  position: absolute;
  width: 720px;
  background: #ffffff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  border-radius: 2px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 150ms ease-in-out;
}
.mega-menu .fluid-menu-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 20px 10px 0;
}
.mega-menu .fluid-menu-content .fluid-menu-list {
  flex: 0 0 33.3333333333%;
  width: 33.3333333333%;
  margin-bottom: 15px;
  padding: 0 15px;
}
.mega-menu .fluid-menu-content .fluid-menu-title {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 7px;
}
.mega-menu .fluid-menu-content .fluid-menu-title > a {
  color: #191919;
}
.mega-menu .fluid-menu-content .fluid-menu-title > a:hover {
  color: #173583;
  color: var(--color-primary);
}
.mega-menu .fluid-menu-content .fluid-sub-menu-list li a {
  font-size: 13px;
  line-height: 29px;
  max-width: 100%;
  display: inline-block;
  color: #6e6e6e;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}
.mega-menu .fluid-menu-content .fluid-sub-menu-list li a:hover {
  color: #173583;
  color: var(--color-primary);
}

@keyframes menu-in-top {
  0% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes menu-in-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(15px);
  }
}
@keyframes menu-in-bottom {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(15px);
  }
}
@keyframes menu-in-left {
  0% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0);
  }
}
.tabs:not(.featured-categories-tabs) .tab-item, .nav-tabs .nav-link {
  font-size: 15px;
  line-height: 26px;
  position: relative;
  padding: 13px 3px;
  color: #a6a6a6;
  border: none;
  border-radius: 0;
  transition: 150ms ease-in-out;
}
.tabs:not(.featured-categories-tabs) .tab-item:before, .nav-tabs .nav-link:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  height: 1px;
  width: 0;
  background: #173583;
  background: var(--color-primary);
  transform: translateX(-50%);
  transition: 150ms ease-in-out;
}
.tabs:not(.featured-categories-tabs) .tab-item:hover:before, .nav-tabs .nav-link:hover:before {
  width: 40px;
}
.tabs:not(.featured-categories-tabs) .active.tab-item, .nav-tabs .active.nav-link {
  font-weight: 500;
  color: #173583;
  color: var(--color-primary);
}
.tabs:not(.featured-categories-tabs) .active.tab-item:before, .nav-tabs .active.nav-link:before {
  width: 100%;
}
.tabs:not(.featured-categories-tabs) .active.tab-item:after, .nav-tabs .active.nav-link:after {
  opacity: 1;
}
.tabs:not(.featured-categories-tabs) .loading.tab-item, .nav-tabs .loading.nav-link {
  pointer-events: none;
}
.tabs:not(.featured-categories-tabs) .loading.tab-item:before, .nav-tabs .loading.nav-link:before {
  left: 0;
  top: auto;
  transform: none;
  animation: tab-loader 1.2s ease infinite;
}
.tabs:not(.featured-categories-tabs) .loading.tab-item:after, .nav-tabs .loading.nav-link:after {
  content: none;
}

.nav-tabs {
  border: none;
}
.tabs:not(.featured-categories-tabs) {
  list-style: none;
  margin-bottom: -1px;
}
.tabs:not(.featured-categories-tabs) .tab-item {
  float: left;
  margin-left: 30px;
  cursor: pointer;
  transition: none;
}
.tabs:not(.featured-categories-tabs) .tab-item:first-child {
  margin-left: 0;
}
.tabs:not(.featured-categories-tabs) .tab-item.active {
  cursor: default;
}

.tab-content .slick-list {
  margin: 0 -15px -50px;
  padding: 30px 0 50px;
}
.tab-content .slick-list .slick-track {
  display: flex;
  align-items: stretch;
}
.tab-content .slick-dots {
  position: relative;
  bottom: auto;
  margin-top: 30px;
}

@media screen and (max-width: 991px) {
  .tab-content .slick-list {
    margin: 0 -8px -50px;
  }
}
.btn {
  font-family: "Rubik", Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 26px;
  position: relative;
  border: none;
  padding: 7px 24px;
  border-radius: 2px;
  transition: 150ms ease-in-out;
}
.btn:focus {
  box-shadow: none !important;
  outline: 0;
}

.btn-primary {
  font-weight: 500;
  color: #ffffff;
  background: #173583;
  background: var(--color-primary);
}
.btn-primary:focus {
  background: #173583;
  background: var(--color-primary);
}
.btn-primary:active, .btn-primary.nice-select.open, .btn-primary:hover, .btn-primary:active:focus {
  background: #173583;
  background: var(--color-primary-hover);
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary.nice-select.open:not(:disabled):not(.disabled), .btn-primary:not(:disabled):not(.disabled).active {
  background: #173583;
  background: var(--color-primary-hover);
}
.btn-primary:disabled:active, .btn-primary.nice-select.open:disabled, .btn-primary:disabled:hover, .btn-primary:disabled:focus, .btn-primary:disabled:hover:focus, .btn-primary.disabled:active, .btn-primary.disabled.nice-select.open, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:hover:focus, .btn-primary[disabled]:active, .btn-primary[disabled].nice-select.open, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:hover:focus {
  background: #173583;
  background: var(--color-primary);
}

.btn-default {
  font-weight: 500;
  padding: 6px 24px;
  background: transparent;
  border: 1px solid #173583;
  border: 1px solid var(--color-primary);
}
.btn-default:active, .btn-default.nice-select.open, .btn-default:hover, .btn-default:active:focus {
  color: #ffffff;
  background: #173583;
  background: var(--color-primary);
}
.btn-default.disabled:active, .btn-default.disabled.nice-select.open, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:hover:focus, .btn-default[disabled]:active, .btn-default[disabled].nice-select.open, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:hover:focus {
  color: #191919;
  background: transparent !important;
}
.btn-default.disabled:active.btn-loading:after, .btn-default.disabled.btn-loading.nice-select.open:after, .btn-default.disabled:hover.btn-loading:after, .btn-default.disabled:focus.btn-loading:after, .btn-default.disabled:hover:focus.btn-loading:after, .btn-default[disabled]:active.btn-loading:after, .btn-default[disabled].btn-loading.nice-select.open:after, .btn-default[disabled]:hover.btn-loading:after, .btn-default[disabled]:focus.btn-loading:after, .btn-default[disabled]:hover:focus.btn-loading:after {
  border-color: #173583;
  border-color: var(--color-primary);
}
.btn-default.btn-loading:after {
  border-color: #173583;
  border-color: var(--color-primary);
}
.btn-default.btn-loading:active:after, .btn-default.btn-loading.nice-select.open:after, .btn-default.btn-loading:hover:after, .btn-default.btn-loading:focus:after, .btn-default.btn-loading:hover:focus:after {
  border-color: #ffffff;
}

.btn-lg, .btn-group-lg > .btn {
  margin-top: 5px;
  padding: 12px 50px;
}

.btn-remove {
  font-size: 15px;
  color: #191919;
  background: transparent;
  border: none;
  transition: 150ms ease-in-out;
}
.btn-remove:hover {
  color: #173583;
  color: var(--color-primary);
}

.btn-search, .btn-slider {
  background-color: #E16D00;
}

.custom-scrollbar {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ebebeb transparent;
}
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track, .custom-scrollbar::-webkit-scrollbar-track-piece {
  background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb, .custom-scrollbar::-webkit-scrollbar-thumb:vertical {
  border-radius: 2px;
  background: #ebebeb;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover, .custom-scrollbar::-webkit-scrollbar-thumb:vertical:hover {
  background: #191919;
}

.is-countdown {
  border: none;
  background: transparent;
}
.is-countdown .countdown-row {
  display: flex;
  padding: 0;
  justify-content: center;
}
.is-countdown .countdown-show4 .countdown-section {
  width: auto;
}
.is-countdown .countdown-section {
  position: relative;
  float: none;
}
.is-countdown .countdown-amount {
  font-size: 16px;
  line-height: 22px;
  display: flex;
  margin: 0 auto 26px;
  align-items: center;
  justify-content: center;
}
.is-countdown .countdown-period {
  position: absolute;
  font-size: 12px;
  line-height: 22px;
  left: 50%;
  bottom: 0;
  color: #6e6e6e;
  transform: translateX(-50%);
}

.breadcrumb {
  background-color: #D2DAEE;
  margin: 0;
  padding: 8px 0;
}
.breadcrumb ul {
  margin-left: -11px;
}
.breadcrumb ul > li {
  font-size: 12px;
  line-height: 26px;
  position: relative;
  display: inline-block;
  padding: 0 10px;
}
.breadcrumb ul > li:after {
  position: absolute;
  content: "/";
  font-size: 12px;
  right: 0;
  top: 1px;
  color: #1E47AE;
}
.breadcrumb ul > li:last-child:after {
  content: "";
}
.breadcrumb ul > li.active {
  color: #1E47AE;
}
.breadcrumb ul > li.active:after {
  color: #1E47AE;
}
.breadcrumb ul > li > a {
  color: #1E47AE;
}
.breadcrumb ul > li > a:hover {
  text-decoration: underline;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  font-weight: 500;
  margin-bottom: 9px;
}
.form-group label > span {
  margin-left: 4px;
  color: #e23e1d;
}

.form-control {
  font-size: 14px;
  height: 45px;
  padding: 10px 15px;
  border-color: #ebebeb;
  border-radius: 2px;
  transition: 150ms ease-in-out;
}
.form-control:focus {
  border-color: #173583;
  border-color: var(--color-primary);
  box-shadow: none;
}

select {
  border: none;
}
select.arrow-black {
  background-position: right 10px center;
}

textarea.form-control {
  transition: border 150ms ease-in-out, resize 0ms;
}

.form-check {
  padding: 0;
}
.form-check label {
  font-weight: 400;
  color: #6e6e6e;
}
.form-check input[type=checkbox] {
  position: absolute;
  left: 0;
  margin: 0;
  display: none;
}
.form-check input[type=checkbox]:checked + label, .form-check input[type=checkbox]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  display: inline-block;
  text-align: left;
}
.form-check input[type=checkbox]:checked + label:before, .form-check input[type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 17px;
  border: 1px solid #191919;
  border-radius: 2px;
  transition: 150ms ease-in-out;
}
.form-check input[type=checkbox]:checked + label:after, .form-check input[type=checkbox]:not(:checked) + label:after {
  position: absolute;
  content: "";
  top: 5px;
  left: 4px;
  height: 6px;
  width: 10px;
  border: 2px solid;
  border-color: #173583;
  border-color: var(--color-primary);
  /*rtl:begin:ignore*/
  border-top: none;
  border-right: none;
  transform: rotate(-45deg) scale(0);
  /*rtl:end:ignore*/
  transition: 150ms ease-in-out;
}
.form-check input[type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: rotate(-45deg) scale(0) /*rtl:ignore*/;
}
.form-check input[type=checkbox]:checked + label:after {
  opacity: 1;
  transform: rotate(-45deg) scale(1) /*rtl:ignore*/;
}

.form-radio {
  padding: 0;
}
.form-radio label {
  font-weight: 400;
  color: #6e6e6e;
}
.form-radio input[type=radio] {
  position: absolute;
  left: 0;
  margin: 0;
  display: none;
}
.form-radio input[type=radio]:checked + label, .form-radio input[type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  display: inline-block;
  text-align: left;
}
.form-radio input[type=radio]:checked + label:before, .form-radio input[type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 17px;
  border: 1px solid #191919;
  border-radius: 50%;
  transition: 150ms ease-in-out;
}
.form-radio input[type=radio]:checked + label:after, .form-radio input[type=radio]:not(:checked) + label:after {
  position: absolute;
  content: "";
  top: 7px;
  left: 5px;
  height: 7px;
  width: 7px;
  background: #173583;
  background: var(--color-primary);
  border-radius: 50%;
  transform: scale(0);
  transition: 150ms ease-in-out;
}
.form-radio input[type=radio]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.form-radio input[type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

.form-check-label > a {
  color: #173583;
  color: var(--color-primary);
}
.form-check-label > a:hover {
  color: #173583;
  color: var(--color-primary-hover);
}

.has-error .form-control {
  border-color: #e23e1d;
}
.has-error .form-control:focus {
  border-color: #e23e1d;
}

.error-message {
  line-height: 20px;
  display: block;
  margin: 4px 0 -5px;
  color: #e23e1d;
}

::-moz-placeholder {
  color: #a6a6a6 !important;
  opacity: 1;
}

::placeholder {
  color: #a6a6a6 !important;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #a6a6a6 !important;
}

::-ms-input-placeholder {
  color: #a6a6a6 !important;
}

.alert {
  font-size: 16px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  display: flex;
  margin: 0 0 0 15px;
  padding: 20px 64px 20px 28px;
  align-items: center;
  border: none;
  border-left: 3px solid;
  border-radius: 2px;
}
.alert > i {
  font-size: 20px;
  margin-right: 16px;
}
.alert .close {
  font-size: 16px;
  top: 50%;
  right: 17px;
  padding: 10px;
  opacity: 1;
  transform: translateY(-50%);
}
.alert .close:hover > i {
  color: #173583;
  color: var(--color-primary);
}
.alert .close > i {
  color: #a6a6a6;
}

.alert-success {
  color: #1eb48e;
  background: #e8f7f3;
  border-color: #1eb48e;
}

.alert-danger {
  color: #e23e1d;
  background: #fbebea;
  border-color: #e23e1d;
}

.alert-info {
  color: #247cc6;
  background: #e2ecf7;
  border-color: #247cc6;
}

.alert-warning {
  color: #ffb136;
  background: #fef5ea;
  border-color: #ffb136;
}

.table-bordered td {
  border-color: #ebebeb;
}

.table thead th {
  border-bottom: 1px solid #ebebeb;
}
.table tbody tr:first-child td {
  padding-top: 30px;
}
.table th {
  font-weight: 500;
  padding: 15px 30px;
  border-top: none;
}
.table td {
  padding: 20px 30px;
  border-color: #ebebeb;
}

.badge {
  font-size: 14px;
  font-weight: 400;
  min-width: 120px;
  display: inline-block;
  padding: 10px 15px;
  text-align: center;
  border-radius: 20px;
}

.badge-success {
  color: #1eb48e;
  background: #edf9f6;
}

.badge-danger {
  color: #e23e1d;
  background: #fdf0ed;
}

.badge-info {
  color: #247cc6;
  background: #eef5fb;
}

.badge-warning {
  color: #ffb136;
  background: #fff9ef;
}

.panel {
  margin-bottom: 50px;
  border-radius: 2px;
}
.panel:last-child {
  margin-bottom: 0;
}
.panel .panel-header {
  display: flex;
  padding: 20px 30px;
  background: #f2f4f5;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ebebeb;
  border-radius: 2px 2px 0 0;
}
.panel .panel-header > a {
  color: #a6a6a6;
}
.panel .panel-header > a:hover {
  color: #173583;
  color: var(--color-primary);
}
.panel .panel-body {
  border: 1px solid #ebebeb;
  border-top: none;
  border-radius: 0 0 2px 2px;
}

.pagination {
  margin-right: -13px;
  justify-content: flex-end;
}
.pagination .page-item.active .page-link {
  color: #173583;
  color: var(--color-primary);
}
.pagination .page-item.disabled .page-link {
  opacity: 0.5;
}
.pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
  padding: 8px 10px;
}
.pagination .page-item:first-child .page-link > i, .pagination .page-item:last-child .page-link > i {
  font-size: 14px;
}
.pagination .page-item .page-link {
  font-weight: 500;
  line-height: 23px;
  margin: 0;
  padding: 8px 14px;
  color: #a6a6a6;
  background: transparent;
  border: none;
  border-radius: 2px;
}
.pagination .page-item .page-link:hover {
  color: #173583;
  color: var(--color-primary);
  background: transparent;
}
.pagination .page-item .page-link:focus {
  box-shadow: none;
}

.rtl .pagination .page-item:first-child .page-link > i, .rtl .pagination .page-item:last-child .page-link > i {
  transform: rotateY(180deg) /*rtl:ignore*/;
}

@media screen and (max-width: 991px) {
  .pagination {
    margin-right: 0;
    justify-content: center;
  }
}
.loading {
  position: relative;
}
.loading:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  z-index: 2;
}
.loading:after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 3px solid #173583;
  border: 3px solid var(--color-primary);
  border-top-color: transparent !important;
  z-index: 3;
  animation: loader-spin 800ms infinite linear;
}

.btn-loading {
  color: transparent !important;
}
.btn-loading:after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  height: 16px;
  width: 16px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent !important;
  animation: loader-spin 800ms infinite linear;
}

@keyframes loader-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tab-loader {
  0% {
    left: 0;
    width: 20px;
  }
  50% {
    left: calc(100% - 20px);
    width: 20px;
  }
  100% {
    left: 0;
    width: 20px;
  }
}
.modal {
  padding-right: 0 !important;
}

.modal-dialog {
  margin: 15px auto;
}

.modal-content {
  padding: 0;
  border: none;
  border-radius: 2px;
}

.modal-body {
  padding: 0;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 150ms ease-out;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.notices {
  position: fixed;
  display: flex;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2em;
  overflow: hidden;
  z-index: 1052;
  pointer-events: none;
}

.notices .toast {
  display: inline-flex;
  align-items: center;
  animation-duration: 150ms;
  margin: 0.5em 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
  border-radius: 0.25em;
  pointer-events: auto;
  opacity: 0.92;
  color: #fff;
  min-height: 3em;
  cursor: pointer;
}

.notices .toast .toast-text {
  margin: 0;
  padding: 0.5em 1em;
}

.notices .toast-success {
  background-color: #28a745;
}

.notices .toast-info {
  background-color: #17a2b8;
}

.notices .toast-warning {
  background-color: #ffc107;
}

.notices .toast-error {
  background-color: #dc3545;
}

.notices .toast-default {
  background-color: #343a40;
}

.notices .toast.is-top, .notices .toast.is-bottom {
  align-self: center;
}

.notices .toast.is-top-right, .notices .toast.is-bottom-right {
  align-self: flex-end;
}

.notices .toast.is-top-left, .notices .toast.is-bottom-left {
  align-self: flex-start;
}

.notices.is-top {
  flex-direction: column;
}

.notices.is-bottom {
  flex-direction: column-reverse;
}

.notices.is-custom-parent {
  position: absolute;
}

@media screen and (max-width: 768px) {
  .notices {
    padding: 0;
    position: fixed !important;
  }
}
.notices .toast {
  max-width: 768px;
  opacity: 1;
  min-height: 3.5em;
}

.top-nav-wrap {
  background-color: #0B1A41;
}

.top-nav {
  color: #ffffff;
  padding: 10px 15px;
}
.top-nav .top-nav-left > span {
  display: block;
}
.top-nav .top-nav-right-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.top-nav .top-nav-right-list > li {
  border-right: 1px solid #e5e5e5;
  display: inline-block;
  padding: 0 20px;
}
.top-nav .top-nav-right-list > li:first-child {
  padding-left: 0;
}
.top-nav .top-nav-right-list > li:last-child {
  padding-right: 0;
  border-right: none;
}
.top-nav .top-nav-right-list > li > a {
  display: block;
  color: #ffffff;
}
.top-nav .top-nav-right-list > li > a:hover {
  color: #ffffff;
}
.top-nav .top-nav-right-list > li > a > i {
  margin-right: 5px;
  color: #ffffff;
}
.top-nav .top-nav-right-list > li > i {
  margin-right: 5px;
  color: #ffffff;
}
.top-nav .top-nav-right-list .nice-select {
  padding: 0 20px 0 0;
}
.top-nav .top-nav-right-list .nice-select .list {
  left: -22px;
  min-width: 150px;
  margin-top: 11px;
  padding: 14px 0 11px;
}
.top-nav .top-nav-right-list .nice-select .option {
  color: #173583;
  padding: 0 20px;
}

@media screen and (max-width: 991px) {
  .top-nav > .row {
    flex-direction: column;
  }
  .top-nav .top-nav-left {
    margin-bottom: 10px;
    text-align: center;
  }
}
.header-column-left {
  display: flex;
  align-self: flex-start;
}

.sidebar-menu-icon-wrap {
  display: flex;
  height: 60px;
  padding-left: 15px;
  align-items: center;
  justify-content: center;
}
.sidebar-menu-icon-wrap .sidebar-menu-icon {
  display: flex;
  height: 30px;
  width: 35px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}
.sidebar-menu-icon-wrap .sidebar-menu-icon:hover > span {
  width: 20px;
  background: #173583;
  background: var(--color-primary);
}
.sidebar-menu-icon-wrap .sidebar-menu-icon:hover > span:last-child {
  width: 20px;
}
.sidebar-menu-icon-wrap .sidebar-menu-icon > span {
  height: 2px;
  width: 16px;
  margin-bottom: 4px;
  background: #ffffff;
  transition: 200ms ease-in-out;
}
.sidebar-menu-icon-wrap .sidebar-menu-icon > span:nth-child(2) {
  width: 20px;
}
.sidebar-menu-icon-wrap .sidebar-menu-icon > span:last-child {
  width: 12px;
  margin-bottom: 0;
}

.header-logo {
  display: flex;
  height: 60px;
  width: 266px;
  padding: 0 15px;
  align-items: center;
  overflow: hidden;
}
.header-logo img {
  max-height: 100%;
  max-width: 100%;
}
.header-logo h3 {
  color: #173583;
  color: var(--color-primary);
}
.header-logo svg {
  direction: ltr /*rtl:ignore*/;
  height: 60px;
  width: 245px;
}
.header-logo svg #logo_f_bg,
.header-logo svg #logo_f_text,
.header-logo svg #logo_f_text_inner {
  fill: #173583;
  fill: var(--color-primary);
}

@media screen and (max-width: 1199px) {
  .header-logo {
    width: 200px;
  }
}
@media screen and (min-width: 992px) {
  .sidebar-menu-icon-wrap {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .header-logo h1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 391px) {
  .header-logo {
    width: 160px;
    padding-left: 5px;
  }
}
.header-search-wrap {
  position: relative;
  min-width: 0;
  flex-grow: 1;
  padding: 0 40px;
}

.header-search {
  position: relative;
}
.header-search .header-search-lg {
  background-color: #ffffff;
  position: relative;
  display: flex;
  border-radius: 2px;
}
.header-search .header-search-lg .search-input {
  height: 58px;
  padding-left: 30px;
  border: none;
}
.header-search .header-search-lg .header-search-right {
  display: flex;
  align-items: center;
}
.header-search .header-search-lg .btn-search {
  display: flex;
  height: 100%;
  width: 50px;
  margin-left: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0 2px 2px 0;
}
.header-search .header-search-lg .btn-search > i {
  color: #ffffff;
  font-size: 18px;
  line-height: 36px;
}
.header-search .nice-select {
  display: flex;
  align-items: center;
}
.header-search .nice-select .list {
  margin-top: 19px;
}

.header-search-sm-form {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 0;
  height: 100%;
  background: #ffffff;
  opacity: 0;
  z-index: -1;
  transform: scale(0.96);
  pointer-events: none;
  transition: 150ms ease-in-out;
}
.header-search-sm-form.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
  pointer-events: auto;
}
.header-search-sm-form > form {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
}
.header-search-sm-form > form > input {
  height: 60px;
  padding: 10px 50px;
  border: none;
}
.header-search-sm-form > form .btn-close,
.header-search-sm-form > form .btn-search {
  position: absolute;
  top: 50%;
  display: flex;
  height: 60px;
  width: 50px;
  padding: 15px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
}
.header-search-sm-form > form .btn-close:hover > i,
.header-search-sm-form > form .btn-search:hover > i {
  color: #173583;
  color: var(--color-primary);
}
.header-search-sm-form > form .btn-close > i,
.header-search-sm-form > form .btn-search > i {
  font-size: 24px;
  color: #6e6e6e;
  transition: 150ms ease-in-out;
}
.header-search-sm-form > form .btn-close {
  left: 0;
}
.header-search-sm-form > form .btn-search {
  right: 0;
}
.header-search-sm-form > form .btn-search > i {
  color: #ffffff;
}

@media screen and (min-width: 992px) {
  .header-search .header-search-sm {
    display: none;
  }
  .header-search-sm-form {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .header-search-wrap {
    position: static;
    display: flex;
    flex-grow: 0;
    margin-left: auto;
    padding: 0 15px;
    align-items: center;
  }
  .header-search .header-search-lg {
    display: none;
  }
  .header-search .header-search-sm:hover > i {
    color: #ffffff;
  }
  .header-search .header-search-sm > i {
    font-size: 34px;
    line-height: 36px;
    color: #ffffff;
    cursor: pointer;
    transition: 150ms ease-in-out;
  }
}
@media screen and (max-width: 391px) {
  .header-search-wrap {
    padding: 0 10px;
  }
}
.header-search .searched-keywords {
  text-transform: uppercase;
  background-color: #0B1A41;
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: flex-start;
  padding-top: 5px;
}
.header-search .searched-keywords > label {
  font-size: 12px;
  line-height: 26px;
  margin-bottom: 0;
  color: #D2DAEE;
  white-space: nowrap;
}
.header-search .searched-keywords-list {
  height: 26px;
  overflow: hidden;
}
.header-search .searched-keywords-list li {
  font-size: 12px;
  line-height: 26px;
  position: relative;
  display: inline-block;
  padding: 0 15px;
}
.header-search .searched-keywords-list li:after {
  position: absolute;
  content: "";
  left: -1px;
  top: 4px;
  height: 16px;
  width: 1px;
  background: #a6a6a6;
}
.header-search .searched-keywords-list li:first-child:after {
  height: 0;
  width: 0;
}
.header-search .searched-keywords-list li a {
  color: #D2DAEE;
}
.header-search .searched-keywords-list li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .header-search .searched-keywords {
    display: none;
  }
}
.search-suggestions {
  position: absolute;
  left: 41px;
  top: 60px;
  right: 41px;
  background: #ffffff;
  border-bottom: 2px solid #173583;
  border-bottom: 2px solid var(--color-primary);
  border-radius: 0 0 2px 2px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}
.search-suggestions .search-suggestions-inner {
  max-height: 425px;
  background: #ffffff;
  padding-bottom: 11px;
}
.search-suggestions .title {
  font-size: 13px;
  font-weight: 400;
  position: relative;
  padding: 6px 20px;
  color: #a6a6a6;
  background: #f9f9f9;
}
.search-suggestions .title:after {
  position: absolute;
  content: "";
  left: 0;
  top: 7px;
  height: 15px;
  width: 7px;
  background: #173583;
  background: var(--color-primary);
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.search-suggestions .list-item {
  transition: 150ms ease-in-out;
}
.search-suggestions .list-item.active {
  background: #f7f9fa;
}

.category-suggestion .title {
  margin-bottom: 14px;
}
.category-suggestion + .product-suggestion {
  margin-top: 11px;
}

.category-suggestion-list .single-item {
  font-size: 14px;
  line-height: 26px;
  display: block;
  max-width: 100%;
  padding: 0 20px;
  color: #6e6e6e;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: top;
}

.product-suggestion {
  padding-bottom: 3px;
}
.product-suggestion .title {
  margin-bottom: 14px;
}
.product-suggestion .more-results {
  font-size: 14px;
  display: block;
  margin: 14px 0 -14px;
  padding: 6px 0;
  color: #a6a6a6;
  background: #f9f9f9;
  text-align: center;
  border-top: 1px solid #ebebeb;
}
.product-suggestion .more-results:hover {
  color: #173583;
  color: var(--color-primary);
}

.product-suggestion-list .list-item {
  margin-bottom: 4px;
}
.product-suggestion-list .list-item:last-child {
  margin-bottom: 0;
}
.product-suggestion-list .single-item {
  position: relative;
  display: flex;
  padding: 6px 20px;
}
.product-suggestion-list .product-image {
  height: 50px;
  width: 50px;
  min-width: 50px;
  border-radius: 2px;
  overflow: hidden;
}
.product-suggestion-list .product-image .image-placeholder {
  height: 35px;
  width: 35px;
}
.product-suggestion-list .product-info {
  min-width: 0;
  margin-left: 20px;
  flex-grow: 1;
}
.product-suggestion-list .product-info-top {
  display: flex;
  justify-content: space-between;
}
.product-suggestion-list .product-name {
  font-size: 14px;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 3px;
  color: #6e6e6e;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: top;
}
.product-suggestion-list .product-badge {
  position: relative;
  top: auto;
  right: auto;
  margin: -2px 0 -1px 15px;
}
.product-suggestion-list em {
  font-weight: 500;
  font-style: inherit;
  color: #173583;
  color: var(--color-primary);
}

@media screen and (max-width: 991px) {
  .search-suggestions {
    top: 76px;
    left: 15px;
    right: 15px;
    display: none;
  }
  .search-suggestions .search-suggestions-inner {
    max-height: 359px;
  }
  .header-wrap-inner.sticky .search-suggestions {
    top: 71px;
  }
  .header-search-sm-form.active + .search-suggestions {
    display: block;
  }
}
.header-column-right {
  height: 60px;
  padding: 0 15px;
}
.header-column-right .header-wishlist,
.header-column-right .header-cart {
  display: flex;
  align-items: center;
}
.header-column-right .header-wishlist > span,
.header-column-right .header-cart > span {
  line-height: 28px;
  color: #ffffff;
  white-space: nowrap;
  transition: 150ms ease-in-out;
}
.header-column-right .header-wishlist:hover > span,
.header-column-right .header-wishlist:hover .icon-wrap > i {
  color: #ffffff;
}
.header-column-right .header-cart {
  margin-left: 35px;
  cursor: pointer;
}
.header-column-right .header-cart:hover > span,
.header-column-right .header-cart:hover .icon-wrap > i {
  color: #ffffff;
}
.header-column-right .icon-wrap {
  position: relative;
  margin-right: 10px;
}
.header-column-right .icon-wrap > i {
  font-size: 34px;
  line-height: 36px;
  color: #ffffff;
  transition: 150ms ease-in-out;
}
.header-column-right .icon-wrap > .count {
  position: absolute;
  font-size: 10px;
  line-height: 20px;
  top: 1px;
  right: -6px;
  height: 18px;
  width: 18px;
  color: #ffffff;
  background: #e23e1d;
  text-align: center;
  border-radius: 50%;
}

@media screen and (max-width: 1199px) {
  .header-column-right .icon-wrap {
    margin-right: 6px;
  }
  .header-column-right .header-wishlist > span,
  .header-column-right .header-cart > span {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .header-column-right .header-wishlist {
    display: none;
  }
  .header-column-right .header-cart {
    margin-left: 0;
  }
}
@media screen and (max-width: 391px) {
  .header-column-right {
    padding-left: 10px;
  }
}
.header-wrap-inner.sticky {
  position: fixed;
  left: 0;
  top: -200px;
  right: 0;
  min-width: 320px;
  padding: 10px 0;
  background: #0B1A41;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 150;
}
.header-wrap-inner.sticky .row.flex-nowrap {
  align-items: center;
}
.header-wrap-inner.sticky .header-logo {
  height: 55px;
}
.header-wrap-inner.sticky .header-logo svg {
  height: 55px;
}
.header-wrap-inner.sticky .searched-keywords {
  display: none;
}
.header-wrap-inner.show {
  top: 0;
  transition: 600ms ease;
}

.header-wrap {
  background-color: #0B1A41;
  position: relative;
  z-index: 8;
}

.header-wrap-inner {
  padding: 40px 0;
}

@media screen and (max-width: 991px) {
  .header-wrap-inner {
    padding: 15px 0;
    border-bottom: 1px solid #191919;
  }
}
.sidebar-menu-wrap {
  position: fixed;
  left: -150px;
  top: 0;
  bottom: 0;
  width: 270px;
  background: #ffffff;
  box-shadow: 2.5px 4.33px 40px 5px rgba(12, 31, 46, 0.1);
  opacity: 0;
  visibility: hidden;
  z-index: 200;
  transition: 200ms ease-in-out;
}
.sidebar-menu-wrap.active {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.sidebar-menu-wrap .sidebar-menu-header {
  display: flex;
  padding: 15px 26px;
  align-items: center;
  justify-content: space-between;
  background: #173583;
  background: var(--color-primary);
}
.sidebar-menu-wrap .sidebar-menu-header > h4 {
  font-weight: 400;
  color: #ffffff;
}
.sidebar-menu-wrap .sidebar-menu-header .sidebar-menu-close {
  display: flex;
  cursor: pointer;
  opacity: 0.8;
  transition: 150ms ease-in-out;
}
.sidebar-menu-wrap .sidebar-menu-header .sidebar-menu-close:hover {
  opacity: 1;
}
.sidebar-menu-wrap .sidebar-menu-header .sidebar-menu-close > i {
  font-size: 18px;
  color: #ffffff;
}
.sidebar-menu-wrap .sidebar-menu-tab {
  border-bottom: none;
}
.sidebar-menu-wrap .sidebar-menu-tab .nav-item {
  width: 50%;
}
.sidebar-menu-wrap .sidebar-menu-tab.nav-tabs .nav-link {
  padding: 8px;
  color: #a6a6a6;
  text-align: center;
  background: #f2f4f5;
  border: none;
  border-radius: 0;
}
.sidebar-menu-wrap .sidebar-menu-tab.nav-tabs .nav-link.active {
  font-weight: 400;
  color: #191919;
  background: #ffffff;
  cursor: default;
}
.sidebar-menu-wrap .sidebar-menu-tab.nav-tabs .nav-link:after {
  content: none;
}
.sidebar-menu-wrap > .tab-content {
  position: absolute;
  left: 0;
  top: 100px;
  right: 0;
  bottom: 0;
}

.sidebar-menu {
  margin: 15px 0;
}
.sidebar-menu > li {
  cursor: pointer;
}
.sidebar-menu > li:hover > .menu-item {
  color: #173583;
  color: var(--color-primary);
}
.sidebar-menu > li:hover > .menu-item > .menu-item-icon {
  color: #173583;
  color: var(--color-primary);
}
.sidebar-menu > li:hover > i {
  color: #173583;
  color: var(--color-primary);
}
.sidebar-menu > li.active .menu-item {
  color: #173583;
  color: var(--color-primary);
}
.sidebar-menu > li.active .menu-item:after {
  opacity: 1;
  visibility: visible;
}
.sidebar-menu > li.active .menu-item > .menu-item-icon {
  color: #173583;
  color: var(--color-primary);
}
.sidebar-menu > li.active > i {
  transform: rotate(90deg);
}
.sidebar-menu > li > .menu-item:after {
  position: absolute;
  content: "";
  left: 0;
  top: 16px;
  height: 15px;
  width: 7px;
  background: #173583;
  background: var(--color-primary);
  opacity: 0;
  visibility: hidden;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  transition: 150ms ease-in-out;
}
.sidebar-menu > li > .menu-item > .menu-item-icon {
  font-size: 16px;
  color: #6e6e6e;
  margin: 1px 10px 0 0;
  transition: 150ms ease-in-out;
}
.sidebar-menu > li > ul > li > a {
  max-width: 160px;
}
.sidebar-menu > li > ul > li > ul > li > a {
  max-width: 155px;
}
.sidebar-menu li:hover > a,
.sidebar-menu li:hover > i {
  color: #173583;
  color: var(--color-primary);
}
.sidebar-menu li a {
  line-height: 45px;
  max-width: 170px;
  display: inline-block;
  margin-left: 24px;
  color: #191919;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.sidebar-menu li > i {
  font-size: 12px;
  position: absolute;
  top: 18px;
  right: 30px;
  color: #6e6e6e;
  float: right;
  transition: 150ms ease-in-out;
}
.sidebar-menu li ul {
  display: none;
  margin-left: 10px;
}
.sidebar-menu .dropdown {
  position: relative;
}
.sidebar-menu .dropdown.active > a {
  color: #173583;
  color: var(--color-primary);
}
.sidebar-menu .dropdown.active > i {
  color: #173583;
  color: var(--color-primary);
  transform: rotate(90deg);
}

.sidebar-cart-top {
  display: flex;
  padding: 15px 30px;
  align-items: center;
  justify-content: space-between;
  background: #173583;
  background: var(--color-primary);
}
.sidebar-cart-top .title {
  font-weight: 400;
  color: #ffffff;
}
.sidebar-cart-top .sidebar-cart-close {
  display: flex;
  cursor: pointer;
  opacity: 0.8;
  transition: 150ms ease-in-out;
}
.sidebar-cart-top .sidebar-cart-close:hover {
  opacity: 1;
}
.sidebar-cart-top .sidebar-cart-close > i {
  font-size: 18px;
  color: #ffffff;
}

.sidebar-cart-middle {
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  bottom: 155px;
  padding: 0 30px;
}
.sidebar-cart-middle.empty {
  bottom: 0;
  overflow: visible;
}

.sidebar-cart-items-wrap {
  padding: 5px 0;
  background: #ffffff;
}

.sidebar-cart-item {
  position: relative;
  display: flex;
  padding: 25px 0 21px;
  border-bottom: 1px solid #f2f4f5;
}
.sidebar-cart-item:last-child {
  border-bottom: none;
}
.sidebar-cart-item .product-image {
  height: 46px;
  width: 46px;
  min-width: 46px;
  border-radius: 2px;
  overflow: hidden;
}
.sidebar-cart-item .product-image .image-placeholder {
  height: 25px;
  width: 25px;
}
.sidebar-cart-item .product-info {
  margin: 0 30px 0 20px;
  min-width: 0;
}
.sidebar-cart-item .product-info .product-name {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  display: block;
  color: #191919;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-cart-item .product-info .product-name:hover {
  color: #173583;
  color: var(--color-primary);
}
.sidebar-cart-item .product-info .product-quantity {
  font-size: 13px;
  line-height: 26px;
  color: #666666;
}
.sidebar-cart-item .remove-cart-item {
  position: absolute;
  top: 16px;
  right: -8px;
}
.sidebar-cart-item .remove-cart-item .btn-remove {
  font-size: 14px;
  opacity: 0.6;
}
.sidebar-cart-item .remove-cart-item .btn-remove:hover {
  opacity: 1;
}

.sidebar-cart-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
}
.sidebar-cart-bottom .sidebar-cart-subtotal {
  display: flex;
  margin: 0 30px;
  padding: 25px 0;
  justify-content: space-between;
  border-top: 1px solid #e5e5e5;
}
.sidebar-cart-bottom .sidebar-cart-subtotal > span {
  font-weight: 500;
  color: #173583;
  color: var(--color-primary);
}
.sidebar-cart-bottom .sidebar-cart-actions {
  display: flex;
  padding: 20px 30px;
  background: #f2f4f5;
  justify-content: space-between;
}

.sidebar-cart-wrap {
  position: fixed;
  top: 0;
  right: -200px;
  bottom: 0;
  height: 100%;
  width: 400px;
  background: #ffffff;
  box-shadow: 2.5px 4.33px 40px 5px rgba(12, 31, 46, 0.1);
  opacity: 0;
  visibility: hidden;
  z-index: 200;
  transition: 200ms ease-in-out;
}
.sidebar-cart-wrap.active {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.sidebar-cart-wrap .empty-message {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  padding: 40px 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.sidebar-cart-wrap .empty-message svg {
  height: 100px;
  width: 100px;
  margin-bottom: 22px;
}
.sidebar-cart-wrap .empty-message svg g {
  fill: #173583;
  fill: var(--color-primary);
}

@media screen and (max-width: 420px) {
  .sidebar-cart-wrap {
    right: -180px;
    width: 360px;
  }
}
@media screen and (max-width: 380px) {
  .sidebar-cart-wrap {
    right: -165px;
    width: 330px;
  }
}
@media screen and (max-width: 350px) {
  .sidebar-cart-wrap {
    right: -150px;
    width: 300px;
  }
  .sidebar-cart-wrap .sidebar-cart-actions {
    flex-direction: column;
  }
  .sidebar-cart-wrap .sidebar-cart-actions .btn-view-cart {
    margin-bottom: 10px;
  }
}
.navigation-wrap {
  background-color: #0B1A41;
}

.navigation-inner {
  display: flex;
  align-items: center;
  border-radius: 2px;
}
.navigation-inner .navbar {
  padding: 0;
  z-index: 2;
}
.navigation-inner .navbar .navbar-nav {
  margin: 0 30px;
}
.navigation-inner .navigation-text {
  margin-left: auto;
  margin-right: 25px;
  color: #ffb136;
}

.category-nav {
  position: relative;
  width: 220px;
  min-width: 220px;
  display: flex;
  align-items: center;
  align-self: stretch;
}
.category-nav.show .category-nav-inner {
  cursor: default;
}
.category-nav.show .category-dropdown-wrap {
  display: block;
}
.category-nav .category-nav-inner {
  font-weight: 500;
  line-height: 24px;
  width: 100%;
  display: flex;
  padding: 14px 16px 13px 0;
  color: #ffffff;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  background: #1E47AE;
  border-radius: 2px 0 0 2px;
  cursor: pointer;
  position: relative;
}
.category-nav .category-nav-inner:after {
  display: none;
}
.category-nav .category-nav-inner::before {
  background: #1E47AE;
  bottom: 0;
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  width: 100%;
}
.category-nav .category-nav-inner > i {
  font-size: 16px;
}
.category-nav .category-dropdown-wrap {
  position: absolute;
  left: -1px;
  top: calc(100% + 31px);
  display: none;
  width: 263px;
  background: #ffffff;
  border: 1px solid #191919;
  border-top: none;
  border-bottom: none;
  border-radius: 2px;
  z-index: 4;
}
.category-nav .category-dropdown-wrap:before, .category-nav .category-dropdown-wrap:after {
  position: absolute;
  content: "";
  left: 0;
  height: 1px;
  width: 100%;
  background: #191919;
}
.category-nav .category-dropdown-wrap:before {
  top: 0;
}
.category-nav .category-dropdown-wrap:after {
  bottom: 0;
}
.category-nav .category-dropdown-wrap.show {
  display: block;
}
.category-nav .category-dropdown-wrap .category-dropdown:before, .category-nav .category-dropdown-wrap .category-dropdown:after {
  position: absolute;
  content: "";
  left: 50%;
  border-style: solid;
  transform: translateX(-50%);
  z-index: 1;
}
.category-nav .category-dropdown-wrap .category-dropdown:before {
  top: -25px;
  border-width: 13px 15px;
  border-color: transparent;
  border-bottom-color: #191919;
}
.category-nav .category-dropdown-wrap .category-dropdown:after {
  top: -23px;
  border-width: 12px 14px;
  border-color: transparent;
  border-bottom-color: #ffffff;
}

.vertical-megamenu {
  position: static;
  padding: 15px 0;
}
.vertical-megamenu > li.hide {
  display: none;
}
.vertical-megamenu > li.more-categories > .menu-item {
  font-weight: 500;
}
.vertical-megamenu > li:hover > .menu-item {
  font-weight: 500;
  color: #173583;
  color: var(--color-primary);
}
.vertical-megamenu > li:hover > .menu-item:after {
  opacity: 1;
  visibility: visible;
}
.vertical-megamenu > li:hover > .menu-item > .menu-item-icon {
  color: #173583;
  color: var(--color-primary);
}
.vertical-megamenu > li:hover > .menu-item > i {
  color: #173583;
  color: var(--color-primary);
}
.vertical-megamenu > li > .menu-item {
  position: relative;
  line-height: 46px;
  display: block;
  padding: 0 50px 0 24px;
  color: #191919;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: none;
}
.vertical-megamenu > li > .menu-item:after {
  position: absolute;
  content: "";
  left: 0;
  top: 15px;
  height: 15px;
  width: 7px;
  background: #173583;
  background: var(--color-primary);
  opacity: 0;
  visibility: hidden;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  transition: 150ms ease-in-out;
}
.vertical-megamenu > li > .menu-item > .menu-item-icon {
  font-size: 16px;
  display: inline-flex;
  margin: 15px 10px 0 0;
  color: #6e6e6e;
  vertical-align: top;
  transition: 150ms ease-in-out;
}
.vertical-megamenu > li > .menu-item > i {
  font-size: 12px;
  position: absolute;
  top: 17px;
  right: 25px;
  color: #6e6e6e;
  transition: 150ms ease-in-out;
}
.vertical-megamenu.mega-menu .dropdown:hover > .sub-menu {
  animation: menu-in-left 250ms ease;
}
.vertical-megamenu.mega-menu .dropdown > .sub-menu {
  right: -175px;
  top: 0;
  animation: menu-in-right 250ms ease;
}
.vertical-megamenu.mega-menu > .fluid-menu:hover > .fluid-menu-wrap {
  animation: menu-in-left 250ms ease;
}
.vertical-megamenu.mega-menu > .fluid-menu > .fluid-menu-wrap {
  top: 0;
  right: -720px;
  animation: menu-in-right 250ms ease;
}

.horizontal-megamenu {
  position: relative;
  flex-wrap: wrap;
}
.horizontal-megamenu.mega-menu > .fluid-menu {
  position: relative;
}
.horizontal-megamenu > .nav-item:hover > .nav-link {
  font-weight: 500;
  color: #173583;
  color: var(--color-primary);
}
.horizontal-megamenu > .nav-item:hover > .nav-link > i {
  right: 12px;
  color: #173583;
  color: var(--color-primary);
}
.horizontal-megamenu > .nav-item.multi-level > .nav-link, .horizontal-megamenu > .nav-item.fluid-menu > .nav-link {
  padding-right: 35px;
}
.horizontal-megamenu > .nav-item > .nav-link {
  line-height: 36px;
  position: relative;
  margin-bottom: -1px;
  padding: 8px 15px;
  color: #ffffff;
  white-space: nowrap;
  transition: none;
}
.horizontal-megamenu > .nav-item > .nav-link:after {
  content: attr(data-text);
  font-weight: 500;
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.horizontal-megamenu > .nav-item > .nav-link > i {
  position: absolute;
  top: 50%;
  right: 15px;
  color: #6e6e6e;
  transform: translateY(-50%) rotate(90deg);
}
.horizontal-megamenu.mega-menu > .dropdown.multi-level > .sub-menu {
  left: 0;
  top: 59px;
}
.horizontal-megamenu.mega-menu .dropdown:hover > .sub-menu {
  animation: menu-in-top 250ms ease;
}
.horizontal-megamenu.mega-menu .dropdown > .sub-menu {
  left: 100%;
  top: 0;
  animation: menu-in-bottom 250ms ease;
}
.horizontal-megamenu.mega-menu > .fluid-menu:hover > .fluid-menu-wrap {
  animation: menu-in-top 250ms ease;
}
.horizontal-megamenu.mega-menu > .fluid-menu > .fluid-menu-wrap {
  top: 59px;
  left: 0;
  animation: menu-in-bottom 250ms ease;
}

.rtl .horizontal-megamenu > .nav-item:hover > .nav-link > i {
  left: 15px /*rtl:ignore*/;
}

@media screen and (max-width: 1400px) {
  .category-nav {
    width: 245px;
    min-width: 245px;
  }
  .category-nav .category-dropdown-wrap {
    width: 246px;
  }
}
@media screen and (max-width: 1300px) {
  .navigation-inner .navigation-text {
    display: none;
  }
}
@media screen and (max-width: 1047px) {
  .vertical-megamenu.mega-menu > .fluid-menu > .fluid-menu-wrap {
    right: -696px;
    width: 696px;
  }
}
@media screen and (max-width: 991px) {
  .navigation-wrap {
    display: none;
  }
  .navigation-inner .navbar .navbar-nav {
    margin-left: 0;
  }
  .category-nav {
    display: none;
  }
  .category-nav .category-dropdown-wrap {
    display: none;
  }
}
.landscape-products-wrap {
  margin-top: 45px;
}
.landscape-products-wrap .products-header {
  border-bottom: 1px solid #e5e5e5;
}
.landscape-products-wrap .section-title {
  padding-bottom: 14px;
}

.landscape-products .arrow-prev.slick-arrow,
.landscape-products .arrow-next.slick-arrow {
  top: -40px;
}
.landscape-products .slick-list {
  margin: 0 -15px -50px;
  padding: 30px 0 50px;
}
.landscape-products .slick-list .slick-track {
  display: flex;
  align-items: stretch;
}
.landscape-products .slick-dots {
  position: relative;
  bottom: auto;
  margin-top: 30px;
}

@media screen and (max-width: 991px) {
  .landscape-products .slick-list {
    margin: 0 -8px -50px;
  }
}
.steps-wrap {
  margin-bottom: 40px;
}

.step-tabs {
  display: flex;
  justify-content: center;
}
.step-tabs .step-tab {
  font-size: 18px;
  font-weight: 500;
  height: 60px;
  width: 350px;
  display: flex;
  margin: 0 15px;
  justify-content: center;
  align-items: center;
  color: #191919;
  text-align: center;
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  white-space: nowrap;
  cursor: default;
}
.step-tabs .step-tab.active {
  color: #ffffff;
  background: #173583;
  background: var(--color-primary);
  border-color: #173583;
  border-color: var(--color-primary);
}
.step-tabs .step-tab.active .step-tab-text .bg-text {
  color: #ffffff;
}
.step-tabs .step-tab-link {
  display: flex;
  width: 100%;
  color: #191919;
  justify-content: center;
  align-self: stretch;
  align-items: center;
}
.step-tabs .step-tab-text {
  position: relative;
}
.step-tabs .step-tab-text .bg-text {
  font-size: 45px;
  position: absolute;
  top: 50%;
  right: -35px;
  width: 50px;
  color: #191919;
  opacity: 0.15;
  transform: translateY(-50%);
}

@media screen and (max-width: 991px) {
  .steps-wrap {
    display: none;
  }
  .step-tabs .step-tab {
    font-size: 16px;
    height: 50px;
    width: 250px;
  }
  .step-tabs .step-tab-text .bg-text {
    font-size: 36px;
  }
}
@media screen and (max-width: 886px) {
  .step-tabs {
    align-items: center;
    flex-direction: column;
  }
  .step-tabs .step-tab {
    margin: 8px 15px;
  }
  .step-tabs .step-tab:first-child {
    margin-top: 0;
  }
  .step-tabs .step-tab:last-child {
    margin-bottom: 0;
  }
}
.order-summary-top .section-title {
  padding-bottom: 18px;
  border-bottom: 1px solid #e5e5e5;
}
.order-summary-top .cart-item {
  padding: 25px 0 24px;
  border-bottom: 1px solid #ebebeb;
}
.order-summary-top .cart-item li {
  display: flex;
  margin-bottom: 9px;
  justify-content: space-between;
}
.order-summary-top .cart-item li:last-child {
  margin-bottom: 0;
}
.order-summary-top .cart-item label {
  margin-bottom: 0;
  padding-right: 20px;
}
.order-summary-top .cart-item .product-name {
  color: #191919;
}
.order-summary-top .cart-item .product-name:hover {
  color: #173583;
  color: var(--color-primary);
}
.order-summary-top .cart-item .product-quantity {
  font-weight: 500;
}

.order-summary-middle {
  padding: 25px 0 8px;
}
.order-summary-middle.loading:before {
  left: -15px;
  top: 15px;
  right: -15px;
  bottom: 15px;
}
.order-summary-middle .shipping-methods {
  margin: 21px 0 -6px;
}
.order-summary-middle .shipping-methods > h6 {
  margin-bottom: 17px;
}
.order-summary-middle .shipping-methods .error-message {
  margin: 0;
  padding-bottom: 10px;
}
.order-summary-middle .shipping-methods .form-group {
  margin: -1px 0 0;
}
.order-summary-middle .shipping-methods .form-radio {
  display: flex;
  justify-content: space-between;
}
.order-summary-middle .shipping-methods .form-radio label {
  padding-right: 20px;
  color: #191919;
}

.order-summary-bottom .checkout-terms-and-conditions {
  margin: -1px 0 0;
  padding-bottom: 17px;
  text-align: center;
}
.order-summary-bottom .checkout-terms-and-conditions .error-message {
  margin: -2px 0 8px;
}
.order-summary-bottom .btn {
  width: 100%;
}

#paypal-button-container .paypal-buttons {
  vertical-align: top;
}
#paypal-button-container .paypal-buttons iframe.component-frame {
  z-index: 0;
}

.order-summary-wrap {
  width: 100%;
  padding-left: 15px;
}

.order-summary {
  padding: 24px 30px 30px;
  background: #f9f9f9;
  border-radius: 2px;
}
.order-summary .price-amount {
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .order-summary-wrap {
    width: 100%;
    min-width: 0;
    margin: 50px 0;
    padding-left: 0;
  }
}
.subscribe-wrap {
  margin: 50px 0;
  background: #173583;
  background: var(--color-primary);
}

.subscribe {
  display: flex;
  justify-content: center;
  padding: 30px 0 25px;
}
.subscribe > .row {
  width: 100%;
}
.subscribe .subscribe-text .title,
.subscribe .subscribe-text .sub-title {
  display: block;
  color: #ffffff;
}
.subscribe .subscribe-text .title {
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
}
.subscribe .subscribe-text .sub-title {
  line-height: 24px;
  margin-top: 10px;
}
.subscribe .subscribe-field {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.subscribe .subscribe-field .form-group {
  position: relative;
  margin-bottom: 0;
}
.subscribe .subscribe-field .form-group > input {
  height: 50px;
  width: 450px;
  border: none;
  padding: 12px 147px 10px 20px;
}
.subscribe .subscribe-field .form-group > .btn-subscribe {
  font-weight: 400;
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 0 2px 2px 0;
}

@media screen and (max-width: 1300px) {
  .subscribe .subscribe-field .form-group > input {
    width: 400px;
  }
}
@media screen and (max-width: 1199px) {
  .subscribe .subscribe-field .form-group > input {
    width: 450px;
  }
}
@media screen and (max-width: 991px) {
  .subscribe {
    padding-bottom: 34px;
  }
  .subscribe .subscribe-text {
    text-align: center;
  }
  .subscribe .subscribe-field {
    margin-top: 25px;
    justify-content: center;
  }
}
@media screen and (max-width: 500px) {
  .subscribe .subscribe-field > form {
    width: 100%;
  }
  .subscribe .subscribe-field .form-group > input {
    width: 100%;
  }
}
.newsletter-wrap .modal-dialog {
  width: 850px;
  max-width: none;
}

.newsletter-inner {
  position: relative;
  display: flex;
}
.newsletter-inner .close {
  font-size: 20px;
  position: absolute;
  top: 16px;
  right: 15px;
  transition: 150ms ease-in-out;
}
.newsletter-inner .close:hover {
  color: #173583;
  color: var(--color-primary);
}

.newsletter-left {
  width: 63%;
  padding: 41px 50px 37px;
}
.newsletter-left .title {
  font-weight: 400;
  margin-bottom: 16px;
}
.newsletter-left .sub-title {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 45px;
  color: #6e6e6e;
}
.newsletter-left .newsletter-form {
  margin-bottom: 26px;
}
.newsletter-left .newsletter-form .form-group {
  display: flex;
  margin-bottom: 0;
}
.newsletter-left .newsletter-form .form-group .error-message {
  display: none;
  text-align: left;
}
.newsletter-left .newsletter-form > .error-message {
  text-align: left;
}
.newsletter-left .btn-subscribe {
  font-weight: 400;
  margin-left: 10px;
  padding: 7px 30px;
  white-space: nowrap;
}
.newsletter-left .btn-subscribe > i {
  margin-right: 4px;
}
.newsletter-left .info-text {
  font-size: 14px;
  margin-bottom: 18px;
  color: #a6a6a6;
}
.newsletter-left .info-text a {
  color: #173583;
  color: var(--color-primary);
}
.newsletter-left .info-text a:hover {
  color: #173583;
  color: var(--color-primary-hover);
}
.newsletter-left .newsletter-checkbox {
  margin-bottom: 0;
}

.newsletter-right {
  width: 37%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 991px) {
  .newsletter-wrap .modal-dialog {
    width: 550px;
  }
  .newsletter-left {
    width: 100%;
    padding: 33px 40px 27px;
    text-align: center;
  }
  .newsletter-left .title {
    font-size: 28px;
    line-height: 36px;
  }
  .newsletter-left .sub-title {
    font-size: 17px;
  }
  .newsletter-right {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .newsletter-wrap .modal-dialog {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 500px) {
  .newsletter-left {
    padding: 28px 30px 22px;
  }
  .newsletter-left .sub-title {
    margin-bottom: 35px;
  }
  .newsletter-left .newsletter-form .form-group {
    flex-direction: column;
  }
  .newsletter-left .newsletter-form .form-group .error-message {
    display: block;
  }
  .newsletter-left .newsletter-form > .error-message {
    display: none;
  }
  .newsletter-left .btn-subscribe {
    margin: 15px 0 0 0;
  }
}
.cookie-bar-wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -200px;
  background: #3b4045;
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  z-index: 50;
  transition: 600ms ease;
}
.cookie-bar-wrap.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(-200px);
}

.cookie-bar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}
.cookie-bar .cookie-bar-text {
  font-size: 14px;
  margin-right: 100px;
  color: #f9f9f9;
}
.cookie-bar .cookie-bar-action {
  display: flex;
  white-space: nowrap;
}
.cookie-bar .cookie-bar-action .btn-accept {
  padding: 5px 24px;
}

@media screen and (max-width: 991px) {
  .cookie-bar {
    flex-direction: column;
    padding: 16px 0 20px;
  }
  .cookie-bar .cookie-bar-text {
    margin: 0 0 14px 0;
    text-align: center;
  }
}
.footer-top .title {
  margin-bottom: 23px;
}
.footer-top .social-links {
  margin: 37px 0 0 -8px;
}

.footer-links:not(.footer-tags) .list-inline li {
  display: block;
  margin-bottom: 14px;
}
.footer-links:not(.footer-tags) .list-inline li:last-child {
  margin-bottom: 0;
}
.footer-links:not(.footer-tags) .list-inline li a {
  display: inline-block;
  max-width: 100%;
  color: #6e6e6e;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: top;
  transition: 150ms ease-in-out;
}
.footer-links:not(.footer-tags) .list-inline li a:hover {
  color: #173583;
  color: var(--color-primary);
}

.footer-tags .title {
  margin-bottom: 28px;
}
.footer-tags .list-inline {
  margin-bottom: -7px;
}
.footer-tags .list-inline li {
  display: inline-block;
  max-width: 100%;
  margin: 0 4px 7px 0;
}
.footer-tags .list-inline li:last-child {
  margin-right: 0;
}
.footer-tags .list-inline li a {
  line-height: 33px;
  display: block;
  color: #6e6e6e;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  padding: 0 10px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: top;
}
.footer-tags .list-inline li a:hover {
  color: #173583;
  color: var(--color-primary);
  border-color: rgba(0, 85, 184, 0.8);
  border-color: var(--color-primary-transparent);
}

@media screen and (max-width: 991px) {
  .footer-top > .row > div:nth-child(4) .footer-links {
    margin-top: 38px;
  }
  .footer-tags {
    margin-top: 38px;
  }
}
@media screen and (max-width: 767px) {
  .footer-top .social-links {
    margin: 19px 0 -3px -8px;
  }
  .footer-links {
    margin-top: 38px;
  }
}
.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid #e5e5e5;
}

.footer-text {
  line-height: 26px;
  color: #6e6e6e;
}
.footer-text a {
  font-weight: 500;
  color: #173583;
  color: var(--color-primary);
}
.footer-text a:hover {
  color: #173583;
  color: var(--color-primary-hover);
}

.footer-payment {
  display: flex;
  justify-content: flex-end;
}
.footer-payment > img {
  max-height: 30px;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .footer-bottom {
    margin-top: 50px;
    padding-top: 13px;
  }
  .footer-text {
    text-align: center;
  }
  .footer-payment {
    margin-top: 15px;
    justify-content: center;
  }
}
.footer-wrap {
  background-color: #F1F3F6;
}

.footer {
  padding-top: 70px;
}

.home-slider {
  border-radius: 2px;
  overflow: hidden;
}
.home-slider.slick-initialized .slide:not(:first-child) {
  display: block;
}
.home-slider.slick-initialized .slide .slide-content .caption {
  display: block;
}
.home-slider.slick-initialized .slide .slide-content .btn-slider {
  display: inline-block;
}
.home-slider .slide {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.home-slider .slide:not(:first-child) {
  display: none;
}
.home-slider .slide .slider-image {
  width: 100%;
  height: auto;
  opacity: 1 !important;
  animation-duration: 3s;
}
.home-slider .slide-content {
  position: absolute;
  top: 0;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
}
.home-slider .slide-content.align-left {
  left: 0;
  justify-content: flex-start;
}
.home-slider .slide-content.align-left .captions {
  margin-left: 100px;
  text-align: left;
}
.home-slider .slide-content.align-left .captions .caption-2 {
  margin-right: 90px;
}
.home-slider .slide-content.align-right {
  right: 0;
  justify-content: flex-end;
}
.home-slider .slide-content.align-right .captions {
  margin-right: 100px;
  text-align: right;
}
.home-slider .slide-content.align-right .captions .caption-2 {
  margin-left: 90px;
}
.home-slider .slide-content .captions {
  width: 400px;
}
.home-slider .slide-content .caption {
  display: none;
}
.home-slider .slide-content .caption-1 {
  font-size: 48px;
  font-weight: 300;
  line-height: 48px;
  color: #191919;
}
.home-slider .slide-content .caption-2 {
  font-size: 16px;
  line-height: 26px;
  color: #6e6e6e;
  margin-top: 16px;
}
.home-slider .slide-content .btn-slider {
  display: none;
  margin-top: 37px;
  padding: 10px 30px;
}
.home-slider .slick-arrow {
  height: 50px;
  width: 25px;
  background: #173583;
  background: var(--color-primary);
  opacity: 0.1;
  transition: 150ms ease-in-out;
}
.home-slider .slick-arrow:hover {
  opacity: 1;
}
.home-slider .slick-arrow.slick-prev {
  left: 0;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}
.home-slider .slick-arrow.slick-prev:before {
  color: #ffffff;
  margin-right: 2px;
}
.home-slider .slick-arrow.slick-prev:before:hover {
  color: #ffffff;
}
.home-slider .slick-arrow.slick-next {
  right: 0;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}
.home-slider .slick-arrow.slick-next:before {
  color: #ffffff;
  margin-left: 2px;
}
.home-slider .slick-arrow.slick-next:before:hover {
  color: #ffffff;
}
.home-slider .slick-dots {
  bottom: 20px;
}

@media screen and (max-width: 767px) {
  .home-slider .slide-content.align-left .captions {
    margin-left: 80px;
  }
  .home-slider .slide-content.align-left .captions .caption-2 {
    margin-right: 60px;
  }
  .home-slider .slide-content.align-right .captions {
    margin-right: 80px;
  }
  .home-slider .slide-content.align-right .captions .caption-2 {
    margin-left: 60px;
  }
  .home-slider .slide-content .captions {
    width: 550px;
  }
  .home-slider .slide-content .caption-1 {
    font-size: 38px;
    line-height: 38px;
  }
  .home-slider .slide-content .caption-2 {
    font-size: 15px;
    line-height: 25px;
    margin-top: 13px;
  }
  .home-slider .slide-content .btn-slider {
    font-size: 14px;
    margin-top: 32px;
    padding: 8px 20px;
  }
}
@media screen and (max-width: 576px) {
  .home-slider .slide-content.align-left .captions {
    margin: 0 50px 0 40px;
    padding: 16px 0;
  }
  .home-slider .slide-content.align-left .captions .caption-2 {
    margin-right: 0;
  }
  .home-slider .slide-content.align-right .captions {
    margin: 0 40px 0 50px;
  }
  .home-slider .slide-content.align-right .captions .caption-2 {
    margin-left: 0;
  }
  .home-slider .slide-content .caption-1 {
    font-size: 28px;
    line-height: 28px;
  }
  .home-slider .slide-content .caption-2 {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
  }
  .home-slider .slide-content .btn-slider {
    font-size: 13px;
    margin-top: 27px;
    padding: 6px 16px;
  }
}
@media screen and (max-width: 450px) {
  .home-slider .slide-content.align-left .captions {
    margin: 0 35px 0 35px;
  }
  .home-slider .slide-content.align-right .captions {
    margin: 0 35px 0 35px;
  }
}
.zoomInImage {
  animation-name: zoomInImage;
}

@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }
  to {
    transform: scale3d(1.05, 1.05, 1.05);
  }
}
.home-section-wrap {
  margin-top: 30px;
}

.home-section-inner {
  display: flex;
  width: calc(100% - 293px);
  margin-left: 293px;
}
.home-section-inner .home-slider-wrap {
  width: 100%;
  padding: 0 15px;
}
.home-section-inner .home-banner-wrap {
  width: 33.15%;
  padding: 0 15px;
}

@media screen and (min-width: 1650px) {
  .home-section-inner .home-slider-wrap {
    width: 100%;
  }
  .home-section-inner .home-banner-wrap {
    width: 33.34%;
  }
}
@media screen and (max-width: 1400px) {
  .home-section-inner {
    width: calc(100% - 276px);
    margin-left: 276px;
  }
}
@media screen and (max-width: 1255px) {
  .home-section-inner .home-slider-wrap {
    width: 100%;
  }
  .home-section-inner .home-banner-wrap {
    width: 33.1%;
  }
}
@media screen and (max-width: 1199px) {
  .home-section-inner .home-slider-wrap {
    width: 100%;
  }
  .home-section-inner .home-banner-wrap {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .home-section-wrap .home-section-inner {
    width: 100%;
    margin-left: 0;
  }
}
.features-wrap {
  margin: 50px 0;
}
.features-wrap .features {
  padding-bottom: 30px;
  border: 1px solid #191919;
  border-radius: 2px;
}

.features-wrap .feature-list {
  display: flex;
  flex-wrap: wrap;
}
.features-wrap .single-feature {
  position: relative;
  flex: 0 0 20%;
  max-width: 20%;
  margin-top: 30px;
  padding: 0 15px;
}
.features-wrap .single-feature:last-child:after {
  width: 0;
}
.features-wrap .single-feature:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 42px;
  width: 1px;
  background: #191919;
}

@media screen and (max-width: 1280px) {
  .features-wrap .single-feature {
    flex: 0 0 25%;
    max-width: 25%;
    justify-content: flex-start;
    padding: 0 30px;
  }
  .features-wrap .single-feature:after {
    content: none;
  }
}
@media screen and (max-width: 1080px) {
  .features-wrap .single-feature {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
@media screen and (max-width: 780px) {
  .features-wrap .single-feature {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .features-wrap .single-feature {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.featured-categories-wrap {
  margin: 50px 0;
}
.featured-categories-wrap .featured-categories-header {
  display: flex;
}

.featured-categories-text {
  padding-right: 30px;
}
.featured-categories-text .title {
  font-weight: 400;
}
.featured-categories-text .excerpt {
  font-weight: 300;
  line-height: 24px;
  display: block;
  margin-top: 10px;
  color: #6e6e6e;
}

.featured-categories-tabs {
  display: flex;
}
.featured-categories-tabs .tab-item {
  display: flex;
  height: 160px;
  width: 170px;
  margin-left: 30px;
  padding: 10px;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  cursor: pointer;
  z-index: 0;
  transition: 150ms ease-in-out;
}
.featured-categories-tabs .tab-item:first-child {
  margin-left: 0;
}
.featured-categories-tabs .tab-item.active {
  border-color: rgba(0, 85, 184, 0.8);
  border-color: var(--color-primary-transparent);
  cursor: default;
}
.featured-categories-tabs .tab-item.loading {
  border-color: rgba(0, 85, 184, 0.3);
  border-color: var(--color-primary-transparent-lite);
  cursor: default;
}
.featured-categories-tabs .tab-item.loading:hover {
  border-color: rgba(0, 85, 184, 0.3);
  border-color: var(--color-primary-transparent-lite);
}
.featured-categories-tabs .tab-item.loading:after {
  height: 40px;
  width: 40px;
}
.featured-categories-tabs .tab-item:hover {
  border-color: rgba(0, 85, 184, 0.8);
  border-color: var(--color-primary-transparent);
}
.featured-categories-tabs .featured-category-image {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 50%;
}
.featured-categories-tabs .featured-category-image > img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-height: 100%;
  max-width: 100%;
  transform: translate(-50%, -50%);
}
.featured-categories-tabs .featured-category-image .image-placeholder {
  height: 45px;
  width: 45px;
}
.featured-categories-tabs .featured-category-name {
  font-size: 14px;
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 1800px) {
  .featured-categories-wrap .tabs .tab-item {
    height: 140px;
    width: 150px;
  }
}
@media screen and (max-width: 1650px) {
  .featured-categories-wrap .tabs .tab-item {
    height: 130px;
    width: 140px;
  }
}
@media screen and (max-width: 1600px) {
  .featured-categories-wrap .tabs .tab-item {
    height: 120px;
    width: 130px;
  }
}
@media screen and (max-width: 1550px) {
  .featured-categories-wrap .tabs .tab-item {
    height: 110px;
    width: 120px;
  }
}
@media screen and (max-width: 1300px) {
  .featured-categories-wrap .featured-categories-header {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
  .featured-categories-wrap .tabs {
    margin: 30px -15px -30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .featured-categories-wrap .tabs .tab-item {
    margin: 0 15px 30px 15px;
  }
  .featured-categories-wrap .tabs .tab-item:last-child {
    margin-right: 15px;
  }
}
.banner-wrap {
  margin: 50px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.banner-wrap.m-t-0 {
  margin-top: 0;
}

.banner {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 0;
}
.banner:before, .banner:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  z-index: 1;
}
.banner:before {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.banner:after {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.banner:hover:before {
  animation: effect-height 700ms ease-in;
  animation-fill-mode: forwards;
}
.banner:hover:after {
  animation: effect-width 700ms ease-in;
  animation-fill-mode: forwards;
}
.banner:hover > img {
  transform: scale(1.05);
}
.banner > img {
  width: 100%;
  border-radius: 2px;
  transform: scale(1);
  transition: 800ms ease;
}

@media screen and (max-width: 767px) {
  .three-column-full-width-banner .row > div:first-child .banner {
    margin-top: 0;
  }
  .three-column-full-width-banner .row > div .banner {
    margin-top: 15px;
  }
  .two-column-banner .row > .col-md-9:last-child .banner {
    margin-top: 15px;
  }
  .three-column-banner .row > .col-md-6:first-child .banner {
    margin-top: 0;
  }
  .three-column-banner .row > .col-md-6 .banner {
    margin-top: 15px;
  }
}
@keyframes effect-height {
  0% {
    height: 0;
    opacity: 1;
    visibility: visible;
  }
  100% {
    height: 100%;
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes effect-width {
  0% {
    width: 0;
    opacity: 1;
    visibility: visible;
  }
  100% {
    width: 100%;
    opacity: 0;
    visibility: hidden;
  }
}
.landscape-tab-products-wrap {
  margin-top: 30px;
}
.landscape-tab-products-wrap .section-title {
  margin-top: 13px;
  padding-bottom: 14px;
}

.landscape-left-tab-products {
  margin-bottom: -50px;
}
.landscape-left-tab-products .arrow-prev.slick-arrow,
.landscape-left-tab-products .arrow-next.slick-arrow {
  top: -40px;
}

@media screen and (max-width: 767px) {
  .landscape-tab-products-wrap .tab-products-header {
    text-align: center;
  }
  .landscape-tab-products-wrap .tab-products-header .section-title {
    margin: 0 0 10px;
    padding-top: 15px;
    float: none !important;
  }
  .landscape-tab-products-wrap .tab-products-header .section-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .landscape-tab-products-wrap .tab-products-header .tabs {
    display: block;
    margin-top: 5px;
    text-align: center;
    float: none !important;
  }
  .landscape-tab-products-wrap .tab-products-header .tabs .tab-item {
    display: inline-block;
    float: none;
  }
}
.grid-products-wrap {
  margin-top: 30px;
}
.grid-products-wrap .tabs .tab-item {
  font-size: 20px;
  font-weight: 300;
  padding: 15px 3px;
  color: #191919;
}

.grid-products .arrow-prev.slick-arrow,
.grid-products .arrow-next.slick-arrow {
  top: -40px;
}
.grid-products .arrow-prev {
  right: 69px;
}
.grid-products .arrow-next {
  right: -3px;
}
.grid-products .grid-products-inner {
  display: flex;
  flex-wrap: wrap;
  padding: 0 15px;
}
.grid-products .product-card {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
  margin: 0;
  border-radius: 0;
  border-left: none;
  border-top: none;
}
.grid-products .product-card:nth-child(1), .grid-products .product-card:nth-child(7) {
  border-left: 1px solid #ebebeb;
}
.grid-products .product-card:nth-child(-n+6) {
  border-top: 1px solid #ebebeb;
}

@media screen and (max-width: 1760px) {
  .grid-products .product-card {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .grid-products .product-card:nth-child(6), .grid-products .product-card:nth-child(11) {
    border-left: 1px solid #ebebeb;
  }
  .grid-products .product-card:nth-child(6) {
    border-top: none;
  }
  .grid-products .product-card:nth-child(7) {
    border-left: none;
  }
}
@media screen and (max-width: 1300px) {
  .grid-products .product-card {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .grid-products .product-card:nth-child(5) {
    border-top: none;
    border-left: 1px solid #ebebeb;
  }
  .grid-products .product-card:nth-child(6), .grid-products .product-card:nth-child(11) {
    border-left: none;
  }
  .grid-products .product-card:nth-child(9) {
    border-left: 1px solid #ebebeb;
  }
}
@media screen and (max-width: 1050px) {
  .grid-products .product-card {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .grid-products .product-card:nth-child(4), .grid-products .product-card:nth-child(7), .grid-products .product-card:nth-child(10) {
    border-left: 1px solid #ebebeb;
  }
  .grid-products .product-card:nth-child(4) {
    border-top: none;
  }
  .grid-products .product-card:nth-child(5), .grid-products .product-card:nth-child(9) {
    border-left: none;
  }
}
@media screen and (max-width: 767px) {
  .grid-products-wrap {
    margin-bottom: 0;
  }
  .grid-products-wrap .tabs {
    display: block;
    text-align: center;
    float: none !important;
  }
  .grid-products-wrap .tabs .tab-item {
    display: inline-block;
    float: none;
  }
  .grid-products .slick-list {
    margin: 0 -15px -50px;
  }
}
@media screen and (max-width: 620px) {
  .grid-products .product-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .grid-products .product-card:nth-child(3), .grid-products .product-card:nth-child(5), .grid-products .product-card:nth-child(9), .grid-products .product-card:nth-child(11) {
    border-left: 1px solid #ebebeb;
  }
  .grid-products .product-card:nth-child(3) {
    border-top: none;
  }
  .grid-products .product-card:nth-child(4), .grid-products .product-card:nth-child(10) {
    border-left: none;
  }
}
.top-brands-wrap {
  margin: 50px 0;
}

.top-brands {
  padding: 35px 50px;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  white-space: nowrap;
  overflow: hidden;
}
.top-brands .slick-prev {
  left: 25px;
}
.top-brands .slick-next {
  right: 25px;
}
.top-brands .slick-prev:before,
.top-brands .slick-next:before {
  font-weight: 900;
}
.top-brands .top-brand-image {
  display: inline-flex;
  height: 55px;
  margin: 0 10px;
  align-items: center;
  justify-content: center;
}
.top-brands .top-brand-image:hover > img {
  transform: scale(1.1);
}
.top-brands .top-brand-image > img {
  max-height: 100%;
  max-width: 100%;
  transition: 200ms ease-in-out;
}

@media screen and (max-width: 767px) {
  .top-brands {
    padding: 35px;
  }
  .top-brands .slick-prev {
    left: 15px;
  }
  .top-brands .slick-next {
    right: 15px;
  }
}
.vertical-products-wrap {
  margin: 44px 0;
}

.daily-deals-wrap .daily-deals-header {
  margin-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
}
.daily-deals-wrap .section-title {
  font-weight: 400;
  padding-bottom: 13px;
}
.daily-deals-wrap .section-title b {
  color: #173583;
  color: var(--color-primary);
}

.daily-deals {
  border-radius: 2px;
  border: 1px solid #ebebeb;
}
.daily-deals .arrow-prev.slick-arrow,
.daily-deals .arrow-next.slick-arrow {
  bottom: 15px;
}
.daily-deals .arrow-prev {
  left: 36px;
  right: auto;
}
.daily-deals .arrow-next {
  right: 36px;
}
.daily-deals .daily-deals-inner {
  padding: 20px 40px 40px;
}
.daily-deals .product-image {
  height: 320px;
  margin-bottom: 14px;
  overflow: hidden;
}
.daily-deals .product-image .image-placeholder {
  height: 100px;
  width: 100px;
}
.daily-deals .product-name {
  display: block;
  margin-bottom: 23px;
  color: #191919;
}
.daily-deals .product-name:hover h6 {
  color: #173583;
  color: var(--color-primary);
}
.daily-deals .product-name h6 {
  font-weight: 400;
  line-height: 24px;
  max-height: 48px;
  display: block;
  display: -webkit-box;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: 150ms ease-in-out;
}
.daily-deals .product-info {
  display: flex;
  margin-bottom: 25px;
  padding: 10px 0 8px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}
.daily-deals .product-rating .rating-count {
  font-size: 12px;
  margin-top: 2px;
}
.daily-deals .daily-deals-countdown.is-countdown {
  margin-bottom: 12px;
}
.daily-deals .daily-deals-countdown.is-countdown .countdown-amount {
  height: 40px;
  width: 40px;
  background: #f2f4f5;
}
.daily-deals .daily-deals-countdown.is-countdown .countdown-section {
  margin-right: 15px;
}
.daily-deals .daily-deals-countdown.is-countdown .countdown-section:last-child {
  margin-right: 0;
}
.daily-deals .deal-progress {
  margin-bottom: 21px;
}
.daily-deals .deal-progress .deal-stock {
  display: flex;
  margin-bottom: 3px;
  justify-content: space-between;
}
.daily-deals .deal-progress .stock-available,
.daily-deals .deal-progress .stock-sold {
  font-size: 12px;
  line-height: 22px;
  color: #a6a6a6;
}
.daily-deals .deal-progress .stock-available > span,
.daily-deals .deal-progress .stock-sold > span {
  color: #191919;
}
.daily-deals .deal-progress .progress {
  height: 10px;
  background: #ebebeb;
  border-radius: 2px;
}
.daily-deals .deal-progress .progress .progress-bar {
  background: #173583;
  background: var(--color-primary);
}

@media screen and (max-width: 1199px) {
  .vertical-products-wrap .row > div:not(:first-child) .vertical-products {
    margin: 44px 0;
  }
}
@media screen and (min-width: 992px) {
  .vertical-products-wrap .vertical-products .vertical-products-header {
    margin-bottom: 30px;
  }
  .vertical-products-wrap .vertical-products .vertical-product-card {
    margin-bottom: 34px;
  }
  .vertical-products-wrap .vertical-products .vertical-product-card:last-child {
    margin-bottom: 0;
  }
  .vertical-products-wrap .vertical-products .vertical-product-card .product-name {
    margin-bottom: 12px;
  }
  .vertical-products-wrap .vertical-products .vertical-product-card .product-name h6 {
    line-height: 24px;
    max-height: 48px;
  }
  .vertical-products-wrap .vertical-products .vertical-product-card .product-price {
    margin-bottom: 9px;
  }
}
@media screen and (max-width: 576px) {
  .daily-deals .daily-deals-inner {
    padding: 20px 30px 40px;
  }
  .daily-deals .product-image {
    position: relative;
    height: auto;
    padding-bottom: 80%;
  }
  .daily-deals .product-image > img {
    position: absolute;
    -o-object-fit: contain;
       object-fit: contain;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.blog-wrap {
  margin: 44px 0;
}
.blog-wrap .blog-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  border-bottom: 1px solid #e5e5e5;
}
.blog-wrap .blog-header .section-title {
  padding-bottom: 14px;
}
.blog-wrap .blog-header .view-all {
  margin-top: 2px;
  color: #a6a6a6;
}
.blog-wrap .blog-header .view-all:hover {
  color: #173583;
  color: var(--color-primary);
}

.blog-post {
  width: calc(33.3333333333% - 30px);
  margin: 0 15px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  transition: 150ms ease-in-out;
}
.blog-post:hover {
  border-color: transparent;
  box-shadow: 2.5px 4.33px 50px 5px rgba(11, 28, 42, 0.15);
}
.blog-post:hover .blog-image .image-placeholder {
  border-color: #f6f7f8;
}
.blog-post .blog-image {
  position: relative;
  margin: -1px -1px 0 -1px;
}
.blog-post .blog-image > img {
  width: 100%;
  border-radius: 2px 2px 0 0;
}
.blog-post .blog-image .image-placeholder {
  display: flex;
  height: 227px;
  justify-content: center;
  align-items: center;
  background: #f6f7f8;
  border: 1px solid #ebebeb;
  border-bottom: none;
  border-radius: 2px 2px 0 0;
  transition: 150ms ease-in-out;
}
.blog-post .blog-image .image-placeholder > img {
  height: 100px;
  width: 100px;
}
.blog-post .blog-image .blog-date {
  position: absolute;
  left: 20px;
  bottom: 20px;
  height: 55px;
  width: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 85, 184, 0.8);
  background: var(--color-primary-transparent);
  border-radius: 2px;
}
.blog-post .blog-image .blog-date > span {
  font-weight: 300;
  line-height: 18px;
  color: #ffffff;
}
.blog-post .blog-meta {
  display: flex;
  margin-bottom: 8px;
}
.blog-post .blog-meta > li {
  font-size: 14px;
  font-weight: 300;
  color: #6e6e6e;
  margin-left: 25px;
  cursor: default;
}
.blog-post .blog-meta > li:first-child {
  margin-left: 0;
}
.blog-post .blog-meta > li > i {
  margin-right: 5px;
  color: #173583;
  color: var(--color-primary);
}
.blog-post .blog-body {
  padding: 26px 20px 30px;
}
.blog-post .blog-title {
  font-weight: 400;
  margin-bottom: 13px;
}
.blog-post .blog-title > a {
  color: #191919;
}
.blog-post .blog-title > a:hover {
  color: #173583;
  color: var(--color-primary);
}
.blog-post .blog-description {
  font-weight: 300;
  line-height: 22px;
  max-height: 66px;
  margin-bottom: 29px;
  color: #6e6e6e;
  overflow: hidden;
}

@media screen and (max-width: 1199px) {
  .blog-post .blog-image .image-placeholder {
    height: 200px;
  }
}
@media screen and (max-width: 991px) {
  .blog-post {
    width: calc(50% - 30px);
  }
  .blog-post:last-child {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .blog-post {
    width: 100%;
  }
  .blog-post:nth-child(2) {
    margin-top: 30px;
  }
}
.login-wrap .remember-me {
  margin-top: -1px;
  float: left;
}
.login-wrap .forgot-password {
  margin-top: -1px;
  color: #6e6e6e;
  float: right;
}
.login-wrap .forgot-password:hover {
  color: #173583;
  color: var(--color-primary);
}
.login-wrap .btn-sign-in {
  margin-top: 34px;
}
.login-wrap .btn-create-account {
  margin-top: 12px;
}

@media screen and (max-width: 380px) {
  .login-wrap .remember-me,
  .login-wrap .forgot-password {
    display: block;
    text-align: center;
    float: none;
  }
  .login-wrap .forgot-password {
    margin-top: 4px;
  }
}
.register-wrap .terms-and-conditions {
  margin-top: -1px;
}
.register-wrap .form-group > img {
  border-radius: 2px;
}
.register-wrap .btn-create-account {
  margin-top: 34px;
}
.register-wrap .btn-sign-in {
  margin-top: 12px;
}

.my-orders-table {
  margin-bottom: 5px;
}
.my-orders-table thead th {
  white-space: nowrap;
}
.my-orders-table tbody td {
  white-space: nowrap;
}
.my-orders-table tbody td:first-child {
  font-weight: 500;
}
.my-orders-table tbody td:nth-child(4) {
  font-weight: 500;
}
.my-orders-table .product-price {
  color: #191919;
}
.my-orders-table .badge {
  margin-top: -6px;
}
.user-info {
  padding: 23px 30px;
}
.user-info li {
  display: flex;
  line-height: 24px;
  padding: 11px 0;
  color: #6e6e6e;
}
.user-info li > i {
  font-size: 24px;
  margin-right: 8px;
  vertical-align: top;
}
.user-info li > span {
  word-break: break-all;
}

.my-wishlist-table {
  margin-bottom: 10px;
}
.my-wishlist-table tbody td:not(:first-child) {
  vertical-align: middle;
}
.my-wishlist-table tbody td:nth-child(5) {
  min-width: 160px;
}
.my-wishlist-table .product-image {
  height: 60px;
  width: 60px;
  border-radius: 2px;
  overflow: hidden;
}
.my-wishlist-table .product-image .image-placeholder {
  height: 40px;
  width: 40px;
}
.my-wishlist-table .product-name {
  display: inline-block;
  min-width: 220px;
  color: #191919;
}
.my-wishlist-table .product-name:hover {
  color: #173583;
  color: var(--color-primary);
}
.my-wishlist-table .product-price {
  margin-top: 2px;
}
.my-wishlist-table .badge {
  margin-top: 1px;
}
.my-wishlist-table .btn-delete {
  margin-top: 0 !important;
}

.my-reviews-table {
  margin-bottom: 10px;
}
.my-reviews-table tbody td:not(:first-child) {
  vertical-align: middle;
}
.my-reviews-table tbody td:nth-child(4) {
  white-space: nowrap;
}
.my-reviews-table .product-image {
  height: 60px;
  width: 60px;
  border-radius: 2px;
  overflow: hidden;
}
.my-reviews-table .product-image .image-placeholder {
  height: 40px;
  width: 40px;
}
.my-reviews-table .product-name {
  display: inline-block;
  min-width: 220px;
  color: #191919;
}
.my-reviews-table .product-name:hover {
  color: #173583;
  color: var(--color-primary);
}
.my-reviews-table .product-rating > i {
  font-size: 18px;
  margin-right: 4px;
}
.my-reviews-table .product-rating > i:last-child {
  margin-right: 0;
}

.my-addresses {
  padding: 40px 30px;
}
.my-addresses .address-card-wrap .btn-add-new-address {
  margin-top: 0;
}
.my-addresses .address-card-wrap .address-card {
  position: relative;
  flex-grow: 1;
  margin-bottom: 30px;
  padding: 15px 20px 12px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  cursor: pointer;
}
.my-addresses .address-card-wrap .address-card.active {
  border-color: rgba(0, 85, 184, 0.8);
  border-color: var(--color-primary-transparent);
}
.my-addresses .address-card-wrap .address-card .address-card-data {
  margin-bottom: 6px;
}
.my-addresses .address-card-wrap .address-card .address-card-data > span {
  font-weight: 500;
  display: block;
}
.my-addresses .address-card-wrap .address-card .address-card-data > span:not(:first-child) {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #6e6e6e;
}
.my-addresses .address-card-wrap .address-card .address-card-data > span:nth-child(2) {
  margin-top: 5px;
}
.my-addresses .address-card-wrap .address-card .address-card-actions {
  display: flex;
  margin-left: -8px;
}
.my-addresses .address-card-wrap .address-card .address-card-actions .btn {
  padding: 0 8px;
}
.my-addresses .address-card-wrap .address-card .address-card-actions .btn-edit-address:hover {
  color: #173583;
  color: var(--color-primary);
}
.my-addresses .address-card-wrap .address-card .address-card-actions .btn-delete-address:hover {
  color: #e23e1d;
}
.my-addresses .add-new-address-form {
  margin-top: -7px;
}
.my-addresses .add-new-address-form .section-title {
  margin-bottom: 25px;
  padding-bottom: 13px;
  border-bottom: 1px solid #e5e5e5;
}
.my-addresses .add-new-address-form .btn-cancel {
  margin-right: 12px;
}

@media screen and (max-width: 500px) {
  .my-addresses .address-card-wrap .btn-add-new-address {
    width: 100%;
  }
  .my-addresses .add-new-address-form .btn-cancel {
    width: 100%;
    margin-right: 0;
  }
  .my-addresses .add-new-address-form .btn-save-address {
    width: 100%;
    margin-top: 15px;
  }
}
.my-profile {
  padding: 35px 30px 40px;
}

@media screen and (max-width: 500px) {
  .my-profile .btn-save-changes {
    width: 100%;
  }
}
.my-orders-table .btn-view, .my-downloads-table .btn-download, .my-wishlist-table .btn-delete {
  display: inline-flex;
  margin-top: -2px;
  padding: 0;
  letter-spacing: 2px;
}
.my-orders-table .btn-view:hover, .my-downloads-table .btn-download:hover, .my-wishlist-table .btn-delete:hover {
  color: #173583;
  color: var(--color-primary);
}
.my-orders-table .btn-view > i, .my-downloads-table .btn-download > i, .my-wishlist-table .btn-delete > i {
  margin: 5px 10px 0 0;
}

.account-wrap {
  margin: 42px 0;
}
.account-wrap .account-left {
  min-width: 267px;
}
.account-wrap .account-right {
  width: 100%;
  margin-left: 30px;
  overflow: hidden;
}

.account-wrap-inner {
  display: flex;
}

.account-sidebar li.active a {
  font-weight: 500;
  color: #173583;
  color: var(--color-primary);
}
.account-sidebar li.active a:after {
  position: absolute;
  content: "";
  left: 0;
  top: 17px;
  height: 15px;
  width: 7px;
  background: #173583;
  background: var(--color-primary);
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.account-sidebar li a {
  font-size: 16px;
  line-height: 36px;
  position: relative;
  display: inline-block;
  color: #191919;
  padding: 8px 0 8px 28px;
}
.account-sidebar li a:hover {
  color: #173583;
  color: var(--color-primary);
}
.account-sidebar li a > i {
  font-size: 24px;
  vertical-align: top;
  margin-top: 5px;
  margin: 5px 12px 0 0;
  color: #6e6e6e;
}

.account-wrap .pagination {
  margin: 17px -13px -15px 0;
}
.account-wrap .empty-message {
  padding: 64px 15px 63px;
  text-align: center;
}
.account-wrap .empty-message > h3 {
  font-weight: 400;
}

@media screen and (max-width: 1400px) {
  .account-wrap .account-left {
    min-width: 245px;
  }
}
@media screen and (max-width: 991px) {
  .account-wrap {
    margin: 23px 0;
  }
  .account-wrap .account-left {
    min-width: 0;
  }
  .account-wrap .account-right {
    margin: 29px 0 0 0;
  }
  .account-wrap-inner {
    flex-direction: column;
  }
}
.contact-wrap {
  margin: 90px 0;
}
.contact-wrap .map-canvas {
  position: relative;
  height: 0;
  padding-bottom: 34%;
  overflow: hidden;
  border-radius: 2px;
}
.contact-wrap .map-canvas > iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.contact-form-wrap {
  display: flex;
  margin-top: -12%;
  justify-content: center;
}
.contact-form-wrap .contact-form-inner {
  display: flex;
  width: 1000px;
  box-shadow: 0px 5px 28.5px 1.5px rgba(9, 6, 24, 0.1);
  overflow: hidden;
  border-radius: 6px;
}

.contact-form-left {
  position: relative;
  width: 350px;
  min-width: 350px;
  padding: 44px 60px 44px;
  background: #173583;
  background: var(--color-primary);
  overflow: hidden;
}
.contact-form-left .title {
  margin-bottom: 48px;
  color: #ffffff;
}
.contact-form-left .contact-info li {
  color: #ffffff;
  margin-bottom: 29px;
}
.contact-form-left .contact-info li:last-child {
  margin-bottom: 0;
}
.contact-form-left .contact-info li i {
  color: #ffffff !important;
}
.contact-form-left .social-links {
  margin: 45px 0 0 -8px;
}
.contact-form-left .social-links li a {
  color: #ffffff;
}
.contact-form-left .social-links li a:hover {
  color: #ffffff;
  opacity: 0.6;
}
.contact-form-left > svg {
  position: absolute;
  right: -35px;
  bottom: -45px;
  height: 180px;
  width: 180px;
  opacity: 0.15;
  transform: rotate(-15deg);
}

.contact-form-right {
  width: 100%;
  padding: 44px 60px 50px;
  background: #ffffff;
  overflow: hidden;
  z-index: 1;
}
.contact-form-right .title {
  margin-bottom: 48px;
}

@media screen and (max-width: 991px) {
  .contact-wrap {
    margin: 70px 0;
  }
}
@media screen and (max-width: 1080px) {
  .contact-form-wrap .contact-form-inner {
    width: 90%;
    flex-direction: column;
  }
  .contact-form-left {
    width: 100%;
    min-width: 0;
    padding: 34px 30px 34px;
  }
  .contact-form-left .title {
    margin-bottom: 38px;
  }
  .contact-form-left .contact-info li {
    margin-bottom: 19px;
  }
  .contact-form-left .social-links {
    margin: 35px 0 -4px -8px;
  }
  .contact-form-right {
    padding: 34px 30px 40px;
  }
  .contact-form-right .title {
    margin-bottom: 38px;
  }
}
@media screen and (max-width: 576px) {
  .contact-form-wrap {
    margin-top: 30px;
  }
  .contact-form-wrap .contact-form-inner {
    width: 100%;
  }
}
.compare-wrap {
  margin: 50px 0;
}
.compare-wrap .empty-message {
  display: flex;
  padding: 40px 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.compare-wrap .empty-message svg {
  height: 80px;
  width: 80px;
  margin-bottom: 22px;
}
.compare-wrap .empty-message svg g {
  fill: #173583;
  fill: var(--color-primary);
}

.compare-table {
  margin-bottom: 0;
}
.compare-table tr:first-child td {
  position: relative;
  padding: 25px 30px;
}
.compare-table tr:first-child td:not(:first-child) {
  vertical-align: top;
}
.compare-table td {
  padding: 20px 30px;
  text-align: center;
  vertical-align: middle;
}
.compare-table td:first-child {
  font-weight: 500;
  width: 261px;
  min-width: 261px;
}
.compare-table td:not(:first-child) {
  min-width: 320px;
  max-width: 320px;
  color: #6e6e6e;
}
.compare-table .product-image {
  height: 200px;
  width: 260px;
  display: flex;
  margin: 0 auto 20px;
  align-items: center;
  justify-content: center;
}
.compare-table .product-image > img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 100%;
  max-width: 100%;
}
.compare-table .product-image .image-placeholder {
  height: 90px;
  width: 90px;
}
.compare-table .product-name {
  display: inline-block;
  color: #191919;
}
.compare-table .product-name:hover {
  color: #173583;
  color: var(--color-primary);
}
.compare-table .btn-remove {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 15px;
}
.compare-table .btn-remove:hover {
  color: #173583;
  color: var(--color-primary);
}
.compare-table .product-price {
  display: inline-block;
}
.compare-table .product-rating {
  display: flex;
  justify-content: center;
}
.compare-table .product-rating .rating-count {
  font-size: 12px;
  line-height: 14px;
}
.compare-table .btn-wishlist,
.compare-table .btn-add-to-cart {
  font-size: 16px;
  display: inline-flex;
  height: 50px;
  width: 50px;
  padding: 0;
  justify-content: center;
  align-items: center;
  border: 1px solid #ebebeb;
  border-radius: 50%;
}
.compare-table .btn-wishlist:hover,
.compare-table .btn-add-to-cart:hover {
  border-color: rgba(0, 85, 184, 0.8);
  border-color: var(--color-primary-transparent);
}
.compare-table .btn-wishlist:hover > i,
.compare-table .btn-add-to-cart:hover > i {
  color: #173583;
  color: var(--color-primary);
}
.compare-table .btn-wishlist.disabled:hover, .compare-table .btn-wishlist[disabled]:hover,
.compare-table .btn-add-to-cart.disabled:hover,
.compare-table .btn-add-to-cart[disabled]:hover {
  border-color: #ebebeb !important;
}
.compare-table .btn-wishlist.disabled:hover > i, .compare-table .btn-wishlist[disabled]:hover > i,
.compare-table .btn-add-to-cart.disabled:hover > i,
.compare-table .btn-add-to-cart[disabled]:hover > i {
  color: #191919 !important;
}
.compare-table .btn-wishlist {
  margin-right: 12px;
}
.compare-table .btn-add-to-cart .animated {
  animation: zoomInOut 0.5s ease;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
.compare-table .btn-add-to-cart.disabled .animated, .compare-table .btn-add-to-cart[disabled] .animated {
  animation: initial;
}

@media screen and (max-width: 1400px) {
  .compare-table td:first-child {
    width: 245px;
    min-width: 245px;
  }
}
.product-search-left {
  width: 263px;
  min-width: 263px;
  margin: -6px 30px 0 0;
  overflow-y: scroll;
  position: sticky;
  top: 100px;
  height: calc(100vh - 80px);
}
.product-search-left .section-title {
  margin-bottom: 24px;
  padding-bottom: 13px;
  border-bottom: 1px solid #e5e5e5;
}
.product-search-left .vertical-products {
  margin-top: 29px;
}
.product-search-left .vertical-products .section-title {
  margin-bottom: 0;
  border-bottom: none;
}

@media screen and (max-width: 1400px) {
  .product-search-left {
    width: 246px;
    min-width: 246px;
  }
}
@media screen and (max-width: 991px) {
  .product-search-left {
    width: 100%;
    min-width: 0;
    margin: 0;
  }
  .product-search-left .vertical-products {
    margin: 44px 0;
  }
}
.product-search-right {
  width: calc(100% - 293px);
}
.product-search-right .categories-banner {
  display: block;
  margin-bottom: 40px;
}
.product-search-right .categories-banner:before, .product-search-right .categories-banner:after {
  content: none;
}
.product-search-right .categories-banner:hover > img {
  transform: scale(1);
}
.product-search-right .categories-banner > img {
  width: 100%;
  border-radius: 2px;
}

@media screen and (max-width: 1400px) {
  .product-search-right {
    width: calc(100% - 276px);
  }
}
@media screen and (max-width: 991px) {
  .product-search-right {
    width: 100%;
    margin-top: 20px;
  }
}
.browse-categories-wrap {
  margin-bottom: 30px;
}

.browse-categories {
  margin: -7px 0 0 -5px;
}
.browse-categories li {
  display: block;
  padding: 8px 0;
}
.browse-categories li.active > a {
  color: #173583;
  color: var(--color-primary);
}
.browse-categories li a {
  display: block;
  margin-left: 25px;
  color: #6e6e6e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 200ms ease-in-out;
}
.browse-categories li a:hover {
  color: #173583;
  color: var(--color-primary);
}
.browse-categories li a.active {
  color: #173583;
  color: var(--color-primary);
}
.browse-categories li i {
  font-size: 14px;
  float: left;
  margin-top: 4px;
  cursor: pointer;
  transform: rotate(0deg);
  transition: 200ms ease-in-out;
}
.browse-categories li i.open {
  color: #173583;
  color: var(--color-primary);
  transform: rotate(90deg);
}
.browse-categories li ul {
  list-style: none;
  display: none;
  margin-left: 10px;
  padding-top: 8px;
}
.browse-categories li ul li {
  padding-bottom: 0;
}

.filter-section-wrap {
  background: #ffffff;
}
.filter-section-wrap .filter-section-header > i {
  display: none;
}
.filter-section-wrap .filter-section-inner.custom-scrollbar {
  overflow-y: visible;
}

.filter-section {
  margin-bottom: 33px;
}
.filter-section:last-child {
  margin-bottom: 0;
}
.filter-section > h6 {
  font-size: 16px;
  margin-bottom: 15px;
}
.filter-section .btn-show-more {
  display: inline-flex;
  margin: 6px 0 9px;
  color: #6e6e6e;
  cursor: pointer;
  transition: 150ms ease-in-out;
}
.filter-section .btn-show-more:hover {
  color: #173583;
  color: var(--color-primary);
}

.filter-price {
  padding-bottom: 15px;
}
.filter-price .price-input {
  display: flex;
}
.filter-price .price-input > .form-group:first-child {
  position: relative;
  margin-right: 15px;
}
.filter-price .price-input > .form-group:first-child:after {
  content: "-";
  font-size: 20px;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}
.filter-price .price-input > .form-group:last-child {
  margin-left: 15px;
}
.filter-price .price-input .form-control {
  height: 40px;
}
.filter-price .noUi-horizontal {
  height: 3px;
  padding-left: 15px;
  padding-right: 15px;
}
.filter-price .noUi-horizontal .noUi-handle {
  top: -6px;
  right: -7px /*rtl:ignore*/;
  height: 14px;
  width: 14px;
}
.filter-price .noUi-target {
  background: #e5e5e5;
  border: none;
  box-shadow: none;
}
.filter-price .noUi-connect {
  background: #173583;
  background: var(--color-primary);
}
.filter-price .noUi-connect,
.filter-price .noUi-origin {
  transform-origin: 0 100% /*rtl:ignore*/;
}
.filter-price .noUi-handle {
  border: none;
  background: rgba(0, 85, 184, 0.3);
  background: var(--color-primary-transparent-lite);
  border-radius: 50%;
  box-shadow: none;
  cursor: ew-resize;
}
.filter-price .noUi-handle:before {
  content: none;
}
.filter-price .noUi-handle:after {
  left: 3px;
  top: 3px;
  height: 8px;
  width: 8px;
  background: #173583;
  background: var(--color-primary);
  border-radius: 50%;
}

.filter-checkbox .form-check {
  margin-bottom: 4px;
}
.filter-checkbox .form-check:last-child {
  margin-bottom: 0;
}
.filter-checkbox .form-check > label {
  line-height: 24px;
}

@media screen and (max-width: 991px) {
  .filter-section-wrap {
    position: fixed;
    left: -165px;
    top: 0;
    bottom: 0;
    width: 300px;
    box-shadow: 2.5px 4.33px 40px 5px rgba(12, 31, 46, 0.1);
    opacity: 0;
    visibility: hidden;
    z-index: 200;
    transition: 200ms ease-in-out;
  }
  .filter-section-wrap.active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .filter-section-wrap .filter-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 15px 20px;
    background: #173583;
    background: var(--color-primary);
  }
  .filter-section-wrap .filter-section-header > i {
    display: block;
    color: #ffffff;
    opacity: 0.8;
    cursor: pointer;
    transition: 150ms ease-in-out;
  }
  .filter-section-wrap .filter-section-header > i:hover {
    opacity: 1;
  }
  .filter-section-wrap .section-title {
    font-weight: 400;
    margin-bottom: 0;
    padding-bottom: 0;
    color: #ffffff;
    border-bottom: none;
  }
  .filter-section-wrap .section-title:after {
    content: none;
  }
  .filter-section-wrap .filter-section-inner {
    position: absolute;
    left: 0;
    top: 58px;
    right: 0;
    bottom: 0;
    padding: 23px 20px 15px;
  }
  .filter-section-wrap .filter-section-inner.custom-scrollbar {
    overflow-x: hidden;
    overflow-y: auto;
  }
}
.selectize-dropdown .optgroup-header {
  font-weight: 500;
  font-size: 14px;
}

.selectize-dropdown .optgroup .option {
  padding-left: 20px;
}

.selectize-dropdown-content .optgroup {
  border-bottom: 1px solid #ebebeb;
}

.btn__show__more {
  font-size: 12px;
  padding: 0px 14px;
  line-height: 20px;
}

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

.search-result-top {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  justify-content: space-between;
}
.search-result-top .content-left > h4 {
  font-weight: 400;
  color: #6e6e6e;
  padding-right: 30px;
}
.search-result-top .content-left > h4 > span {
  font-weight: 500;
  color: #191919;
}
.search-result-top .content-right .mobile-view-filter {
  font-size: 16px;
  display: none;
  cursor: pointer;
  transition: 150ms ease-in-out;
}
.search-result-top .content-right .mobile-view-filter:hover {
  color: #173583;
  color: var(--color-primary);
}
.search-result-top .content-right .mobile-view-filter:hover > i {
  color: #173583;
  color: var(--color-primary);
}
.search-result-top .content-right .mobile-view-filter > i {
  margin: 4px 5px 0 0;
  color: #a6a6a6;
  transition: 150ms ease-in-out;
}
.search-result-top .sorting-bar {
  display: flex;
  align-items: center;
}
.search-result-top .sorting-bar .view-type {
  display: flex;
  margin-right: 15px;
  align-items: center;
}
.search-result-top .sorting-bar .btn-grid-view {
  margin-right: 13px;
}
.search-result-top .sorting-bar .btn-grid-view,
.search-result-top .sorting-bar .btn-list-view {
  font-size: 24px;
  display: flex;
  padding: 0;
  color: #a6a6a6;
  align-items: center;
}
.search-result-top .sorting-bar .btn-grid-view.active,
.search-result-top .sorting-bar .btn-list-view.active {
  color: #173583;
  color: var(--color-primary);
}
.search-result-top .sorting-bar .form-group {
  margin-bottom: 0;
}

.search-result-middle {
  position: relative;
  margin-bottom: -30px;
}
.search-result-middle.empty {
  display: flex;
  min-height: 300px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.search-result-middle.loading:before {
  bottom: 30px;
}
.search-result-middle.loading:after {
  height: 40px;
  width: 40px;
  top: calc(50% - 15px);
}
.search-result-middle .empty-message {
  display: flex;
  padding: 40px 0;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.search-result-middle .empty-message svg {
  height: 70px;
  width: 100px;
  margin-bottom: 23px;
}
.search-result-middle .empty-message svg g {
  fill: #173583;
  fill: var(--color-primary);
}

.search-result-bottom {
  display: flex;
  margin: 17px 0 -15px;
  justify-content: space-between;
  align-items: center;
}
.search-result-bottom .showing-results {
  line-height: 39px;
  color: #6e6e6e;
}

@media screen and (max-width: 991px) {
  .search-result-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .search-result-top .content-left {
    align-self: stretch;
  }
  .search-result-top .content-left > h4 {
    padding-right: 0;
  }
  .search-result-top .content-right {
    display: flex;
    align-self: stretch;
    margin-top: 13px;
    padding: 8px 15px;
    justify-content: space-between;
    align-items: center;
    background: #f2f4f5;
    border-radius: 2px;
  }
  .search-result-top .content-right .mobile-view-filter {
    display: block;
    margin-right: auto;
  }
  .search-result-top .sorting-bar .nice-select.form-control {
    background-color: #f2f4f5;
    border-color: #f2f4f5;
  }
  .search-result-top .sorting-bar .nice-select.form-control:focus {
    background-color: #f2f4f5;
    border-color: #173583;
    border-color: var(--color-primary);
  }
  .search-result-middle.empty {
    min-height: 230px;
  }
  .search-result-bottom {
    flex-direction: column;
  }
  .search-result-bottom .showing-results + .pagination {
    margin-top: -3px;
  }
}
@media screen and (max-width: 576px) {
  .search-result-top .sorting-bar .m-r-20 {
    margin-right: 0;
  }
}
@media screen and (max-width: 450px) {
  .search-result-top .content-right {
    flex-direction: column;
    padding-top: 16px;
  }
  .search-result-top .content-right .mobile-view-filter {
    margin: 0 0 10px 0;
  }
}
.grid-view-products {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.grid-view-products > .col {
  display: flex;
  flex: 0 0 25%;
  max-width: 25%;
  margin-bottom: 30px;
}
.grid-view-products .product-card {
  width: 100%;
  margin: 0;
}

@media screen and (max-width: 1700px) {
  .grid-view-products > .col {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media screen and (max-width: 1350px) {
  .grid-view-products > .col {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
@media screen and (max-width: 991px) {
  .search-result-middle.empty .grid-view-products {
    padding-bottom: 0;
  }
  .grid-view-products {
    margin: 0 -8px;
    padding-bottom: 14px;
  }
  .grid-view-products > .col {
    flex: 0 0 25%;
    max-width: 25%;
    margin-bottom: 16px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media screen and (max-width: 880px) {
  .grid-view-products > .col {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
@media screen and (max-width: 767px) {
  .grid-view-products {
    margin: 0 -8px;
  }
  .grid-view-products > .col {
    margin-bottom: 16px;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media screen and (max-width: 620px) {
  .grid-view-products > .col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.list-view-products {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.list-product-card {
  display: flex;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.list-product-card-inner {
  display: flex;
  width: 100%;
  padding: 30px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  transition: 200ms ease-in-out;
}
.list-product-card-inner:hover {
  border-color: #ffffff;
  box-shadow: 2.5px 4.33px 50px 5px rgba(11, 28, 42, 0.15);
  z-index: 1;
}
.list-product-card-inner .product-card-left {
  align-self: flex-start;
}
.list-product-card-inner .product-card-right {
  flex-grow: 1;
  margin: -5px 0 -8px 30px;
}
.list-product-card-inner .product-image {
  position: relative;
  height: 180px;
  width: 180px;
}
.list-product-card-inner .product-image .image-placeholder {
  height: 85px;
  width: 85px;
}
.list-product-card-inner .product-card-countdown {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 200ms ease-in-out;
}
.list-product-card-inner .product-card-countdown.is-countdown .countdown-section {
  width: auto;
  margin-right: 10px;
}
.list-product-card-inner .product-card-countdown.is-countdown .countdown-section:last-child {
  margin-right: 0;
}
.list-product-card-inner .product-card-countdown.is-countdown .countdown-amount {
  height: 38px;
  width: 38px;
  color: #ffffff;
  margin: 0;
  background: rgba(0, 85, 184, 0.8);
  background: var(--color-primary-transparent);
}
.list-product-card-inner .product-card-countdown.is-countdown .countdown-period {
  display: none;
}
.list-product-card-inner .product-name {
  display: inline-block;
  margin-bottom: 10px;
  align-items: center;
  z-index: 1;
}
.list-product-card-inner .product-name > h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  max-height: 48px;
  display: block;
  display: -webkit-box;
  color: #191919;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.list-product-card-inner .product-rating {
  margin-bottom: 14px;
}
.list-product-card-inner .product-rating .rating-count {
  font-size: 13px;
  line-height: 15px;
  margin: 0 0 0 7px;
}
.list-product-card-inner .product-price {
  font-size: 18px;
  margin-bottom: 13px;
}
.list-product-card-inner .product-price .previous-price {
  font-size: 14px;
}
.list-product-card-inner .btn-add-to-cart {
  font-size: 13px;
  margin-bottom: 9px;
  padding: 7px 30px 6px;
}
.list-product-card-inner .btn-add-to-cart > i {
  font-size: 15px;
  margin: 5px 8px 0 0;
  vertical-align: top;
}
.list-product-card-inner .product-card-actions .btn {
  padding: 0;
  color: #6e6e6e;
}
.list-product-card-inner .product-card-actions .btn:hover {
  color: #173583;
  color: var(--color-primary);
}
.list-product-card-inner .product-card-actions .btn:hover > i {
  color: #6e6e6e;
}
.list-product-card-inner .product-card-actions .btn > i {
  margin-right: 4px;
}
.list-product-card-inner .product-card-actions .btn-wishlist {
  margin-right: 25px;
}
.list-product-card-inner .product-card-actions .btn-wishlist.added:hover > i,
.list-product-card-inner .product-card-actions .btn-compare.added:hover > i {
  color: #173583;
  color: var(--color-primary);
}

@media screen and (max-width: 1400px) {
  .list-product-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .list-product-card-inner {
    flex-direction: column;
  }
  .list-product-card-inner .product-card-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .list-product-card-inner .product-card-left .product-image {
    width: 100%;
  }
  .list-product-card-inner .product-card-right {
    margin-left: 0;
  }
}
.product-search-wrap {
  margin: 50px 0;
}
.product-search-wrap .product-search {
  display: flex;
}

@media screen and (max-width: 991px) {
  .product-search-wrap {
    margin: 24px 0;
  }
  .product-search {
    flex-direction: column-reverse;
  }
}
.product-details-top {
  display: flex;
  margin-bottom: 20px;
}
.product-details-top .right-sidebar {
  width: 285px;
  min-width: 285px;
  padding-left: 15px;
}
.product-details-top .right-sidebar .feature-list {
  flex-direction: column;
  margin-top: 0;
}
.product-details-top .right-sidebar .feature-list .single-feature {
  margin-bottom: 20px;
  justify-content: flex-start;
}
.product-details-top .right-sidebar .feature-list .single-feature:last-child {
  margin-bottom: 0;
}

.product-details-top-inner {
  display: flex;
  width: 100%;
}

@media screen and (max-width: 1350px) {
  .product-details-top .right-sidebar {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .product-details-top-inner {
    flex-direction: column;
  }
}
.product-image-gallery {
  display: flex;
  align-self: flex-start;
  align-items: flex-start;
  width: 600px;
}

.additional-image-wrap {
  width: 80px;
  min-width: 80px;
  margin-top: 8px;
}
.additional-image-wrap .additional-image {
  display: flex;
  height: 80px;
  margin: 8px 0;
  justify-content: center;
  align-items: center;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: 150ms ease-in-out;
}
.additional-image-wrap .additional-image.slick-current {
  border-color: #173583;
  border-color: var(--color-primary);
}
.additional-image-wrap .additional-image > img {
  max-height: 100%;
  max-width: 100%;
}
.additional-image-wrap .additional-image .image-placeholder {
  height: 35px;
  width: 35px;
}

.base-image-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
  margin-left: 16px;
  flex-grow: 1;
  border: 1px solid #ebebeb;
  border-radius: 2px;
}
.base-image-wrap .base-image.slick-initialized .base-image-inner:not(:first-child) {
  display: block;
}
.base-image-wrap .base-image .base-image-inner:not(:first-child) {
  display: none;
}
.base-image-wrap .base-image-slide {
  position: relative;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding-bottom: 100%;
  background: #ffffff;
  cursor: crosshair;
}
.base-image-wrap .base-image-slide:hover > img:not(.zoomImg) {
  opacity: 0 !important;
}
.base-image-wrap .base-image-slide:hover .zoomImg {
  opacity: 1 !important;
}
.base-image-wrap .base-image-slide > img:not(.zoomImg) {
  position: absolute;
  left: 50%;
  top: 50%;
  max-height: 100%;
  max-width: 100%;
  transform: translate(-50%, -50%);
}
.base-image-wrap .base-image-slide .image-placeholder {
  width: 130px;
}
.base-image-wrap .base-image-slide .image-placeholder ~ .zoomImg {
  display: none !important;
}
.base-image-wrap .btn-gallery-trigger {
  position: absolute;
  bottom: 10px;
  right: 10px;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  cursor: pointer;
  transform: rotateY(180deg);
}
.base-image-wrap .btn-gallery-trigger > i {
  font-size: 20px;
  transition: 150ms ease-in-out;
}
.base-image-wrap .btn-gallery-trigger:hover > i {
  color: #173583;
  color: var(--color-primary);
}

@media screen and (max-width: 1600px) {
  .product-image-gallery {
    width: 500px;
  }
  .additional-image-wrap {
    width: 70px;
    min-width: 70px;
  }
  .additional-image-wrap .additional-image {
    height: 70px;
  }
}
@media screen and (max-width: 991px) {
  .base-image-wrap .base-image-slide {
    cursor: zoom-in;
  }
  .base-image-wrap .base-image-slide:hover > img:not(.zoomImg) {
    opacity: 1 !important;
  }
  .base-image-wrap .base-image-slide:hover .zoomImg {
    opacity: 0 !important;
  }
  .base-image-wrap .zoomImg {
    opacity: 0 !important;
  }
  .base-image-wrap .btn-gallery-trigger {
    display: none;
  }
}
@media screen and (min-width: 577px) {
  .additional-image-wrap .slick-prev,
  .additional-image-wrap .slick-next {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .additional-image-wrap .slick-prev {
    top: -4px;
  }
  .additional-image-wrap .slick-prev:before {
    content: "\F106";
  }
  .additional-image-wrap .slick-next {
    left: 0;
    top: auto;
    bottom: -14px;
    transform: translate(0, 0);
  }
  .additional-image-wrap .slick-next:before {
    content: "\F107";
  }
}
@media screen and (max-width: 576px) {
  .product-image-gallery {
    width: 100%;
    flex-direction: column-reverse;
  }
  .rtl .additional-image-wrap .slick-track {
    right: 2px /*rtl:ignore*/;
  }
  .additional-image-wrap {
    display: flex;
    width: calc(100% - 32px);
    min-width: 0;
    margin: 16px auto 0;
  }
  .additional-image-wrap .slick-prev {
    left: -22px;
  }
  .additional-image-wrap .slick-next {
    right: -22px;
  }
  .additional-image-wrap .additional-image {
    width: 70px;
    min-width: 70px;
    margin: 0 8px;
  }
  .base-image-wrap {
    margin-left: 0;
  }
  .base-image-wrap .base-image-slide {
    padding-bottom: 90%;
  }
}
.product-details-info {
  width: calc(100% - 600px);
  padding: 0 15px 0 30px;
}
.product-details-info .details-info-top {
  padding-bottom: 17px;
}
.product-details-info .product-name {
  color: #1E47AE;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 15px;
}
.product-details-info .product-rating {
  font-size: 16px;
  margin-bottom: 9px;
}
.product-details-info .product-rating .rating-count {
  font-size: 14px;
  margin-top: 3px;
}
.product-details-info .product-rating + .brief-description {
  margin-top: 10px;
}
.product-details-info .product-rating + .details-info-top-actions {
  margin-top: 8px;
}
.product-details-info .availability {
  margin-bottom: 14px;
}
.product-details-info .availability.in-stock {
  color: #1eb48e;
}
.product-details-info .availability.out-of-stock {
  color: #e23e1d;
}
.product-details-info .availability + .details-info-top-actions {
  margin-top: -2px;
}
.product-details-info .brief-description {
  margin-bottom: 12px;
  color: #6e6e6e;
}
.product-details-info .details-info-top-actions .btn {
  padding: 0;
  color: #6e6e6e;
}
.product-details-info .details-info-top-actions .btn:hover {
  color: #173583;
  color: var(--color-primary);
}
.product-details-info .details-info-top-actions .btn:hover > i {
  color: #6e6e6e;
}
.product-details-info .details-info-top-actions .btn > i {
  margin-right: 4px;
}
.product-details-info .details-info-top-actions .btn-wishlist {
  margin-right: 25px;
}
.product-details-info .details-info-top-actions .btn-wishlist,
.product-details-info .details-info-top-actions .btn-compare {
  font-weight: 500;
}
.product-details-info .details-info-top-actions .btn-wishlist.added:hover > i,
.product-details-info .details-info-top-actions .btn-compare.added:hover > i {
  color: #173583;
  color: var(--color-primary);
}
.product-details-info .details-info-middle {
  padding: 22px 0 25px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.product-details-info .product-price {
  font-size: 24px;
  padding-bottom: 18px;
}
.product-details-info .product-price .previous-price {
  font-size: 14px;
  margin-top: 3px;
}
.product-details-info .product-variants {
  padding-bottom: 10px;
}
.product-details-info .product-variants .form-group .extra-price {
  font-weight: 500;
  color: #6e6e6e;
}
.product-details-info .product-variants .form-group .form-custom-radio .extra-price {
  margin-left: 4px;
}
.product-details-info .product-variants .variant-check {
  margin: -1px 0 7px;
}
.product-details-info .product-variants .variant-check .error-message {
  margin: -7px 0 8px;
}
.product-details-info .product-variants .variant-radio {
  margin: -2px 0 8px;
}
.product-details-info .product-variants .variant-radio .error-message {
  margin: -6px 0 7px;
}
.product-details-info .product-variants .variant-input,
.product-details-info .product-variants .variant-select {
  margin-bottom: 20px;
}
.product-details-info .product-variants .variant-input label,
.product-details-info .product-variants .variant-select label {
  padding-top: 12px;
}
.product-details-info .product-variants .variant-input .error-message,
.product-details-info .product-variants .variant-select .error-message {
  margin: 6px 0 -5px;
}
.product-details-info .product-variants .variant-custom-selection {
  margin-bottom: 10px;
}
.product-details-info .product-variants .variant-custom-selection label {
  padding-top: 6px;
}
.product-details-info .product-variants .variant-custom-selection .error-message {
  margin: -4px 0 5px;
}
.product-details-info .product-variants .custom-selection {
  display: inline-flex;
  flex-wrap: wrap;
}
.product-details-info .product-variants .custom-selection > li {
  font-size: 13px;
  height: 32px;
  min-width: 42px;
  display: flex;
  margin: 0 10px 10px 0;
  padding: 6px 10px;
  color: #6e6e6e;
  justify-content: center;
  align-items: center;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  transition: 150ms ease-in-out;
  cursor: pointer;
}
.product-details-info .product-variants .custom-selection > li:last-child {
  margin-right: 0;
}
.product-details-info .product-variants .custom-selection > li:hover {
  border-color: #173583;
  border-color: var(--color-primary);
}
.product-details-info .product-variants .custom-selection > li.active {
  cursor: default;
  color: #173583;
  color: var(--color-primary);
  border-color: #173583;
  border-color: var(--color-primary);
}
.product-details-info .product-variants .custom-selection > li.disabled {
  opacity: 0.65;
  cursor: default;
}
.product-details-info .product-variants .custom-selection > li.disabled:hover {
  border-color: #ebebeb;
}
.product-details-info .details-info-middle-actions {
  display: flex;
}
.product-details-info .number-picker {
  display: inline-flex;
  align-items: center;
}
.product-details-info .number-picker label {
  font-weight: 500;
  margin-bottom: 0;
}
.product-details-info .number-picker .input-group-quantity {
  position: relative;
  margin-left: 20px;
}
.product-details-info .number-picker .input-group-quantity .input-quantity {
  width: 100px;
  padding: 10px 39px 10px 10px;
  text-align: center;
}
.product-details-info .number-picker .input-group-quantity .input-quantity:focus {
  outline: 0;
  border-color: #ebebeb;
}
.product-details-info .number-picker .input-group-quantity .btn-wrapper {
  position: absolute;
  top: 0;
  right: 0;
}
.product-details-info .number-picker .input-group-quantity .btn-wrapper .btn-number {
  position: absolute;
  right: 0;
  width: 30px;
  padding: 0;
  line-height: 18px;
  background: none;
  border: 1px solid #ebebeb;
  border-radius: 0;
}
.product-details-info .number-picker .input-group-quantity .btn-wrapper .btn-number:hover {
  color: #173583;
  color: var(--color-primary);
}
.product-details-info .number-picker .input-group-quantity .btn-wrapper .btn-number[disabled]:hover {
  color: #191919;
}
.product-details-info .number-picker .input-group-quantity .btn-wrapper .btn-plus {
  top: 0;
  height: 24px;
  border-top-right-radius: 2px;
}
.product-details-info .number-picker .input-group-quantity .btn-wrapper .btn-minus {
  top: 23px;
  height: 22px;
  border-bottom-right-radius: 2px;
}
.product-details-info .btn-add-to-cart {
  margin-left: 20px;
  padding: 8px 30px;
}
.product-details-info .btn-add-to-cart > i {
  margin-right: 6px;
}
.product-details-info .details-info-bottom {
  padding: 10px 0;
}
.product-details-info .additional-info {
  display: flex;
  flex-direction: column;
  margin: 0 0 -6px -12px;
  padding: 5px 0;
}
.product-details-info .additional-info li {
  margin-bottom: 4px;
  padding: 0 12px;
}
.product-details-info .additional-info li:last-child {
  margin-bottom: 0;
}
.product-details-info .additional-info li label {
  margin-bottom: 0;
}
.product-details-info .additional-info li a {
  color: #173583;
  color: var(--color-primary);
}
.product-details-info .additional-info li a:hover {
  color: #173583;
  color: var(--color-primary-hover);
}
.product-details-info .additional-info .sku {
  color: #173583;
  color: var(--color-primary);
}
.product-details-info .additional-info .sku label {
  color: #191919;
}
.product-details-info .social-share {
  display: flex;
  align-items: center;
}
.product-details-info .social-share label {
  margin-bottom: 0;
}
.product-details-info .social-share .social-links {
  margin-left: 16px;
}

@media screen and (max-width: 1600px) {
  .product-details-info {
    width: calc(100% - 500px);
  }
}
@media screen and (max-width: 991px) {
  .product-details-info {
    width: 100%;
    margin-top: 34px;
    padding: 0;
  }
  .product-details-info .product-variants {
    margin-top: -5px;
  }
  .product-details-info .product-variants .variant-custom-selection label {
    padding-top: 0;
  }
  .product-details-info .product-variants .variant-check,
  .product-details-info .product-variants .variant-radio {
    margin-top: 0;
  }
  .product-details-info .product-variants .variant-check label,
  .product-details-info .product-variants .variant-radio label {
    margin-bottom: 8px;
  }
  .product-details-info .product-variants .variant-input label,
  .product-details-info .product-variants .variant-select label {
    padding-top: 0;
  }
}
@media screen and (max-width: 420px) {
  .product-details-info .details-info-middle-actions {
    flex-direction: column;
  }
  .product-details-info .btn-add-to-cart {
    margin: 20px 0 0 0;
    align-self: flex-start;
  }
}
@media screen and (min-width: 992px) {
  .product-details-info .product-name {
    font-size: 38px;
  }
}
.product-details-bottom {
  display: flex;
}
.product-details-bottom .left-sidebar {
  width: 285px;
  min-width: 285px;
  padding-right: 15px;
}
.product-details-bottom .left-sidebar .vertical-products {
  margin-top: 14px;
}
.product-details-bottom .left-sidebar .vertical-products + .banner {
  margin-top: 45px;
}
.product-details-bottom .left-sidebar .banner {
  margin-top: 20px;
}
.product-details-bottom .product-details-bottom-inner {
  width: calc(100% - 282px);
  padding-left: 15px;
}

.product-details-tab > .tabs {
  justify-content: flex-start;
  border-bottom: 1px solid #ebebeb;
}
.product-details-tab > .tabs .nav-item {
  margin: 0 26px -1px;
}
.product-details-tab > .tabs .nav-link {
  font-size: 20px;
  font-weight: 500;
  padding: 15px 3px;
  color: #191919;
}

@media screen and (max-width: 991px) {
  .product-details-bottom .left-sidebar {
    width: 100%;
    min-width: 0;
  }
  .product-details-bottom .left-sidebar .vertical-products {
    margin: 44px 0;
  }
  .product-details-bottom .product-details-bottom-inner {
    width: 100%;
    padding-left: 0;
  }
  .product-details-bottom .product-details-tab {
    margin-bottom: -15px;
  }
}
.description {
  padding-top: 46px;
}
.description h1, .description h2, .description h3, .description h4, .description h5, .description h6 {
  margin-bottom: 14px;
}
.description p {
  line-height: 24px;
  color: #6e6e6e;
}
.description ul, .description ol {
  padding-left: 16px;
  overflow: hidden;
}
.description ul li, .description ol li {
  margin-bottom: 9px;
  color: #6e6e6e;
}
.description b, .description strong, .description em {
  font-weight: 500;
}
.description a {
  color: #173583;
  color: var(--color-primary);
}
.description a:hover {
  color: #173583;
  color: var(--color-primary-hover);
}
.description img {
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.description iframe {
  border: none;
  max-width: 100%;
}
.description th {
  font-weight: 500;
}
.description td {
  vertical-align: top;
}

@media screen and (max-width: 991px) {
  .description {
    padding-top: 36px;
  }
}
@media screen and (max-width: 767px) {
  .description img {
    width: 100%;
  }
}
.specification {
  padding-top: 51px;
}
.specification .specification-inner {
  border: 1px solid #ebebeb;
  border-radius: 2px;
}
.specification .title {
  padding: 15px 30px;
  background: #f9f9f9;
}

.specification-list {
  padding: 35px 30px 34px 30px;
}
.specification-list li {
  display: flex;
  margin-bottom: 18px;
}
.specification-list li:last-child {
  margin-bottom: 0;
}
.specification-list label {
  font-weight: 500;
  line-height: 23px;
  width: 190px;
  min-width: 190px;
  margin-bottom: 0;
}
.specification-list span {
  line-height: 23px;
  color: #6e6e6e;
}

@media screen and (max-width: 991px) {
  .specification {
    padding: 41px 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .specification-list li {
    flex-direction: column;
  }
  .specification-list label {
    margin-bottom: 3px;
  }
}
.reviews {
  padding-top: 45px;
}
.reviews .pagination {
  margin-top: 11px;
}

.review-form > h4 {
  margin-bottom: 28px;
}
.review-form .rating-input {
  font-size: 20px;
  line-height: 20px;
  position: relative;
  display: flex;
  margin: -1px 0 -2px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.review-form .rating-input label {
  margin-bottom: 0;
  color: #ebebeb;
  cursor: pointer;
  transition: 150ms ease-in-out;
}
.review-form .rating-input label:hover, .review-form .rating-input label:focus {
  color: #ffb136;
}
.review-form .rating-input label:hover ~ label, .review-form .rating-input label:focus ~ label {
  color: #ffb136;
}
.review-form .rating-input input[type=radio] {
  display: none;
}
.review-form .rating-input input[type=radio]:checked ~ label {
  color: #ffb136;
}
.review-form .btn-submit {
  padding: 7px 30px;
}

.user-review-wrap {
  margin-top: 4px;
}
.user-review-wrap.loading:after {
  border-width: 2px;
}
.user-review-wrap .empty-message {
  display: flex;
  padding: 35px 0 40px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.user-review-wrap .empty-message svg {
  height: 80px;
  width: 80px;
  margin-bottom: 16px;
}
.user-review-wrap .empty-message svg path {
  stroke-width: 3px;
  fill: #173583;
  fill: var(--color-primary);
  stroke: #173583;
  stroke: var(--color-primary);
}

.user-review {
  margin-bottom: 27px;
}
.user-review:nth-child(4) {
  margin-bottom: 0;
}
.user-review:nth-child(n+5) {
  display: none;
}
.user-review .reviewer-name {
  font-size: 16px;
  margin-bottom: 6px;
}
.user-review .product-rating {
  margin-bottom: 11px;
}
.user-review .reviewer-message {
  color: #6e6e6e;
  margin-bottom: 7px;
}
.user-review .review-date,
.user-review .review-approval {
  font-size: 14px;
  color: #a6a6a6;
}

@media screen and (max-width: 1199px) {
  .user-review-wrap {
    margin: 48px 0 8px;
  }
}
@media screen and (max-width: 991px) {
  .reviews {
    padding-top: 35px;
  }
}
.product-details-wrap {
  margin: 50px 0;
}

.shopping-cart-wrap {
  margin: 50px 0;
}
.shopping-cart-wrap .empty-message {
  display: flex;
  width: 100%;
  padding: 40px 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.shopping-cart-wrap .empty-message svg {
  height: 100px;
  width: 100px;
  margin-bottom: 22px;
}
.shopping-cart-wrap .empty-message svg g {
  fill: #173583;
  fill: var(--color-primary);
}
.shopping-cart-wrap .empty-message h2 {
  margin-bottom: 6px;
}
.shopping-cart-wrap .empty-message span {
  color: #6e6e6e;
}

.shopping-cart {
  display: flex;
}

.shopping-cart-inner {
  flex-grow: 1;
  padding-right: 15px;
}

@media screen and (max-width: 991px) {
  .shopping-cart {
    flex-direction: column;
  }
  .shopping-cart-inner {
    padding-right: 0;
  }
}
.shopping-cart .table-responsive {
  border: 1px solid #ebebeb;
  border-radius: 2px;
  margin-bottom: 25px;
}

.shopping-cart-table {
  margin-bottom: 10px;
}
.shopping-cart-table thead th {
  white-space: nowrap;
}
.shopping-cart-table thead th:last-child {
  width: 70px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.shopping-cart-table tbody td {
  vertical-align: middle;
}
.shopping-cart-table tbody td:last-child {
  width: 70px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.shopping-cart-table .btn-remove {
  line-height: 20px;
}
.shopping-cart-table .product-image {
  height: 60px;
  width: 60px;
  border-radius: 2px;
  overflow: hidden;
}
.shopping-cart-table .product-image .image-placeholder {
  height: 40px;
  width: 40px;
}
.shopping-cart-table .product-name {
  display: inline-block;
  color: #191919;
}
.shopping-cart-table .product-name:hover {
  color: #173583;
  color: var(--color-primary);
}
.shopping-cart-table .product-options {
  margin: 4px 0 1px;
}
.shopping-cart-table .product-price {
  color: #191919;
}
.shopping-cart-table .number-picker {
  position: relative;
  width: 57px;
}
.shopping-cart-table .number-picker .input-quantity {
  height: auto;
  padding: 0;
  text-align: center;
  border: none;
}
.shopping-cart-table .number-picker .btn-number {
  position: absolute;
  padding: 0;
  top: 50%;
  background: #ffffff;
  transform: translateY(-50%);
}
.shopping-cart-table .number-picker .btn-number:hover {
  color: #173583;
  color: var(--color-primary);
}
.shopping-cart-table .number-picker .btn-number[disabled] {
  opacity: 1;
}
.shopping-cart-table .number-picker .btn-number[disabled] > i {
  opacity: 0.5;
}
.shopping-cart-table .number-picker .btn-number[disabled]:hover {
  color: #191919;
}
.shopping-cart-table .number-picker .btn-minus {
  left: 0;
}
.shopping-cart-table .number-picker .btn-plus {
  right: 0;
}

.rtl .shopping-cart-table .number-picker .btn-number {
  transform: translateY(-50%) rotateY(180deg) /*rtl:ignore*/;
}

@media screen and (min-width: 1281px) {
  .shopping-cart-table td > label {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  .shopping-cart-table thead {
    display: none;
  }
  .shopping-cart-table tr:first-child td:nth-child(3), .shopping-cart-table tr:first-child td:nth-child(4), .shopping-cart-table tr:first-child td:nth-child(5) {
    padding-top: 2px;
  }
  .shopping-cart-table tbody td {
    vertical-align: top;
  }
  .shopping-cart-table tbody td:not(:first-child):not(:last-child) {
    display: block;
  }
  .shopping-cart-table tbody td:nth-child(2) {
    padding: 20px 0 11px;
  }
  .shopping-cart-table tbody td:nth-child(3) {
    padding: 2px 0;
    white-space: nowrap;
  }
  .shopping-cart-table tbody td:nth-child(4) {
    padding: 2px 0;
    white-space: nowrap;
  }
  .shopping-cart-table tbody td:nth-child(5) {
    padding: 2px 0 13px;
    white-space: nowrap;
  }
  .shopping-cart-table td > label {
    width: 90px;
    min-width: 90px;
    margin-bottom: 0;
    padding-right: 5px;
    color: #6e6e6e;
    white-space: pre-wrap;
  }
  .shopping-cart-table .product-price {
    display: inline-flex;
  }
  .shopping-cart-table .number-picker {
    display: inline-block;
  }
}
@media screen and (max-width: 576px) {
  .shopping-cart-table tbody td:first-child {
    padding: 20px;
  }
  .shopping-cart-table tbody td:last-child {
    width: 50px;
  }
  .shopping-cart-table tbody td > label {
    width: 80px;
    min-width: 80px;
  }
}
.checkout-left {
  flex-grow: 1;
  padding-right: 15px;
}

.checkout-form .account-details {
  margin-bottom: 14px;
}
.checkout-form .section-title {
  margin-bottom: 25px;
  padding-bottom: 13px;
  border-bottom: 1px solid #e5e5e5;
}
.checkout-form .create-an-account-form .helper-text {
  font-size: 14px;
  display: block;
  margin: -4px 0 14px;
  color: #6e6e6e;
}
.checkout-form .create-an-account-label,
.checkout-form .ship-to-different-address-label {
  margin: 4px 0 7px;
}
.checkout-form .create-an-account-label label,
.checkout-form .ship-to-different-address-label label {
  color: #191919;
}
.checkout-form .select-address {
  padding: 3px 0;
}
.checkout-form .select-address .form-group {
  margin-bottom: 0;
}
.checkout-form .select-address .form-radio {
  margin-bottom: 9px;
}
.checkout-form .select-address label > span {
  font-weight: 500;
  display: block;
  color: #191919;
}
.checkout-form .select-address label > span:not(:first-child) {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #6e6e6e;
}
.checkout-form .select-address label > span:nth-child(2) {
  margin-top: 5px;
}
.checkout-form .select-address .error-message {
  display: inline-flex;
  margin: 0 0 20px;
}
.checkout-form .add-new-address-wrap .btn-add-new-address {
  font-weight: 500;
  margin-bottom: 22px;
  padding: 5px 0;
}
.checkout-form .add-new-address-wrap .btn-add-new-address:hover {
  color: #173583;
  color: var(--color-primary);
}
.checkout-form .ship-to-different-address-form {
  padding-top: 14px;
}
.checkout-form .order-notes {
  margin-bottom: 0;
}

@media screen and (max-width: 1280px) {
  .checkout-form .order-notes {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .checkout-left {
    padding-right: 0;
  }
}
.checkout-right {
  width: 100%;
  padding: 0 15px;
}
.checkout-right .payment-method .title {
  margin-bottom: 13px;
}
.checkout-right .payment-method-form {
  padding: 28px 30px 5px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
}
.checkout-right .payment-method-form .form-group {
  margin-bottom: 0;
}
.checkout-right .payment-method-form .form-radio {
  margin-bottom: 20px;
}
.checkout-right .payment-method-form label {
  font-weight: 500;
  color: #191919;
}
.checkout-right .payment-method-form .helper-text {
  font-size: 13px;
  display: block;
  margin: -4px 0 0 28px;
  color: #6e6e6e;
}
.checkout-right .payment-method-form .error-message {
  margin: -2px 0 20px;
}
.checkout-right .payment-instructions {
  margin-top: 30px;
  padding: 24px 30px 23px;
  background: #f9f9f9;
  border-radius: 2px;
}
.checkout-right .payment-instructions .title {
  margin-bottom: 14px;
}
.checkout-right .payment-instructions > p {
  font-size: 14px;
  color: #6e6e6e;
}
.checkout-right .coupon-wrap {
  margin-top: 25px;
}

#stripe-card-element {
  margin-top: 30px;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 2px;
}

@media screen and (min-width: 1281px) {
  .checkout-right .coupon-wrap .form-group input {
    width: auto;
  }
  .checkout-right .coupon-wrap .form-group .btn-apply-coupon {
    width: 100%;
    padding: 7px 15px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 1280px) {
  .checkout-right {
    width: 100%;
    min-width: 0;
    margin-top: 14px;
    padding-left: 0;
  }
}
@media screen and (max-width: 991px) {
  .checkout-right {
    padding-right: 0;
  }
}
.checkout-wrap {
  margin: 50px 0;
}

.checkout {
  display: flex;
}

.checkout-inner {
  display: flex;
  flex-grow: 1;
}

@media screen and (max-width: 1280px) {
  .checkout-inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 991px) {
  .checkout {
    flex-direction: column;
  }
}
.order-complete-wrap {
  margin: 50px 0;
}

.order-complete {
  display: flex;
  padding: 40px 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.order-complete .checkmark {
  display: block;
  width: 80px;
  height: 80px;
  margin-bottom: 23px;
  border-radius: 50%;
  stroke: #173583;
  stroke: var(--color-primary);
  stroke-width: 2.5;
  stroke-miterlimit: 10;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}
.order-complete .checkmark-circle {
  stroke: #173583;
  stroke: var(--color-primary);
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 1.5;
  stroke-miterlimit: 10;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.order-complete .checkmark-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  transform-origin: 50% 50%;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
.order-complete h2 {
  margin-bottom: 6px;
}
.order-complete span {
  color: #6e6e6e;
}

.all-brands-wrap {
  margin: 50px 0;
}

.all-brands .all-brands-inner {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px -30px;
}
.all-brands .brand-image {
  position: relative;
  display: block;
  margin-bottom: 30px;
  padding-bottom: 70%;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  overflow: hidden;
  transition: 150ms ease-in-out;
}
.all-brands .brand-image:hover {
  border-color: rgba(0, 85, 184, 0.3);
  border-color: var(--color-primary-transparent-lite);
}
.all-brands .brand-image:hover > img {
  opacity: 0.7;
}
.all-brands .brand-image > img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-height: 100%;
  max-width: 100%;
  transform: translate(-50%, -50%);
  transition: 150ms ease-in-out;
}
.all-brands .brand-image .image-placeholder {
  height: 65px;
  width: 65px;
}
.all-brands .empty-message {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 40px 0;
}
.all-brands .empty-message svg {
  height: 100px;
  width: 100px;
  margin-bottom: 22px;
}
.all-brands .empty-message svg path {
  stroke: #ffffff;
  stroke-miterlimit: 10;
  stroke-width: 5px;
  fill: #173583;
  fill: var(--color-primary);
}

.all-categories-wrap {
  margin: 44px 0;
}
.all-categories-wrap .empty-message {
  display: flex;
  padding: 40px 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.all-categories-wrap .empty-message svg {
  height: 100px;
  width: 100px;
  margin-bottom: 22px;
}
.all-categories-wrap .empty-message svg path {
  fill: #173583;
  fill: var(--color-primary);
}

.single-category {
  margin-bottom: 30px;
}
.single-category:last-child {
  margin-bottom: 0;
}
.single-category .section-title {
  margin-bottom: 24px;
  padding-bottom: 13px;
  border-bottom: 1px solid #e5e5e5;
}
.single-category .section-title > a {
  color: #191919;
}
.single-category .section-title > a:hover {
  color: #173583;
  color: var(--color-primary);
}

.single-category-list {
  -moz-column-count: 6;
       column-count: 6;
  -moz-column-gap: 40px;
       column-gap: 40px;
  -moz-column-fill: initial;
       column-fill: initial;
}
.single-category-list li {
  display: inline-block;
  width: 100%;
  padding: 2px 0;
}
.single-category-list li a {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  max-width: 100%;
  color: #6e6e6e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.single-category-list li a:hover {
  color: #173583;
  color: var(--color-primary);
}
.single-category-list .sub-category-list {
  margin-left: 10px;
  padding-top: 2px;
}
.single-category-list .sub-category-list li {
  padding: 1px 0;
}
.single-category-list .sub-category-list li a {
  font-size: 13px;
  font-weight: 400;
}

@media screen and (max-width: 1199px) {
  .single-category-list {
    -moz-column-count: 4;
         column-count: 4;
  }
}
@media screen and (max-width: 991px) {
  .single-category-list {
    -moz-column-count: 3;
         column-count: 3;
  }
}
@media screen and (max-width: 576px) {
  .single-category-list {
    -moz-column-count: 2;
         column-count: 2;
  }
}
.order-details-top {
  margin-bottom: 44px;
}

.order-information {
  display: inline-block;
}
.order-information h4 {
  margin-bottom: 18px;
}
.order-information .order-information-list li {
  display: flex;
  margin-bottom: 9px;
}
.order-information .order-information-list li:last-child {
  margin-bottom: 0;
}
.order-information .order-information-list label {
  font-weight: 500;
  min-width: 165px;
  margin-bottom: 0;
  padding-right: 10px;
}
.order-information .order-information-list span {
  color: #6e6e6e;
  word-break: break-all;
}

.order-billing-details h4,
.order-shipping-details h4 {
  margin-bottom: 18px;
}
.order-billing-details address > span,
.order-shipping-details address > span {
  display: block;
  margin-bottom: 9px;
  color: #6e6e6e;
}
.order-billing-details address > span:last-child,
.order-shipping-details address > span:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .order-details-top {
    margin-bottom: 39px;
  }
  .order-information {
    margin-bottom: 38px;
  }
}
@media screen and (max-width: 576px) {
  .order-billing-details {
    margin-bottom: 33px;
  }
}
.order-details-middle {
  margin-bottom: 25px;
}
.order-details-middle .table-responsive {
  border: 1px solid #ebebeb;
  border-radius: 2px;
}

.order-details-table tbody td:nth-child(2), .order-details-table tbody td:nth-child(4) {
  min-width: 170px;
}
.order-details-table .product-name {
  display: inline-block;
  color: #191919;
}
.order-details-table .product-name:hover {
  color: #173583;
  color: var(--color-primary);
}
.order-details-table .product-options {
  margin: 4px 0 1px;
}
.order-details-table .product-price {
  color: #191919;
}

@media screen and (min-width: 881px) {
  .order-details-table td > label {
    display: none;
  }
}
@media screen and (max-width: 880px) {
  .order-details-middle .table-responsive {
    padding-bottom: 4px;
  }
  .order-details-table thead {
    display: none;
  }
  .order-details-table tr:first-child td:nth-child(2), .order-details-table tr:first-child td:nth-child(3), .order-details-table tr:first-child td:nth-child(4) {
    padding-top: 2px;
  }
  .order-details-table tbody td {
    vertical-align: top;
    display: block;
  }
  .order-details-table tbody td:nth-child(1) {
    padding: 25px 30px 11px !important;
  }
  .order-details-table tbody td:nth-child(2), .order-details-table tbody td:nth-child(3) {
    padding: 2px 30px;
    white-space: nowrap;
  }
  .order-details-table tbody td:nth-child(4) {
    padding: 2px 30px 3px;
    white-space: nowrap;
  }
  .order-details-table td > label {
    width: 90px;
    min-width: 90px;
    margin-bottom: 0;
    padding-right: 5px;
    color: #6e6e6e;
    white-space: pre-wrap;
  }
  .order-details-table .product-price {
    display: inline-flex;
  }
}
@media screen and (max-width: 576px) {
  .order-details-table tbody td:nth-child(1) {
    padding: 25px 20px 11px !important;
  }
  .order-details-table tbody td:nth-child(2), .order-details-table tbody td:nth-child(3) {
    padding: 2px 20px;
  }
  .order-details-table tbody td:nth-child(4) {
    padding: 2px 20px 3px;
  }
}
.order-details-bottom {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
.order-details-bottom .order-summary-list {
  width: 300px;
}
.order-details-bottom .order-summary-list .price-amount {
  font-weight: 500;
}
.order-details-bottom .order-summary-total {
  width: 300px;
  margin-top: 24px;
  padding-bottom: 0;
}

@media screen and (max-width: 340px) {
  .order-details-bottom .order-summary-list,
  .order-details-bottom .order-summary-total {
    width: 100%;
  }
}
.order-details-wrap {
  margin: 50px 0;
}
.order-details-wrap .section-title {
  margin-bottom: 34px;
  padding-bottom: 13px;
  border-bottom: 1px solid #e5e5e5;
}

.error-page-left {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.error-page-left .section-title {
  margin-bottom: 26px;
  padding-bottom: 21px;
}
.error-page-left > p {
  width: 350px;
  margin-bottom: 44px;
  color: #6e6e6e;
}
.error-page-left .btn-back-to-home {
  align-self: flex-start;
  white-space: nowrap;
}

@media screen and (max-width: 991px) {
  .error-page-left {
    align-items: center;
    text-align: center;
  }
  .error-page-left .section-title {
    font-size: 28px;
    line-height: 36px;
    padding-bottom: 22px;
  }
  .error-page-left .section-title:after {
    right: 0;
    margin: 0 auto;
  }
  .error-page-left .btn-back-to-home {
    align-self: center;
  }
}
@media screen and (max-width: 380px) {
  .error-page-left > p {
    width: auto;
  }
}
.error-page-right .error-image {
  max-width: 100%;
}

@media screen and (max-width: 991px) {
  .error-page-right {
    margin-bottom: 43px;
    text-align: center;
  }
  .error-page-right .error-image {
    width: 400px;
  }
}
@media screen and (max-width: 500px) {
  .error-page-right .error-image {
    width: 80%;
  }
}
.error-page-wrap {
  margin-top: 70px;
  padding-bottom: 20px;
}

.error-page {
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .error-page {
    flex-direction: column-reverse;
  }
}
.custom-page-wrap {
  margin: 50px 0;
}

.custom-page-content h1, .custom-page-content h2, .custom-page-content h3, .custom-page-content h4, .custom-page-content h5, .custom-page-content h6 {
  margin-bottom: 14px;
}
.custom-page-content p {
  line-height: 23px;
  color: #6e6e6e;
}
.custom-page-content ul, .custom-page-content ol {
  padding-left: 16px;
  overflow: hidden;
}
.custom-page-content ul li, .custom-page-content ol li {
  margin-bottom: 9px;
  color: #6e6e6e;
}
.custom-page-content b, .custom-page-content strong, .custom-page-content em {
  font-weight: 500;
}
.custom-page-content a {
  color: #173583;
  color: var(--color-primary);
}
.custom-page-content a:hover {
  color: #173583;
  color: var(--color-primary-hover);
}
.custom-page-content img {
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.custom-page-content iframe {
  border: none;
  max-width: 100%;
}
.custom-page-content th {
  font-weight: 500;
}
.custom-page-content td {
  vertical-align: top;
}

[v-cloak] {
  display: none !important;
}

.card_field {
  height: 10px;
}

.whatsapp.bottom-right {
  right: 0;
}

.whatsapp-badge {
  position: fixed;
  bottom: 0;
  z-index: 200;
  margin: 10px;
  width: auto !important;
}

.whatsapp {
  clear: both;
  padding: 10px 0;
}

.whatsapp span {
  border-radius: 4px;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  padding: 6px 8px;
  display: inline-block;
  outline: none;
  cursor: pointer;
}

.whatsapp-icon {
  position: relative;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4CAMAAAAOusbgAAAAsVBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+3mHKcAAAAOnRSTlMA+wPs96LwyQ2be29MGLeoBpAcEvTEYDgqzyDh29iVf3bAi2VXRufTCrFALrs8MyXdhGpUFVDjiKxbh+2tSQAABqlJREFUaN7Fm3f7myAQx0/jjNn5mWX2Tpq9y/t/YX26BAQRkT79/Je2egFufI9LIT+N3nPqH/pR6Qshq/TazOzy8rSFf8ugYw8NxCP6BD34N2yX/gUJWdcXbdCMefQdJIFx6Ojc9db7haQp+d90HWzTQvk4dKE432wD5SesQDGqNlJkVsTJzcBByhhNDxQ59hEfx7Xf5WBxv3eC6dsPS4jPawkqNN6Iw1dtuq9Cgnb39uFar3sKvuwihk25a6Z7YRCyT1xOkJNniY3PY2a8T4fMSU9MyMMcJejf5V6wryWf/GxzeLPPhqV64LsPkMSrJY52D7noHRLPt0CKdkj78aQBealEdNn6JmV3Q0dEFRTw5gblmD2Jskut1wpAkf2ayiWDzLRBne+oQIV7UG8aZmycWUcEdqGibk4o3/bk4/cNBemQB70zRd5I2p1CYVaO3PsGRJ40lqCBLvnGY6pjkQ7dAS10v4hwTnOwJsIEoIkKcc414HIi/skVtPHdyNhGs0+kK9BImchgPMEfENHuaW0GiEzic/Qk9nzrBFp5vLBns4qbSFkL0MzRwILCTNZQQ+x759O3wYCsj6qC5g40Nt5oTiFZDn8HouoZbCO85MSC8ILLwDCJtYQJajxRDK2ifFwJ2f2c4qe+gyI7XKYoXYr7wafg2+Knskn3oRU3xjdsnFEKWznS6tzshHU4W5PoftFWbnex97ZxCcE5y+TvEX7qoX7KbJ4Ys3+W/Dt1ecCuLoyjzInX4zGJdp1sw0xQZBS/48wInnrq0WAqxavUlEloK1avMYZroMjASL4iLsRrdhuviOEMisziruh3kmobgmo5Zg03QRFc8Y+JzPQdRFGM96VwKE8Si6qKBCCmrSpF4hw4g5+EcX0QuiKbr9XTpvPre8TKdwwsS6QvnuAWv2Pw08vjTzdgqTJ2bVBmT335VXoU4/qBcQt0kFWqX1jEn1rA4Z3ImFUogEOG5DUOa34Fpy+7zlAEN+5ZyWjapOYbbcrXJgvUBwdXds9csHcdk5F7yMr+LsKEoALrMGsyf9TTKrihrW0ukxnETZQIcb52sNwvUiYsXBRx1RHrzJmyAiFD15BaMdwRQVnXimdULszebKOi6YxrOKhT8S7kMfe0eDWO44O4w8VcWsXjmP4gYEJdTLaKFuQZue+W+CJDg2XsyB9KwAoLTzuiihTnnFc1eyVbneZUdT6KpZpDzbwY3+5aP/v97w3RlAZrjkR1FrKi27c5baL6+jM6DzyxAsGaoyQrahaJiVCX9IEZrtnldqawblEFd5Qd/xSG3+bLYOf6EHeqJfoZI1PWTJLTt6mH9SPJ15zzLtOhU8adqXnZlrHpyQMfP2V6wdbXRLv4SO1SpQS+Zd+nFm/uaqY/+8c7NvHZmBKVzUKSMC9zk3aauZqEfUlsLzURnvFchAmvD0hwHkkZ7qe32gHTxVlSjaBXlzFsJ306iqMnzvR+3lFEx8kyyyph3CodOKksaoAUrV2WXSO5eQde/z/KL1+fGSc9Tg3iry3vfnYkLSLNRSSwu0mWihr38B+WimI3l2Gq3aRSOCE6e7DutfZy3afM1zy7OyY6Quxaicsv1VmXWaknc9m6I7qn26fOJHKr1+29Tk4Qyx6rm3C2C9Nvh12FJqVxnBxeyLjsynve0z5Kv+8Ya2lSMlvsmWg3IlAkeyxt9EQ1fgxaabiEQhROK46gB1aORR7HNWPHfJmgB1aOPYV3h03QSQdljKU/TErTNKnPGEt71j/x6QqRWaxv3Ek+1/G0/gJlkTGO0jguLyekkHCnh6CLrU8NbxoZvncFTZz7ot8YsfrgG+jhTunB4SOl3TfSOsbWrQcKVGkFHLUyO98Jld2DEP+GtsBvdkfYbqr0xOs7XTd/v28nXxJdbRBFmNomPIzEZbl5bEbUV17Km664SQG2FeZxvNONis/2ZZdpW6oELvuMwDYlpo3o7C3rKe3Jl7/KWvaR/cbOUuSCRvzynbD7LY2fqev2VvMLZyp3FldMeQx3/r1nMv9X5BoaiEOzkTHXzYk1nNnzyfR2m76bfm1opLUTGVKmZSCdyP9mNxA9fbAU7dpV2StVlpJ996DVVDBt7CSK64D/7Gv8tycYNJ2cLuBLDQKniGX07lKhEozkzQ4nODPn2+l+mVOQTk3cjwojvStdr+nDmQWDtJLTvfbFB9tvVhpKusiqLR4ZZfY5D7kH7rjj+wPkIQZtX/WlZN1trW5Xu+b2L9HrMnRr9nyxryooo7+BswXNZN8DR3720ejncz3B/+AHfAHoi1N9tksAAAAASUVORK5CYII=);
  background-repeat: no-repeat;
  display: inline-block;
  height: 18px;
  width: 18px;
  top: -1px;
  vertical-align: middle;
  background-size: contain;
}

.la-language ~ .nice-select,
.la-money-bill ~ .nice-select {
  line-height: normal;
}

.top-nav-right {
  display: flex;
}

@media screen and (max-width: 640px) {
  .top-nav-right {
    display: block;
  }
  .top-nav-right-list {
    margin-bottom: 10px;
  }
  .top-nav-right .compare,
  .top-nav-right .phone {
    display: none !important;
  }
}
.btn-add-to-cart:disabled {
  cursor: not-allowed;
  background-color: #999;
}

.btn-add-to-cart:disabled:hover {
  background-color: #AAA;
}

#meta-exta {
  display: none;
}

.product-details-info .product-variants .custom-selection > li.disabled {
  opacity: 0.35;
}

/* HTML: <div class="loader"></div> */
.loader {
  height: 15px;
  aspect-ratio: 5;
  --_g:no-repeat radial-gradient(farthest-side,#000 94%,#0000);
  background: var(--_g), var(--_g), var(--_g), var(--_g);
  background-size: 20% 100%;
  animation: l40-1 0.75s infinite alternate, l40-2 1.5s infinite alternate;
}

@keyframes l40-1 {
  0%, 10% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  33% {
    background-position: 0 0, 33.3333333333% 0, 33.3333333333% 0, 33.3333333333% 0;
  }
  66% {
    background-position: 0 0, 33.3333333333% 0, 66.6666666667% 0, 66.6666666667% 0;
  }
  90%, 100% {
    background-position: 0 0, 33.3333333333% 0, 66.6666666667% 0, 100% 0;
  }
}
@keyframes l40-2 {
  0%, 49.99% {
    transform: scale(1);
  }
  50%, 100% {
    transform: scale(-1);
  }
}
.product-image {
  background-color: white;
}

.product-image img {
  -o-object-fit: contain;
     object-fit: contain;
}