@charset "UTF-8";
@font-face {
  font-family: "Roboto";
  src: local("Roboto"), url("../webfonts/Roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: local("Roboto"), url("../webfonts/Roboto/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: local("Roboto-Bold"), url("../webfonts/Roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: local("Roboto-Black"), url("../webfonts/Roboto/Roboto-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Condensed";
  src: local("Roboto Condendensed"), url("../webfonts/Roboto_Condensed/RobotoCondensed-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Condensed";
  src: local("Roboto Condensed"), url("../webfonts/Roboto_Condensed/RobotoCondensed-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
#country {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #e5e5e5;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/** to css-var */
:root {
  --color-primary: #ecad66;
  --page-wrapper-container-bg: var(--color-primary);
  --main-container-bg: white;
  --catalog-category-page-title-text-shadow: 0.05em 0.05em #333;
  /*
   * Footer
   */
  --footer-link-color-hover: var(--color-primary);
  --footer-link-color: white;
  --footer-heading-color: var(--color-primary);
  --footer-border-color: #f2f2f2;
  /*
   * Catalog Widget
   */
  --catalog-widget-product-list-font-size: 1.5rem;
}

/*!
 * Bootstrap Grid v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.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: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1500px) {
  .container {
    max-width: 1440px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1500px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
.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: 992px) {
  .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: 1200px) {
  .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: 1500px) {
  .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;
  }
}
.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: 992px) {
  .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: 1200px) {
  .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: 1500px) {
  .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;
  }
}
.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: 992px) {
  .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: 1200px) {
  .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: 1500px) {
  .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;
  }
}
/*!
 * Bootstrap Reboot v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */
*,
*::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: 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: #222222;
  text-align: left;
  background-color: #fff;
}

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

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

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

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

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  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: 900;
}

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: #ECAD66;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #ECAD66;
  text-decoration: underline;
}

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

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

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

figure {
  margin: 0 0 1rem;
}

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

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

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #586067;
  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;
}

/*!
 * Bootstrap v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #586067;
  --gray-dark: #343a40;
  --primary: #ECAD66;
  --secondary: #586067;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #6A6A6A;
  --light: #f0f0f0;
  --dark: #222222;
  --primary-light: rgb(238.8168604651, 185.1569767442, 124.6831395349);
  --primary-light2: rgb(241.6337209302, 197.3139534884, 147.3662790698);
  --primary-dark: rgb(233.1831395349, 160.8430232558, 79.3168604651);
  --primary-darker: rgb(230.3662790698, 148.6860465116, 56.6337209302);
  --accent: #6A6A6A;
  --accent-dark: rgb(67.75, 67.75, 67.75);
  --lightgrey: #f2f2f2;
  --lightgrey2: #e7e7e7;
  --lightgrey3: #adb0b2;
  --grey: #393939;
  --w-trans: rgba(255, 255, 255, 0.15);
  --blue-grey: #586067;
  --error: #6A6A6A;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 992px;
  --breakpoint-lg: 1200px;
  --breakpoint-xl: 1500px;
  --font-family-sans-serif: 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: 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: #222222;
  text-align: left;
  background-color: #fff;
}

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

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

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

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

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  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: 900;
}

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: #ECAD66;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #ECAD66;
  text-decoration: underline;
}

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

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

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

figure {
  margin: 0 0 1rem;
}

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

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

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #586067;
  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: #586067;
}
.blockquote-footer::before {
  content: "— ";
}

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

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

.figure {
  display: inline-block;
}

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

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

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

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

pre {
  display: block;
  font-size: 87.5%;
  color: #222222;
}
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: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1500px) {
  .container {
    max-width: 1440px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1500px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #222222;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #e5e5e5;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #e5e5e5;
}
.table tbody + tbody {
  border-top: 2px solid #e5e5e5;
}

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

.table-bordered {
  border: 1px solid #e5e5e5;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #e5e5e5;
}
.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: #222222;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: rgb(249.68, 232.04, 212.16);
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: rgb(245.12, 212.36, 175.44);
}

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

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: rgb(208.24, 210.48, 212.44);
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: rgb(168.16, 172.32, 175.96);
}

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

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

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

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

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

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

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

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: rgb(213.28, 213.28, 213.28);
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: rgb(177.52, 177.52, 177.52);
}

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

.table-light,
.table-light > th,
.table-light > td {
  background-color: rgb(250.8, 250.8, 250.8);
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: rgb(247.2, 247.2, 247.2);
}

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

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: rgb(193.12, 193.12, 193.12);
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: rgb(140.08, 140.08, 140.08);
}

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

.table-primary-light,
.table-primary-light > th,
.table-primary-light > td {
  background-color: rgb(250.4687209302, 235.4439534884, 218.5112790698);
}
.table-primary-light th,
.table-primary-light td,
.table-primary-light thead th,
.table-primary-light tbody + tbody {
  border-color: rgb(246.5847674419, 218.681627907, 187.2352325581);
}

.table-hover .table-primary-light:hover {
  background-color: rgb(247.6518604651, 223.2869767442, 195.8281395349);
}
.table-hover .table-primary-light:hover > td,
.table-hover .table-primary-light:hover > th {
  background-color: rgb(247.6518604651, 223.2869767442, 195.8281395349);
}

.table-primary-light2,
.table-primary-light2 > th,
.table-primary-light2 > td {
  background-color: rgb(251.2574418605, 238.8479069767, 224.8625581395);
}
.table-primary-light2 th,
.table-primary-light2 td,
.table-primary-light2 thead th,
.table-primary-light2 tbody + tbody {
  border-color: rgb(248.0495348837, 225.003255814, 199.0304651163);
}

.table-hover .table-primary-light2:hover {
  background-color: rgb(248.4405813953, 226.6909302326, 202.1794186047);
}
.table-hover .table-primary-light2:hover > td,
.table-hover .table-primary-light2:hover > th {
  background-color: rgb(248.4405813953, 226.6909302326, 202.1794186047);
}

.table-primary-dark,
.table-primary-dark > th,
.table-primary-dark > td {
  background-color: rgb(248.8912790698, 228.6360465116, 205.8087209302);
}
.table-primary-dark th,
.table-primary-dark td,
.table-primary-dark thead th,
.table-primary-dark tbody + tbody {
  border-color: rgb(243.6552325581, 206.038372093, 163.6447674419);
}

.table-hover .table-primary-dark:hover {
  background-color: rgb(246.0744186047, 216.4790697674, 183.1255813953);
}
.table-hover .table-primary-dark:hover > td,
.table-hover .table-primary-dark:hover > th {
  background-color: rgb(246.0744186047, 216.4790697674, 183.1255813953);
}

.table-primary-darker,
.table-primary-darker > th,
.table-primary-darker > td {
  background-color: rgb(248.1025581395, 225.2320930233, 199.4574418605);
}
.table-primary-darker th,
.table-primary-darker td,
.table-primary-darker thead th,
.table-primary-darker tbody + tbody {
  border-color: rgb(242.1904651163, 199.716744186, 151.8495348837);
}

.table-hover .table-primary-darker:hover {
  background-color: rgb(245.2856976744, 213.0751162791, 176.7743023256);
}
.table-hover .table-primary-darker:hover > td,
.table-hover .table-primary-darker:hover > th {
  background-color: rgb(245.2856976744, 213.0751162791, 176.7743023256);
}

.table-accent,
.table-accent > th,
.table-accent > td {
  background-color: rgb(213.28, 213.28, 213.28);
}
.table-accent th,
.table-accent td,
.table-accent thead th,
.table-accent tbody + tbody {
  border-color: rgb(177.52, 177.52, 177.52);
}

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

.table-accent-dark,
.table-accent-dark > th,
.table-accent-dark > td {
  background-color: rgb(202.57, 202.57, 202.57);
}
.table-accent-dark th,
.table-accent-dark td,
.table-accent-dark thead th,
.table-accent-dark tbody + tbody {
  border-color: rgb(157.63, 157.63, 157.63);
}

.table-hover .table-accent-dark:hover {
  background-color: rgb(189.82, 189.82, 189.82);
}
.table-hover .table-accent-dark:hover > td,
.table-hover .table-accent-dark:hover > th {
  background-color: rgb(189.82, 189.82, 189.82);
}

.table-lightgrey,
.table-lightgrey > th,
.table-lightgrey > td {
  background-color: rgb(251.36, 251.36, 251.36);
}
.table-lightgrey th,
.table-lightgrey td,
.table-lightgrey thead th,
.table-lightgrey tbody + tbody {
  border-color: rgb(248.24, 248.24, 248.24);
}

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

.table-lightgrey2,
.table-lightgrey2 > th,
.table-lightgrey2 > td {
  background-color: rgb(248.28, 248.28, 248.28);
}
.table-lightgrey2 th,
.table-lightgrey2 td,
.table-lightgrey2 thead th,
.table-lightgrey2 tbody + tbody {
  border-color: rgb(242.52, 242.52, 242.52);
}

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

.table-lightgrey3,
.table-lightgrey3 > th,
.table-lightgrey3 > td {
  background-color: rgb(232.04, 232.88, 233.44);
}
.table-lightgrey3 th,
.table-lightgrey3 td,
.table-lightgrey3 thead th,
.table-lightgrey3 tbody + tbody {
  border-color: rgb(212.36, 213.92, 214.96);
}

.table-hover .table-lightgrey3:hover {
  background-color: rgb(218.8890566038, 220.2101886792, 221.0909433962);
}
.table-hover .table-lightgrey3:hover > td,
.table-hover .table-lightgrey3:hover > th {
  background-color: rgb(218.8890566038, 220.2101886792, 221.0909433962);
}

.table-grey,
.table-grey > th,
.table-grey > td {
  background-color: rgb(199.56, 199.56, 199.56);
}
.table-grey th,
.table-grey td,
.table-grey thead th,
.table-grey tbody + tbody {
  border-color: rgb(152.04, 152.04, 152.04);
}

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

.table-w-trans,
.table-w-trans > th,
.table-w-trans > td {
  background-color: rgba(255, 255, 255, 0.762);
}
.table-w-trans th,
.table-w-trans td,
.table-w-trans thead th,
.table-w-trans tbody + tbody {
  border-color: rgba(255, 255, 255, 0.558);
}

.table-hover .table-w-trans:hover {
  background-color: rgba(242.25, 242.25, 242.25, 0.762);
}
.table-hover .table-w-trans:hover > td,
.table-hover .table-w-trans:hover > th {
  background-color: rgba(242.25, 242.25, 242.25, 0.762);
}

.table-blue-grey,
.table-blue-grey > th,
.table-blue-grey > td {
  background-color: rgb(208.24, 210.48, 212.44);
}
.table-blue-grey th,
.table-blue-grey td,
.table-blue-grey thead th,
.table-blue-grey tbody + tbody {
  border-color: rgb(168.16, 172.32, 175.96);
}

.table-hover .table-blue-grey:hover {
  background-color: rgb(194.8904702194, 197.769968652, 200.2895297806);
}
.table-hover .table-blue-grey:hover > td,
.table-hover .table-blue-grey:hover > th {
  background-color: rgb(194.8904702194, 197.769968652, 200.2895297806);
}

.table-error,
.table-error > th,
.table-error > td {
  background-color: rgb(213.28, 213.28, 213.28);
}
.table-error th,
.table-error td,
.table-error thead th,
.table-error tbody + tbody {
  border-color: rgb(177.52, 177.52, 177.52);
}

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

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

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

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: rgb(69.1465517241, 77.125, 85.1034482759);
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #e5e5e5;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: rgb(69.1465517241, 77.125, 85.1034482759);
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.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: 1199.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: 1499.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #e5e5e5;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: rgba(63.75, 63.75, 63.75, 0);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}
.form-control::placeholder {
  color: #adb5bd;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

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

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

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

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

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

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

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

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

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

textarea.form-control {
  height: auto;
}

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

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

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

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

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

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

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

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

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

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

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #28a745;
}
.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: rgb(51.6956521739, 206.3043478261, 87);
  background-color: rgb(51.6956521739, 206.3043478261, 87);
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

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

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

.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(106, 106, 106, 0.9);
  border-radius: 0.25rem;
}

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

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

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

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

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #6A6A6A;
}
.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: #6A6A6A;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #6A6A6A;
}
.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: rgb(131.5, 131.5, 131.5);
  background-color: rgb(131.5, 131.5, 131.5);
}
.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(106, 106, 106, 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: #6A6A6A;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #6A6A6A;
}
.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #6A6A6A;
  box-shadow: 0 0 0 0.2rem rgba(106, 106, 106, 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, .modal-popup button, button, .primary button, .checkout-index-index .action.edit-address-link {
  display: inline-block;
  font-weight: 400;
  color: #222222;
  text-align: center;
  vertical-align: middle;
  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, .modal-popup button, button, .primary button, .checkout-index-index .action.edit-address-link {
    transition: none;
  }
}
.btn:hover, button:hover, .checkout-index-index .action.edit-address-link:hover {
  color: #222222;
  text-decoration: none;
}
.btn:focus, button:focus, .checkout-index-index .action.edit-address-link:focus, .btn.focus, button.focus, .checkout-index-index .focus.action.edit-address-link {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}
.btn.disabled, button.disabled, .checkout-index-index .disabled.action.edit-address-link, .btn:disabled, button:disabled, .checkout-index-index .action.edit-address-link:disabled {
  opacity: 0.65;
}
a.btn.disabled, .checkout-index-index a.disabled.action.edit-address-link,
fieldset:disabled a.btn,
fieldset:disabled .checkout-index-index a.action.edit-address-link,
.checkout-index-index fieldset:disabled a.action.edit-address-link {
  pointer-events: none;
}

.btn-primary, button, .primary button {
  color: #222222;
  background-color: #ECAD66;
  border-color: #ECAD66;
}
.btn-primary:hover, button:hover {
  color: #222222;
  background-color: rgb(231.7747093023, 154.7645348837, 67.9752906977);
  border-color: rgb(230.3662790698, 148.6860465116, 56.6337209302);
}
.btn-primary:focus, button:focus, .btn-primary.focus, button.focus {
  box-shadow: 0 0 0 0.2rem rgba(205.7, 152.15, 91.8, 0.5);
}
.btn-primary.disabled, button.disabled, .btn-primary:disabled, button:disabled {
  color: #222222;
  background-color: #ECAD66;
  border-color: #ECAD66;
}
.btn-primary:not(:disabled):not(.disabled):active, button:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, button:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle, .show > button.dropdown-toggle {
  color: #222222;
  background-color: rgb(230.3662790698, 148.6860465116, 56.6337209302);
  border-color: rgb(228.9578488372, 142.6075581395, 45.2921511628);
}
.btn-primary:not(:disabled):not(.disabled):active:focus, button:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, button:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus, .show > button.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(205.7, 152.15, 91.8, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #586067;
  border-color: #586067;
}
.btn-secondary:hover {
  color: #fff;
  background-color: rgb(70.3769633508, 76.7748691099, 82.3730366492);
  border-color: rgb(64.502617801, 70.3664921466, 75.497382199);
}
.btn-secondary:focus, .btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(113.05, 119.85, 125.8, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #586067;
  border-color: #586067;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: rgb(64.502617801, 70.3664921466, 75.497382199);
  border-color: rgb(58.6282722513, 63.9581151832, 68.6217277487);
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(113.05, 119.85, 125.8, 0.5);
}

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

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

.btn-warning {
  color: #222222;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #222222;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
}
.btn-warning:focus, .btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(221.85, 169.15, 11.05, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #222222;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #222222;
  background-color: rgb(211, 158.25, 0);
  border-color: rgb(198.25, 148.6875, 0);
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(221.85, 169.15, 11.05, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #6A6A6A;
  border-color: #6A6A6A;
}
.btn-danger:hover {
  color: #fff;
  background-color: rgb(86.875, 86.875, 86.875);
  border-color: rgb(80.5, 80.5, 80.5);
}
.btn-danger:focus, .btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(128.35, 128.35, 128.35, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #6A6A6A;
  border-color: #6A6A6A;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: rgb(80.5, 80.5, 80.5);
  border-color: rgb(74.125, 74.125, 74.125);
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(128.35, 128.35, 128.35, 0.5);
}

.btn-light {
  color: #222222;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}
.btn-light:hover {
  color: #222222;
  background-color: rgb(220.875, 220.875, 220.875);
  border-color: rgb(214.5, 214.5, 214.5);
}
.btn-light:focus, .btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(209.1, 209.1, 209.1, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #222222;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #222222;
  background-color: rgb(214.5, 214.5, 214.5);
  border-color: rgb(208.125, 208.125, 208.125);
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(209.1, 209.1, 209.1, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #222222;
  border-color: #222222;
}
.btn-dark:hover {
  color: #fff;
  background-color: rgb(14.875, 14.875, 14.875);
  border-color: rgb(8.5, 8.5, 8.5);
}
.btn-dark:focus, .btn-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(67.15, 67.15, 67.15, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #222222;
  border-color: #222222;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: rgb(8.5, 8.5, 8.5);
  border-color: rgb(2.125, 2.125, 2.125);
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(67.15, 67.15, 67.15, 0.5);
}

.btn-primary-light {
  color: #222222;
  background-color: rgb(238.8168604651, 185.1569767442, 124.6831395349);
  border-color: rgb(238.8168604651, 185.1569767442, 124.6831395349);
}
.btn-primary-light:hover {
  color: #222222;
  background-color: rgb(234.5915697674, 166.9215116279, 90.6584302326);
  border-color: rgb(233.1831395349, 160.8430232558, 79.3168604651);
}
.btn-primary-light:focus, .btn-primary-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(208.0943313953, 162.4834302326, 111.0806686047, 0.5);
}
.btn-primary-light.disabled, .btn-primary-light:disabled {
  color: #222222;
  background-color: rgb(238.8168604651, 185.1569767442, 124.6831395349);
  border-color: rgb(238.8168604651, 185.1569767442, 124.6831395349);
}
.btn-primary-light:not(:disabled):not(.disabled):active, .btn-primary-light:not(:disabled):not(.disabled).active, .show > .btn-primary-light.dropdown-toggle {
  color: #222222;
  background-color: rgb(233.1831395349, 160.8430232558, 79.3168604651);
  border-color: rgb(231.7747093023, 154.7645348837, 67.9752906977);
}
.btn-primary-light:not(:disabled):not(.disabled):active:focus, .btn-primary-light:not(:disabled):not(.disabled).active:focus, .show > .btn-primary-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(208.0943313953, 162.4834302326, 111.0806686047, 0.5);
}

.btn-primary-light2 {
  color: #222222;
  background-color: rgb(241.6337209302, 197.3139534884, 147.3662790698);
  border-color: rgb(241.6337209302, 197.3139534884, 147.3662790698);
}
.btn-primary-light2:hover {
  color: #222222;
  background-color: rgb(237.4084302326, 179.0784883721, 113.3415697674);
  border-color: #ecad66;
}
.btn-primary-light2:focus, .btn-primary-light2.focus {
  box-shadow: 0 0 0 0.2rem rgba(210.4886627907, 172.8168604651, 130.3613372093, 0.5);
}
.btn-primary-light2.disabled, .btn-primary-light2:disabled {
  color: #222222;
  background-color: rgb(241.6337209302, 197.3139534884, 147.3662790698);
  border-color: rgb(241.6337209302, 197.3139534884, 147.3662790698);
}
.btn-primary-light2:not(:disabled):not(.disabled):active, .btn-primary-light2:not(:disabled):not(.disabled).active, .show > .btn-primary-light2.dropdown-toggle {
  color: #222222;
  background-color: #ecad66;
  border-color: rgb(234.5915697674, 166.9215116279, 90.6584302326);
}
.btn-primary-light2:not(:disabled):not(.disabled):active:focus, .btn-primary-light2:not(:disabled):not(.disabled).active:focus, .show > .btn-primary-light2.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(210.4886627907, 172.8168604651, 130.3613372093, 0.5);
}

.btn-primary-dark {
  color: #222222;
  background-color: rgb(233.1831395349, 160.8430232558, 79.3168604651);
  border-color: rgb(233.1831395349, 160.8430232558, 79.3168604651);
}
.btn-primary-dark:hover {
  color: #222222;
  background-color: rgb(228.9578488372, 142.6075581395, 45.2921511628);
  border-color: rgb(227.5494186047, 136.5290697674, 33.9505813953);
}
.btn-primary-dark:focus, .btn-primary-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(203.3056686047, 141.8165697674, 72.5193313953, 0.5);
}
.btn-primary-dark.disabled, .btn-primary-dark:disabled {
  color: #222222;
  background-color: rgb(233.1831395349, 160.8430232558, 79.3168604651);
  border-color: rgb(233.1831395349, 160.8430232558, 79.3168604651);
}
.btn-primary-dark:not(:disabled):not(.disabled):active, .btn-primary-dark:not(:disabled):not(.disabled).active, .show > .btn-primary-dark.dropdown-toggle {
  color: #222222;
  background-color: rgb(227.5494186047, 136.5290697674, 33.9505813953);
  border-color: rgb(221.2718023256, 130.1598837209, 27.4781976744);
}
.btn-primary-dark:not(:disabled):not(.disabled):active:focus, .btn-primary-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-primary-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(203.3056686047, 141.8165697674, 72.5193313953, 0.5);
}

.btn-primary-darker {
  color: #222222;
  background-color: rgb(230.3662790698, 148.6860465116, 56.6337209302);
  border-color: rgb(230.3662790698, 148.6860465116, 56.6337209302);
}
.btn-primary-darker:hover {
  color: #fff;
  background-color: rgb(221.2718023256, 130.1598837209, 27.4781976744);
  border-color: rgb(209.9302325581, 123.488372093, 26.0697674419);
}
.btn-primary-darker:focus, .btn-primary-darker.focus {
  box-shadow: 0 0 0 0.2rem rgba(200.9113372093, 131.4831395349, 53.2386627907, 0.5);
}
.btn-primary-darker.disabled, .btn-primary-darker:disabled {
  color: #222222;
  background-color: rgb(230.3662790698, 148.6860465116, 56.6337209302);
  border-color: rgb(230.3662790698, 148.6860465116, 56.6337209302);
}
.btn-primary-darker:not(:disabled):not(.disabled):active, .btn-primary-darker:not(:disabled):not(.disabled).active, .show > .btn-primary-darker.dropdown-toggle {
  color: #fff;
  background-color: rgb(209.9302325581, 123.488372093, 26.0697674419);
  border-color: rgb(198.5886627907, 116.8168604651, 24.6613372093);
}
.btn-primary-darker:not(:disabled):not(.disabled):active:focus, .btn-primary-darker:not(:disabled):not(.disabled).active:focus, .show > .btn-primary-darker.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(200.9113372093, 131.4831395349, 53.2386627907, 0.5);
}

.btn-accent {
  color: #fff;
  background-color: #6A6A6A;
  border-color: #6A6A6A;
}
.btn-accent:hover {
  color: #fff;
  background-color: rgb(86.875, 86.875, 86.875);
  border-color: rgb(80.5, 80.5, 80.5);
}
.btn-accent:focus, .btn-accent.focus {
  box-shadow: 0 0 0 0.2rem rgba(128.35, 128.35, 128.35, 0.5);
}
.btn-accent.disabled, .btn-accent:disabled {
  color: #fff;
  background-color: #6A6A6A;
  border-color: #6A6A6A;
}
.btn-accent:not(:disabled):not(.disabled):active, .btn-accent:not(:disabled):not(.disabled).active, .show > .btn-accent.dropdown-toggle {
  color: #fff;
  background-color: rgb(80.5, 80.5, 80.5);
  border-color: rgb(74.125, 74.125, 74.125);
}
.btn-accent:not(:disabled):not(.disabled):active:focus, .btn-accent:not(:disabled):not(.disabled).active:focus, .show > .btn-accent.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(128.35, 128.35, 128.35, 0.5);
}

.btn-accent-dark {
  color: #fff;
  background-color: rgb(67.75, 67.75, 67.75);
  border-color: rgb(67.75, 67.75, 67.75);
}
.btn-accent-dark:hover {
  color: #fff;
  background-color: rgb(48.625, 48.625, 48.625);
  border-color: rgb(42.25, 42.25, 42.25);
}
.btn-accent-dark:focus, .btn-accent-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(95.8375, 95.8375, 95.8375, 0.5);
}
.btn-accent-dark.disabled, .btn-accent-dark:disabled {
  color: #fff;
  background-color: rgb(67.75, 67.75, 67.75);
  border-color: rgb(67.75, 67.75, 67.75);
}
.btn-accent-dark:not(:disabled):not(.disabled):active, .btn-accent-dark:not(:disabled):not(.disabled).active, .show > .btn-accent-dark.dropdown-toggle {
  color: #fff;
  background-color: rgb(42.25, 42.25, 42.25);
  border-color: rgb(35.875, 35.875, 35.875);
}
.btn-accent-dark:not(:disabled):not(.disabled):active:focus, .btn-accent-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-accent-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(95.8375, 95.8375, 95.8375, 0.5);
}

.btn-lightgrey {
  color: #222222;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}
.btn-lightgrey:hover {
  color: #222222;
  background-color: rgb(222.875, 222.875, 222.875);
  border-color: rgb(216.5, 216.5, 216.5);
}
.btn-lightgrey:focus, .btn-lightgrey.focus {
  box-shadow: 0 0 0 0.2rem rgba(210.8, 210.8, 210.8, 0.5);
}
.btn-lightgrey.disabled, .btn-lightgrey:disabled {
  color: #222222;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}
.btn-lightgrey:not(:disabled):not(.disabled):active, .btn-lightgrey:not(:disabled):not(.disabled).active, .show > .btn-lightgrey.dropdown-toggle {
  color: #222222;
  background-color: rgb(216.5, 216.5, 216.5);
  border-color: rgb(210.125, 210.125, 210.125);
}
.btn-lightgrey:not(:disabled):not(.disabled):active:focus, .btn-lightgrey:not(:disabled):not(.disabled).active:focus, .show > .btn-lightgrey.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(210.8, 210.8, 210.8, 0.5);
}

.btn-lightgrey2 {
  color: #222222;
  background-color: #e7e7e7;
  border-color: #e7e7e7;
}
.btn-lightgrey2:hover {
  color: #222222;
  background-color: rgb(211.875, 211.875, 211.875);
  border-color: rgb(205.5, 205.5, 205.5);
}
.btn-lightgrey2:focus, .btn-lightgrey2.focus {
  box-shadow: 0 0 0 0.2rem rgba(201.45, 201.45, 201.45, 0.5);
}
.btn-lightgrey2.disabled, .btn-lightgrey2:disabled {
  color: #222222;
  background-color: #e7e7e7;
  border-color: #e7e7e7;
}
.btn-lightgrey2:not(:disabled):not(.disabled):active, .btn-lightgrey2:not(:disabled):not(.disabled).active, .show > .btn-lightgrey2.dropdown-toggle {
  color: #222222;
  background-color: rgb(205.5, 205.5, 205.5);
  border-color: rgb(199.125, 199.125, 199.125);
}
.btn-lightgrey2:not(:disabled):not(.disabled):active:focus, .btn-lightgrey2:not(:disabled):not(.disabled).active:focus, .show > .btn-lightgrey2.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(201.45, 201.45, 201.45, 0.5);
}

.btn-lightgrey3 {
  color: #222222;
  background-color: #adb0b2;
  border-color: #adb0b2;
}
.btn-lightgrey3:hover {
  color: #222222;
  background-color: rgb(153.2735849057, 156.9952830189, 159.4764150943);
  border-color: rgb(146.6981132075, 150.6603773585, 153.3018867925);
}
.btn-lightgrey3:focus, .btn-lightgrey3.focus {
  box-shadow: 0 0 0 0.2rem rgba(152.15, 154.7, 156.4, 0.5);
}
.btn-lightgrey3.disabled, .btn-lightgrey3:disabled {
  color: #222222;
  background-color: #adb0b2;
  border-color: #adb0b2;
}
.btn-lightgrey3:not(:disabled):not(.disabled):active, .btn-lightgrey3:not(:disabled):not(.disabled).active, .show > .btn-lightgrey3.dropdown-toggle {
  color: #222222;
  background-color: rgb(146.6981132075, 150.6603773585, 153.3018867925);
  border-color: rgb(140.1226415094, 144.3254716981, 147.1273584906);
}
.btn-lightgrey3:not(:disabled):not(.disabled):active:focus, .btn-lightgrey3:not(:disabled):not(.disabled).active:focus, .show > .btn-lightgrey3.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(152.15, 154.7, 156.4, 0.5);
}

.btn-grey {
  color: #fff;
  background-color: #393939;
  border-color: #393939;
}
.btn-grey:hover {
  color: #fff;
  background-color: rgb(37.875, 37.875, 37.875);
  border-color: rgb(31.5, 31.5, 31.5);
}
.btn-grey:focus, .btn-grey.focus {
  box-shadow: 0 0 0 0.2rem rgba(86.7, 86.7, 86.7, 0.5);
}
.btn-grey.disabled, .btn-grey:disabled {
  color: #fff;
  background-color: #393939;
  border-color: #393939;
}
.btn-grey:not(:disabled):not(.disabled):active, .btn-grey:not(:disabled):not(.disabled).active, .show > .btn-grey.dropdown-toggle {
  color: #fff;
  background-color: rgb(31.5, 31.5, 31.5);
  border-color: rgb(25.125, 25.125, 25.125);
}
.btn-grey:not(:disabled):not(.disabled):active:focus, .btn-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-grey.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(86.7, 86.7, 86.7, 0.5);
}

.btn-w-trans {
  color: #222222;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
}
.btn-w-trans:hover {
  color: #222222;
  background-color: rgba(235.875, 235.875, 235.875, 0.15);
  border-color: rgba(229.5, 229.5, 229.5, 0.15);
}
.btn-w-trans:focus, .btn-w-trans.focus {
  box-shadow: 0 0 0 0.2rem rgba(103.5740740741, 103.5740740741, 103.5740740741, 0.5);
}
.btn-w-trans.disabled, .btn-w-trans:disabled {
  color: #222222;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
}
.btn-w-trans:not(:disabled):not(.disabled):active, .btn-w-trans:not(:disabled):not(.disabled).active, .show > .btn-w-trans.dropdown-toggle {
  color: #222222;
  background-color: rgba(229.5, 229.5, 229.5, 0.15);
  border-color: rgba(223.125, 223.125, 223.125, 0.15);
}
.btn-w-trans:not(:disabled):not(.disabled):active:focus, .btn-w-trans:not(:disabled):not(.disabled).active:focus, .show > .btn-w-trans.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(103.5740740741, 103.5740740741, 103.5740740741, 0.5);
}

.btn-blue-grey {
  color: #fff;
  background-color: #586067;
  border-color: #586067;
}
.btn-blue-grey:hover {
  color: #fff;
  background-color: rgb(70.3769633508, 76.7748691099, 82.3730366492);
  border-color: rgb(64.502617801, 70.3664921466, 75.497382199);
}
.btn-blue-grey:focus, .btn-blue-grey.focus {
  box-shadow: 0 0 0 0.2rem rgba(113.05, 119.85, 125.8, 0.5);
}
.btn-blue-grey.disabled, .btn-blue-grey:disabled {
  color: #fff;
  background-color: #586067;
  border-color: #586067;
}
.btn-blue-grey:not(:disabled):not(.disabled):active, .btn-blue-grey:not(:disabled):not(.disabled).active, .show > .btn-blue-grey.dropdown-toggle {
  color: #fff;
  background-color: rgb(64.502617801, 70.3664921466, 75.497382199);
  border-color: rgb(58.6282722513, 63.9581151832, 68.6217277487);
}
.btn-blue-grey:not(:disabled):not(.disabled):active:focus, .btn-blue-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-blue-grey.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(113.05, 119.85, 125.8, 0.5);
}

.btn-error {
  color: #fff;
  background-color: #6A6A6A;
  border-color: #6A6A6A;
}
.btn-error:hover {
  color: #fff;
  background-color: rgb(86.875, 86.875, 86.875);
  border-color: rgb(80.5, 80.5, 80.5);
}
.btn-error:focus, .btn-error.focus {
  box-shadow: 0 0 0 0.2rem rgba(128.35, 128.35, 128.35, 0.5);
}
.btn-error.disabled, .btn-error:disabled {
  color: #fff;
  background-color: #6A6A6A;
  border-color: #6A6A6A;
}
.btn-error:not(:disabled):not(.disabled):active, .btn-error:not(:disabled):not(.disabled).active, .show > .btn-error.dropdown-toggle {
  color: #fff;
  background-color: rgb(80.5, 80.5, 80.5);
  border-color: rgb(74.125, 74.125, 74.125);
}
.btn-error:not(:disabled):not(.disabled):active:focus, .btn-error:not(:disabled):not(.disabled).active:focus, .show > .btn-error.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(128.35, 128.35, 128.35, 0.5);
}

.btn-outline-primary, .modal-popup button, .checkout-index-index .action.edit-address-link {
  color: #ECAD66;
  border-color: #ECAD66;
}
.btn-outline-primary:hover, .modal-popup button:hover, .checkout-index-index .action.edit-address-link:hover {
  color: #222222;
  background-color: #ECAD66;
  border-color: #ECAD66;
}
.btn-outline-primary:focus, .modal-popup button:focus, .checkout-index-index .action.edit-address-link:focus, .btn-outline-primary.focus, .modal-popup button.focus, .checkout-index-index .focus.action.edit-address-link {
  box-shadow: 0 0 0 0.2rem rgba(236, 173, 102, 0.5);
}
.btn-outline-primary.disabled, .modal-popup button.disabled, .checkout-index-index .disabled.action.edit-address-link, .btn-outline-primary:disabled, .modal-popup button:disabled, .checkout-index-index .action.edit-address-link:disabled {
  color: #ECAD66;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .modal-popup button:not(:disabled):not(.disabled):active, .checkout-index-index .action.edit-address-link:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .modal-popup button:not(:disabled):not(.disabled).active, .checkout-index-index .action.edit-address-link:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle, .modal-popup .show > button.dropdown-toggle, .checkout-index-index .show > .dropdown-toggle.action.edit-address-link {
  color: #222222;
  background-color: #ECAD66;
  border-color: #ECAD66;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .modal-popup button:not(:disabled):not(.disabled):active:focus, .checkout-index-index .action.edit-address-link:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .modal-popup button:not(:disabled):not(.disabled).active:focus, .checkout-index-index .action.edit-address-link:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus, .modal-popup .show > button.dropdown-toggle:focus, .checkout-index-index .show > .dropdown-toggle.action.edit-address-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(236, 173, 102, 0.5);
}

.btn-outline-secondary {
  color: #586067;
  border-color: #586067;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #586067;
  border-color: #586067;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(88, 96, 103, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #586067;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #586067;
  border-color: #586067;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(88, 96, 103, 0.5);
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  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: #222222;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #222222;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #6A6A6A;
  border-color: #6A6A6A;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #6A6A6A;
  border-color: #6A6A6A;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(106, 106, 106, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #6A6A6A;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #6A6A6A;
  border-color: #6A6A6A;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(106, 106, 106, 0.5);
}

.btn-outline-light {
  color: #f0f0f0;
  border-color: #f0f0f0;
}
.btn-outline-light:hover {
  color: #222222;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 240, 240, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f0f0f0;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #222222;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 240, 240, 0.5);
}

.btn-outline-dark {
  color: #222222;
  border-color: #222222;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #222222;
  border-color: #222222;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(34, 34, 34, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #222222;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #222222;
  border-color: #222222;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(34, 34, 34, 0.5);
}

.btn-outline-primary-light {
  color: rgb(238.8168604651, 185.1569767442, 124.6831395349);
  border-color: rgb(238.8168604651, 185.1569767442, 124.6831395349);
}
.btn-outline-primary-light:hover {
  color: #222222;
  background-color: rgb(238.8168604651, 185.1569767442, 124.6831395349);
  border-color: rgb(238.8168604651, 185.1569767442, 124.6831395349);
}
.btn-outline-primary-light:focus, .btn-outline-primary-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(238.8168604651, 185.1569767442, 124.6831395349, 0.5);
}
.btn-outline-primary-light.disabled, .btn-outline-primary-light:disabled {
  color: rgb(238.8168604651, 185.1569767442, 124.6831395349);
  background-color: transparent;
}
.btn-outline-primary-light:not(:disabled):not(.disabled):active, .btn-outline-primary-light:not(:disabled):not(.disabled).active, .show > .btn-outline-primary-light.dropdown-toggle {
  color: #222222;
  background-color: rgb(238.8168604651, 185.1569767442, 124.6831395349);
  border-color: rgb(238.8168604651, 185.1569767442, 124.6831395349);
}
.btn-outline-primary-light:not(:disabled):not(.disabled):active:focus, .btn-outline-primary-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(238.8168604651, 185.1569767442, 124.6831395349, 0.5);
}

.btn-outline-primary-light2 {
  color: rgb(241.6337209302, 197.3139534884, 147.3662790698);
  border-color: rgb(241.6337209302, 197.3139534884, 147.3662790698);
}
.btn-outline-primary-light2:hover {
  color: #222222;
  background-color: rgb(241.6337209302, 197.3139534884, 147.3662790698);
  border-color: rgb(241.6337209302, 197.3139534884, 147.3662790698);
}
.btn-outline-primary-light2:focus, .btn-outline-primary-light2.focus {
  box-shadow: 0 0 0 0.2rem rgba(241.6337209302, 197.3139534884, 147.3662790698, 0.5);
}
.btn-outline-primary-light2.disabled, .btn-outline-primary-light2:disabled {
  color: rgb(241.6337209302, 197.3139534884, 147.3662790698);
  background-color: transparent;
}
.btn-outline-primary-light2:not(:disabled):not(.disabled):active, .btn-outline-primary-light2:not(:disabled):not(.disabled).active, .show > .btn-outline-primary-light2.dropdown-toggle {
  color: #222222;
  background-color: rgb(241.6337209302, 197.3139534884, 147.3662790698);
  border-color: rgb(241.6337209302, 197.3139534884, 147.3662790698);
}
.btn-outline-primary-light2:not(:disabled):not(.disabled):active:focus, .btn-outline-primary-light2:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary-light2.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(241.6337209302, 197.3139534884, 147.3662790698, 0.5);
}

.btn-outline-primary-dark {
  color: rgb(233.1831395349, 160.8430232558, 79.3168604651);
  border-color: rgb(233.1831395349, 160.8430232558, 79.3168604651);
}
.btn-outline-primary-dark:hover {
  color: #222222;
  background-color: rgb(233.1831395349, 160.8430232558, 79.3168604651);
  border-color: rgb(233.1831395349, 160.8430232558, 79.3168604651);
}
.btn-outline-primary-dark:focus, .btn-outline-primary-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(233.1831395349, 160.8430232558, 79.3168604651, 0.5);
}
.btn-outline-primary-dark.disabled, .btn-outline-primary-dark:disabled {
  color: rgb(233.1831395349, 160.8430232558, 79.3168604651);
  background-color: transparent;
}
.btn-outline-primary-dark:not(:disabled):not(.disabled):active, .btn-outline-primary-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-primary-dark.dropdown-toggle {
  color: #222222;
  background-color: rgb(233.1831395349, 160.8430232558, 79.3168604651);
  border-color: rgb(233.1831395349, 160.8430232558, 79.3168604651);
}
.btn-outline-primary-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-primary-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(233.1831395349, 160.8430232558, 79.3168604651, 0.5);
}

.btn-outline-primary-darker {
  color: rgb(230.3662790698, 148.6860465116, 56.6337209302);
  border-color: rgb(230.3662790698, 148.6860465116, 56.6337209302);
}
.btn-outline-primary-darker:hover {
  color: #222222;
  background-color: rgb(230.3662790698, 148.6860465116, 56.6337209302);
  border-color: rgb(230.3662790698, 148.6860465116, 56.6337209302);
}
.btn-outline-primary-darker:focus, .btn-outline-primary-darker.focus {
  box-shadow: 0 0 0 0.2rem rgba(230.3662790698, 148.6860465116, 56.6337209302, 0.5);
}
.btn-outline-primary-darker.disabled, .btn-outline-primary-darker:disabled {
  color: rgb(230.3662790698, 148.6860465116, 56.6337209302);
  background-color: transparent;
}
.btn-outline-primary-darker:not(:disabled):not(.disabled):active, .btn-outline-primary-darker:not(:disabled):not(.disabled).active, .show > .btn-outline-primary-darker.dropdown-toggle {
  color: #222222;
  background-color: rgb(230.3662790698, 148.6860465116, 56.6337209302);
  border-color: rgb(230.3662790698, 148.6860465116, 56.6337209302);
}
.btn-outline-primary-darker:not(:disabled):not(.disabled):active:focus, .btn-outline-primary-darker:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary-darker.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(230.3662790698, 148.6860465116, 56.6337209302, 0.5);
}

.btn-outline-accent {
  color: #6A6A6A;
  border-color: #6A6A6A;
}
.btn-outline-accent:hover {
  color: #fff;
  background-color: #6A6A6A;
  border-color: #6A6A6A;
}
.btn-outline-accent:focus, .btn-outline-accent.focus {
  box-shadow: 0 0 0 0.2rem rgba(106, 106, 106, 0.5);
}
.btn-outline-accent.disabled, .btn-outline-accent:disabled {
  color: #6A6A6A;
  background-color: transparent;
}
.btn-outline-accent:not(:disabled):not(.disabled):active, .btn-outline-accent:not(:disabled):not(.disabled).active, .show > .btn-outline-accent.dropdown-toggle {
  color: #fff;
  background-color: #6A6A6A;
  border-color: #6A6A6A;
}
.btn-outline-accent:not(:disabled):not(.disabled):active:focus, .btn-outline-accent:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-accent.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(106, 106, 106, 0.5);
}

.btn-outline-accent-dark {
  color: rgb(67.75, 67.75, 67.75);
  border-color: rgb(67.75, 67.75, 67.75);
}
.btn-outline-accent-dark:hover {
  color: #fff;
  background-color: rgb(67.75, 67.75, 67.75);
  border-color: rgb(67.75, 67.75, 67.75);
}
.btn-outline-accent-dark:focus, .btn-outline-accent-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(67.75, 67.75, 67.75, 0.5);
}
.btn-outline-accent-dark.disabled, .btn-outline-accent-dark:disabled {
  color: rgb(67.75, 67.75, 67.75);
  background-color: transparent;
}
.btn-outline-accent-dark:not(:disabled):not(.disabled):active, .btn-outline-accent-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-accent-dark.dropdown-toggle {
  color: #fff;
  background-color: rgb(67.75, 67.75, 67.75);
  border-color: rgb(67.75, 67.75, 67.75);
}
.btn-outline-accent-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-accent-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-accent-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(67.75, 67.75, 67.75, 0.5);
}

.btn-outline-lightgrey {
  color: #f2f2f2;
  border-color: #f2f2f2;
}
.btn-outline-lightgrey:hover {
  color: #222222;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}
.btn-outline-lightgrey:focus, .btn-outline-lightgrey.focus {
  box-shadow: 0 0 0 0.2rem rgba(242, 242, 242, 0.5);
}
.btn-outline-lightgrey.disabled, .btn-outline-lightgrey:disabled {
  color: #f2f2f2;
  background-color: transparent;
}
.btn-outline-lightgrey:not(:disabled):not(.disabled):active, .btn-outline-lightgrey:not(:disabled):not(.disabled).active, .show > .btn-outline-lightgrey.dropdown-toggle {
  color: #222222;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}
.btn-outline-lightgrey:not(:disabled):not(.disabled):active:focus, .btn-outline-lightgrey:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-lightgrey.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(242, 242, 242, 0.5);
}

.btn-outline-lightgrey2 {
  color: #e7e7e7;
  border-color: #e7e7e7;
}
.btn-outline-lightgrey2:hover {
  color: #222222;
  background-color: #e7e7e7;
  border-color: #e7e7e7;
}
.btn-outline-lightgrey2:focus, .btn-outline-lightgrey2.focus {
  box-shadow: 0 0 0 0.2rem rgba(231, 231, 231, 0.5);
}
.btn-outline-lightgrey2.disabled, .btn-outline-lightgrey2:disabled {
  color: #e7e7e7;
  background-color: transparent;
}
.btn-outline-lightgrey2:not(:disabled):not(.disabled):active, .btn-outline-lightgrey2:not(:disabled):not(.disabled).active, .show > .btn-outline-lightgrey2.dropdown-toggle {
  color: #222222;
  background-color: #e7e7e7;
  border-color: #e7e7e7;
}
.btn-outline-lightgrey2:not(:disabled):not(.disabled):active:focus, .btn-outline-lightgrey2:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-lightgrey2.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(231, 231, 231, 0.5);
}

.btn-outline-lightgrey3 {
  color: #adb0b2;
  border-color: #adb0b2;
}
.btn-outline-lightgrey3:hover {
  color: #222222;
  background-color: #adb0b2;
  border-color: #adb0b2;
}
.btn-outline-lightgrey3:focus, .btn-outline-lightgrey3.focus {
  box-shadow: 0 0 0 0.2rem rgba(173, 176, 178, 0.5);
}
.btn-outline-lightgrey3.disabled, .btn-outline-lightgrey3:disabled {
  color: #adb0b2;
  background-color: transparent;
}
.btn-outline-lightgrey3:not(:disabled):not(.disabled):active, .btn-outline-lightgrey3:not(:disabled):not(.disabled).active, .show > .btn-outline-lightgrey3.dropdown-toggle {
  color: #222222;
  background-color: #adb0b2;
  border-color: #adb0b2;
}
.btn-outline-lightgrey3:not(:disabled):not(.disabled):active:focus, .btn-outline-lightgrey3:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-lightgrey3.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(173, 176, 178, 0.5);
}

.btn-outline-grey {
  color: #393939;
  border-color: #393939;
}
.btn-outline-grey:hover {
  color: #fff;
  background-color: #393939;
  border-color: #393939;
}
.btn-outline-grey:focus, .btn-outline-grey.focus {
  box-shadow: 0 0 0 0.2rem rgba(57, 57, 57, 0.5);
}
.btn-outline-grey.disabled, .btn-outline-grey:disabled {
  color: #393939;
  background-color: transparent;
}
.btn-outline-grey:not(:disabled):not(.disabled):active, .btn-outline-grey:not(:disabled):not(.disabled).active, .show > .btn-outline-grey.dropdown-toggle {
  color: #fff;
  background-color: #393939;
  border-color: #393939;
}
.btn-outline-grey:not(:disabled):not(.disabled):active:focus, .btn-outline-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-grey.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(57, 57, 57, 0.5);
}

.btn-outline-w-trans {
  color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
}
.btn-outline-w-trans:hover {
  color: #222222;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
}
.btn-outline-w-trans:focus, .btn-outline-w-trans.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}
.btn-outline-w-trans.disabled, .btn-outline-w-trans:disabled {
  color: rgba(255, 255, 255, 0.15);
  background-color: transparent;
}
.btn-outline-w-trans:not(:disabled):not(.disabled):active, .btn-outline-w-trans:not(:disabled):not(.disabled).active, .show > .btn-outline-w-trans.dropdown-toggle {
  color: #222222;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
}
.btn-outline-w-trans:not(:disabled):not(.disabled):active:focus, .btn-outline-w-trans:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-w-trans.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-outline-blue-grey {
  color: #586067;
  border-color: #586067;
}
.btn-outline-blue-grey:hover {
  color: #fff;
  background-color: #586067;
  border-color: #586067;
}
.btn-outline-blue-grey:focus, .btn-outline-blue-grey.focus {
  box-shadow: 0 0 0 0.2rem rgba(88, 96, 103, 0.5);
}
.btn-outline-blue-grey.disabled, .btn-outline-blue-grey:disabled {
  color: #586067;
  background-color: transparent;
}
.btn-outline-blue-grey:not(:disabled):not(.disabled):active, .btn-outline-blue-grey:not(:disabled):not(.disabled).active, .show > .btn-outline-blue-grey.dropdown-toggle {
  color: #fff;
  background-color: #586067;
  border-color: #586067;
}
.btn-outline-blue-grey:not(:disabled):not(.disabled):active:focus, .btn-outline-blue-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-blue-grey.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(88, 96, 103, 0.5);
}

.btn-outline-error {
  color: #6A6A6A;
  border-color: #6A6A6A;
}
.btn-outline-error:hover {
  color: #fff;
  background-color: #6A6A6A;
  border-color: #6A6A6A;
}
.btn-outline-error:focus, .btn-outline-error.focus {
  box-shadow: 0 0 0 0.2rem rgba(106, 106, 106, 0.5);
}
.btn-outline-error.disabled, .btn-outline-error:disabled {
  color: #6A6A6A;
  background-color: transparent;
}
.btn-outline-error:not(:disabled):not(.disabled):active, .btn-outline-error:not(:disabled):not(.disabled).active, .show > .btn-outline-error.dropdown-toggle {
  color: #fff;
  background-color: #6A6A6A;
  border-color: #6A6A6A;
}
.btn-outline-error:not(:disabled):not(.disabled):active:focus, .btn-outline-error:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-error.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(106, 106, 106, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #ECAD66;
  text-decoration: none;
}
.btn-link:hover {
  color: #ECAD66;
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
  box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
  color: #586067;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn, .modal-popup .btn-group-lg > button, .btn-group-lg > button, .primary .btn-group-lg > button, .checkout-index-index .btn-group-lg > .action.edit-address-link {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn, .modal-popup .btn-group-sm > button, .btn-group-sm > button, .primary .btn-group-sm > button, .checkout-index-index .btn-group-sm > .action.edit-address-link {
  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: #222222;
  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: 992px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1500px) {
  .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: #222222;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: rgb(21.25, 21.25, 21.25);
  text-decoration: none;
  background-color: #f8f9fa;
}
.dropdown-item.active, .dropdown-item:active {
  color: #ECAD66;
  text-decoration: none;
  background-color: transparent;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #586067;
  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: #586067;
  white-space: nowrap;
}

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

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn, .btn-group > button, .checkout-index-index .btn-group > .action.edit-address-link,
.btn-group-vertical > .btn,
.btn-group-vertical > button,
.checkout-index-index .btn-group-vertical > .action.edit-address-link {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn:hover, .btn-group > button:hover, .checkout-index-index .btn-group > .action.edit-address-link:hover,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > button:hover,
.checkout-index-index .btn-group-vertical > .action.edit-address-link:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > button:focus, .checkout-index-index .btn-group > .action.edit-address-link:focus, .btn-group > .btn:active, .btn-group > button:active, .checkout-index-index .btn-group > .action.edit-address-link:active, .btn-group > .btn.active, .btn-group > button.active, .checkout-index-index .btn-group > .active.action.edit-address-link,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > button:focus,
.checkout-index-index .btn-group-vertical > .action.edit-address-link:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > button:active,
.checkout-index-index .btn-group-vertical > .action.edit-address-link:active,
.btn-group-vertical > .btn.active,
.btn-group-vertical > button.active,
.checkout-index-index .btn-group-vertical > .active.action.edit-address-link {
  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 > button:not(:first-child), .checkout-index-index .btn-group > .action.edit-address-link:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle), .btn-group > button:not(:last-child):not(.dropdown-toggle), .checkout-index-index .btn-group > .action.edit-address-link:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn,
.btn-group > .btn-group:not(:last-child) > button,
.checkout-index-index .btn-group > .btn-group:not(:last-child) > .action.edit-address-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child), .btn-group > button:not(:first-child), .checkout-index-index .btn-group > .action.edit-address-link:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn,
.btn-group > .btn-group:not(:first-child) > button,
.checkout-index-index .btn-group > .btn-group:not(:first-child) > .action.edit-address-link {
  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, .btn-group-sm > button + .dropdown-toggle-split, .checkout-index-index .btn-group-sm > .action.edit-address-link + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, .btn-group-lg > button + .dropdown-toggle-split, .checkout-index-index .btn-group-lg > .action.edit-address-link + .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 > button, .checkout-index-index .btn-group-vertical > .action.edit-address-link,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > button:not(:first-child), .checkout-index-index .btn-group-vertical > .action.edit-address-link: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 > button:not(:last-child):not(.dropdown-toggle), .checkout-index-index .btn-group-vertical > .action.edit-address-link:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.btn-group-vertical > .btn-group:not(:last-child) > button,
.checkout-index-index .btn-group-vertical > .btn-group:not(:last-child) > .action.edit-address-link {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > button:not(:first-child), .checkout-index-index .btn-group-vertical > .action.edit-address-link:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.btn-group-vertical > .btn-group:not(:first-child) > button,
.checkout-index-index .btn-group-vertical > .btn-group:not(:first-child) > .action.edit-address-link {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn, .btn-group-toggle > button, .checkout-index-index .btn-group-toggle > .action.edit-address-link,
.btn-group-toggle > .btn-group > .btn,
.btn-group-toggle > .btn-group > button,
.checkout-index-index .btn-group-toggle > .btn-group > .action.edit-address-link {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio], .btn-group-toggle > button input[type=radio], .checkout-index-index .btn-group-toggle > .action.edit-address-link input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > button input[type=checkbox],
.checkout-index-index .btn-group-toggle > .action.edit-address-link input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > button input[type=radio],
.checkout-index-index .btn-group-toggle > .btn-group > .action.edit-address-link input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > button input[type=checkbox],
.checkout-index-index .btn-group-toggle > .btn-group > .action.edit-address-link 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 auto;
  width: 1%;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: flex;
  align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}
.input-group-prepend .btn, .input-group-prepend button, .input-group-prepend .checkout-index-index .action.edit-address-link, .checkout-index-index .input-group-prepend .action.edit-address-link,
.input-group-append .btn,
.input-group-append button,
.input-group-append .checkout-index-index .action.edit-address-link,
.checkout-index-index .input-group-append .action.edit-address-link {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn:focus, .input-group-prepend button:focus, .input-group-prepend .checkout-index-index .action.edit-address-link:focus, .checkout-index-index .input-group-prepend .action.edit-address-link:focus,
.input-group-append .btn:focus,
.input-group-append button:focus,
.input-group-append .checkout-index-index .action.edit-address-link:focus,
.checkout-index-index .input-group-append .action.edit-address-link:focus {
  z-index: 3;
}
.input-group-prepend .btn + .btn, .input-group-prepend button + .btn, .input-group-prepend .btn + button, .input-group-prepend button + button, .input-group-prepend .checkout-index-index .action.edit-address-link + .btn, .input-group-prepend .checkout-index-index .action.edit-address-link + button, .checkout-index-index .input-group-prepend .action.edit-address-link + .btn, .checkout-index-index .input-group-prepend .action.edit-address-link + button, .input-group-prepend .checkout-index-index .btn + .action.edit-address-link, .input-group-prepend .checkout-index-index button + .action.edit-address-link, .checkout-index-index .input-group-prepend .btn + .action.edit-address-link, .checkout-index-index .input-group-prepend button + .action.edit-address-link, .input-group-prepend .checkout-index-index .action.edit-address-link + .action.edit-address-link, .checkout-index-index .input-group-prepend .action.edit-address-link + .action.edit-address-link,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend button + .input-group-text,
.input-group-prepend .checkout-index-index .action.edit-address-link + .input-group-text,
.checkout-index-index .input-group-prepend .action.edit-address-link + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .input-group-text + button,
.input-group-prepend .checkout-index-index .input-group-text + .action.edit-address-link,
.checkout-index-index .input-group-prepend .input-group-text + .action.edit-address-link,
.input-group-append .btn + .btn,
.input-group-append button + .btn,
.input-group-append .btn + button,
.input-group-append button + button,
.input-group-append .checkout-index-index .action.edit-address-link + .btn,
.input-group-append .checkout-index-index .action.edit-address-link + button,
.checkout-index-index .input-group-append .action.edit-address-link + .btn,
.checkout-index-index .input-group-append .action.edit-address-link + button,
.input-group-append .checkout-index-index .btn + .action.edit-address-link,
.input-group-append .checkout-index-index button + .action.edit-address-link,
.checkout-index-index .input-group-append .btn + .action.edit-address-link,
.checkout-index-index .input-group-append button + .action.edit-address-link,
.input-group-append .checkout-index-index .action.edit-address-link + .action.edit-address-link,
.checkout-index-index .input-group-append .action.edit-address-link + .action.edit-address-link,
.input-group-append .btn + .input-group-text,
.input-group-append button + .input-group-text,
.input-group-append .checkout-index-index .action.edit-address-link + .input-group-text,
.checkout-index-index .input-group-append .action.edit-address-link + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .input-group-text + button,
.input-group-append .checkout-index-index .input-group-text + .action.edit-address-link,
.checkout-index-index .input-group-append .input-group-text + .action.edit-address-link {
  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 #e5e5e5;
  border-radius: 0.25rem;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

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

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-prepend > button,
.checkout-index-index .input-group-lg > .input-group-prepend > .action.edit-address-link,
.input-group-lg > .input-group-append > .btn,
.input-group-lg > .input-group-append > button,
.checkout-index-index .input-group-lg > .input-group-append > .action.edit-address-link {
  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-prepend > button,
.checkout-index-index .input-group-sm > .input-group-prepend > .action.edit-address-link,
.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > button,
.checkout-index-index .input-group-sm > .input-group-append > .action.edit-address-link {
  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 > button, .checkout-index-index .input-group > .input-group-prepend > .action.edit-address-link,
.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) > button,
.checkout-index-index .input-group > .input-group-append:not(:last-child) > .action.edit-address-link,
.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 > button:not(:last-child):not(.dropdown-toggle),
.checkout-index-index .input-group > .input-group-append:last-child > .action.edit-address-link: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 > button, .checkout-index-index .input-group > .input-group-append > .action.edit-address-link,
.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) > button,
.checkout-index-index .input-group > .input-group-prepend:not(:first-child) > .action.edit-address-link,
.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 > button:not(:first-child),
.checkout-index-index .input-group > .input-group-prepend:first-child > .action.edit-address-link:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

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

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

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #ECAD66;
  border-color: transparent;
  background-color: transparent;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: rgba(63.75, 63.75, 63.75, 0);
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #ECAD66;
  background-color: rgba(89.25, 89.25, 89.25, 0);
  border-color: rgba(89.25, 89.25, 89.25, 0);
}
.custom-control-input:disabled ~ .custom-control-label {
  color: #586067;
}
.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

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

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23ECAD66' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: transparent;
  background-color: transparent;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23ECAD66' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(236, 173, 102, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(236, 173, 102, 0.5);
}

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

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

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

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

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

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

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

.custom-range {
  width: 100%;
  height: calc(1rem + 0.4rem);
  padding: 0;
  background-color: transparent;
  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, 0, 0, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: transparent;
  border: 0;
  border-radius: 1rem;
  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-range::-webkit-slider-thumb {
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb {
  appearance: none;
}
.custom-range::-webkit-slider-thumb:active {
  background-color: rgba(89.25, 89.25, 89.25, 0);
}
.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: transparent;
  border: 0;
  border-radius: 1rem;
  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-range::-moz-range-thumb {
    transition: none;
  }
}
.custom-range::-moz-range-thumb {
  appearance: none;
}
.custom-range::-moz-range-thumb:active {
  background-color: rgba(89.25, 89.25, 89.25, 0);
}
.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: transparent;
  border: 0;
  border-radius: 1rem;
  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-range::-ms-thumb {
    transition: none;
  }
}
.custom-range::-ms-thumb {
  appearance: none;
}
.custom-range::-ms-thumb:active {
  background-color: rgba(89.25, 89.25, 89.25, 0);
}
.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: #586067;
  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: #586067;
  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: #ECAD66;
  background-color: transparent;
}

.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 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

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

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

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

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

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

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

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

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .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 viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accordion > .card {
  overflow: hidden;
}
.accordion > .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}
.accordion > .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}
.accordion > .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card .card-header {
  margin-bottom: -1px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: transparent;
  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: #343a40;
  content: "\e91a";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #adb5bd;
}

.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: #ECAD66;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #ECAD66;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 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: 1;
  color: #ECAD66;
  background-color: transparent;
  border-color: transparent;
}
.page-item.disabled .page-link {
  color: #586067;
  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, button .badge, .checkout-index-index .action.edit-address-link .badge {
  position: relative;
  top: -1px;
}

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

.badge-primary {
  color: #222222;
  background-color: #ECAD66;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #222222;
  background-color: rgb(230.3662790698, 148.6860465116, 56.6337209302);
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(236, 173, 102, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: #586067;
}
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #fff;
  background-color: rgb(64.502617801, 70.3664921466, 75.497382199);
}
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(88, 96, 103, 0.5);
}

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

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}
a.badge-info:hover, a.badge-info:focus {
  color: #fff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
  color: #222222;
  background-color: #ffc107;
}
a.badge-warning:hover, a.badge-warning:focus {
  color: #222222;
  background-color: rgb(211, 158.25, 0);
}
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: #6A6A6A;
}
a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: rgb(80.5, 80.5, 80.5);
}
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(106, 106, 106, 0.5);
}

.badge-light {
  color: #222222;
  background-color: #f0f0f0;
}
a.badge-light:hover, a.badge-light:focus {
  color: #222222;
  background-color: rgb(214.5, 214.5, 214.5);
}
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(240, 240, 240, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #222222;
}
a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: rgb(8.5, 8.5, 8.5);
}
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(34, 34, 34, 0.5);
}

.badge-primary-light {
  color: #222222;
  background-color: rgb(238.8168604651, 185.1569767442, 124.6831395349);
}
a.badge-primary-light:hover, a.badge-primary-light:focus {
  color: #222222;
  background-color: rgb(233.1831395349, 160.8430232558, 79.3168604651);
}
a.badge-primary-light:focus, a.badge-primary-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(238.8168604651, 185.1569767442, 124.6831395349, 0.5);
}

.badge-primary-light2 {
  color: #222222;
  background-color: rgb(241.6337209302, 197.3139534884, 147.3662790698);
}
a.badge-primary-light2:hover, a.badge-primary-light2:focus {
  color: #222222;
  background-color: #ecad66;
}
a.badge-primary-light2:focus, a.badge-primary-light2.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(241.6337209302, 197.3139534884, 147.3662790698, 0.5);
}

.badge-primary-dark {
  color: #222222;
  background-color: rgb(233.1831395349, 160.8430232558, 79.3168604651);
}
a.badge-primary-dark:hover, a.badge-primary-dark:focus {
  color: #222222;
  background-color: rgb(227.5494186047, 136.5290697674, 33.9505813953);
}
a.badge-primary-dark:focus, a.badge-primary-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(233.1831395349, 160.8430232558, 79.3168604651, 0.5);
}

.badge-primary-darker {
  color: #222222;
  background-color: rgb(230.3662790698, 148.6860465116, 56.6337209302);
}
a.badge-primary-darker:hover, a.badge-primary-darker:focus {
  color: #222222;
  background-color: rgb(209.9302325581, 123.488372093, 26.0697674419);
}
a.badge-primary-darker:focus, a.badge-primary-darker.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(230.3662790698, 148.6860465116, 56.6337209302, 0.5);
}

.badge-accent {
  color: #fff;
  background-color: #6A6A6A;
}
a.badge-accent:hover, a.badge-accent:focus {
  color: #fff;
  background-color: rgb(80.5, 80.5, 80.5);
}
a.badge-accent:focus, a.badge-accent.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(106, 106, 106, 0.5);
}

.badge-accent-dark {
  color: #fff;
  background-color: rgb(67.75, 67.75, 67.75);
}
a.badge-accent-dark:hover, a.badge-accent-dark:focus {
  color: #fff;
  background-color: rgb(42.25, 42.25, 42.25);
}
a.badge-accent-dark:focus, a.badge-accent-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(67.75, 67.75, 67.75, 0.5);
}

.badge-lightgrey {
  color: #222222;
  background-color: #f2f2f2;
}
a.badge-lightgrey:hover, a.badge-lightgrey:focus {
  color: #222222;
  background-color: rgb(216.5, 216.5, 216.5);
}
a.badge-lightgrey:focus, a.badge-lightgrey.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(242, 242, 242, 0.5);
}

.badge-lightgrey2 {
  color: #222222;
  background-color: #e7e7e7;
}
a.badge-lightgrey2:hover, a.badge-lightgrey2:focus {
  color: #222222;
  background-color: rgb(205.5, 205.5, 205.5);
}
a.badge-lightgrey2:focus, a.badge-lightgrey2.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(231, 231, 231, 0.5);
}

.badge-lightgrey3 {
  color: #222222;
  background-color: #adb0b2;
}
a.badge-lightgrey3:hover, a.badge-lightgrey3:focus {
  color: #222222;
  background-color: rgb(146.6981132075, 150.6603773585, 153.3018867925);
}
a.badge-lightgrey3:focus, a.badge-lightgrey3.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(173, 176, 178, 0.5);
}

.badge-grey {
  color: #fff;
  background-color: #393939;
}
a.badge-grey:hover, a.badge-grey:focus {
  color: #fff;
  background-color: rgb(31.5, 31.5, 31.5);
}
a.badge-grey:focus, a.badge-grey.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(57, 57, 57, 0.5);
}

.badge-w-trans {
  color: #222222;
  background-color: rgba(255, 255, 255, 0.15);
}
a.badge-w-trans:hover, a.badge-w-trans:focus {
  color: #222222;
  background-color: rgba(229.5, 229.5, 229.5, 0.15);
}
a.badge-w-trans:focus, a.badge-w-trans.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.badge-blue-grey {
  color: #fff;
  background-color: #586067;
}
a.badge-blue-grey:hover, a.badge-blue-grey:focus {
  color: #fff;
  background-color: rgb(64.502617801, 70.3664921466, 75.497382199);
}
a.badge-blue-grey:focus, a.badge-blue-grey.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(88, 96, 103, 0.5);
}

.badge-error {
  color: #fff;
  background-color: #6A6A6A;
}
a.badge-error:hover, a.badge-error:focus {
  color: #fff;
  background-color: rgb(80.5, 80.5, 80.5);
}
a.badge-error:focus, a.badge-error.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(106, 106, 106, 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: rgb(122.72, 89.96, 53.04);
  background-color: rgb(251.2, 238.6, 224.4);
  border-color: rgb(249.68, 232.04, 212.16);
}
.alert-primary hr {
  border-top-color: rgb(246.8631395349, 219.8830232558, 189.4768604651);
}
.alert-primary .alert-link {
  color: rgb(87.1105325444, 63.8564497041, 37.6494674556);
}

.alert-secondary {
  color: rgb(45.76, 49.92, 53.56);
  background-color: rgb(221.6, 223.2, 224.6);
  border-color: rgb(208.24, 210.48, 212.44);
}
.alert-secondary hr {
  border-top-color: rgb(194.8904702194, 197.769968652, 200.2895297806);
}
.alert-secondary .alert-link {
  color: rgb(22.262617801, 24.2864921466, 26.057382199);
}

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

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

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

.alert-danger {
  color: rgb(55.12, 55.12, 55.12);
  background-color: rgb(225.2, 225.2, 225.2);
  border-color: rgb(213.28, 213.28, 213.28);
}
.alert-danger hr {
  border-top-color: rgb(200.53, 200.53, 200.53);
}
.alert-danger .alert-link {
  color: rgb(29.62, 29.62, 29.62);
}

.alert-light {
  color: rgb(124.8, 124.8, 124.8);
  background-color: #fcfcfc;
  border-color: rgb(250.8, 250.8, 250.8);
}
.alert-light hr {
  border-top-color: rgb(238.05, 238.05, 238.05);
}
.alert-light .alert-link {
  color: rgb(99.3, 99.3, 99.3);
}

.alert-dark {
  color: rgb(17.68, 17.68, 17.68);
  background-color: rgb(210.8, 210.8, 210.8);
  border-color: rgb(193.12, 193.12, 193.12);
}
.alert-dark hr {
  border-top-color: rgb(180.37, 180.37, 180.37);
}
.alert-dark .alert-link {
  color: black;
}

.alert-primary-light {
  color: rgb(124.1847674419, 96.281627907, 64.8352325581);
  background-color: rgb(251.763372093, 241.0313953488, 228.936627907);
  border-color: rgb(250.4687209302, 235.4439534884, 218.5112790698);
}
.alert-primary-light hr {
  border-top-color: rgb(247.6518604651, 223.2869767442, 195.8281395349);
}
.alert-primary-light .alert-link {
  color: rgb(90.6781377755, 70.3036201657, 47.3418622245);
}

.alert-primary-light2 {
  color: rgb(125.6495348837, 102.603255814, 76.6304651163);
  background-color: rgb(252.326744186, 243.4627906977, 233.473255814);
  border-color: rgb(251.2574418605, 238.8479069767, 224.8625581395);
}
.alert-primary-light2 hr {
  border-top-color: rgb(248.4405813953, 226.6909302326, 202.1794186047);
}
.alert-primary-light2 .alert-link {
  color: rgb(93.9700496204, 76.7343313206, 57.3099503796);
}

.alert-primary-dark {
  color: rgb(121.2552325581, 83.638372093, 41.2447674419);
  background-color: rgb(250.636627907, 236.1686046512, 219.863372093);
  border-color: rgb(248.8912790698, 228.6360465116, 205.8087209302);
}
.alert-primary-dark hr {
  border-top-color: rgb(246.0744186047, 216.4790697674, 183.1255813953);
}
.alert-primary-dark .alert-link {
  color: rgb(83.199744186, 57.3887906977, 28.300255814);
}

.alert-primary-darker {
  color: rgb(119.7904651163, 77.316744186, 29.4495348837);
  background-color: rgb(250.073255814, 233.7372093023, 215.326744186);
  border-color: rgb(248.1025581395, 225.2320930233, 199.4574418605);
}
.alert-primary-darker hr {
  border-top-color: rgb(245.2856976744, 213.0751162791, 176.7743023256);
}
.alert-primary-darker .alert-link {
  color: rgb(78.8542970586, 50.8951819139, 19.3857029414);
}

.alert-accent {
  color: rgb(55.12, 55.12, 55.12);
  background-color: rgb(225.2, 225.2, 225.2);
  border-color: rgb(213.28, 213.28, 213.28);
}
.alert-accent hr {
  border-top-color: rgb(200.53, 200.53, 200.53);
}
.alert-accent .alert-link {
  color: rgb(29.62, 29.62, 29.62);
}

.alert-accent-dark {
  color: rgb(35.23, 35.23, 35.23);
  background-color: rgb(217.55, 217.55, 217.55);
  border-color: rgb(202.57, 202.57, 202.57);
}
.alert-accent-dark hr {
  border-top-color: rgb(189.82, 189.82, 189.82);
}
.alert-accent-dark .alert-link {
  color: rgb(9.73, 9.73, 9.73);
}

.alert-lightgrey {
  color: rgb(125.84, 125.84, 125.84);
  background-color: rgb(252.4, 252.4, 252.4);
  border-color: rgb(251.36, 251.36, 251.36);
}
.alert-lightgrey hr {
  border-top-color: rgb(238.61, 238.61, 238.61);
}
.alert-lightgrey .alert-link {
  color: rgb(100.34, 100.34, 100.34);
}

.alert-lightgrey2 {
  color: rgb(120.12, 120.12, 120.12);
  background-color: rgb(250.2, 250.2, 250.2);
  border-color: rgb(248.28, 248.28, 248.28);
}
.alert-lightgrey2 hr {
  border-top-color: rgb(235.53, 235.53, 235.53);
}
.alert-lightgrey2 .alert-link {
  color: rgb(94.62, 94.62, 94.62);
}

.alert-lightgrey3 {
  color: rgb(89.96, 91.52, 92.56);
  background-color: rgb(238.6, 239.2, 239.6);
  border-color: rgb(232.04, 232.88, 233.44);
}
.alert-lightgrey3 hr {
  border-top-color: rgb(218.8890566038, 220.2101886792, 221.0909433962);
}
.alert-lightgrey3 .alert-link {
  color: rgb(64.8232478632, 65.9473504274, 66.6967521368);
}

.alert-grey {
  color: rgb(29.64, 29.64, 29.64);
  background-color: rgb(215.4, 215.4, 215.4);
  border-color: rgb(199.56, 199.56, 199.56);
}
.alert-grey hr {
  border-top-color: rgb(186.81, 186.81, 186.81);
}
.alert-grey .alert-link {
  color: rgb(4.14, 4.14, 4.14);
}

.alert-w-trans {
  color: rgba(20.5900621118, 20.5900621118, 20.5900621118, 0.558);
  background-color: rgba(255, 255, 255, 0.83);
  border-color: rgba(255, 255, 255, 0.762);
}
.alert-w-trans hr {
  border-top-color: rgba(242.25, 242.25, 242.25, 0.762);
}
.alert-w-trans .alert-link {
  color: rgba(0, 0, 0, 0.558);
}

.alert-blue-grey {
  color: rgb(45.76, 49.92, 53.56);
  background-color: rgb(221.6, 223.2, 224.6);
  border-color: rgb(208.24, 210.48, 212.44);
}
.alert-blue-grey hr {
  border-top-color: rgb(194.8904702194, 197.769968652, 200.2895297806);
}
.alert-blue-grey .alert-link {
  color: rgb(22.262617801, 24.2864921466, 26.057382199);
}

.alert-error {
  color: rgb(55.12, 55.12, 55.12);
  background-color: rgb(225.2, 225.2, 225.2);
  border-color: rgb(213.28, 213.28, 213.28);
}
.alert-error hr {
  border-top-color: rgb(200.53, 200.53, 200.53);
}
.alert-error .alert-link {
  color: rgb(29.62, 29.62, 29.62);
}

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

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #ECAD66;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

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

.progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

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

.media-body {
  flex: 1;
}

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

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

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #586067;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #ECAD66;
  background-color: transparent;
  border-color: transparent;
}

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

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

.list-group-item-primary {
  color: rgb(122.72, 89.96, 53.04);
  background-color: rgb(249.68, 232.04, 212.16);
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: rgb(122.72, 89.96, 53.04);
  background-color: rgb(246.8631395349, 219.8830232558, 189.4768604651);
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(122.72, 89.96, 53.04);
  border-color: rgb(122.72, 89.96, 53.04);
}

.list-group-item-secondary {
  color: rgb(45.76, 49.92, 53.56);
  background-color: rgb(208.24, 210.48, 212.44);
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: rgb(45.76, 49.92, 53.56);
  background-color: rgb(194.8904702194, 197.769968652, 200.2895297806);
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(45.76, 49.92, 53.56);
  border-color: rgb(45.76, 49.92, 53.56);
}

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

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

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

.list-group-item-danger {
  color: rgb(55.12, 55.12, 55.12);
  background-color: rgb(213.28, 213.28, 213.28);
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: rgb(55.12, 55.12, 55.12);
  background-color: rgb(200.53, 200.53, 200.53);
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: rgb(55.12, 55.12, 55.12);
  border-color: rgb(55.12, 55.12, 55.12);
}

.list-group-item-light {
  color: rgb(124.8, 124.8, 124.8);
  background-color: rgb(250.8, 250.8, 250.8);
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: rgb(124.8, 124.8, 124.8);
  background-color: rgb(238.05, 238.05, 238.05);
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: rgb(124.8, 124.8, 124.8);
  border-color: rgb(124.8, 124.8, 124.8);
}

.list-group-item-dark {
  color: rgb(17.68, 17.68, 17.68);
  background-color: rgb(193.12, 193.12, 193.12);
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: rgb(17.68, 17.68, 17.68);
  background-color: rgb(180.37, 180.37, 180.37);
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: rgb(17.68, 17.68, 17.68);
  border-color: rgb(17.68, 17.68, 17.68);
}

.list-group-item-primary-light {
  color: rgb(124.1847674419, 96.281627907, 64.8352325581);
  background-color: rgb(250.4687209302, 235.4439534884, 218.5112790698);
}
.list-group-item-primary-light.list-group-item-action:hover, .list-group-item-primary-light.list-group-item-action:focus {
  color: rgb(124.1847674419, 96.281627907, 64.8352325581);
  background-color: rgb(247.6518604651, 223.2869767442, 195.8281395349);
}
.list-group-item-primary-light.list-group-item-action.active {
  color: #fff;
  background-color: rgb(124.1847674419, 96.281627907, 64.8352325581);
  border-color: rgb(124.1847674419, 96.281627907, 64.8352325581);
}

.list-group-item-primary-light2 {
  color: rgb(125.6495348837, 102.603255814, 76.6304651163);
  background-color: rgb(251.2574418605, 238.8479069767, 224.8625581395);
}
.list-group-item-primary-light2.list-group-item-action:hover, .list-group-item-primary-light2.list-group-item-action:focus {
  color: rgb(125.6495348837, 102.603255814, 76.6304651163);
  background-color: rgb(248.4405813953, 226.6909302326, 202.1794186047);
}
.list-group-item-primary-light2.list-group-item-action.active {
  color: #fff;
  background-color: rgb(125.6495348837, 102.603255814, 76.6304651163);
  border-color: rgb(125.6495348837, 102.603255814, 76.6304651163);
}

.list-group-item-primary-dark {
  color: rgb(121.2552325581, 83.638372093, 41.2447674419);
  background-color: rgb(248.8912790698, 228.6360465116, 205.8087209302);
}
.list-group-item-primary-dark.list-group-item-action:hover, .list-group-item-primary-dark.list-group-item-action:focus {
  color: rgb(121.2552325581, 83.638372093, 41.2447674419);
  background-color: rgb(246.0744186047, 216.4790697674, 183.1255813953);
}
.list-group-item-primary-dark.list-group-item-action.active {
  color: #fff;
  background-color: rgb(121.2552325581, 83.638372093, 41.2447674419);
  border-color: rgb(121.2552325581, 83.638372093, 41.2447674419);
}

.list-group-item-primary-darker {
  color: rgb(119.7904651163, 77.316744186, 29.4495348837);
  background-color: rgb(248.1025581395, 225.2320930233, 199.4574418605);
}
.list-group-item-primary-darker.list-group-item-action:hover, .list-group-item-primary-darker.list-group-item-action:focus {
  color: rgb(119.7904651163, 77.316744186, 29.4495348837);
  background-color: rgb(245.2856976744, 213.0751162791, 176.7743023256);
}
.list-group-item-primary-darker.list-group-item-action.active {
  color: #fff;
  background-color: rgb(119.7904651163, 77.316744186, 29.4495348837);
  border-color: rgb(119.7904651163, 77.316744186, 29.4495348837);
}

.list-group-item-accent {
  color: rgb(55.12, 55.12, 55.12);
  background-color: rgb(213.28, 213.28, 213.28);
}
.list-group-item-accent.list-group-item-action:hover, .list-group-item-accent.list-group-item-action:focus {
  color: rgb(55.12, 55.12, 55.12);
  background-color: rgb(200.53, 200.53, 200.53);
}
.list-group-item-accent.list-group-item-action.active {
  color: #fff;
  background-color: rgb(55.12, 55.12, 55.12);
  border-color: rgb(55.12, 55.12, 55.12);
}

.list-group-item-accent-dark {
  color: rgb(35.23, 35.23, 35.23);
  background-color: rgb(202.57, 202.57, 202.57);
}
.list-group-item-accent-dark.list-group-item-action:hover, .list-group-item-accent-dark.list-group-item-action:focus {
  color: rgb(35.23, 35.23, 35.23);
  background-color: rgb(189.82, 189.82, 189.82);
}
.list-group-item-accent-dark.list-group-item-action.active {
  color: #fff;
  background-color: rgb(35.23, 35.23, 35.23);
  border-color: rgb(35.23, 35.23, 35.23);
}

.list-group-item-lightgrey {
  color: rgb(125.84, 125.84, 125.84);
  background-color: rgb(251.36, 251.36, 251.36);
}
.list-group-item-lightgrey.list-group-item-action:hover, .list-group-item-lightgrey.list-group-item-action:focus {
  color: rgb(125.84, 125.84, 125.84);
  background-color: rgb(238.61, 238.61, 238.61);
}
.list-group-item-lightgrey.list-group-item-action.active {
  color: #fff;
  background-color: rgb(125.84, 125.84, 125.84);
  border-color: rgb(125.84, 125.84, 125.84);
}

.list-group-item-lightgrey2 {
  color: rgb(120.12, 120.12, 120.12);
  background-color: rgb(248.28, 248.28, 248.28);
}
.list-group-item-lightgrey2.list-group-item-action:hover, .list-group-item-lightgrey2.list-group-item-action:focus {
  color: rgb(120.12, 120.12, 120.12);
  background-color: rgb(235.53, 235.53, 235.53);
}
.list-group-item-lightgrey2.list-group-item-action.active {
  color: #fff;
  background-color: rgb(120.12, 120.12, 120.12);
  border-color: rgb(120.12, 120.12, 120.12);
}

.list-group-item-lightgrey3 {
  color: rgb(89.96, 91.52, 92.56);
  background-color: rgb(232.04, 232.88, 233.44);
}
.list-group-item-lightgrey3.list-group-item-action:hover, .list-group-item-lightgrey3.list-group-item-action:focus {
  color: rgb(89.96, 91.52, 92.56);
  background-color: rgb(218.8890566038, 220.2101886792, 221.0909433962);
}
.list-group-item-lightgrey3.list-group-item-action.active {
  color: #fff;
  background-color: rgb(89.96, 91.52, 92.56);
  border-color: rgb(89.96, 91.52, 92.56);
}

.list-group-item-grey {
  color: rgb(29.64, 29.64, 29.64);
  background-color: rgb(199.56, 199.56, 199.56);
}
.list-group-item-grey.list-group-item-action:hover, .list-group-item-grey.list-group-item-action:focus {
  color: rgb(29.64, 29.64, 29.64);
  background-color: rgb(186.81, 186.81, 186.81);
}
.list-group-item-grey.list-group-item-action.active {
  color: #fff;
  background-color: rgb(29.64, 29.64, 29.64);
  border-color: rgb(29.64, 29.64, 29.64);
}

.list-group-item-w-trans {
  color: rgba(20.5900621118, 20.5900621118, 20.5900621118, 0.558);
  background-color: rgba(255, 255, 255, 0.762);
}
.list-group-item-w-trans.list-group-item-action:hover, .list-group-item-w-trans.list-group-item-action:focus {
  color: rgba(20.5900621118, 20.5900621118, 20.5900621118, 0.558);
  background-color: rgba(242.25, 242.25, 242.25, 0.762);
}
.list-group-item-w-trans.list-group-item-action.active {
  color: #fff;
  background-color: rgba(20.5900621118, 20.5900621118, 20.5900621118, 0.558);
  border-color: rgba(20.5900621118, 20.5900621118, 20.5900621118, 0.558);
}

.list-group-item-blue-grey {
  color: rgb(45.76, 49.92, 53.56);
  background-color: rgb(208.24, 210.48, 212.44);
}
.list-group-item-blue-grey.list-group-item-action:hover, .list-group-item-blue-grey.list-group-item-action:focus {
  color: rgb(45.76, 49.92, 53.56);
  background-color: rgb(194.8904702194, 197.769968652, 200.2895297806);
}
.list-group-item-blue-grey.list-group-item-action.active {
  color: #fff;
  background-color: rgb(45.76, 49.92, 53.56);
  border-color: rgb(45.76, 49.92, 53.56);
}

.list-group-item-error {
  color: rgb(55.12, 55.12, 55.12);
  background-color: rgb(213.28, 213.28, 213.28);
}
.list-group-item-error.list-group-item-action:hover, .list-group-item-error.list-group-item-action:focus {
  color: rgb(55.12, 55.12, 55.12);
  background-color: rgb(200.53, 200.53, 200.53);
}
.list-group-item-error.list-group-item-action.active {
  color: #fff;
  background-color: rgb(55.12, 55.12, 55.12);
  border-color: rgb(55.12, 55.12, 55.12);
}

.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;
  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);
  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: #586067;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.fade .modal-dialog {
  transform: translate(0, -50px);
}
.modal.show .modal-dialog {
  transform: none;
}

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

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

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

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

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

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

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

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e5e5e5;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}
.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}

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

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 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: 1200px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1500px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: 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: Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

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

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

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

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

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

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

.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: 0s 0.6s opacity;
}
@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' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

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

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 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: #ECAD66 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: rgb(230.3662790698, 148.6860465116, 56.6337209302) !important;
}

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

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

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

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: rgb(30.1449275362, 125.8550724638, 52) !important;
}

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

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

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

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

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

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

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

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

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

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

.bg-primary-light {
  background-color: rgb(238.8168604651, 185.1569767442, 124.6831395349) !important;
}

a.bg-primary-light:hover, a.bg-primary-light:focus,
button.bg-primary-light:hover,
button.bg-primary-light:focus {
  background-color: rgb(233.1831395349, 160.8430232558, 79.3168604651) !important;
}

.bg-primary-light2 {
  background-color: rgb(241.6337209302, 197.3139534884, 147.3662790698) !important;
}

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

.bg-primary-dark {
  background-color: rgb(233.1831395349, 160.8430232558, 79.3168604651) !important;
}

a.bg-primary-dark:hover, a.bg-primary-dark:focus,
button.bg-primary-dark:hover,
button.bg-primary-dark:focus {
  background-color: rgb(227.5494186047, 136.5290697674, 33.9505813953) !important;
}

.bg-primary-darker {
  background-color: rgb(230.3662790698, 148.6860465116, 56.6337209302) !important;
}

a.bg-primary-darker:hover, a.bg-primary-darker:focus,
button.bg-primary-darker:hover,
button.bg-primary-darker:focus {
  background-color: rgb(209.9302325581, 123.488372093, 26.0697674419) !important;
}

.bg-accent {
  background-color: #6A6A6A !important;
}

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

.bg-accent-dark {
  background-color: rgb(67.75, 67.75, 67.75) !important;
}

a.bg-accent-dark:hover, a.bg-accent-dark:focus,
button.bg-accent-dark:hover,
button.bg-accent-dark:focus {
  background-color: rgb(42.25, 42.25, 42.25) !important;
}

.bg-lightgrey {
  background-color: #f2f2f2 !important;
}

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

.bg-lightgrey2 {
  background-color: #e7e7e7 !important;
}

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

.bg-lightgrey3 {
  background-color: #adb0b2 !important;
}

a.bg-lightgrey3:hover, a.bg-lightgrey3:focus,
button.bg-lightgrey3:hover,
button.bg-lightgrey3:focus {
  background-color: rgb(146.6981132075, 150.6603773585, 153.3018867925) !important;
}

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

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

.bg-w-trans {
  background-color: rgba(255, 255, 255, 0.15) !important;
}

a.bg-w-trans:hover, a.bg-w-trans:focus,
button.bg-w-trans:hover,
button.bg-w-trans:focus {
  background-color: rgba(229.5, 229.5, 229.5, 0.15) !important;
}

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

a.bg-blue-grey:hover, a.bg-blue-grey:focus,
button.bg-blue-grey:hover,
button.bg-blue-grey:focus {
  background-color: rgb(64.502617801, 70.3664921466, 75.497382199) !important;
}

.bg-error {
  background-color: #6A6A6A !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-primary-light {
  border-color: rgb(238.8168604651, 185.1569767442, 124.6831395349) !important;
}

.border-primary-light2 {
  border-color: rgb(241.6337209302, 197.3139534884, 147.3662790698) !important;
}

.border-primary-dark {
  border-color: rgb(233.1831395349, 160.8430232558, 79.3168604651) !important;
}

.border-primary-darker {
  border-color: rgb(230.3662790698, 148.6860465116, 56.6337209302) !important;
}

.border-accent {
  border-color: #6A6A6A !important;
}

.border-accent-dark {
  border-color: rgb(67.75, 67.75, 67.75) !important;
}

.border-lightgrey {
  border-color: #f2f2f2 !important;
}

.border-lightgrey2 {
  border-color: #e7e7e7 !important;
}

.border-lightgrey3 {
  border-color: #adb0b2 !important;
}

.border-grey {
  border-color: #393939 !important;
}

.border-w-trans {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.border-blue-grey {
  border-color: #586067 !important;
}

.border-error {
  border-color: #6A6A6A !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: 992px) {
  .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: 1200px) {
  .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: 1500px) {
  .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%;
}

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

.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: 992px) {
  .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: 1200px) {
  .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: 1500px) {
  .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: 992px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1500px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.overflow-auto {
  overflow: auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.w-90 {
  width: 90% !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;
}

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

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

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

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

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

.h-90 {
  height: 90% !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: 992px) {
  .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: 1200px) {
  .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: 1500px) {
  .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: 992px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1500px) {
  .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: 900 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

a.text-dark:hover, a.text-dark:focus {
  color: black !important;
}

.text-primary-light {
  color: rgb(238.8168604651, 185.1569767442, 124.6831395349) !important;
}

a.text-primary-light:hover, a.text-primary-light:focus {
  color: rgb(230.3662790698, 148.6860465116, 56.6337209302) !important;
}

.text-primary-light2 {
  color: rgb(241.6337209302, 197.3139534884, 147.3662790698) !important;
}

a.text-primary-light2:hover, a.text-primary-light2:focus {
  color: rgb(233.1831395349, 160.8430232558, 79.3168604651) !important;
}

.text-primary-dark {
  color: rgb(233.1831395349, 160.8430232558, 79.3168604651) !important;
}

a.text-primary-dark:hover, a.text-primary-dark:focus {
  color: rgb(209.9302325581, 123.488372093, 26.0697674419) !important;
}

.text-primary-darker {
  color: rgb(230.3662790698, 148.6860465116, 56.6337209302) !important;
}

a.text-primary-darker:hover, a.text-primary-darker:focus {
  color: rgb(187.2470930233, 110.1453488372, 23.2529069767) !important;
}

.text-accent {
  color: #6A6A6A !important;
}

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

.text-accent-dark {
  color: rgb(67.75, 67.75, 67.75) !important;
}

a.text-accent-dark:hover, a.text-accent-dark:focus {
  color: rgb(29.5, 29.5, 29.5) !important;
}

.text-lightgrey {
  color: #f2f2f2 !important;
}

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

.text-lightgrey2 {
  color: #e7e7e7 !important;
}

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

.text-lightgrey3 {
  color: #adb0b2 !important;
}

a.text-lightgrey3:hover, a.text-lightgrey3:focus {
  color: rgb(133.5471698113, 137.9905660377, 140.9528301887) !important;
}

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

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

.text-w-trans {
  color: rgba(255, 255, 255, 0.15) !important;
}

a.text-w-trans:hover, a.text-w-trans:focus {
  color: rgba(216.75, 216.75, 216.75, 0.15) !important;
}

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

a.text-blue-grey:hover, a.text-blue-grey:focus {
  color: rgb(52.7539267016, 57.5497382199, 61.7460732984) !important;
}

.text-error {
  color: #6A6A6A !important;
}

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

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

.text-muted {
  color: #586067 !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):not(button) {
    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: 1200px !important;
  }
  .container {
    min-width: 1200px !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: #e5e5e5;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #e5e5e5;
  }
}
/*!
 * Font Awesome Free 5.9.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.fotorama__fullscreen-icon,
.fotorama__zoom-out,
.fotorama__zoom-in,
.far,
.fal,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fotorama__fullscreen-icon, .fotorama__zoom-out, .fotorama__zoom-in {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
}

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

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

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

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

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

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

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

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

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

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

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

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

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

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

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

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

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

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

.fa.fa-pull-left,
.fas.fa-pull-left,
.fa-pull-left.fotorama__fullscreen-icon,
.fa-pull-left.fotorama__zoom-out,
.fa-pull-left.fotorama__zoom-in,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right,
.fa-pull-right.fotorama__fullscreen-icon,
.fa-pull-right.fotorama__zoom-out,
.fa-pull-right.fotorama__zoom-in,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: 0.3em;
}

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

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

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

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

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

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

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

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

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

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

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

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

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adobe:before {
  content: "\f778";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-bacon:before {
  content: "\f7e5";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-balance-scale-left:before {
  content: "\f515";
}

.fa-balance-scale-right:before {
  content: "\f516";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-biking:before {
  content: "\f84a";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blender:before {
  content: "\f517";
}

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

.fa-blind:before {
  content: "\f29d";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-border-all:before {
  content: "\f84c";
}

.fa-border-none:before {
  content: "\f850";
}

.fa-border-style:before {
  content: "\f853";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-bread-slice:before {
  content: "\f7ec";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-cheese:before {
  content: "\f7ef";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-clinic-medical:before {
  content: "\f7f2";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-crutch:before {
  content: "\f7f7";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edit:before {
  content: "\f044";
}

.fa-egg:before {
  content: "\f7fb";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fan:before {
  content: "\f863";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-download:before {
  content: "\f56d";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-upload:before {
  content: "\f574";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-fly:before {
  content: "\f417";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-haykal:before {
  content: "\f666";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-icons:before {
  content: "\f86d";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-key:before {
  content: "\f084";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

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

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

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

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

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

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

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-parking:before {
  content: "\f540";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

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

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

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

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

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

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

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

.fa-phone-square-alt:before {
  content: "\f87b";
}

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

.fa-photo-video:before {
  content: "\f87c";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-remove-format:before {
  content: "\f87d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-down-alt:before {
  content: "\f881";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-alpha-up-alt:before {
  content: "\f882";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-down-alt:before {
  content: "\f884";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-amount-up-alt:before {
  content: "\f885";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-down-alt:before {
  content: "\f886";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-numeric-up-alt:before {
  content: "\f887";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-spell-check:before {
  content: "\f891";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-trello:before {
  content: "\f181";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-voicemail:before {
  content: "\f897";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-water:before {
  content: "\f773";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

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

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

/*!
 * Font Awesome Free 5.9.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url("../webfonts/fa-brands-400.eot");
  src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
}

/*!
 * Font Awesome Free 5.9.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: auto;
  src: url("../webfonts/fa-regular-400.eot");
  src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg");
}
.far {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

/*!
 * Font Awesome Free 5.9.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("../webfonts/fa-solid-900.eot");
  src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa,
.fas,
.fotorama__fullscreen-icon,
.fotorama__zoom-out,
.fotorama__zoom-in {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/*!
 * Font Awesome Free 5.9.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa.fa-glass:before {
  content: "\f000";
}

.fa.fa-meetup {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-star-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-star-o:before {
  content: "\f005";
}

.fa.fa-remove:before {
  content: "\f00d";
}

.fa.fa-close:before {
  content: "\f00d";
}

.fa.fa-gear:before {
  content: "\f013";
}

.fa.fa-trash-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-trash-o:before {
  content: "\f2ed";
}

.fa.fa-file-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-o:before {
  content: "\f15b";
}

.fa.fa-clock-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-clock-o:before {
  content: "\f017";
}

.fa.fa-arrow-circle-o-down {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-down:before {
  content: "\f358";
}

.fa.fa-arrow-circle-o-up {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-up:before {
  content: "\f35b";
}

.fa.fa-play-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-play-circle-o:before {
  content: "\f144";
}

.fa.fa-repeat:before {
  content: "\f01e";
}

.fa.fa-rotate-right:before {
  content: "\f01e";
}

.fa.fa-refresh:before {
  content: "\f021";
}

.fa.fa-list-alt {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-dedent:before {
  content: "\f03b";
}

.fa.fa-video-camera:before {
  content: "\f03d";
}

.fa.fa-picture-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-picture-o:before {
  content: "\f03e";
}

.fa.fa-photo {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-photo:before {
  content: "\f03e";
}

.fa.fa-image {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-image:before {
  content: "\f03e";
}

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

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

.fa.fa-pencil-square-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-pencil-square-o:before {
  content: "\f044";
}

.fa.fa-share-square-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-share-square-o:before {
  content: "\f14d";
}

.fa.fa-check-square-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-check-square-o:before {
  content: "\f14a";
}

.fa.fa-arrows:before {
  content: "\f0b2";
}

.fa.fa-times-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-times-circle-o:before {
  content: "\f057";
}

.fa.fa-check-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-check-circle-o:before {
  content: "\f058";
}

.fa.fa-mail-forward:before {
  content: "\f064";
}

.fa.fa-eye {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-eye-slash {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-warning:before {
  content: "\f071";
}

.fa.fa-calendar:before {
  content: "\f073";
}

.fa.fa-arrows-v:before {
  content: "\f338";
}

.fa.fa-arrows-h:before {
  content: "\f337";
}

.fa.fa-bar-chart {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-bar-chart:before {
  content: "\f080";
}

.fa.fa-bar-chart-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-bar-chart-o:before {
  content: "\f080";
}

.fa.fa-twitter-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-facebook-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gears:before {
  content: "\f085";
}

.fa.fa-thumbs-o-up {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-thumbs-o-up:before {
  content: "\f164";
}

.fa.fa-thumbs-o-down {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-thumbs-o-down:before {
  content: "\f165";
}

.fa.fa-heart-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-heart-o:before {
  content: "\f004";
}

.fa.fa-sign-out:before {
  content: "\f2f5";
}

.fa.fa-linkedin-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-linkedin-square:before {
  content: "\f08c";
}

.fa.fa-thumb-tack:before {
  content: "\f08d";
}

.fa.fa-external-link:before {
  content: "\f35d";
}

.fa.fa-sign-in:before {
  content: "\f2f6";
}

.fa.fa-github-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-lemon-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-lemon-o:before {
  content: "\f094";
}

.fa.fa-square-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-square-o:before {
  content: "\f0c8";
}

.fa.fa-bookmark-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-bookmark-o:before {
  content: "\f02e";
}

.fa.fa-twitter {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-facebook {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-facebook:before {
  content: "\f39e";
}

.fa.fa-facebook-f {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-facebook-f:before {
  content: "\f39e";
}

.fa.fa-github {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-credit-card {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-feed:before {
  content: "\f09e";
}

.fa.fa-hdd-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hdd-o:before {
  content: "\f0a0";
}

.fa.fa-hand-o-right {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa.fa-hand-o-left {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa.fa-hand-o-up {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa.fa-hand-o-down {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa.fa-arrows-alt:before {
  content: "\f31e";
}

.fa.fa-group:before {
  content: "\f0c0";
}

.fa.fa-chain:before {
  content: "\f0c1";
}

.fa.fa-scissors:before {
  content: "\f0c4";
}

.fa.fa-files-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-files-o:before {
  content: "\f0c5";
}

.fa.fa-floppy-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-floppy-o:before {
  content: "\f0c7";
}

.fa.fa-navicon:before {
  content: "\f0c9";
}

.fa.fa-reorder:before {
  content: "\f0c9";
}

.fa.fa-pinterest {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-pinterest-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-plus-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-plus {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-plus:before {
  content: "\f0d5";
}

.fa.fa-money {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-money:before {
  content: "\f3d1";
}

.fa.fa-unsorted:before {
  content: "\f0dc";
}

.fa.fa-sort-desc:before {
  content: "\f0dd";
}

.fa.fa-sort-asc:before {
  content: "\f0de";
}

.fa.fa-linkedin {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-linkedin:before {
  content: "\f0e1";
}

.fa.fa-rotate-left:before {
  content: "\f0e2";
}

.fa.fa-legal:before {
  content: "\f0e3";
}

.fa.fa-tachometer:before {
  content: "\f3fd";
}

.fa.fa-dashboard:before {
  content: "\f3fd";
}

.fa.fa-comment-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-comment-o:before {
  content: "\f075";
}

.fa.fa-comments-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-comments-o:before {
  content: "\f086";
}

.fa.fa-flash:before {
  content: "\f0e7";
}

.fa.fa-clipboard {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-paste {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-paste:before {
  content: "\f328";
}

.fa.fa-lightbulb-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa.fa-exchange:before {
  content: "\f362";
}

.fa.fa-cloud-download:before {
  content: "\f381";
}

.fa.fa-cloud-upload:before {
  content: "\f382";
}

.fa.fa-bell-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-bell-o:before {
  content: "\f0f3";
}

.fa.fa-cutlery:before {
  content: "\f2e7";
}

.fa.fa-file-text-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-text-o:before {
  content: "\f15c";
}

.fa.fa-building-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-building-o:before {
  content: "\f1ad";
}

.fa.fa-hospital-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hospital-o:before {
  content: "\f0f8";
}

.fa.fa-tablet:before {
  content: "\f3fa";
}

.fa.fa-mobile:before {
  content: "\f3cd";
}

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

.fa.fa-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-circle-o:before {
  content: "\f111";
}

.fa.fa-mail-reply:before {
  content: "\f3e5";
}

.fa.fa-github-alt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-folder-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-folder-o:before {
  content: "\f07b";
}

.fa.fa-folder-open-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-folder-open-o:before {
  content: "\f07c";
}

.fa.fa-smile-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-smile-o:before {
  content: "\f118";
}

.fa.fa-frown-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-frown-o:before {
  content: "\f119";
}

.fa.fa-meh-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-meh-o:before {
  content: "\f11a";
}

.fa.fa-keyboard-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-keyboard-o:before {
  content: "\f11c";
}

.fa.fa-flag-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-flag-o:before {
  content: "\f024";
}

.fa.fa-mail-reply-all:before {
  content: "\f122";
}

.fa.fa-star-half-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-star-half-o:before {
  content: "\f089";
}

.fa.fa-star-half-empty {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-star-half-empty:before {
  content: "\f089";
}

.fa.fa-star-half-full {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-star-half-full:before {
  content: "\f089";
}

.fa.fa-code-fork:before {
  content: "\f126";
}

.fa.fa-chain-broken:before {
  content: "\f127";
}

.fa.fa-shield:before {
  content: "\f3ed";
}

.fa.fa-calendar-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-calendar-o:before {
  content: "\f133";
}

.fa.fa-maxcdn {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-html5 {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-css3 {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ticket:before {
  content: "\f3ff";
}

.fa.fa-minus-square-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-minus-square-o:before {
  content: "\f146";
}

.fa.fa-level-up:before {
  content: "\f3bf";
}

.fa.fa-level-down:before {
  content: "\f3be";
}

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

.fa.fa-external-link-square:before {
  content: "\f360";
}

.fa.fa-compass {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-caret-square-o-down {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-caret-square-o-down:before {
  content: "\f150";
}

.fa.fa-toggle-down {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-toggle-down:before {
  content: "\f150";
}

.fa.fa-caret-square-o-up {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-caret-square-o-up:before {
  content: "\f151";
}

.fa.fa-toggle-up {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-toggle-up:before {
  content: "\f151";
}

.fa.fa-caret-square-o-right {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-caret-square-o-right:before {
  content: "\f152";
}

.fa.fa-toggle-right {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-toggle-right:before {
  content: "\f152";
}

.fa.fa-eur:before {
  content: "\f153";
}

.fa.fa-euro:before {
  content: "\f153";
}

.fa.fa-gbp:before {
  content: "\f154";
}

.fa.fa-usd:before {
  content: "\f155";
}

.fa.fa-dollar:before {
  content: "\f155";
}

.fa.fa-inr:before {
  content: "\f156";
}

.fa.fa-rupee:before {
  content: "\f156";
}

.fa.fa-jpy:before {
  content: "\f157";
}

.fa.fa-cny:before {
  content: "\f157";
}

.fa.fa-rmb:before {
  content: "\f157";
}

.fa.fa-yen:before {
  content: "\f157";
}

.fa.fa-rub:before {
  content: "\f158";
}

.fa.fa-ruble:before {
  content: "\f158";
}

.fa.fa-rouble:before {
  content: "\f158";
}

.fa.fa-krw:before {
  content: "\f159";
}

.fa.fa-won:before {
  content: "\f159";
}

.fa.fa-btc {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bitcoin {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bitcoin:before {
  content: "\f15a";
}

.fa.fa-file-text:before {
  content: "\f15c";
}

.fa.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa.fa-youtube-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-youtube {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-xing {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-xing-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-youtube-play {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-youtube-play:before {
  content: "\f167";
}

.fa.fa-dropbox {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-stack-overflow {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-instagram {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-flickr {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-adn {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bitbucket {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bitbucket-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bitbucket-square:before {
  content: "\f171";
}

.fa.fa-tumblr {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-tumblr-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-long-arrow-down:before {
  content: "\f309";
}

.fa.fa-long-arrow-up:before {
  content: "\f30c";
}

.fa.fa-long-arrow-left:before {
  content: "\f30a";
}

.fa.fa-long-arrow-right:before {
  content: "\f30b";
}

.fa.fa-apple {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-windows {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-android {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-linux {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-dribbble {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-skype {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-foursquare {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-trello {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gratipay {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gittip {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gittip:before {
  content: "\f184";
}

.fa.fa-sun-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-sun-o:before {
  content: "\f185";
}

.fa.fa-moon-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-moon-o:before {
  content: "\f186";
}

.fa.fa-vk {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-weibo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-renren {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-pagelines {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-stack-exchange {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-right {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-right:before {
  content: "\f35a";
}

.fa.fa-arrow-circle-o-left {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-arrow-circle-o-left:before {
  content: "\f359";
}

.fa.fa-caret-square-o-left {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-caret-square-o-left:before {
  content: "\f191";
}

.fa.fa-toggle-left {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-toggle-left:before {
  content: "\f191";
}

.fa.fa-dot-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-dot-circle-o:before {
  content: "\f192";
}

.fa.fa-vimeo-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-try:before {
  content: "\f195";
}

.fa.fa-turkish-lira:before {
  content: "\f195";
}

.fa.fa-plus-square-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-plus-square-o:before {
  content: "\f0fe";
}

.fa.fa-slack {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wordpress {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-openid {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-institution:before {
  content: "\f19c";
}

.fa.fa-bank:before {
  content: "\f19c";
}

.fa.fa-mortar-board:before {
  content: "\f19d";
}

.fa.fa-yahoo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-reddit {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-reddit-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-stumbleupon-circle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-stumbleupon {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-delicious {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-digg {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-pied-piper-pp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-pied-piper-alt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-drupal {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-joomla {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-spoon:before {
  content: "\f2e5";
}

.fa.fa-behance {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-behance-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-steam {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-steam-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-automobile:before {
  content: "\f1b9";
}

.fa.fa-cab:before {
  content: "\f1ba";
}

.fa.fa-envelope-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-envelope-o:before {
  content: "\f0e0";
}

.fa.fa-deviantart {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-soundcloud {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-file-pdf-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa.fa-file-word-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-word-o:before {
  content: "\f1c2";
}

.fa.fa-file-excel-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa.fa-file-powerpoint-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa.fa-file-image-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-image-o:before {
  content: "\f1c5";
}

.fa.fa-file-photo-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-photo-o:before {
  content: "\f1c5";
}

.fa.fa-file-picture-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-picture-o:before {
  content: "\f1c5";
}

.fa.fa-file-archive-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-archive-o:before {
  content: "\f1c6";
}

.fa.fa-file-zip-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-zip-o:before {
  content: "\f1c6";
}

.fa.fa-file-audio-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-audio-o:before {
  content: "\f1c7";
}

.fa.fa-file-sound-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-sound-o:before {
  content: "\f1c7";
}

.fa.fa-file-video-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-video-o:before {
  content: "\f1c8";
}

.fa.fa-file-movie-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-movie-o:before {
  content: "\f1c8";
}

.fa.fa-file-code-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-file-code-o:before {
  content: "\f1c9";
}

.fa.fa-vine {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-codepen {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-jsfiddle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-life-ring {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-life-bouy {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-life-bouy:before {
  content: "\f1cd";
}

.fa.fa-life-buoy {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-life-buoy:before {
  content: "\f1cd";
}

.fa.fa-life-saver {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-life-saver:before {
  content: "\f1cd";
}

.fa.fa-support {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-support:before {
  content: "\f1cd";
}

.fa.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa.fa-rebel {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ra {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ra:before {
  content: "\f1d0";
}

.fa.fa-resistance {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-resistance:before {
  content: "\f1d0";
}

.fa.fa-empire {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ge {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ge:before {
  content: "\f1d1";
}

.fa.fa-git-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-git {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-hacker-news {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-y-combinator-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-y-combinator-square:before {
  content: "\f1d4";
}

.fa.fa-yc-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-yc-square:before {
  content: "\f1d4";
}

.fa.fa-tencent-weibo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-qq {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-weixin {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wechat {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wechat:before {
  content: "\f1d7";
}

.fa.fa-send:before {
  content: "\f1d8";
}

.fa.fa-paper-plane-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-paper-plane-o:before {
  content: "\f1d8";
}

.fa.fa-send-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-send-o:before {
  content: "\f1d8";
}

.fa.fa-circle-thin {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-circle-thin:before {
  content: "\f111";
}

.fa.fa-header:before {
  content: "\f1dc";
}

.fa.fa-sliders:before {
  content: "\f1de";
}

.fa.fa-futbol-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-futbol-o:before {
  content: "\f1e3";
}

.fa.fa-soccer-ball-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-soccer-ball-o:before {
  content: "\f1e3";
}

.fa.fa-slideshare {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-twitch {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-yelp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-newspaper-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa.fa-paypal {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-wallet {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-visa {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-mastercard {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-discover {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-amex {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-paypal {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-stripe {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bell-slash-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-bell-slash-o:before {
  content: "\f1f6";
}

.fa.fa-trash:before {
  content: "\f2ed";
}

.fa.fa-copyright {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-eyedropper:before {
  content: "\f1fb";
}

.fa.fa-area-chart:before {
  content: "\f1fe";
}

.fa.fa-pie-chart:before {
  content: "\f200";
}

.fa.fa-line-chart:before {
  content: "\f201";
}

.fa.fa-lastfm {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-lastfm-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ioxhost {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-angellist {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-cc:before {
  content: "\f20a";
}

.fa.fa-ils:before {
  content: "\f20b";
}

.fa.fa-shekel:before {
  content: "\f20b";
}

.fa.fa-sheqel:before {
  content: "\f20b";
}

.fa.fa-meanpath {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-meanpath:before {
  content: "\f2b4";
}

.fa.fa-buysellads {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-connectdevelop {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-dashcube {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-forumbee {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-leanpub {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-sellsy {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-shirtsinbulk {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-simplybuilt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-skyatlas {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-diamond {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-diamond:before {
  content: "\f3a5";
}

.fa.fa-intersex:before {
  content: "\f224";
}

.fa.fa-facebook-official {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-facebook-official:before {
  content: "\f09a";
}

.fa.fa-pinterest-p {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-whatsapp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-hotel:before {
  content: "\f236";
}

.fa.fa-viacoin {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-medium {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-y-combinator {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-yc {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-yc:before {
  content: "\f23b";
}

.fa.fa-optin-monster {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-opencart {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-expeditedssl {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-battery-4:before {
  content: "\f240";
}

.fa.fa-battery:before {
  content: "\f240";
}

.fa.fa-battery-3:before {
  content: "\f241";
}

.fa.fa-battery-2:before {
  content: "\f242";
}

.fa.fa-battery-1:before {
  content: "\f243";
}

.fa.fa-battery-0:before {
  content: "\f244";
}

.fa.fa-object-group {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-object-ungroup {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-sticky-note-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-sticky-note-o:before {
  content: "\f249";
}

.fa.fa-cc-jcb {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-cc-diners-club {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-clone {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hourglass-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hourglass-o:before {
  content: "\f254";
}

.fa.fa-hourglass-1:before {
  content: "\f251";
}

.fa.fa-hourglass-2:before {
  content: "\f252";
}

.fa.fa-hourglass-3:before {
  content: "\f253";
}

.fa.fa-hand-rock-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-rock-o:before {
  content: "\f255";
}

.fa.fa-hand-grab-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-grab-o:before {
  content: "\f255";
}

.fa.fa-hand-paper-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-paper-o:before {
  content: "\f256";
}

.fa.fa-hand-stop-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-stop-o:before {
  content: "\f256";
}

.fa.fa-hand-scissors-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa.fa-hand-lizard-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa.fa-hand-spock-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-spock-o:before {
  content: "\f259";
}

.fa.fa-hand-pointer-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa.fa-hand-peace-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa.fa-registered {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-creative-commons {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gg {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gg-circle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-tripadvisor {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-odnoklassniki {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-odnoklassniki-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-get-pocket {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wikipedia-w {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-safari {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-chrome {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-firefox {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-opera {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-internet-explorer {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-television:before {
  content: "\f26c";
}

.fa.fa-contao {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-500px {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-amazon {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-calendar-plus-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa.fa-calendar-minus-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa.fa-calendar-times-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-calendar-times-o:before {
  content: "\f273";
}

.fa.fa-calendar-check-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-calendar-check-o:before {
  content: "\f274";
}

.fa.fa-map-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-map-o:before {
  content: "\f279";
}

.fa.fa-commenting:before {
  content: "\f4ad";
}

.fa.fa-commenting-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-commenting-o:before {
  content: "\f4ad";
}

.fa.fa-houzz {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-vimeo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-vimeo:before {
  content: "\f27d";
}

.fa.fa-black-tie {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-fonticons {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-reddit-alien {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-edge {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-credit-card-alt:before {
  content: "\f09d";
}

.fa.fa-codiepie {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-modx {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-fort-awesome {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-usb {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-product-hunt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-mixcloud {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-scribd {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-pause-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-pause-circle-o:before {
  content: "\f28b";
}

.fa.fa-stop-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-stop-circle-o:before {
  content: "\f28d";
}

.fa.fa-bluetooth {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-bluetooth-b {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-gitlab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wpbeginner {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wpforms {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-envira {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wheelchair-alt {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wheelchair-alt:before {
  content: "\f368";
}

.fa.fa-question-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-question-circle-o:before {
  content: "\f059";
}

.fa.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa.fa-asl-interpreting:before {
  content: "\f2a3";
}

.fa.fa-deafness:before {
  content: "\f2a4";
}

.fa.fa-hard-of-hearing:before {
  content: "\f2a4";
}

.fa.fa-glide {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-glide-g {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-signing:before {
  content: "\f2a7";
}

.fa.fa-viadeo {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-viadeo-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-snapchat {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-snapchat-ghost {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-snapchat-square {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-pied-piper {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-first-order {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-yoast {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-themeisle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-plus-official {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-plus-official:before {
  content: "\f2b3";
}

.fa.fa-google-plus-circle {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-google-plus-circle:before {
  content: "\f2b3";
}

.fa.fa-font-awesome {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-fa {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-fa:before {
  content: "\f2b4";
}

.fa.fa-handshake-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-handshake-o:before {
  content: "\f2b5";
}

.fa.fa-envelope-open-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-envelope-open-o:before {
  content: "\f2b6";
}

.fa.fa-linode {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-address-book-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-address-book-o:before {
  content: "\f2b9";
}

.fa.fa-vcard:before {
  content: "\f2bb";
}

.fa.fa-address-card-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-address-card-o:before {
  content: "\f2bb";
}

.fa.fa-vcard-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-vcard-o:before {
  content: "\f2bb";
}

.fa.fa-user-circle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-user-circle-o:before {
  content: "\f2bd";
}

.fa.fa-user-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-user-o:before {
  content: "\f007";
}

.fa.fa-id-badge {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-drivers-license:before {
  content: "\f2c2";
}

.fa.fa-id-card-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-id-card-o:before {
  content: "\f2c2";
}

.fa.fa-drivers-license-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-drivers-license-o:before {
  content: "\f2c2";
}

.fa.fa-quora {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-free-code-camp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-telegram {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-thermometer-4:before {
  content: "\f2c7";
}

.fa.fa-thermometer:before {
  content: "\f2c7";
}

.fa.fa-thermometer-3:before {
  content: "\f2c8";
}

.fa.fa-thermometer-2:before {
  content: "\f2c9";
}

.fa.fa-thermometer-1:before {
  content: "\f2ca";
}

.fa.fa-thermometer-0:before {
  content: "\f2cb";
}

.fa.fa-bathtub:before {
  content: "\f2cd";
}

.fa.fa-s15:before {
  content: "\f2cd";
}

.fa.fa-window-maximize {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-window-restore {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-times-rectangle:before {
  content: "\f410";
}

.fa.fa-window-close-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-window-close-o:before {
  content: "\f410";
}

.fa.fa-times-rectangle-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-times-rectangle-o:before {
  content: "\f410";
}

.fa.fa-bandcamp {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-grav {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-etsy {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-imdb {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-ravelry {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-eercast {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-eercast:before {
  content: "\f2da";
}

.fa.fa-snowflake-o {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

.fa.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa.fa-superpowers {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-wpexplorer {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa.fa-spotify {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

[aria-label=breadcrumb] .breadcrumb {
  padding: 1.5rem 0.625rem 0.75rem;
  color: #bfc1c4;
}
[aria-label=breadcrumb] .breadcrumb .breadcrumb-item {
  color: #adb5bd !important;
  font-size: 12px !important;
}
@media (max-width: 1199.98px) {
  [aria-label=breadcrumb] .breadcrumb .breadcrumb-item {
    font-size: 0.75rem;
  }
}
[aria-label=breadcrumb] .breadcrumb .breadcrumb-item::before {
  font-family: "fontello";
  color: #586067;
  padding-right: 0.25rem;
}
[aria-label=breadcrumb] .breadcrumb .breadcrumb-item a {
  color: #adb5bd;
}
[aria-label=breadcrumb] hr {
  margin-top: 2.25rem;
}

.catalog-category-view #page-title-heading, .catalog-category-view #page-title-heading span, .page-products #page-title-heading, .page-products #page-title-heading span {
  text-shadow: var(--catalog-category-page-title-text-shadow);
}
.catalog-category-view .personal-guidance, .page-products .personal-guidance {
  display: none;
}
.catalog-category-view .category-image img, .page-products .category-image img {
  width: 100% !important;
  max-height: 50vh;
  object-fit: cover;
}
.catalog-category-view .category-image + .container, .page-products .category-image + .container {
  margin-top: -4rem;
  background: #f0f0f0;
  z-index: 200;
  position: relative;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
@media (max-width: 1199.98px) {
  .catalog-category-view h1, .page-products h1 {
    font-size: 1.625rem;
    font-weight: 900 !important;
  }
  .catalog-category-view h1 span, .page-products h1 span {
    font-size: inherit;
    line-height: inherit;
  }
}
@media (min-width: 992px) {
  .catalog-category-view h1, .page-products h1 {
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: 0.9375rem;
    margin-top: 0;
  }
  .catalog-category-view h1 span, .page-products h1 span {
    font-size: inherit;
    line-height: inherit;
  }
}
.catalog-category-view .product-list-count, .page-products .product-list-count {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.875rem;
}
@media (min-width: 992px) {
  .catalog-category-view .product-list-count, .page-products .product-list-count {
    margin-top: 1.25rem;
  }
}
.catalog-category-view .product-list-count hr, .page-products .product-list-count hr {
  margin-left: 0.625rem;
}
@media (min-width: 992px) {
  .catalog-category-view .category-description, .page-products .category-description {
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 25px;
    padding-right: 10%;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.catalog-category-view .category-description table, .page-products .category-description table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 1199.98px) {
  .catalog-category-view .category-description h2, .page-products .category-description h2 {
    font-size: 1.1875rem;
    color: #ECAD66;
    font-weight: 400;
  }
}
@media (min-width: 992px) {
  .catalog-category-view .category-description h2, .page-products .category-description h2 {
    font-size: 1.625rem;
  }
}
@media (max-width: 1199.98px) {
  .catalog-category-view .category-description h3, .page-products .category-description h3 {
    font-size: 0.9375rem;
    color: #ECAD66;
    font-weight: 600;
  }
}
@media (min-width: 992px) {
  .catalog-category-view .category-description h3, .page-products .category-description h3 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.375rem;
  }
}
.catalog-category-view .category-description p, .page-products .category-description p {
  color: #222222;
}
@media (max-width: 1199.98px) {
  .catalog-category-view .category-description p, .page-products .category-description p {
    font-size: 0.8125rem;
    padding-top: 0.9375rem;
    padding-bottom: 1.25rem;
  }
}
.catalog-category-view .category-description ul, .page-products .category-description ul {
  font-family: "Roboto Condensed", sans-serif;
  list-style: none outside none;
  padding-left: 0;
  margin-left: 0.5rem;
}
.catalog-category-view .category-description ul li:before, .page-products .category-description ul li:before {
  content: "•";
  margin-left: -0.5rem;
  width: 0.5rem;
  display: inline-block;
}
.catalog-category-view .category-description ul, .page-products .category-description ul {
  font-size: 0.875rem;
}
.catalog-category-view .catalog-left-nav strong.h3, .page-products .catalog-left-nav strong.h3 {
  font-size: 1rem;
  font-weight: bold;
  background: #ECAD66;
  color: white;
  line-height: 1;
  padding: 1rem;
  display: block;
  margin-bottom: 0;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.catalog-category-view .catalog-left-nav .nav, .page-products .catalog-left-nav .nav {
  border-left: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.catalog-category-view .catalog-left-nav .nav .nav-item, .page-products .catalog-left-nav .nav .nav-item {
  border-bottom: 1px solid #f2f2f2;
}
.catalog-category-view .catalog-left-nav .nav .nav-item:last-child, .page-products .catalog-left-nav .nav .nav-item:last-child {
  border-bottom: 0;
}
.catalog-category-view .catalog-left-nav .nav .nav-item .nav-link, .page-products .catalog-left-nav .nav .nav-item .nav-link {
  color: black;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.8125rem;
}
.catalog-category-view .product-items .price-box, .page-products .product-items .price-box {
  line-height: 1;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: end !important;
}
.catalog-category-view .product-items .price-box .old-price, .page-products .product-items .price-box .old-price {
  color: #6A6A6A;
  text-decoration: line-through;
  font-size: 0.8125rem;
  font-weight: 400;
  display: inline-block;
}
@media (min-width: 992px) {
  .catalog-category-view .product-items.viewmode-grid img, .page-products .product-items.viewmode-grid img {
    padding-top: 2rem;
  }
}
.catalog-category-view .product-items.viewmode-grid .price-box p, .page-products .product-items.viewmode-grid .price-box p {
  white-space: nowrap;
  margin-left: -2.5rem;
}
@media (min-width: 992px) {
  .catalog-category-view .product-items.viewmode-list .towishlist, .page-products .product-items.viewmode-list .towishlist {
    margin-right: 0;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .catalog-category-view .product-items.viewmode-list .product-item .product-item-photo, .page-products .product-items.viewmode-list .product-item .product-item-photo {
    height: 100%;
    margin-top: 32px;
    display: block;
  }
  .catalog-category-view .product-items.viewmode-list .product-item .product-item-photo img, .page-products .product-items.viewmode-list .product-item .product-item-photo img {
    height: 170px;
  }
}
@media (min-width: 992px) {
  .catalog-category-view .product-items.viewmode-list .product-item .col-md-4, .page-products .product-items.viewmode-list .product-item .col-md-4 {
    border-right: 1px solid #e7e7e7;
  }
  .catalog-category-view .product-items.viewmode-list .product-item .col-md-4:last-child, .page-products .product-items.viewmode-list .product-item .col-md-4:last-child {
    border: none;
  }
}
@media (min-width: 992px) {
  .catalog-category-view .product-items.viewmode-list .tier-headline, .page-products .product-items.viewmode-list .tier-headline {
    display: inline-block;
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .catalog-category-view .product-items.viewmode-list .addtocart, .page-products .product-items.viewmode-list .addtocart {
    margin-top: 15px;
  }
}
@media (max-width: 1199.98px) {
  .catalog-category-view .product-items.viewmode-list .addtocart .input-group input, .page-products .product-items.viewmode-list .addtocart .input-group input {
    height: 63px;
  }
}
@media (max-width: 1199.98px) {
  .catalog-category-view .product-items.viewmode-list .addtocart .input-group, .page-products .product-items.viewmode-list .addtocart .input-group {
    height: 63px;
  }
}
.catalog-category-view .product-items .product-item, .page-products .product-items .product-item {
  position: relative;
}
.catalog-category-view .product-items .product-item .product-item-photo img, .page-products .product-items .product-item .product-item-photo img {
  height: auto;
  margin: auto;
  width: 100%;
}
.catalog-category-view .product-items .product-item:hover .view-product-link, .page-products .product-items .product-item:hover .view-product-link {
  opacity: 1;
}
.catalog-category-view .product-items .product-item .view-product-link, .page-products .product-items .product-item .view-product-link {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 4rem;
  border-radius: 0.5rem;
  letter-spacing: 0.07rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .catalog-category-view .product-items .product-item .availability, .page-products .product-items .product-item .availability {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.8125rem;
    line-height: 1;
  }
  .catalog-category-view .product-items .product-item .availability .icon-ms-truck, .page-products .product-items .product-item .availability .icon-ms-truck {
    font-size: 18px;
    vertical-align: -2px;
  }
}
@media (min-width: 992px) {
  .catalog-category-view .product-items .product-item .product-attribute-container, .page-products .product-items .product-item .product-attribute-container {
    position: absolute;
    z-index: 1010;
    left: 0;
  }
}
@media (min-width: 992px) {
  .catalog-category-view .product-items .product-item .product-item-link, .page-products .product-items .product-item .product-item-link {
    font-size: 1rem;
    letter-spacing: 0.02rem;
    height: 70px;
    display: inline-block;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
  }
}
@media (min-width: 992px) {
  .catalog-category-view .product-items .product-item .qty-inc, .catalog-category-view .product-items .product-item .qty-dec, .page-products .product-items .product-item .qty-inc, .page-products .product-items .product-item .qty-dec {
    font-size: 0.75rem !important;
    line-height: 0.5 !important;
    padding: 0.375rem 0.5rem !important;
    cursor: pointer !important;
  }
}
@media (min-width: 992px) {
  .catalog-category-view .toolbar-top, .page-products .toolbar-top {
    padding-left: 15px;
    padding-right: 30px;
  }
}
.catalog-category-view .toolbar .form-control, .page-products .toolbar .form-control {
  box-shadow: 0 0 5px 0 #e7e7e7;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  color: #222222;
  font-size: 0.875rem;
}
.catalog-category-view .toolbar, .page-products .toolbar {
  margin-left: -1rem;
  margin-right: -1rem;
}
.catalog-category-view .toolbar .modes, .page-products .toolbar .modes {
  font-size: 1rem;
}
@media (min-width: 992px) {
  .catalog-category-view .toolbar .modes *:last-child, .page-products .toolbar .modes *:last-child {
    margin-right: 1.25rem;
  }
  .catalog-category-view .toolbar .modes .active i, .page-products .toolbar .modes .active i {
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 0 5px 0 #e7e7e7;
  }
}
.catalog-category-view .toolbar .modes i, .page-products .toolbar .modes i {
  color: #6A6A6A;
}
@media (max-width: 1199.98px) {
  .catalog-category-view .toolbar .modes a i, .page-products .toolbar .modes a i {
    color: #fff;
  }
}
@media (min-width: 992px) {
  .catalog-category-view .toolbar .modes a i, .page-products .toolbar .modes a i {
    color: #ECAD66;
  }
}
.catalog-category-view .toolbar .toolbar-filter, .page-products .toolbar .toolbar-filter {
  font-size: 1rem;
  margin-left: 1rem;
}
@media (max-width: 1199.98px) {
  .catalog-category-view .toolbar .toolbar-sorter select, .page-products .toolbar .toolbar-sorter select {
    color: white;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    box-shadow: none;
    font-size: 1rem;
    max-width: 70%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.catalog-category-view .toolbar .toolbar-sorter .sorter-action, .page-products .toolbar .toolbar-sorter .sorter-action {
  margin-left: 0.4rem;
}
.catalog-category-view .toolbar .toolbar-sorter .sorter-action *:first-child, .page-products .toolbar .toolbar-sorter .sorter-action *:first-child {
  margin-right: -0.65rem;
}
.catalog-category-view .toolbar .toolbar-sorter a, .page-products .toolbar .toolbar-sorter a {
  font-size: 1rem;
  line-height: 1.1rem;
  text-decoration: none;
}
.catalog-category-view .toolbar .toolbar-sorter a:active, .catalog-category-view .toolbar .toolbar-sorter a:focus, .page-products .toolbar .toolbar-sorter a:active, .page-products .toolbar .toolbar-sorter a:focus {
  text-decoration: none;
}
.catalog-category-view .toolbar .toolbar-sorter a i::before, .page-products .toolbar .toolbar-sorter a i::before {
  width: auto;
  margin: 0;
}

.baseprice {
  font-size: 0.75rem !important;
  color: #adb5bd !important;
}

.catalog-category-view .owl-carousel.product-widget-carousel .owl-item, .block-products-list .owl-carousel.product-widget-carousel .owl-item, .page-products .owl-carousel.product-widget-carousel .owl-item {
  padding: 0.25rem;
}
@media (min-width: 992px) {
  .catalog-category-view .owl-carousel .owl-stage-outer, .block-products-list .owl-carousel .owl-stage-outer, .page-products .owl-carousel .owl-stage-outer {
    width: 101.5%;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: -10px;
    margin-bottom: -10px;
    padding-left: 10px;
    margin-left: -10px;
  }
}
.catalog-category-view .owl-carousel .owl-nav, .block-products-list .owl-carousel .owl-nav, .page-products .owl-carousel .owl-nav {
  display: flex;
  position: absolute;
  top: -2.5rem;
  right: 0;
  font-size: 1.0625rem;
}
.catalog-category-view .owl-carousel .owl-nav .owl-prev, .catalog-category-view .owl-carousel .owl-nav .owl-next, .block-products-list .owl-carousel .owl-nav .owl-prev, .block-products-list .owl-carousel .owl-nav .owl-next, .page-products .owl-carousel .owl-nav .owl-prev, .page-products .owl-carousel .owl-nav .owl-next {
  height: 2rem;
  width: 2rem;
  box-shadow: 0 0 6px 0 lightgrey;
  border-radius: 100%;
  line-height: 2rem;
  padding-top: 0;
  color: #6A6A6A;
  text-align: center;
  margin: 0 5px;
  transition: color 0.5s ease-in-out;
}
.catalog-category-view .owl-carousel .owl-nav .owl-prev.disabled, .catalog-category-view .owl-carousel .owl-nav .owl-next.disabled, .block-products-list .owl-carousel .owl-nav .owl-prev.disabled, .block-products-list .owl-carousel .owl-nav .owl-next.disabled, .page-products .owl-carousel .owl-nav .owl-prev.disabled, .page-products .owl-carousel .owl-nav .owl-next.disabled {
  color: #e7e7e7;
}
.catalog-category-view .owl-carousel .owl-nav .owl-prev i:before, .block-products-list .owl-carousel .owl-nav .owl-prev i:before, .page-products .owl-carousel .owl-nav .owl-prev i:before {
  margin-left: 0.07em;
}
.catalog-category-view .owl-carousel .owl-nav .owl-next i:before, .block-products-list .owl-carousel .owl-nav .owl-next i:before, .page-products .owl-carousel .owl-nav .owl-next i:before {
  margin-right: 0.07em;
}
.catalog-category-view .toolbar-top .pager, .block-products-list .toolbar-top .pager, .page-products .toolbar-top .pager {
  display: none !important;
}
.catalog-category-view .toolbar-bottom .toolbar, .block-products-list .toolbar-bottom .toolbar, .page-products .toolbar-bottom .toolbar {
  display: none !important;
}
.catalog-category-view .product-item, .block-products-list .product-item, .page-products .product-item {
  border: none;
  box-shadow: 0 0 5px 0 #e7e7e7;
}
.catalog-category-view .product-item:hover, .block-products-list .product-item:hover, .page-products .product-item:hover {
  box-shadow: 0 0 15px 2px rgba(15, 65, 113, 0.2);
}
.catalog-category-view .product-item .tocompare, .block-products-list .product-item .tocompare, .page-products .product-item .tocompare {
  display: none;
}
.catalog-category-view .product-item .towishlist i, .block-products-list .product-item .towishlist i, .page-products .product-item .towishlist i {
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.25rem 0;
  display: inline-block;
  background: #ECAD66;
  color: white;
  border-radius: 50%;
  margin-right: 0.45rem;
}
.catalog-category-view .product-item .attribute-bubbles, .block-products-list .product-item .attribute-bubbles, .page-products .product-item .attribute-bubbles {
  display: flex;
  overflow-x: auto;
  z-index: 100;
}
.catalog-category-view .product-item .attribute-bubbles .product-attribute, .block-products-list .product-item .attribute-bubbles .product-attribute, .page-products .product-item .attribute-bubbles .product-attribute {
  display: inline-block;
  color: #0f4170;
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 1.3;
  padding: 0.25rem 0.5rem;
  border: 2px solid #0f4170;
  border-radius: 0.8125rem;
  vertical-align: 0.35rem;
}
.catalog-category-view .product-special, .block-products-list .product-special, .page-products .product-special {
  font-family: "Roboto Black", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08rem;
  content: "TOP";
  font-size: 1.5rem;
  position: absolute;
  right: 0.5rem;
  top: 1rem;
  z-index: 100;
  color: #fff;
  line-height: 0.75;
  padding: 0.4375rem 0.375rem;
  text-transform: uppercase;
  border-radius: 0.5rem 0.5rem 0 0.5rem;
  background: rgb(241.6337209302, 197.3139534884, 147.3662790698);
}
.catalog-category-view .product-special.in-sale, .block-products-list .product-special.in-sale, .page-products .product-special.in-sale {
  background: #6A6A6A;
  letter-spacing: 0;
}
.catalog-category-view .product-special.in-sale::before, .block-products-list .product-special.in-sale::before, .page-products .product-special.in-sale::before {
  border-left-color: rgb(67.75, 67.75, 67.75);
}
.catalog-category-view .product-special::before, .block-products-list .product-special::before, .page-products .product-special::before {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  right: 0;
  border-left: 0.5rem solid #ECAD66;
  border-bottom: 0.75rem solid transparent;
}
.catalog-category-view .pager li, .block-products-list .pager li, .page-products .pager li {
  padding-top: 0.25rem;
  margin: 0 1rem;
}
.catalog-category-view .pager li a, .block-products-list .pager li a, .page-products .pager li a {
  color: #ECAD66;
}
.catalog-category-view .pager li a:hover, .block-products-list .pager li a:hover, .page-products .pager li a:hover {
  color: #ECAD66;
  text-decoration: none;
}
.catalog-category-view .pager li strong, .block-products-list .pager li strong, .page-products .pager li strong {
  font-weight: 800;
  color: rgb(230.3662790698, 148.6860465116, 56.6337209302);
}
.catalog-category-view .pager .next, .catalog-category-view .pager .prev, .block-products-list .pager .next, .block-products-list .pager .prev, .page-products .pager .next, .page-products .pager .prev {
  height: 2rem;
  width: 2rem;
  box-shadow: 0 0 10px 2px lightgrey;
  border-radius: 100%;
  line-height: 2rem;
  padding-top: 0;
}
.catalog-category-view .pager .next i, .block-products-list .pager .next i, .page-products .pager .next i {
  padding-left: 6px;
}
.catalog-category-view .pager .prev i, .block-products-list .pager .prev i, .page-products .pager .prev i {
  padding-left: 3px;
}
.catalog-category-view .addtocart input[type=number]::-webkit-inner-spin-button, .catalog-category-view .addtocart input[type=number]::-webkit-outer-spin-button, .block-products-list .addtocart input[type=number]::-webkit-inner-spin-button, .block-products-list .addtocart input[type=number]::-webkit-outer-spin-button, .page-products .addtocart input[type=number]::-webkit-inner-spin-button, .page-products .addtocart input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: none;
}
.catalog-category-view .addtocart input.qty, .block-products-list .addtocart input.qty, .page-products .addtocart input.qty {
  max-width: 3rem;
  font-size: 1rem;
  line-height: 1rem;
  padding: 0.75rem 0;
  display: inline-block;
  height: 39px;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  text-align: center;
}
@media (max-width: 1199.98px) {
  .catalog-category-view .addtocart input.qty, .block-products-list .addtocart input.qty, .page-products .addtocart input.qty {
    height: 63px;
  }
}
.catalog-category-view .addtocart button, .block-products-list .addtocart button, .page-products .addtocart button {
  font-size: 1.5rem;
  padding: 0 0.5rem;
}
@media (max-width: 1199.98px) {
  .catalog-category-view .addtocart button, .block-products-list .addtocart button, .page-products .addtocart button {
    height: 63px !important;
  }
}
@media (max-width: 1199.98px) {
  .catalog-category-view #filter-nav, .block-products-list #filter-nav, .page-products #filter-nav {
    position: fixed;
    right: -100vw;
    z-index: 2000;
    width: 100%;
    top: 0;
    height: 100vh;
    background: rgba(50, 50, 50, 0);
    transition: right 1s ease-in-out;
    padding: 0;
  }
  .catalog-category-view #filter-nav .close, .block-products-list #filter-nav .close, .page-products #filter-nav .close {
    opacity: 0;
    transition: opacity 1s ease-in-out 0.5s;
    right: 0;
    z-index: 1010;
  }
  .catalog-category-view #filter-nav.show, .block-products-list #filter-nav.show, .page-products #filter-nav.show {
    background: rgba(50, 50, 50, 0.4);
    right: 0;
  }
  .catalog-category-view #filter-nav.show .close, .block-products-list #filter-nav.show .close, .page-products #filter-nav.show .close {
    opacity: 1;
  }
  .catalog-category-view #filter-nav.show .filter-content, .block-products-list #filter-nav.show .filter-content, .page-products #filter-nav.show .filter-content {
    right: 0;
  }
  .catalog-category-view #filter-nav .filter-content, .block-products-list #filter-nav .filter-content, .page-products #filter-nav .filter-content {
    background: white;
    position: absolute;
    right: -50rem;
    overflow-y: auto;
    transition: right 1s ease-in-out;
  }
  .catalog-category-view #filter-nav .filter-content #narrow-by-list, .block-products-list #filter-nav .filter-content #narrow-by-list, .page-products #filter-nav .filter-content #narrow-by-list {
    padding: 1rem;
  }
  .catalog-category-view #filter-nav.collapsing, .block-products-list #filter-nav.collapsing, .page-products #filter-nav.collapsing {
    visibility: visible;
    height: 100vh !important;
  }
}

.catalog-product-view h1 {
  font-size: 26px !important;
  line-height: 1.2 !important;
  text-transform: none !important;
  font-family: "Roboto Condensed", sans-serif;
}
.catalog-product-view .stock-status {
  font-size: 1.5rem;
}
.catalog-product-view .tier-prices .tier-qty {
  font-size: 0.85rem;
}
.catalog-product-view #product-details-accordion {
  margin-bottom: 2rem;
}
.catalog-product-view #product-details-accordion .card {
  border-left: none;
  border-right: none;
  border-radius: 0;
  border-color: #9da1a5;
  border-bottom: 1px solid #9da1a5;
  border-top: none;
}
.catalog-product-view #product-details-accordion .card:first-child {
  border-top: 1px solid #9da1a5;
}
.catalog-product-view #product-details-accordion .card .card-header {
  background: transparent;
  border: none;
  position: relative;
  color: #ECAD66;
  transition: 1s color ease-in-out;
  padding: 0.5rem 0;
}
.catalog-product-view #product-details-accordion .card .card-header .btn-link {
  text-transform: uppercase;
  color: #ECAD66;
  font-size: 1.25rem;
  transition: 1s color ease-in-out;
}
.catalog-product-view #product-details-accordion .card .card-header .btn-link:hover, .catalog-product-view #product-details-accordion .card .card-header .btn-link:focus, .catalog-product-view #product-details-accordion .card .card-header .btn-link:focus-within {
  text-decoration: none;
}
.catalog-product-view #product-details-accordion .card .card-header:after {
  transition: 1s color ease-in-out;
  position: absolute;
  right: 0;
  top: 0.75rem;
  font-size: 1.25rem;
}
.catalog-product-view #product-details-accordion .card .card-header[aria-expanded=false]:after {
  font-family: fontello;
  content: "\e819";
}
.catalog-product-view #product-details-accordion .card .card-header[aria-expanded=true]:after {
  font-family: fontello;
  content: "\e81b";
  color: #6A6A6A;
}
.catalog-product-view #product-details-accordion .card .card-header[aria-expanded=true] .btn-link {
  color: #6A6A6A;
}
.catalog-product-view #product-details-accordion .card .card-body {
  padding: 0;
  color: #586067;
  font-size: 0.9rem;
}
.catalog-product-view #product-details-accordion #collapse-description h2 {
  font-family: "Roboto Condensed", sans-serif;
  color: #222222;
  font-size: 0.9rem;
  font-weight: bold;
}
.catalog-product-view #product-details-accordion #collapse-description p {
  font-size: 0.875rem;
}
.catalog-product-view .technical-details ul {
  list-style: none;
  padding-left: 0;
}
.catalog-product-view .technical-details ul li {
  font-size: 0.9rem !important;
}
.catalog-product-view .technical-details ul li:before {
  color: black;
  font-family: fontello;
  content: "\e916";
  margin-right: 0.25rem;
}
.catalog-product-view .technical-details ul li p {
  margin-bottom: 0;
  display: inline;
}

.product-contact {
  font-size: 0.85rem;
}
.product-contact strong {
  font-size: 0.9rem;
}
.product-contact strong.text-green {
  color: #109813;
}
.product-contact figure figcaption {
  font-weight: bold;
}
.product-contact figure img {
  border-radius: 100%;
}
.product-contact ul {
  list-style: none;
  padding-left: 0;
}
.product-contact ul li:before {
  color: #109813;
  content: "\ee19";
  font-family: fontello;
  padding-right: 1rem;
}
.product-contact ul li a {
  color: #586067;
  text-decoration: underline;
}

.catalog-product-view .product-options-wrapper .custom-select-wrapper {
  position: relative;
  display: inline-block;
}
.catalog-product-view .product-options-wrapper .custom-select-wrapper::before {
  position: absolute;
  border: none;
  content: "\e91c";
  vertical-align: 0;
  font-family: fontello;
  font-size: 1.5rem;
  color: #0f4170;
  z-index: 100;
  top: 0.05rem;
  right: 0.75rem;
  font-weight: bold;
  pointer-events: none;
}
.catalog-product-view .product-options-wrapper select.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  color: #ECAD66;
  border-color: #ECAD66;
  border-width: 2px;
  border-radius: 0.75rem;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
  height: auto;
  font-weight: bold;
  padding: 0.35rem 4rem 0.25rem 1.125rem;
}
.catalog-product-view .price-box {
  color: #ECAD66;
  text-align: right;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
}
.catalog-product-view .product-add-form .addtocart i {
  font-size: 1.2rem;
}

.highlights .product-special, .new-products .product-special {
  right: -0.5rem !important;
}
.highlights .addtocart, .new-products .addtocart {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
.highlights .btn-light, .new-products .btn-light {
  background: white;
  border-radius: 0.5rem;
}
.highlights a.product-item-link, .new-products a.product-item-link {
  height: 70px;
  display: inline-block;
}

.block-products-list.grid .products-grid .product-item {
  font-family: "Roboto Condensed", sans-serif;
}
@media (max-width: 1199.98px) {
  .block-products-list.grid .products-grid .product-item .availability {
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .block-products-list.grid .products-grid .product-item .availability .icon-ms-truck {
    font-size: 18px;
    vertical-align: -2px;
  }
}
.block-products-list.grid .products-grid .product-item .price-box {
  line-height: 1;
  font-size: var(--catalog-widget-product-list-font-size);
  font-weight: 700;
}
.block-products-list.grid .products-grid .product-item .price-box .old-price {
  color: #6A6A6A;
  text-decoration: line-through;
  font-size: 0.8125rem;
  font-weight: 400;
  display: inline-block;
}
.block-products-list.grid .products-grid .product-item .product-item-name {
  font-weight: normal;
  font-size: 1rem;
}
@media (max-width: 1199.98px) {
  .block-products-list.grid .products-grid .product-item .product-image-photo {
    padding: inherit 3.25rem;
  }
}
@media (max-width: 1199.98px) {
  .block-products-list.grid .products-grid .product-item small {
    font-size: 0.8rem;
    white-space: nowrap;
    position: absolute;
    right: 1rem;
  }
}
.block-products-list.grid .products-grid .product-item .tax-info {
  right: 0;
  position: relative;
  height: 2.5rem;
}
.block-products-list.grid .products-grid .product-item .tax-info a {
  text-decoration: underline;
}

.highlights-carousel .owl-item .product-item {
  min-height: 220px !important;
  max-height: 330px !important;
}

@media (min-width: 992px) {
  .highlights-carousel .owl-item .product-item {
    min-height: 640px !important;
    max-height: 640px !important;
  }
}
.widget .products-grid .owl-item {
  /* min-height: 660px; */
}
@media (min-width: 992px) {
  .widget .products-grid .owl-item .product-item {
    min-height: 520px;
    max-height: 520px;
  }
}
.widget .products-grid .owl-item .product-item .price, .widget .products-grid .owl-item .product-item .price * {
  font-size: var(--catalog-widget-product-list-font-size);
}

@media (min-width: 992px) {
  .tier-prices-container {
    display: flex;
    align-items: flex-end;
  }
}

.catalog-product-view .addtocart input#qty {
  flex: 0.5;
  height: 51px;
  min-width: 2rem;
}
@media (max-width: 1199.98px) {
  .catalog-product-view .addtocart input#qty {
    height: 64px;
  }
}
.catalog-product-view .addtocart input#qty[type=number]::-webkit-inner-spin-button, .catalog-product-view .addtocart input#qty[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: none;
}
@media (min-width: 992px) {
  .catalog-product-view .product-contact {
    margin-top: 0.5rem;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    padding-top: 0.9375rem;
    padding-bottom: 0.625rem;
  }
  .catalog-product-view .product-contact ul {
    font-size: 0.9375rem;
    font-family: "Roboto Condensed", sans-serif;
    display: flex;
    justify-content: space-around;
    padding-left: 1rem;
    text-align: center;
  }
  .catalog-product-view .product-contact ul li {
    display: inline-block;
    padding-right: 1.5rem;
    font-size: 0.8125rem;
  }
  .catalog-product-view .product-contact ul li:before {
    padding-right: 0.5rem;
  }
}
@media (min-width: 992px) {
  .catalog-product-view .description {
    font-family: "Roboto-Condensed", sans-serif;
    font-size: 0.875rem;
    -webkit-columns: 1rem 2;
    -moz-columns: 1rem 2;
    columns: 1rem 2;
    column-gap: 3.75rem;
    display: block;
  }
}
@media (min-width: 992px) {
  .catalog-product-view .tab-content .tab-pane {
    padding-top: 1.875rem;
    font-size: 1.3rem !important;
  }
  .catalog-product-view .tab-content .tab-pane p {
    font-size: 1.3rem !important;
  }
  .catalog-product-view .tab-content .tab-pane#tab-description .technical-details ul {
    list-style: none;
    padding-left: 0;
  }
  .catalog-product-view .tab-content .tab-pane#tab-description .technical-details ul li {
    font-family: "Roboto Condensed", sans-serif;
    color: #586067;
    font-size: 0.875rem;
  }
  .catalog-product-view .tab-content .tab-pane#tab-description .technical-details ul li:before {
    content: "\e916";
    font-family: fontello;
    color: black;
    margin-right: 0.5rem;
  }
  .catalog-product-view .tab-content .tab-pane#tab-description ul {
    padding-left: 18px;
  }
  .catalog-product-view .tab-content .tab-pane#tab-description ul li {
    font-family: "Roboto Condensed", sans-serif;
    color: #586067;
    font-size: 0.875rem;
  }
  .catalog-product-view .tab-content .tab-pane#tab-description ul li:before {
    color: black;
    margin-right: 0.5rem;
  }
}
.catalog-product-view .nav-tabs {
  margin-top: 0.75rem;
}
@media (min-width: 992px) {
  .catalog-product-view .nav-tabs .nav-item .nav-link {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ECAD66;
    padding: 1.875rem 0.3125rem;
    position: relative;
  }
  .catalog-product-view .nav-tabs .nav-item .nav-link:hover {
    background: none;
    border-color: transparent;
    color: rgb(171, 139.5, 104);
  }
  .catalog-product-view .nav-tabs .nav-item .nav-link.active {
    color: #6A6A6A;
    background: none;
    border-color: transparent;
  }
  .catalog-product-view .nav-tabs .nav-item .nav-link.active:after {
    content: " ";
    width: 50%;
    bottom: 25%;
    position: absolute;
    border: 2px solid #6A6A6A;
    left: 25%;
  }
}

@media (min-width: 992px) {
  .block.filter {
    margin-top: 1rem;
  }
  .block.filter .actions {
    padding-bottom: 8px;
  }
  .block.filter h3 {
    position: relative;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  .block.filter h3 .icon-sliders {
    position: absolute;
    top: 0.8125rem;
    right: 0.8125rem;
    font-size: 1.4375rem;
  }
  .block.filter .filter-current {
    display: none;
  }
  .block.filter .filter-content {
    border: 1px solid #f2f2f2;
    border-top: none;
    padding: 0.125rem 0.8125rem;
    font-size: 0.8125rem;
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }
  .block.filter .filter-content .filter-options {
    margin-bottom: 0;
  }
  .block.filter .filter-content .filter-options .custom-control-label .label {
    position: relative;
    top: 5px;
  }
  .block.filter .filter-content .filter-options .filter-options-title {
    font-weight: normal;
    padding: 0.625rem 0;
    border-top: 1px solid #f2f2f2;
    cursor: pointer;
    position: relative;
  }
  .block.filter .filter-content .filter-options .filter-options-title:first-child {
    border-top: none;
  }
  .block.filter .filter-content .filter-options .filter-options-title:after {
    font-family: fontello;
    content: "\e918";
    color: #ECAD66;
    position: absolute;
    right: 0.25rem;
    top: 4px;
    font-size: 1.25rem;
  }
  .block.filter .filter-content .filter-options .filter-options-title[aria-expanded=true] {
    border-bottom: 0;
  }
  .block.filter .filter-content .filter-options .filter-options-title[aria-expanded=true]:after {
    content: "\e91b";
  }
  .block.filter .filter-heading {
    background: #ECAD66;
    font-size: 1rem;
    line-height: 1;
    padding: 0.9375rem;
    margin-bottom: 0;
    color: white;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: bold;
  }
  .block.filter form[data-amshopby-filter=attr_category_ids] {
    border: 1px solid lightgrey;
    border-top: none;
    padding: 0 0.8125rem;
    font-size: 0.8125rem;
    font-family: "Roboto Condensed", sans-serif;
  }
  .block.filter form[data-amshopby-filter=attr_category_ids] ul li {
    padding: 0.8125rem;
    border-bottom: 1px solid lightgrey;
  }
  .block.filter form[data-amshopby-filter=attr_category_ids] ul li:last-child {
    border: none;
  }
  .block.filter form[data-amshopby-filter=attr_category_ids] ul li a {
    color: #222222;
  }
  .block.filter form[data-amshopby-filter=attr_category_ids] ul li a:focus, .block.filter form[data-amshopby-filter=attr_category_ids] ul li a:visited, .block.filter form[data-amshopby-filter=attr_category_ids] ul li a:hover {
    color: #222222;
  }
  .block.filter form[data-amshopby-filter=attr_category_ids] ul.items-children {
    padding-left: 0;
  }
  .block.filter .custom-control-input:checked ~ .custom-control-label::before, .block.filter .custom-control-label::before {
    border-color: #adb0b2;
  }
  .block.filter .amshopby-slider-container .amshopby-slider-display {
    font-family: "Roboto Condensed", sans-serif;
    margin-top: 0.75rem;
    font-weight: bold;
  }
  .block.filter .amshopby-slider-container .am-slider {
    height: 2px;
  }
  .block.filter .amshopby-slider-container .am-slider .ui-slider-range {
    height: 2px;
    border-color: #f2f2f2;
  }
  .block.filter .amshopby-slider-container .am-slider .ui-slider-handle {
    width: 30px;
    height: 30px;
    margin-top: -14px;
    background: white;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    text-align: center;
    color: black;
    line-height: 1.8rem;
    font-family: fontello;
    font-size: 0.75rem;
    margin-left: -10px;
  }
  .block.filter .amshopby-slider-container .am-slider .ui-slider-handle:before {
    content: "\e91e";
  }
  .block.filter .amshopby-slider-container .am-slider .ui-slider-handle:last-child:before {
    content: "\e91d";
  }
  .block.filter .amshopby-slider-container .am-slider .ui-slider-handle:focus {
    box-shadow: none;
    outline: none;
  }
}
.block.filter {
  /* media-break-point-up(md) */
}

.catalog-left-nav .category-thumb {
  height: 20px;
  width: auto;
  margin-right: 0.9375rem;
}
.catalog-left-nav .cat-name {
  vertical-align: -1px;
  font-size: 0.75rem;
}
@media (min-width: 992px) {
  .catalog-left-nav .nav {
    padding: 0.125rem 0.8125rem;
  }
  .catalog-left-nav .nav .nav-link {
    padding-left: 0;
    padding-right: 0;
  }
}

input.filter-search {
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  padding: 0.5em;
}

.filter-actions-span {
  background-color: var(--color-primary);
  box-sizing: border-box;
  border-radius: 4px;
  color: white;
  padding: 0.5em;
  cursor: pointer;
  margin-top: 1em;
}

.a.action.clear.filter-clear {
  text-decoration: none !important;
}

.block-actions.filter-actions {
  margin-top: 1em;
}

a.action.show-less {
  background-color: var(--color-primary);
  box-sizing: border-box;
  border-radius: 4px;
  color: white;
  padding: 0.5em;
  cursor: pointer;
  margin-top: 1em;
}

a.action.show-more {
  background-color: var(--color-primary);
  box-sizing: border-box;
  border-radius: 4px;
  color: white;
  padding: 0.5em;
  cursor: pointer;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

@media only screen and (min-width: 1025px) {
  section.ammenu-submenu-block.-root.-simple {
    background: white;
  }
}
@media only screen and (max-width: 1024px) {
  span.ammenu-text {
    color: black;
  }
  .ammenu-items {
    text-decoration: none;
  }
  section.ammenu-submenu-block.-root.-simple {
    background: var(--color-primary);
  }
  a.ammenu-link.-mobile.-current .ammenu-text {
    color: white;
  }
  a.ammenu-link.-mobile.-current.-active .ammenu-text {
    color: black;
  }
  a.ammenu-link.-mobile.-active .ammenu-text {
    color: black;
  }
  button.ammenu-button.-icon.-close {
    display: none;
  }
  span.top-category-headline.text-uppercase {
    margin-top: 140px !important;
    font-size: 10px !important;
  }
}
.ammenu-nav-sections.-mobile:not(.-has-icons) .ammenu-items.-root > .ammenu-item > .ammenu-link:before {
  content: unset !important;
}

nav.ammenu-nav-sections.-sidebar.-mobile.-accordion.-animation-undefined.-opened {
  max-width: 320px;
}

button#toggle_button {
  margin-top: 0.5rem;
}

figure.-toggle.ammenu-icon-block {
  color: rgb(0, 0, 0);
  border-style: solid;
  border-width: 0.25em 0.25em 0 0;
  content: "";
  display: inline-block;
  height: 0.45em;
  position: relative;
  vertical-align: top;
  width: 0.45em;
  left: 0;
  transform: rotate(45deg);
  top: -1px;
}

ul.ammenu-list {
  list-style: none !important;
}

.ammenu-category-columns {
  display: flex;
  flex-wrap: wrap;
}

.ammenu-title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  display: block;
}

.-full .ammenu-submenu-block.-root {
  left: 0;
  width: 100%;
}

.filter-options ol li {
  list-style-type: none;
}

.filter-options ol li a {
  text-decoration: none;
  color: black;
}

.filter-options ol li a:hover {
  text-decoration: underline;
  color: var(--color-primary);
}

.filter-options-title {
  background-color: var(--color-primary);
  box-sizing: border-box;
  border-radius: 2px 8px 5px 15px;
  color: white;
  font-weight: bold;
}

.smile-es-range-slider > .row {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.smile-es-range-slider .actions-toolbar > * {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.catalog-product-view .bg-light, .page-products .bg-light {
  background: white !important;
}
.catalog-product-view .fotorama__zoom-in, .catalog-product-view .fotorama__zoom-out, .page-products .fotorama__zoom-in, .page-products .fotorama__zoom-out {
  display: none !important;
}
.catalog-product-view .payment-logos img, .page-products .payment-logos img {
  max-height: 32px;
  margin-left: 0.5rem;
}
.catalog-product-view .product-add-form form .fieldset .field, .page-products .product-add-form form .fieldset .field {
  padding: 0.25rem;
}
@media (min-width: 992px) {
  .catalog-product-view h1, .page-products h1 {
    width: 60%;
  }
  .catalog-product-view h1 .base, .page-products h1 .base {
    font-size: 1.5rem;
  }
  .catalog-product-view .contact-block, .page-products .contact-block {
    border: 1px solid #e5e5e5;
    padding: 1rem;
    border-radius: 0.25rem;
    background: #f0f0f0;
  }
  .catalog-product-view footer .personal-guidance, .page-products footer .personal-guidance {
    padding-bottom: 5rem !important;
  }
  .catalog-product-view .custom-select-wrapper:before, .page-products .custom-select-wrapper:before {
    z-index: 1 !important;
  }
  .catalog-product-view .attribute, .page-products .attribute {
    font-size: 0.9375rem;
    color: black !important;
  }
  .catalog-product-view .stock-status, .page-products .stock-status {
    padding-bottom: 5px;
    padding-top: 15px;
    line-height: 1;
  }
  .catalog-product-view, .page-products {
    /* todo: rausnehmen, wenn Staffelpreise korrekt hinterlegt */
  }
  .catalog-product-view .tier-prices-wrapper, .page-products .tier-prices-wrapper {
    height: 188px;
  }
  .catalog-product-view .tier-prices-wrapper .tier-headline, .page-products .tier-prices-wrapper .tier-headline {
    font-size: 0.9375rem;
    color: black;
  }
  .catalog-product-view .tier-prices-wrapper a, .page-products .tier-prices-wrapper a {
    font-weight: 700;
  }
  .catalog-product-view .tier-prices, .page-products .tier-prices {
    font-weight: 400;
    border-left: 1px solid #e7e7e7;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .catalog-product-view .price-box, .page-products .price-box {
    color: #ECAD66 !important;
    text-align: right !important;
    font-size: 1.75rem !important;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .catalog-product-view .qty-inc, .catalog-product-view .qty-dec, .page-products .qty-inc, .page-products .qty-dec {
    font-size: 0.75rem !important;
    line-height: 0.5 !important;
    padding: 0.375rem 0.5rem !important;
    cursor: pointer !important;
  }
}
@media (min-width: 992px) {
  .catalog-product-view .addtocart #qty, .page-products .addtocart #qty {
    height: 39px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .catalog-product-view .addtocart #qty, .page-products .addtocart #qty {
    height: 51px;
  }
}
@media (min-width: 992px) {
  .catalog-product-view .addtocart button#product-addtocart-button, .page-products .addtocart button#product-addtocart-button {
    line-height: 1;
    padding: 2px 0.3rem 4px 1.125rem;
  }
  .catalog-product-view .addtocart button#product-addtocart-button i, .page-products .addtocart button#product-addtocart-button i {
    font-size: 1.5rem;
    padding-left: 4px;
  }
  .catalog-product-view .item-description-headline, .page-products .item-description-headline {
    color: #ECAD66;
    margin-bottom: 1.625rem;
  }
  .catalog-product-view .item-description-headline h2, .page-products .item-description-headline h2 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
  .catalog-product-view .item-description-headline p, .page-products .item-description-headline p {
    font-size: 0.875rem;
    margin-bottom: 0;
  }
  .catalog-product-view div.description, .page-products div.description {
    color: #586067 !important;
  }
  .catalog-product-view .warning-notes-wrapper h2, .page-products .warning-notes-wrapper h2 {
    font-size: 1rem;
    font-weight: 700;
  }
  .catalog-product-view .warning-notes-wrapper h3, .page-products .warning-notes-wrapper h3 {
    font-size: 1rem;
    font-weight: 700;
  }
  .catalog-product-view .warning-notes-wrapper .warning-note, .page-products .warning-notes-wrapper .warning-note {
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid #e7e7e7;
  }
  .catalog-product-view .warning-notes-wrapper .warning-note p, .page-products .warning-notes-wrapper .warning-note p {
    color: #586067;
  }
  .catalog-product-view .warning-notes-wrapper .warning-images, .page-products .warning-notes-wrapper .warning-images {
    display: flex;
    justify-content: space-between;
  }
  .catalog-product-view .warning-notes-wrapper .warning-images .warning-image, .page-products .warning-notes-wrapper .warning-images .warning-image {
    display: inline-block;
    max-width: 25%;
  }
  .catalog-product-view .warning-notes-wrapper .warning-images .warning-image img, .page-products .warning-notes-wrapper .warning-images .warning-image img {
    max-height: 220px;
  }
}
.catalog-product-view #tab-product-info-technicaldetails table, .page-products #tab-product-info-technicaldetails table {
  width: 100%;
  margin-bottom: 1rem;
  color: #222222;
}
.catalog-product-view #tab-product-info-technicaldetails table th,
.catalog-product-view #tab-product-info-technicaldetails table td, .page-products #tab-product-info-technicaldetails table th,
.page-products #tab-product-info-technicaldetails table td {
  padding: 0.25rem 0.75rem;
  vertical-align: top;
  border-top: 1px solid #e5e5e5;
}
.catalog-product-view #tab-product-info-technicaldetails table td:first-child, .page-products #tab-product-info-technicaldetails table td:first-child {
  font-weight: 700;
}
.catalog-product-view #tab-product-info-technicaldetails table thead th, .page-products #tab-product-info-technicaldetails table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #e5e5e5;
}
.catalog-product-view #tab-product-info-technicaldetails table tbody + tbody, .page-products #tab-product-info-technicaldetails table tbody + tbody {
  border-top: 2px solid #e5e5e5;
}
.catalog-product-view #tab-product-info-technicaldetails table tbody tr:nth-of-type(odd), .page-products #tab-product-info-technicaldetails table tbody tr:nth-of-type(odd) {
  background-color: #f2f2f2;
}
.catalog-product-view .amazon-checkout-now, .catalog-product-view .amazon-button-container, .page-products .amazon-checkout-now, .page-products .amazon-button-container {
  text-align: right;
}

.addtocart input#qty {
  font-size: 1rem;
}
@media (max-width: 1199.98px) {
  .addtocart input#qty {
    height: 63px;
  }
}
.addtocart .input-group-prepend div {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  background: #f8f8f8;
  color: #495057;
  border: 1px solid #e5e5e5;
  font-weight: bold;
  height: 50%;
}
.addtocart .input-group-prepend div:first-child {
  border-top-left-radius: 0.75rem;
}
.addtocart .input-group-prepend div:last-child {
  border-top: none;
  border-bottom-left-radius: 0.75rem;
}
.addtocart .form-control {
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}
.addtocart button {
  border-radius: 0.75rem;
  letter-spacing: 1px;
  font-size: 1rem;
}
.addtocart button .icon-ms-add-basket {
  position: relative;
}

#product_info a {
  color: var(--color-primary);
}

.product-details-attribute-list {
  list-style-type: none;
  padding-left: 0;
}

.product-details-attribute-label {
  font-weight: bold;
}

.page-products #main-container {
  padding-top: unset !important;
}

.baseprice {
  text-align: right;
}

.checkout-cart-index .tier-prices {
  display: none !important;
}
.checkout-cart-index #block-shipping {
  display: none;
}
@media (max-width: 1199.98px) {
  .checkout-cart-index #PayWithAmazon-checkout-cart-shortcut-buttons {
    text-align: center;
    margin-top: 1rem;
  }
}
@media (max-width: 1199.98px) {
  .checkout-cart-index .badges {
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
}
@media (max-width: 1199.98px) {
  .checkout-cart-index h1 {
    font-size: 1.625rem;
    border-bottom: 2px solid #f2f2f2;
    padding-bottom: 0.75rem;
    font-weight: 900 !important;
    line-height: 1;
  }
  .checkout-cart-index h1 .base {
    font-size: inherit;
    line-height: inherit;
  }
}
@media (min-width: 992px) {
  .checkout-cart-index h1 {
    font-size: 2.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
.checkout-cart-index .cart-item .item-options {
  list-style: none;
  padding-left: 0;
}
.checkout-cart-index .item-qty .input-group {
  justify-content: flex-end;
}
.checkout-cart-index .item-qty .input-group-prepend .input-group-text {
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}
.checkout-cart-index .item-qty .input-group-append .input-group-text {
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}
.checkout-cart-index .item-qty input {
  flex: 0.5;
  -moz-appearance: "textfield";
}
.checkout-cart-index .item-qty input[type=number]::-webkit-inner-spin-button, .checkout-cart-index .item-qty input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: none;
}
.checkout-cart-index .item-qty .qty-dec, .checkout-cart-index .item-qty .qty-inc {
  font-size: 1.25rem;
  line-height: 1;
}
.checkout-cart-index .table-header hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.checkout-cart-index .cart-items-list {
  list-style: none;
  padding-left: 0;
}
@media (max-width: 1199.98px) {
  .checkout-cart-index .cart-items-list .cart-item .product-item-name a {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.875rem;
    color: #ECAD66;
  }
  .checkout-cart-index .cart-items-list .cart-item .product-item-name a:hover, .checkout-cart-index .cart-items-list .cart-item .product-item-name a:focus, .checkout-cart-index .cart-items-list .cart-item .product-item-name a:visited {
    color: #ECAD66;
  }
}
.checkout-cart-index .cart-items-list .cart-item .product-item-price {
  color: #ECAD66;
}
@media (max-width: 1199.98px) {
  .checkout-cart-index .cart-items-list .cart-item .product-item-price {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
  }
}
@media (max-width: 1199.98px) {
  .checkout-cart-index .tier-prices {
    color: #586067;
    font-size: 0.8125rem;
  }
}
@media (max-width: 1199.98px) {
  .checkout-cart-index .tier-prices .tp-heading {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    color: #ECAD66;
    position: relative;
    width: 100%;
  }
}
.checkout-cart-index .tier-prices .tp-heading:after {
  font-size: 1.25rem;
  font-weight: 600;
  position: absolute;
  right: 0;
}
.checkout-cart-index .tier-prices .tp-heading[aria-expanded=false]:after {
  font-family: fontello;
  content: "\e819";
}
.checkout-cart-index .tier-prices .tp-heading[aria-expanded=true]:after {
  font-family: fontello;
  content: "\e81b";
}
@media (max-width: 1199.98px) {
  .checkout-cart-index .tier-prices .flex-column {
    max-height: 7em;
  }
}
@media (min-width: 992px) {
  .checkout-cart-index #cart-totals {
    width: 50%;
  }
}
.checkout-cart-index .totals {
  background: none;
  font-size: 0.875rem;
}
.checkout-cart-index .totals .table-caption {
  display: none;
}
@media (max-width: 1199.98px) {
  .checkout-cart-index .totals tr {
    font-size: 0.875rem;
    font-weight: normal;
  }
  .checkout-cart-index .totals tr th, .checkout-cart-index .totals tr td {
    font-weight: normal;
    padding: 0.625rem 0;
  }
}
@media (min-width: 992px) {
  .checkout-cart-index .totals tr td, .checkout-cart-index .totals tr th {
    padding: 0.5rem 0.75rem;
  }
  .checkout-cart-index .totals tr td {
    padding-right: 0;
  }
  .checkout-cart-index .totals tr .amount {
    text-align: right;
  }
}
.checkout-cart-index .totals tr:first-child td, .checkout-cart-index .totals tr:first-child th {
  border-top: none;
}
.checkout-cart-index .totals tr:last-child th, .checkout-cart-index .totals tr:last-child td {
  border-bottom: none;
}
.checkout-cart-index .totals tr.excl.sub, .checkout-cart-index .totals tr.excl.grand.totals {
  color: #9d9d9c;
}
.checkout-cart-index .totals tr.excl.sub td, .checkout-cart-index .totals tr.excl.sub th {
  padding-bottom: 0;
}
.checkout-cart-index .totals tr.excl.grand.totals td, .checkout-cart-index .totals tr.excl.grand.totals th {
  border-top: none;
  padding-top: 0;
}
.checkout-cart-index .totals tr.incl.sub td, .checkout-cart-index .totals tr.incl.sub th {
  border-top: none;
  padding-top: 0;
}
.checkout-cart-index .totals tr.grand.totals.excl strong {
  font-weight: normal;
}
@media (max-width: 1199.98px) {
  .checkout-cart-index .totals tr.grand.totals.incl {
    font-size: 1rem;
    font-weight: bold;
  }
}
.checkout-cart-index .totals tr.grand.totals.incl td, .checkout-cart-index .totals tr.grand.totals.incl th {
  padding-bottom: 0;
}
.checkout-cart-index .totals .mark {
  background: none;
}
@media (max-width: 1199.98px) {
  .checkout-cart-index .cart-summary {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    background: #fafafa;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .checkout-cart-index .cart-summary {
    width: 66%;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
  }
}
@media (min-width: 992px) {
  .checkout-cart-index .block.discount {
    width: 50%;
    padding: 0 1.5rem;
  }
}
@media (max-width: 1199.98px) {
  .checkout-cart-index .block.discount .title {
    line-height: 1;
    margin-bottom: 0.9375rem;
  }
}
.checkout-cart-index .block.discount .input-group-append .btn, .checkout-cart-index .block.discount .input-group-append button, .checkout-cart-index .block.discount .input-group-append .checkout-index-index .action.edit-address-link, .checkout-index-index .checkout-cart-index .block.discount .input-group-append .action.edit-address-link {
  color: #586067;
}
@media (max-width: 1199.98px) {
  .checkout-cart-index .discounts {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    background: #fafafa;
    border-top: 1px solid #e7e7e7;
    padding-top: 1.25rem;
  }
}
@media (min-width: 992px) {
  .checkout-cart-index .discounts {
    width: 33%;
  }
}
@media (max-width: 1199.98px) {
  .checkout-cart-index .discounts h3 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1rem;
    font-weight: bold;
  }
}
@media (max-width: 1199.98px) {
  .checkout-cart-index .discounts .btn-outline-primary-light {
    font-family: "Roboto Condensed", sans-serif;
    width: 100%;
    font-weight: bold;
    border-width: 2px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0.625rem;
    border-radius: 0.5rem;
    line-height: 1;
  }
}
@media (max-width: 1199.98px) {
  .checkout-cart-index .discounts .discount-box .discount-icon {
    line-height: 1;
    border: 2px solid #ECAD66;
    padding: 5px;
    margin-top: -3px;
  }
}
@media (min-width: 992px) {
  .checkout-cart-index .discounts .discount-box .discount-icon {
    border: 2px solid rgb(241.6337209302, 197.3139534884, 147.3662790698);
    padding: 4px 6px;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 700;
    margin-top: -4px;
    font-family: "Roboto", sans-serif;
    border-radius: 3px;
  }
}
.checkout-cart-index .discounts .discount-box .progress {
  height: 1.5rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background: #bfc1c4;
  color: white;
}
.checkout-cart-index .discounts .discount-box .progress .left {
  position: absolute;
  left: 0.5rem;
}
.checkout-cart-index .discounts .discount-box .progress .right {
  position: absolute;
  right: 1.5rem;
}
@media (max-width: 1199.98px) {
  .checkout-cart-index .discounts .discount-box .progress {
    font-size: 0.6875rem;
  }
}
.checkout-cart-index .discounts .discount-list {
  margin-top: 0.875rem;
  list-style: none outside none;
  padding-left: 0;
  margin-left: 0.5rem;
}
.checkout-cart-index .discounts .discount-list li {
  font-size: 0.75rem;
  line-height: 1;
  color: #bfc2c4;
  margin-bottom: 0.625rem;
}
.checkout-cart-index .discounts .discount-list li:before {
  content: "\e817";
  font-family: fontello;
  color: rgba(106, 106, 106, 0.7);
  font-size: 0.875rem;
  margin-left: -0.5rem;
  display: inline-block;
  border-radius: 100%;
  margin-right: 0.25rem;
}
.checkout-cart-index .discounts .discount-list li.active:before {
  content: "\e814";
  color: rgb(241.6337209302, 197.3139534884, 147.3662790698);
}
@media (min-width: 992px) {
  .checkout-cart-index .checkout-methods-items {
    width: 100%;
  }
  .checkout-cart-index .checkout-methods-items .item {
    width: 50%;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .checkout-cart-index .cart-details {
    padding: 0.5rem 1rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 5px 0 #e7e7e7;
    justify-content: space-between;
  }
  .checkout-cart-index .cart-details h3 {
    margin-bottom: 0.75rem;
  }
  .checkout-cart-index .cart-details .block .title {
    margin-bottom: 0.3rem;
  }
}
.checkout-cart-index .cart-details .checkout-methods-items {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .checkout-cart-index .cart.main.actions .btn, .checkout-cart-index .cart.main.actions button, .checkout-cart-index .cart.main.actions .checkout-index-index .action.edit-address-link, .checkout-index-index .checkout-cart-index .cart.main.actions .action.edit-address-link {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 1199.98px) {
  .checkout-cart-index .cart.main.actions .btn, .checkout-cart-index .cart.main.actions button, .checkout-cart-index .cart.main.actions .checkout-index-index .action.edit-address-link, .checkout-index-index .checkout-cart-index .cart.main.actions .action.edit-address-link {
    margin-bottom: 1rem;
  }
}
.checkout-cart-index .amazon-button-container .field-tooltip-content {
  font-size: 0.8125rem;
}
@media (min-width: 992px) {
  .checkout-cart-index .amazon-button-container .login-with-amazon {
    text-align: center;
    padding: 1rem 1rem 0.5rem 1rem;
    margin-top: 1rem;
  }
}
.checkout-cart-index .qty-dec, .checkout-cart-index .qty-inc {
  cursor: pointer;
}
.checkout-cart-index .btn, .checkout-cart-index button, .checkout-cart-index .checkout-index-index .action.edit-address-link, .checkout-index-index .checkout-cart-index .action.edit-address-link {
  border-radius: 0.625rem;
}
.checkout-cart-index .input-group:first-child {
  border-top-left-radius: 0.625rem;
  border-bottom-left-radius: 0.625rem;
}

.btn.btn-mgradient, button.btn-mgradient, .checkout-index-index .btn-mgradient.action.edit-address-link {
  background-image: linear-gradient(130deg, #0f4170, #df071a);
  color: white;
  border-radius: 0.625rem;
  border: none;
  width: 100%;
  font-weight: 600;
}

.top-cart-item a {
  position: relative;
}
.top-cart-item .cart-count {
  width: 1.25rem;
  height: 1.25rem;
  line-height: 1.25rem;
  font-size: 0.85rem;
  background: red;
  border-radius: 100%;
  display: inline-block;
  text-align: center;
  color: white;
  top: 0.25rem;
  right: 0.25rem;
  position: absolute;
}

.checkout-index-index div.mage-error, .checkout-index-index .field-error {
  background: rgba(255, 0, 0, 0.25);
  padding: 0.5rem;
  border-bottom-left-radius: 0.25rem;
  color: red;
}
.checkout-index-index .required-captcha {
  display: none !important;
}
.checkout-index-index h1 {
  font-weight: 800 !important;
  line-height: 1;
  font-size: 2.25rem;
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
}
.checkout-index-index h1 .base {
  line-height: inherit;
  font-size: inherit;
}
.checkout-index-index .shipping-address-items .shipping-address-item {
  border: 1px solid grey;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 0.5rem;
}
.checkout-index-index .shipping-address-items .shipping-address-item.selected-item {
  border: 2px solid black;
}
.checkout-index-index {
  /*input {
      @extend .form-control;
  }*/
}
.checkout-index-index #checkout-step-shipping .amazon-button-container {
  display: none;
}
.checkout-index-index .opc-wrapper {
  font-family: "Roboto Condensed", sans-serif;
}
@media (min-width: 992px) {
  .checkout-index-index .opc-wrapper .checkout-shipping-method .step-title {
    background: white;
    color: #ECAD66;
    padding: 11px 0;
  }
}
.checkout-index-index .opc-wrapper .osc-place-order-block.checkout-comment-block {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 1rem;
}
.checkout-index-index .opc-wrapper #customer-email-fieldset a {
  color: #ECAD66;
}
.checkout-index-index .opc-wrapper .osc-newsletter label {
  padding-top: 3px;
  font-size: 0.875rem;
}
.checkout-index-index .opc-wrapper .checkout-agreement label {
  padding-top: 3px;
  font-size: 0.875rem;
}
.checkout-index-index h2.step-title {
  display: none;
}
.checkout-index-index .field-tooltip, .checkout-index-index .note {
  display: none !important;
}
.checkout-index-index .checkout-step .step-title {
  font-family: "Roboto Condensed", sans-serif;
  background: #ECAD66 !important;
  color: white !important;
  font-size: 1rem;
  line-height: 1;
  font-weight: bold;
  padding: 11px 15px !important;
}
@media (min-width: 992px) {
  .checkout-index-index .checkout-step .step-title {
    margin-bottom: 1rem;
  }
}
@media (max-width: 1199.98px) {
  .checkout-index-index .checkout-step .step-title {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 0.9375rem;
  }
}
.checkout-index-index .address {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-flow: wrap;
}
.checkout-index-index .street {
  width: 100%;
}
.checkout-index-index .street label {
  display: none;
}
.checkout-index-index .field {
  flex: 0 0 100%;
  margin-bottom: 0.5rem;
}
.checkout-index-index .field[name="shippingAddress.firstname"], .checkout-index-index .field[name="shippingAddress.lastname"] {
  flex: 0 0 49%;
}
.checkout-index-index .payment-method.klarna-payments-method {
  cursor: pointer;
  padding: 8px;
}
.checkout-index-index textarea#comments {
  width: 100%;
  min-height: 5rem;
}
.checkout-index-index .payment-method label {
  cursor: pointer;
}
.checkout-index-index .klarna-payments-method-cell {
  display: inline-block;
}
.checkout-index-index .payment-method {
  border-top: 1px solid #f2f2f2;
  padding-top: 0.625rem;
}
.checkout-index-index .payment-method label {
  margin-bottom: 0;
}
.checkout-index-index .payment-method:last-child {
  border-bottom: 1px solid #f2f2f2;
}
.checkout-index-index .payment-method._active .payment-method-content {
  padding: 0.625rem inherit;
  display: block;
}
.checkout-index-index .payment-method .primary {
  display: none !important;
}
.checkout-index-index {
  /*.modal-popup {
      display: none !important;
  }*/
}
.checkout-index-index .modal-popup.agreements-modal {
  display: none !important;
}
.checkout-index-index #checkout-loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  background: rgba(40, 40, 50, 0.4);
  display: flex;
  justify-content: center;
  flex-direction: column;
  top: 0;
  left: 0;
  text-align: center;
}
.checkout-index-index .block.items-in-cart {
  display: none;
}
.checkout-index-index .totals-tax-details, .checkout-index-index .totals-tax-summary {
  font-size: 0.875rem;
}
.checkout-index-index .table-totals {
  background: none;
  font-size: 0.875rem;
}
.checkout-index-index .table-totals .table-caption {
  display: none;
}
@media (max-width: 1199.98px) {
  .checkout-index-index .table-totals tr {
    font-size: 0.875rem;
    font-weight: normal;
  }
  .checkout-index-index .table-totals tr th, .checkout-index-index .table-totals tr td {
    font-weight: normal;
    padding: 0.625rem 0;
  }
}
@media (min-width: 992px) {
  .checkout-index-index .table-totals tr td, .checkout-index-index .table-totals tr th {
    padding: 0.5rem 0;
  }
  .checkout-index-index .table-totals tr .amount {
    text-align: right;
  }
}
.checkout-index-index .table-totals tr:first-child td, .checkout-index-index .table-totals tr:first-child th {
  border-top: none;
}
.checkout-index-index .table-totals tr:last-child th, .checkout-index-index .table-totals tr:last-child td {
  border-bottom: none;
}
.checkout-index-index .table-totals tr.excl.sub, .checkout-index-index .table-totals tr.excl.grand.totals {
  color: #9d9d9c;
}
.checkout-index-index .table-totals tr.excl.sub td, .checkout-index-index .table-totals tr.excl.sub th {
  padding-bottom: 0;
}
.checkout-index-index .table-totals tr.excl.grand.totals td, .checkout-index-index .table-totals tr.excl.grand.totals th {
  border-top: none;
  padding-top: 0;
}
.checkout-index-index .table-totals tr.incl.sub td, .checkout-index-index .table-totals tr.incl.sub th {
  border-top: none;
  padding-top: 0;
}
.checkout-index-index .table-totals tr.grand.totals.excl strong {
  font-weight: normal;
}
@media (max-width: 1199.98px) {
  .checkout-index-index .table-totals tr.grand.totals.incl {
    font-size: 1rem;
    font-weight: bold;
  }
}
.checkout-index-index .table-totals tr.grand.totals.incl td, .checkout-index-index .table-totals tr.grand.totals.incl th {
  padding-bottom: 0;
}
.checkout-index-index .table-totals .mark {
  background: none;
}
.checkout-index-index .custom-control-label:after {
  border: #adb5bd solid 1px;
  border-radius: 0.25rem;
}
@media (min-width: 992px) {
  .checkout-index-index .checkout-border-wrapper {
    background-image: linear-gradient(130deg, #0f4170, #df071a);
    padding: 2px;
    border-radius: 0.25rem;
  }
  .checkout-index-index .checkout-border-wrapper .checkout-border {
    background: white;
    padding: 1rem;
  }
}

.form-shipping-address .form-group {
  margin-bottom: 0;
}

.checkout-billing-address .form-group {
  margin-bottom: 0;
}

.mp_social_share_inline {
  display: none !important;
}

.checkout-cart-index .discount-code {
  display: none !important;
}

.checkout-cart-index .block.discount {
  display: none !important;
}

@media (min-width: 992px) {
  .cms-index-index .img-p {
    max-width: 315px;
  }
}
.cms-index-index .mt-p-5 {
  margin-top: 5%;
}
.cms-index-index .mb-p-3 {
  margin-bottom: 3%;
}
.cms-index-index .mb-p-5 {
  margin-bottom: 5%;
}
.cms-index-index .m-t-10 {
  margin-top: 15%;
}
.cms-index-index figure {
  padding: 5px;
  float: left;
  border: 1px solid #cccccc;
  border-radius: 5px;
}
.cms-index-index figure img {
  border-radius: 3px 3px 0 0;
}
.cms-index-index figure figcaption {
  padding: 2px 4px 2px 4px;
  background-color: #636363;
  color: #cccccc;
  font-style: italic;
  border-radius: 0 0 3px 3px;
}
.cms-index-index figcaption {
  position: absolute;
  margin-top: 55px;
  margin-left: 20px;
}
.cms-index-index .figcaption-g {
  margin-top: 85px;
}
.cms-index-index span.top-category-headline.text-uppercase.vert-1.fonts-28.color-g-shadow {
  font-size: 1em;
}
.cms-index-index span.top-category-headline.text-uppercase.vert-2.fonts-28.color-g-shadow {
  font-size: 1em;
}
.cms-index-index span.color-g-shadow.fonts-28.text-uppercase.top-category-headline.vert-2,
.cms-index-index span.top-category-headline.text-uppercase.vert-1.fonts-28.color-g-shadow {
  margin-top: 100px;
}
.cms-index-index .m-t-6 {
  margin-top: 60px !important;
}
.cms-index-index .m-t-13 {
  margin-top: 130px !important;
}
.cms-index-index #product_info .color-g-shadow {
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (max-width: 1199.98px) {
  .cms-index-index header {
    margin-bottom: 0;
  }
}
.cms-index-index .skip-to-content {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
.cms-index-index .skip-to-content:before {
  background-image: linear-gradient(130deg, #0f4170, #df071a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
  line-height: 1;
}
.cms-index-index .your-roof-shop {
  margin-top: -5rem;
  z-index: 1;
  position: relative;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  margin-bottom: 3rem;
}
@media (max-width: 1199.98px) {
  .cms-index-index .your-roof-shop {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .cms-index-index .background-home-1 {
    background: url("..//images/home/home_background_01.png") no-repeat;
    background-size: cover;
    margin-top: 1.5rem;
    margin-bottom: 4rem;
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (max-width: 1199.98px) {
  .cms-index-index .background-home-1 {
    background-image: linear-gradient(130deg, #0f4170, #df071a);
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 992px) {
  .cms-index-index .background-home-2 {
    background: white url("..//images/home/home_background_01.png") no-repeat;
    background-size: cover;
    max-height: 10rem;
    margin-bottom: 2.5rem;
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (max-width: 1199.98px) {
  .cms-index-index .background-home-2 {
    background-image: linear-gradient(130deg, #0f4170, #df071a);
    padding-left: 15px;
    padding-right: 15px;
    margin: 1.5rem -15px 2.5rem;
  }
  .cms-index-index .background-home-2 .advantages-container {
    background: white;
    border-radius: 0.5rem;
  }
}
@media (max-width: 1199.98px) {
  .cms-index-index .home-offers {
    margin-bottom: -1.25rem;
  }
}
@media (min-width: 992px) {
  .cms-index-index .home-offers {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }
}
@media (max-width: 1199.98px) {
  .cms-index-index .slider-left {
    margin-top: -0.625rem;
    margin-bottom: 0.625rem;
    z-index: 1000;
  }
  .cms-index-index .slider-left.z-top {
    z-index: 1050;
  }
}
@media (min-width: 992px) {
  .cms-index-index .slider-left {
    margin-top: -2rem;
    margin-bottom: -2rem;
  }
}
.cms-index-index .slider-left .overlay-container {
  margin-bottom: 0;
}
.cms-index-index .slider-left .overlay-container video {
  object-fit: cover;
}
@media (min-width: 992px) {
  .cms-index-index .slider-left .overlay-container video {
    width: 652px;
    height: 418px;
    margin-bottom: -7px;
  }
}
@media (max-width: 1199.98px) {
  .cms-index-index .slider-left .overlay-container video {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}
@media (max-width: 1199.98px) {
  .cms-index-index .slider-left .overlay-container .overlay {
    height: auto;
  }
}
.cms-index-index .overlay-container {
  position: relative;
}
@media (max-width: 1199.98px) {
  .cms-index-index .overlay-container {
    margin-bottom: 0.625rem;
    height: 130px;
  }
}
.cms-index-index .overlay-container .overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1.25rem;
}
@media (max-width: 1199.98px) {
  .cms-index-index .overlay-container .overlay {
    height: 100%;
    padding: 0.9375rem 0.625rem;
  }
}
@media (max-width: 1199.98px) {
  .cms-index-index .overlay-container .overlay .h1 {
    display: inline-block;
    font-size: 1.6875rem;
    letter-spacing: 0.02rem;
    padding: 0.4375rem 0.625rem;
    font-weight: 800;
    line-height: 1;
  }
  .cms-index-index .overlay-container .overlay .h1:first-child {
    margin-bottom: 0.25rem;
  }
  .cms-index-index .overlay-container .overlay .h1:last-child {
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 992px) {
  .cms-index-index .overlay-container .overlay .h1 {
    font-size: 2.5rem;
    padding: 0.375rem 0.75rem;
    font-weight: 900;
    margin-bottom: 0.9375rem;
    letter-spacing: 0.02rem;
  }
  .cms-index-index .overlay-container .overlay .h1:first-child {
    margin-bottom: 0.375rem;
  }
}
@media (max-width: 1199.98px) {
  .cms-index-index .overlay-container .overlay .h2 {
    font-size: 1.25rem;
    letter-spacing: 0.02rem;
    padding: 0.3125rem 0.8125rem;
    line-height: 1;
  }
  .cms-index-index .overlay-container .overlay .h2:first-child {
    margin-bottom: 0.25rem;
  }
  .cms-index-index .overlay-container .overlay .h2:last-child {
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 992px) {
  .cms-index-index .overlay-container .overlay .h2 {
    margin-bottom: 0.9375rem;
    letter-spacing: 0.02rem;
  }
  .cms-index-index .overlay-container .overlay .h2:first-child {
    margin-bottom: 0.375rem;
  }
}
@media (max-width: 1199.98px) {
  .cms-index-index .overlay-container .overlay a {
    font-size: 0.875rem;
    letter-spacing: 0.08rem;
  }
}
.cms-index-index .overlay-container .overlay a.btn, .cms-index-index .overlay-container .overlay .checkout-index-index a.action.edit-address-link, .checkout-index-index .cms-index-index .overlay-container .overlay a.action.edit-address-link {
  font-family: "Roboto Condensed", sans-serif;
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .cms-index-index .overlay-container .overlay a.btn, .cms-index-index .overlay-container .overlay .checkout-index-index a.action.edit-address-link, .checkout-index-index .cms-index-index .overlay-container .overlay a.action.edit-address-link {
    font-size: 0.85rem;
    border-radius: 0.5rem;
    padding: 7px;
    line-height: 1;
  }
}
@media (min-width: 992px) {
  .cms-index-index .overlay-container .overlay a.btn, .cms-index-index .overlay-container .overlay .checkout-index-index a.action.edit-address-link, .checkout-index-index .cms-index-index .overlay-container .overlay a.action.edit-address-link {
    border-radius: 0.5rem;
    letter-spacing: 0.07rem;
  }
}
.cms-index-index .home-top-categories img {
  border-radius: 10px;
}
.cms-index-index .home-top-categories a {
  color: white;
}
.cms-index-index .home-top-categories a:hover, .cms-index-index .home-top-categories a:focus, .cms-index-index .home-top-categories a:visited {
  color: white;
  text-decoration: none;
}
.cms-index-index .home-top-categories .overlay-container {
  margin-bottom: 18px;
}
.cms-index-index .home-top-categories .overlay-container .overlay {
  display: flex;
  text-align: center;
  justify-content: center;
  flex-direction: column;
}
.cms-index-index .home-top-categories .overlay-container img {
  border-radius: 0.5rem;
}
.cms-index-index .home-top-categories .overlay {
  width: 100%;
  height: 100%;
  text-align: center;
}
.cms-index-index .home-top-categories .overlay span.vert-1 {
  vertical-align: -1.3rem;
}
.cms-index-index .home-top-categories .overlay span.vert-2 {
  vertical-align: -0.35rem;
}
.cms-index-index .home-top-categories .top-category-headline {
  font-weight: bold;
}
@media (max-width: 1199.98px) {
  .cms-index-index .home-top-categories .top-category-headline {
    font-size: 0.9rem;
    margin-bottom: 50%;
    margin-left: 2px !important;
    margin-right: 2px !important;
  }
}
@media (max-width: 1199.98px) {
  .cms-index-index .advantages-container {
    border-radius: 0.75rem;
    padding: 16px;
    display: inline-block;
    margin-top: -1.5rem;
    margin-bottom: -1.5rem;
  }
}
@media (min-width: 992px) {
  .cms-index-index .advantages-container {
    min-height: 212px;
    background: white;
    top: -2rem;
    position: relative;
    border-radius: 0.5rem;
  }
}
.cms-index-index .advantages-container a {
  text-align: center;
}
@media (max-width: 1199.98px) {
  .cms-index-index .advantages-container p {
    font-size: 0.875rem;
    white-space: nowrap;
    margin-top: 0.5rem;
  }
}
@media (max-width: 1199.98px) {
  .cms-index-index .advantages-container .col-sm-4:first-child {
    border-right: 1px solid #e5e5e5;
  }
}
@media (max-width: 1199.98px) {
  .cms-index-index .advantages-container img {
    height: 86px;
    width: auto;
    margin: auto;
  }
}
@media (min-width: 992px) {
  .cms-index-index .advantages-container img {
    height: 76px;
    width: auto;
    margin: auto auto 15px;
  }
}
.cms-index-index .scroll-into-view i {
  font-size: 2.5rem;
}
.cms-index-index .scroll-into-view i:before {
  background-image: linear-gradient(130deg, #0f4170, #df071a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 992px) {
  footer {
    margin-top: 30px;
  }
  footer .dhl-image {
    max-width: 60%;
    height: auto;
  }
}
footer .personal-guidance {
  margin: 0 !important;
  padding: 0 !important;
}
footer .personal-guidance h3 {
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
footer .personal-guidance h3 span {
  color: white;
}

.personal-guidance {
  color: white;
  margin-left: -15px;
  margin-right: -15px;
}
@media (max-width: 1199.98px) {
  .personal-guidance {
    background: #f2c99b;
    background-size: auto;
    height: 240px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (min-width: 992px) {
  .personal-guidance {
    background: #f2c99b;
    background-size: contain;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (max-width: 1199.98px) {
  .personal-guidance .container {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (max-width: 1199.98px) {
  .personal-guidance .inner-padding {
    padding: 2.5rem 0.75rem;
  }
}
@media (max-width: 1199.98px) {
  .personal-guidance h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 1199.98px) {
  .personal-guidance p.font-condensed {
    font-size: 0.75rem;
  }
}
@media (max-width: 1199.98px) {
  .personal-guidance p {
    font-size: 1.125rem;
  }
}
.personal-guidance a {
  color: white;
  text-decoration: underline;
}
.personal-guidance a:hover, .personal-guidance a:focus, .personal-guidance a:visited {
  color: white;
}
@media (max-width: 1199.98px) {
  .personal-guidance a {
    font-size: 0.875rem;
  }
}

.catalog-left-nav a .col-2 {
  display: none;
}

.btn.btn-outline-primary-light2:hover, button.btn-outline-primary-light2:hover, .checkout-index-index .btn-outline-primary-light2.action.edit-address-link:hover {
  color: white !important;
}

.personal-guidance .newsletter {
  background-color: transparent !important;
}

.personal-guidance h3 {
  color: white;
}

@media (max-width: 1199.98px) {
  .newsletter-contact-right {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .newsletter-contact-right {
    margin-top: 2em;
  }
}

@media (min-width: 992px) {
  .newsletter-contact-left {
    margin-top: 2em;
  }
  .newsletter-contact-left img {
    position: absolute;
    bottom: 0;
    right: 30px;
    max-height: 212px;
    width: auto;
  }
}

p.b-colr {
  line-height: 1.4;
  margin-bottom: 0.625rem;
}

hr.center-vert-border {
  margin-top: 32px;
}

@media (min-width: 992px) {
  .newsletter-contact-left .inner-padding {
    border-right: 2px solid #e7e7e7;
    padding-right: 1rem !important;
  }
}
@media (max-width: 1199.98px) {
  .newsletter-contact-left .inner-padding {
    border-right: none;
  }
}

@media (min-width: 992px) {
  .ueberUnsNavBlock {
    padding-top: 2em !important;
  }
}

@media (min-width: 992px) {
  .availability {
    font-size: 12px;
    white-space: nowrap;
  }
  .availability .icon-ms-truck {
    font-size: 18px;
    vertical-align: -2px;
  }
}

@media (min-width: 768px) {
  .widget .products-grid .owl-item .product-item img {
    height: auto;
    width: 100%;
  }
}
.cms-page-view h1 {
  color: #ECAD66;
  text-transform: uppercase;
}
@media (max-width: 1199.98px) {
  .cms-page-view h1 {
    font-size: 1.8rem;
  }
}
.cms-page-view h2, .cms-page-view .h2 {
  color: #ECAD66;
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
}
.cms-page-view h3, .cms-page-view .h3 {
  color: #ECAD66;
  font-size: 1.125rem;
  font-weight: bold;
  display: block;
}
.cms-page-view a {
  color: #ECAD66;
}

body, .page-wrapper {
  letter-spacing: 0.02rem;
}
@media (max-width: 1199.98px) {
  body, .page-wrapper {
    min-height: 100vh;
  }
}

@media (min-width: 992px) {
  .page-wrapper > .container {
    padding: 0;
  }
}

.hide-on-scroll.hide {
  display: none;
}

.back-to-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  font-size: 1.7rem;
  width: 3rem;
  text-align: center;
  height: 3rem;
  padding: 0;
  border-radius: 100%;
  background: white;
  z-index: 2000;
  color: #ECAD66;
}
@media (min-width: 992px) {
  .back-to-top {
    right: 6rem;
  }
}
.back-to-top:hover, .back-to-top:focus, .back-to-top:visited {
  color: #6A6A6A;
  text-decoration: none;
}

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

.page-wrapper > .bg-light {
  background: var(--page-wrapper-container-bg) !important;
}
.page-wrapper > .bg-light > .container {
  background: white;
}

.cookie-status-message {
  display: none;
}

#main-container {
  background: var(--main-container-bg);
}

img {
  max-width: 100%;
}

.border-fat {
  border-width: 2px;
}

.badges img {
  width: 64px;
}

.widget-h-border {
  margin-right: 10rem;
}

.tier-prices .tier-qty.active {
  font-weight: bold;
  color: #ECAD66;
}
.tier-prices a {
  color: #ECAD66;
  text-decoration: underline;
}

.cursor-pointer {
  cursor: pointer;
}

#certificates img {
  max-width: 100%;
  height: 450px;
  padding-bottom: 1.5rem;
}

.box-shadow-light {
  box-shadow: 0 0 13px 1px rgba(55, 55, 55, 0.1);
}

.bg-primary-trans {
  background: rgba(236, 173, 102, 0.9) !important;
}

.bg-white-trans {
  background: rgba(255, 255, 255, 0.9) !important;
}

.owl-item {
  height: 100% !important;
}

.userlike-tracking-img {
  display: none !important;
}

.img-fullwidth {
  width: 100% !important;
  height: auto;
}

@media (max-width: 1199.98px) {
  .block.newsletter {
    padding-top: 1rem;
  }
}

.mp_social_share_float {
  top: 200px !important;
  display: none !important;
}

[aria-hidden=true] {
  display: none !important;
}

.bg-red {
  background: #ECAD66;
}

ol.items {
  margin-top: 1em;
  padding-left: 1em;
}

a.action.primary.small {
  background-color: var(--color-primary);
  box-sizing: border-box;
  border-radius: 4px;
  color: white;
  font-weight: bold;
  padding: 0.5em;
  cursor: pointer;
}

.account #password-strength-meter-container {
  height: 2em;
}
.account #password-strength-meter-container .progress-bar {
  width: 0;
  color: #222222;
  text-align: left;
}
.account #password-strength-meter-container .progress-bar > span {
  padding-left: 1rem;
  padding-right: 1rem;
}
.account #password-strength-meter-container.password-none .progress-bar {
  width: 0;
  color: #222222;
}
.account #password-strength-meter-container.password-weak .progress-bar {
  width: 25%;
  background: #6A6A6A;
  color: #f0f0f0;
}
.account #password-strength-meter-container.password-medium .progress-bar {
  width: 50%;
  background: #ffc107;
  color: #f0f0f0;
}
.account #password-strength-meter-container.password-strong .progress-bar {
  width: 75%;
  background: rgb(51.6956521739, 206.3043478261, 87);
  color: #f0f0f0;
}
.account #password-strength-meter-container.password-very-strong .progress-bar {
  width: 100%;
  background: #28a745;
  color: #f0f0f0;
}
.account #account-nav {
  border: 1px solid lightgrey;
  border-radius: 0.25rem;
}
.account #account-nav li {
  border-bottom: 1px solid lightgrey;
  width: 100%;
}
.account #account-nav li:last-child {
  border-bottom: 0;
}
.account #account-nav li a:hover:hover {
  background: rgb(241.6337209302, 197.3139534884, 147.3662790698);
  color: white;
}
.account #account-nav li a, .account #account-nav li strong {
  width: 100%;
  color: black;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.8125rem;
  display: block;
  padding: 0.5rem 1rem;
}
.account #account-nav li a:hover, .account #account-nav li a:focus, .account #account-nav li a:visited, .account #account-nav li strong:hover, .account #account-nav li strong:focus, .account #account-nav li strong:visited {
  color: black;
  text-decoration: none;
}
.account #account-nav li.current {
  background: #ECAD66;
}
.account #account-nav li.current strong, .account #account-nav li.current a {
  color: white;
}

.customer-account-login .field-tooltip-content {
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}
.customer-account-login [aria-labelledby=block-amazon-login-heading] p {
  display: none;
}
.customer-account-login #block-amazon-login-heading {
  margin-bottom: 0.5rem;
  display: block;
}
.customer-account-login .form-login {
  margin-top: 36px;
}

.customer-account-create .field-tooltip-content {
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}
.customer-account-create [aria-labelledby=block-amazon-login-heading] p {
  display: none;
}
.customer-account-create #block-amazon-login-heading {
  margin-bottom: 0.5rem;
  display: block;
}
.customer-account-create .progress {
  height: 1.5rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background: #bfc1c4;
}

:root .ammenu-header-container {
  min-height: 59px;
}
@media (max-width: 1199.98px) {
  :root span.ammenu-text {
    color: lightgrey;
    font-size: 1.25rem;
    line-height: 1.25;
  }
}

.ammenu-menu-wrapper {
  margin-bottom: 0 !important;
  position: sticky;
}
@media only screen and (min-width: 769px) {
  .ammenu-menu-wrapper {
    top: 83px;
  }
}
.ammenu-menu-wrapper {
  z-index: 10000;
  box-shadow: 1px 5px 5px -5px rgba(0, 0, 0, 0.2);
}
.ammenu-menu-wrapper [aria-label="Go back to all categories"] {
  display: none !important;
}
.ammenu-menu-wrapper a.ammenu-current-title {
  text-decoration: none;
  padding: 6px 20px;
  border-bottom: 1px solid #c4c4c4;
  border-top: 1px solid #c4c4c4;
  font-size: 20px;
}

#ammenu-header-container {
  position: sticky !important;
  top: 0 !important;
  background: white;
  z-index: 8888;
}

@media only screen and (max-width: 767px) {
  .ammenu-header-container .block-search .minisearch .control {
    position: absolute;
    top: 120%;
    right: 0;
    left: 0;
    z-index: 9;
    box-sizing: border-box;
    margin: 0;
    border: none;
    background: #fff;
  }
}
.ammenu-sticky, .ammenu-header-container.-sticky .header.content, .ammenu-nav-sections.-topmenu.-sticky .ammenu-main-container {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  max-width: 100%;
}

.ammmenu-word-break {
  word-wrap: break-word;
  word-break: break-word;
}

.ie11 .ammmenu-word-break {
  word-break: break-all;
}

@-webkit-keyframes ammenu-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes ammenu-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes ammenu-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes ammenu-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ammenu-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes ammenu-animation__fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@-moz-keyframes ammenu-animation__fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@-ms-keyframes ammenu-animation__fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@-o-keyframes ammenu-animation__fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes ammenu-animation__fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
.ammenu-header-container {
  position: relative;
  min-height: 64px;
}

.ammenu-header-container.page-header {
  margin-bottom: 0;
}

.ammenu-header-container.-sticky .header.content {
  background: #fff;
}

.ammenu-header-container.-sticky .ammenu-button.-hamburger {
  margin-left: 20px;
}

.ammenu-menu-wrapper {
  margin-bottom: 0;
}

.ammenu-menu-wrapper .ammenu-item {
  margin: 0;
}

.ammenu-menu-wrapper .ammenu-arrow {
  position: absolute;
  right: 10px;
  z-index: 2;
  margin: 0;
  width: 20px;
  height: 20px;
  opacity: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  offset-path: none;
}

.ammenu-menu-wrapper .ammenu-arrow:before, .ammenu-menu-wrapper .ammenu-arrow:after {
  position: absolute;
  display: block;
  width: 12px;
  height: 2px;
  background: #000;
  content: "";
  transition: none;
  transform-origin: 100% 50%;
}

.ammenu-menu-wrapper .ammenu-main-container {
  box-sizing: border-box;
  width: 100%;
}

.ammenu-menu-wrapper .ammenu-link {
  -webkit-animation: ammenu-animation__fadeIn 0.1s forwards;
  animation: ammenu-animation__fadeIn 0.1s forwards;
  display: flex;
  text-decoration: none;
  align-items: center;
  border: none;
  border-radius: 0;
  background: #ecad66;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  width: 100%;
  outline: none;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.75);
}

.ammenu-menu-wrapper .ammenu-link .reset-button {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-menu-wrapper .ammenu-link:focus {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-menu-wrapper .ammenu-link:hover {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-menu-wrapper .ammenu-link:hover {
  text-decoration: none;
}

.ammenu-menu-wrapper .ammenu-text-block {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin: 0;
  line-height: 20px;
  font-size: 16px;
}

.ammenu-menu-wrapper .ammenu-text-block .ammenu-text {
  align-self: center;
}

.ammenu-menu-wrapper .ammenu-label {
  display: inline-block;
  box-sizing: border-box;
  padding: 5px;
  min-width: 50px;
  border-radius: 2px;
  background: #fff;
  color: #000;
  vertical-align: middle;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

.ammenu-menu-wrapper .ammenu-icon-block {
  position: relative;
  display: inline-block;
  margin: 0 8px 0 0;
  min-width: 18px;
  width: 18px;
  height: 18px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.ammenu-menu-wrapper .ammenu-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.ammenu-menu-wrapper table img {
  max-width: inherit;
}

.ammenu-menu-wrapper [data-appearance=carousel] {
  min-width: 200px;
  max-width: 100%;
  width: 100%;
}

.ammenu-nav-sections {
  z-index: 9;
  background: #fff;
}

.ammenu-nav-sections:not(.-topmenu) {
  -webkit-animation-name: "ammenu-animation__fadeInLeft";
  animation-name: "ammenu-animation__fadeInLeft";
  animation-duration: 0.3s;
}

.ammenu-header-container .header.content {
  display: flex;
  align-items: center;
  transition: 0.1s all ease-in;
  position: relative;
  margin-bottom: 10px;
}

.ammenu-header-container .header.content .ammenu-logo {
  display: inline-flex;
  margin: 0 auto 0 0;
  min-width: 110px;
}

.ammenu-header-container .header.content .compare {
  order: 1;
}

.ammenu-header-container .header.content .compare .item {
  margin: 0;
}

.ammenu-header-container .header.content .minicart-wrapper {
  order: 3;
  margin: 0 10px;
}

.ammenu-header-container .header.content .block-search {
  order: 2;
  margin-top: 0;
}

@media (max-width: 1025px) {
  .ammenu-header-container.-sticky .header.content {
    padding: 10px;
  }
}
.ammenu-tabs-list {
  display: flex;
  margin: 0;
  padding: 0;
}

.ammenu-tabs-list .ammenu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  cursor: pointer;
}

.ammenu-tabs-list .ammenu-button {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  transition: 0.1s all ease-in;
  width: 100%;
  min-height: 50px;
  text-transform: uppercase;
}

.ammenu-tabs-list .ammenu-button .reset-button {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-tabs-list .ammenu-button:focus {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-tabs-list .ammenu-button:hover {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-tabs-list .ammenu-button.-active {
  font-weight: 600;
}

.ammenu-tabs-list .ammenu-button:hover {
  color: #1787e0;
}

.ammenu-button {
  outline: none;
}

.ammenu-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  z-index: 1;
  align-self: stretch;
  width: 25px;
  min-width: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.1s;
}

.ammenu-toggle .reset-button {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-toggle:focus {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-toggle:hover {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-toggle .ammenu-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  margin: 0 0 -5px;
  width: 14px;
  height: 14px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-radius: 2px;
  cursor: pointer;
  transform: rotate(315deg);
}

.ammenu-button.-hamburger {
  display: flex;
  align-items: center;
  position: relative;
  display: inline-flex;
  margin: 20px 20px 20px 0;
  padding: 0;
  width: 25px;
  height: 17px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: none;
}

.ammenu-button.-hamburger:hover, .ammenu-button.-hamburger:focus {
  border: none;
  background: transparent;
}

.ammenu-button.-hamburger:not(.-hamburger) {
  display: none;
}

.ammenu-button.-hamburger:before, .ammenu-button.-hamburger:after, .ammenu-button.-hamburger .ammenu-line {
  position: absolute;
  display: block;
  margin: 0;
  width: 100%;
  border-color: inherit;
  border-bottom: 1px solid;
  border-radius: 1px;
  content: "";
}

.ammenu-button.-hamburger:before {
  top: 0;
}

.ammenu-button.-hamburger:after {
  bottom: 0;
}

.ammenu-button.-close {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  color: #6d6d6d;
  cursor: pointer;
}

.ammenu-button.-close .reset-button {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-button.-close:focus {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-button.-close:hover {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-button.-close:before {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTE1IDEuMTYzMTRMMTMuODM2NCAwTDcuNSA2LjMzNzI5TDEuMTYzNTcgMEwwIDEuMTYyNzFMNi4zMzcyOSA3LjVMMC4wMDA4NTcxNDMgMTMuODM3M0wxLjE2MzU3IDE1TDcuNSA4LjY2MzE0TDEzLjgzNjQgMTQuOTk5NkwxNC45OTgzIDEzLjgzNjlMOC42NjI3MSA3LjVMMTUgMS4xNjMxNFoiIGZpbGw9IiMzNDM0MzQiLz48L3N2Zz4=);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  width: 15px;
  height: 15px;
}

.ammenu-button.-close:hover {
  color: #000;
}

.ammenu-nav-sections.-mobile .ammenu-settings-list {
  padding: 20px 0;
}

.ammenu-nav-sections.-mobile .ammenu-items.-account-links {
  margin: 15px 0;
}

.ammenu-nav-sections.-mobile .ammenu-items.-account-links .ammenu-counter {
  padding: 0 0 0 5px;
  text-transform: capitalize;
  font-size: 0.8em;
  opacity: 0.5;
}

.ammenu-nav-sections.-mobile .ammenu-items.-account-links .ammenu-counter:before {
  content: "(";
}

.ammenu-nav-sections.-mobile .ammenu-items.-account-links .ammenu-counter:after {
  content: ")";
}

.ammenu-nav-sections.-mobile .ammenu-settings-block {
  padding: 15px 0;
  border-bottom: 1px solid #c4c4c4;
}

.ammenu-nav-sections.-mobile .ammenu-settings-block .ammenu-toggle {
  transform: rotate(180deg);
}

.ammenu-nav-sections.-mobile .ammenu-settings-block .ammenu-toggle.-active {
  transform: rotate(0);
}

.ammenu-nav-sections.-mobile .ammenu-settings-block .ammenu-text {
  padding: 5px 0;
  max-width: 70%;
}

.ammenu-nav-sections.-mobile .ammenu-settings-block .ammenu-title {
  margin: 0;
  padding: 0 20px 0;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.8rem;
}

.ammenu-nav-sections.-mobile .ammenu-settings-block .ammenu-items.-dropdown {
  padding: 10px 0 0 10px;
}

.ammenu-nav-sections.-mobile .ammenu-settings-block .ammenu-items.-dropdown .ammenu-link {
  justify-content: space-between;
  height: 30px;
}

.ammenu-nav-sections.-mobile .ammenu-settings-block .ammenu-code {
  margin: 0 0 0 10px;
  text-transform: uppercase;
}

.ammenu-menu-header {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
  font-weight: 700;
  font-size: 1.6rem;
}

.ammenu-menu-header .ammenu-message.-welcome {
  margin: 0 5px 0 0;
}

.ammenu-menu-header .ammenu-message.-welcome:after {
  content: ",";
}

.ammenu-menu-header .ammenu-name {
  border-bottom: 1px dashed;
}

.ammenu-menu-header .ammenu-name:after {
  content: "!";
}

.ammenu-categories-container {
  display: flex;
  flex-wrap: wrap;
}

.ammenu-categories-container .ammenu-column.-col-10 {
  flex-basis: 10%;
}

.ammenu-categories-container .ammenu-column.-col-9 {
  flex-basis: 11.1111111111%;
}

.ammenu-categories-container .ammenu-column.-col-8 {
  flex-basis: 12.5%;
}

.ammenu-categories-container .ammenu-column.-col-7 {
  flex-basis: 14.2857142857%;
}

.ammenu-categories-container .ammenu-column.-col-6 {
  flex-basis: 16.6666666667%;
}

.ammenu-categories-container .ammenu-column.-col-5 {
  flex-basis: 20%;
}

.ammenu-categories-container .ammenu-column.-col-4 {
  flex-basis: 25%;
}

.ammenu-categories-container .ammenu-column.-col-3 {
  flex-basis: 33.3333333333%;
}

.ammenu-categories-container .ammenu-column.-col-2 {
  flex-basis: 50%;
}

.ammenu-categories-container .ammenu-column.-col-1 {
  flex-basis: 100%;
}

.ammenu-categories-container .ammenu-list {
  display: inline-flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 0;
}

.ammenu-categories-container .ammenu-list .ammenu-list {
  padding: 0 0 0 15px;
}

.ammenu-categories-container .ammenu-link {
  white-space: nowrap;
  font-size: 1.6rem;
}

.ammenu-categories-container .ammenu-column {
  flex-basis: 100%;
  box-sizing: border-box;
  padding: 0;
}

.ammenu-categories-container .ammenu-column:not(:last-child) {
  padding-right: 15px;
}

.ammenu-categories-container .ammenu-column > .ammenu-list {
  padding-bottom: 20px;
}

.ammenu-categories-container .ammenu-text-block .ammenu-label {
  margin: 0 0 0 10px;
}

.ammenu-nav-sections.-topmenu.-hamburger {
  padding: 0 20px;
}

.ammenu-nav-sections.-topmenu.-hamburger:not(.-sticky) .ammenu-main-container {
  max-width: 1415px;
}

.ammenu-nav-sections.-topmenu.-hamburger .ammenu-main-container {
  padding: 0;
}

.ammenu-nav-sections.-left-menu {
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
}

.ammenu-nav-sections.-left-menu .ammenu-button.-close {
  position: absolute;
  top: 25px;
  right: -30px;
  pointer-events: none;
}

.ammenu-nav-sections.-left-menu .ammenu-menu-title {
  display: block;
  font-weight: 600;
}

.ammenu-nav-sections.-left-menu .ammenu-menu-header {
  margin: 0 0 20px;
  color: #fff;
  font-size: 1.4rem;
}

.ammenu-nav-sections.-left-menu .switcher {
  box-sizing: border-box;
  padding: 30px 0 0;
}

.ammenu-nav-sections.-left-menu .switcher .switcher-options {
  padding: 0 25px;
}

.ammenu-nav-sections.-left-menu .switcher .switcher-label {
  padding: 0 25px 10px;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 25px;
}

.ammenu-nav-sections.-left-menu .switcher .switcher-trigger {
  padding: 0;
  font-size: 1.6rem;
}

.ammenu-nav-sections.-left-menu .switcher .switcher-trigger.active strong:after {
  top: 8px;
  transform: rotate(225deg);
}

.ammenu-nav-sections.-left-menu .switcher .switcher-trigger strong {
  position: relative;
  display: block;
  width: 100%;
}

.ammenu-nav-sections.-left-menu .switcher .switcher-trigger strong:after {
  position: absolute;
  top: 2px;
  right: 0;
  display: block;
  width: 10px;
  height: 10px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  content: "";
  transform: rotate(45deg);
}

.ammenu-nav-sections.-left-menu .ammenu-categories-container .ammenu-column > .ammenu-link {
  text-transform: uppercase;
}

.ammenu-nav-sections.-left-menu .ammenu-categories-container .ammenu-label {
  margin-top: 5px;
}

.ammenu-nav-sections.-left-menu .ammenu-categories-container .ammenu-text {
  transition: 0.1s all ease-in;
  padding: 5px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 600;
  font-size: 1.6rem;
}

.ammenu-nav-sections.-left-menu .ammenu-categories-container .ammenu-text:hover {
  border-color: inherit;
}

.ammenu-nav-sections.-left-menu .ammenu-items.-root > .ammenu-item > .ammenu-link {
  flex-basis: 100%;
  text-transform: uppercase;
  font-weight: 600;
}

.ammenu-nav-sections.-left-menu .pagebuilder-column {
  min-width: min-content;
  min-width: 120px;
}

.ammenu-nav-sections.-left-menu [data-content-type=html], .ammenu-nav-sections.-left-menu [data-content-type=video] {
  min-width: 120px;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 99999;
  overflow: visible;
  margin-bottom: 25px;
  max-width: 360px;
  width: 90%;
  height: 100vh;
  transition: left 0.3s ease;
}

.ammenu-nav-sections.-left-menu:not(.-mobile).-opened {
  left: 0;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-menu-header {
  padding: 22px 30px;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-menu-title {
  padding: 0 30px;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-label {
  margin-left: 10px;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-items {
  margin: 0;
  padding: 0 30px;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-items.-root > .ammenu-item {
  position: relative;
  padding: 10px 25px 10px 0;
  text-transform: capitalize;
  font-size: 1.6rem;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-items.-root > .ammenu-item .ammenu-link .ammenu-toggle {
  position: absolute;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-item > .ammenu-text {
  padding: 0 10px 0 0;
  text-align: left;
  white-space: nowrap;
  font-size: 1.6rem;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-item.-active > .ammenu-text {
  border-color: inherit;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-items-list > .ammenu-item .ammenu-link .ammenu-text, .ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-text > .ammenu-link .ammenu-text {
  padding: 5px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.6rem;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-submenu-block.-root {
  overflow-y: auto;
  scrollbar-color: #adadad rgba(173, 173, 173, 0.2);
  scrollbar-width: thin;
  position: absolute;
  top: 0;
  left: calc(100% + 30px);
  margin: 0;
  padding: 15px;
  max-width: 64vw;
  max-height: 70vh;
  box-shadow: 3px 2px 8px rgba(0, 0, 0, 0.15);
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-submenu-block.-root::-webkit-scrollbar {
  background: #f0f0f0;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-submenu-block.-root::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: #adadad;
  cursor: pointer;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-submenu-block.-root::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #fff;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-submenu-block.-root::-webkit-scrollbar {
  width: 6px;
  height: 12px;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-submenu-block.-root::-webkit-scrollbar-thumb {
  width: 6px;
  height: 6px;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-submenu-block.-root ::-webkit-scrollbar-track {
  width: 6px;
  height: 6px;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-submenu-block.-root.-auto {
  min-width: fit-content;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-submenu-block.-root.-full {
  min-width: 65vw;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-toggle {
  top: 0;
  right: 0;
  bottom: 0;
  box-shadow: none;
  transform: rotate(90deg);
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-toggle.-active {
  transform: rotate(-90deg);
}

.ammenu-nav-sections.-left-menu.-mobile {
  overflow-x: hidden;
}

.ammenu-nav-sections.-left-menu.-mobile .ammenu-menu-title {
  margin: 20px 0;
  padding: 0 20px;
  font-size: 1.4rem;
}

.ammenu-nav-sections.-left-menu.-mobile .ammenu-menu-header {
  padding: 22px 20px;
}

.ammenu-nav-sections.-left-menu.-mobile .ammenu-item {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
}

.ammenu-nav-sections.-mobile {
  transition: 0.3s all ease-in;
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 99999;
  overflow: auto;
  margin-bottom: 25px;
  padding: 0 0 40px;
  max-width: 300px;
  width: 100%;
  height: 100vh;
}

.ammenu-nav-sections.-mobile.-opened {
  left: 0;
}

.ammenu-nav-sections.-mobile:not(.-has-icons) .ammenu-items.-root > .ammenu-item > .ammenu-link:before {
  box-sizing: border-box;
  margin: 0 10px 0 0;
  min-width: 10px;
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-radius: 12px;
  content: "";
}

.ammenu-nav-sections.-mobile .ammenu-items {
  flex-basis: 100%;
  margin: 0;
  padding: 0;
}

.ammenu-nav-sections.-mobile .ammenu-items.-root > .ammenu-item {
  margin: 0;
  border-bottom: 1px solid #c4c4c4;
}

.ammenu-nav-sections.-mobile .ammenu-items.-root > .ammenu-item > .ammenu-link {
  display: flex;
  align-items: center;
  flex-basis: 100%;
  box-sizing: border-box;
  min-height: 54px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.6rem;
}

.ammenu-nav-sections.-mobile .ammenu-items.-root > .ammenu-item .ammenu-item {
  margin: 0;
  padding: 0 0 0 25px;
}

.ammenu-nav-sections.-mobile .ammenu-items.-root > .ammenu-item .ammenu-item .ammenu-toggle .ammenu-icon {
  width: 11px;
  height: 11px;
}

.ammenu-nav-sections.-mobile .ammenu-label {
  margin: 0 5px 0 10px;
}

.ammenu-nav-sections.-mobile .ammenu-toggle {
  margin: 0 0 0 auto;
  box-shadow: none;
}

.ammenu-nav-sections.-mobile .ammenu-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.ammenu-nav-sections.-mobile .ammenu-link {
  flex-basis: 100%;
  flex-grow: 1;
  box-sizing: border-box;
  padding: 0 20px;
  text-align: left;
}

.ammenu-nav-sections.-mobile .ammenu-text-block {
  padding: 10px 0;
}

.ammenu-nav-sections.-mobile .ammenu-text {
  word-wrap: break-word;
  word-break: break-word;
  overflow: hidden;
  box-sizing: border-box;
  max-height: 100%;
  vertical-align: middle;
  text-align: left;
  text-overflow: ellipsis;
}

.ie11 .ammenu-nav-sections.-mobile .ammenu-text {
  word-break: break-all;
}

.ammenu-nav-sections.-mobile:not(.-left-menu) .ammenu-menu-header {
  padding: 16px 20px;
  border-bottom: 1px solid #c4c4c4;
}

.ammenu-nav-sections.-mobile:not(.-left-menu) .ammenu-items.-root {
  padding: 0 0 20px;
}

.ammenu-nav-sections.-topmenu {
  transition: 0.1s all ease-in;
}

.ammenu-nav-sections.-topmenu.-sticky {
  min-height: 58px;
}

.ammenu-nav-sections.-topmenu.-sticky .ammenu-items.-root {
  margin: 0 auto;
  max-width: 1415px;
}

.ammenu-nav-sections.-topmenu.-sticky .ammenu-label {
  white-space: nowrap;
}

.ammenu-nav-sections.-topmenu .ammenu-main-container {
  transition: 0.1s all ease-in;
  box-sizing: border-box;
  margin: auto;
  padding: 0 20px;
}

.ammenu-nav-sections.-topmenu .ammenu-items {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item {
  display: inline-block;
  box-sizing: border-box;
  margin: 0;
  font-weight: 600;
  font-size: 1.6rem;
  cursor: pointer;
  transition: 0.5s;
  flex-grow: 1;
}

.ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item:hover {
  background: #fff;
  color: rgb(233, 160, 79);
}

.ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item:hover + .ammenu-submenu-block {
  display: flex;
}

.ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item:hover > .ammenu-link {
  text-decoration: none;
}

.ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item > .ammenu-link {
  position: relative;
  padding: 16.5px 15px;
}

.ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item > .ammenu-link .ammenu-label {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin: 0 0 1px;
}

.ammenu-nav-sections.-topmenu .ammenu-categories-container .ammenu-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.ammenu-nav-sections.-topmenu .ammenu-categories-container .ammenu-item.-parent:after {
  transition: 0.1s all ease-in;
  margin: 0 0 0 10px;
  width: 30px;
  height: 10px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxNyAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTYuNDQxOSA1LjQ0MTk0QzE2LjY4NiA1LjE5Nzg2IDE2LjY4NiA0LjgwMjE0IDE2LjQ0MTkgNC41NTgwNkwxMi40NjQ1IDAuNTgwNTgzQzEyLjIyMDQgMC4zMzY1MDUgMTEuODI0NyAwLjMzNjUwNSAxMS41ODA2IDAuNTgwNTgzQzExLjMzNjUgMC44MjQ2NiAxMS4zMzY1IDEuMjIwMzkgMTEuNTgwNiAxLjQ2NDQ3TDE1LjExNjEgNUwxMS41ODA2IDguNTM1NTNDMTEuMzM2NSA4Ljc3OTYxIDExLjMzNjUgOS4xNzUzNCAxMS41ODA2IDkuNDE5NDJDMTEuODI0NyA5LjY2MzUgMTIuMjIwNCA5LjY2MzUgMTIuNDY0NSA5LjQxOTQyTDE2LjQ0MTkgNS40NDE5NFpNMCA1LjYyNUgxNlY0LjM3NUgwVjUuNjI1WiIgZmlsbD0iIzE3ODdFMCIvPjwvc3ZnPg==);
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  opacity: 0;
}

.ammenu-nav-sections.-topmenu .ammenu-categories-container .ammenu-item.-active.-parent:after {
  transition: 0.1s all ease-in;
  opacity: 1;
  transform: translateX(5px);
}

.ammenu-nav-sections.-topmenu .ammenu-categories-container .ammenu-item:not(:last-child) {
  padding: 0 0 10px;
}

.ammenu-nav-sections.-topmenu .ammenu-categories-container .ammenu-column > .ammenu-link {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-weight: 700;
}

.ammenu-nav-sections.-topmenu .ammenu-categories-container .ammenu-list .ammenu-list {
  transition: 0.1s all ease-in;
  position: absolute;
  left: calc(100% + 20px);
  z-index: 9;
  margin: 0;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: #fff;
}

.ammenu-main-container {
  background: #F2C99B;
  color: #000;
}

.ammenu-nav-sections.-topmenu:not(.-hamburger) .ammenu-main-container .ammenu-items.-root {
  margin: 0 auto;
  max-width: 1415px;
}

.ammenu-submenu-block {
  box-sizing: border-box;
  background-position: center center;
  background-size: inherit;
  background-repeat: no-repeat;
  transition: 0.3s;
}

.ammenu-submenu-block .ambrands-link {
  display: none;
}

.ammenu-submenu-block .ambrands-list-popup {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.ammenu-submenu-block.-root {
  position: absolute;
  z-index: 999;
  overflow-y: auto;
  max-width: 100%;
  max-height: 70vh;
  box-shadow: 0 4px 5px rgba(35, 74, 87, 0.1);
  font-weight: 400;
  cursor: auto;
}

.ammenu-submenu-block.-root.-full {
  left: 0;
}

.ammenu-submenu-block.-simple {
  box-sizing: border-box;
  padding: 25px;
  background-position: center center;
  background-size: inherit;
  background-repeat: no-repeat;
}

.ammenu-submenu-block.-simple .ambrands-link {
  display: none;
}

.ammenu-submenu-block.-simple .ambrands-list-popup {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.ammenu-nav-sections.-mobile.-accordion .ammenu-toggle {
  transform: rotate(180deg);
}

.ammenu-nav-sections.-mobile.-accordion .ammenu-toggle.-active {
  transform: rotate(0);
}

.ammenu-nav-sections.-mobile.-accordion .ammenu-items.-root > .ammenu-item > .ammenu-items > .ammenu-item > .ammenu-link {
  text-transform: uppercase;
  font-weight: 600;
}

.pagebuilder-content-type-wrapper .ammenu-item {
  list-style: none;
}

.ammenu-label-group.admin__control-grouped {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ammenu-label-group.admin__control-grouped > .admin__field {
  display: flex;
  align-items: center;
  flex-grow: 1;
  margin-top: 0;
}

.ammenu-label-group.admin__control-grouped .colorpicker-input {
  width: calc(100% - 37px) !important;
}

.ammenu-items-tree {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  font-size: 2rem;
}

.ammenu-items-tree .ammenu-item {
  flex-basis: 200px;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 35px 30px;
  border: 1px dashed #ccc;
  border-radius: 4px;
  background: #fff;
  white-space: nowrap;
  cursor: pointer;
}

.ammenu-items-tree .ammenu-item:hover {
  border-color: #a0a0a0;
  box-shadow: 0 2px 4px rgba(32, 77, 112, 0.16);
}

.ammenu-items-tree .ammenu-item:not(:last-child) {
  margin-right: 20px;
}

.ammenu-nav-sections .ammenu-product-list * {
  color: inherit !important;
}

.ammenu-nav-sections .ammenu-product-list.-slider .slick-slide {
  vertical-align: top;
}

.ammenu-nav-sections .ammenu-product-list .actions-secondary .action:hover {
  color: inherit;
  opacity: 0.75;
}

.ammenu-nav-sections .ammenu-product-list .product-item, .ammenu-nav-sections .ammenu-product-list .product-item-info {
  background: transparent;
}

.ammenu-nav-sections .ammenu-product-list .actions-secondary .action {
  color: inherit;
  opacity: 1;
}

.ammenu-nav-sections .ammenu-product-list .actions-secondary .action:hover {
  opacity: 0.75;
}

.ammenu-submenu-block .amreview-widget-container .amreview-title, .ammenu-submenu-block .amreview-widget-container .review-item {
  background: none !important;
}

.ammenu-submenu-block .ammenu-product-list.-grid {
  margin: 0;
  padding: 0 10px;
}

.ammenu-submenu-block.-builder.-root {
  display: flex;
  overflow-y: auto;
  scrollbar-color: #adadad rgba(173, 173, 173, 0.2);
  scrollbar-width: thin;
  padding: 25px;
}

.ammenu-submenu-block.-builder.-root::-webkit-scrollbar {
  background: #f0f0f0;
}

.ammenu-submenu-block.-builder.-root::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: #adadad;
  cursor: pointer;
}

.ammenu-submenu-block.-builder.-root::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #fff;
}

.ammenu-submenu-block.-builder.-root::-webkit-scrollbar {
  width: 6px;
  height: 12px;
}

.ammenu-submenu-block.-builder.-root::-webkit-scrollbar-thumb {
  width: 6px;
  height: 6px;
}

.ammenu-submenu-block.-builder.-root ::-webkit-scrollbar-track {
  width: 6px;
  height: 6px;
}

.ammenu-submenu-block.-builder.-root .ammenu-items-list {
  display: flex;
  display: inline-flex;
  box-sizing: border-box;
  font-size: 1.4rem;
}

.ammenu-submenu-block.-builder.-root .ammenu-label {
  margin: 0 0 0 10px;
}

.ammenu-submenu-block.-builder.-root .ammenu-items-list .ammenu-item {
  position: relative;
  line-height: 20px;
  cursor: pointer;
}

.ammenu-submenu-block.-builder.-root .ammenu-link {
  position: relative;
  display: flex;
}

.ammenu-submenu-block.-builder.-root .ammenu-text-block {
  align-items: center;
}

.ammenu-submenu-block.-builder.-root .ammenu-link .ammenu-text {
  overflow: hidden;
  max-width: 200px;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ammenu-submenu-block.-builder.-root .ammenu-submenu-sidebar {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  align-self: stretch;
  flex-grow: 1;
  box-sizing: border-box;
  max-width: 100%;
}

.ammenu-submenu-block.-builder.-root > .ammenu-submenu-block {
  position: relative;
}

.ammenu-submenu-block.-builder.-root .ammenu-submenu-block {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  box-sizing: border-box;
  padding: 0;
  width: 100%;
}

.ammenu-submenu-block.-builder.-root .ammenu-content-block {
  flex-basis: 100%;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

.ammenu-submenu-block.-builder.-root .ammenu-product-list, .ammenu-submenu-block.-builder.-root .products-slider {
  max-width: 100%;
  width: 100%;
}

.ammenu-submenu-block.-top {
  flex-wrap: wrap;
}

.ammenu-submenu-block.-top > div {
  flex-basis: 100%;
  box-sizing: border-box;
}

.ammenu-submenu-block.-top.-root > .ammenu-items-list .ammenu-label {
  white-space: pre;
}

.ammenu-submenu-block.-top > .ammenu-items-list {
  display: flex;
  padding: 8px 0;
  width: 100%;
}

.ammenu-submenu-block.-top > .ammenu-items-list > .ammenu-item {
  margin: 0 15px 0 0;
}

.ammenu-submenu-block.-top > .ammenu-submenu-sidebar {
  flex-basis: 100%;
}

.ammenu-submenu-block.-top > .ammenu-submenu-sidebar > .ammenu-submenu-block:not(.-empty) {
  position: relative;
  padding: 10px 0 0;
}

.ammenu-submenu-block.-top > .ammenu-submenu-sidebar > .ammenu-submenu-block:not(.-empty):after {
  position: absolute;
  display: inline-block;
  content: "";
  -webkit-filter: contrast(0.1);
  filter: contrast(0.1);
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #e9ecf5;
}

.ammenu-submenu-block.-left {
  flex-wrap: nowrap;
}

.ammenu-submenu-block.-left > .ammenu-items-list {
  display: inline-flex;
  flex-direction: column;
  padding: 0 15px 0 0;
  text-align: right;
}

.ammenu-submenu-block.-left > .ammenu-items-list .ammenu-item {
  align-self: flex-start;
  margin: 0;
  padding: 8px 10px 8px 0;
  min-width: 90px;
  line-height: 1.3;
}

.ammenu-submenu-block.-left > .ammenu-items-list .ammenu-label {
  max-width: 100px;
}

.ammenu-submenu-block.-left > .ammenu-items-list + .ammenu-submenu-sidebar {
  position: relative;
  padding: 0 0 0 25px;
}

.ammenu-submenu-block.-left > .ammenu-items-list + .ammenu-submenu-sidebar > .ammenu-submenu-block:not(.-empty):before {
  position: absolute;
  display: inline-block;
  content: "";
  -webkit-filter: contrast(0.3);
  filter: contrast(0.3);
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  border-left: 1px solid #e9ecf5;
}

.-ie .ammenu-submenu-block .ammenu-items-list > .ammenu-item {
  min-height: 1em;
}

@keyframes slide-right {
  0% {
    transform: translateX(-500%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-left {
  0% {
    transform: translateX(500%);
  }
  100% {
    transform: translateX(0);
  }
}
.ammenu-nav-sections.-mobile.-drill {
  transition: 0.1s all ease-in;
}

.ammenu-nav-sections.-mobile.-drill .ammenu-items.-drill .ammenu-toggle {
  transform: rotate(90deg);
}

.ammenu-nav-sections.-mobile.-drill .ammenu-button.-go-main {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  width: 100%;
  border: none;
  border-radius: 0;
  background: #1787e0;
  box-shadow: none;
  color: black;
  text-align: left;
  font-weight: 400;
}

.ammenu-nav-sections.-mobile.-drill .ammenu-button.-go-main:before {
  margin: 0 15px 0 5px;
  width: 12px;
  content: "<<";
  font-size: 1rem;
  line-height: 1px;
  transform: scaleY(2);
}

.ammenu-nav-sections.-mobile.-drill .-slide-left {
  animation: slide-left 0.1s forwards;
}

.ammenu-nav-sections.-mobile.-drill .-slide-right {
  animation: slide-right 0.1s forwards;
}

.ammenu-nav-sections.-mobile.-drill .ammenu-active-level {
  display: flex;
  flex-wrap: wrap;
}

.ammenu-nav-sections.-mobile.-drill .ammenu-active-level .ammenu-button.-prev {
  display: flex;
  align-items: center;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  width: 32px;
}

.ammenu-nav-sections.-mobile.-drill .ammenu-active-level .ammenu-button.-prev .reset-button {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-nav-sections.-mobile.-drill .ammenu-active-level .ammenu-button.-prev:focus {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-nav-sections.-mobile.-drill .ammenu-active-level .ammenu-button.-prev:hover {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-nav-sections.-mobile.-drill .ammenu-active-level .ammenu-button.-prev .ammenu-icon {
  width: 20px;
  height: 20px;
  transform: rotate(180deg);
}

.ammenu-nav-sections.-mobile.-drill .ammenu-active-level .ammenu-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
}

.ammenu-nav-sections.-mobile.-drill .ammenu-active-level .ammenu-head {
  display: flex;
  align-items: center;
  flex-basis: 100%;
  margin: 0;
  padding: 0 20px;
  border-bottom: 1px solid #9c9c9c;
  font-size: 1.6rem;
  cursor: pointer;
  flex-grow: 1;
}

.ammenu-nav-sections.-mobile.-drill .ammenu-active-level .ammenu-head .ammenu-link {
  padding: 0;
  text-transform: uppercase;
  font-weight: 600;
}

.ammenu-nav-sections.-mobile.-drill .ammenu-active-level .ammenu-link {
  text-transform: uppercase;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .ammenu-header-container .block-search .minisearch .control {
    position: absolute;
    top: 120%;
    right: 0;
    left: 0;
    z-index: 9;
    box-sizing: border-box;
    margin: 0;
    border: none;
    background: #fff;
  }
}
.ammenu-sticky, .ammenu-header-container.-sticky .header.content, .ammenu-nav-sections.-topmenu.-sticky .ammenu-main-container {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  max-width: 100%;
}

.ammmenu-word-break {
  word-wrap: break-word;
  word-break: break-word;
}

.ie11 .ammmenu-word-break {
  word-break: break-all;
}

@-webkit-keyframes ammenu-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes ammenu-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes ammenu-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes ammenu-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes ammenu-animation__fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes ammenu-animation__fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@-moz-keyframes ammenu-animation__fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@-ms-keyframes ammenu-animation__fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@-o-keyframes ammenu-animation__fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes ammenu-animation__fadeInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translateZ(0);
    opacity: 1;
    transform: translateZ(0);
  }
}
.ammenu-header-container {
  position: relative;
  min-height: 64px;
}

.ammenu-header-container.page-header {
  margin-bottom: 0;
}

.ammenu-header-container.-sticky .header.content {
  background: #fff;
}

.ammenu-header-container.-sticky .ammenu-button.-hamburger {
  margin-left: 20px;
}

.ammenu-menu-wrapper {
  margin-bottom: 0;
}

.ammenu-menu-wrapper .ammenu-item {
  margin: 0;
}

.ammenu-menu-wrapper .ammenu-arrow {
  position: absolute;
  right: 10px;
  z-index: 2;
  margin: 0;
  width: 20px;
  height: 20px;
  opacity: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  offset-path: none;
}

.ammenu-menu-wrapper .ammenu-arrow:before, .ammenu-menu-wrapper .ammenu-arrow:after {
  position: absolute;
  display: block;
  width: 12px;
  height: 2px;
  background: #000;
  content: "";
  transition: none;
  transform-origin: 100% 50%;
}

.ammenu-menu-wrapper .ammenu-main-container {
  box-sizing: border-box;
  width: 100%;
}

.ammenu-menu-wrapper .ammenu-link {
  -webkit-animation: ammenu-animation__fadeIn 0.1s forwards;
  animation: ammenu-animation__fadeIn 0.1s forwards;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 0;
  background: none;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  width: 100%;
  outline: none;
  box-shadow: none;
  color: inherit;
}

.ammenu-menu-wrapper .ammenu-link .reset-button {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-menu-wrapper .ammenu-link:focus {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-menu-wrapper .ammenu-link:hover {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-menu-wrapper .ammenu-link:hover {
  text-decoration: none;
}

.ammenu-menu-wrapper .ammenu-text-block {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin: 0;
  line-height: 20px;
}

.ammenu-menu-wrapper .ammenu-text-block .ammenu-text {
  align-self: center;
}

.ammenu-menu-wrapper .ammenu-label {
  display: inline-block;
  box-sizing: border-box;
  padding: 5px;
  min-width: 50px;
  border-radius: 2px;
  background: #fff;
  color: #000;
  vertical-align: middle;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}

.ammenu-menu-wrapper .ammenu-icon-block {
  position: relative;
  display: inline-block;
  margin: 0 8px 0 0;
  min-width: 18px;
  width: 18px;
  height: 18px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.ammenu-menu-wrapper .ammenu-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.ammenu-menu-wrapper table img {
  max-width: inherit;
}

.ammenu-menu-wrapper [data-appearance=carousel] {
  min-width: 200px;
  max-width: 100%;
  width: 100%;
}

.ammenu-nav-sections {
  z-index: 9;
  background: #fff;
}

.ammenu-nav-sections:not(.-topmenu) {
  -webkit-animation-name: "ammenu-animation__fadeInLeft";
  animation-name: "ammenu-animation__fadeInLeft";
  animation-duration: 0.3s;
}

.ammenu-header-container .header.content {
  display: flex;
  align-items: center;
  transition: 0.1s all ease-in;
  position: relative;
  margin-bottom: 10px;
}

.ammenu-header-container .header.content .ammenu-logo {
  display: inline-flex;
  margin: 0 auto 0 0;
  min-width: 110px;
}

.ammenu-header-container .header.content .compare {
  order: 1;
}

.ammenu-header-container .header.content .compare .item {
  margin: 0;
}

.ammenu-header-container .header.content .minicart-wrapper {
  order: 3;
  margin: 0 10px;
}

.ammenu-header-container .header.content .block-search {
  order: 2;
  margin-top: 0;
}

@media (max-width: 1025px) {
  .ammenu-header-container.-sticky .header.content {
    padding: 10px;
  }
}
.ammenu-tabs-list {
  display: flex;
  margin: 0;
  padding: 0;
}

.ammenu-tabs-list .ammenu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  cursor: pointer;
}

.ammenu-tabs-list .ammenu-button {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  transition: 0.1s all ease-in;
  width: 100%;
  min-height: 50px;
  text-transform: uppercase;
}

.ammenu-tabs-list .ammenu-button .reset-button {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-tabs-list .ammenu-button:focus {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-tabs-list .ammenu-button:hover {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-tabs-list .ammenu-button.-active {
  font-weight: 600;
}

.ammenu-tabs-list .ammenu-button:hover {
  color: #1787e0;
}

.ammenu-button {
  outline: none;
}

.ammenu-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  z-index: 1;
  align-self: stretch;
  width: 25px;
  min-width: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.1s;
}

.ammenu-toggle .reset-button {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-toggle:focus {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-toggle:hover {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-toggle .ammenu-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  margin: 0 0 -5px;
  width: 14px;
  height: 14px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-radius: 2px;
  cursor: pointer;
  transform: rotate(315deg);
}

.ammenu-button.-hamburger {
  display: flex;
  align-items: center;
  position: relative;
  display: inline-flex;
  margin: 20px 20px 20px 0;
  padding: 0;
  width: 25px;
  height: 17px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: none;
}

.ammenu-button.-hamburger:hover, .ammenu-button.-hamburger:focus {
  border: none;
  background: transparent;
}

.ammenu-button.-hamburger:not(.-hamburger) {
  display: none;
}

.ammenu-button.-hamburger:before, .ammenu-button.-hamburger:after, .ammenu-button.-hamburger .ammenu-line {
  position: absolute;
  display: block;
  margin: 0;
  width: 100%;
  border-color: inherit;
  border-bottom: 1px solid;
  border-radius: 1px;
  content: "";
}

.ammenu-button.-hamburger:before {
  top: 0;
}

.ammenu-button.-hamburger:after {
  bottom: 0;
}

.ammenu-button.-close {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  color: #6d6d6d;
  cursor: pointer;
}

.ammenu-button.-close .reset-button {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-button.-close:focus {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-button.-close:hover {
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: inherit;
  font-weight: inherit;
}

.ammenu-button.-close:before {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAxNSAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTE1IDEuMTYzMTRMMTMuODM2NCAwTDcuNSA2LjMzNzI5TDEuMTYzNTcgMEwwIDEuMTYyNzFMNi4zMzcyOSA3LjVMMC4wMDA4NTcxNDMgMTMuODM3M0wxLjE2MzU3IDE1TDcuNSA4LjY2MzE0TDEzLjgzNjQgMTQuOTk5NkwxNC45OTgzIDEzLjgzNjlMOC42NjI3MSA3LjVMMTUgMS4xNjMxNFoiIGZpbGw9IiMzNDM0MzQiLz48L3N2Zz4=);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  width: 15px;
  height: 15px;
}

.ammenu-button.-close:hover {
  color: #000;
}

.ammenu-nav-sections.-mobile .ammenu-settings-list {
  padding: 20px 0;
}

.ammenu-nav-sections.-mobile .ammenu-items.-account-links {
  margin: 15px 0;
}

.ammenu-nav-sections.-mobile .ammenu-items.-account-links .ammenu-counter {
  padding: 0 0 0 5px;
  text-transform: capitalize;
  font-size: 0.8em;
  opacity: 0.5;
}

.ammenu-nav-sections.-mobile .ammenu-items.-account-links .ammenu-counter:before {
  content: "(";
}

.ammenu-nav-sections.-mobile .ammenu-items.-account-links .ammenu-counter:after {
  content: ")";
}

.ammenu-nav-sections.-mobile .ammenu-settings-block {
  padding: 15px 0;
  border-bottom: 1px solid #c4c4c4;
}

.ammenu-nav-sections.-mobile .ammenu-settings-block .ammenu-toggle {
  transform: rotate(180deg);
}

.ammenu-nav-sections.-mobile .ammenu-settings-block .ammenu-toggle.-active {
  transform: rotate(0);
}

.ammenu-nav-sections.-mobile .ammenu-settings-block .ammenu-text {
  padding: 5px 0;
  max-width: 70%;
  font-size: 1.25rem;
  color: black;
}

.ammenu-nav-sections.-mobile span.ammenu-text {
  color: black !important;
  font-size: 1.25rem !important;
  line-height: 150% !important;
}

.ammenu-nav-sections.-mobile .ammenu-settings-block .ammenu-title {
  margin: 0;
  padding: 0 20px 0;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.8rem;
}

.ammenu-nav-sections.-mobile .ammenu-settings-block .ammenu-items.-dropdown {
  padding: 10px 0 0 10px;
}

.ammenu-nav-sections.-mobile .ammenu-settings-block .ammenu-items.-dropdown .ammenu-link {
  justify-content: space-between;
  height: 30px;
}

.ammenu-nav-sections.-mobile .ammenu-settings-block .ammenu-code {
  margin: 0 0 0 10px;
  text-transform: uppercase;
}

.ammenu-menu-header {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
  font-weight: 700;
  font-size: 1.6rem;
}

.ammenu-menu-header .ammenu-message.-welcome {
  margin: 0 5px 0 0;
}

.ammenu-menu-header .ammenu-message.-welcome:after {
  content: ",";
}

.ammenu-menu-header .ammenu-name {
  border-bottom: 1px dashed;
}

.ammenu-menu-header .ammenu-name:after {
  content: "!";
}

.ammenu-categories-container {
  display: flex;
  flex-wrap: wrap;
}

.ammenu-categories-container .ammenu-column.-col-10 {
  flex-basis: 10%;
}

.ammenu-categories-container .ammenu-column.-col-9 {
  flex-basis: 11.1111111111%;
}

.ammenu-categories-container .ammenu-column.-col-8 {
  flex-basis: 12.5%;
}

.ammenu-categories-container .ammenu-column.-col-7 {
  flex-basis: 14.2857142857%;
}

.ammenu-categories-container .ammenu-column.-col-6 {
  flex-basis: 16.6666666667%;
}

.ammenu-categories-container .ammenu-column.-col-5 {
  flex-basis: 20%;
}

.ammenu-categories-container .ammenu-column.-col-4 {
  flex-basis: 25%;
}

.ammenu-categories-container .ammenu-column.-col-3 {
  flex-basis: 33.3333333333%;
}

.ammenu-categories-container .ammenu-column.-col-2 {
  flex-basis: 50%;
}

.ammenu-categories-container .ammenu-column.-col-1 {
  flex-basis: 100%;
}

.ammenu-categories-container .ammenu-list {
  display: inline-flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 0;
}

.ammenu-categories-container .ammenu-list .ammenu-list {
  padding: 0 0 0 15px;
}

.ammenu-categories-container .ammenu-link {
  white-space: nowrap;
  font-size: 1.6rem;
}

.ammenu-categories-container .ammenu-column {
  flex-basis: 100%;
  box-sizing: border-box;
  padding: 0;
}

.ammenu-categories-container .ammenu-column:not(:last-child) {
  padding-right: 15px;
}

.ammenu-categories-container .ammenu-column > .ammenu-list {
  padding-bottom: 20px;
}

.ammenu-categories-container .ammenu-text-block .ammenu-label {
  margin: 0 0 0 10px;
}

.ammenu-nav-sections.-topmenu.-hamburger {
  padding: 0 20px;
}

.ammenu-nav-sections.-topmenu.-hamburger:not(.-sticky) .ammenu-main-container {
  max-width: 1415px;
}

.ammenu-nav-sections.-topmenu.-hamburger .ammenu-main-container {
  padding: 0;
}

.ammenu-nav-sections.-left-menu {
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
}

.ammenu-nav-sections.-left-menu .ammenu-button.-close {
  position: absolute;
  top: 25px;
  right: -30px;
  pointer-events: none;
}

.ammenu-nav-sections.-left-menu .ammenu-menu-title {
  display: block;
  font-weight: 600;
}

.ammenu-nav-sections.-left-menu .ammenu-menu-header {
  margin: 0 0 20px;
  color: #fff;
  font-size: 1.4rem;
}

.ammenu-nav-sections.-left-menu .switcher {
  box-sizing: border-box;
  padding: 30px 0 0;
}

.ammenu-nav-sections.-left-menu .switcher .switcher-options {
  padding: 0 25px;
}

.ammenu-nav-sections.-left-menu .switcher .switcher-label {
  padding: 0 25px 10px;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 25px;
}

.ammenu-nav-sections.-left-menu .switcher .switcher-trigger {
  padding: 0;
  font-size: 1.6rem;
}

.ammenu-nav-sections.-left-menu .switcher .switcher-trigger.active strong:after {
  top: 8px;
  transform: rotate(225deg);
}

.ammenu-nav-sections.-left-menu .switcher .switcher-trigger strong {
  position: relative;
  display: block;
  width: 100%;
}

.ammenu-nav-sections.-left-menu .switcher .switcher-trigger strong:after {
  position: absolute;
  top: 2px;
  right: 0;
  display: block;
  width: 10px;
  height: 10px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  content: "";
  transform: rotate(45deg);
}

.ammenu-nav-sections.-left-menu .ammenu-categories-container .ammenu-column > .ammenu-link {
  text-transform: uppercase;
}

.ammenu-nav-sections.-left-menu .ammenu-categories-container .ammenu-label {
  margin-top: 5px;
}

.ammenu-nav-sections.-left-menu .ammenu-categories-container .ammenu-text {
  transition: 0.1s all ease-in;
  padding: 5px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 600;
  font-size: 1.6rem;
}

.ammenu-nav-sections.-left-menu .ammenu-categories-container .ammenu-text:hover {
  border-color: inherit;
}

.ammenu-nav-sections.-left-menu .ammenu-items.-root > .ammenu-item > .ammenu-link {
  flex-basis: 100%;
  text-transform: uppercase;
  font-weight: 600;
}

.ammenu-nav-sections.-left-menu .pagebuilder-column {
  min-width: min-content;
  min-width: 120px;
}

.ammenu-nav-sections.-left-menu [data-content-type=html], .ammenu-nav-sections.-left-menu [data-content-type=video] {
  min-width: 120px;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 99999;
  overflow: visible;
  margin-bottom: 25px;
  max-width: 360px;
  width: 90%;
  height: 100vh;
  transition: left 0.3s ease;
}

.ammenu-nav-sections.-left-menu:not(.-mobile).-opened {
  left: 0;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-menu-header {
  padding: 22px 30px;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-menu-title {
  padding: 0 30px;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-label {
  margin-left: 10px;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-items {
  margin: 0;
  padding: 0 30px;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-items.-root > .ammenu-item {
  position: relative;
  padding: 10px 25px 10px 0;
  text-transform: capitalize;
  font-size: 1.6rem;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-items.-root > .ammenu-item .ammenu-link .ammenu-toggle {
  position: absolute;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-item > .ammenu-text {
  padding: 0 10px 0 0;
  text-align: left;
  white-space: nowrap;
  font-size: 1.6rem;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-item.-active > .ammenu-text {
  border-color: inherit;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-items-list > .ammenu-item .ammenu-link .ammenu-text, .ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-text > .ammenu-link .ammenu-text {
  padding: 5px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.6rem;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-submenu-block.-root {
  overflow-y: auto;
  scrollbar-color: #adadad rgba(173, 173, 173, 0.2);
  scrollbar-width: thin;
  position: absolute;
  top: 0;
  left: calc(100% + 30px);
  margin: 0;
  padding: 15px;
  max-width: 64vw;
  max-height: 70vh;
  box-shadow: 3px 2px 8px rgba(0, 0, 0, 0.15);
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-submenu-block.-root::-webkit-scrollbar {
  background: #f0f0f0;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-submenu-block.-root::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: #adadad;
  cursor: pointer;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-submenu-block.-root::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #fff;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-submenu-block.-root::-webkit-scrollbar {
  width: 6px;
  height: 12px;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-submenu-block.-root::-webkit-scrollbar-thumb {
  width: 6px;
  height: 6px;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-submenu-block.-root ::-webkit-scrollbar-track {
  width: 6px;
  height: 6px;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-submenu-block.-root.-auto {
  min-width: fit-content;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-submenu-block.-root.-full {
  min-width: 65vw;
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-toggle {
  top: 0;
  right: 0;
  bottom: 0;
  box-shadow: none;
  transform: rotate(90deg);
}

.ammenu-nav-sections.-left-menu:not(.-mobile) .ammenu-toggle.-active {
  transform: rotate(-90deg);
}

.ammenu-nav-sections.-left-menu.-mobile {
  overflow-x: hidden;
}

.ammenu-nav-sections.-left-menu.-mobile .ammenu-menu-title {
  margin: 20px 0;
  padding: 0 20px;
  font-size: 1.4rem;
}

.ammenu-nav-sections.-left-menu.-mobile .ammenu-menu-header {
  padding: 22px 20px;
}

.ammenu-nav-sections.-left-menu.-mobile .ammenu-item {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
}

.ammenu-nav-sections.-mobile {
  transition: 0.3s all ease-in;
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 99999;
  overflow: auto;
  margin-bottom: 25px;
  padding: 0 0 40px;
  max-width: 300px;
  width: 100%;
  height: 100vh;
}

.ammenu-nav-sections.-mobile.-opened {
  left: 0;
}

.ammenu-nav-sections.-mobile:not(.-has-icons) .ammenu-items.-root > .ammenu-item > .ammenu-link:before {
  box-sizing: border-box;
  margin: 0 10px 0 0;
  min-width: 10px;
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-radius: 12px;
  content: "";
}

.ammenu-nav-sections.-mobile .ammenu-items {
  flex-basis: 100%;
  margin: 0;
  padding: 0;
}

.ammenu-nav-sections.-mobile .ammenu-items.-root > .ammenu-item {
  margin: 0;
  border-bottom: 1px solid #c4c4c4;
}

.ammenu-nav-sections.-mobile .ammenu-items.-root > .ammenu-item > .ammenu-link {
  display: flex;
  align-items: center;
  flex-basis: 100%;
  box-sizing: border-box;
  min-height: 54px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.6rem;
}

.ammenu-nav-sections.-mobile .ammenu-items.-root > .ammenu-item .ammenu-item {
  margin: 0;
  padding: 0 0 0 25px;
}

.ammenu-nav-sections.-mobile .ammenu-items.-root > .ammenu-item .ammenu-item .ammenu-toggle .ammenu-icon {
  width: 11px;
  height: 11px;
}

.ammenu-nav-sections.-mobile .ammenu-label {
  margin: 0 5px 0 10px;
}

.ammenu-nav-sections.-mobile .ammenu-toggle {
  margin: 0 0 0 auto;
  box-shadow: none;
}

.ammenu-nav-sections.-mobile .ammenu-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.ammenu-nav-sections.-mobile .ammenu-link {
  flex-basis: 100%;
  flex-grow: 1;
  box-sizing: border-box;
  padding: 0 20px;
  text-align: left;
}

.ammenu-nav-sections.-mobile .ammenu-text-block {
  padding: 10px 0;
}

.ammenu-nav-sections.-mobile .ammenu-text {
  word-wrap: break-word;
  word-break: break-word;
  overflow: hidden;
  box-sizing: border-box;
  max-height: 100%;
  vertical-align: middle;
  text-align: left;
  text-overflow: ellipsis;
}

.ie11 .ammenu-nav-sections.-mobile .ammenu-text {
  word-break: break-all;
}

.ammenu-nav-sections.-mobile:not(.-left-menu) .ammenu-menu-header {
  padding: 16px 20px;
  border-bottom: 1px solid #c4c4c4;
}

.ammenu-nav-sections.-mobile:not(.-left-menu) .ammenu-items.-root {
  padding: 0 0 20px;
}

.ammenu-nav-sections.-topmenu {
  transition: 0.1s all ease-in;
}

.ammenu-nav-sections.-topmenu.-sticky {
  min-height: 58px;
}

.ammenu-nav-sections.-topmenu.-sticky .ammenu-items.-root {
  margin: 0 auto;
  max-width: 1415px;
}

.ammenu-nav-sections.-topmenu.-sticky .ammenu-label {
  white-space: nowrap;
}

.ammenu-nav-sections.-topmenu .ammenu-main-container {
  transition: 0.1s all ease-in;
  box-sizing: border-box;
  margin: auto;
  padding: 0 20px;
}

.ammenu-nav-sections.-topmenu .ammenu-items {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item {
  display: inline-block;
  box-sizing: border-box;
  margin: 0;
  font-weight: 600;
  font-size: 1.6rem;
  cursor: pointer;
  transition: 0.5s;
}

.ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item:hover {
  background: #fff;
}

.ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item:hover + .ammenu-submenu-block {
  display: flex;
}

.ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item:hover > .ammenu-link {
  text-decoration: none;
}

.ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item > .ammenu-link {
  position: relative;
  padding: 16.5px 15px;
}

.ammenu-nav-sections.-topmenu .ammenu-items.-root > .ammenu-item > .ammenu-link .ammenu-label {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin: 0 0 1px;
}

.ammenu-nav-sections.-topmenu .ammenu-categories-container .ammenu-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.ammenu-nav-sections.-topmenu .ammenu-categories-container .ammenu-item.-parent:after {
  transition: 0.1s all ease-in;
  margin: 0 0 0 10px;
  width: 30px;
  height: 10px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxNyAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTYuNDQxOSA1LjQ0MTk0QzE2LjY4NiA1LjE5Nzg2IDE2LjY4NiA0LjgwMjE0IDE2LjQ0MTkgNC41NTgwNkwxMi40NjQ1IDAuNTgwNTgzQzEyLjIyMDQgMC4zMzY1MDUgMTEuODI0NyAwLjMzNjUwNSAxMS41ODA2IDAuNTgwNTgzQzExLjMzNjUgMC44MjQ2NiAxMS4zMzY1IDEuMjIwMzkgMTEuNTgwNiAxLjQ2NDQ3TDE1LjExNjEgNUwxMS41ODA2IDguNTM1NTNDMTEuMzM2NSA4Ljc3OTYxIDExLjMzNjUgOS4xNzUzNCAxMS41ODA2IDkuNDE5NDJDMTEuODI0NyA5LjY2MzUgMTIuMjIwNCA5LjY2MzUgMTIuNDY0NSA5LjQxOTQyTDE2LjQ0MTkgNS40NDE5NFpNMCA1LjYyNUgxNlY0LjM3NUgwVjUuNjI1WiIgZmlsbD0iIzE3ODdFMCIvPjwvc3ZnPg==);
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  opacity: 0;
}

.ammenu-nav-sections.-topmenu .ammenu-categories-container .ammenu-item.-active.-parent:after {
  transition: 0.1s all ease-in;
  opacity: 1;
  transform: translateX(5px);
}

.ammenu-nav-sections.-topmenu .ammenu-categories-container .ammenu-item:not(:last-child) {
  padding: 0 0 10px;
}

.ammenu-nav-sections.-topmenu .ammenu-categories-container .ammenu-column > .ammenu-link {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-weight: 700;
}

.ammenu-nav-sections.-topmenu .ammenu-categories-container .ammenu-list .ammenu-list {
  transition: 0.1s all ease-in;
  position: absolute;
  left: calc(100% + 20px);
  z-index: 9;
  margin: 0;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 2px 4px #575757;
}

.ammenu-nav-sections.-topmenu:not(.-hamburger) .ammenu-main-container .ammenu-items.-root {
  margin: 0 auto;
  max-width: 1400px;
}

.ammenu-submenu-block {
  box-sizing: border-box;
  background-position: center center;
  background-size: inherit;
  background-repeat: no-repeat;
  transition: 0.3s;
}

.ammenu-submenu-block .ambrands-link {
  display: none;
}

.ammenu-submenu-block .ambrands-list-popup {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.ammenu-submenu-block.-root {
  position: absolute;
  z-index: 999;
  overflow-y: auto;
  max-width: 100%;
  max-height: 70vh;
  box-shadow: 0 4px 5px rgba(35, 74, 87, 0.1);
  font-weight: 400;
  cursor: auto;
}

.ammenu-submenu-block.-root.-full {
  left: 0;
}

.ammenu-submenu-block.-simple {
  box-sizing: border-box;
  padding: 25px;
  background-position: center center;
  background-size: inherit;
  background-repeat: no-repeat;
}

.ammenu-submenu-block.-simple .ambrands-link {
  display: none;
}

.ammenu-submenu-block.-simple .ambrands-list-popup {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.ammenu-nav-sections.-mobile.-accordion .ammenu-toggle {
  transform: rotate(180deg);
}

.ammenu-nav-sections.-mobile.-accordion .ammenu-toggle.-active {
  transform: rotate(0);
}

.ammenu-nav-sections.-mobile.-accordion .ammenu-items.-root > .ammenu-item > .ammenu-items > .ammenu-item > .ammenu-link {
  text-transform: uppercase;
  font-weight: 600;
}

.pagebuilder-content-type-wrapper .ammenu-item {
  list-style: none;
}

.ammenu-label-group.admin__control-grouped {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ammenu-label-group.admin__control-grouped > .admin__field {
  display: flex;
  align-items: center;
  flex-grow: 1;
  margin-top: 0;
}

.ammenu-label-group.admin__control-grouped .colorpicker-input {
  width: calc(100% - 37px) !important;
}

.ammenu-items-tree {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  font-size: 2rem;
}

.ammenu-items-tree .ammenu-item {
  flex-basis: 200px;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 35px 30px;
  border: 1px dashed #ccc;
  border-radius: 4px;
  background: #fff;
  white-space: nowrap;
  cursor: pointer;
}

.ammenu-items-tree .ammenu-item:hover {
  border-color: #a0a0a0;
  box-shadow: 0 2px 4px rgba(32, 77, 112, 0.16);
}

.ammenu-items-tree .ammenu-item:not(:last-child) {
  margin-right: 20px;
}

ul.ammenu-items.-root > li {
  background: #F2C99B;
}

.gutter-10.row {
  margin-left: -10px;
  margin-right: -10px;
}
.gutter-10.row .col-12, .gutter-10.row .col-6, .gutter-10.row .col-sm-3 {
  padding-left: 5px;
  padding-right: 5px;
}

.container-fluid .container {
  padding: 0;
}

@media (min-width: 992px) {
  .owl-nav .owl-items-count {
    font-family: "Roboto Condensed", sans-serif;
    line-height: 1;
    padding-top: 9px;
    margin: 0 6px;
    font-size: 1rem;
    color: #ECAD66;
    font-weight: 700;
  }
}

.highlights-carousel .owl-item {
  padding-right: 15px;
}

.owl-carousel {
  touch-action: manipulation;
}

footer .foresee-quadrant img {
  max-width: 60px;
}
@media (min-width: 992px) {
  footer .content > .bg-primary-light:first-child {
    padding-top: 2rem;
  }
}
footer .badges {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  footer .badges {
    padding: 11px 0 0 90px;
  }
}
@media (max-width: 1199.98px) {
  footer .badges img {
    width: 42px;
    height: auto;
  }
}
@media (min-width: 992px) {
  footer .badges img {
    height: 4rem;
  }
}
footer h3 {
  color: var(--footer-heading-color);
  font-size: 1.25rem;
  letter-spacing: 0.04rem;
  line-height: 1;
  margin-bottom: 1.875rem;
}
@media (max-width: 1199.98px) {
  footer h3 {
    margin-bottom: 0;
    padding: 0.5rem 0;
  }
}
@media (max-width: 1199.98px) {
  footer .col-md-3 {
    width: 100%;
  }
}
@media (min-width: 992px) {
  footer .col-md-3 {
    border-right: 1px solid var(--footer-border-color);
    padding-left: 30px;
  }
  footer .col-md-3:first-child {
    padding: 0;
  }
  footer .col-md-3:last-child {
    border: none;
  }
}
@media (max-width: 1199.98px) {
  footer .col-md-3 > .nav-item, footer .col-md-3 > .nav-item:last-child {
    border-top: 1px solid rgb(250.5261627907, 245.8000694203, 240.4738372093);
  }
}
footer .col-md-3 .nav-item {
  width: 100%;
}
@media (max-width: 1199.98px) {
  footer .col-md-3 .nav-item > img {
    padding: 0.5rem 0;
    height: auto;
  }
}
footer .col-md-3 .nav-item .nav-link {
  color: var(--footer-link-color);
  font-size: 0.9375rem;
  letter-spacing: 0.02rem;
}
@media (min-width: 992px) {
  footer .col-md-3 .nav-item .nav-link {
    padding-left: 0;
    line-height: 1;
    padding-top: 0;
    padding-bottom: 13px;
    font-size: 0.9375rem;
  }
}
@media (max-width: 1199.98px) {
  footer .col-md-3 .nav-item .nav-link {
    font-size: 1.25rem;
  }
}
footer .col-md-3 .nav-item .nav-link:hover {
  color: var(--footer-link-color-hover);
}
footer [data-toggle=collapse] {
  position: relative;
}
footer [data-toggle=collapse]:after {
  position: absolute;
  right: 0;
  font-weight: bold;
  font-family: fontello;
  content: "";
}
footer [data-toggle=collapse][aria-expanded=false]:after {
  content: "\e819";
}
footer [data-toggle=collapse][aria-expanded=true]:after {
  content: "\e81b";
}
footer .social-nav a.nav-link {
  font-size: 1.5rem;
  height: 2.5rem !important;
  width: 2.5rem !important;
  display: inline-block;
  padding: 0;
  border-radius: 100%;
  background: white;
  color: rgb(238.8168604651, 185.1569767442, 124.6831395349);
}
footer .social-nav a.nav-link i {
  line-height: 2.5rem;
  margin-left: 0.2rem;
}
footer .social-nav a.nav-link i.icon-facebook-1 {
  vertical-align: -0.75rem;
  margin-left: -0.25rem;
  font-size: 2rem;
  line-height: 1.5rem;
}
footer .social-nav a.nav-link i.icon-pinterest {
  vertical-align: -0.85rem;
  font-size: 2rem;
  margin-left: -0.2rem !important;
}

.form.subscribe .form-control {
  border-bottom-left-radius: 1rem;
  border-top-left-radius: 1rem;
}
.form.subscribe .input-group-append .btn, .form.subscribe .input-group-append .checkout-index-index .action.edit-address-link, .checkout-index-index .form.subscribe .input-group-append .action.edit-address-link, .form.subscribe .input-group-append button {
  border-bottom-right-radius: 1rem;
  border-top-right-radius: 1rem;
}

.fotorama-stretch, .fotorama-focus-overlay:after, .fotorama__stage__shaft, .fotorama__stage__frame, .fotorama__html, .fotorama__video iframe {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.fotorama-grab-cursor, .fotorama__wrap .fotorama__grab {
  cursor: move;
  cursor: grab;
}

.fotorama-grabbing-cursor, .fotorama__grabbing * {
  cursor: move;
  cursor: grabbing;
}

.fotorama-gpu, .fotorama--fullscreen, .fotorama__caption {
  transform: translateZ(0);
}

.fotorama__wrap--css3 .fotorama__spinner, .fotorama__wrap--css3 .fotorama__stage, .fotorama__wrap--css3 .fotorama__nav, .fotorama__wrap--css3 .fotorama__stage__frame, .fotorama__wrap--css3 .fotorama__html {
  transform: translateZ(0);
}

.fotorama__stage:before, .fotorama__nav:before, .fotorama__stage:after, .fotorama__nav:after, .fotorama--fullscreen .fotorama__stage__frame .fotorama__img--full {
  transform: translateZ(0);
}

.fotorama-focus, .fotorama__nav__frame, .fotorama__fullscreen-icon:focus, .fotorama__zoom-out:focus, .fotorama__zoom-in:focus {
  outline: 0;
}

.fotorama-focus-overlay:after {
  background-color: #006bb4;
  border-radius: inherit;
  content: "";
}

.fotorama-transform-disabled {
  transform: none !important;
}

.fotorama__wrap--video .fotorama__stage__shaft, .fotorama__wrap--video .fotorama__stage {
  transform: none !important;
}
.fotorama__wrap--video .fotorama__stage__frame--video {
  transform: none !important;
}
.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__img, .fotorama__wrap--video .fotorama__stage__frame--video .fotorama__html {
  transform: none !important;
}

.fotorama-transition-for-slide {
  transition-duration: 0ms;
  transition-property: transform, width;
  transition-timing-function: cubic-bezier(0.1, 0, 0.25, 1);
}

.fotorama__wrap--css3 .fotorama__stage__shaft, .fotorama__wrap--css3 .fotorama__nav__shaft, .fotorama__wrap--css3 .fotorama__thumb-border {
  transition-duration: 0ms;
  transition-property: transform, width;
  transition-timing-function: cubic-bezier(0.1, 0, 0.25, 1);
}

.fotorama-no-select, .fotorama__wrap, .fotorama__no-select, .fotorama__arr, .fotorama__fullscreen-icon, .fotorama__video-close {
  user-select: none;
}

.fotorama-select, .fotorama__select {
  user-select: text;
}

.fotorama-empty-bg {
  background: url(data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=);
}

.fotorama-auto-margin, .fotorama__nav, .fotorama__nav__frame {
  margin: auto;
  padding: 0;
}

.fotorama-inline-block, .fotorama__nav__shaft, .fotorama__nav__frame, .fotorama__caption__wrap {
  display: inline-block;
  vertical-align: middle;
}

.fotorama-content-box, .fotorama__nav__frame {
  box-sizing: content-box;
}

.fotorama-border-box, .fotorama__thumb-border, .fotorama__caption__wrap, .fotorama__arr {
  box-sizing: border-box;
}

.fotorama-hidden, .fotorama--hidden, .fotorama__load {
  left: -99999px;
  position: absolute;
  top: -99999px;
  z-index: -1000;
}

.fotorama-visible {
  left: auto;
  opacity: 1;
  position: relative;
  top: auto;
  z-index: auto;
}

.fotorama-no-tap, .fotorama__stage__shaft, .fotorama__stage__frame, .fotorama__nav, .fotorama__nav__shaft, .fotorama__nav__frame, .fotorama__arr, .fotorama__fullscreen-icon, .fotorama__video-close {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.transitionDuration {
  transition-duration: 333ms;
}

.transitionDurationZero {
  transition-duration: 0ms;
}

@media print {
  .fotorama-print-background, .fotorama-sprite, .fotorama__thumb-border {
    background: none !important;
  }
  .fotorama__fullscreen .fotorama__zoom-out, .fotorama__fullscreen .fotorama__zoom-in {
    background: none !important;
  }
  .fotorama__arr .fotorama__arr__arr, .fotorama__fullscreen-icon, .fotorama__video-play, .fotorama__thumb--icon, .fotorama__video-close {
    background: none !important;
  }
}
.fotorama__fullscreen-icon:focus, .fotorama__zoom-out:focus, .fotorama__zoom-in:focus, .fotorama__arr:focus, .fotorama__stage__shaft:focus, .fotorama__nav__frame--thumb:focus .fotorama__thumb, .fotorama__nav__frame--dot:focus .fotorama__dot {
  box-shadow: none;
}

.fotorama__fullscreen-icon:focus:after, .fotorama__zoom-out:focus:after, .fotorama__zoom-in:focus:after, .fotorama__arr:focus:after, .fotorama__stage__shaft:focus:after, .fotorama__nav__frame--thumb:focus .fotorama__thumb:after, .fotorama__nav__frame--dot:focus .fotorama__dot:after {
  border-radius: inherit;
  bottom: 3px;
  box-shadow: 0 0 3px 1px #68a8e0;
  content: "";
  left: 3px;
  position: absolute;
  right: 3px;
  top: 3px;
  z-index: 1000;
}

.fotorama__nav__frame--thumb:focus .fotorama__thumb:after, .fotorama__nav__frame--dot:focus .fotorama__thumb:after, .fotorama__nav__frame--thumb:focus .fotorama__dot:after, .fotorama__nav__frame--dot:focus .fotorama__dot:after {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}

.fotorama__nav__frame--thumb:focus .fotorama__thumb.fotorama_vertical_ratio:after, .fotorama__nav__frame--dot:focus .fotorama__thumb.fotorama_vertical_ratio:after {
  left: 2px;
  right: 2px;
}

.fotorama__nav__frame--thumb:focus .fotorama__thumb, .fotorama__nav__frame--dot:focus .fotorama__thumb {
  overflow: inherit;
}

.fotorama__nav__frame:nth-child(2):focus .fotorama__thumb:after {
  left: 1px;
}
.fotorama__nav__frame:nth-child(2):focus .fotorama__thumb.fotorama_vertical_ratio:after {
  top: 1px;
}
.fotorama__nav__frame:last-child:focus .fotorama__thumb:after {
  right: 1px;
}
.fotorama__nav__frame:last-child:focus .fotorama__thumb.fotorama_vertical_ratio:after {
  bottom: 1px;
}

.fotorama__thumb__arr {
  box-shadow: none;
}

.fotorama--fullscreen {
  background: #fff;
  bottom: 0 !important;
  float: none !important;
  left: 0 !important;
  margin: 0 !important;
  position: fixed !important;
  right: 0 !important;
  top: 0 !important;
  width: 100% !important;
  z-index: 100000 !important;
}
.fotorama--fullscreen .fotorama__wrap {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.fotorama__fullscreen {
  overflow: hidden;
  position: relative;
}
.fotorama__fullscreen .fotorama__zoom-in {
  cursor: pointer;
  display: block;
  height: 80px;
  overflow: hidden;
  position: absolute;
  width: 80px;
}
.fotorama__fullscreen .fotorama__zoom-out {
  cursor: pointer;
  display: block;
  height: 80px;
  overflow: hidden;
  position: absolute;
  width: 80px;
  background-position: 0 -80px !important;
  top: 80px;
}
.fotorama__fullscreen .fotorama__zoom-out.fotorama__zoom-out--disabled {
  display: none;
}
.fotorama__fullscreen .fotorama__zoom-in {
  background-position: 0 0 !important;
  top: 0;
}
.fotorama__fullscreen .fotorama__zoom-in.fotorama__zoom-in--disabled {
  display: none;
}
.fotorama__fullscreen .fotorama__video-close {
  display: none;
}

.fotorama--fullscreen .fotorama__loaded--full .fotorama__img {
  display: none;
}
.fotorama--fullscreen .fotorama__loaded--full .fotorama__img--full {
  display: block;
}

.fotorama__zoom-in, .fotorama__zoom-out {
  display: none;
}

.fotorama {
  min-width: 1px;
  overflow: hidden;
}

.fotorama__wrap {
  -webkit-text-size-adjust: 100%;
  direction: ltr;
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fotorama__wrap--rtl .fotorama__stage__frame {
  direction: rtl;
}

.fotorama__stage, .fotorama__nav {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.fotorama__wrap--pan-y {
  -ms-touch-action: pan-y;
}

.fotorama__stage__shaft {
  position: relative;
  padding: 0 1rem;
}
.fotorama__stage__shaft .fotorama__stage__frame::before {
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.fotorama__wrap .fotorama__pointer {
  cursor: pointer;
}

.fotorama__wrap--slide .fotorama__stage__frame {
  opacity: 1 !important;
}

.fotorama__stage__frame {
  overflow: hidden;
}
.fotorama__stage__frame.fotorama__active {
  z-index: 8;
}

.fotorama__wrap--fade .fotorama__stage__frame {
  display: none;
}
.fotorama__wrap--fade .fotorama__stage__frame.fotorama__active {
  display: block;
  left: 0;
  top: 0;
}
.fotorama__wrap--fade .fotorama__fade-front, .fotorama__wrap--fade .fotorama__fade-rear {
  display: block;
  left: 0;
  top: 0;
}
.fotorama__wrap--fade .fotorama__fade-front {
  z-index: 8;
}
.fotorama__wrap--fade .fotorama__fade-rear {
  z-index: 7;
}
.fotorama__wrap--fade .fotorama__fade-rear.fotorama__active {
  z-index: 9;
}
.fotorama__wrap--fade .fotorama__stage .fotorama__shadow {
  display: none;
}

.fotorama__img {
  border: none !important;
  max-width: inherit;
  opacity: 0;
}

.fotorama__loaded .fotorama__img, .fotorama__error .fotorama__img {
  opacity: 1;
}

.fotorama__img--full {
  display: none;
}

.fotorama__nav {
  display: none;
  font-size: 0;
  line-height: 0;
  white-space: nowrap;
  z-index: 5;
}

.fotorama__nav__frame {
  position: relative;
  margin-bottom: 0.25rem;
}

.fotorama__nav--dots {
  display: block;
  text-align: center;
}
.fotorama__nav--dots .fotorama__nav__frame {
  height: 30px;
  width: 18px;
}
.fotorama__nav--dots .fotorama__nav__frame--thumb, .fotorama__nav--dots .fotorama__thumb-border {
  display: none;
}

.fotorama__nav--thumbs {
  display: block;
}
.fotorama__nav--thumbs .fotorama__nav__frame {
  padding-left: 0 !important;
}
.fotorama__nav--thumbs .fotorama__nav__frame:last-child {
  padding-right: 0 !important;
}
.fotorama__nav--thumbs .fotorama__nav__frame--dot {
  display: none;
}

.fotorama__active .fotorama__dot {
  background-color: #ff5501;
  border-color: #ff5501;
}

.fotorama__nav__frame.fotorama__active .fotorama__nav__frame {
  border-width: 3px;
  height: 0;
  width: 0;
}
.fotorama__nav__frame.fotorama__active .fotorama__nav__frame:after {
  left: -3px;
  padding: 3px;
  top: -3px;
}
.fotorama__nav__frame:focus {
  box-shadow: none;
}
.fotorama__nav__frame:focus :after {
  left: -1px;
  padding: 1px;
  top: -1px;
}

.fotorama__dot {
  border-radius: 6px;
  border: 1px solid #858585;
  display: block;
  height: 4px;
  left: 6px;
  position: relative;
  top: 12px;
  width: 4px;
}

.fotorama__thumb {
  background-color: #ebebeb;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.fotorama__thumb .img-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 8;
  box-shadow: inset 0 0 21px 0 rgba(0, 0, 0, 0.07);
  transition: 0.6s border ease-in-out;
  border: 0 solid transparent;
}

.fotorama__active .img-shadow {
  border: 1px solid #bfc1c4;
}

.fotorama__nav__frame:focus .fotorama__thumb {
  z-index: 2;
}

.fotorama__thumb-border {
  backface-visibility: hidden;
  background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.25), rgba(64, 64, 64, 0.1));
  border: 1px solid #bfc1c4;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 9;
  display: none !important;
}

.fotorama__caption {
  bottom: 0;
  color: #000;
  font-size: 14px;
  left: 0;
  line-height: 1.5;
  position: absolute;
  right: 0;
  z-index: 12;
}
.fotorama__caption a {
  border-bottom: 1px solid;
  border-color: rgba(0, 0, 0, 0.005);
  color: #000;
  text-decoration: none;
}
.fotorama__caption a:hover {
  border-color: rgba(0, 0, 0, 0.005);
  color: #000;
}

.fotorama__wrap--rtl .fotorama__caption {
  left: auto;
  right: 0;
}

.fotorama__wrap--video .fotorama__caption, .fotorama__wrap--no-captions .fotorama__caption {
  display: none;
}

.fotorama__caption__wrap {
  background-color: #fff;
  padding: 5px 10px;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fotorama__spinner {
  transform: translate3d(-50%, -50%, 0);
  left: 50%;
  position: absolute;
  top: 50%;
}

.fotorama__wrap--css3 .fotorama__spinner {
  animation: spinner 24s infinite linear;
}
.fotorama__wrap--css3 .fotorama__html {
  transition-duration: 0.3s;
  transition-property: opacity;
  transition-timing-function: linear;
}

.fotorama__wrap--video .fotorama__stage__frame--video .fotorama__img, .fotorama__wrap--video .fotorama__stage__frame--video .fotorama__html {
  opacity: 0;
}

.fotorama__select {
  cursor: auto;
}

.fotorama__video {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 32px;
  z-index: 10;
}

@-moz-document url-prefix() {
  .fotorama__active {
    box-shadow: 0 0 0 transparent;
  }
}
.fotorama__video-close:before {
  content: "X";
}

.fotorama__arr, .fotorama__fullscreen-icon, .fotorama__video-close {
  cursor: pointer;
  position: absolute;
}

.fotorama__arr {
  z-index: 900;
}

.fotorama__fullscreen-icon, .fotorama__zoom-out, .fotorama__zoom-in, .fotorama__video-close {
  z-index: 1000;
}

.fotorama__arr--prev .fotorama__arr__arr:before {
  content: "\f104" !important;
}

.fotorama__arr {
  bottom: 0;
  position: absolute;
  top: 0;
  width: 80px;
}
.fotorama__arr .fotorama__arr__arr {
  transform: translate3d(-50%, -50%, 0);
  left: 50%;
  position: absolute;
  top: 50%;
  height: 80px;
  width: 80px;
}
.fotorama__arr .fotorama__arr__arr:before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 3rem;
  margin-left: 1.5rem;
}

.fotorama__arr--prev {
  left: 0;
}
.fotorama__arr--prev .fotorama__arr__arr {
  background-position: -80px -80px;
}

.fotorama__arr--next {
  right: 0;
}
.fotorama__arr--next .fotorama__arr__arr {
  background-position: -160px -80px;
}

.fotorama__arr--disabled {
  cursor: default;
  opacity: 0.1;
  pointer-events: none;
}

.fotorama__fullscreen-icon {
  background-position: 0 0;
  display: none;
  height: 80px;
  right: 0;
  top: 0;
  width: 80px;
  z-index: 1000;
}

.fotorama--fullscreen-icons .fotorama__fullscreen-icon {
  display: none;
}

.fotorama--fullscreen .fotorama__fullscreen-icon {
  background-position: -80px 0;
  display: inline-block;
}

.fotorama__video-play {
  transform: translate3d(-50%, -50%, 0);
  left: 50%;
  position: absolute;
  top: 50%;
  background-position: -80px -160px;
  height: 160px;
  width: 160px;
}

.fotorama__wrap--css2 .fotorama__video-play, .fotorama__wrap--video .fotorama__stage .fotorama__video-play {
  display: none;
}

.fotorama__loaded .fotorama__video-play, .fotorama__error .fotorama__video-play {
  display: block;
  opacity: 1;
}

.fotorama__nav__frame .fotorama__video-play {
  display: block;
  opacity: 1;
  background-position: 0 -240px;
  height: 80px;
  width: 80px;
}

.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr, .fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon {
  opacity: 0;
}
.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr:focus, .fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:focus {
  opacity: 1;
}

.fotorama__wrap--toggle-arrows:not(.fotorama__wrap--video) .fotorama__video-close {
  display: none;
}
.fotorama__wrap--toggle-arrows.fotorama__wrap--video .fotorama__video-close {
  opacity: 1;
  right: 93px;
  top: 97px;
}

.fotorama__wrap--video .fotorama__arr, .fotorama__wrap--video .fotorama__fullscreen-icon {
  opacity: 0 !important;
}

.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr, .fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon {
  display: none;
}
.fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr:focus, .fotorama__wrap--css2.fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:focus {
  display: block;
}
.fotorama__wrap--css2.fotorama__wrap--video .fotorama__arr, .fotorama__wrap--css2.fotorama__wrap--video .fotorama__fullscreen-icon {
  display: none !important;
}

.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon:not(:focus) {
  transform: translate3d(80px, -80px, 0);
}
.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__arr--prev:not(:focus) {
  transform: translate3d(-120px, 0, 0);
}
.fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__arr--next:not(:focus) {
  transform: translate3d(120px, 0, 0);
}
.fotorama__wrap--css3.fotorama__wrap--video .fotorama__fullscreen-icon {
  transform: translate3d(80px, -80px, 0) !important;
}
.fotorama__wrap--css3.fotorama__wrap--video .fotorama__arr--prev {
  transform: translate3d(-120px, 0, 0) !important;
}
.fotorama__wrap--css3.fotorama__wrap--video .fotorama__arr--next {
  transform: translate3d(120px, 0, 0) !important;
}
.fotorama__wrap--css3 .fotorama__arr:not(:focus), .fotorama__wrap--css3 .fotorama__fullscreen-icon:not(:focus), .fotorama__wrap--css3 .fotorama__video-play:not(:focus), .fotorama__wrap--css3 .fotorama__video-close:not(:focus) {
  transition-duration: 0.3s;
  transition-property: transform, opacity, background-color;
}

.fotorama__stage:before, .fotorama__nav:before, .fotorama__stage:after, .fotorama__nav:after {
  background-repeat: no-repeat;
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
  text-decoration: none;
  z-index: 10;
}

.fotorama__stage:before, .fotorama__nav:before {
  left: -10px;
  top: -10px;
}

.fotorama__stage:after, .fotorama__nav:after {
  right: -10px;
  bottom: -10px;
}

.fotorama__stage.fotorama__shadows--left:before, .fotorama__nav.fotorama__shadows--left:before, .fotorama__stage.fotorama__shadows--right:after, .fotorama__nav.fotorama__shadows--right:after {
  background-size: 1px 100%, 5px 100%;
  bottom: 0;
  height: auto;
  top: 0;
  width: 10px;
}

.fotorama__stage.fotorama__shadows--top:before, .fotorama__nav.fotorama__shadows--top:before, .fotorama__stage.fotorama__shadows--bottom:after, .fotorama__nav.fotorama__shadows--bottom:after {
  background-size: 100% 1px, 100% 5px;
  height: 10px;
  left: 0;
  right: 0;
  width: auto;
}

.fotorama__stage.fotorama__shadows--left:before, .fotorama__nav.fotorama__shadows--left:before {
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.3) 75%, transparent), radial-gradient(farthest-side at 0 50%, rgba(0, 0, 0, 0.4), transparent);
  background-position: 0 0, 0 0;
  left: 0;
}

.fotorama__stage.fotorama__shadows--right:after, .fotorama__nav.fotorama__shadows--right:after {
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.3) 75%, transparent), radial-gradient(farthest-side at 100% 50%, rgba(0, 0, 0, 0.4), transparent);
  background-position: 100% 0, 100% 0;
  right: 0;
}

.fotorama__stage.fotorama__shadows--top:before, .fotorama__nav.fotorama__shadows--top:before {
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.3) 75%, transparent), radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.4), transparent);
  background-position: 0 0, 0 0;
  top: 0;
}

.fotorama__stage.fotorama__shadows--bottom:after, .fotorama__nav.fotorama__shadows--bottom:after {
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.2) 25%, rgba(0, 0, 0, 0.3) 75%, transparent), radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, 0.4), transparent);
  background-position: 0 100%, 0 100%;
  bottom: 0;
}

.fotorama--fullscreen .fotorama__stage:before, .fotorama--fullscreen .fotorama__nav:before {
  display: none;
}

.fotorama__wrap--no-shadows .fotorama__stage:before, .fotorama__wrap--no-shadows .fotorama__nav:before {
  display: none;
}

.fotorama__wrap--fade .fotorama__stage:before {
  display: none;
}

.fotorama--fullscreen .fotorama__stage:after, .fotorama--fullscreen .fotorama__nav:after {
  display: none;
}

.fotorama__wrap--no-shadows .fotorama__stage:after, .fotorama__wrap--no-shadows .fotorama__nav:after {
  display: none;
}

.fotorama__wrap--fade .fotorama__stage:after {
  display: none;
}

.fotorama__nav-wrap .fotorama_vertical_ratio .fotorama__img {
  transform: translateY(-50%);
  height: auto;
  position: absolute;
  top: 50%;
  width: 100%;
}
.fotorama__nav-wrap .fotorama_horizontal_ratio .fotorama__img {
  transform: translateX(-50%);
  height: 100%;
  left: 50%;
  position: absolute;
  width: auto;
}

.magnifier-thumb-wrapper {
  display: block;
  left: 0;
  position: relative;
  top: 0;
}

.magnifier-lens {
  border: solid 1px #bbb;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 800;
}

.magnify-lens {
  background: rgba(255, 255, 255, 0.5);
  border: solid 1px #bbb;
  color: #fff;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  z-index: 1000;
  overflow: hidden;
}
.magnify-lens .magnifier-large {
  width: auto;
  height: auto;
  max-height: none;
  max-width: none;
  border: none;
  position: absolute;
  z-index: 100;
}

.magnifier-loader-text {
  margin-top: 10px;
}

.magnifier-preview {
  bottom: 0;
  left: 100%;
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 2;
  top: 0;
}
.magnifier-preview:not(.hidden) {
  background-color: #fff;
}
.magnifier-preview img {
  left: 0;
  max-width: inherit;
  position: absolute;
  top: 0;
  object-fit: scale-down;
}

.fotorama__stage__frame {
  text-align: center;
}
.fotorama__stage__frame .fotorama__img {
  height: auto;
  left: 50%;
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition-duration: 0.3s;
  transition-property: width, height, top, left;
  vertical-align: middle;
  width: auto;
  padding: 1rem;
  margin-top: -1rem;
}

.magnify-opaque {
  opacity: 0.5;
}

.magnify-hidden {
  display: none;
}

.fotorama__nav-wrap--vertical.fotorama__nav-wrap {
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
}
.fotorama__nav-wrap--vertical .fotorama__nav__shaft {
  background-color: white;
  width: 100%;
}
.fotorama__nav-wrap--vertical .fotorama__nav__shaft .fotorama__nav__frame--thumb {
  display: block;
  padding-bottom: inherit !important;
}

.fotorama--fullscreen .fotorama__stage__frame .fotorama__img {
  display: none;
  bottom: 0;
  left: 0;
  margin: auto;
  max-height: inherit;
  max-width: inherit;
  position: absolute;
  right: 0;
  top: 0;
}
.fotorama--fullscreen .fotorama__stage__frame .fotorama__img--full {
  bottom: 0;
  left: 0;
  margin: auto;
  max-height: inherit;
  max-width: inherit;
  position: absolute;
  right: 0;
  top: 0;
  cursor: default;
  display: block;
  height: auto;
  left: 0;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  top: 0;
  transition: 0.3s linear;
  vertical-align: middle;
  width: auto;
}
.fotorama--fullscreen .fotorama__stage__frame .fotorama__img--full.fotorama__img--zoommable {
  cursor: pointer;
  max-height: none;
  max-width: none;
  transition-property: width, height, bottom, right, top, left;
}
.fotorama--fullscreen .fotorama__stage__frame .fotorama__img--full.fotorama__img--draggable {
  cursor: move;
  transition-property: none;
}
.fotorama--fullscreen .fotorama__stage__frame iframe {
  left: 80px;
  width: calc(100% - 160px);
}

.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--left, .fotorama__nav-wrap--horizontal .fotorama__thumb__arr--right {
  bottom: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 30px;
  z-index: 1000;
}
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--left .fotorama__thumb--icon, .fotorama__nav-wrap--horizontal .fotorama__thumb__arr--right .fotorama__thumb--icon {
  transform: translate3d(-50%, -50%, 0);
  left: 50%;
  position: absolute;
  top: 50%;
  width: 100%;
}
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--left {
  left: 0;
}
.fotorama__nav-wrap--horizontal .fotorama__thumb__arr--right {
  right: 0;
}

.fotorama__nav-wrap--vertical .fotorama__thumb__arr--left .fotorama__thumb--icon, .fotorama__nav-wrap--vertical .fotorama__thumb__arr--right .fotorama__thumb--icon {
  text-align: center;
  padding: 0.5rem;
  vertical-align: middle;
}
.fotorama__nav-wrap--vertical .fotorama__thumb__arr--left, .fotorama__nav-wrap--vertical .fotorama__thumb__arr--right {
  z-index: 1000;
}
.fotorama__nav-wrap--vertical .fotorama__thumb__arr--left {
  top: 0;
}
.fotorama__nav-wrap--vertical .fotorama__thumb__arr--left .fotorama__thumb--icon:before {
  content: "\f106";
}
.fotorama__nav-wrap--vertical .fotorama__thumb__arr--right {
  bottom: 0;
}
.fotorama__nav-wrap--vertical .fotorama__thumb__arr--right .fotorama__thumb--icon:before {
  content: "\f107";
}

.fotorama__wrap--only-active .fotorama__stage, .fotorama__wrap--only-active .fotorama__nav {
  max-width: 99999px !important;
}
.fotorama__wrap--only-active .fotorama__stage__frame {
  visibility: hidden;
}
.fotorama__wrap--only-active .fotorama__stage__frame.fotorama__active {
  visibility: visible;
}

.fotorama__thumb--icon {
  font-size: 0.001px;
  padding-bottom: 30px;
}
.fotorama__thumb--icon:before {
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1rem;
}

.magnify-fullimage {
  display: none;
}

.fotorama__arr, .fotorama__thumb__arr {
  background-color: rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s ease-in-out;
}

.fotorama__arr:hover, .fotorama__thumb__arr:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.fotorama__arr:active, .fotorama__thumb__arr:active {
  background-color: rgba(213, 213, 213, 0.5);
}

.fotorama__wrap:not(.fotorama__wrap--toggle-arrows) .fotorama__fullscreen-icon, .fotorama__wrap:not(.fotorama__wrap--toggle-arrows) .fotorama__zoom-out, .fotorama__wrap:not(.fotorama__wrap--toggle-arrows) .fotorama__zoom-in {
  background-color: rgba(255, 255, 255, 0.3);
  transition: background-color 0.3s ease-in-out;
}
.fotorama__wrap:not(.fotorama__wrap--toggle-arrows) .fotorama__fullscreen-icon:hover, .fotorama__wrap:not(.fotorama__wrap--toggle-arrows) .fotorama__zoom-out:hover, .fotorama__wrap:not(.fotorama__wrap--toggle-arrows) .fotorama__zoom-in:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.fotorama__wrap:not(.fotorama__wrap--toggle-arrows) .fotorama__fullscreen-icon:active, .fotorama__wrap:not(.fotorama__wrap--toggle-arrows) .fotorama__zoom-out:active, .fotorama__wrap:not(.fotorama__wrap--toggle-arrows) .fotorama__zoom-in:active {
  background-color: rgba(213, 213, 213, 0.5);
}

.fotorama__video-close {
  background-position: -80px 0;
  height: 80px;
  opacity: 0;
  right: 0;
  top: 0;
  transform: translate3d(80px, -80px, 0);
  transition: opacity 0.3s ease-in-out;
  width: 80px;
}
.fotorama__video-close.fotorama-show-control {
  opacity: 1;
  transform: translate3d(0, -10px, 0);
}

@media all and (max-width: 768px) {
  .fotorama__video-close {
    background-position: -100px -20px;
    top: 10px;
    height: 40px;
    width: 40px;
  }
}
.gallery-placeholder__image {
  display: block;
  margin: auto;
}

.fotorama__spinner {
  bottom: 0;
  display: none;
  height: 64px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 64px;
  z-index: 100;
}
.fotorama__spinner.fotorama__spinner--show {
  display: block;
}

.fotorama__product-video--loaded .fotorama__img, .fotorama__product-video--loaded .fotorama__img--full {
  display: none !important;
}

.fotorama__stage .fotorama__arr--shown {
  display: block !important;
}
.fotorama__stage .fotorama__arr--hidden {
  display: none !important;
}

.fotorama-item .fotorama__thumb__arr.fotorama__arr--disabled {
  color: #adb5bd;
  border: 1px solid #adb5bd;
}
.fotorama-item .fotorama__thumb__arr {
  border-radius: 0.25rem;
  opacity: 0.7;
  color: #ECAD66;
  border-color: #ECAD66;
}
.fotorama-item .fotorama__nav__shaft {
  margin: 0.25rem 0;
}

.gallery-placeholder {
  max-height: 50vh;
}

.fotorama_custom_icon, .fotorama__fullscreen-icon:before, .fotorama__zoom-out:before, .fotorama__zoom-in:before {
  font-size: 58px;
  top: 10px;
  left: 10px;
  position: relative;
}

.fotorama__zoom-in {
  left: 25%;
}
.fotorama__zoom-in:before {
  content: "\f00e";
}

.fotorama__zoom-out {
  left: 25%;
}
.fotorama__zoom-out:before {
  content: "\f010";
}

.fotorama__fullscreen-icon:before {
  content: "\f057";
}

.fotorama--fullscreen .fotorama__nav-wrap.fotorama__nav-wrap--horizontal {
  height: 4rem;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.header-top-panel {
  padding: 0.5rem 0.9375rem;
}
.header-top-panel .dropdown-toggle:after {
  border-top-color: #586067;
}
.header-top-panel .mail-phone-info span, .header-top-panel .mail-phone-info a {
  vertical-align: -9px;
}
.header-top-panel .badge-links a {
  margin-right: 0;
}
.header-top-panel .col-auto:first-child {
  padding-left: 0;
}
.header-top-panel .col-auto:last-child {
  padding-right: 0;
}
@media (max-width: 1199.98px) {
  .header-top-panel {
    display: none;
  }
}
@media (min-width: 992px) {
  .header-top-panel {
    font-size: 0.875rem;
  }
  .header-top-panel span, .header-top-panel a {
    margin-right: 0.5rem;
    display: inline-block;
    padding: 0.25rem 0;
  }
  .header-top-panel a {
    color: #222222;
  }
  .header-top-panel a:hover, .header-top-panel a:visited, .header-top-panel a:focus {
    color: #222222;
  }
  .header-top-panel a.nav-link {
    margin-right: 1rem;
    letter-spacing: 0.01rem;
    vertical-align: 2px;
  }
  .header-top-panel i {
    color: #ECAD66;
    margin-right: 0.25rem;
  }
  .header-top-panel .panel-icons img {
    width: 1.875rem;
    height: auto;
    margin: 0 0.1875rem;
  }
}
.header-top-panel .language .btn, .header-top-panel .language .checkout-index-index .action.edit-address-link, .checkout-index-index .header-top-panel .language .action.edit-address-link, .header-top-panel .language button {
  background: white;
  border-radius: 1.5rem;
}
.header-top-panel .language svg {
  width: auto;
  height: 15px;
}
.header-top-panel .language .dropdown-toggle {
  vertical-align: 0.1255em;
  padding: 0.125rem 0.5rem;
  margin-top: 0.25rem;
}
.header-top-panel .dropdown .dropdown-menu {
  z-index: 1030;
}
.header-top-panel .dropdown .dropdown-menu .dropdown-item {
  padding: 0.25rem 0.5rem;
}

@media (min-width: 992px) {
  .brand-panel hr {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .brand-panel .cart {
    position: relative;
  }
  .brand-panel .cart .cart-count {
    position: absolute;
    background: red;
    color: white;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 100%;
    top: 9px;
    right: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
  }
  .brand-panel .brand-nav .nav-item .nav-link {
    padding: 0.9375rem 1rem;
    font-size: 0.875rem;
  }
  .brand-panel .brand-nav .nav-item:last-child .nav-link {
    padding-right: 0;
  }
  .brand-panel .brand-nav a {
    color: #222222;
  }
  .brand-panel .brand-nav a:hover, .brand-panel .brand-nav a:visited, .brand-panel .brand-nav a:focus {
    color: #222222;
  }
  .brand-panel .brand-nav i {
    font-size: 1.875rem;
    line-height: 1;
  }
  .brand-panel .brand-nav i.icon-ms-play:before {
    background-image: linear-gradient(130deg, #0f4170, #df071a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .brand-panel .brand-nav i.icon-ms-basket {
    margin-right: -5px;
  }
  .brand-panel .brand-nav i:before {
    line-height: 1;
    color: #ECAD66;
  }
}

@media (max-width: 1199.98px) {
  header {
    box-shadow: 0 10px 30px -10px #f2f2f2;
    margin-bottom: 1.875rem;
  }
}
header .logo {
  display: block;
}
@media (max-width: 1199.98px) {
  header .logo {
    padding: 0.375rem 0;
  }
  header .logo img {
    width: auto;
    height: auto;
  }
}
@media (min-width: 992px) {
  header .logo {
    padding: 0.9375rem 0;
  }
  header .logo img {
    transition: max-height 0.4s ease-in-out;
    max-height: 52px;
    width: auto;
    height: auto;
  }
}
header .input-group-append .btn.search, header .input-group-append .checkout-index-index .search.action.edit-address-link, .checkout-index-index header .input-group-append .search.action.edit-address-link, header .input-group-append button.search {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}
@media (max-width: 1199.98px) {
  header #top hr {
    margin: -1px 0 0;
  }
}
@media (min-width: 992px) {
  header #top i {
    transition: font-size 1s ease-in-out;
  }
}
@media (min-width: 992px) {
  header #top.scrolled .logo {
    padding: 0.75rem 0;
  }
  header #top.scrolled .logo img {
    max-height: 35px;
  }
  header #top.scrolled .brand-nav .nav-item .nav-link {
    padding: 0.9375rem 0.625rem;
  }
  header #top.scrolled .brand-nav i {
    font-size: 1.625rem;
  }
}
@media (max-width: 1199.98px) {
  header .item-search .dropdown-menu:before {
    border: solid rgba(0, 0, 0, 0.15);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    content: "";
    position: absolute;
    top: -7px;
    left: 50vw;
    z-index: 10000;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    background: white;
    width: 0.75rem;
    height: 0.75rem;
  }
}
@media (max-width: 1199.98px) {
  header .item-search .dropdown-menu {
    min-width: 95vw !important;
    left: 50% !important;
    transform: translateX(-56%) !important;
    padding-top: 0;
    padding-bottom: 0;
    top: 3rem !important;
  }
  header .item-search .dropdown-menu .form-control {
    border: none;
  }
}
header .item-search .dropdown-menu i {
  font-size: 1rem !important;
}
@media (max-width: 1199.98px) {
  header .btn.btn-link, header .checkout-index-index .btn-link.action.edit-address-link, .checkout-index-index header .btn-link.action.edit-address-link, header button.btn-link {
    padding: 0.375rem 0 0.375rem 0.75rem;
    line-height: 1;
  }
  header .btn.btn-link i, header .checkout-index-index .btn-link.action.edit-address-link i, .checkout-index-index header .btn-link.action.edit-address-link i, header button.btn-link i {
    font-size: 1.8125rem;
    line-height: 1;
  }
  header .btn.btn-link i:before, header .checkout-index-index .btn-link.action.edit-address-link i:before, .checkout-index-index header .btn-link.action.edit-address-link i:before, header button.btn-link i:before {
    margin: 0;
  }
}
@media (max-width: 1199.98px) {
  header .nav .nav-item .nav-link {
    padding: 0.375rem 0 0.375rem 0.75rem;
    line-height: 1;
  }
  header .nav .nav-item .nav-link i {
    font-size: 1.8125rem;
    line-height: 1;
  }
  header .nav .nav-item .nav-link i:before {
    margin: 0;
  }
}
@media (max-width: 1199.98px) {
  header .nav.icons-sm .nav-item .nav-link {
    padding: 0.625rem 0.375rem;
    line-height: 1;
  }
}
@media (max-width: 1199.98px) {
  header .nav.icons-sm .nav-item .nav-link i {
    font-size: 2rem;
  }
  header .nav.icons-sm .nav-item .nav-link i:before {
    line-height: 1;
  }
}
header .nav-link .icon-ms-play::before {
  background-image: linear-gradient(130deg, #ECAD66, #6A6A6A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mage-error {
  color: red;
}

.field-error {
  color: red;
}

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

body._has-modal {
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.modals-overlay {
  _property: 1999;
}

.modal-slide,
.modal-popup {
  bottom: 0;
  left: 0;
  min-width: 0;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s 0.3s, opacity 0.3s ease;
  transition: visibility 0s 0.3s, opacity 0.3s ease;
}
.modal-slide._show,
.modal-popup._show {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.modal-slide._show .modal-inner-wrap,
.modal-popup._show .modal-inner-wrap {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-slide .modal-inner-wrap,
.modal-popup .modal-inner-wrap {
  _property: #fff;
  _property: 0 0 12px 2px rgba(0, 0, 0, 0.35);
  opacity: 1;
  pointer-events: auto;
}
.modal-slide,
.modal-popup {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  z-index: 2000 !important;
  background: rgba(0, 0, 0, 0.75);
}

.modal-slide {
  _property: 14.8rem;
  _property: 2000;
}
.modal-slide._show .modal-inner-wrap {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.modal-slide .modal-inner-wrap {
  height: 100%;
  overflow-y: auto;
  position: static;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  width: auto;
}
.modal-slide._inner-scroll .modal-inner-wrap {
  overflow-y: visible;
  display: -webkit-${_value};
  display: -ms-${_value}box;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.modal-slide._inner-scroll .modal-header,
.modal-slide._inner-scroll .modal-footer {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.modal-slide._inner-scroll .modal-content {
  overflow-y: auto;
  padding: 1rem;
}
.modal-slide._inner-scroll .modal-footer {
  margin-top: auto;
}
.modal-slide .modal-header,
.modal-slide .modal-content,
.modal-slide .modal-footer {
  _property: 0 2.6rem 2.6rem;
}
.modal-slide .modal-header {
  _property: 2.1rem;
  _property: 2.1rem;
}

.modal-popup {
  _property: 2000;
  left: 0;
  overflow-y: auto;
}
.modal-popup.confirm .modal-inner-wrap {
  _property: 50rem;
}
.modal-popup.confirm .modal-inner-wrap .modal-content {
  padding-right: 7rem;
}
.modal-popup._show .modal-inner-wrap {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.modal-popup .modal-inner-wrap {
  _property: 5rem auto;
  _property: 75%;
  display: -webkit-${_value};
  display: -ms-${_value}box;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  box-sizing: border-box;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  -webkit-transform: translateY(-200%);
  transform: translateY(-200%);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  max-width: 600px;
  margin: auto;
  padding: 1rem;
  border: 1px solid black;
  box-shadow: 0 0 10px 1px;
  background: white;
}
.modal-popup._inner-scroll {
  overflow-y: visible;
}
.ie11 .modal-popup._inner-scroll {
  overflow-y: auto;
}
.modal-popup._inner-scroll .modal-inner-wrap {
  max-height: 90%;
}
.ie11 .modal-popup._inner-scroll .modal-inner-wrap {
  max-height: none;
}
.modal-popup._inner-scroll .modal-content {
  overflow-y: auto;
  padding: 1rem;
}
.modal-popup .modal-header,
.modal-popup .modal-content,
.modal-popup .modal-footer {
  _property: 3rem;
  _property: 3rem;
}
.modal-popup .modal-header,
.modal-popup .modal-footer {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.modal-popup .modal-header {
  _property: 1.2rem;
  _property: 3rem;
}
.modal-popup .modal-footer {
  margin-top: auto;
  _property: 3rem;
  _property: 3rem;
}
.modal-popup .modal-footer-actions {
  text-align: right;
}

@media (max-width: 1199.98px) {
  .modal-popup.modal-slide {
    _property: 14.8rem;
    _property: 2000;
  }
  .modal-popup.modal-slide._show .modal-inner-wrap {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .modal-popup.modal-slide .modal-inner-wrap {
    height: 100%;
    overflow-y: auto;
    position: static;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    width: auto;
  }
  .modal-popup.modal-slide .modal-inner-wrap {
    margin: 0;
    max-height: none;
  }
}
#mainMenu {
  padding: 0;
}
@media (max-width: 1199.98px) {
  #mainMenu #mainMenuCollapse {
    visibility: hidden;
    transition: visibility 0.5s ease-in-out, background-color 0.5s ease-in-out;
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    padding: 0;
    z-index: 1040;
    background: rgba(50, 50, 50, 0);
    height: 100vh !important;
  }
  #mainMenu #mainMenuCollapse.collapsing {
    visibility: visible;
    height: 100vh !important;
  }
  #mainMenu #mainMenuCollapse.show {
    display: block;
    visibility: visible;
    height: 100vh;
    background: rgba(50, 50, 50, 0.5);
  }
  #mainMenu #mainMenuCollapse.show .btn-close-mm {
    opacity: 1;
  }
  #mainMenu #mainMenuCollapse.show .navbar-nav {
    left: 0;
  }
  #mainMenu #mainMenuCollapse .navbar-nav {
    background: white;
    position: absolute;
    left: -50rem;
    height: 100vh !important;
    overflow-y: auto;
    transition: left 1s ease-in-out;
  }
  #mainMenu #mainMenuCollapse .navbar-nav .nav-item {
    padding: 0.75rem 0;
    margin: 0 0.75rem;
    border-bottom: 1px solid #e5e5e5;
  }
  #mainMenu #mainMenuCollapse .navbar-nav .nav-item .nav-link, #mainMenu #mainMenuCollapse .navbar-nav .nav-item .nav-link a {
    color: #222222;
    line-height: 1rem;
    font-size: 0.9rem;
  }
  #mainMenu #mainMenuCollapse .navbar-nav .nav-item.dropdown .dropdown-toggle:after {
    position: absolute;
    right: 1rem;
    border: none;
    content: "\e91c";
    vertical-align: 0;
    font-family: fontello;
    font-size: 1.5rem;
    color: #ECAD66;
  }
  #mainMenu #mainMenuCollapse .navbar-nav .nav-item.dropdown .dropdown-toggle.active-dropdown:after {
    content: "\e91f";
  }
  #mainMenu #mainMenuCollapse .navbar-nav .nav-item.search {
    padding: 0;
    margin: 0;
    box-shadow: inset 0 -10px 12px -14px rgba(50, 50, 50, 0.5);
    border-bottom: 1px solid #e5e5e5;
  }
  #mainMenu #mainMenuCollapse .navbar-nav .nav-item.search .form-control {
    border-right: 0;
    border-radius: 0;
    height: calc(1.5em + 1.75rem);
    padding: 0.5rem 0.75rem;
    background-clip: content-box;
    border-bottom: 0;
  }
  #mainMenu #mainMenuCollapse .navbar-nav .nav-item.search .form-control:focus {
    box-shadow: none;
  }
  #mainMenu #mainMenuCollapse .navbar-nav .nav-item.search .input-group-append i {
    font-size: 1.5rem;
  }
  #mainMenu #mainMenuCollapse .btn-close-mm {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 2rem;
    transition: opacity 1s ease-in-out;
  }
  #mainMenu #mainMenuCollapse .dropdown .dropdown-menu {
    border: none;
  }
  #mainMenu #mainMenuCollapse .dropdown .dropdown-menu .dropdown-menu {
    margin-top: 0.5rem;
    margin-bottom: -0.5rem;
    padding-bottom: 0;
  }
  #mainMenu #mainMenuCollapse .dropdown .dropdown-menu .dropdown-menu .dropdown-item {
    position: relative;
  }
  #mainMenu #mainMenuCollapse .dropdown .dropdown-menu .dropdown-menu .dropdown-item img {
    margin-left: auto;
    text-align: right;
    position: absolute;
    top: 0.35rem;
    right: 1rem;
  }
  #mainMenu #mainMenuCollapse .dropdown .dropdown-menu .dropdown-toggle:after {
    top: 0.75rem;
  }
  #mainMenu #mainMenuCollapse .dropdown .dropdown-menu .nav-item, #mainMenu #mainMenuCollapse .dropdown .dropdown-menu .dropdown-item {
    border-bottom: none;
    padding: 0.75rem 0;
    margin: 0 0 0 0.75rem;
  }
  #mainMenu #mainMenuCollapse .dropdown .dropdown-menu .nav-item:last-child, #mainMenu #mainMenuCollapse .dropdown .dropdown-menu .dropdown-item:last-child {
    padding-bottom: 0;
  }
  #mainMenu #mainMenuCollapse .dropdown .dropdown-menu .nav-item a, #mainMenu #mainMenuCollapse .dropdown .dropdown-menu .dropdown-item a {
    color: #586067;
  }
}
@media (min-width: 992px) {
  #mainMenu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }
  #mainMenu .dropdown-toggle-split {
    display: none;
  }
  #mainMenu .nav-link {
    font-family: "Roboto Condensed", sans-serif;
    color: #ECAD66;
    font-weight: bold;
    font-size: 0.9375rem;
    letter-spacing: 0.03rem;
    white-space: nowrap;
    padding: 0.25rem 0;
  }
  #mainMenu .nav-link[title="%Sale%"] {
    color: #6A6A6A;
  }
  #mainMenu .nav-link[title="%Sale%"]:hover, #mainMenu .nav-link[title="%Sale%"]:focus, #mainMenu .nav-link[title="%Sale%"]:visited {
    color: #6A6A6A;
  }
  #mainMenu .nav-link a {
    color: #ECAD66;
  }
  #mainMenu .nav-link a:hover, #mainMenu .nav-link a:focus, #mainMenu .nav-link a:visited {
    color: #ECAD66;
  }
  #mainMenu .nav-item {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  #mainMenu .nav-item.dropdown:hover > .nav-link > .dropdown-menu {
    display: block;
    top: 2rem;
  }
  #mainMenu .nav-item.dropdown .dropdown-submenu > .nav-link > a {
    position: relative;
    width: 100%;
    display: inline-block;
  }
  #mainMenu .nav-item.dropdown .dropdown-submenu > .nav-link > a:after {
    content: "\e85b";
    font-family: fontello;
    position: absolute;
    right: -1rem;
    top: 0;
  }
  #mainMenu .nav-item.dropdown .dropdown-submenu .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
  }
  #mainMenu .nav-item.dropdown .dropdown-submenu:hover .dropdown-menu {
    display: block;
  }
}
@media (min-width: 992px) {
  #mainMenu .ms-toplevel-item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  #mainMenu .ms-toplevel-item:hover, #mainMenu .ms-toplevel-item.active {
    border-left: 1px solid #f2f2f2;
    border-right: 1px solid #f2f2f2;
    border-bottom: 1px solid white;
    margin-bottom: -3px;
    z-index: 3000;
    position: relative;
    background: white;
    box-shadow: 0px -6px 9px -6px #f2f2f2;
    border-bottom-left-radius: 0;
  }
  #mainMenu .ms-toplevel-item:hover a, #mainMenu .ms-toplevel-item.active a {
    color: #373737;
  }
  #mainMenu .ms-toplevel-item[data-title="%Sale%"]:hover {
    border-bottom: 1px solid #f2f2f2;
  }
}
@media (min-width: 992px) {
  #mainMenu .ms-toplevel-item .nav-link i.icon-right-open-big.text-primary {
    font-size: 1.25rem;
    vertical-align: -2px;
    margin-left: 4px;
  }
}
#mainMenu .ms-desktop-submenu {
  display: none;
}
#mainMenu .ms-desktop-submenu .to-cat-item i {
  font-size: 1.25rem;
  margin-left: 4px;
  vertical-align: -2px;
}
#mainMenu .ms-desktop-submenu .to-cat-item:hover {
  color: rgb(67.75, 67.75, 67.75) !important;
}
#mainMenu .ms-desktop-submenu .to-cat-item:hover i {
  color: rgb(67.75, 67.75, 67.75) !important;
}
@media (min-width: 992px) {
  #mainMenu .ms-desktop-submenu {
    display: none;
    width: 100%;
    background: white;
    padding: 0.9375rem;
    border: 1px solid #f2f2f2;
    border-radius: 0.25rem;
    position: absolute;
    top: 3rem;
    left: 0;
    box-shadow: 1px 1px 10px 0 #f2f2f2;
  }
  #mainMenu .ms-desktop-submenu .to-cat-item {
    font-size: 1rem;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: bold;
  }
  #mainMenu .ms-desktop-submenu.active, #mainMenu .ms-desktop-submenu:hover {
    display: block !important;
  }
  #mainMenu .ms-desktop-submenu .nav.level-2 .nav-item {
    width: 100%;
    position: relative;
  }
  #mainMenu .ms-desktop-submenu .nav.level-2 .nav-item .nav-link {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  #mainMenu .ms-desktop-submenu .nav.level-2 .nav-item.active, #mainMenu .ms-desktop-submenu .nav.level-2 .nav-item:hover {
    font-weight: bold;
    background: #f0f0f0;
  }
  #mainMenu .ms-desktop-submenu .nav.level-2 .nav-item.active:after, #mainMenu .ms-desktop-submenu .nav.level-2 .nav-item:hover:after {
    color: #ECAD66;
  }
  #mainMenu .ms-desktop-submenu .nav.level-2 .nav-item:after {
    content: "\e91e";
    font-family: fontello;
    font-size: 1.25rem;
    vertical-align: -2px;
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    color: #f2f2f2;
  }
  #mainMenu .ms-desktop-submenu .nav.level-2 .nav-item .nav-link {
    font-weight: normal;
  }
  #mainMenu .ms-desktop-submenu .nav.level-3 {
    display: none;
  }
  #mainMenu .ms-desktop-submenu .nav.level-3.active {
    display: flex;
  }
  #mainMenu .ms-desktop-submenu .nav.level-3 .nav-item {
    padding: 0.625rem;
  }
  #mainMenu .ms-desktop-submenu .nav.level-3 .nav-item span {
    font-size: 0.875rem;
  }
  #mainMenu .ms-desktop-submenu .nav.level-3 .nav-item img {
    max-height: 85px;
  }
  #mainMenu .ms-desktop-submenu .nav.level-3 .nav-item span {
    display: block;
    text-align: center;
    white-space: normal;
  }
  #mainMenu .ms-desktop-submenu .border-lightgrey {
    border-width: 2px !important;
  }
}

@media (min-width: 992px) {
  .sticky-top.scrolled {
    box-shadow: 1px 1px 6px 0 #e7e7e7;
  }
}

.menu-opener {
  padding: 0.5rem;
  font-size: 1.75rem;
  color: #737373;
}

.ammenu-categories-container {
  background: white;
  padding: 10px 20px;
}

.-full .ammenu-submenu-block.-root {
  background: white;
}

.ammenu-menu-wrapper .ammenu-link {
  color: black !important;
}

@media (max-width: 1199.98px) {
  :root span.ammenu-text {
    color: white;
  }
}
.text-accent .icon-search {
  color: #ECAD66;
}

.icon-search {
  color: #ECAD66;
}

.smile-elasticsuite-autocomplete-result {
  padding: 0.5rem;
}
.smile-elasticsuite-autocomplete-result .autocomplete-list {
  border-bottom: 1px solid #e5e5e5;
}
.smile-elasticsuite-autocomplete-result .autocomplete-list:last-child {
  border-bottom: 0;
}

#search_autocomplete {
  z-index: 2000;
  background: white;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  top: 2.4rem;
  border: 1px solid #e7e7e7;
  display: none;
}
@media (min-width: 1200px) {
  #search_autocomplete .price-box {
    max-width: 55%;
  }
}
#search_autocomplete .autocomplete-list-title {
  color: #343a40;
  text-transform: uppercase;
}
#search_autocomplete dd {
  padding: 0.5rem 1rem;
  cursor: pointer;
  display: flex;
  border-bottom: 1px solid lightgrey;
}
#search_autocomplete dd:last-child {
  border-bottom: none;
}
#search_autocomplete dd .product-image-box {
  width: 33%;
  max-width: 128px;
}
#search_autocomplete dd .product-image-box img {
  height: auto;
  padding-right: 1rem;
  width: 100%;
}
#search_autocomplete dd .product-shop {
  width: 77%;
}
#search_autocomplete dd:hover {
  background: #e7e7e7;
}

@media (max-width: 992px) {
  .elastic-container {
    display: none;
  }
}
.mb-20 {
  margin-bottom: 20px;
}

.mb-15 {
  margin-bottom: 15px;
}

.top-categorie-headLine {
  font-size: 28px;
}

.robo-condensed {
  font-family: "Roboto Condensed", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

@media (max-width: 1199.98px) {
  .p-12 {
    font-size: 12px;
  }
}

@media (max-width: 1199.98px) {
  .p-14 {
    font-size: 14px;
  }
}

@media (max-width: 1199.98px) {
  .base {
    font-size: 17px;
  }
}

@media (min-width: 992px) {
  .fonts-5 {
    font-size: 0.3125rem;
  }
}

@media (min-width: 992px) {
  .fonts-6 {
    font-size: 0.375rem;
  }
}

@media (min-width: 992px) {
  .fonts-7 {
    font-size: 0.4375rem;
  }
}

@media (min-width: 992px) {
  .fonts-8 {
    font-size: 0.5rem;
  }
}

@media (min-width: 992px) {
  .fonts-9 {
    font-size: 0.5625rem;
  }
}

@media (min-width: 992px) {
  .fonts-10 {
    font-size: 0.625rem;
  }
}

@media (min-width: 992px) {
  .fonts-11 {
    font-size: 0.6875rem;
  }
}

@media (min-width: 992px) {
  .fonts-12 {
    font-size: 0.75rem;
  }
}

@media (min-width: 992px) {
  .fonts-13 {
    font-size: 0.8125rem;
  }
}

@media (min-width: 992px) {
  .fonts-14 {
    font-size: 0.875rem;
  }
}

@media (min-width: 992px) {
  .fonts-15 {
    font-size: 0.9375rem;
  }
}

@media (min-width: 992px) {
  .fonts-16 {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .fonts-17 {
    font-size: 1.0625rem;
  }
}

@media (min-width: 992px) {
  .fonts-18 {
    font-size: 1.125rem;
  }
}

@media (min-width: 992px) {
  .fonts-19 {
    font-size: 1.1875rem;
  }
}

@media (min-width: 992px) {
  .fonts-20 {
    font-size: 1.25rem;
  }
}

@media (min-width: 992px) {
  .fonts-21 {
    font-size: 1.3125rem;
  }
}

@media (min-width: 992px) {
  .fonts-22 {
    font-size: 1.375rem;
  }
}

@media (min-width: 992px) {
  .fonts-23 {
    font-size: 1.4375rem;
  }
}

@media (min-width: 992px) {
  .fonts-24 {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .fonts-25 {
    font-size: 1.5625rem;
  }
}

@media (min-width: 992px) {
  .fonts-26 {
    font-size: 1.625rem;
  }
}

@media (min-width: 992px) {
  .fonts-27 {
    font-size: 1.6875rem;
  }
}

@media (min-width: 992px) {
  .fonts-28 {
    font-size: 1.75rem;
  }
}

@media (min-width: 992px) {
  .fonts-29 {
    font-size: 1.8125rem;
  }
}

@media (min-width: 992px) {
  .fonts-30 {
    font-size: 1.875rem;
  }
}

@media (max-width: 1199.98px) {
  .tier-prices {
    font-size: 13px;
  }
}

@media (min-width: 992px) {
  .catalog-product-view h1 span .base {
    font-size: 26px;
  }
}

@media (min-width: 992px) {
  h2 {
    font-weight: normal;
  }
}

.product.pricing {
  font-family: "Roboto Condensed", sans-serif;
}

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

.font-condensed {
  font-family: "Roboto Condensed", sans-serif;
}

h1 {
  font-weight: 800 !important;
  line-height: 1;
  font-size: 2.25rem;
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
}
h1 .base {
  line-height: inherit;
  font-size: inherit;
}
@media (max-width: 1199.98px) {
  h1 .base {
    font-size: 1.8rem;
  }
}

.lh-1 {
  line-height: 1;
}

@media (min-width: 992px) {
  p {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.875rem;
  }
}

h1, .h1 {
  letter-spacing: 0.02rem;
}

h2, .h2 {
  letter-spacing: 0.02rem;
}

h3, .h3 {
  letter-spacing: 0.02rem;
}

h4, .h4 {
  letter-spacing: 0.02rem;
}

h5, .h5 {
  letter-spacing: 0.02rem;
}

h6, .h6 {
  letter-spacing: 0.02rem;
}

.paypal-redirect-note {
  margin-top: 10px;
  padding: 10px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  font-size: 13px;
  color: #333;
}

.checkout-shipping-address .control select,
.billing-address-form .control select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #222;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #e5e5e5;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

nav#mainMenu {
  background-color: #ECAD66 !important;
  padding: 0 10px;
}

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

.nav-link:hover, .nav-link:active, .dropdown-item:hover, .dropdown-item:active {
  color: #ECAD66 !important;
}

#mainMenu .navbar-nav .nav-link {
  color: white;
}

#mainMenu .nav-link,
#mainMenu .nav-link:active, #mainMenu .ms-toplevel-item:hover a,
#mainMenu .ms-toplevel-item.active a {
  color: #ECAD66;
}

.text-primary, .text-primary:hover, .text-primary:active {
  color: #ECAD66 !important;
}

#mainMenu .ms-desktop-submenu .to-cat-item:hover {
  color: #ECAD66 !important;
}
#mainMenu .ms-desktop-submenu .to-cat-item:hover .icon-right-open-big:after,
#mainMenu .ms-desktop-submenu .to-cat-item:hover .icon-right-open-big,
#mainMenu .ms-desktop-submenu .to-cat-item:hover .icon-right-open-big:active {
  color: #ECAD66 !important;
}

#mainMenu .ms-desktop-submenu .nav.level-2 .nav-item.active:after,
#mainMenu .ms-desktop-submenu .nav.level-2 .nav-item:hover:after {
  color: #ECAD66;
}

#product_info .img-h-w {
  max-height: 180px;
  min-width: 480px;
}
@media (min-width: 992px) {
  #product_info .mb-p-20 {
    margin-bottom: 20%;
  }
}
#product_info .mb-p-10 {
  margin-bottom: 10%;
}
#product_info .color-g-shadow {
  color: white;
  text-shadow: 2px 2px 2px black;
  background: rgba(0, 0, 0, 0.45);
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
#product_info .mt-p-10 {
  margin-top: 10%;
}

#marketing img.box-shadow-light.img-fluid {
  max-width: 470px;
  min-width: 446px;
  height: 200px;
}

@media (min-width: 768px) {
  .cms-index-index .background-home-1 {
    background: url("//wysiwyg/Bilder/OLO2E00.jpg") no-repeat;
  }
  .cms-index-index .background-home-2 {
    background: url("//wysiwyg/Bilder/OLO2E00.jpg") no-repeat;
  }
}
.bg-green {
  background-color: #96bf0d !important;
}

.bg-primary-dark {
  background-color: #01264b !important;
}

.catalog-product-view .qty-inc, .catalog-product-view .qty-dec, .page-products .qty-inc, .page-products .qty-dec {
  font-size: 1.25rem !important;
}

/*slider*/
div#marketing .slideshow-container * {
  box-sizing: border-box;
}
div#marketing .slideshow-container body {
  font-family: Verdana, sans-serif;
  margin: 0;
}
div#marketing .slideshow-container .mySlides {
  display: none;
}
div#marketing .slideshow-container img {
  vertical-align: middle;
}
div#marketing .slideshow-container {
  /* Slideshow container */
}
div#marketing .slideshow-container .slideshow-container {
  max-width: 1250px;
  position: relative;
  margin: auto;
  opacity: 1;
}
div#marketing .slideshow-container {
  /* Next & previous buttons */
}
div#marketing .slideshow-container .prev, div#marketing .slideshow-container .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  color: white !important;
  text-shadow: 0px 3px 3px black;
}
div#marketing .slideshow-container {
  /* Position the "next button" to the right */
}
div#marketing .slideshow-container .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
div#marketing .slideshow-container dot:hover, div#marketing .slideshow-container active {
  background: #586067;
}
div#marketing .slideshow-container {
  /* Caption text */
}
div#marketing .slideshow-container .text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
div#marketing .slideshow-container {
  /* The dots/bullets/indicators */
}
div#marketing .slideshow-container .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
div#marketing .slideshow-container dot:active, div#marketing .slideshow-container .dot:hover {
  background-color: #586067;
  text-shadow: 0px 3px 3px black;
}
div#marketing .slideshow-container {
  /* Fading animation */
}
div#marketing .slideshow-container .fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
div#marketing .slideshow-container {
  /* On smaller screens, decrease text size */
}
@media only screen and (max-width: 300px) {
  div#marketing .slideshow-container .prev, div#marketing .slideshow-container .next, div#marketing .slideshow-container .text {
    font-size: 11px;
    color: white;
  }
}
div#marketing .slideshow-container {
  /*image scaling*/
}
div#marketing .slideshow-container .image-scal {
  max-width: 1250px;
  height: 350px;
}
div#marketing .slideshow-container .points {
  margin-top: -3%;
  padding-bottom: 3%;
}

.checkout-agreement.field.choice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.checkout-agreement.field.choice input[type=checkbox] {
  order: 1;
}
.checkout-agreement.field.choice .label {
  order: 2;
  flex: 1;
  margin: 0;
  padding: 0;
}
.checkout-agreement.field.choice [id*=-error] {
  order: 3;
  flex-basis: 100%;
  margin: 0;
  background: rgba(255, 0, 0, 0.25);
  padding: 0.5rem;
  border-bottom-left-radius: 0.25rem;
  color: red;
}